diff --git a/.ddev/addon-metadata/ddev-vite-sidecar/manifest.yaml b/.ddev/addon-metadata/ddev-vite-sidecar/manifest.yaml new file mode 100755 index 00000000..45b337aa --- /dev/null +++ b/.ddev/addon-metadata/ddev-vite-sidecar/manifest.yaml @@ -0,0 +1,13 @@ +name: ddev-vite-sidecar +repository: s2b/ddev-vite-sidecar +version: 1.1.0 +install_date: "2024-10-02T19:02:43+02:00" +project_files: + - commands/web/vite + - apache/vite.conf + - nginx_full/vite.conf + - vite/vite-server-not-running.html + - config.vite.yaml + - web-build/Dockerfile.vite +global_files: [] +removal_actions: [] diff --git a/.ddev/addon-metadata/phpmyadmin/manifest.yaml b/.ddev/addon-metadata/phpmyadmin/manifest.yaml new file mode 100755 index 00000000..1da95230 --- /dev/null +++ b/.ddev/addon-metadata/phpmyadmin/manifest.yaml @@ -0,0 +1,10 @@ +name: phpmyadmin +repository: ddev/ddev-phpmyadmin +version: v0.3.9 +install_date: "2024-11-15T17:27:23+01:00" +project_files: + - docker-compose.phpmyadmin.yaml + - docker-compose.phpmyadmin_norouter.yaml + - commands/host/phpmyadmin +global_files: [] +removal_actions: [] diff --git a/.ddev/addon-metadata/redis/manifest.yaml b/.ddev/addon-metadata/redis/manifest.yaml new file mode 100755 index 00000000..531812d0 --- /dev/null +++ b/.ddev/addon-metadata/redis/manifest.yaml @@ -0,0 +1,19 @@ +name: redis +repository: ddev/ddev-redis-7 +version: v2.7.1 +install_date: "2024-11-14T13:56:41+01:00" +project_files: + - commands/redis/redis + - commands/redis/redis-flush + - redis/redis.conf + - redis/advanced.conf + - redis/append.conf + - redis/general.conf + - redis/io.conf + - redis/memory.conf + - redis/network.conf + - redis/security.conf + - redis/snapshots.conf + - docker-compose.redis.yaml +global_files: [] +removal_actions: [] diff --git a/.ddev/apache/vite.conf b/.ddev/apache/vite.conf new file mode 100755 index 00000000..9dd707ca --- /dev/null +++ b/.ddev/apache/vite.conf @@ -0,0 +1,30 @@ +#ddev-generated + + ServerName vite.haikuatelier.fr.ddev.site + DocumentRoot /mnt/ddev_config/vite/ + ErrorDocument 503 "/vite-server-not-running.html" + + # Proxy development server + ProxyPass / http://localhost:5173/ + ProxyPassReverse / http://localhost:5173/ + + # Proxy websockets + RewriteEngine On + RewriteCond %{HTTP:Upgrade} websocket [NC] + RewriteCond %{HTTP:Connection} upgrade [NC] + RewriteRule ^/?(.*) "ws://localhost:5173/$1" [P,L] + + # Do not proxy files in /vite to display the static 503 error message + + ProxyPass ! + + + + Require all granted + + + ErrorLog /dev/stdout + CustomLog ${APACHE_LOG_DIR}/access.log combined + + Alias "/phpstatus" "/var/www/phpstatus.php" + diff --git a/.ddev/commands/host/phpmyadmin b/.ddev/commands/host/phpmyadmin new file mode 100755 index 00000000..c03ee85d --- /dev/null +++ b/.ddev/commands/host/phpmyadmin @@ -0,0 +1,19 @@ +#!/bin/bash + +## #ddev-generated: If you want to edit and own this file, remove this line. +## Description: Launch a browser with PhpMyAdmin +## Usage: phpmyadmin +## Example: "ddev phpmyadmin" + +DDEV_PHPMYADMIN_PORT=8036 +DDEV_PHPMYADMIN_HTTPS_PORT=8037 +if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then + # Gitpod: "gp preview" opens a blank page for PhpMyAdmin, use "xdg-open" instead + if [ "${OSTYPE:-}" = "linux-gnu" ] && [ -n "${GITPOD_WORKSPACE_ID:-}" ] && [ -z "${DDEV_DEBUG:-}" ]; then + xdg-open "$(DDEV_DEBUG=true ddev launch :$DDEV_PHPMYADMIN_PORT | grep "FULLURL" | awk '{print $2}')" + else + ddev launch :$DDEV_PHPMYADMIN_PORT + fi +else + ddev launch :$DDEV_PHPMYADMIN_HTTPS_PORT +fi diff --git a/.ddev/commands/redis/redis b/.ddev/commands/redis/redis new file mode 100755 index 00000000..bf015436 --- /dev/null +++ b/.ddev/commands/redis/redis @@ -0,0 +1,7 @@ +#!/bin/sh +#ddev-generated +## Description: Run redis-cli inside the redis container +## Usage: redis [flags] [args] +## Example: "redis KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version" + +redis-cli -p 6379 -h redis -a redis --no-auth-warning "$@" diff --git a/.ddev/commands/redis/redis-cli b/.ddev/commands/redis/redis-cli new file mode 100755 index 00000000..791bfe47 --- /dev/null +++ b/.ddev/commands/redis/redis-cli @@ -0,0 +1,7 @@ +#!/bin/bash +#ddev-generated +## Description: Run redis-cli inside the redis container +## Usage: redis-cli [flags] [args] +## Example: "ddev redis-cli KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version" + +redis-cli -p 6379 -h redis $@ diff --git a/.ddev/commands/redis/redis-flush b/.ddev/commands/redis/redis-flush new file mode 100755 index 00000000..2beda33a --- /dev/null +++ b/.ddev/commands/redis/redis-flush @@ -0,0 +1,7 @@ +#!/bin/sh +#ddev-generated +## Description: Run redis-cli inside the redis container +## Usage: redis-flush +## Example: "redis-flush" + +redis-cli -a redis --no-auth-warning FLUSHALL ASYNC diff --git a/.ddev/commands/web/vite b/.ddev/commands/web/vite new file mode 100755 index 00000000..93b4fae8 --- /dev/null +++ b/.ddev/commands/web/vite @@ -0,0 +1,49 @@ +#!/bin/bash + +#ddev-generated + +## Description: Run vite inside the web container. Servers started by vite (dev, preview) are proxied and made available at https://vite.$PROJECTNAME.ddev.site +## Usage: vite dev|serve|build|optimize|preview [flags] [args] +## Example: "ddev vite" or "ddev vite build" or "ddev vite build --outDir path/to/output/" +## ExecRaw: true +## HostWorkingDir: true +## AutocompleteTerms: ["dev","serve","build","optimize","preview"] + +# Preferred package manager can be specified via VITE_PACKAGE_MANAGER environment variable in config.vite.yaml +PACKAGE_MANAGER="${VITE_PACKAGE_MANAGER:-npm}" + +COMMAND="${1:-dev}" +OPTIONS=$@ + +case $PACKAGE_MANAGER in + npm | npx) + PACKAGE_MANAGER_COMMAND="npx vite" + ;; + yarn) + PACKAGE_MANAGER_COMMAND="yarn exec vite --" + ;; + pnpm) + PACKAGE_MANAGER_COMMAND="pnpm exec vite" + ;; + bun) + PACKAGE_MANAGER_COMMAND="bun vite" + ;; + *) + echo "Invalid node package manager specified: $PACKAGE_MANAGER" + exit 1 + ;; +esac + +if [[ "${COMMAND:0:1}" == "-" ]]; then + COMMAND="dev" +else + OPTIONS="${@:2}" +fi + +echo "Using $PACKAGE_MANAGER to run vite..." + +if [[ $COMMAND == "dev" ]] || [[ $COMMAND == "serve" ]] || [[ $COMMAND == "preview" ]]; then + $PACKAGE_MANAGER_COMMAND $COMMAND --host --port 5173 --strictPort $OPTIONS +else + $PACKAGE_MANAGER_COMMAND $COMMAND $OPTIONS +fi diff --git a/.ddev/config.vite.yaml b/.ddev/config.vite.yaml new file mode 100755 index 00000000..f8df0e3b --- /dev/null +++ b/.ddev/config.vite.yaml @@ -0,0 +1,16 @@ +# ddev-generated +additional_hostnames: + - vite.haikuatelier.fr +web_environment: + - VITE_SERVER_URI=https://vite.haikuatelier.fr.ddev.site + - VITE_PACKAGE_MANAGER=pnpm + +# Enable these lines if you want to expose the vite port to the host system +# Note that this means that only one ddev project with vite can be run at a time +# as the different processes might interfere with each other +# +# web_extra_exposed_ports: +# - name: vite +# container_port: 5173 +# http_port: 5172 +# https_port: 5173 diff --git a/.ddev/config.yaml b/.ddev/config.yaml new file mode 100755 index 00000000..e49b8041 --- /dev/null +++ b/.ddev/config.yaml @@ -0,0 +1,286 @@ +name: haikuatelier.fr +type: wordpress +docroot: web +php_version: "8.4" +webserver_type: nginx-fpm +xdebug_enabled: false +additional_hostnames: + - vite.haikuatelier.fr +additional_fqdns: [] +database: + type: mariadb + version: "11.4" +use_dns_when_possible: true +composer_version: "2" +web_environment: + - VITE_SERVER_URI=https://vite.haikuatelier.fr.ddev.site + - VITE_PACKAGE_MANAGER=pnpm +corepack_enable: true + +# Key features of DDEV's config.yaml: + +# name: # Name of the project, automatically provides +# http://projectname.ddev.site and https://projectname.ddev.site + +# type: # backdrop, cakephp, craftcms, drupal, drupal6, drupal7, drupal8, drupal9, drupal10, drupal11, laravel, magento, magento2, php, shopware6, silverstripe, symfony, typo3, wordpress +# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more +# information on the different project types + +# docroot: # Relative path to the directory containing index.php. + +# php_version: "8.3" # PHP version to use, "5.6" through "8.4" + +# You can explicitly specify the webimage but this +# is not recommended, as the images are often closely tied to DDEV's' behavior, +# so this can break upgrades. + +# webimage: # nginx/php docker image. + +# database: +# type: # mysql, mariadb, postgres +# version: # database version, like "10.11" or "8.0" +# MariaDB versions can be 5.5-10.8, 10.11, and 11.4. +# MySQL versions can be 5.5-8.0. +# PostgreSQL versions can be 9-17. + +# router_http_port: # Port to be used for http (defaults to global configuration, usually 80) +# router_https_port: # Port for https (defaults to global configuration, usually 443) + +# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better, +# as leaving Xdebug enabled all the time is a big performance hit. + +# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better, +# as leaving Xhprof enabled all the time is a big performance hit. + +# webserver_type: nginx-fpm or apache-fpm + +# timezone: Europe/Berlin +# If timezone is unset, DDEV will attempt to derive it from the host system timezone +# using the $TZ environment variable or the /etc/localtime symlink. +# This is the timezone used in the containers and by PHP; +# it can be set to any valid timezone, +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# For example Europe/Dublin or MST7MDT + +# composer_root: +# Relative path to the Composer root directory from the project root. This is +# the directory which contains the composer.json and where all Composer related +# commands are executed. + +# composer_version: "2" +# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 +# to use the latest major version available at the time your container is built. +# It is also possible to use each other Composer version channel. This includes: +# - 2.2 (latest Composer LTS version) +# - stable +# - preview +# - snapshot +# Alternatively, an explicit Composer version may be specified, for example "2.2.18". +# To reinstall Composer after the image was built, run "ddev debug rebuild". + +# nodejs_version: "22" +# change from the default system Node.js version to any other version. +# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information +# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation, +# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use, +# can specify any version, and is more robust than using 'nvm'. + +# corepack_enable: false +# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm + +# additional_hostnames: +# - somename +# - someothername +# would provide http and https URLs for "somename.ddev.site" +# and "someothername.ddev.site". + +# additional_fqdns: +# - example.com +# - sub1.example.com +# would provide http and https URLs for "example.com" and "sub1.example.com" +# Please take care with this because it can cause great confusion. + +# upload_dirs: "custom/upload/dir" +# +# upload_dirs: +# - custom/upload/dir +# - ../private +# +# would set the destination paths for ddev import-files to /custom/upload/dir +# When Mutagen is enabled this path is bind-mounted so that all the files +# in the upload_dirs don't have to be synced into Mutagen. + +# disable_upload_dirs_warning: false +# If true, turns off the normal warning that says +# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set" + +# ddev_version_constraint: "" +# Example: +# ddev_version_constraint: ">= 1.22.4" +# This will enforce that the running ddev version is within this constraint. +# See https://github.com/Masterminds/semver#checking-version-constraints for +# supported constraint formats + +# working_dir: +# web: /var/www/html +# db: /home +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. + +# omit_containers: [db, ddev-ssh-agent] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of DDEV that access the +# database container will be unusable. In the global configuration it is also +# possible to omit ddev-router, but not here. + +# performance_mode: "global" +# DDEV offers performance optimization strategies to improve the filesystem +# performance depending on your host system. Should be configured globally. +# +# If set, will override the global config. Possible values are: +# - "global": uses the value from the global config. +# - "none": disables performance optimization for this project. +# - "mutagen": enables Mutagen for this project. +# - "nfs": enables NFS for this project. +# +# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs +# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen + +# fail_on_hook_fail: False +# Decide whether 'ddev start' should be interrupted by a failing hook + +# host_https_port: "59002" +# The host port binding for https can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_webserver_port: "59001" +# The host port binding for the ddev-webserver can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_db_port: "59002" +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic +# unless explicitly specified. + +# mailpit_http_port: "8025" +# mailpit_https_port: "8026" +# The Mailpit ports can be changed from the default 8025 and 8026 + +# host_mailpit_port: "8025" +# The mailpit port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be bound directly to localhost if specified here. + +# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# Extra Debian packages that are needed in the webimage can be added here + +# dbimage_extra_packages: [telnet,netcat] +# Extra Debian packages that are needed in the dbimage can be added here + +# use_dns_when_possible: true +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution +# instead of editing /etc/hosts +# Defaults to true + +# project_tld: ddev.site +# The top-level domain used for project URLs +# The default "ddev.site" allows DNS lookup via a wildcard +# If you prefer you can change this to "ddev.local" to preserve +# pre-v1.9 behavior. + +# ngrok_args: --basic-auth username:pass1234 +# Provide extra flags to the "ngrok http" command, see +# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" + +# disable_settings_management: false +# If true, DDEV will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's additional.php +# In this case the user must provide all such settings. + +# You can inject environment variables into the web container with: +# web_environment: +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue + +# no_project_mount: false +# (Experimental) If true, DDEV will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# bind_all_interfaces: false +# If true, host ports will be bound on all network interfaces, +# not the localhost interface only. This means that ports +# will be available on the local network if the host firewall +# allows it. + +# default_container_timeout: 120 +# The default time that DDEV waits for all containers to become ready can be increased from +# the default 120. This helps in importing huge databases, for example. + +# web_extra_exposed_ports: +# - name: nodejs +# container_port: 3000 +# http_port: 2999 +# https_port: 3000 +# - name: something +# container_port: 4000 +# https_port: 4000 +# http_port: 3999 +# Allows a set of extra ports to be exposed via ddev-router +# Fill in all three fields even if you don’t intend to use the https_port! +# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start. +# +# The port behavior on the ddev-webserver must be arranged separately, for example +# using web_extra_daemons. +# For example, with a web app on port 3000 inside the container, this config would +# expose that web app on https://.ddev.site:9999 and http://.ddev.site:9998 +# web_extra_exposed_ports: +# - name: myapp +# container_port: 3000 +# http_port: 9998 +# https_port: 9999 + +# web_extra_daemons: +# - name: "http-1" +# command: "/var/www/html/node_modules/.bin/http-server -p 3000" +# directory: /var/www/html +# - name: "http-2" +# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" +# directory: /var/www/html + +# override_config: false +# By default, config.*.yaml files are *merged* into the configuration +# But this means that some things can't be overridden +# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge +# and you can't erase existing hooks or all environment variables. +# However, with "override_config: true" in a particular config.*.yaml file, +# 'use_dns_when_possible: false' can override the existing values, and +# hooks: +# post-start: [] +# or +# web_environment: [] +# or +# additional_hostnames: [] +# can have their intended affect. 'override_config' affects only behavior of the +# config.*.yaml file it exists in. + +# Many DDEV commands can be extended to run tasks before or after the +# DDEV command is executed, for example "post-start", "post-import-db", +# "pre-composer", "post-composer" +# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more +# information on the commands that can be extended and the tasks you can define +# for them. Example: +# hooks: +# Un-comment to emit the WP CLI version after ddev start. +# post-start: +# - exec: wp cli version diff --git a/.ddev/docker-compose.phpmyadmin.yaml b/.ddev/docker-compose.phpmyadmin.yaml new file mode 100755 index 00000000..b272c1ad --- /dev/null +++ b/.ddev/docker-compose.phpmyadmin.yaml @@ -0,0 +1,30 @@ +# ddev-generated +services: + phpmyadmin: + container_name: ddev-${DDEV_SITENAME}-phpmyadmin + image: phpmyadmin:5.2.0 + working_dir: "/root" + restart: "no" + labels: + com.ddev.site-name: ${DDEV_SITENAME} + com.ddev.approot: $DDEV_APPROOT + volumes: + - ".:/mnt/ddev_config" + - "ddev-global-cache:/mnt/ddev-global-cache" + expose: + - "80" + environment: + - PMA_USER=root + - PMA_PASSWORD=root + - PMA_HOST=db + - PMA_PORT=3306 + - VIRTUAL_HOST=$DDEV_HOSTNAME + - UPLOAD_LIMIT=4000M + - HTTP_EXPOSE=8036:80 + - HTTPS_EXPOSE=8037:80 + healthcheck: + interval: 120s + timeout: 2s + retries: 1 + depends_on: + - db diff --git a/.ddev/docker-compose.phpmyadmin_norouter.yaml b/.ddev/docker-compose.phpmyadmin_norouter.yaml new file mode 100755 index 00000000..4ddd5a73 --- /dev/null +++ b/.ddev/docker-compose.phpmyadmin_norouter.yaml @@ -0,0 +1,4 @@ +# ddev-generated +# If omit_containers[ddev-router] then this file will be replaced +# with another with a `ports` statement to directly expose port 80 to 8036 +services: {} diff --git a/.ddev/docker-compose.redis.yaml b/.ddev/docker-compose.redis.yaml new file mode 100755 index 00000000..66417869 --- /dev/null +++ b/.ddev/docker-compose.redis.yaml @@ -0,0 +1,34 @@ +# ddev-generated +volumes: + redis: + name: ddev-${DDEV_SITENAME}-redis + labels: + com.ddev.site-name: ${DDEV_SITENAME} + +services: + redis: + container_name: ddev-${DDEV_SITENAME}-redis + hostname: ddev-${DDEV_SITENAME}-minio + image: redis:7.2-alpine + command: /etc/redis/conf/redis.conf + volumes: + - ".:/mnt/ddev_config" + - "ddev-global-cache:/mnt/ddev-global-cache" + - "./redis:/etc/redis/conf" + - "redis:/data" + expose: + - 6379 + networks: + - default + deploy: + resources: + limits: + cpus: "2.5" + memory: "768M" + reservations: + cpus: "1.5" + memory: "512M" + restart: "no" + labels: + com.ddev.site-name: ${DDEV_SITENAME} + com.ddev.approot: $DDEV_APPROOT diff --git a/.ddev/nginx_full/vite.conf b/.ddev/nginx_full/vite.conf new file mode 100755 index 00000000..f3f7eb5a --- /dev/null +++ b/.ddev/nginx_full/vite.conf @@ -0,0 +1,33 @@ +#ddev-generated +server { + server_name vite.haikuatelier.fr.ddev.site; + + listen 80; + listen 443 ssl; + + ssl_certificate /etc/ssl/certs/master.crt; + ssl_certificate_key /etc/ssl/certs/master.key; + + include /etc/nginx/monitoring.conf; + + # Disable sendfile as per https://docs.vagrantup.com/v2/synced-folders/virtualbox.html + sendfile off; + error_log /dev/stdout info; + access_log off; + + location /vite-server-not-running.html { + root /mnt/ddev_config/vite/; + } + + location / { + proxy_pass http://localhost:5173; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; + proxy_set_header X-Forwarded-Host $http_x_forwarded_host; + error_page 502 /vite-server-not-running.html; + } +} diff --git a/.ddev/redis/advanced.conf b/.ddev/redis/advanced.conf new file mode 100755 index 00000000..e1875528 --- /dev/null +++ b/.ddev/redis/advanced.conf @@ -0,0 +1,341 @@ +# #ddev-generated +############################### ADVANCED CONFIG ############################### + +# Hashes are encoded using a memory efficient data structure when they have a +# small number of entries, and the biggest entry does not exceed a given +# threshold. These thresholds can be configured using the following directives. +hash-max-ziplist-entries 512 +hash-max-ziplist-value 64 + +# Lists are also encoded in a special way to save a lot of space. +# The number of entries allowed per internal list node can be specified +# as a fixed maximum size or a maximum number of elements. +# For a fixed maximum size, use -5 through -1, meaning: +# -5: max size: 64 Kb <-- not recommended for normal workloads +# -4: max size: 32 Kb <-- not recommended +# -3: max size: 16 Kb <-- probably not recommended +# -2: max size: 8 Kb <-- good +# -1: max size: 4 Kb <-- good +# Positive numbers mean store up to _exactly_ that number of elements +# per list node. +# The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size), +# but if your use case is unique, adjust the settings as necessary. +list-max-ziplist-size -2 + +# Lists may also be compressed. +# Compress depth is the number of quicklist ziplist nodes from *each* side of +# the list to *exclude* from compression. The head and tail of the list +# are always uncompressed for fast push/pop operations. Settings are: +# 0: disable all list compression +# 1: depth 1 means "don't start compressing until after 1 node into the list, +# going from either the head or tail" +# So: [head]->node->node->...->node->[tail] +# [head], [tail] will always be uncompressed; inner nodes will compress. +# 2: [head]->[next]->node->node->...->node->[prev]->[tail] +# 2 here means: don't compress head or head->next or tail->prev or tail, +# but compress all nodes between them. +# 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail] +# etc. +list-compress-depth 0 + +# Sets have a special encoding in just one case: when a set is composed +# of just strings that happen to be integers in radix 10 in the range +# of 64 bit signed integers. +# The following configuration setting sets the limit in the size of the +# set in order to use this special memory saving encoding. +set-max-intset-entries 512 + +# Similarly to hashes and lists, sorted sets are also specially encoded in +# order to save a lot of space. This encoding is only used when the length and +# elements of a sorted set are below the following limits: +zset-max-ziplist-entries 128 +zset-max-ziplist-value 64 + +# HyperLogLog sparse representation bytes limit. The limit includes the +# 16 bytes header. When an HyperLogLog using the sparse representation crosses +# this limit, it is converted into the dense representation. +# +# A value greater than 16000 is totally useless, since at that point the +# dense representation is more memory efficient. +# +# The suggested value is ~ 3000 in order to have the benefits of +# the space efficient encoding without slowing down too much PFADD, +# which is O(N) with the sparse encoding. The value can be raised to +# ~ 10000 when CPU is not a concern, but space is, and the data set is +# composed of many HyperLogLogs with cardinality in the 0 - 15000 range. +hll-sparse-max-bytes 3000 + +# Streams macro node max size / items. The stream data structure is a radix +# tree of big nodes that encode multiple items inside. Using this configuration +# it is possible to configure how big a single node can be in bytes, and the +# maximum number of items it may contain before switching to a new node when +# appending new stream entries. If any of the following settings are set to +# zero, the limit is ignored, so for instance it is possible to set just a +# max entires limit by setting max-bytes to 0 and max-entries to the desired +# value. +stream-node-max-bytes 4096 +stream-node-max-entries 100 + +# Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in +# order to help rehashing the main Redis hash table (the one mapping top-level +# keys to values). The hash table implementation Redis uses (see dict.c) +# performs a lazy rehashing: the more operation you run into a hash table +# that is rehashing, the more rehashing "steps" are performed, so if the +# server is idle the rehashing is never complete and some more memory is used +# by the hash table. +# +# The default is to use this millisecond 10 times every second in order to +# actively rehash the main dictionaries, freeing memory when possible. +# +# If unsure: +# use "activerehashing no" if you have hard latency requirements and it is +# not a good thing in your environment that Redis can reply from time to time +# to queries with 2 milliseconds delay. +# +# use "activerehashing yes" if you don't have such hard requirements but +# want to free memory asap when possible. +activerehashing yes + +# The client output buffer limits can be used to force disconnection of clients +# that are not reading data from the server fast enough for some reason (a +# common reason is that a Pub/Sub client can't consume messages as fast as the +# publisher can produce them). +# +# The limit can be set differently for the three different classes of clients: +# +# normal -> normal clients including MONITOR clients +# replica -> replica clients +# pubsub -> clients subscribed to at least one pubsub channel or pattern +# +# The syntax of every client-output-buffer-limit directive is the following: +# +# client-output-buffer-limit +# +# A client is immediately disconnected once the hard limit is reached, or if +# the soft limit is reached and remains reached for the specified number of +# seconds (continuously). +# So for instance if the hard limit is 32 megabytes and the soft limit is +# 16 megabytes / 10 seconds, the client will get disconnected immediately +# if the size of the output buffers reach 32 megabytes, but will also get +# disconnected if the client reaches 16 megabytes and continuously overcomes +# the limit for 10 seconds. +# +# By default normal clients are not limited because they don't receive data +# without asking (in a push way), but just after a request, so only +# asynchronous clients may create a scenario where data is requested faster +# than it can read. +# +# Instead there is a default limit for pubsub and replica clients, since +# subscribers and replicas receive data in a push fashion. +# +# Both the hard or the soft limit can be disabled by setting them to zero. +client-output-buffer-limit normal 0 0 0 +client-output-buffer-limit replica 256mb 64mb 60 +client-output-buffer-limit pubsub 32mb 8mb 60 + +# Client query buffers accumulate new commands. They are limited to a fixed +# amount by default in order to avoid that a protocol desynchronization (for +# instance due to a bug in the client) will lead to unbound memory usage in +# the query buffer. However you can configure it here if you have very special +# needs, such us huge multi/exec requests or alike. +# +# client-query-buffer-limit 1gb + +# In the Redis protocol, bulk requests, that are, elements representing single +# strings, are normally limited to 512 mb. However you can change this limit +# here, but must be 1mb or greater +# +# proto-max-bulk-len 512mb + +# Redis calls an internal function to perform many background tasks, like +# closing connections of clients in timeout, purging expired keys that are +# never requested, and so forth. +# +# Not all tasks are performed with the same frequency, but Redis checks for +# tasks to perform according to the specified "hz" value. +# +# By default "hz" is set to 10. Raising the value will use more CPU when +# Redis is idle, but at the same time will make Redis more responsive when +# there are many keys expiring at the same time, and timeouts may be +# handled with more precision. +# +# The range is between 1 and 500, however a value over 100 is usually not +# a good idea. Most users should use the default of 10 and raise this up to +# 100 only in environments where very low latency is required. +hz 10 + +# Normally it is useful to have an HZ value which is proportional to the +# number of clients connected. This is useful in order, for instance, to +# avoid too many clients are processed for each background task invocation +# in order to avoid latency spikes. +# +# Since the default HZ value by default is conservatively set to 10, Redis +# offers, and enables by default, the ability to use an adaptive HZ value +# which will temporarily raise when there are many connected clients. +# +# When dynamic HZ is enabled, the actual configured HZ will be used +# as a baseline, but multiples of the configured HZ value will be actually +# used as needed once more clients are connected. In this way an idle +# instance will use very little CPU time while a busy instance will be +# more responsive. +dynamic-hz yes + +# When a child rewrites the AOF file, if the following option is enabled +# the file will be fsync-ed every 32 MB of data generated. This is useful +# in order to commit the file to the disk more incrementally and avoid +# big latency spikes. +aof-rewrite-incremental-fsync yes + +# When redis saves RDB file, if the following option is enabled +# the file will be fsync-ed every 32 MB of data generated. This is useful +# in order to commit the file to the disk more incrementally and avoid +# big latency spikes. +rdb-save-incremental-fsync yes + +# Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good +# idea to start with the default settings and only change them after investigating +# how to improve the performances and how the keys LFU change over time, which +# is possible to inspect via the OBJECT FREQ command. +# +# There are two tunable parameters in the Redis LFU implementation: the +# counter logarithm factor and the counter decay time. It is important to +# understand what the two parameters mean before changing them. +# +# The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis +# uses a probabilistic increment with logarithmic behavior. Given the value +# of the old counter, when a key is accessed, the counter is incremented in +# this way: +# +# 1. A random number R between 0 and 1 is extracted. +# 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1). +# 3. The counter is incremented only if R < P. +# +# The default lfu-log-factor is 10. This is a table of how the frequency +# counter changes with a different number of accesses with different +# logarithmic factors: +# +# +--------+------------+------------+------------+------------+------------+ +# | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits | +# +--------+------------+------------+------------+------------+------------+ +# | 0 | 104 | 255 | 255 | 255 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# | 1 | 18 | 49 | 255 | 255 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# | 10 | 10 | 18 | 142 | 255 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# | 100 | 8 | 11 | 49 | 143 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# +# NOTE: The above table was obtained by running the following commands: +# +# redis-benchmark -n 1000000 incr foo +# redis-cli object freq foo +# +# NOTE 2: The counter initial value is 5 in order to give new objects a chance +# to accumulate hits. +# +# The counter decay time is the time, in minutes, that must elapse in order +# for the key counter to be divided by two (or decremented if it has a value +# less <= 10). +# +# The default value for the lfu-decay-time is 1. A special value of 0 means to +# decay the counter every time it happens to be scanned. +# +# lfu-log-factor 10 +# lfu-decay-time 1 + +############################## DEBUG COMMAND ############################# + +enable-debug-command yes + +########################### ACTIVE DEFRAGMENTATION ####################### +# +# What is active defragmentation? +# ------------------------------- +# +# Active (online) defragmentation allows a Redis server to compact the +# spaces left between small allocations and deallocations of data in memory, +# thus allowing to reclaim back memory. +# +# Fragmentation is a natural process that happens with every allocator (but +# less so with Jemalloc, fortunately) and certain workloads. Normally a server +# restart is needed in order to lower the fragmentation, or at least to flush +# away all the data and create it again. However thanks to this feature +# implemented by Oran Agra for Redis 4.0 this process can happen at runtime +# in a "hot" way, while the server is running. +# +# Basically when the fragmentation is over a certain level (see the +# configuration options below) Redis will start to create new copies of the +# values in contiguous memory regions by exploiting certain specific Jemalloc +# features (in order to understand if an allocation is causing fragmentation +# and to allocate it in a better place), and at the same time, will release the +# old copies of the data. This process, repeated incrementally for all the keys +# will cause the fragmentation to drop back to normal values. +# +# Important things to understand: +# +# 1. This feature is disabled by default, and only works if you compiled Redis +# to use the copy of Jemalloc we ship with the source code of Redis. +# This is the default with Linux builds. +# +# 2. You never need to enable this feature if you don't have fragmentation +# issues. +# +# 3. Once you experience fragmentation, you can enable this feature when +# needed with the command "CONFIG SET activedefrag yes". +# +# The configuration parameters are able to fine tune the behavior of the +# defragmentation process. If you are not sure about what they mean it is +# a good idea to leave the defaults untouched. + +# Enabled active defragmentation +# activedefrag no + +# Minimum amount of fragmentation waste to start active defrag +# active-defrag-ignore-bytes 100mb + +# Minimum percentage of fragmentation to start active defrag +# active-defrag-threshold-lower 10 + +# Maximum percentage of fragmentation at which we use maximum effort +# active-defrag-threshold-upper 100 + +# Minimal effort for defrag in CPU percentage, to be used when the lower +# threshold is reached +# active-defrag-cycle-min 1 + +# Maximal effort for defrag in CPU percentage, to be used when the upper +# threshold is reached +# active-defrag-cycle-max 25 + +# Maximum number of set/hash/zset/list fields that will be processed from +# the main dictionary scan +# active-defrag-max-scan-fields 1000 + +# Jemalloc background thread for purging will be enabled by default +jemalloc-bg-thread yes + +# It is possible to pin different threads and processes of Redis to specific +# CPUs in your system, in order to maximize the performances of the server. +# This is useful both in order to pin different Redis threads in different +# CPUs, but also in order to make sure that multiple Redis instances running +# in the same host will be pinned to different CPUs. +# +# Normally you can do this using the "taskset" command, however it is also +# possible to this via Redis configuration directly, both in Linux and FreeBSD. +# +# You can pin the server/IO threads, bio threads, aof rewrite child process, and +# the bgsave child process. The syntax to specify the cpu list is the same as +# the taskset command: +# +# Set redis server/io threads to cpu affinity 0,2,4,6: +# server_cpulist 0-7:2 +# +# Set bio threads to cpu affinity 1,3: +# bio_cpulist 1,3 +# +# Set aof rewrite child process to cpu affinity 8,9,10,11: +# aof_rewrite_cpulist 8-11 +# +# Set bgsave child process to cpu affinity 1,10,11 +# bgsave_cpulist 1,10-11 diff --git a/.ddev/redis/append.conf b/.ddev/redis/append.conf new file mode 100755 index 00000000..ca05a7b5 --- /dev/null +++ b/.ddev/redis/append.conf @@ -0,0 +1,133 @@ +# #ddev-generated +############################## APPEND ONLY MODE ############################### + +# By default Redis asynchronously dumps the dataset on disk. This mode is +# good enough in many applications, but an issue with the Redis process or +# a power outage may result into a few minutes of writes lost (depending on +# the configured save points). +# +# The Append Only File is an alternative persistence mode that provides +# much better durability. For instance using the default data fsync policy +# (see later in the config file) Redis can lose just one second of writes in a +# dramatic event like a server power outage, or a single write if something +# wrong with the Redis process itself happens, but the operating system is +# still running correctly. +# +# AOF and RDB persistence can be enabled at the same time without problems. +# If the AOF is enabled on startup Redis will load the AOF, that is the file +# with the better durability guarantees. +# +# Please check http://redis.io/topics/persistence for more information. + +appendonly yes + +# The name of the append only file (default: "appendonly.aof") + +appendfilename "appendonly.aof" + +# For convenience, Redis stores all persistent append-only files in a dedicated +# directory. The name of the directory is determined by the appenddirname +# configuration parameter. + +appenddirname "append" + +# The fsync() call tells the Operating System to actually write data on disk +# instead of waiting for more data in the output buffer. Some OS will really flush +# data on disk, some other OS will just try to do it ASAP. +# +# Redis supports three different modes: +# +# no: don't fsync, just let the OS flush the data when it wants. Faster. +# always: fsync after every write to the append only log. Slow, Safest. +# everysec: fsync only one time every second. Compromise. +# +# The default is "everysec", as that's usually the right compromise between +# speed and data safety. It's up to you to understand if you can relax this to +# "no" that will let the operating system flush the output buffer when +# it wants, for better performances (but if you can live with the idea of +# some data loss consider the default persistence mode that's snapshotting), +# or on the contrary, use "always" that's very slow but a bit safer than +# everysec. +# +# More details please check the following article: +# http://antirez.com/post/redis-persistence-demystified.html +# +# If unsure, use "everysec". + +appendfsync no + +# When the AOF fsync policy is set to always or everysec, and a background +# saving process (a background save or AOF log background rewriting) is +# performing a lot of I/O against the disk, in some Linux configurations +# Redis may block too long on the fsync() call. Note that there is no fix for +# this currently, as even performing fsync in a different thread will block +# our synchronous write(2) call. +# +# In order to mitigate this problem it's possible to use the following option +# that will prevent fsync() from being called in the main process while a +# BGSAVE or BGREWRITEAOF is in progress. +# +# This means that while another child is saving, the durability of Redis is +# the same as "appendfsync none". In practical terms, this means that it is +# possible to lose up to 30 seconds of log in the worst scenario (with the +# default Linux settings). +# +# If you have latency problems turn this to "yes". Otherwise leave it as +# "no" that is the safest pick from the point of view of durability. + +no-appendfsync-on-rewrite no + +# Automatic rewrite of the append only file. +# Redis is able to automatically rewrite the log file implicitly calling +# BGREWRITEAOF when the AOF log size grows by the specified percentage. +# +# This is how it works: Redis remembers the size of the AOF file after the +# latest rewrite (if no rewrite has happened since the restart, the size of +# the AOF at startup is used). +# +# This base size is compared to the current size. If the current size is +# bigger than the specified percentage, the rewrite is triggered. Also +# you need to specify a minimal size for the AOF file to be rewritten, this +# is useful to avoid rewriting the AOF file even if the percentage increase +# is reached but it is still pretty small. +# +# Specify a percentage of zero in order to disable the automatic AOF +# rewrite feature. + +auto-aof-rewrite-percentage 100 +auto-aof-rewrite-min-size 64mb + +# An AOF file may be found to be truncated at the end during the Redis +# startup process, when the AOF data gets loaded back into memory. +# This may happen when the system where Redis is running +# crashes, especially when an ext4 filesystem is mounted without the +# data=ordered option (however this can't happen when Redis itself +# crashes or aborts but the operating system still works correctly). +# +# Redis can either exit with an error when this happens, or load as much +# data as possible (the default now) and start if the AOF file is found +# to be truncated at the end. The following option controls this behavior. +# +# If aof-load-truncated is set to yes, a truncated AOF file is loaded and +# the Redis server starts emitting a log to inform the user of the event. +# Otherwise if the option is set to no, the server aborts with an error +# and refuses to start. When the option is set to no, the user requires +# to fix the AOF file using the "redis-check-aof" utility before to restart +# the server. +# +# Note that if the AOF file will be found to be corrupted in the middle +# the server will still exit with an error. This option only applies when +# Redis will try to read more data from the AOF file but not enough bytes +# will be found. +aof-load-truncated yes + +# When rewriting the AOF file, Redis is able to use an RDB preamble in the +# AOF file for faster rewrites and recoveries. When this option is turned +# on the rewritten AOF file is composed of two different stanzas: +# +# [RDB file][AOF tail] +# +# When loading, Redis recognizes that the AOF file starts with the "REDIS" +# string and loads the prefixed RDB file, then continues loading the AOF +# tail. +aof-use-rdb-preamble yes diff --git a/.ddev/redis/general.conf b/.ddev/redis/general.conf new file mode 100755 index 00000000..edeccccb --- /dev/null +++ b/.ddev/redis/general.conf @@ -0,0 +1,44 @@ +# #ddev-generated +################################# GENERAL ##################################### + +# By default Redis does not run as a daemon. Use 'yes' if you need it. +# Note that Redis will write a pid file in /var/run/redis.pid when daemonized. +daemonize no + +# If you run Redis from upstart or systemd, Redis can interact with your +# supervision tree. Options: +# supervised no - no supervision interaction +# supervised upstart - signal upstart by putting Redis into SIGSTOP mode +# requires "expect stop" in your upstart job config +# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET +# supervised auto - detect upstart or systemd method based on +# UPSTART_JOB or NOTIFY_SOCKET environment variables +# Note: these supervision methods only signal "process is ready." +# They do not enable continuous pings back to your supervisor. +supervised no + +# Specify the server verbosity level. +# This can be one of: +# debug (a lot of information, useful for development/testing) +# verbose (many rarely useful info, but not a mess like the debug level) +# notice (moderately verbose, what you want in production probably) +# warning (only very important / critical messages are logged) +loglevel notice + +# Specify the log file name. Also the empty string can be used to force +# Redis to log on the standard output. Note that if you use standard +# output for logging but daemonize, logs will be sent to /dev/null +logfile "" + +# Set the number of databases. The default database is DB 0, you can select +# a different one on a per-connection basis using SELECT where +# dbid is a number between 0 and 'databases'-1 +databases 4 + +# By default Redis shows an ASCII art logo only when started to log to the +# standard output and if the standard output is a TTY. Basically this means +# that normally a logo is displayed only in interactive sessions. +# +# However it is possible to force the pre-4.0 behavior and always show a +# ASCII art logo in startup logs by setting the following option to yes. +always-show-logo yes diff --git a/.ddev/redis/io.conf b/.ddev/redis/io.conf new file mode 100755 index 00000000..83da7370 --- /dev/null +++ b/.ddev/redis/io.conf @@ -0,0 +1,98 @@ +# #ddev-generated +################################ THREADED I/O ################################# + +# Redis is mostly single threaded, however there are certain threaded +# operations such as UNLINK, slow I/O accesses and other things that are +# performed on side threads. +# +# Now it is also possible to handle Redis clients socket reads and writes +# in different I/O threads. Since especially writing is so slow, normally +# Redis users use pipelining in order to speed up the Redis performances per +# core, and spawn multiple instances in order to scale more. Using I/O +# threads it is possible to easily speedup two times Redis without resorting +# to pipelining nor sharding of the instance. +# +# By default threading is disabled, we suggest enabling it only in machines +# that have at least 4 or more cores, leaving at least one spare core. +# Using more than 8 threads is unlikely to help much. We also recommend using +# threaded I/O only if you actually have performance problems, with Redis +# instances being able to use a quite big percentage of CPU time, otherwise +# there is no point in using this feature. +# +# So for instance if you have a four cores boxes, try to use 2 or 3 I/O +# threads, if you have a 8 cores, try to use 6 threads. In order to +# enable I/O threads use the following configuration directive: +# +io-threads 1 + +# +# Setting io-threads to 1 will just use the main thread as usual. +# When I/O threads are enabled, we only use threads for writes, that is +# to thread the write(2) syscall and transfer the client buffers to the +# socket. However it is also possible to enable threading of reads and +# protocol parsing using the following configuration directive, by setting +# it to yes: +# +io-threads-do-reads no + +# +# Usually threading reads doesn't help much. +# +# NOTE 1: This configuration directive cannot be changed at runtime via +# CONFIG SET. Aso this feature currently does not work when SSL is +# enabled. +# +# NOTE 2: If you want to test the Redis speedup using redis-benchmark, make +# sure you also run the benchmark itself in threaded mode, using the +# --threads option to match the number of Redis threads, otherwise you'll not +# be able to notice the improvements. + +############################ KERNEL OOM CONTROL ############################## + +# On Linux, it is possible to hint the kernel OOM killer on what processes +# should be killed first when out of memory. +# +# Enabling this feature makes Redis actively control the oom_score_adj value +# for all its processes, depending on their role. The default scores will +# attempt to have background child processes killed before all others, and +# replicas killed before masters. + +oom-score-adj no + +# When oom-score-adj is used, this directive controls the specific values used +# for master, replica and background child processes. Values range -1000 to +# 1000 (higher means more likely to be killed). +# +# Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities) +# can freely increase their value, but not decrease it below its initial +# settings. +# +# Values are used relative to the initial value of oom_score_adj when the server +# starts. Because typically the initial value is 0, they will often match the +# absolute values. + +oom-score-adj-values 0 200 800 + +################################## SLOW LOG ################################### + +# The Redis Slow Log is a system to log queries that exceeded a specified +# execution time. The execution time does not include the I/O operations +# like talking with the client, sending the reply and so forth, +# but just the time needed to actually execute the command (this is the only +# stage of command execution where the thread is blocked and can not serve +# other requests in the meantime). +# +# You can configure the slow log with two parameters: one tells Redis +# what is the execution time, in microseconds, to exceed in order for the +# command to get logged, and the other parameter is the length of the +# slow log. When a new command is logged the oldest one is removed from the +# queue of logged commands. + +# The following time is expressed in microseconds, so 1000000 is equivalent +# to one second. Note that a negative number disables the slow log, while +# a value of zero forces the logging of every command. +slowlog-log-slower-than 10000 + +# There is no limit to this length. Just be aware that it will consume memory. +# You can reclaim memory used by the slow log with SLOWLOG RESET. +slowlog-max-len 128 diff --git a/.ddev/redis/memory.conf b/.ddev/redis/memory.conf new file mode 100755 index 00000000..5d4f5a5e --- /dev/null +++ b/.ddev/redis/memory.conf @@ -0,0 +1,142 @@ +# #ddev-generated +############################## MEMORY MANAGEMENT ################################ + +# Set a memory usage limit to the specified amount of bytes. +# When the memory limit is reached Redis will try to remove keys +# according to the eviction policy selected (see maxmemory-policy). +# +# If Redis can't remove keys according to the policy, or if the policy is +# set to 'noeviction', Redis will start to reply with errors to commands +# that would use more memory, like SET, LPUSH, and so on, and will continue +# to reply to read-only commands like GET. +# +# This option is usually useful when using Redis as an LRU or LFU cache, or to +# set a hard memory limit for an instance (using the 'noeviction' policy). +# +# WARNING: If you have replicas attached to an instance with maxmemory on, +# the size of the output buffers needed to feed the replicas are subtracted +# from the used memory count, so that network problems / resyncs will +# not trigger a loop where keys are evicted, and in turn the output +# buffer of replicas is full with DELs of keys evicted triggering the deletion +# of more keys, and so forth until the database is completely emptied. +# +# In short... if you have replicas attached it is suggested that you set a lower +# limit for maxmemory so that there is some free RAM on the system for replica +# output buffers (but this is not needed if the policy is 'noeviction'). +# +maxmemory 512mb + +# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory +# is reached. You can select one from the following behaviors: +# +# volatile-lru -> Evict using approximated LRU, only keys with an expire set. +# allkeys-lru -> Evict any key using approximated LRU. +# volatile-lfu -> Evict using approximated LFU, only keys with an expire set. +# allkeys-lfu -> Evict any key using approximated LFU. +# volatile-random -> Remove a random key having an expire set. +# allkeys-random -> Remove a random key, any key. +# volatile-ttl -> Remove the key with the nearest expire time (minor TTL) +# noeviction -> Don't evict anything, just return an error on write operations. +# +# LRU means Least Recently Used +# LFU means Least Frequently Used +# +# Both LRU, LFU and volatile-ttl are implemented using approximated +# randomized algorithms. +# +# Note: with any of the above policies, Redis will return an error on write +# operations, when there are no suitable keys for eviction. +# +# At the date of writing these commands are: set setnx setex append +# incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd +# sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby +# zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby +# getset mset msetnx exec sort +# +# The default is: +# +maxmemory-policy allkeys-lru + +# LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated +# algorithms (in order to save memory), so you can tune it for speed or +# accuracy. By default Redis will check five keys and pick the one that was +# used least recently, you can change the sample size using the following +# configuration directive. +# +# The default of 5 produces good enough results. 10 Approximates very closely +# true LRU but costs more CPU. 3 is faster but not very accurate. +# +maxmemory-samples 4 + +# Redis reclaims expired keys in two ways: upon access when those keys are +# found to be expired, and also in background, in what is called the +# "active expire key". The key space is slowly and interactively scanned +# looking for expired keys to reclaim, so that it is possible to free memory +# of keys that are expired and will never be accessed again in a short time. +# +# The default effort of the expire cycle will try to avoid having more than +# ten percent of expired keys still in memory, and will try to avoid consuming +# more than 25% of total memory and to add latency to the system. However +# it is possible to increase the expire "effort" that is normally set to +# "1", to a greater value, up to the value "10". At its maximum value the +# system will use more CPU, longer cycles (and technically may introduce +# more latency), and will tolerate less already expired keys still present +# in the system. It's a tradeoff between memory, CPU and latency. +# +active-expire-effort 2 + +############################# LAZY FREEING #################################### + +# Redis has two primitives to delete keys. One is called DEL and is a blocking +# deletion of the object. It means that the server stops processing new commands +# in order to reclaim all the memory associated with an object in a synchronous +# way. If the key deleted is associated with a small object, the time needed +# in order to execute the DEL command is very small and comparable to most other +# O(1) or O(log_N) commands in Redis. However if the key is associated with an +# aggregated value containing millions of elements, the server can block for +# a long time (even seconds) in order to complete the operation. +# +# For the above reasons Redis also offers non blocking deletion primitives +# such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and +# FLUSHDB commands, in order to reclaim memory in background. Those commands +# are executed in constant time. Another thread will incrementally free the +# object in the background as fast as possible. +# +# DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled. +# It's up to the design of the application to understand when it is a good +# idea to use one or the other. However the Redis server sometimes has to +# delete keys or flush the whole database as a side effect of other operations. +# Specifically Redis deletes objects independently of a user call in the +# following scenarios: +# +# 1) On eviction, because of the maxmemory and maxmemory policy configurations, +# in order to make room for new data, without going over the specified +# memory limit. +# 2) Because of expire: when a key with an associated time to live (see the +# EXPIRE command) must be deleted from memory. +# 3) Because of a side effect of a command that stores data on a key that may +# already exist. For example the RENAME command may delete the old key +# content when it is replaced with another one. Similarly SUNIONSTORE +# or SORT with STORE option may delete existing keys. The SET command +# itself removes any old content of the specified key in order to replace +# it with the specified string. +# 4) During replication, when a replica performs a full resynchronization with +# its master, the content of the whole database is removed in order to +# load the RDB file just transferred. +# +# In all the above cases the default is to delete objects in a blocking way, +# like if DEL was called. However you can configure each case specifically +# in order to instead release memory in a non-blocking way like if UNLINK +# was called, using the following configuration directives. + +lazyfree-lazy-eviction no +lazyfree-lazy-expire no +lazyfree-lazy-server-del no +replica-lazy-flush no + +# It is also possible, for the case when to replace the user code DEL calls +# with UNLINK calls is not easy, to modify the default behavior of the DEL +# command to act exactly like UNLINK, using the following configuration +# directive: + +lazyfree-lazy-user-del no diff --git a/.ddev/redis/network.conf b/.ddev/redis/network.conf new file mode 100755 index 00000000..feec15ed --- /dev/null +++ b/.ddev/redis/network.conf @@ -0,0 +1,85 @@ +# #ddev-generated +################################## NETWORK ##################################### + +# By default, if no "bind" configuration directive is specified, Redis listens +# for connections from all available network interfaces on the host machine. +# It is possible to listen to just one or multiple selected interfaces using +# the "bind" configuration directive, followed by one or more IP addresses. +# +# Examples: +# +# bind 192.168.1.100 10.0.0.1 +# bind 127.0.0.1 ::1 +# +# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the +# internet, binding to all the interfaces is dangerous and will expose the +# instance to everybody on the internet. So by default we uncomment the +# following bind directive, that will force Redis to listen only on the +# IPv4 loopback interface address (this means Redis will only be able to +# accept client connections from the same host that it is running on). +# +# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES +# JUST COMMENT OUT THE FOLLOWING LINE. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +bind 0.0.0.0 + +# Protected mode is a layer of security protection, in order to avoid that +# Redis instances left open on the internet are accessed and exploited. +# +# When protected mode is on and if: +# +# 1) The server is not binding explicitly to a set of addresses using the +# "bind" directive. +# 2) No password is configured. +# +# The server only accepts connections from clients connecting from the +# IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain +# sockets. +# +# By default protected mode is enabled. You should disable it only if +# you are sure you want clients from other hosts to connect to Redis +# even if no authentication is configured, nor a specific set of interfaces +# are explicitly listed using the "bind" directive. +protected-mode yes + +# Accept connections on the specified port, default is 6379 (IANA #815344). +# If port 0 is specified Redis will not listen on a TCP socket. +port 6379 + +# TCP listen() backlog. +# +# In high requests-per-second environments you need a high backlog in order +# to avoid slow clients connection issues. Note that the Linux kernel +# will silently truncate it to the value of /proc/sys/net/core/somaxconn so +# make sure to raise both the value of somaxconn and tcp_max_syn_backlog +# in order to get the desired effect. +tcp-backlog 4096 + +# Unix socket. +# +# Specify the path for the Unix socket that will be used to listen for +# incoming connections. There is no default, so Redis will not listen +# on a unix socket when not specified. +# +# unixsocket /tmp/redis.sock +# unixsocketperm 700 + +# Close the connection after a client is idle for N seconds (0 to disable) +timeout 0 + +# TCP keepalive. +# +# If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence +# of communication. This is useful for two reasons: +# +# 1) Detect dead peers. +# 2) Force network equipment in the middle to consider the connection to be +# alive. +# +# On Linux, the specified value (in seconds) is the period used to send ACKs. +# Note that to close the connection the double of the time is needed. +# On other kernels the period depends on the kernel configuration. +# +# A reasonable value for this option is 300 seconds, which is the new +# Redis default starting with Redis 3.2.1. +tcp-keepalive 0 diff --git a/.ddev/redis/redis.conf b/.ddev/redis/redis.conf new file mode 100755 index 00000000..de579955 --- /dev/null +++ b/.ddev/redis/redis.conf @@ -0,0 +1,26 @@ +# #ddev-generated +################################## INCLUDES ################################### + +# Network +include /etc/redis/conf/network.conf + +# General +include /etc/redis/conf/general.conf + +# Snapshots +include /etc/redis/conf/snapshots.conf + +# Security +include /etc/redis/conf/security.conf + +# Memory management +include /etc/redis/conf/memory.conf + +# CPU management +include /etc/redis/conf/io.conf + +# Append mode +include /etc/redis/conf/append.conf + +# Advanced config +include /etc/redis/conf/advanced.conf diff --git a/.ddev/redis/security.conf b/.ddev/redis/security.conf new file mode 100755 index 00000000..50e6c836 --- /dev/null +++ b/.ddev/redis/security.conf @@ -0,0 +1,12 @@ +# #ddev-generated +################################## SECURITY ################################### + +# Warning: since Redis is pretty fast, an outside user can try up to +# 1 million passwords per second against a modern box. This means that you +# should use very strong passwords, otherwise they will be very easy to break. +# Note that because the password is really a shared secret between the client +# and the server, and should not be memorized by any human, the password +# can be easily a long string from /dev/urandom or whatever, so by using a +# long and unguessable password no brute force attack will be possible. +user default ~* &* +@all on >redis +user redis ~* &* +@all on >redis \ No newline at end of file diff --git a/.ddev/redis/snapshots.conf b/.ddev/redis/snapshots.conf new file mode 100755 index 00000000..ef9a4d12 --- /dev/null +++ b/.ddev/redis/snapshots.conf @@ -0,0 +1,66 @@ +# #ddev-generated +################################ SNAPSHOTTING ################################ +# +# Save the DB on disk: +# +# save +# +# Will save the DB if both the given number of seconds and the given +# number of write operations against the DB occurred. +# +# In the example below the behavior will be to save: +# after 300 sec (5 min) if at least 1 key changed +# after 150 sec (2.5 min) if at least 10 keys changed +# after 30 sec if at least 10000 keys changed +# +# Note: you can disable saving completely by commenting out all "save" lines. +# +# It is also possible to remove all the previously configured save +# points by adding a save directive with a single empty string argument +# like in the following example: +# +# save "" +save 3600 1 300 100 60 10000 + +# By default Redis will stop accepting writes if RDB snapshots are enabled +# (at least one save point) and the latest background save failed. +# This will make the user aware (in a hard way) that data is not persisting +# on disk properly, otherwise chances are that no one will notice and some +# disaster will happen. +# +# If the background saving process will start working again Redis will +# automatically allow writes again. +# +# However if you have setup your proper monitoring of the Redis server +# and persistence, you may want to disable this feature so that Redis will +# continue to work as usual even if there are problems with disk, +# permissions, and so forth. +stop-writes-on-bgsave-error yes + +# Compress string objects using LZF when dump .rdb databases? +# By default compression is enabled as it's almost always a win. +# If you want to save some CPU in the saving child set it to 'no' but +# the dataset will likely be bigger if you have compressible values or keys. +rdbcompression no + +# Since version 5 of RDB a CRC64 checksum is placed at the end of the file. +# This makes the format more resistant to corruption but there is a performance +# hit to pay (around 10%) when saving and loading RDB files, so you can disable it +# for maximum performances. +# +# RDB files created with checksum disabled have a checksum of zero that will +# tell the loading code to skip the check. +rdbchecksum no + +# The filename where to dump the DB +dbfilename haikuatelier.fr.rdb + +# The working directory. +# +# The DB will be written inside this directory, with the filename specified +# above using the 'dbfilename' configuration directive. +# +# The Append Only File will also be created inside this directory. +# +# Note that you must specify a directory here, not a file name. +dir /data diff --git a/.ddev/vite/vite-server-not-running.html b/.ddev/vite/vite-server-not-running.html new file mode 100755 index 00000000..c2cf0d12 --- /dev/null +++ b/.ddev/vite/vite-server-not-running.html @@ -0,0 +1,57 @@ + + + + + + + vite not running + + + +
+

vite not running

+

+ Apparently, you tried to access resources from the vite development server. However, the server is currently not + running. +

+

You can start the server by running the following command in your terminal:

+ ddev vite +
+ + diff --git a/.ddev/web-build/Dockerfile.vite b/.ddev/web-build/Dockerfile.vite new file mode 100755 index 00000000..b0eb13a0 --- /dev/null +++ b/.ddev/web-build/Dockerfile.vite @@ -0,0 +1,2 @@ +#ddev-generated +RUN a2enmod proxy_http diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 79051fb7..00000000 --- a/.dockerignore +++ /dev/null @@ -1,6 +0,0 @@ -* -!composer.json -!composer.lock -!config/* -!web/* -!wp-cli.yml diff --git a/.gitignore b/.gitignore index 4934dbcc..677b4dc5 100755 --- a/.gitignore +++ b/.gitignore @@ -5,14 +5,16 @@ web/app/mu-plugins/*/ web/app/themes/twentytwentyfour/ web/app/upgrade web/app/cache/* -web/app/languages/ -web/app/object-cache.php # WordPress web/wp web/vendor web/.htaccess +# Compilation +web/app/themes/haiku-atelier-2024/assets/js +web/app/themes/haiku-atelier-2024/assets/js/.vite/manifest.json + # Logs *.log @@ -46,20 +48,3 @@ devenv.local.nix # Gleam build/ - -# Playwright -/test-results/ -/playwright-report/ -/blob-report/ -/playwright/.cache/ - -# Containers -containers/data/* -containers/conf/angie/modules-available -containers/conf/angie/modules-enabled -containers/conf/angie/scripts -containers/conf/angie/snippets - -# PHP et Twig -.php-cs-fixer.cache -.twig-cs-fixer.cache diff --git a/.oxlintrc.json b/.oxlintrc.json index b3dd9aba..18669bc2 100755 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -10,16 +10,32 @@ "style": "warn", "suspicious": "error" }, - "plugins": ["jsdoc", "promise", "unicorn", "jsdoc", "oxc", "promise", "typescript", "unicorn"], + "plugins": [ + "eslint-plugin-jsdoc", + "eslint-plugin-promise", + "eslint-plugin-unicorn", + "jsdoc", + "oxc", + "oxc-security", + "promise", + "security", + "typescript", + "typescript-eslint", + "unicorn" + ], "rules": { + "eslint/max-classes-per-file": "off", + "eslint/no-magic-numbers": "off", + "eslint/no-redeclare": "off", "import/export": "error", "no-array-for-each": "off", "no-async-await": "off", "no-console": "off", - "no-magic-numbers": "warn", + "no-magic-numbers": "off", "no-map-spread": "off", "no-misused-promises": "off", "no-optional-chaining": "off", + "no-redeclare": "off", "no-rest-spread-properties": "off", "no-ternary": "off", "no-undefined": "off", @@ -32,6 +48,8 @@ "typescript/consistent-indexed-object-style": ["error", "record"], "typescript/consistent-type-imports": "error", "typescript/explicit-function-return-type": "warn", + "typescript/no-redeclare": ["off", { "ignoreDeclarationMerge": true }], + "unicorn/no-null": "off", "unicorn/prefer-dom-node-dataset": "off", "yoda": ["error", "never"] } diff --git a/.php-cs-fixer.cache b/.php-cs-fixer.cache deleted file mode 100644 index 674bd3f8..00000000 --- a/.php-cs-fixer.cache +++ /dev/null @@ -1 +0,0 @@ -{"php":"8.4.11","version":"3.91.3:v3.91.3#9f10aa6390cea91da175ea608880e942d7c0226e","indent":" ","lineEnding":"\n","rules":{"array_syntax":{"syntax":"short"},"assign_null_coalescing_to_coalesce_equal":true,"attribute_empty_parentheses":{"use_parentheses":true},"blank_line_after_namespace":true,"blank_lines_before_namespace":{"min_line_breaks":1,"max_line_breaks":2},"cast_spaces":true,"class_attributes_separation":{"elements":{"case":"none","const":"none","method":"one","property":"one","trait_import":"none"}},"class_reference_name_casing":true,"clean_namespace":true,"combine_consecutive_issets":true,"combine_consecutive_unsets":true,"combine_nested_dirname":true,"comment_to_phpdoc":true,"constant_case":true,"date_time_immutable":true,"declare_equal_normalize":true,"declare_parentheses":true,"declare_strict_types":true,"dir_constant":true,"echo_tag_syntax":true,"encoding":true,"ereg_to_preg":true,"error_suppression":true,"explicit_indirect_variable":true,"explicit_string_variable":true,"final_class":true,"final_internal_class":true,"full_opening_tag":true,"fully_qualified_strict_types":{"import_symbols":true},"function_to_constant":true,"global_namespace_import":{"import_classes":true,"import_constants":true,"import_functions":true},"heredoc_to_nowdoc":true,"integer_literal_case":true,"lambda_not_used_import":true,"list_syntax":true,"logical_operators":true,"long_to_shorthand_operator":true,"lowercase_cast":true,"lowercase_keywords":true,"lowercase_static_reference":true,"magic_constant_casing":true,"magic_method_casing":true,"mb_str_functions":true,"modernize_strpos":{"modernize_stripos":true},"modernize_types_casting":true,"modifier_keywords":true,"multiline_comment_opening_closing":true,"native_constant_invocation":true,"native_function_casing":true,"native_function_invocation":true,"native_type_declaration_casing":true,"new_expression_parentheses":true,"no_alias_functions":{"sets":["@all"]},"no_alias_language_construct_call":true,"no_alternative_syntax":true,"no_binary_string":true,"no_closing_tag":true,"no_empty_comment":true,"no_homoglyph_names":true,"no_leading_import_slash":true,"no_mixed_echo_print":{"use":"echo"},"no_multiline_whitespace_around_double_arrow":true,"no_multiple_statements_per_line":true,"no_null_property_initialization":true,"no_php4_constructor":true,"no_short_bool_cast":true,"no_trailing_comma_in_singleline":true,"no_trailing_whitespace_in_comment":true,"no_unneeded_braces":{"namespaces":true},"no_unneeded_control_parentheses":{"statements":["break","clone","continue","echo_print","negative_instanceof","others","return","switch_case","yield","yield_from"]},"no_unneeded_final_method":true,"no_unneeded_import_alias":true,"no_unreachable_default_argument_value":true,"no_unset_cast":true,"no_unset_on_property":true,"no_unused_imports":true,"no_useless_concat_operator":true,"no_useless_nullsafe_operator":true,"no_useless_printf":true,"no_useless_return":true,"no_useless_sprintf":true,"no_whitespace_before_comma_in_array":{"after_heredoc":true},"non_printable_character":true,"normalize_index_brace":true,"nullable_type_declaration":{"syntax":"union"},"nullable_type_declaration_for_default_null_value":true,"numeric_literal_separator":{"override_existing":true,"strategy":"use_separator"},"ordered_attributes":true,"ordered_class_elements":{"case_sensitive":false,"sort_algorithm":"alpha"},"ordered_imports":{"case_sensitive":true},"ordered_interfaces":true,"ordered_traits":true,"ordered_types":{"null_adjustment":"always_last"},"phpdoc_readonly_class_comment_to_keyword":true,"phpdoc_to_param_type":true,"phpdoc_to_property_type":true,"phpdoc_to_return_type":true,"pow_to_exponentiation":true,"protected_to_private":true,"psr_autoloading":true,"random_api_migration":{"replacements":{"getrandmax":"mt_getrandmax","rand":"mt_rand","srand":"mt_srand"}},"return_assignment":true,"self_accessor":true,"self_static_accessor":true,"set_type_to_cast":true,"short_scalar_cast":true,"simple_to_complex_string_variable":true,"simplified_null_return":true,"single_class_element_per_statement":true,"single_import_per_statement":true,"single_line_after_imports":true,"single_line_comment_spacing":true,"single_line_comment_style":true,"single_line_empty_body":true,"single_trait_insert_per_statement":true,"standardize_not_equals":true,"static_lambda":true,"strict_comparison":true,"strict_param":true,"string_implicit_backslashes":true,"string_length_to_empty":true,"switch_continue_to_break":true,"ternary_to_null_coalescing":true,"trim_array_spaces":true,"use_arrow_functions":true,"void_return":true,"whitespace_after_comma_in_array":{"ensure_single_space":true},"align_multiline_comment":{"comment_type":"all_multiline"},"no_blank_lines_after_phpdoc":true,"no_empty_phpdoc":true,"no_superfluous_phpdoc_tags":{"allow_hidden_params":false,"allow_mixed":false,"allow_unused_params":false},"phpdoc_add_missing_param_annotation":{"only_untyped":false},"phpdoc_align":true,"phpdoc_annotation_without_dot":true,"phpdoc_array_type":true,"phpdoc_indent":true,"phpdoc_inline_tag_normalizer":true,"phpdoc_line_span":{"const":"single","method":"multi","property":"single"},"phpdoc_list_type":true,"phpdoc_no_access":true,"phpdoc_no_alias_tag":true,"phpdoc_no_package":true,"phpdoc_no_useless_inheritdoc":true,"phpdoc_order":true,"phpdoc_order_by_value":true,"phpdoc_param_order":true,"phpdoc_return_self_reference":true,"phpdoc_scalar":{"types":["boolean","callback","double","integer","never-return","never-returns","no-return","real","str"]},"phpdoc_separation":{"groups":[["Annotation","NamedArgumentConstructor","Target"],["author","copyright","license"],["category","package","subpackage"],["property","property-read","property-write"],["deprecated","link","see","since"]],"skip_unlisted_annotations":false},"phpdoc_single_line_var_spacing":true,"phpdoc_summary":true,"phpdoc_to_comment":{"allow_before_return_statement":true},"phpdoc_trim":true,"phpdoc_trim_consecutive_blank_line_separation":true,"phpdoc_types":true,"phpdoc_types_order":{"null_adjustment":"always_last"},"phpdoc_var_annotation_correct_order":true,"phpdoc_var_without_name":true},"hashes":{"config\/environments\/development.php":"7db83fd87be86420c892d333ed062fc3","config\/environments\/production.php":"1a626669745f1233f4be1fe8adca47bf","config\/environments\/staging.php":"f930b9159568633c8b921c28e2e16b89","config\/application.php":"06adb0528c2a02b704f4753d31210665","web\/app\/themes\/haiku-atelier-2024\/assets\/js\/manifest.php":"3924a570e5f728a293f80048b9857908","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/ChampsPersonnalises.php":"32825f0efc45f6c5bf6fdae0e80924c7","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/ControlesPersonnalises.php":"ce3b20a25c2e5a744230d01389083023","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/FidelityProgram.php":"9cd3e9a5577da3a6f100ca0ef5981f9b","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/FidelityProgramDTO.php":"e74629167c574e61b0ca07ada70dc162","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/Fonctionnalites.php":"c27d6dd27ef42786316668fb5bdfc2f2","web\/app\/themes\/haiku-atelier-2024\/page-failed-order.php":"141901df4c7b8752832ec4a93e071b43","web\/app\/themes\/haiku-atelier-2024\/page-successful-order.php":"9481ffa95476fd1d05b6767803186ffc","web\/app\/themes\/haiku-atelier-2024\/page-terms-and-conditions.php":"6a4eb6161232678735493802be48b2d4","web\/app\/themes\/haiku-atelier-2024\/single-product.php":"5d664e266089ef896b6f299796704f6b","web\/app\/themes\/haiku-atelier-2024\/taxonomy-product_cat.php":"02492643f2c7e2545ab5f58c17d4baa7","web\/index.php":"12c907b4d0f1d8e7b548837de3334619","web\/wp-config.php":"7a0d2acffc584dc6407ea6680f75e40c","scripts\/remove-scaled-images.php":"c9fa5fcfa54f9e9a3e8bece9c8ce9f1a","rector.php":"4a84d86eec4f2ff59ec85f3f4a4b6ece","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/customer-processing-order.php":"cc98c2e1c8cda0a3614e8ad4e9cb279d","web\/app\/themes\/haiku-atelier-2024\/index.php":"4d2a55cac16f9d43382eaaacf3798c5d","web\/app\/themes\/haiku-atelier-2024\/404.php":"2d9749cf76f4d25e66afa2f2b06c17b9","web\/app\/themes\/haiku-atelier-2024\/archive-product.php":"fcb7b41cc809fc06694d0901361111c6","web\/app\/themes\/haiku-atelier-2024\/front-page.php":"6da66a8bfe135ead7181acb596708497","web\/app\/themes\/haiku-atelier-2024\/functions.php":"4f2885c8d1dfa160ee4960574a049e46","web\/app\/themes\/haiku-atelier-2024\/page-about.php":"27663c223850c8f36950bf19adf36815","web\/app\/themes\/haiku-atelier-2024\/page-cart.php":"904f91762eca6759681f3e7328bcf832","web\/app\/themes\/haiku-atelier-2024\/page-checkout.php":"354d364a8bb1a288bf54f1187f0dd0ad","web\/app\/themes\/haiku-atelier-2024\/page-contact.php":"892dc305f8533a42eb29d61b65933a5c","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/FonctionnalitesWooCommerce.php":"040449fd62eb425772cac81f837e2c3d","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/HTML.php":"46f41cb7608260aa37a2a0156845df17","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/Taxonomies.php":"0206004bf0bc078afb5b79f76d06267b","web\/app\/themes\/haiku-atelier-2024\/src\/inc\/TraitementInformations.php":"898be28257fa1e2be13629484f8213a5","web\/app\/themes\/haiku-atelier-2024\/src\/StarterSite.php":"1d941a0628a971fb5f96630d144a9071","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/email-footer.php":"7858ef011ea0bad1384868fba0c21fdc","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/email-header.php":"7858ef011ea0bad1384868fba0c21fdc","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/email-styles.php":"7858ef011ea0bad1384868fba0c21fdc","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/customer-completed-order.php":"ab08af37280a15c4069a856c1426fe28","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/customer-invoice.php":"516ea9558a9032f1966d9f9d0f445e34"}} \ No newline at end of file diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php deleted file mode 100644 index ac5b0e9d..00000000 --- a/.php-cs-fixer.dist.php +++ /dev/null @@ -1,262 +0,0 @@ -in(__DIR__)->exclude([ - 'containers', - 'db', - 'lib', - 'tests', - 'vendor', - 'web/app/languages', - 'web/app/mu-plugins', - 'web/app/plugins', - 'web/app/themes/twentytwentyfour', - 'web/vendor', - 'web/wp', -]); - -return new Config() - ->setRiskyAllowed(true) - ->setRules([ - 'array_syntax' => ['syntax' => 'short'], - 'assign_null_coalescing_to_coalesce_equal' => true, - 'attribute_empty_parentheses' => ['use_parentheses' => true], - 'blank_line_after_namespace' => true, - 'blank_lines_before_namespace' => ['min_line_breaks' => 1, 'max_line_breaks' => 2], - 'cast_spaces' => true, - 'class_attributes_separation' => ['elements' => [ - 'case' => 'none', - 'const' => 'none', - 'method' => 'one', - 'property' => 'one', - 'trait_import' => 'none', - ]], - 'class_reference_name_casing' => true, - 'clean_namespace' => true, - 'combine_consecutive_issets' => true, - 'combine_consecutive_unsets' => true, - 'combine_nested_dirname' => true, - 'comment_to_phpdoc' => true, - 'constant_case' => true, - 'date_time_immutable' => true, - 'declare_equal_normalize' => true, - 'declare_parentheses' => true, - 'declare_strict_types' => true, - 'dir_constant' => true, - 'echo_tag_syntax' => true, - 'encoding' => true, - 'ereg_to_preg' => true, - 'error_suppression' => true, - 'explicit_indirect_variable' => true, - 'explicit_string_variable' => true, - 'final_class' => true, - 'final_internal_class' => true, - 'full_opening_tag' => true, - 'fully_qualified_strict_types' => ['import_symbols' => true], - 'function_to_constant' => true, - 'global_namespace_import' => ['import_classes' => true, 'import_constants' => true, 'import_functions' => true], - 'heredoc_to_nowdoc' => true, - 'integer_literal_case' => true, - 'lambda_not_used_import' => true, - 'list_syntax' => true, - 'logical_operators' => true, - 'long_to_shorthand_operator' => true, - 'lowercase_cast' => true, - 'lowercase_keywords' => true, - 'lowercase_static_reference' => true, - 'magic_constant_casing' => true, - 'magic_method_casing' => true, - 'mb_str_functions' => true, - 'modernize_strpos' => ['modernize_stripos' => true], - 'modernize_types_casting' => true, - 'modifier_keywords' => true, - 'multiline_comment_opening_closing' => true, - 'native_constant_invocation' => true, - 'native_function_casing' => true, - 'native_function_invocation' => true, - 'native_type_declaration_casing' => true, - 'new_expression_parentheses' => true, - 'no_alias_functions' => ['sets' => ['@all']], - 'no_alias_language_construct_call' => true, - 'no_alternative_syntax' => true, - 'no_binary_string' => true, - 'no_closing_tag' => true, - 'no_empty_comment' => true, - 'no_homoglyph_names' => true, - 'no_leading_import_slash' => true, - 'no_mixed_echo_print' => ['use' => 'echo'], - 'no_multiline_whitespace_around_double_arrow' => true, - 'no_multiple_statements_per_line' => true, - 'no_null_property_initialization' => true, - 'no_php4_constructor' => true, - 'no_short_bool_cast' => true, - 'no_trailing_comma_in_singleline' => true, - 'no_trailing_whitespace_in_comment' => true, - 'no_unneeded_braces' => ['namespaces' => true], - 'no_unneeded_control_parentheses' => ['statements' => [ - 'break', - 'clone', - 'continue', - 'echo_print', - 'negative_instanceof', - 'others', - 'return', - 'switch_case', - 'yield', - 'yield_from', - ]], - 'no_unneeded_final_method' => true, - 'no_unneeded_import_alias' => true, - 'no_unreachable_default_argument_value' => true, - 'no_unset_cast' => true, - 'no_unset_on_property' => true, - 'no_unused_imports' => true, - 'no_useless_concat_operator' => true, - 'no_useless_nullsafe_operator' => true, - 'no_useless_printf' => true, - 'no_useless_return' => true, - 'no_useless_sprintf' => true, - 'no_whitespace_before_comma_in_array' => ['after_heredoc' => true], - 'non_printable_character' => true, - 'normalize_index_brace' => true, - 'nullable_type_declaration' => ['syntax' => 'union'], - 'nullable_type_declaration_for_default_null_value' => true, - 'numeric_literal_separator' => ['override_existing' => true, 'strategy' => 'use_separator'], - 'ordered_attributes' => true, - 'ordered_class_elements' => ['case_sensitive' => false, 'sort_algorithm' => 'alpha'], - 'ordered_imports' => ['case_sensitive' => true], - 'ordered_interfaces' => true, - 'ordered_traits' => true, - 'ordered_types' => ['null_adjustment' => 'always_last'], - 'phpdoc_readonly_class_comment_to_keyword' => true, - 'phpdoc_to_param_type' => true, - 'phpdoc_to_property_type' => true, - 'phpdoc_to_return_type' => true, - 'pow_to_exponentiation' => true, - 'protected_to_private' => true, - 'psr_autoloading' => true, - 'random_api_migration' => ['replacements' => [ - 'getrandmax' => 'mt_getrandmax', - 'rand' => 'mt_rand', - 'srand' => 'mt_srand', - ]], - 'return_assignment' => true, - 'self_accessor' => true, - 'self_static_accessor' => true, - 'set_type_to_cast' => true, - 'short_scalar_cast' => true, - 'simple_to_complex_string_variable' => true, - 'simplified_null_return' => true, - 'single_class_element_per_statement' => true, - 'single_import_per_statement' => true, - 'single_line_after_imports' => true, - 'single_line_comment_spacing' => true, - 'single_line_comment_style' => true, - 'single_line_empty_body' => true, - 'single_trait_insert_per_statement' => true, - 'standardize_not_equals' => true, - 'static_lambda' => true, - 'strict_comparison' => true, - 'strict_param' => true, - 'string_implicit_backslashes' => true, - 'string_length_to_empty' => true, - 'switch_continue_to_break' => true, - 'ternary_to_null_coalescing' => true, - 'trim_array_spaces' => true, - 'use_arrow_functions' => true, - 'void_return' => true, - 'whitespace_after_comma_in_array' => ['ensure_single_space' => true], - // --- - // Each line of multi-line DocComments must have an asterisk [PSR-5] and must be aligned with the first one. - 'align_multiline_comment' => ['comment_type' => 'all_multiline'], - // There should not be blank lines between docblock and the documented element. - 'no_blank_lines_after_phpdoc' => true, - // There should not be empty PHPDoc blocks. - 'no_empty_phpdoc' => true, - // Removes @param, @return and @var tags that don't provide any useful information. - 'no_superfluous_phpdoc_tags' => [ - 'allow_hidden_params' => false, - 'allow_mixed' => false, - 'allow_unused_params' => false, - ], - // PHPDoc should contain @param for all params. - 'phpdoc_add_missing_param_annotation' => ['only_untyped' => false], - // All items of the given PHPDoc tags must be either left-aligned or (by default) aligned vertically. - 'phpdoc_align' => true, - // PHPDoc annotation descriptions should not be a sentence. - 'phpdoc_annotation_without_dot' => true, - // PHPDoc array type must be used instead of T[]. - 'phpdoc_array_type' => true, - // Docblocks should have the same indentation as the documented subject. - 'phpdoc_indent' => true, - // Fixes PHPDoc inline tags. - 'phpdoc_inline_tag_normalizer' => true, - // Changes doc blocks from single to multi line, or reversed. Works for class constants, properties and methods only. - 'phpdoc_line_span' => ['const' => 'single', 'method' => 'multi', 'property' => 'single'], - // PHPDoc list type must be used instead of array without a key. - 'phpdoc_list_type' => true, - // @access annotations must be removed from PHPDoc. - 'phpdoc_no_access' => true, - // No alias PHPDoc tags should be used. - 'phpdoc_no_alias_tag' => true, - // @return void and @return null annotations must be removed from PHPDoc. - 'phpdoc_no_empty_return' => false, - // @package and @subpackage annotations must be removed from PHPDoc. - 'phpdoc_no_package' => true, - // Classy that does not inherit must not have @inheritdoc tags. - 'phpdoc_no_useless_inheritdoc' => true, - // Annotations in PHPDoc should be ordered in defined sequence. - 'phpdoc_order' => true, - // Order PHPDoc tags by value. - 'phpdoc_order_by_value' => true, - // Orders all @param annotations in DocBlocks according to method signature. - 'phpdoc_param_order' => true, - // The type of @return annotations of methods returning a reference to itself must the configured one. - 'phpdoc_return_self_reference' => true, - // Scalar types should always be written in the same form. int not integer, bool not boolean, float not real or double. - 'phpdoc_scalar' => ['types' => [ - 'boolean', - 'callback', - 'double', - 'integer', - 'never-return', - 'never-returns', - 'no-return', - 'real', - 'str', - ]], - // Annotations in PHPDoc should be grouped together so that annotations of the same type immediately follow each other. Annotations of a different type are separated by a single blank line. - 'phpdoc_separation' => [ - 'groups' => [ - ['Annotation', 'NamedArgumentConstructor', 'Target'], - ['author', 'copyright', 'license'], - ['category', 'package', 'subpackage'], - ['property', 'property-read', 'property-write'], - ['deprecated', 'link', 'see', 'since'], - ], - 'skip_unlisted_annotations' => false, - ], - // Single line @var PHPDoc should have proper spacing. - 'phpdoc_single_line_var_spacing' => true, - // PHPDoc summary should end in either a full stop, exclamation mark, or question mark. - 'phpdoc_summary' => true, - // Docblocks should only be used on structural elements. - 'phpdoc_to_comment' => ['allow_before_return_statement' => true], - // PHPDoc should start and end with content, excluding the very first and last line of the docblocks. - 'phpdoc_trim' => true, - // Removes extra blank lines after summary and after description in PHPDoc. - 'phpdoc_trim_consecutive_blank_line_separation' => true, - // The correct case must be used for standard PHP types in PHPDoc. - 'phpdoc_types' => true, - // Sorts PHPDoc types. - 'phpdoc_types_order' => ['null_adjustment' => 'always_last'], - // @var and @type annotations must have type and name in the correct order. - 'phpdoc_var_annotation_correct_order' => true, - // @var and @type annotations of classy properties should not contain the name. - 'phpdoc_var_without_name' => true, - ]) - ->setFinder($finder) - ->setParallelConfig(Runner\Parallel\ParallelConfigFactory::detect()); diff --git a/.phpactor.json b/.phpactor.json index eeff9d6e..ce30448c 100755 --- a/.phpactor.json +++ b/.phpactor.json @@ -1,6 +1,6 @@ { "$schema": "/opt/phpactor/phpactor.schema.json", - "language_server_php_cs_fixer.enabled": false, - "language_server_phpstan.enabled": false, + "language_server_phpstan.enabled": true, + "language_server_psalm.enabled": false, "php_code_sniffer.enabled": false } diff --git a/.swcrc b/.swcrc new file mode 100755 index 00000000..bd683fb0 --- /dev/null +++ b/.swcrc @@ -0,0 +1,31 @@ +{ + "$schema": "https://swc.rs/schema.json", + "jsc": { + "externalHelpers": false, + "keepClassNames": false, + "loose": false, + "minify": { + "compress": true, + "mangle": true + }, + "parser": { + "decorators": false, + "decoratorsBeforeExport": false, + "dynamicImport": false, + "exportDefaultFrom": false, + "exportNamespaceFrom": false, + "functionBind": false, + "importMeta": false, + "jsx": false, + "privateMethod": false, + "syntax": "typescript", + "topLevelAwait": false, + "tsx": false + }, + "preserveAllComments": false, + "target": "es2020", + "transform": null + }, + "minify": true, + "sourceMaps": true +} diff --git a/.twig-cs-fixer.cache b/.twig-cs-fixer.cache deleted file mode 100644 index 647458fb..00000000 --- a/.twig-cs-fixer.cache +++ /dev/null @@ -1 +0,0 @@ -{"php_version":"8.4.11","fixer_version":"866af065fd09980b6390ee5c69e45b08053101e8","rules":{"TwigCsFixer\\Rules\\Delimiter\\DelimiterSpacingRule":{"skipIfNewLine":true},"TwigCsFixer\\Rules\\Function\\MacroArgumentNameRule":{"case":"snake_case"},"TwigCsFixer\\Rules\\Function\\NamedArgumentNameRule":{"case":"snake_case"},"TwigCsFixer\\Rules\\Function\\NamedArgumentSeparatorRule":null,"TwigCsFixer\\Rules\\Function\\NamedArgumentSpacingRule":null,"TwigCsFixer\\Rules\\Operator\\OperatorNameSpacingRule":null,"TwigCsFixer\\Rules\\Operator\\OperatorSpacingRule":null,"TwigCsFixer\\Rules\\Punctuation\\PunctuationSpacingRule":{"before":{")":0,"]":0,"}":0,":":0,".":0,",":0,"|":0,"?:":0},"after":{"(":0,"[":0,"{":0,".":0,"|":0,":":1,",":1,"?:":1}},"TwigCsFixer\\Rules\\Variable\\VariableNameRule":{"case":"snake_case","optionalPrefix":""},"TwigCsFixer\\Rules\\Whitespace\\BlankEOFRule":null,"TwigCsFixer\\Rules\\Delimiter\\BlockNameSpacingRule":null,"TwigCsFixer\\Rules\\Whitespace\\EmptyLinesRule":null,"TwigCsFixer\\Rules\\Literal\\CompactHashRule":{"compact":false},"TwigCsFixer\\Rules\\Literal\\HashQuoteRule":{"useQuote":false},"TwigCsFixer\\Rules\\Function\\IncludeFunctionRule":null,"TwigCsFixer\\Rules\\Whitespace\\IndentRule":{"spaceRatio":4,"useTab":false},"TwigCsFixer\\Rules\\Literal\\SingleQuoteRule":{"skipStringContainingSingleQuote":true},"TwigCsFixer\\Rules\\Punctuation\\TrailingCommaMultiLineRule":{"comma":true},"TwigCsFixer\\Rules\\Punctuation\\TrailingCommaSingleLineRule":null,"TwigCsFixer\\Rules\\Whitespace\\TrailingSpaceRule":null},"hashes":{"web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/shop\/grille-produits.twig":"ef4ff046636044e452eeb3fe9edefaeb","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/grille-produits-similaires.twig":"eadf1a78a51084677aaaa56dafb1e708","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/informations-produit.twig":"4b7c756b4aa0f88942857e6c4969b354","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/photos-produit.twig":"5654c0382c5ef553a0b96a09194d909a","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/produit\/produits-similaires.twig":"695492c5926dfeeb69c37eb6227e1f18","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/panier\/panneau-informations-client.twig":"095a41b6e4142d7c2d9ebe18e4ac24d0","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pages\/panier\/panneau-panier.twig":"684e37c3acba0ee0800421b635b3d515","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/pied-de-page.twig":"d5f5afaa90db1db6590ea0ed0584c216","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/bandeau.twig":"1164a4e9baafbb15be2a4dc98c32ced1","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/en-tete.twig":"1cf26fa4e64cdc7c6ed29b4e5627841a","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/html-head.twig":"691202d8b7719de34f604e42a74932af","web\/app\/themes\/haiku-atelier-2024\/views\/parts\/menu-categories-produits.twig":"e132a6035820545f704075ab9e89d119","web\/app\/themes\/haiku-atelier-2024\/views\/macros\/images.twig":"4beca7e03e55ef0e46828befcc779677","web\/app\/themes\/haiku-atelier-2024\/views\/404.twig":"75335b023fcc6f5c83197e8c126384e1","web\/app\/themes\/haiku-atelier-2024\/views\/a-propos.twig":"b5bdf0962e089bc93d33f5d23b97f64c","web\/app\/themes\/haiku-atelier-2024\/views\/accueil.twig":"beb4b2270ea3a1bcdbf8cd9e69f83ee7","web\/app\/themes\/haiku-atelier-2024\/views\/base.twig":"3e3ed592fb1c4bc8405be3b52f403725","web\/app\/themes\/haiku-atelier-2024\/views\/boutique.twig":"10449e7c29289282366d754ec3360589","web\/app\/themes\/haiku-atelier-2024\/views\/cgv.twig":"97984ba4344e2dcf8c3237796203c614","web\/app\/themes\/haiku-atelier-2024\/views\/contact.twig":"5d9dcae3e990c671404a8200b6c9815a","web\/app\/themes\/haiku-atelier-2024\/views\/echec-commande.twig":"9cf475c2c19664e9ef92a71e670b2880","web\/app\/themes\/haiku-atelier-2024\/views\/panier.twig":"6a423fea77a22c54e37fe8a7b6e1f34f","web\/app\/themes\/haiku-atelier-2024\/views\/produit.twig":"43bf608a266e8b8652a8f878fbe4580e","web\/app\/themes\/haiku-atelier-2024\/views\/succes-commande.twig":"712e54c1866a66988ccb1a79cbae53d6","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/views\/email-commande-envoyee.twig":"e4e3bbc92a40eeae8925085b560dcb0d","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/views\/email-base.twig":"7ef70033248d96d208f965dc4d885d9f","web\/app\/themes\/haiku-atelier-2024\/woocommerce\/emails\/views\/email-commande-recue.twig":"0b09e4586dd8eb4ca9513b9ae38e307b"}} \ No newline at end of file diff --git a/.twig-cs-fixer.php b/.twig-cs-fixer.php deleted file mode 100644 index e8b8fadc..00000000 --- a/.twig-cs-fixer.php +++ /dev/null @@ -1,12 +0,0 @@ -addStandard(new TwigCsFixer()); -$config = new Config() - ->allowNonFixableRules() - ->setRuleset($ruleset); - -return $config; diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100755 index 00000000..b798f5b5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "configurations": [ + { + "name": "Listen for Xdebug", + "type": "php", + "request": "launch", + "hostname": "0.0.0.0", + "port": 9003, + "pathMappings": { "/var/www/html": "${workspaceFolder}" }, + "preLaunchTask": "DDEV: Enable Xdebug", + "postDebugTask": "DDEV: Disable Xdebug", + "skipFiles": ["**/vendor/**/*.php", "**/wp-admin/**/*.php", "**/wp-includes/**/*.php", "**/wp-blog-header.php"] + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100755 index 00000000..8129ac95 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,96 @@ +{ + "cSpell.words": [ + "backorder", + "backordered", + "backorders", + "chaine", + "cliquée", + "controle", + "controles", + "coordonnee", + "cout", + "COUT", + "couts", + "Crell", + "defaut", + "defini", + "deplie", + "DERNIERE", + "echec", + "Ecoute", + "Ecouteurs", + "Eles", + "emet", + "Emetteurs", + "ENTETE", + "epingle", + "Epingle", + "EPINGLE", + "EPINGLES", + "etat", + "etats", + "ETATS", + "etendu", + "Evenements", + "exts", + "Fenetre", + "FENETRE", + "formatte", + "generique", + "geometricprecision", + "gere", + "glitchtip", + "GLITCHTIP", + "haikuabout", + "haikuatelier", + "idempotency", + "leve", + "methode", + "methodes", + "mobily", + "multiformats", + "paypal", + "phpstan", + "Planifiee", + "prenom", + "presentes", + "problemes", + "Proprietes", + "rafraichissement", + "rapprochee", + "recalcul", + "reinitialise", + "renseignables", + "reponse", + "requete", + "resultat", + "selecteur", + "selecteurs", + "Selectionne", + "Selectionnee", + "Separees", + "Simplifiee", + "souleve", + "specifiques", + "succes", + "Surchargement", + "tabpanel", + "tete", + "tseslint", + "Vali", + "VALIDEE", + "validite", + "Visibilite" + ], + "djlint.pythonPath": "/home/gcch/.local/share/pipxu/venvs/8/bin/python", + "djlint.useVenv": false, + "stylelint.enable": true, + "stylelint.packageManager": "pnpm", + "twiggy.autoInsertSpaces": true, + "twiggy.framework": "ignore", + "twiggy.inlayHints.block": true, + "twiggy.inlayHints.macro": true, + "twiggy.inlayHints.macroArguments": true, + "typescript.tsdk": "node_modules/typescript/lib", + "terminal.integrated.env.osx": {} +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100755 index 00000000..dab30045 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,17 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "DDEV: Enable Xdebug", + "type": "shell", + "command": "ddev xdebug on", + "presentation": { "reveal": "silent", "close": true } + }, + { + "label": "DDEV: Disable Xdebug", + "type": "shell", + "command": "ddev xdebug off", + "presentation": { "reveal": "silent", "close": true } + } + ] +} diff --git a/.zed/haa.txt b/.zed/haa.txt deleted file mode 100644 index 922ebbbe..00000000 --- a/.zed/haa.txt +++ /dev/null @@ -1,17 +0,0 @@ -// { -// "languages": { -// "PHP": { -// "format_on_save": "on", -// "formatter": { -// "external": { -// "command": "mago", -// "arguments": ["format", "--stdin-input"] // "command": "bash", -// // "arguments": [ -// // "-c", -// // "cat > /tmp/zed_php_cs_fixer && ./vendor/bin/php-cs-fixer fix --using-cache=no --quiet /tmp/zed_php_cs_fixer && cat /tmp/zed_php_cs_fixer" -// // ] -// } -// } -// } -// } -// } diff --git a/.zed/settings.json b/.zed/settings.json index 0c41da3e..ed0ba770 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -1,17 +1,6 @@ +// Folder-specific settings +// +// For a full list of overridable settings, and general information on folder-specific settings, +// see the documentation: https://zed.dev/docs/configuring-zed#settings-files { - "language_servers": [ - "!biome", - "!deno", - "!intelephense", - "!prettier", - "!tailwindcss-language-server", - "!vtsls", - "..." - ], - "languages": { - "PHP": { - "format_on_save": "on", - "formatter": { "external": { "command": "mago", "arguments": ["format", "--stdin-input"] } } - } - } } diff --git a/docs/STUFF.md b/STUFF.md old mode 100644 new mode 100755 similarity index 85% rename from docs/STUFF.md rename to STUFF.md index 2b12cbba..81ce1ee5 --- a/docs/STUFF.md +++ b/STUFF.md @@ -1,5 +1,18 @@ I'll see you soup +- Thèmes + - LS_COLORS (Vivid ?) + - bat + - eza (?) + - fdfind + - fish + - gitui + - helix + - wezterm + - yazi + - zed + - zellij + Google API AIzaSyDGe62r-bDxvNuDCP6HIfWIJAMvelFxU1s 402628219773-hl8niqniiiklf15f9biou8g06pbm9sac.apps.googleusercontent.com @@ -26,6 +39,14 @@ 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 } } +--- + +Stripe +pk_live_51D0BbTIKBol0AhpghF9b6lJ4ZjPXWaNRzBgxtcUTdbV8OC2OpHxSbkMoEEgCHEPSs6E6NISfdMv92t9OnKqKh0sH00N6tgi6HW +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 + +--- + - Chargement de la page - Récupération des informations à la génération de la page - Panier diff --git a/docs/TODO.md b/TODO.md similarity index 76% rename from docs/TODO.md rename to TODO.md index c1ff310b..77ac2532 100755 --- a/docs/TODO.md +++ b/TODO.md @@ -12,23 +12,10 @@ - Champs - Utiliser un polyfill pour BroadcastChannel - PAGE SHOP + - [ ] Faire apparaître le menu des catégories de Produits quand on scroll vers le haut - PAGE PANIER - - Erreur lorsque l'on ajoute deux variations d'un même produit et que l'on essaie d'en supprimer une. - - Il semblerait que supprimer une variation supprime toutes les entrées du même produit. - MÉTHODES DE LIVRAISON - [ ] Proposer la livraison à domicile en Belgique et en France pour le coût unique de 8 euros, quel que soit le montant de la commande - - [ ] Proposer la livraison aux États-Unis. -- PAGE PRODUIT -- PIED DE PAGE -- TOUTES LES PAGES - - Trouver la source des bordures superflues. - - Sur Chromium : box-shadow sur
? - -- MODE VACANCES - - Pour l'été, superposer à la page SHOP un calque gris sur lequel défile une animation d'un texte indiquant que la boutique est en vacances. - - La page doit rester défilable. -- MODE NO JS - - Laisser la page normalement défilable avec les images les une après les autres quand _JavaScript_ n'est pas présent. --- @@ -36,7 +23,7 @@ Un bouton « Retour en haut » permet pour un Utilisateur de rapidement revenir au sommet d'une page fournie en contenu. -Ne pas proposer ce bouton pour des pages faibles en contenus. Hoa Loranger recommande ainsi d'utiliser le seuil de **plus de quatre pages** de contenu (une page correspond à ce qui traversé avec l'appui sur la touche Espace dans le navigateur). +Ne pas proposer ce bouton pour des pages faibles en contenus. Hoa Loranger recommende ainsi d'utiliser le seuil de **plus de quatre pages** de contenu (une page correspond à ce qui traversé avec l'appui sur la touche Espace dans le navigateur). ### Apparence et contenu diff --git a/biome.json b/biome.json index 2a4662d8..84b182a0 100755 --- a/biome.json +++ b/biome.json @@ -1,82 +1,29 @@ { - "$schema": "https://biomejs.dev/schemas/2.0.4/schema.json", - "assist": { - "enabled": false - }, - "css": { - "formatter": { - "enabled": false - }, - "linter": { - "enabled": true - } - }, + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "css": { "formatter": { "enabled": false }, "linter": { "enabled": true } }, "files": { - "experimentalScannerIgnores": [ - "*.min.js", - "vendor", - "web/app/plugins", - "web/app/themes/haiku-atelier-2024/assets", - "web/wp" - ], + "ignore": ["*.min.js", "vendor", "web/app/plugins", "web/app/themes/haiku-atelier-2024/assets", "web/wp"], "ignoreUnknown": true, "maxSize": 100000000 }, - "formatter": { - "enabled": false - }, - "graphql": { - "formatter": { - "enabled": false - }, - "linter": { - "enabled": true - } - }, - "json": { - "formatter": { - "enabled": false - }, - "linter": { - "enabled": true - } - }, + "formatter": { "enabled": false }, + "graphql": { "formatter": { "enabled": false }, "linter": { "enabled": true } }, + "json": { "formatter": { "enabled": false }, "linter": { "enabled": true } }, "linter": { - "enabled": false, + "enabled": true, "rules": { - "complexity": { - "noForEach": "off" - }, + "complexity": { "noForEach": "off" }, "nursery": { "recommended": true, "useSortedClasses": { "fix": "unsafe", "level": "error", - "options": { - "attributes": [ - "class" - ], - "functions": [ - "" - ] - } + "options": { "attributes": ["class"], "functions": [""] } } }, - "recommended": true, - "style": { - "noInferrableTypes": "error", - "noNonNullAssertion": "off", - "noParameterAssign": "error", - "noUnusedTemplateLiteral": "error", - "noUselessElse": "error", - "recommended": true, - "useAsConstAssertion": "error", - "useDefaultParameterLast": "error", - "useEnumInitializers": "error", - "useNumberNamespace": "error", - "useSelfClosingElements": "error", - "useSingleVarDeclarator": "error" - } + "style": { "recommended": true, "noNonNullAssertion": "off" }, + "recommended": true } - } + }, + "organizeImports": { "enabled": false } } diff --git a/bun.lock b/bun.lock index d25cd38d..eae96b53 100644 --- a/bun.lock +++ b/bun.lock @@ -1,1374 +1,2258 @@ { "lockfileVersion": 1, - "configVersion": 1, "workspaces": { "": { "name": "haikuatelier.fr", "dependencies": { - "@effect/platform": "^0.93.6", - "@effect/platform-browser": "^0.73.0", - "@gcch/ideale-standard": "^0.0.6", + "@effect/platform": "^0.84.9", "@mobily/ts-belt": "v4.0.0-rc.5", - "@sentry/browser": "^10.29.0", - "a11y-dialog": "^8.1.4", - "effect": "^3.19.9", - "lit-html": "^3.3.1", - "nimble-html": "^0.1.5", - "purify-ts": "2.1.2", - "ts-pattern": "^5.9.0", + "@sentry/browser": "9.28.1", + "a11y-dialog": "^8.1.3", + "chalk": "^5.4.1", + "effect": "^3.16.5", + "lit-html": "^3.3.0", + "loglevel": "^1.9.2", + "loglevel-plugin-prefix": "^0.8.4", + "ts-pattern": "^5.7.1", "valibot": "1.1.0", }, "devDependencies": { - "@biomejs/biome": "^2.3.8", - "@cspell/dict-fr-fr": "^2.3.2", - "@effect/language-service": "^0.60.0", - "@eslint/js": "^9.39.1", - "@gcch/configuration-eslint": "^0.0.10", - "@gcch/configuration-prettier": "^0.0.10", - "@playwright/test": "^1.57.0", - "@prettier/plugin-xml": "^3.4.2", - "@sentry/core": "^10.29.0", - "@types/eslint__js": "^9.14.0", - "@types/node": "^24.10.1", - "better-typescript-lib": "^2.12.0", - "browserslist": "^4.28.1", - "caniuse-lite": "^1.0.30001759", - "eslint": "^9.39.1", - "eslint-plugin-oxlint": "^1.31.0", - "eslint-plugin-perfectionist": "^4.15.1", - "fdir": "^6.5.0", - "globals": "^16.5.0", - "knip": "^5.71.0", - "lightningcss-cli": "^1.30.2", - "oxlint": "^1.31.0", - "picomatch": "^4.0.3", - "playwright": "^1.57.0", - "prettier": "^3.7.4", - "prettier-plugin-curly": "^0.4.1", - "prettier-plugin-pkg": "^0.21.2", - "prettier-plugin-sh": "^0.18.0", - "sass-embedded": "^1.93.3", - "stylelint": "^16.26.1", - "stylelint-config-clean-order": "^8.0.0", + "@biomejs/biome": "^1.9.4", + "@cspell/dict-fr-fr": "^2.3.0", + "@eslint/js": "^9.28.0", + "@prettier/plugin-php": "^0.22.4", + "@prettier/plugin-xml": "^3.4.1", + "@sentry/core": "^9.28.1", + "@swc/cli": "0.7.7", + "@types/node": "^24.0.1", + "@vitejs/plugin-legacy": "^6.1.1", + "@vitest/ui": "3.2.3", + "better-typescript-lib": "^2.11.0", + "browserslist": "^4.25.0", + "cspell": "^9.0.2", + "eslint": "^9.28.0", + "eslint-plugin-oxlint": "^1.1.0", + "eslint-plugin-perfectionist": "^4.14.0", + "fdir": "^6.4.6", + "globals": "^16.2.0", + "happy-dom": "^18.0.1", + "knip": "^5.61.0", + "oxlint": "^1.1.0", + "picomatch": "^4.0.2", + "prettier": "^3.5.3", + "prettier-plugin-pkg": "^0.21.1", + "prettier-plugin-sh": "^0.17.4", + "sass-embedded": "^1.89.2", + "stylelint": "^16.20.0", + "stylelint-config-clean-order": "^7.0.0", "stylelint-config-sass-guidelines": "^12.1.0", - "stylelint-config-standard-scss": "^16.0.0", + "stylelint-config-standard-scss": "^15.0.1", "stylelint-declaration-block-no-ignored-properties": "^2.8.0", - "stylelint-no-unsupported-browser-features": "^8.0.5", - "stylelint-order": "^7.0.0", "stylelint-plugin-logical-css": "^1.2.3", - "stylelint-value-no-unknown-custom-properties": "^6.0.1", - "typescript": "5.9.3", - "typescript-eslint": "^8.48.1", - "vite": "8.0.0-beta.0", - "vite-php-manifest": "^0.1.1", - "vite-plugin-valibot-env": "^1.0.1", + "typescript": "5.8.3", + "typescript-eslint": "^8.34.0", + "vite": "^6.3.5", + "vite-plugin-manifest-sri": "^0.2.0", + "vite-plugin-node-polyfills": "^0.23.0", + "vite-plugin-valibot-env": "^0.10.2", "vite-tsconfig-paths": "^5.1.4", - "wp-types": "^4.69.0", + "vitest": "3.2.3", + "wp-types": "^4.68.0", }, }, }, "trustedDependencies": [ - "lightningcss-cli", - "msgpackr-extract", "@biomejs/biome", ], "packages": { - "@babel/code-frame": ["@babel/code-frame@7.27.1", "http://localhost:4873/@babel/code-frame/-/code-frame-7.27.1.tgz", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="], + "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="], - "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "http://localhost:4873/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="], + "@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - "@biomejs/biome": ["@biomejs/biome@2.3.8", "http://localhost:4873/@biomejs/biome/-/biome-2.3.8.tgz", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.3.8", "@biomejs/cli-darwin-x64": "2.3.8", "@biomejs/cli-linux-arm64": "2.3.8", "@biomejs/cli-linux-arm64-musl": "2.3.8", "@biomejs/cli-linux-x64": "2.3.8", "@biomejs/cli-linux-x64-musl": "2.3.8", "@biomejs/cli-win32-arm64": "2.3.8", "@biomejs/cli-win32-x64": "2.3.8" }, "bin": { "biome": "bin/biome" } }, "sha512-Qjsgoe6FEBxWAUzwFGFrB+1+M8y/y5kwmg5CHac+GSVOdmOIqsAiXM5QMVGZJ1eCUCLlPZtq4aFAQ0eawEUuUA=="], + "@babel/compat-data": ["@babel/compat-data@7.26.8", "", {}, "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ=="], - "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.3.8", "http://localhost:4873/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.3.8.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-HM4Zg9CGQ3txTPflxD19n8MFPrmUAjaC7PQdLkugeeC0cQ+PiVrd7i09gaBS/11QKsTDBJhVg85CEIK9f50Qww=="], + "@babel/core": ["@babel/core@7.26.10", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.10", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-module-transforms": "^7.26.0", "@babel/helpers": "^7.26.10", "@babel/parser": "^7.26.10", "@babel/template": "^7.26.9", "@babel/traverse": "^7.26.10", "@babel/types": "^7.26.10", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ=="], - "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.3.8", "http://localhost:4873/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.3.8.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-lUDQ03D7y/qEao7RgdjWVGCu+BLYadhKTm40HkpJIi6kn8LSv5PAwRlew/DmwP4YZ9ke9XXoTIQDO1vAnbRZlA=="], + "@babel/generator": ["@babel/generator@7.27.0", "", { "dependencies": { "@babel/parser": "^7.27.0", "@babel/types": "^7.27.0", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw=="], - "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.3.8", "http://localhost:4873/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.3.8.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-Uo1OJnIkJgSgF+USx970fsM/drtPcQ39I+JO+Fjsaa9ZdCN1oysQmy6oAGbyESlouz+rzEckLTF6DS7cWse95g=="], + "@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.25.9", "", { "dependencies": { "@babel/types": "^7.25.9" } }, "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g=="], - "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.3.8", "http://localhost:4873/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.3.8.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-PShR4mM0sjksUMyxbyPNMxoKFPVF48fU8Qe8Sfx6w6F42verbwRLbz+QiKNiDPRJwUoMG1nPM50OBL3aOnTevA=="], + "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.26.5", "", { "dependencies": { "@babel/compat-data": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA=="], - "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.3.8", "http://localhost:4873/@biomejs/cli-linux-x64/-/cli-linux-x64-2.3.8.tgz", { "os": "linux", "cpu": "x64" }, "sha512-QDPMD5bQz6qOVb3kiBui0zKZXASLo0NIQ9JVJio5RveBEFgDgsvJFUvZIbMbUZT3T00M/1wdzwWXk4GIh0KaAw=="], + "@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/traverse": "^7.25.9", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ=="], - "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.3.8", "http://localhost:4873/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.3.8.tgz", { "os": "linux", "cpu": "x64" }, "sha512-YGLkqU91r1276uwSjiUD/xaVikdxgV1QpsicT0bIA1TaieM6E5ibMZeSyjQ/izBn4tKQthUSsVZacmoJfa3pDA=="], + "@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], - "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.3.8", "http://localhost:4873/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.3.8.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-H4IoCHvL1fXKDrTALeTKMiE7GGWFAraDwBYFquE/L/5r1927Te0mYIGseXi4F+lrrwhSWbSGt5qPFswNoBaCxg=="], + "@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.6.3", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg=="], - "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.3.8", "http://localhost:4873/@biomejs/cli-win32-x64/-/cli-win32-x64-2.3.8.tgz", { "os": "win32", "cpu": "x64" }, "sha512-RguzimPoZWtBapfKhKjcWXBVI91tiSprqdBYu7tWhgN8pKRZhw24rFeNZTNf6UiBfjCYCi9eFQs/JzJZIhuK4w=="], + "@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ=="], - "@bufbuild/protobuf": ["@bufbuild/protobuf@2.10.1", "http://localhost:4873/@bufbuild/protobuf/-/protobuf-2.10.1.tgz", {}, "sha512-ckS3+vyJb5qGpEYv/s1OebUHDi/xSNtfgw1wqKZo7MR9F2z+qXr0q5XagafAG/9O0QPVIUfST0smluYSTpYFkg=="], + "@babel/helper-module-imports": ["@babel/helper-module-imports@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw=="], - "@cacheable/memory": ["@cacheable/memory@2.0.5", "http://localhost:4873/@cacheable/memory/-/memory-2.0.5.tgz", { "dependencies": { "@cacheable/utils": "^2.3.0", "@keyv/bigmap": "^1.1.0", "hookified": "^1.12.2", "keyv": "^5.5.4" } }, "sha512-fkiAxCvssEyJZ5fxX4tcdZFRmW9JehSTGvvqmXn6rTzG5cH6V/3C4ad8yb01vOjp2xBydHkHrgpW0qeGtzt6VQ=="], + "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.26.0", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw=="], - "@cacheable/utils": ["@cacheable/utils@2.3.1", "http://localhost:4873/@cacheable/utils/-/utils-2.3.1.tgz", { "dependencies": { "hashery": "^1.2.0", "keyv": "^5.5.4" } }, "sha512-38NJXjIr4W1Sghun8ju+uYWD8h2c61B4dKwfnQHVDFpAJ9oS28RpfqZQJ6Dgd3RceGkILDY9YT+72HJR3LoeSQ=="], + "@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.25.9", "", { "dependencies": { "@babel/types": "^7.25.9" } }, "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ=="], - "@cspell/dict-fr-fr": ["@cspell/dict-fr-fr@2.3.2", "http://localhost:4873/@cspell/dict-fr-fr/-/dict-fr-fr-2.3.2.tgz", {}, "sha512-cPNjlavSiMfH/bB/Zl5GEF+94s6C77mdvghvVsclco1Ly0VWN3EpH5L9EE3bDGLDpE7m9EnYfRs8TOfZugGrUg=="], + "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], - "@csstools/css-parser-algorithms": ["@csstools/css-parser-algorithms@3.0.5", "http://localhost:4873/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", { "peerDependencies": { "@csstools/css-tokenizer": "^3.0.4" } }, "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ=="], + "@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-wrap-function": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw=="], - "@csstools/css-syntax-patches-for-csstree": ["@csstools/css-syntax-patches-for-csstree@1.0.20", "http://localhost:4873/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.20.tgz", {}, "sha512-8BHsjXfSciZxjmHQOuVdW2b8WLUPts9a+mfL13/PzEviufUEW2xnvQuOlKs9dRBHgRqJ53SF/DUoK9+MZk72oQ=="], + "@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.26.5", "", { "dependencies": { "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/traverse": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg=="], - "@csstools/css-tokenizer": ["@csstools/css-tokenizer@3.0.4", "http://localhost:4873/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", {}, "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw=="], + "@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA=="], - "@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@4.0.3", "http://localhost:4873/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4" } }, "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ=="], + "@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - "@csstools/selector-specificity": ["@csstools/selector-specificity@5.0.0", "http://localhost:4873/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", { "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw=="], + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - "@dual-bundle/import-meta-resolve": ["@dual-bundle/import-meta-resolve@4.2.1", "http://localhost:4873/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.2.1.tgz", {}, "sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg=="], + "@babel/helper-validator-option": ["@babel/helper-validator-option@7.25.9", "", {}, "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="], - "@effect/language-service": ["@effect/language-service@0.60.0", "http://localhost:4873/@effect/language-service/-/language-service-0.60.0.tgz", { "bin": { "effect-language-service": "cli.js" } }, "sha512-elJDWHG5Naq3OkilPt9ZRn56JfSA3MhXUIlDx9RWJeScHm96kZ+HkZ3eFBxqROzXwD6Q2DTtFctFwOM0+QLZEA=="], + "@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.25.9", "", { "dependencies": { "@babel/template": "^7.25.9", "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g=="], - "@effect/platform": ["@effect/platform@0.93.6", "http://localhost:4873/@effect/platform/-/platform-0.93.6.tgz", { "dependencies": { "find-my-way-ts": "^0.1.6", "msgpackr": "^1.11.4", "multipasta": "^0.2.7" }, "peerDependencies": { "effect": "^3.19.8" } }, "sha512-I5lBGQWzWXP4zlIdPs7z7WHmEFVBQhn+74emr/h16GZX96EEJ6I1rjGaKyZF7mtukbMuo9wEckDPssM8vskZ/w=="], + "@babel/helpers": ["@babel/helpers@7.27.0", "", { "dependencies": { "@babel/template": "^7.27.0", "@babel/types": "^7.27.0" } }, "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg=="], - "@effect/platform-browser": ["@effect/platform-browser@0.73.0", "http://localhost:4873/@effect/platform-browser/-/platform-browser-0.73.0.tgz", { "dependencies": { "multipasta": "^0.2.7" }, "peerDependencies": { "@effect/platform": "^0.93.0", "effect": "^3.19.0" } }, "sha512-G/LWu+roBHtjb9JEpCYe47XG0oB2xlUIp7fBQznDPYYMksqtrusEdtVtAWfPhO21aNvVmv7+agonisxK2vGaCQ=="], + "@babel/parser": ["@babel/parser@7.27.0", "", { "dependencies": { "@babel/types": "^7.27.0" }, "bin": "./bin/babel-parser.js" }, "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg=="], - "@emnapi/core": ["@emnapi/core@1.7.1", "http://localhost:4873/@emnapi/core/-/core-1.7.1.tgz", { "dependencies": { "@emnapi/wasi-threads": "1.1.0", "tslib": "^2.4.0" } }, "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg=="], + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ["@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g=="], - "@emnapi/runtime": ["@emnapi/runtime@1.7.1", "http://localhost:4873/@emnapi/runtime/-/runtime-1.7.1.tgz", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA=="], + "@babel/plugin-bugfix-safari-class-field-initializer-scope": ["@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw=="], - "@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.1.0", "http://localhost:4873/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ=="], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug=="], - "@es-joy/jsdoccomment": ["@es-joy/jsdoccomment@0.76.0", "http://localhost:4873/@es-joy/jsdoccomment/-/jsdoccomment-0.76.0.tgz", { "dependencies": { "@types/estree": "^1.0.8", "@typescript-eslint/types": "^8.46.0", "comment-parser": "1.4.1", "esquery": "^1.6.0", "jsdoc-type-pratt-parser": "~6.10.0" } }, "sha512-g+RihtzFgGTx2WYCuTHbdOXJeAlGnROws0TeALx9ow/ZmOROOZkVg5wp/B44n0WJgI4SQFP1eWM2iRPlU2Y14w=="], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g=="], - "@es-joy/resolve.exports": ["@es-joy/resolve.exports@1.2.0", "http://localhost:4873/@es-joy/resolve.exports/-/resolve.exports-1.2.0.tgz", {}, "sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g=="], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg=="], - "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "http://localhost:4873/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="], + "@babel/plugin-proposal-private-property-in-object": ["@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", "", { "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="], - "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.2", "http://localhost:4873/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", {}, "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew=="], + "@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg=="], - "@eslint/config-array": ["@eslint/config-array@0.21.1", "http://localhost:4873/@eslint/config-array/-/config-array-0.21.1.tgz", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA=="], + "@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A=="], - "@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "http://localhost:4873/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="], + "@babel/plugin-syntax-unicode-sets-regex": ["@babel/plugin-syntax-unicode-sets-regex@7.18.6", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg=="], - "@eslint/core": ["@eslint/core@0.17.0", "http://localhost:4873/@eslint/core/-/core-0.17.0.tgz", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="], + "@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg=="], - "@eslint/eslintrc": ["@eslint/eslintrc@3.3.1", "http://localhost:4873/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ=="], + "@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.26.8", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-remap-async-to-generator": "^7.25.9", "@babel/traverse": "^7.26.8" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg=="], - "@eslint/js": ["@eslint/js@9.39.1", "http://localhost:4873/@eslint/js/-/js-9.39.1.tgz", {}, "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw=="], + "@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.25.9", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-remap-async-to-generator": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ=="], - "@eslint/object-schema": ["@eslint/object-schema@2.1.7", "http://localhost:4873/@eslint/object-schema/-/object-schema-2.1.7.tgz", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="], + "@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.26.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ=="], - "@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "http://localhost:4873/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="], + "@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg=="], - "@gcch/configuration-eslint": ["@gcch/configuration-eslint@0.0.10", "http://localhost:4873/@gcch/configuration-eslint/-/configuration-eslint-0.0.10.tgz", { "dependencies": { "@eslint/js": "^9.39.1", "eslint": "^9.39.1", "eslint-plugin-functional": "^9.0.2", "eslint-plugin-jsdoc": "^61.1.12", "eslint-plugin-oxlint": "^1.28.0", "eslint-plugin-perfectionist": "^4.15.1", "eslint-plugin-sonarjs": "^3.0.5", "eslint-plugin-unicorn": "^62.0.0", "globals": "^16.5.0", "typescript-eslint": "^8.46.4" }, "peerDependencies": { "oxlint": "^1.28.0", "typescript": "^6.0.0-dev.20251111" } }, "sha512-m9NBRjTqgQQN9kIDMWYhWY1qm5V3RBf+MB/WinXl9MJj9oro6plvKCvoDNv2SMHpNJCklM+L6TzqZtH85OBe3Q=="], + "@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.25.9", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q=="], - "@gcch/configuration-prettier": ["@gcch/configuration-prettier@0.0.10", "http://localhost:4873/@gcch/configuration-prettier/-/configuration-prettier-0.0.10.tgz", { "dependencies": { "@prettier/plugin-php": "^0.24.0", "@prettier/plugin-xml": "^3.4.2", "prettier": "^4.0.0-alpha.12", "prettier-plugin-curly": "^0.4.0", "prettier-plugin-jsdoc": "^1.5.0", "prettier-plugin-pkg": "^0.21.2", "prettier-plugin-sh": "^0.18.0" } }, "sha512-/FE8xrCcsVtl3GRWuh0NPxRqUc3Y30jZEXpAptEUBWOiL8PVj4Rco2o1ppIWbzbx4X/G0ijvt5qwihlptuZ0Zw=="], + "@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.26.0", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ=="], - "@gcch/ideale-standard": ["@gcch/ideale-standard@0.0.6", "http://localhost:4873/@gcch/ideale-standard/-/ideale-standard-0.0.6.tgz", { "dependencies": { "effect": "^3.19.5" } }, "sha512-BsgJAeUE5N6eMGb2MfqWYcAd30GIUOLNB5NOkQDDoQZVCkJxvGjM7Pg/5pBrKIRLVGt57gNZ7DoP5zSe4/crXw=="], + "@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9", "@babel/traverse": "^7.25.9", "globals": "^11.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg=="], - "@humanfs/core": ["@humanfs/core@0.19.1", "http://localhost:4873/@humanfs/core/-/core-0.19.1.tgz", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], + "@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/template": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA=="], - "@humanfs/node": ["@humanfs/node@0.16.7", "http://localhost:4873/@humanfs/node/-/node-0.16.7.tgz", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.4.0" } }, "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ=="], + "@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ=="], - "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "http://localhost:4873/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], + "@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA=="], - "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "http://localhost:4873/@humanwhocodes/retry/-/retry-0.4.3.tgz", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="], + "@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw=="], - "@keyv/bigmap": ["@keyv/bigmap@1.3.0", "http://localhost:4873/@keyv/bigmap/-/bigmap-1.3.0.tgz", { "dependencies": { "hashery": "^1.2.0", "hookified": "^1.13.0" }, "peerDependencies": { "keyv": "^5.5.4" } }, "sha512-KT01GjzV6AQD5+IYrcpoYLkCu1Jod3nau1Z7EsEuViO3TZGRacSbO9MfHmbJ1WaOXFtWLxPVj169cn2WNKPkIg=="], + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ["@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog=="], - "@keyv/serialize": ["@keyv/serialize@1.1.1", "http://localhost:4873/@keyv/serialize/-/serialize-1.1.1.tgz", {}, "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA=="], + "@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg=="], - "@mobily/ts-belt": ["@mobily/ts-belt@4.0.0-rc.5", "http://localhost:4873/@mobily/ts-belt/-/ts-belt-4.0.0-rc.5.tgz", {}, "sha512-HLWJ8yKrfwdMzCvckRunrAL8Z+K5q31FdY6JzhkBp8o6uQsVuzf26KFyno1s6n6GB78OJEsjs57SaDk9plsJhA=="], + "@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.26.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ=="], - "@msgpackr-extract/msgpackr-extract-darwin-arm64": ["@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3", "http://localhost:4873/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw=="], + "@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww=="], - "@msgpackr-extract/msgpackr-extract-darwin-x64": ["@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3", "http://localhost:4873/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw=="], + "@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.26.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg=="], - "@msgpackr-extract/msgpackr-extract-linux-arm": ["@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3", "http://localhost:4873/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", { "os": "linux", "cpu": "arm" }, "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw=="], + "@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.25.9", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA=="], - "@msgpackr-extract/msgpackr-extract-linux-arm64": ["@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3", "http://localhost:4873/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg=="], + "@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw=="], - "@msgpackr-extract/msgpackr-extract-linux-x64": ["@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3", "http://localhost:4873/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", { "os": "linux", "cpu": "x64" }, "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg=="], + "@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ=="], - "@msgpackr-extract/msgpackr-extract-win32-x64": ["@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3", "http://localhost:4873/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", { "os": "win32", "cpu": "x64" }, "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ=="], + "@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q=="], - "@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.0.7", "http://localhost:4873/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz", { "dependencies": { "@emnapi/core": "^1.5.0", "@emnapi/runtime": "^1.5.0", "@tybys/wasm-util": "^0.10.1" } }, "sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw=="], + "@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA=="], - "@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "http://localhost:4873/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="], + "@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw=="], - "@nodelib/fs.stat": ["@nodelib/fs.stat@2.0.5", "http://localhost:4873/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", {}, "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="], + "@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.26.3", "", { "dependencies": { "@babel/helper-module-transforms": "^7.26.0", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ=="], - "@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "http://localhost:4873/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="], + "@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA=="], - "@oxc-project/runtime": ["@oxc-project/runtime@0.101.0", "http://localhost:4873/@oxc-project/runtime/-/runtime-0.101.0.tgz", {}, "sha512-t3qpfVZIqSiLQ5Kqt/MC4Ge/WCOGrrcagAdzTcDaggupjiGxUx4nJF2v6wUCXWSzWHn5Ns7XLv13fCJEwCOERQ=="], + "@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw=="], - "@oxc-project/types": ["@oxc-project/types@0.101.0", "http://localhost:4873/@oxc-project/types/-/types-0.101.0.tgz", {}, "sha512-nuFhqlUzJX+gVIPPfuE6xurd4lST3mdcWOhyK/rZO0B9XWMKm79SuszIQEnSMmmDhq1DC8WWVYGVd+6F93o1gQ=="], + "@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA=="], - "@oxc-resolver/binding-android-arm-eabi": ["@oxc-resolver/binding-android-arm-eabi@11.13.2", "http://localhost:4873/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.13.2.tgz", { "os": "android", "cpu": "arm" }, "sha512-vWd1NEaclg/t2DtEmYzRRBNQOueMI8tixw/fSNZ9XETXLRJiAjQMYpYeflQdRASloGze6ZelHE/wIBNt4S+pkw=="], + "@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ=="], - "@oxc-resolver/binding-android-arm64": ["@oxc-resolver/binding-android-arm64@11.13.2", "http://localhost:4873/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.13.2.tgz", { "os": "android", "cpu": "arm64" }, "sha512-jxZrYcxgpI6IuQpguQVAQNrZfUyiYfMVqR4pKVU3PRLCM7AsfXNKp0TIgcvp+l6dYVdoZ1MMMMa5Ayjd09rNOw=="], + "@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.26.6", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw=="], - "@oxc-resolver/binding-darwin-arm64": ["@oxc-resolver/binding-darwin-arm64@11.13.2", "http://localhost:4873/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.13.2.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-RDS3HUe1FvgjNS1xfBUqiEJ8938Zb5r7iKABwxEblp3K4ufZZNAtoaHjdUH2TJ0THDmuf0OxxVUO/Y+4Ep4QfQ=="], + "@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q=="], - "@oxc-resolver/binding-darwin-x64": ["@oxc-resolver/binding-darwin-x64@11.13.2", "http://localhost:4873/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.13.2.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-tDcyWtkUzkt6auJLP2dOjL84BxqHkKW4mz2lNRIGPTq7b+HBraB+m8RdRH6BgqTvbnNECOxR3XAMaKBKC8J51g=="], + "@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.25.9", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg=="], - "@oxc-resolver/binding-freebsd-x64": ["@oxc-resolver/binding-freebsd-x64@11.13.2", "http://localhost:4873/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.13.2.tgz", { "os": "freebsd", "cpu": "x64" }, "sha512-fpaeN8Q0kWvKns9uSMg6CcKo7cdgmWt6J91stPf8sdM+EKXzZ0YcRnWWyWF8SM16QcLUPCy5Iwt5Z8aYBGaZYA=="], + "@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A=="], - "@oxc-resolver/binding-linux-arm-gnueabihf": ["@oxc-resolver/binding-linux-arm-gnueabihf@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.13.2.tgz", { "os": "linux", "cpu": "arm" }, "sha512-idBgJU5AvSsGOeaIWiFBKbNBjpuduHsJmrG4CBbEUNW/Ykx+ISzcuj1PHayiYX6R9stVsRhj3d2PyymfC5KWRg=="], + "@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g=="], - "@oxc-resolver/binding-linux-arm-musleabihf": ["@oxc-resolver/binding-linux-arm-musleabihf@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.13.2.tgz", { "os": "linux", "cpu": "arm" }, "sha512-BlBvQUhvvIM/7s96KlKhMk0duR2sj8T7Hyii46/5QnwfN/pHwobvOL5czZ6/SKrHNB/F/qDY4hGsBuB1y7xgTg=="], + "@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A=="], - "@oxc-resolver/binding-linux-arm64-gnu": ["@oxc-resolver/binding-linux-arm64-gnu@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.13.2.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-lUmDTmYOGpbIK+FBfZ0ySaQTo7g1Ia/WnDnQR2wi/0AtehZIg/ZZIgiT/fD0iRvKEKma612/0PVo8dXdAKaAGA=="], + "@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g=="], - "@oxc-resolver/binding-linux-arm64-musl": ["@oxc-resolver/binding-linux-arm64-musl@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.13.2.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-dkGzOxo+I9lA4Er6qzFgkFevl3JvwyI9i0T/PkOJHva04rb1p9dz8GPogTO9uMK4lrwLWzm/piAu+tHYC7v7+w=="], + "@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.25.9", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw=="], - "@oxc-resolver/binding-linux-ppc64-gnu": ["@oxc-resolver/binding-linux-ppc64-gnu@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.13.2.tgz", { "os": "linux", "cpu": "ppc64" }, "sha512-53kWsjLkVFnoSA7COdps38pBssN48zI8LfsOvupsmQ0/4VeMYb+0Ao9O6r52PtmFZsGB3S1Qjqbjl/Pswj1a3g=="], + "@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw=="], - "@oxc-resolver/binding-linux-riscv64-gnu": ["@oxc-resolver/binding-linux-riscv64-gnu@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.13.2.tgz", { "os": "linux", "cpu": "none" }, "sha512-MfxN6DMpvmdCbGlheJ+ihy11oTcipqDfcEIQV9ah3FGXBRCZtBOHJpQDk8qI2Y+nCXVr3Nln7OSsOzoC4+rSYQ=="], + "@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA=="], - "@oxc-resolver/binding-linux-riscv64-musl": ["@oxc-resolver/binding-linux-riscv64-musl@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.13.2.tgz", { "os": "linux", "cpu": "none" }, "sha512-WXrm4YiRU0ijqb72WHSjmfYaQZ7t6/kkQrFc4JtU+pUE4DZA/DEdxOuQEd4Q43VqmLvICTJWSaZMlCGQ4PSRUg=="], + "@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "regenerator-transform": "^0.15.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg=="], - "@oxc-resolver/binding-linux-s390x-gnu": ["@oxc-resolver/binding-linux-s390x-gnu@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.13.2.tgz", { "os": "linux", "cpu": "s390x" }, "sha512-4pISWIlOFRUhWyvGCB3XUhtcwyvwGGhlXhHz7IXCXuGufaQtvR05trvw8U1ZnaPhsdPBkRhOMIedX11ayi5uXw=="], + "@babel/plugin-transform-regexp-modifiers": ["@babel/plugin-transform-regexp-modifiers@7.26.0", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw=="], - "@oxc-resolver/binding-linux-x64-gnu": ["@oxc-resolver/binding-linux-x64-gnu@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.13.2.tgz", { "os": "linux", "cpu": "x64" }, "sha512-DVo6jS8n73yNAmCsUOOk2vBeC60j2RauDXQM8p7RDl0afsEaA2le22vD8tky7iNoM5tsxfBmE4sOJXEKgpwWRw=="], + "@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg=="], - "@oxc-resolver/binding-linux-x64-musl": ["@oxc-resolver/binding-linux-x64-musl@11.13.2", "http://localhost:4873/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.13.2.tgz", { "os": "linux", "cpu": "x64" }, "sha512-6WqrE+hQBFP35KdwQjWcZpldbTq6yJmuTVThISu+rY3+j6MaDp2ciLHTr1X68r2H/7ocOIl4k3NnOVIzeRJE3w=="], + "@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng=="], - "@oxc-resolver/binding-wasm32-wasi": ["@oxc-resolver/binding-wasm32-wasi@11.13.2", "http://localhost:4873/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.13.2.tgz", { "dependencies": { "@napi-rs/wasm-runtime": "^1.0.7" }, "cpu": "none" }, "sha512-YpxvQmP2D+mNUkLQZbBjGz20g/pY8XoOBdPPoWMl9X68liFFjXxkPQTrZxWw4zzG/UkTM5z6dPRTyTePRsMcjw=="], + "@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A=="], - "@oxc-resolver/binding-win32-arm64-msvc": ["@oxc-resolver/binding-win32-arm64-msvc@11.13.2", "http://localhost:4873/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.13.2.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-1SKBw6KcCmvPBdEw1/Qdpv6eSDf23lCXTWz9VxTe6QUQ/1wR+HZR2uS4q6C8W6jnIswMTQbxpTvVwdRXl+ufeA=="], + "@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA=="], - "@oxc-resolver/binding-win32-ia32-msvc": ["@oxc-resolver/binding-win32-ia32-msvc@11.13.2", "http://localhost:4873/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.13.2.tgz", { "os": "win32", "cpu": "ia32" }, "sha512-KEVV7wggDucxRn3vvyHnmTCPXoCT7vWpH18UVLTygibHJvNRP2zl5lBaQcCIdIaYYZjKt1aGI/yZqxZvHoiCdg=="], + "@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.26.8", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q=="], - "@oxc-resolver/binding-win32-x64-msvc": ["@oxc-resolver/binding-win32-x64-msvc@11.13.2", "http://localhost:4873/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.13.2.tgz", { "os": "win32", "cpu": "x64" }, "sha512-6AAdN9v/wO5c3td1yidgNLKYlzuNgfOtEqBq60WE469bJWR7gHgG/S5aLR2pH6/gyPLs9UXtItxi934D+0Estg=="], + "@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.26.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw=="], - "@oxlint/darwin-arm64": ["@oxlint/darwin-arm64@1.31.0", "http://localhost:4873/@oxlint/darwin-arm64/-/darwin-arm64-1.31.0.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-HqoYNH5WFZRdqGUROTFGOdBcA9y/YdHNoR/ujlyVO53it+q96dujbgKEvlff/WEuo4LbDKBrKLWKTKvOd/VYdg=="], + "@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q=="], - "@oxlint/darwin-x64": ["@oxlint/darwin-x64@1.31.0", "http://localhost:4873/@oxlint/darwin-x64/-/darwin-x64-1.31.0.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-gNq+JQXBCkYKQhmJEgSNjuPqmdL8yBEX3v0sueLH3g5ym4OIrNO7ml1M7xzCs0zhINQCR9MsjMJMyBNaF1ed+g=="], + "@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg=="], - "@oxlint/linux-arm64-gnu": ["@oxlint/linux-arm64-gnu@1.31.0", "http://localhost:4873/@oxlint/linux-arm64-gnu/-/linux-arm64-gnu-1.31.0.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-cRmttpr3yHPwbrvtPNlv+0Zw2Oeh0cU902iMI4fFW9ylbW/vUAcz6DvzGMCYZbII8VDiwQ453SV5AA8xBgMbmw=="], + "@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA=="], - "@oxlint/linux-arm64-musl": ["@oxlint/linux-arm64-musl@1.31.0", "http://localhost:4873/@oxlint/linux-arm64-musl/-/linux-arm64-musl-1.31.0.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-0p7vn0hdMdNPIUzemw8f1zZ2rRZ/963EkK3o4P0KUXOPgleo+J9ZIPH7gcHSHtyrNaBifN03wET1rH4SuWQYnA=="], + "@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ=="], - "@oxlint/linux-x64-gnu": ["@oxlint/linux-x64-gnu@1.31.0", "http://localhost:4873/@oxlint/linux-x64-gnu/-/linux-x64-gnu-1.31.0.tgz", { "os": "linux", "cpu": "x64" }, "sha512-vNIbpSwQ4dwN0CUmojG7Y91O3CXOf0Kno7DSTshk/JJR4+u8HNVuYVjX2qBRk0OMc4wscJbEd7wJCl0VJOoCOw=="], + "@babel/preset-env": ["@babel/preset-env@7.26.9", "", { "dependencies": { "@babel/compat-data": "^7.26.8", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.26.0", "@babel/plugin-syntax-import-attributes": "^7.26.0", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.25.9", "@babel/plugin-transform-async-generator-functions": "^7.26.8", "@babel/plugin-transform-async-to-generator": "^7.25.9", "@babel/plugin-transform-block-scoped-functions": "^7.26.5", "@babel/plugin-transform-block-scoping": "^7.25.9", "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-classes": "^7.25.9", "@babel/plugin-transform-computed-properties": "^7.25.9", "@babel/plugin-transform-destructuring": "^7.25.9", "@babel/plugin-transform-dotall-regex": "^7.25.9", "@babel/plugin-transform-duplicate-keys": "^7.25.9", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-dynamic-import": "^7.25.9", "@babel/plugin-transform-exponentiation-operator": "^7.26.3", "@babel/plugin-transform-export-namespace-from": "^7.25.9", "@babel/plugin-transform-for-of": "^7.26.9", "@babel/plugin-transform-function-name": "^7.25.9", "@babel/plugin-transform-json-strings": "^7.25.9", "@babel/plugin-transform-literals": "^7.25.9", "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", "@babel/plugin-transform-member-expression-literals": "^7.25.9", "@babel/plugin-transform-modules-amd": "^7.25.9", "@babel/plugin-transform-modules-commonjs": "^7.26.3", "@babel/plugin-transform-modules-systemjs": "^7.25.9", "@babel/plugin-transform-modules-umd": "^7.25.9", "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-new-target": "^7.25.9", "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", "@babel/plugin-transform-numeric-separator": "^7.25.9", "@babel/plugin-transform-object-rest-spread": "^7.25.9", "@babel/plugin-transform-object-super": "^7.25.9", "@babel/plugin-transform-optional-catch-binding": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9", "@babel/plugin-transform-private-methods": "^7.25.9", "@babel/plugin-transform-private-property-in-object": "^7.25.9", "@babel/plugin-transform-property-literals": "^7.25.9", "@babel/plugin-transform-regenerator": "^7.25.9", "@babel/plugin-transform-regexp-modifiers": "^7.26.0", "@babel/plugin-transform-reserved-words": "^7.25.9", "@babel/plugin-transform-shorthand-properties": "^7.25.9", "@babel/plugin-transform-spread": "^7.25.9", "@babel/plugin-transform-sticky-regex": "^7.25.9", "@babel/plugin-transform-template-literals": "^7.26.8", "@babel/plugin-transform-typeof-symbol": "^7.26.7", "@babel/plugin-transform-unicode-escapes": "^7.25.9", "@babel/plugin-transform-unicode-property-regex": "^7.25.9", "@babel/plugin-transform-unicode-regex": "^7.25.9", "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.40.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ=="], - "@oxlint/linux-x64-musl": ["@oxlint/linux-x64-musl@1.31.0", "http://localhost:4873/@oxlint/linux-x64-musl/-/linux-x64-musl-1.31.0.tgz", { "os": "linux", "cpu": "x64" }, "sha512-4avnH09FJRTOT2cULdDPG0s14C+Ku4cnbNye6XO7rsiX6Bprz+aQblLA+1WLOr7UfC/0zF+jnZ9K5VyBBJy9Kw=="], + "@babel/preset-modules": ["@babel/preset-modules@0.1.6-no-external-plugins", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA=="], - "@oxlint/win32-arm64": ["@oxlint/win32-arm64@1.31.0", "http://localhost:4873/@oxlint/win32-arm64/-/win32-arm64-1.31.0.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-mQaD5H93OUpxiGjC518t5wLQikf0Ur5mQEKO2VoTlkp01gqmrQ+hyCLOzABlsAIAeDJD58S9JwNOw4KFFnrqdw=="], + "@babel/runtime": ["@babel/runtime@7.26.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ=="], - "@oxlint/win32-x64": ["@oxlint/win32-x64@1.31.0", "http://localhost:4873/@oxlint/win32-x64/-/win32-x64-1.31.0.tgz", { "os": "win32", "cpu": "x64" }, "sha512-AS/h58HfloccRlVs7P3zbyZfxNS62JuE8/3fYGjkiRlR1ZoDxdqmz5QgLEn+YxxFUTMmclGAPMFHg9z2Pk315A=="], + "@babel/template": ["@babel/template@7.27.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.27.0", "@babel/types": "^7.27.0" } }, "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA=="], - "@parcel/watcher": ["@parcel/watcher@2.5.1", "http://localhost:4873/@parcel/watcher/-/watcher-2.5.1.tgz", { "dependencies": { "detect-libc": "^1.0.3", "is-glob": "^4.0.3", "micromatch": "^4.0.5", "node-addon-api": "^7.0.0" }, "optionalDependencies": { "@parcel/watcher-android-arm64": "2.5.1", "@parcel/watcher-darwin-arm64": "2.5.1", "@parcel/watcher-darwin-x64": "2.5.1", "@parcel/watcher-freebsd-x64": "2.5.1", "@parcel/watcher-linux-arm-glibc": "2.5.1", "@parcel/watcher-linux-arm-musl": "2.5.1", "@parcel/watcher-linux-arm64-glibc": "2.5.1", "@parcel/watcher-linux-arm64-musl": "2.5.1", "@parcel/watcher-linux-x64-glibc": "2.5.1", "@parcel/watcher-linux-x64-musl": "2.5.1", "@parcel/watcher-win32-arm64": "2.5.1", "@parcel/watcher-win32-ia32": "2.5.1", "@parcel/watcher-win32-x64": "2.5.1" } }, "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg=="], + "@babel/traverse": ["@babel/traverse@7.27.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.27.0", "@babel/parser": "^7.27.0", "@babel/template": "^7.27.0", "@babel/types": "^7.27.0", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA=="], - "@parcel/watcher-android-arm64": ["@parcel/watcher-android-arm64@2.5.1", "http://localhost:4873/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", { "os": "android", "cpu": "arm64" }, "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA=="], + "@babel/types": ["@babel/types@7.27.0", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg=="], - "@parcel/watcher-darwin-arm64": ["@parcel/watcher-darwin-arm64@2.5.1", "http://localhost:4873/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw=="], + "@biomejs/biome": ["@biomejs/biome@1.9.4", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "1.9.4", "@biomejs/cli-darwin-x64": "1.9.4", "@biomejs/cli-linux-arm64": "1.9.4", "@biomejs/cli-linux-arm64-musl": "1.9.4", "@biomejs/cli-linux-x64": "1.9.4", "@biomejs/cli-linux-x64-musl": "1.9.4", "@biomejs/cli-win32-arm64": "1.9.4", "@biomejs/cli-win32-x64": "1.9.4" }, "bin": { "biome": "bin/biome" } }, "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog=="], - "@parcel/watcher-darwin-x64": ["@parcel/watcher-darwin-x64@2.5.1", "http://localhost:4873/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg=="], + "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@1.9.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw=="], - "@parcel/watcher-freebsd-x64": ["@parcel/watcher-freebsd-x64@2.5.1", "http://localhost:4873/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", { "os": "freebsd", "cpu": "x64" }, "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ=="], + "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@1.9.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg=="], - "@parcel/watcher-linux-arm-glibc": ["@parcel/watcher-linux-arm-glibc@2.5.1", "http://localhost:4873/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", { "os": "linux", "cpu": "arm" }, "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA=="], + "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g=="], - "@parcel/watcher-linux-arm-musl": ["@parcel/watcher-linux-arm-musl@2.5.1", "http://localhost:4873/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", { "os": "linux", "cpu": "arm" }, "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q=="], + "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA=="], - "@parcel/watcher-linux-arm64-glibc": ["@parcel/watcher-linux-arm64-glibc@2.5.1", "http://localhost:4873/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w=="], + "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg=="], - "@parcel/watcher-linux-arm64-musl": ["@parcel/watcher-linux-arm64-musl@2.5.1", "http://localhost:4873/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg=="], + "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg=="], - "@parcel/watcher-linux-x64-glibc": ["@parcel/watcher-linux-x64-glibc@2.5.1", "http://localhost:4873/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", { "os": "linux", "cpu": "x64" }, "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A=="], + "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@1.9.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg=="], - "@parcel/watcher-linux-x64-musl": ["@parcel/watcher-linux-x64-musl@2.5.1", "http://localhost:4873/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", { "os": "linux", "cpu": "x64" }, "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg=="], + "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@1.9.4", "", { "os": "win32", "cpu": "x64" }, "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA=="], - "@parcel/watcher-win32-arm64": ["@parcel/watcher-win32-arm64@2.5.1", "http://localhost:4873/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw=="], + "@bufbuild/protobuf": ["@bufbuild/protobuf@2.5.2", "", {}, "sha512-foZ7qr0IsUBjzWIq+SuBLfdQCpJ1j8cTuNNT4owngTHoN5KsJb8L9t65fzz7SCeSWzescoOil/0ldqiL041ABg=="], - "@parcel/watcher-win32-ia32": ["@parcel/watcher-win32-ia32@2.5.1", "http://localhost:4873/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", { "os": "win32", "cpu": "ia32" }, "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ=="], + "@cspell/cspell-bundled-dicts": ["@cspell/cspell-bundled-dicts@9.0.2", "", { "dependencies": { "@cspell/dict-ada": "^4.1.0", "@cspell/dict-al": "^1.1.0", "@cspell/dict-aws": "^4.0.10", "@cspell/dict-bash": "^4.2.0", "@cspell/dict-companies": "^3.2.1", "@cspell/dict-cpp": "^6.0.8", "@cspell/dict-cryptocurrencies": "^5.0.4", "@cspell/dict-csharp": "^4.0.6", "@cspell/dict-css": "^4.0.17", "@cspell/dict-dart": "^2.3.0", "@cspell/dict-data-science": "^2.0.8", "@cspell/dict-django": "^4.1.4", "@cspell/dict-docker": "^1.1.14", "@cspell/dict-dotnet": "^5.0.9", "@cspell/dict-elixir": "^4.0.7", "@cspell/dict-en-common-misspellings": "^2.0.11", "@cspell/dict-en-gb-mit": "^3.0.6", "@cspell/dict-en_us": "^4.4.8", "@cspell/dict-filetypes": "^3.0.12", "@cspell/dict-flutter": "^1.1.0", "@cspell/dict-fonts": "^4.0.4", "@cspell/dict-fsharp": "^1.1.0", "@cspell/dict-fullstack": "^3.2.6", "@cspell/dict-gaming-terms": "^1.1.1", "@cspell/dict-git": "^3.0.5", "@cspell/dict-golang": "^6.0.21", "@cspell/dict-google": "^1.0.8", "@cspell/dict-haskell": "^4.0.5", "@cspell/dict-html": "^4.0.11", "@cspell/dict-html-symbol-entities": "^4.0.3", "@cspell/dict-java": "^5.0.11", "@cspell/dict-julia": "^1.1.0", "@cspell/dict-k8s": "^1.0.10", "@cspell/dict-kotlin": "^1.1.0", "@cspell/dict-latex": "^4.0.3", "@cspell/dict-lorem-ipsum": "^4.0.4", "@cspell/dict-lua": "^4.0.7", "@cspell/dict-makefile": "^1.0.4", "@cspell/dict-markdown": "^2.0.10", "@cspell/dict-monkeyc": "^1.0.10", "@cspell/dict-node": "^5.0.7", "@cspell/dict-npm": "^5.2.3", "@cspell/dict-php": "^4.0.14", "@cspell/dict-powershell": "^5.0.14", "@cspell/dict-public-licenses": "^2.0.13", "@cspell/dict-python": "^4.2.18", "@cspell/dict-r": "^2.1.0", "@cspell/dict-ruby": "^5.0.8", "@cspell/dict-rust": "^4.0.11", "@cspell/dict-scala": "^5.0.7", "@cspell/dict-shell": "^1.1.0", "@cspell/dict-software-terms": "^5.0.9", "@cspell/dict-sql": "^2.2.0", "@cspell/dict-svelte": "^1.0.6", "@cspell/dict-swift": "^2.0.5", "@cspell/dict-terraform": "^1.1.1", "@cspell/dict-typescript": "^3.2.1", "@cspell/dict-vue": "^3.0.4" } }, "sha512-gGFSfVIvYtO95O3Yhcd1o0sOZHjVaCPwYq3MnaNsBBzaMviIZli4FZW9Z+XNKsgo1zRzbl2SdOXJPP0VcyAY0A=="], - "@parcel/watcher-win32-x64": ["@parcel/watcher-win32-x64@2.5.1", "http://localhost:4873/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", { "os": "win32", "cpu": "x64" }, "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA=="], + "@cspell/cspell-json-reporter": ["@cspell/cspell-json-reporter@9.0.2", "", { "dependencies": { "@cspell/cspell-types": "9.0.2" } }, "sha512-Hy9hKG53cFhLwiSZuRVAd5YfBb5pPj3V2Val69TW1j4+sy3podewqm4sb3RqoB01LcDkLI/mOeMwHz1xyIjfoA=="], - "@playwright/test": ["@playwright/test@1.57.0", "http://localhost:4873/@playwright/test/-/test-1.57.0.tgz", { "dependencies": { "playwright": "1.57.0" }, "bin": { "playwright": "cli.js" } }, "sha512-6TyEnHgd6SArQO8UO2OMTxshln3QMWBtPGrOCgs3wVEmQmwyuNtB10IZMfmYDE0riwNR1cu4q+pPcxMVtaG3TA=="], + "@cspell/cspell-pipe": ["@cspell/cspell-pipe@9.0.2", "", {}, "sha512-M1e+u3dyGCJicSZ16xmoVut4pI8ynfqILYiDAYC9+rbn04wJdnWD46ElIZnRriFXx7fu/UsUEexu3lFaqKVGEg=="], - "@prettier/plugin-php": ["@prettier/plugin-php@0.24.0", "http://localhost:4873/@prettier/plugin-php/-/plugin-php-0.24.0.tgz", { "dependencies": { "linguist-languages": "^8.0.0", "php-parser": "^3.2.5" }, "peerDependencies": { "prettier": "^3.0.0" } }, "sha512-x9l65fCE/pgoET6RQowgdgG8Xmzs44z6j6Hhg3coINCyCw9JBGJ5ZzMR2XHAM2jmAdbJAIgqB6cUn4/3W3XLTA=="], + "@cspell/cspell-resolver": ["@cspell/cspell-resolver@9.0.2", "", { "dependencies": { "global-directory": "^4.0.1" } }, "sha512-JkMQb+hcEyZ2ALvEeJvfxoIblRpZlnek50Ew5sLSSZciRuhNvQZS5+Apwt1GXHitTo8/bqXFxABNP36O++YAwA=="], - "@prettier/plugin-xml": ["@prettier/plugin-xml@3.4.2", "http://localhost:4873/@prettier/plugin-xml/-/plugin-xml-3.4.2.tgz", { "dependencies": { "@xml-tools/parser": "^1.0.11" }, "peerDependencies": { "prettier": "^3.0.0" } }, "sha512-/UyNlHfkuLXG6Ed85KB0WBF283xn2yavR+UtRibBRUcvEJId2DSLdGXwJ/cDa1X++SWDPzq3+GSFniHjkNy7yg=="], + "@cspell/cspell-service-bus": ["@cspell/cspell-service-bus@9.0.2", "", {}, "sha512-OjfZ3vnBjmkctC9xs/87/9bx/3kZYUPJkWsZxzfH4rla/HeIUrm9UZlDqCibhWifhPHrDdV9hDW5QEGXkYR2hw=="], - "@reteps/dockerfmt": ["@reteps/dockerfmt@0.3.6", "http://localhost:4873/@reteps/dockerfmt/-/dockerfmt-0.3.6.tgz", {}, "sha512-Tb5wIMvBf/nLejTQ61krK644/CEMB/cpiaIFXqGApfGqO3GwcR3qnI0DbmkFVCl2OyEp8LnLX3EkucoL0+tbFg=="], + "@cspell/cspell-types": ["@cspell/cspell-types@9.0.2", "", {}, "sha512-RioULo34qbUXuCCLi/DCDxdb++Nm1ospNXzVkKZrSvTG4AjkC95ZhfIOp9jbGSWqL2PGdaHVXgG77EyQbAk5xA=="], - "@rolldown/binding-android-arm64": ["@rolldown/binding-android-arm64@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-beta.53.tgz", { "os": "android", "cpu": "arm64" }, "sha512-Ok9V8o7o6YfSdTTYA/uHH30r3YtOxLD6G3wih/U9DO0ucBBFq8WPt/DslU53OgfteLRHITZny9N/qCUxMf9kjQ=="], + "@cspell/dict-ada": ["@cspell/dict-ada@4.1.0", "", {}, "sha512-7SvmhmX170gyPd+uHXrfmqJBY5qLcCX8kTGURPVeGxmt8XNXT75uu9rnZO+jwrfuU2EimNoArdVy5GZRGljGNg=="], - "@rolldown/binding-darwin-arm64": ["@rolldown/binding-darwin-arm64@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-beta.53.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-yIsKqMz0CtRnVa6x3Pa+mzTihr4Ty+Z6HfPbZ7RVbk1Uxnco4+CUn7Qbm/5SBol1JD/7nvY8rphAgyAi7Lj6Vg=="], + "@cspell/dict-al": ["@cspell/dict-al@1.1.0", "", {}, "sha512-PtNI1KLmYkELYltbzuoztBxfi11jcE9HXBHCpID2lou/J4VMYKJPNqe4ZjVzSI9NYbMnMnyG3gkbhIdx66VSXg=="], - "@rolldown/binding-darwin-x64": ["@rolldown/binding-darwin-x64@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-beta.53.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-GTXe+mxsCGUnJOFMhfGWmefP7Q9TpYUseHvhAhr21nCTgdS8jPsvirb0tJwM3lN0/u/cg7bpFNa16fQrjKrCjQ=="], + "@cspell/dict-aws": ["@cspell/dict-aws@4.0.10", "", {}, "sha512-0qW4sI0GX8haELdhfakQNuw7a2pnWXz3VYQA2MpydH2xT2e6EN9DWFpKAi8DfcChm8MgDAogKkoHtIo075iYng=="], - "@rolldown/binding-freebsd-x64": ["@rolldown/binding-freebsd-x64@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-beta.53.tgz", { "os": "freebsd", "cpu": "x64" }, "sha512-9Tmp7bBvKqyDkMcL4e089pH3RsjD3SUungjmqWtyhNOxoQMh0fSmINTyYV8KXtE+JkxYMPWvnEt+/mfpVCkk8w=="], + "@cspell/dict-bash": ["@cspell/dict-bash@4.2.0", "", { "dependencies": { "@cspell/dict-shell": "1.1.0" } }, "sha512-HOyOS+4AbCArZHs/wMxX/apRkjxg6NDWdt0jF9i9XkvJQUltMwEhyA2TWYjQ0kssBsnof+9amax2lhiZnh3kCg=="], - "@rolldown/binding-linux-arm-gnueabihf": ["@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-beta.53.tgz", { "os": "linux", "cpu": "arm" }, "sha512-a1y5fiB0iovuzdbjUxa7+Zcvgv+mTmlGGC4XydVIsyl48eoxgaYkA3l9079hyTyhECsPq+mbr0gVQsFU11OJAQ=="], + "@cspell/dict-companies": ["@cspell/dict-companies@3.2.1", "", {}, "sha512-ryaeJ1KhTTKL4mtinMtKn8wxk6/tqD4vX5tFP+Hg89SiIXmbMk5vZZwVf+eyGUWJOyw5A1CVj9EIWecgoi+jYQ=="], - "@rolldown/binding-linux-arm64-gnu": ["@rolldown/binding-linux-arm64-gnu@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-beta.53.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-bpIGX+ov9PhJYV+wHNXl9rzq4F0QvILiURn0y0oepbQx+7stmQsKA0DhPGwmhfvF856wq+gbM8L92SAa/CBcLg=="], + "@cspell/dict-cpp": ["@cspell/dict-cpp@6.0.8", "", {}, "sha512-BzurRZilWqaJt32Gif6/yCCPi+FtrchjmnehVEIFzbWyeBd/VOUw77IwrEzehZsu5cRU91yPWuWp5fUsKfDAXA=="], - "@rolldown/binding-linux-arm64-musl": ["@rolldown/binding-linux-arm64-musl@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-beta.53.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-bGe5EBB8FVjHBR1mOLOPEFg1Lp3//7geqWkU5NIhxe+yH0W8FVrQ6WRYOap4SUTKdklD/dC4qPLREkMMQ855FA=="], + "@cspell/dict-cryptocurrencies": ["@cspell/dict-cryptocurrencies@5.0.4", "", {}, "sha512-6iFu7Abu+4Mgqq08YhTKHfH59mpMpGTwdzDB2Y8bbgiwnGFCeoiSkVkgLn1Kel2++hYcZ8vsAW/MJS9oXxuMag=="], - "@rolldown/binding-linux-x64-gnu": ["@rolldown/binding-linux-x64-gnu@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-beta.53.tgz", { "os": "linux", "cpu": "x64" }, "sha512-qL+63WKVQs1CMvFedlPt0U9PiEKJOAL/bsHMKUDS6Vp2Q+YAv/QLPu8rcvkfIMvQ0FPU2WL0aX4eWwF6e/GAnA=="], + "@cspell/dict-csharp": ["@cspell/dict-csharp@4.0.6", "", {}, "sha512-w/+YsqOknjQXmIlWDRmkW+BHBPJZ/XDrfJhZRQnp0wzpPOGml7W0q1iae65P2AFRtTdPKYmvSz7AL5ZRkCnSIw=="], - "@rolldown/binding-linux-x64-musl": ["@rolldown/binding-linux-x64-musl@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-beta.53.tgz", { "os": "linux", "cpu": "x64" }, "sha512-VGl9JIGjoJh3H8Mb+7xnVqODajBmrdOOb9lxWXdcmxyI+zjB2sux69br0hZJDTyLJfvBoYm439zPACYbCjGRmw=="], + "@cspell/dict-css": ["@cspell/dict-css@4.0.17", "", {}, "sha512-2EisRLHk6X/PdicybwlajLGKF5aJf4xnX2uuG5lexuYKt05xV/J/OiBADmi8q9obhxf1nesrMQbqAt+6CsHo/w=="], - "@rolldown/binding-openharmony-arm64": ["@rolldown/binding-openharmony-arm64@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-beta.53.tgz", { "os": "none", "cpu": "arm64" }, "sha512-B4iIserJXuSnNzA5xBLFUIjTfhNy7d9sq4FUMQY3GhQWGVhS2RWWzzDnkSU6MUt7/aHUrep0CdQfXUJI9D3W7A=="], + "@cspell/dict-dart": ["@cspell/dict-dart@2.3.0", "", {}, "sha512-1aY90lAicek8vYczGPDKr70pQSTQHwMFLbmWKTAI6iavmb1fisJBS1oTmMOKE4ximDf86MvVN6Ucwx3u/8HqLg=="], - "@rolldown/binding-wasm32-wasi": ["@rolldown/binding-wasm32-wasi@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-beta.53.tgz", { "dependencies": { "@napi-rs/wasm-runtime": "^1.1.0" }, "cpu": "none" }, "sha512-BUjAEgpABEJXilGq/BPh7jeU3WAJ5o15c1ZEgHaDWSz3LB881LQZnbNJHmUiM4d1JQWMYYyR1Y490IBHi2FPJg=="], + "@cspell/dict-data-science": ["@cspell/dict-data-science@2.0.8", "", {}, "sha512-uyAtT+32PfM29wRBeAkUSbkytqI8bNszNfAz2sGPtZBRmsZTYugKMEO9eDjAIE/pnT9CmbjNuoiXhk+Ss4fCOg=="], - "@rolldown/binding-win32-arm64-msvc": ["@rolldown/binding-win32-arm64-msvc@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-beta.53.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-s27uU7tpCWSjHBnxyVXHt3rMrQdJq5MHNv3BzsewCIroIw3DJFjMH1dzCPPMUFxnh1r52Nf9IJ/eWp6LDoyGcw=="], + "@cspell/dict-django": ["@cspell/dict-django@4.1.4", "", {}, "sha512-fX38eUoPvytZ/2GA+g4bbdUtCMGNFSLbdJJPKX2vbewIQGfgSFJKY56vvcHJKAvw7FopjvgyS/98Ta9WN1gckg=="], - "@rolldown/binding-win32-x64-msvc": ["@rolldown/binding-win32-x64-msvc@1.0.0-beta.53", "http://localhost:4873/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-beta.53.tgz", { "os": "win32", "cpu": "x64" }, "sha512-cjWL/USPJ1g0en2htb4ssMjIycc36RvdQAx1WlXnS6DpULswiUTVXPDesTifSKYSyvx24E0YqQkEm0K/M2Z/AA=="], + "@cspell/dict-docker": ["@cspell/dict-docker@1.1.14", "", {}, "sha512-p6Qz5mokvcosTpDlgSUREdSbZ10mBL3ndgCdEKMqjCSZJFdfxRdNdjrGER3lQ6LMq5jGr1r7nGXA0gvUJK80nw=="], - "@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-beta.53", "http://localhost:4873/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.53.tgz", {}, "sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ=="], + "@cspell/dict-dotnet": ["@cspell/dict-dotnet@5.0.9", "", {}, "sha512-JGD6RJW5sHtO5lfiJl11a5DpPN6eKSz5M1YBa1I76j4dDOIqgZB6rQexlDlK1DH9B06X4GdDQwdBfnpAB0r2uQ=="], - "@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@10.29.0", "http://localhost:4873/@sentry-internal/browser-utils/-/browser-utils-10.29.0.tgz", { "dependencies": { "@sentry/core": "10.29.0" } }, "sha512-M3kycMY6f3KY9a8jDYac+yG0E3ZgWVWSxlOEC5MhYyX+g7mqxkwrb3LFQyuxSm/m+CCgMTCaPOOaB2twXP6EQg=="], + "@cspell/dict-elixir": ["@cspell/dict-elixir@4.0.7", "", {}, "sha512-MAUqlMw73mgtSdxvbAvyRlvc3bYnrDqXQrx5K9SwW8F7fRYf9V4vWYFULh+UWwwkqkhX9w03ZqFYRTdkFku6uA=="], - "@sentry-internal/feedback": ["@sentry-internal/feedback@10.29.0", "http://localhost:4873/@sentry-internal/feedback/-/feedback-10.29.0.tgz", { "dependencies": { "@sentry/core": "10.29.0" } }, "sha512-Y7IRsNeS99cEONu1mZWZc3HvbjNnu59Hgymm0swFFKbdgbCgdT6l85kn2oLsuq4Ew8Dw/pL/Sgpwsl9UgYFpUg=="], + "@cspell/dict-en-common-misspellings": ["@cspell/dict-en-common-misspellings@2.0.11", "", {}, "sha512-xFQjeg0wFHh9sFhshpJ+5BzWR1m9Vu8pD0CGPkwZLK9oii8AD8RXNchabLKy/O5VTLwyqPOi9qpyp1cxm3US4Q=="], - "@sentry-internal/replay": ["@sentry-internal/replay@10.29.0", "http://localhost:4873/@sentry-internal/replay/-/replay-10.29.0.tgz", { "dependencies": { "@sentry-internal/browser-utils": "10.29.0", "@sentry/core": "10.29.0" } }, "sha512-45NVw9PwB9TQ8z+xJ6G6Za+wmQ1RTA35heBSzR6U4bknj8LmA04k2iwnobvxCBEQXeLfcJEO1vFgagMoqMZMBw=="], + "@cspell/dict-en-gb-mit": ["@cspell/dict-en-gb-mit@3.0.7", "", {}, "sha512-fdZbu4jbkzjjTO0jPBGINwQwzNFGapMnhH9D4mDa4UzGGyQFVRx6n/FFwxnfs7CXbuCV6UFSwjHZEAB8pfWn0A=="], - "@sentry-internal/replay-canvas": ["@sentry-internal/replay-canvas@10.29.0", "http://localhost:4873/@sentry-internal/replay-canvas/-/replay-canvas-10.29.0.tgz", { "dependencies": { "@sentry-internal/replay": "10.29.0", "@sentry/core": "10.29.0" } }, "sha512-typY4JrpAQQGPuSyd/BD8+nNCbvTV2UVvKzr+iKgI0m1qc4Dz8tHZ4Nfais2Z8eYn/pL1kqVQN5ERTmJoYFdIw=="], + "@cspell/dict-en_us": ["@cspell/dict-en_us@4.4.9", "", {}, "sha512-5gjqpUwhE+qP9A9wxD1+MGGJ3DNqTgSpiOsS10cGJfV4p/Z194XkDUZrUrJsnJA/3fsCZHAzcNWh8m0bw1v++A=="], - "@sentry/browser": ["@sentry/browser@10.29.0", "http://localhost:4873/@sentry/browser/-/browser-10.29.0.tgz", { "dependencies": { "@sentry-internal/browser-utils": "10.29.0", "@sentry-internal/feedback": "10.29.0", "@sentry-internal/replay": "10.29.0", "@sentry-internal/replay-canvas": "10.29.0", "@sentry/core": "10.29.0" } }, "sha512-XdbyIR6F4qoR9Z1JCWTgunVcTJjS9p2Th+v4wYs4ME+ZdLC4tuKKmRgYg3YdSIWCn1CBfIgdI6wqETSf7H6Njw=="], + "@cspell/dict-filetypes": ["@cspell/dict-filetypes@3.0.12", "", {}, "sha512-+ds5wgNdlUxuJvhg8A1TjuSpalDFGCh7SkANCWvIplg6QZPXL4j83lqxP7PgjHpx7PsBUS7vw0aiHPjZy9BItw=="], - "@sentry/core": ["@sentry/core@10.29.0", "http://localhost:4873/@sentry/core/-/core-10.29.0.tgz", {}, "sha512-olQ2DU9dA/Bwsz3PtA9KNXRMqBWRQSkPw+MxwWEoU1K1qtiM9L0j6lbEFb5iSY3d7WYD5MB+1d5COugjSBrHtw=="], + "@cspell/dict-flutter": ["@cspell/dict-flutter@1.1.0", "", {}, "sha512-3zDeS7zc2p8tr9YH9tfbOEYfopKY/srNsAa+kE3rfBTtQERAZeOhe5yxrnTPoufctXLyuUtcGMUTpxr3dO0iaA=="], - "@sindresorhus/base62": ["@sindresorhus/base62@1.0.0", "http://localhost:4873/@sindresorhus/base62/-/base62-1.0.0.tgz", {}, "sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA=="], + "@cspell/dict-fonts": ["@cspell/dict-fonts@4.0.4", "", {}, "sha512-cHFho4hjojBcHl6qxidl9CvUb492IuSk7xIf2G2wJzcHwGaCFa2o3gRcxmIg1j62guetAeDDFELizDaJlVRIOg=="], - "@standard-schema/spec": ["@standard-schema/spec@1.0.0", "http://localhost:4873/@standard-schema/spec/-/spec-1.0.0.tgz", {}, "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA=="], + "@cspell/dict-fr-fr": ["@cspell/dict-fr-fr@2.3.0", "", {}, "sha512-OsUgonI5aWV8i+DmOl8KO0fqFLZFZIAvFaCysXROeYoSfumdiqzmBrgv6UNOIhYMIBfs2Os3UsM5E69sLpoY8g=="], - "@stylistic/stylelint-plugin": ["@stylistic/stylelint-plugin@3.1.3", "http://localhost:4873/@stylistic/stylelint-plugin/-/stylelint-plugin-3.1.3.tgz", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1", "@csstools/media-query-list-parser": "^3.0.1", "is-plain-object": "^5.0.0", "postcss": "^8.4.41", "postcss-selector-parser": "^6.1.2", "postcss-value-parser": "^4.2.0", "style-search": "^0.1.0" }, "peerDependencies": { "stylelint": "^16.8.0" } }, "sha512-85fsmzgsIVmyG3/GFrjuYj6Cz8rAM7IZiPiXCMiSMfoDOC1lOrzrXPDk24WqviAghnPqGpx8b0caK2PuewWGFg=="], + "@cspell/dict-fsharp": ["@cspell/dict-fsharp@1.1.0", "", {}, "sha512-oguWmHhGzgbgbEIBKtgKPrFSVAFtvGHaQS0oj+vacZqMObwkapcTGu7iwf4V3Bc2T3caf0QE6f6rQfIJFIAVsw=="], - "@tybys/wasm-util": ["@tybys/wasm-util@0.10.1", "http://localhost:4873/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg=="], + "@cspell/dict-fullstack": ["@cspell/dict-fullstack@3.2.6", "", {}, "sha512-cSaq9rz5RIU9j+0jcF2vnKPTQjxGXclntmoNp4XB7yFX2621PxJcekGjwf/lN5heJwVxGLL9toR0CBlGKwQBgA=="], - "@types/debug": ["@types/debug@4.1.12", "http://localhost:4873/@types/debug/-/debug-4.1.12.tgz", { "dependencies": { "@types/ms": "*" } }, "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ=="], + "@cspell/dict-gaming-terms": ["@cspell/dict-gaming-terms@1.1.1", "", {}, "sha512-tb8GFxjTLDQstkJcJ90lDqF4rKKlMUKs5/ewePN9P+PYRSehqDpLI5S5meOfPit8LGszeOrjUdBQ4zXo7NpMyQ=="], - "@types/eslint__js": ["@types/eslint__js@9.14.0", "http://localhost:4873/@types/eslint__js/-/eslint__js-9.14.0.tgz", { "dependencies": { "@eslint/js": "*" } }, "sha512-s0jepCjOJWB/GKcuba4jISaVpBudw3ClXJ3fUK4tugChUMQsp6kSwuA8Dcx6wFd/JsJqcY8n4rEpa5RTHs5ypA=="], + "@cspell/dict-git": ["@cspell/dict-git@3.0.5", "", {}, "sha512-I7l86J2nOcpBY0OcwXLTGMbcXbEE7nxZme9DmYKrNgmt35fcLu+WKaiXW7P29V+lIXjJo/wKrEDY+wUEwVuABQ=="], - "@types/estree": ["@types/estree@1.0.8", "http://localhost:4873/@types/estree/-/estree-1.0.8.tgz", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], + "@cspell/dict-golang": ["@cspell/dict-golang@6.0.21", "", {}, "sha512-D3wG1MWhFx54ySFJ00CS1MVjR4UiBVsOWGIjJ5Av+HamnguqEshxbF9mvy+BX0KqzdLVzwFkoLBs8QeOID56HA=="], - "@types/json-schema": ["@types/json-schema@7.0.15", "http://localhost:4873/@types/json-schema/-/json-schema-7.0.15.tgz", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], + "@cspell/dict-google": ["@cspell/dict-google@1.0.8", "", {}, "sha512-BnMHgcEeaLyloPmBs8phCqprI+4r2Jb8rni011A8hE+7FNk7FmLE3kiwxLFrcZnnb7eqM0agW4zUaNoB0P+z8A=="], - "@types/mdast": ["@types/mdast@4.0.4", "http://localhost:4873/@types/mdast/-/mdast-4.0.4.tgz", { "dependencies": { "@types/unist": "*" } }, "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA=="], + "@cspell/dict-haskell": ["@cspell/dict-haskell@4.0.5", "", {}, "sha512-s4BG/4tlj2pPM9Ha7IZYMhUujXDnI0Eq1+38UTTCpatYLbQqDwRFf2KNPLRqkroU+a44yTUAe0rkkKbwy4yRtQ=="], - "@types/minimatch": ["@types/minimatch@3.0.5", "http://localhost:4873/@types/minimatch/-/minimatch-3.0.5.tgz", {}, "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="], + "@cspell/dict-html": ["@cspell/dict-html@4.0.11", "", {}, "sha512-QR3b/PB972SRQ2xICR1Nw/M44IJ6rjypwzA4jn+GH8ydjAX9acFNfc+hLZVyNe0FqsE90Gw3evLCOIF0vy1vQw=="], - "@types/ms": ["@types/ms@2.1.0", "http://localhost:4873/@types/ms/-/ms-2.1.0.tgz", {}, "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA=="], + "@cspell/dict-html-symbol-entities": ["@cspell/dict-html-symbol-entities@4.0.3", "", {}, "sha512-aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A=="], - "@types/node": ["@types/node@24.10.1", "http://localhost:4873/@types/node/-/node-24.10.1.tgz", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ=="], + "@cspell/dict-java": ["@cspell/dict-java@5.0.11", "", {}, "sha512-T4t/1JqeH33Raa/QK/eQe26FE17eUCtWu+JsYcTLkQTci2dk1DfcIKo8YVHvZXBnuM43ATns9Xs0s+AlqDeH7w=="], - "@types/trusted-types": ["@types/trusted-types@2.0.7", "http://localhost:4873/@types/trusted-types/-/trusted-types-2.0.7.tgz", {}, "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="], + "@cspell/dict-julia": ["@cspell/dict-julia@1.1.0", "", {}, "sha512-CPUiesiXwy3HRoBR3joUseTZ9giFPCydSKu2rkh6I2nVjXnl5vFHzOMLXpbF4HQ1tH2CNfnDbUndxD+I+7eL9w=="], - "@types/unist": ["@types/unist@3.0.3", "http://localhost:4873/@types/unist/-/unist-3.0.3.tgz", {}, "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="], + "@cspell/dict-k8s": ["@cspell/dict-k8s@1.0.10", "", {}, "sha512-313haTrX9prep1yWO7N6Xw4D6tvUJ0Xsx+YhCP+5YrrcIKoEw5Rtlg8R4PPzLqe6zibw6aJ+Eqq+y76Vx5BZkw=="], - "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.48.1", "http://localhost:4873/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.1.tgz", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.48.1", "@typescript-eslint/type-utils": "8.48.1", "@typescript-eslint/utils": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.48.1", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA=="], + "@cspell/dict-kotlin": ["@cspell/dict-kotlin@1.1.0", "", {}, "sha512-vySaVw6atY7LdwvstQowSbdxjXG6jDhjkWVWSjg1XsUckyzH1JRHXe9VahZz1i7dpoFEUOWQrhIe5B9482UyJQ=="], - "@typescript-eslint/parser": ["@typescript-eslint/parser@8.48.1", "http://localhost:4873/@typescript-eslint/parser/-/parser-8.48.1.tgz", { "dependencies": { "@typescript-eslint/scope-manager": "8.48.1", "@typescript-eslint/types": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA=="], + "@cspell/dict-latex": ["@cspell/dict-latex@4.0.3", "", {}, "sha512-2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw=="], - "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.48.1", "http://localhost:4873/@typescript-eslint/project-service/-/project-service-8.48.1.tgz", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.48.1", "@typescript-eslint/types": "^8.48.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w=="], + "@cspell/dict-lorem-ipsum": ["@cspell/dict-lorem-ipsum@4.0.4", "", {}, "sha512-+4f7vtY4dp2b9N5fn0za/UR0kwFq2zDtA62JCbWHbpjvO9wukkbl4rZg4YudHbBgkl73HRnXFgCiwNhdIA1JPw=="], - "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.47.0", "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "@typescript-eslint/visitor-keys": "8.47.0" } }, "sha512-a0TTJk4HXMkfpFkL9/WaGTNuv7JWfFTQFJd6zS9dVAjKsojmv9HT55xzbEpnZoY+VUb+YXLMp+ihMLz/UlZfDg=="], + "@cspell/dict-lua": ["@cspell/dict-lua@4.0.7", "", {}, "sha512-Wbr7YSQw+cLHhTYTKV6cAljgMgcY+EUAxVIZW3ljKswEe4OLxnVJ7lPqZF5JKjlXdgCjbPSimsHqyAbC5pQN/Q=="], - "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.48.1", "http://localhost:4873/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.1.tgz", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw=="], + "@cspell/dict-makefile": ["@cspell/dict-makefile@1.0.4", "", {}, "sha512-E4hG/c0ekPqUBvlkrVvzSoAA+SsDA9bLi4xSV3AXHTVru7Y2bVVGMPtpfF+fI3zTkww/jwinprcU1LSohI3ylw=="], - "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.48.1", "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-8.48.1.tgz", { "dependencies": { "@typescript-eslint/types": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1", "@typescript-eslint/utils": "8.48.1", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg=="], + "@cspell/dict-markdown": ["@cspell/dict-markdown@2.0.10", "", { "peerDependencies": { "@cspell/dict-css": "^4.0.17", "@cspell/dict-html": "^4.0.11", "@cspell/dict-html-symbol-entities": "^4.0.3", "@cspell/dict-typescript": "^3.2.1" } }, "sha512-vtVa6L/84F9sTjclTYDkWJF/Vx2c5xzxBKkQp+CEFlxOF2SYgm+RSoEvAvg5vj4N5kuqR4350ZlY3zl2eA3MXw=="], - "@typescript-eslint/types": ["@typescript-eslint/types@8.47.0", "http://localhost:4873/@typescript-eslint/types/-/types-8.47.0.tgz", {}, "sha512-nHAE6bMKsizhA2uuYZbEbmp5z2UpffNrPEqiKIeN7VsV6UY/roxanWfoRrf6x/k9+Obf+GQdkm0nPU+vnMXo9A=="], + "@cspell/dict-monkeyc": ["@cspell/dict-monkeyc@1.0.10", "", {}, "sha512-7RTGyKsTIIVqzbvOtAu6Z/lwwxjGRtY5RkKPlXKHEoEAgIXwfDxb5EkVwzGQwQr8hF/D3HrdYbRT8MFBfsueZw=="], - "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.48.1", "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.1.tgz", { "dependencies": { "@typescript-eslint/project-service": "8.48.1", "@typescript-eslint/tsconfig-utils": "8.48.1", "@typescript-eslint/types": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1", "debug": "^4.3.4", "minimatch": "^9.0.4", "semver": "^7.6.0", "tinyglobby": "^0.2.15", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg=="], + "@cspell/dict-node": ["@cspell/dict-node@5.0.7", "", {}, "sha512-ZaPpBsHGQCqUyFPKLyCNUH2qzolDRm1/901IO8e7btk7bEDF56DN82VD43gPvD4HWz3yLs/WkcLa01KYAJpnOw=="], - "@typescript-eslint/utils": ["@typescript-eslint/utils@8.47.0", "http://localhost:4873/@typescript-eslint/utils/-/utils-8.47.0.tgz", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.47.0", "@typescript-eslint/types": "8.47.0", "@typescript-eslint/typescript-estree": "8.47.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-g7XrNf25iL4TJOiPqatNuaChyqt49a/onq5YsJ9+hXeugK+41LVg7AxikMfM02PC6jbNtZLCJj6AUcQXJS/jGQ=="], + "@cspell/dict-npm": ["@cspell/dict-npm@5.2.4", "", {}, "sha512-/hK5ii9OzSOQkmTjkzJlEYWz+PBnz2hRq5Xu7d4aDURaynO9xMAcK31JJlKNQulBkVbQHxFZLUrzjdzdAr/Opw=="], - "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.48.1", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.1.tgz", { "dependencies": { "@typescript-eslint/types": "8.48.1", "eslint-visitor-keys": "^4.2.1" } }, "sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q=="], + "@cspell/dict-php": ["@cspell/dict-php@4.0.14", "", {}, "sha512-7zur8pyncYZglxNmqsRycOZ6inpDoVd4yFfz1pQRe5xaRWMiK3Km4n0/X/1YMWhh3e3Sl/fQg5Axb2hlN68t1g=="], - "@typescript/lib-decorators": ["@better-typescript-lib/decorators@2.12.0", "http://localhost:4873/@better-typescript-lib/decorators/-/decorators-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-/m9Q5Xk66ThUJidTsxmXJH0+49iCLl5PFmue0HkNSGrcPU96oaoKNY5sH1AslwA/OWVvBg3hE58ZwSGm6TQFuQ=="], + "@cspell/dict-powershell": ["@cspell/dict-powershell@5.0.14", "", {}, "sha512-ktjjvtkIUIYmj/SoGBYbr3/+CsRGNXGpvVANrY0wlm/IoGlGywhoTUDYN0IsGwI2b8Vktx3DZmQkfb3Wo38jBA=="], - "@typescript/lib-dom": ["@better-typescript-lib/dom@2.12.0", "http://localhost:4873/@better-typescript-lib/dom/-/dom-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-via7EW6RKBeUcE9JBS3lNoQeCfghGZoRhBMXOsgOyvBskTdP45MUi6hM7RZMYbTcOh2tzg3j70uhe+1MajCJXw=="], + "@cspell/dict-public-licenses": ["@cspell/dict-public-licenses@2.0.13", "", {}, "sha512-1Wdp/XH1ieim7CadXYE7YLnUlW0pULEjVl9WEeziZw3EKCAw8ZI8Ih44m4bEa5VNBLnuP5TfqC4iDautAleQzQ=="], - "@typescript/lib-es2015": ["@better-typescript-lib/es2015@2.12.0", "http://localhost:4873/@better-typescript-lib/es2015/-/es2015-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-woXTAKb6yUSdy8hm2NQPnvvE0PVQeFLp1rfHrwHlFF/5vG9EjltI9+jdaSN2jtS5sW8SeSQiKCtIZ/AYK/YxQA=="], + "@cspell/dict-python": ["@cspell/dict-python@4.2.18", "", { "dependencies": { "@cspell/dict-data-science": "^2.0.8" } }, "sha512-hYczHVqZBsck7DzO5LumBLJM119a3F17aj8a7lApnPIS7cmEwnPc2eACNscAHDk7qAo2127oI7axUoFMe9/g1g=="], - "@typescript/lib-es2016": ["@better-typescript-lib/es2016@2.12.0", "http://localhost:4873/@better-typescript-lib/es2016/-/es2016-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-8V5jFi+qpJbop+xdSEX7PtA6KxUzNXxoN3Lt5MrUB3TLpb/vh6uzphQmYULnkcn1ScdXTzbpHwG4rdNFY36wTA=="], + "@cspell/dict-r": ["@cspell/dict-r@2.1.0", "", {}, "sha512-k2512wgGG0lTpTYH9w5Wwco+lAMf3Vz7mhqV8+OnalIE7muA0RSuD9tWBjiqLcX8zPvEJr4LdgxVju8Gk3OKyA=="], - "@typescript/lib-es2017": ["@better-typescript-lib/es2017@2.12.0", "http://localhost:4873/@better-typescript-lib/es2017/-/es2017-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-iCUQOIylZwFt+NrkH0LTYzc+LmqRpLkDGLR7zvZs4PlgjONjyYcbyYar2LVbX3XcBsnx7vVW7andI4+aXb+AZQ=="], + "@cspell/dict-ruby": ["@cspell/dict-ruby@5.0.8", "", {}, "sha512-ixuTneU0aH1cPQRbWJvtvOntMFfeQR2KxT8LuAv5jBKqQWIHSxzGlp+zX3SVyoeR0kOWiu64/O5Yn836A5yMcQ=="], - "@typescript/lib-es2018": ["@better-typescript-lib/es2018@2.12.0", "http://localhost:4873/@better-typescript-lib/es2018/-/es2018-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-mch+ACDNKYI8rKBM2AeebejyoI0cK3lpmc7m1yMoPzDOronjGk5sLYryCheLWXeMhUguO13tN5RnlJDyhV1E1A=="], + "@cspell/dict-rust": ["@cspell/dict-rust@4.0.11", "", {}, "sha512-OGWDEEzm8HlkSmtD8fV3pEcO2XBpzG2XYjgMCJCRwb2gRKvR+XIm6Dlhs04N/K2kU+iH8bvrqNpM8fS/BFl0uw=="], - "@typescript/lib-es2019": ["@better-typescript-lib/es2019@2.12.0", "http://localhost:4873/@better-typescript-lib/es2019/-/es2019-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-x/+BqehInEYoILfItuHXJdX6hLEOHAUhNlN/x99uN48o6HCKi4teoOaUWlxclcPeS2LmlE4RLzXUylEvd+DPtQ=="], + "@cspell/dict-scala": ["@cspell/dict-scala@5.0.7", "", {}, "sha512-yatpSDW/GwulzO3t7hB5peoWwzo+Y3qTc0pO24Jf6f88jsEeKmDeKkfgPbYuCgbE4jisGR4vs4+jfQZDIYmXPA=="], - "@typescript/lib-es2020": ["@better-typescript-lib/es2020@2.12.0", "http://localhost:4873/@better-typescript-lib/es2020/-/es2020-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-Kc5OPXfLwYnkS+Oa4h8+iPYNdktxMvOum/cW/5WHU4UTtgmShceahbc/9dDsp04fvgTGiT47KHEMuxQYdbx/mQ=="], + "@cspell/dict-shell": ["@cspell/dict-shell@1.1.0", "", {}, "sha512-D/xHXX7T37BJxNRf5JJHsvziFDvh23IF/KvkZXNSh8VqcRdod3BAz9VGHZf6VDqcZXr1VRqIYR3mQ8DSvs3AVQ=="], - "@typescript/lib-es2021": ["@better-typescript-lib/es2021@2.12.0", "http://localhost:4873/@better-typescript-lib/es2021/-/es2021-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-oc9FxQuHPLYoiNPo0oAAm5PRQEuoLJ39BI1e2jaPLfC1zdc5QbMk517NfKmNb4enlUGKoOhC3uSrpS/OjkSPWw=="], + "@cspell/dict-software-terms": ["@cspell/dict-software-terms@5.0.10", "", {}, "sha512-2nTcVKTYJKU5GzeviXGPtRRC9d23MtfpD4PM4pLSzl29/5nx5MxOUHkzPuJdyaw9mXIz8Rm9IlGeVAvQoTI8aw=="], - "@typescript/lib-es2022": ["@better-typescript-lib/es2022@2.12.0", "http://localhost:4873/@better-typescript-lib/es2022/-/es2022-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-MnqVGp9hmwnCDXv7O8V50rynt+4CU9fPTx2EJ39r0PibzW1dKT7bLdlFNS0+hDFLkJZlV2kgoctP3e5wEBLu7w=="], + "@cspell/dict-sql": ["@cspell/dict-sql@2.2.0", "", {}, "sha512-MUop+d1AHSzXpBvQgQkCiok8Ejzb+nrzyG16E8TvKL2MQeDwnIvMe3bv90eukP6E1HWb+V/MA/4pnq0pcJWKqQ=="], - "@typescript/lib-es2023": ["@better-typescript-lib/es2023@2.12.0", "http://localhost:4873/@better-typescript-lib/es2023/-/es2023-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-rB7pbtaxNy9ReKV22lfXfXCfQFCdtxbas+oxcjiTNRYkCcSgc5B3nA3v+NQcbNk1MukhnQca7bmw2tqvKaV8OQ=="], + "@cspell/dict-svelte": ["@cspell/dict-svelte@1.0.6", "", {}, "sha512-8LAJHSBdwHCoKCSy72PXXzz7ulGROD0rP1CQ0StOqXOOlTUeSFaJJlxNYjlONgd2c62XBQiN2wgLhtPN+1Zv7Q=="], - "@typescript/lib-es2024": ["@better-typescript-lib/es2024@2.12.0", "http://localhost:4873/@better-typescript-lib/es2024/-/es2024-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-zNCgAaV0hFW1SNeEfvjO7EX35w+Ja16PRP4TFL7ZyENcs93mghQEH9l437Pixya+sG3a2m7GbkFjzv+Z6Bkf5w=="], + "@cspell/dict-swift": ["@cspell/dict-swift@2.0.5", "", {}, "sha512-3lGzDCwUmnrfckv3Q4eVSW3sK3cHqqHlPprFJZD4nAqt23ot7fic5ALR7J4joHpvDz36nHX34TgcbZNNZOC/JA=="], - "@typescript/lib-es5": ["@better-typescript-lib/es5@2.12.0", "http://localhost:4873/@better-typescript-lib/es5/-/es5-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-TueHgCcwn6QX8MFzC/kx6p7Y9AJUDIwsRz4klOSxGU3l0oUnqSv0uYOrZuLOldeVuVHHfKHKP11I5ELVmWQSNg=="], + "@cspell/dict-terraform": ["@cspell/dict-terraform@1.1.1", "", {}, "sha512-07KFDwCU7EnKl4hOZLsLKlj6Zceq/IsQ3LRWUyIjvGFfZHdoGtFdCp3ZPVgnFaAcd/DKv+WVkrOzUBSYqHopQQ=="], - "@typescript/lib-es6": ["@better-typescript-lib/es6@2.12.0", "http://localhost:4873/@better-typescript-lib/es6/-/es6-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-zBPoQsg5a1pc2Um5udWadmJRPtH3wR6Z7PMk4q1vQnAn5N3RyzKcvFvNqiQWQXIl0ptSaKN4IVxMzJ+OKi9dUg=="], + "@cspell/dict-typescript": ["@cspell/dict-typescript@3.2.1", "", {}, "sha512-jdnKg4rBl75GUBTsUD6nTJl7FGvaIt5wWcWP7TZSC3rV1LfkwvbUiY3PiGpfJlAIdnLYSeFWIpYU9gyVgz206w=="], - "@typescript/lib-esnext": ["@better-typescript-lib/esnext@2.12.0", "http://localhost:4873/@better-typescript-lib/esnext/-/esnext-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-fOBovlfESsE6bHG8ITAvW3o5qQztryc+8onzRRpDS8gZCOjWX7eNoeM8FlMHplEgWfL0FknKh/o1y7xDXRYhLA=="], + "@cspell/dict-vue": ["@cspell/dict-vue@3.0.4", "", {}, "sha512-0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w=="], - "@typescript/lib-scripthost": ["@better-typescript-lib/scripthost@2.12.0", "http://localhost:4873/@better-typescript-lib/scripthost/-/scripthost-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-B5Fz5HARk9G7ntuRawvT+VMwdhN/+OUIuBRW+7IBq3Jk8lzwu53aLSmKK38suGpPikfVhaC1EmA8nPcgHFMlCQ=="], + "@cspell/dynamic-import": ["@cspell/dynamic-import@9.0.2", "", { "dependencies": { "@cspell/url": "9.0.2", "import-meta-resolve": "^4.1.0" } }, "sha512-KhcoNUj6Ij2P8fbRC7QOn3jzbTZFxoQpFGanGU9f+4DfZBH86PCADyKYH+ZpJPlYgrI+Jh4wKzF5y5YKKNrdrw=="], - "@typescript/lib-webworker": ["@better-typescript-lib/webworker@2.12.0", "http://localhost:4873/@better-typescript-lib/webworker/-/webworker-2.12.0.tgz", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-YktWJCUYdrRORhd4NgnPZCEzElDglPZzVnfkxGNmEhPpFE1W6ThKDQqkvMZapf3T+0xGeDqJx9V4xhFNnv56Xw=="], + "@cspell/filetypes": ["@cspell/filetypes@9.0.2", "", {}, "sha512-8KEIgptldoZT3pM+yhYV8nXq5T9Sz0YvZIqwDGEqKJ6j447K+I91QWS7RQDrvHkElMi/2g/h08Efg0RIT+QEaQ=="], - "@xml-tools/parser": ["@xml-tools/parser@1.0.11", "http://localhost:4873/@xml-tools/parser/-/parser-1.0.11.tgz", { "dependencies": { "chevrotain": "7.1.1" } }, "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA=="], + "@cspell/strong-weak-map": ["@cspell/strong-weak-map@9.0.2", "", {}, "sha512-SHTPUcu2e6aYxI5sr1L/9pzz68CArV6WzMvAio//5LbtKI6NtDp/7tARBwLi1G3A3C0289zDHbDKm3wc1lRNhQ=="], - "a11y-dialog": ["a11y-dialog@8.1.4", "http://localhost:4873/a11y-dialog/-/a11y-dialog-8.1.4.tgz", { "dependencies": { "focusable-selectors": "^0.8.0" } }, "sha512-CgaQfoTg9t+O8vArlNAYN7Gzv6h1bpWRqggzCtng6TQ2im6XCpUQI+GWlPvQdovQtwzJN6MydxipXKB8qP5Zxw=="], + "@cspell/url": ["@cspell/url@9.0.2", "", {}, "sha512-KwCDL0ejgwVSZB8KTp8FhDe42UOaebTVIMi3O5GcYHi9Cut8B5QU4tbQOFGXP6E4pjimeO9yIkr9Z34kTljj/g=="], - "acorn": ["acorn@8.15.0", "http://localhost:4873/acorn/-/acorn-8.15.0.tgz", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], + "@csstools/css-parser-algorithms": ["@csstools/css-parser-algorithms@3.0.4", "", { "peerDependencies": { "@csstools/css-tokenizer": "^3.0.3" } }, "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A=="], - "acorn-jsx": ["acorn-jsx@5.3.2", "http://localhost:4873/acorn-jsx/-/acorn-jsx-5.3.2.tgz", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], + "@csstools/css-tokenizer": ["@csstools/css-tokenizer@3.0.3", "", {}, "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw=="], - "ajv": ["ajv@6.12.6", "http://localhost:4873/ajv/-/ajv-6.12.6.tgz", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="], + "@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@4.0.2", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3" } }, "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A=="], - "ansi-regex": ["ansi-regex@5.0.1", "http://localhost:4873/ansi-regex/-/ansi-regex-5.0.1.tgz", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + "@csstools/selector-specificity": ["@csstools/selector-specificity@5.0.0", "", { "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw=="], - "ansi-styles": ["ansi-styles@4.3.0", "http://localhost:4873/ansi-styles/-/ansi-styles-4.3.0.tgz", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + "@dual-bundle/import-meta-resolve": ["@dual-bundle/import-meta-resolve@4.1.0", "", {}, "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg=="], - "are-docs-informative": ["are-docs-informative@0.0.2", "http://localhost:4873/are-docs-informative/-/are-docs-informative-0.0.2.tgz", {}, "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig=="], + "@effect/platform": ["@effect/platform@0.84.9", "", { "dependencies": { "find-my-way-ts": "^0.1.5", "msgpackr": "^1.11.4", "multipasta": "^0.2.5" }, "peerDependencies": { "effect": "^3.16.5" } }, "sha512-I1xX/dpFCyA9DlwD3kungWD0Pu7tnM2pxifUEz0U1N2GSMmdcC4EWIOsjnCaC+hd0WSIsVJVZZjGsDeQeX+r2g=="], - "argparse": ["argparse@2.0.1", "http://localhost:4873/argparse/-/argparse-2.0.1.tgz", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], + "@emnapi/core": ["@emnapi/core@1.4.3", "", { "dependencies": { "@emnapi/wasi-threads": "1.0.2", "tslib": "^2.4.0" } }, "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g=="], - "array-differ": ["array-differ@3.0.0", "http://localhost:4873/array-differ/-/array-differ-3.0.0.tgz", {}, "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg=="], + "@emnapi/runtime": ["@emnapi/runtime@1.4.3", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ=="], - "array-union": ["array-union@2.1.0", "http://localhost:4873/array-union/-/array-union-2.1.0.tgz", {}, "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="], + "@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.0.2", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA=="], - "arrify": ["arrify@2.0.1", "http://localhost:4873/arrify/-/arrify-2.0.1.tgz", {}, "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug=="], + "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.2", "", { "os": "aix", "cpu": "ppc64" }, "sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag=="], - "astral-regex": ["astral-regex@2.0.0", "http://localhost:4873/astral-regex/-/astral-regex-2.0.0.tgz", {}, "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="], + "@esbuild/android-arm": ["@esbuild/android-arm@0.25.2", "", { "os": "android", "cpu": "arm" }, "sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA=="], - "balanced-match": ["balanced-match@2.0.0", "http://localhost:4873/balanced-match/-/balanced-match-2.0.0.tgz", {}, "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA=="], + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.2", "", { "os": "android", "cpu": "arm64" }, "sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w=="], - "baseline-browser-mapping": ["baseline-browser-mapping@2.9.4", "http://localhost:4873/baseline-browser-mapping/-/baseline-browser-mapping-2.9.4.tgz", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-ZCQ9GEWl73BVm8bu5Fts8nt7MHdbt5vY9bP6WGnUh+r3l8M7CgfyTlwsgCbMC66BNxPr6Xoce3j66Ms5YUQTNA=="], + "@esbuild/android-x64": ["@esbuild/android-x64@0.25.2", "", { "os": "android", "cpu": "x64" }, "sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg=="], - "better-typescript-lib": ["better-typescript-lib@2.12.0", "http://localhost:4873/better-typescript-lib/-/better-typescript-lib-2.12.0.tgz", { "dependencies": { "@typescript/lib-decorators": "npm:@better-typescript-lib/decorators@2.12.0", "@typescript/lib-dom": "npm:@better-typescript-lib/dom@2.12.0", "@typescript/lib-es2015": "npm:@better-typescript-lib/es2015@2.12.0", "@typescript/lib-es2016": "npm:@better-typescript-lib/es2016@2.12.0", "@typescript/lib-es2017": "npm:@better-typescript-lib/es2017@2.12.0", "@typescript/lib-es2018": "npm:@better-typescript-lib/es2018@2.12.0", "@typescript/lib-es2019": "npm:@better-typescript-lib/es2019@2.12.0", "@typescript/lib-es2020": "npm:@better-typescript-lib/es2020@2.12.0", "@typescript/lib-es2021": "npm:@better-typescript-lib/es2021@2.12.0", "@typescript/lib-es2022": "npm:@better-typescript-lib/es2022@2.12.0", "@typescript/lib-es2023": "npm:@better-typescript-lib/es2023@2.12.0", "@typescript/lib-es2024": "npm:@better-typescript-lib/es2024@2.12.0", "@typescript/lib-es5": "npm:@better-typescript-lib/es5@2.12.0", "@typescript/lib-es6": "npm:@better-typescript-lib/es6@2.12.0", "@typescript/lib-esnext": "npm:@better-typescript-lib/esnext@2.12.0", "@typescript/lib-scripthost": "npm:@better-typescript-lib/scripthost@2.12.0", "@typescript/lib-webworker": "npm:@better-typescript-lib/webworker@2.12.0" }, "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-f7eO5Xs6Cczfx5eDRuDw/JYCrsdiC6gXdleB2KFZ5ZYgU/RRoev9swjt/eD0xo9PRDqNDwyjKx0n27CDHRZwvQ=="], + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA=="], - "binary-searching": ["binary-searching@2.0.5", "http://localhost:4873/binary-searching/-/binary-searching-2.0.5.tgz", {}, "sha512-v4N2l3RxL+m4zDxyxz3Ne2aTmiPn8ZUpKFpdPtO+ItW1NcTCXA7JeHG5GMBSvoKSkQZ9ycS+EouDVxYB9ufKWA=="], + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA=="], - "brace-expansion": ["brace-expansion@1.1.12", "http://localhost:4873/brace-expansion/-/brace-expansion-1.1.12.tgz", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w=="], - "braces": ["braces@3.0.3", "http://localhost:4873/braces/-/braces-3.0.3.tgz", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ=="], - "browserslist": ["browserslist@4.28.1", "http://localhost:4873/browserslist/-/browserslist-4.28.1.tgz", { "dependencies": { "baseline-browser-mapping": "^2.9.0", "caniuse-lite": "^1.0.30001759", "electron-to-chromium": "^1.5.263", "node-releases": "^2.0.27", "update-browserslist-db": "^1.2.0" }, "bin": { "browserslist": "cli.js" } }, "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA=="], + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.2", "", { "os": "linux", "cpu": "arm" }, "sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g=="], - "buffer-builder": ["buffer-builder@0.2.0", "http://localhost:4873/buffer-builder/-/buffer-builder-0.2.0.tgz", {}, "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg=="], + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g=="], - "builtin-modules": ["builtin-modules@3.3.0", "http://localhost:4873/builtin-modules/-/builtin-modules-3.3.0.tgz", {}, "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw=="], + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.2", "", { "os": "linux", "cpu": "ia32" }, "sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ=="], - "bytes": ["bytes@3.1.2", "http://localhost:4873/bytes/-/bytes-3.1.2.tgz", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="], + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.2", "", { "os": "linux", "cpu": "none" }, "sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w=="], - "cacheable": ["cacheable@2.2.0", "http://localhost:4873/cacheable/-/cacheable-2.2.0.tgz", { "dependencies": { "@cacheable/memory": "^2.0.5", "@cacheable/utils": "^2.3.0", "hookified": "^1.13.0", "keyv": "^5.5.4", "qified": "^0.5.2" } }, "sha512-LEJxRqfeomiiRd2t0uON6hxAtgOoWDfY3fugebbz+J3vDLO+SkdfFChQcOHTZhj9SYa9iwE9MGYNX72dKiOE4w=="], + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.2", "", { "os": "linux", "cpu": "none" }, "sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q=="], - "callsites": ["callsites@3.1.0", "http://localhost:4873/callsites/-/callsites-3.1.0.tgz", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="], + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g=="], - "caniuse-lite": ["caniuse-lite@1.0.30001759", "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001759.tgz", {}, "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw=="], + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.2", "", { "os": "linux", "cpu": "none" }, "sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw=="], - "chalk": ["chalk@4.1.2", "http://localhost:4873/chalk/-/chalk-4.1.2.tgz", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q=="], - "change-case": ["change-case@5.4.4", "http://localhost:4873/change-case/-/change-case-5.4.4.tgz", {}, "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w=="], + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.2", "", { "os": "linux", "cpu": "x64" }, "sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg=="], - "character-entities": ["character-entities@2.0.2", "http://localhost:4873/character-entities/-/character-entities-2.0.2.tgz", {}, "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ=="], + "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.2", "", { "os": "none", "cpu": "arm64" }, "sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw=="], - "chevrotain": ["chevrotain@7.1.1", "http://localhost:4873/chevrotain/-/chevrotain-7.1.1.tgz", { "dependencies": { "regexp-to-ast": "0.5.0" } }, "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw=="], + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.2", "", { "os": "none", "cpu": "x64" }, "sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg=="], - "chokidar": ["chokidar@4.0.3", "http://localhost:4873/chokidar/-/chokidar-4.0.3.tgz", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="], + "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.2", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg=="], - "ci-info": ["ci-info@4.3.1", "http://localhost:4873/ci-info/-/ci-info-4.3.1.tgz", {}, "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA=="], + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw=="], - "clean-regexp": ["clean-regexp@1.0.0", "http://localhost:4873/clean-regexp/-/clean-regexp-1.0.0.tgz", { "dependencies": { "escape-string-regexp": "^1.0.5" } }, "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw=="], + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.2", "", { "os": "sunos", "cpu": "x64" }, "sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA=="], - "cliui": ["cliui@8.0.1", "http://localhost:4873/cliui/-/cliui-8.0.1.tgz", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="], + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q=="], - "color-convert": ["color-convert@2.0.1", "http://localhost:4873/color-convert/-/color-convert-2.0.1.tgz", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg=="], - "color-name": ["color-name@1.1.4", "http://localhost:4873/color-name/-/color-name-1.1.4.tgz", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.2", "", { "os": "win32", "cpu": "x64" }, "sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA=="], - "colord": ["colord@2.9.3", "http://localhost:4873/colord/-/colord-2.9.3.tgz", {}, "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="], + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], - "colorjs.io": ["colorjs.io@0.5.2", "http://localhost:4873/colorjs.io/-/colorjs.io-0.5.2.tgz", {}, "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw=="], + "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], - "comment-parser": ["comment-parser@1.4.1", "http://localhost:4873/comment-parser/-/comment-parser-1.4.1.tgz", {}, "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg=="], + "@eslint/config-array": ["@eslint/config-array@0.20.0", "", { "dependencies": { "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ=="], - "concat-map": ["concat-map@0.0.1", "http://localhost:4873/concat-map/-/concat-map-0.0.1.tgz", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], + "@eslint/config-helpers": ["@eslint/config-helpers@0.2.1", "", {}, "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw=="], - "core-js-compat": ["core-js-compat@3.47.0", "http://localhost:4873/core-js-compat/-/core-js-compat-3.47.0.tgz", { "dependencies": { "browserslist": "^4.28.0" } }, "sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ=="], + "@eslint/core": ["@eslint/core@0.14.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg=="], - "core-util-is": ["core-util-is@1.0.3", "http://localhost:4873/core-util-is/-/core-util-is-1.0.3.tgz", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="], + "@eslint/eslintrc": ["@eslint/eslintrc@3.3.1", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ=="], - "cosmiconfig": ["cosmiconfig@9.0.0", "http://localhost:4873/cosmiconfig/-/cosmiconfig-9.0.0.tgz", { "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg=="], + "@eslint/js": ["@eslint/js@9.28.0", "", {}, "sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg=="], - "cross-spawn": ["cross-spawn@7.0.6", "http://localhost:4873/cross-spawn/-/cross-spawn-7.0.6.tgz", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], + "@eslint/object-schema": ["@eslint/object-schema@2.1.6", "", {}, "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="], - "css-functions-list": ["css-functions-list@3.2.3", "http://localhost:4873/css-functions-list/-/css-functions-list-3.2.3.tgz", {}, "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA=="], + "@eslint/plugin-kit": ["@eslint/plugin-kit@0.3.1", "", { "dependencies": { "@eslint/core": "^0.14.0", "levn": "^0.4.1" } }, "sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w=="], - "css-tokenize": ["css-tokenize@1.0.1", "http://localhost:4873/css-tokenize/-/css-tokenize-1.0.1.tgz", { "dependencies": { "inherits": "^2.0.1", "readable-stream": "^1.0.33" } }, "sha512-gLmmbJdwH9HLY4bcA17lnZ8GgPwEXRbvxBJGHnkiB6gLhRpTzjkjtMIvz7YORGW/Ptv2oMk8b5g+u7mRD6Dd7A=="], + "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], - "css-tree": ["css-tree@3.1.0", "http://localhost:4873/css-tree/-/css-tree-3.1.0.tgz", { "dependencies": { "mdn-data": "2.12.2", "source-map-js": "^1.0.1" } }, "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w=="], + "@humanfs/node": ["@humanfs/node@0.16.6", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" } }, "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="], - "cssesc": ["cssesc@3.0.0", "http://localhost:4873/cssesc/-/cssesc-3.0.0.tgz", { "bin": { "cssesc": "bin/cssesc" } }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="], + "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], - "debug": ["debug@4.4.3", "http://localhost:4873/debug/-/debug-4.4.3.tgz", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.2", "", {}, "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ=="], - "decode-named-character-reference": ["decode-named-character-reference@1.2.0", "http://localhost:4873/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", { "dependencies": { "character-entities": "^2.0.0" } }, "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q=="], + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.8", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="], - "deep-is": ["deep-is@0.1.4", "http://localhost:4873/deep-is/-/deep-is-0.1.4.tgz", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="], + "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], - "deepmerge-ts": ["deepmerge-ts@7.1.5", "http://localhost:4873/deepmerge-ts/-/deepmerge-ts-7.1.5.tgz", {}, "sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw=="], + "@jridgewell/set-array": ["@jridgewell/set-array@1.2.1", "", {}, "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="], - "dequal": ["dequal@2.0.3", "http://localhost:4873/dequal/-/dequal-2.0.3.tgz", {}, "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="], + "@jridgewell/source-map": ["@jridgewell/source-map@0.3.6", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ=="], - "detect-libc": ["detect-libc@2.1.2", "http://localhost:4873/detect-libc/-/detect-libc-2.1.2.tgz", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="], + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.0", "", {}, "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="], - "devlop": ["devlop@1.1.0", "http://localhost:4873/devlop/-/devlop-1.1.0.tgz", { "dependencies": { "dequal": "^2.0.0" } }, "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA=="], + "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.25", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="], - "dir-glob": ["dir-glob@3.0.1", "http://localhost:4873/dir-glob/-/dir-glob-3.0.1.tgz", { "dependencies": { "path-type": "^4.0.0" } }, "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="], + "@keyv/serialize": ["@keyv/serialize@1.0.3", "", { "dependencies": { "buffer": "^6.0.3" } }, "sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g=="], - "doiuse": ["doiuse@6.0.5", "http://localhost:4873/doiuse/-/doiuse-6.0.5.tgz", { "dependencies": { "browserslist": "^4.24.0", "caniuse-lite": "^1.0.30001669", "css-tokenize": "^1.0.1", "duplexify": "^4.1.3", "multimatch": "^5.0.0", "postcss": "^8.4.47", "source-map": "^0.7.4", "yargs": "^17.7.2" }, "bin": { "doiuse": "bin/cli.js" } }, "sha512-ljuf9ndGqKST0GlPAYyCg04hbQAeR1xIIWVDjQaDDkoTY/Y1Vb+8FNoy6NuVuJIEEKe/nKUH8NRWjG7JJxZ9Eg=="], + "@mobily/ts-belt": ["@mobily/ts-belt@4.0.0-rc.5", "", {}, "sha512-HLWJ8yKrfwdMzCvckRunrAL8Z+K5q31FdY6JzhkBp8o6uQsVuzf26KFyno1s6n6GB78OJEsjs57SaDk9plsJhA=="], - "duplexify": ["duplexify@4.1.3", "http://localhost:4873/duplexify/-/duplexify-4.1.3.tgz", { "dependencies": { "end-of-stream": "^1.4.1", "inherits": "^2.0.3", "readable-stream": "^3.1.1", "stream-shift": "^1.0.2" } }, "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA=="], + "@msgpackr-extract/msgpackr-extract-darwin-arm64": ["@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3", "", { "os": "darwin", "cpu": "arm64" }, "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw=="], - "effect": ["effect@3.19.9", "http://localhost:4873/effect/-/effect-3.19.9.tgz", { "dependencies": { "@standard-schema/spec": "^1.0.0", "fast-check": "^3.23.1" } }, "sha512-taMXnfG/p+j7AmMOHHQaCHvjqwu9QBO3cxuZqL2dMG/yWcEMw0ZHruHe9B49OxtfKH/vKKDDKRhZ+1GJ2p5R5w=="], + "@msgpackr-extract/msgpackr-extract-darwin-x64": ["@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3", "", { "os": "darwin", "cpu": "x64" }, "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw=="], - "electron-to-chromium": ["electron-to-chromium@1.5.266", "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.5.266.tgz", {}, "sha512-kgWEglXvkEfMH7rxP5OSZZwnaDWT7J9EoZCujhnpLbfi0bbNtRkgdX2E3gt0Uer11c61qCYktB3hwkAS325sJg=="], + "@msgpackr-extract/msgpackr-extract-linux-arm": ["@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3", "", { "os": "linux", "cpu": "arm" }, "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw=="], - "emoji-regex": ["emoji-regex@8.0.0", "http://localhost:4873/emoji-regex/-/emoji-regex-8.0.0.tgz", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + "@msgpackr-extract/msgpackr-extract-linux-arm64": ["@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg=="], - "end-of-stream": ["end-of-stream@1.4.5", "http://localhost:4873/end-of-stream/-/end-of-stream-1.4.5.tgz", { "dependencies": { "once": "^1.4.0" } }, "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg=="], + "@msgpackr-extract/msgpackr-extract-linux-x64": ["@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3", "", { "os": "linux", "cpu": "x64" }, "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg=="], - "env-paths": ["env-paths@2.2.1", "http://localhost:4873/env-paths/-/env-paths-2.2.1.tgz", {}, "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="], + "@msgpackr-extract/msgpackr-extract-win32-x64": ["@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3", "", { "os": "win32", "cpu": "x64" }, "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ=="], - "error-ex": ["error-ex@1.3.4", "http://localhost:4873/error-ex/-/error-ex-1.3.4.tgz", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ=="], + "@napi-rs/nice": ["@napi-rs/nice@1.0.1", "", { "optionalDependencies": { "@napi-rs/nice-android-arm-eabi": "1.0.1", "@napi-rs/nice-android-arm64": "1.0.1", "@napi-rs/nice-darwin-arm64": "1.0.1", "@napi-rs/nice-darwin-x64": "1.0.1", "@napi-rs/nice-freebsd-x64": "1.0.1", "@napi-rs/nice-linux-arm-gnueabihf": "1.0.1", "@napi-rs/nice-linux-arm64-gnu": "1.0.1", "@napi-rs/nice-linux-arm64-musl": "1.0.1", "@napi-rs/nice-linux-ppc64-gnu": "1.0.1", "@napi-rs/nice-linux-riscv64-gnu": "1.0.1", "@napi-rs/nice-linux-s390x-gnu": "1.0.1", "@napi-rs/nice-linux-x64-gnu": "1.0.1", "@napi-rs/nice-linux-x64-musl": "1.0.1", "@napi-rs/nice-win32-arm64-msvc": "1.0.1", "@napi-rs/nice-win32-ia32-msvc": "1.0.1", "@napi-rs/nice-win32-x64-msvc": "1.0.1" } }, "sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ=="], - "escalade": ["escalade@3.2.0", "http://localhost:4873/escalade/-/escalade-3.2.0.tgz", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], + "@napi-rs/nice-android-arm-eabi": ["@napi-rs/nice-android-arm-eabi@1.0.1", "", { "os": "android", "cpu": "arm" }, "sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w=="], - "escape-string-regexp": ["escape-string-regexp@4.0.0", "http://localhost:4873/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], + "@napi-rs/nice-android-arm64": ["@napi-rs/nice-android-arm64@1.0.1", "", { "os": "android", "cpu": "arm64" }, "sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA=="], - "eslint": ["eslint@9.39.1", "http://localhost:4873/eslint/-/eslint-9.39.1.tgz", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.1", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.39.1", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g=="], + "@napi-rs/nice-darwin-arm64": ["@napi-rs/nice-darwin-arm64@1.0.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA=="], - "eslint-plugin-functional": ["eslint-plugin-functional@9.0.2", "http://localhost:4873/eslint-plugin-functional/-/eslint-plugin-functional-9.0.2.tgz", { "dependencies": { "@typescript-eslint/utils": "^8.26.0", "deepmerge-ts": "^7.1.5", "escape-string-regexp": "^5.0.0", "is-immutable-type": "^5.0.1", "ts-api-utils": "^2.0.1", "ts-declaration-location": "^1.0.6" }, "peerDependencies": { "eslint": "^9.0.0", "typescript": ">=4.7.4" }, "optionalPeers": ["typescript"] }, "sha512-N8kP9HX1CJ2HrufPHLzsKNJ81O1IB25jw2mxOc1H1z3CamEu8MYTn9dOo/FPfQwsqHZVuf7wyDCBcL8r8H7N0w=="], + "@napi-rs/nice-darwin-x64": ["@napi-rs/nice-darwin-x64@1.0.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ=="], - "eslint-plugin-jsdoc": ["eslint-plugin-jsdoc@61.4.0", "http://localhost:4873/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.4.0.tgz", { "dependencies": { "@es-joy/jsdoccomment": "~0.76.0", "@es-joy/resolve.exports": "1.2.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", "debug": "^4.4.3", "escape-string-regexp": "^4.0.0", "espree": "^10.4.0", "esquery": "^1.6.0", "html-entities": "^2.6.0", "object-deep-merge": "^2.0.0", "parse-imports-exports": "^0.2.4", "semver": "^7.7.3", "spdx-expression-parse": "^4.0.0", "to-valid-identifier": "^1.0.0" }, "peerDependencies": { "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, "sha512-Gbe6Z1QENj6jr5PVnEkWwm0PcVCGFwl9ju+e0BxFuRHHv6c8q2L+PRfCwDBO+veEEEGi5XO52nmoIRvhxb1A3Q=="], + "@napi-rs/nice-freebsd-x64": ["@napi-rs/nice-freebsd-x64@1.0.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw=="], - "eslint-plugin-oxlint": ["eslint-plugin-oxlint@1.31.0", "http://localhost:4873/eslint-plugin-oxlint/-/eslint-plugin-oxlint-1.31.0.tgz", { "dependencies": { "jsonc-parser": "^3.3.1" } }, "sha512-yIUkBg9qZCL9DZVSvH3FklF5urG7LRboZD0/YLf/CvihPpcfBeMyH1onaG3+iKMCIRa/uwXgdRjB5MSOplFTVw=="], + "@napi-rs/nice-linux-arm-gnueabihf": ["@napi-rs/nice-linux-arm-gnueabihf@1.0.1", "", { "os": "linux", "cpu": "arm" }, "sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q=="], - "eslint-plugin-perfectionist": ["eslint-plugin-perfectionist@4.15.1", "http://localhost:4873/eslint-plugin-perfectionist/-/eslint-plugin-perfectionist-4.15.1.tgz", { "dependencies": { "@typescript-eslint/types": "^8.38.0", "@typescript-eslint/utils": "^8.38.0", "natural-orderby": "^5.0.0" }, "peerDependencies": { "eslint": ">=8.45.0" } }, "sha512-MHF0cBoOG0XyBf7G0EAFCuJJu4I18wy0zAoT1OHfx2o6EOx1EFTIzr2HGeuZa1kDcusoX0xJ9V7oZmaeFd773Q=="], + "@napi-rs/nice-linux-arm64-gnu": ["@napi-rs/nice-linux-arm64-gnu@1.0.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA=="], - "eslint-plugin-sonarjs": ["eslint-plugin-sonarjs@3.0.5", "http://localhost:4873/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-3.0.5.tgz", { "dependencies": { "@eslint-community/regexpp": "4.12.1", "builtin-modules": "3.3.0", "bytes": "3.1.2", "functional-red-black-tree": "1.0.1", "jsx-ast-utils-x": "0.1.0", "lodash.merge": "4.6.2", "minimatch": "9.0.5", "scslre": "0.3.0", "semver": "7.7.2", "typescript": ">=5" }, "peerDependencies": { "eslint": "^8.0.0 || ^9.0.0" } }, "sha512-dI62Ff3zMezUToi161hs2i1HX1ie8Ia2hO0jtNBfdgRBicAG4ydy2WPt0rMTrAe3ZrlqhpAO3w1jcQEdneYoFA=="], + "@napi-rs/nice-linux-arm64-musl": ["@napi-rs/nice-linux-arm64-musl@1.0.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw=="], - "eslint-plugin-unicorn": ["eslint-plugin-unicorn@62.0.0", "http://localhost:4873/eslint-plugin-unicorn/-/eslint-plugin-unicorn-62.0.0.tgz", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "@eslint-community/eslint-utils": "^4.9.0", "@eslint/plugin-kit": "^0.4.0", "change-case": "^5.4.4", "ci-info": "^4.3.1", "clean-regexp": "^1.0.0", "core-js-compat": "^3.46.0", "esquery": "^1.6.0", "find-up-simple": "^1.0.1", "globals": "^16.4.0", "indent-string": "^5.0.0", "is-builtin-module": "^5.0.0", "jsesc": "^3.1.0", "pluralize": "^8.0.0", "regexp-tree": "^0.1.27", "regjsparser": "^0.13.0", "semver": "^7.7.3", "strip-indent": "^4.1.1" }, "peerDependencies": { "eslint": ">=9.38.0" } }, "sha512-HIlIkGLkvf29YEiS/ImuDZQbP12gWyx5i3C6XrRxMvVdqMroCI9qoVYCoIl17ChN+U89pn9sVwLxhIWj5nEc7g=="], + "@napi-rs/nice-linux-ppc64-gnu": ["@napi-rs/nice-linux-ppc64-gnu@1.0.1", "", { "os": "linux", "cpu": "ppc64" }, "sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q=="], - "eslint-scope": ["eslint-scope@8.4.0", "http://localhost:4873/eslint-scope/-/eslint-scope-8.4.0.tgz", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="], + "@napi-rs/nice-linux-riscv64-gnu": ["@napi-rs/nice-linux-riscv64-gnu@1.0.1", "", { "os": "linux", "cpu": "none" }, "sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig=="], - "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "http://localhost:4873/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="], + "@napi-rs/nice-linux-s390x-gnu": ["@napi-rs/nice-linux-s390x-gnu@1.0.1", "", { "os": "linux", "cpu": "s390x" }, "sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg=="], - "espree": ["espree@10.4.0", "http://localhost:4873/espree/-/espree-10.4.0.tgz", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="], + "@napi-rs/nice-linux-x64-gnu": ["@napi-rs/nice-linux-x64-gnu@1.0.1", "", { "os": "linux", "cpu": "x64" }, "sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA=="], - "esquery": ["esquery@1.6.0", "http://localhost:4873/esquery/-/esquery-1.6.0.tgz", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], + "@napi-rs/nice-linux-x64-musl": ["@napi-rs/nice-linux-x64-musl@1.0.1", "", { "os": "linux", "cpu": "x64" }, "sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ=="], - "esrecurse": ["esrecurse@4.3.0", "http://localhost:4873/esrecurse/-/esrecurse-4.3.0.tgz", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="], + "@napi-rs/nice-win32-arm64-msvc": ["@napi-rs/nice-win32-arm64-msvc@1.0.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg=="], - "estraverse": ["estraverse@5.3.0", "http://localhost:4873/estraverse/-/estraverse-5.3.0.tgz", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="], + "@napi-rs/nice-win32-ia32-msvc": ["@napi-rs/nice-win32-ia32-msvc@1.0.1", "", { "os": "win32", "cpu": "ia32" }, "sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw=="], - "esutils": ["esutils@2.0.3", "http://localhost:4873/esutils/-/esutils-2.0.3.tgz", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], + "@napi-rs/nice-win32-x64-msvc": ["@napi-rs/nice-win32-x64-msvc@1.0.1", "", { "os": "win32", "cpu": "x64" }, "sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg=="], - "fast-check": ["fast-check@3.23.2", "http://localhost:4873/fast-check/-/fast-check-3.23.2.tgz", { "dependencies": { "pure-rand": "^6.1.0" } }, "sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A=="], + "@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@0.2.11", "", { "dependencies": { "@emnapi/core": "^1.4.3", "@emnapi/runtime": "^1.4.3", "@tybys/wasm-util": "^0.9.0" } }, "sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA=="], - "fast-deep-equal": ["fast-deep-equal@3.1.3", "http://localhost:4873/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="], + "@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="], - "fast-glob": ["fast-glob@3.3.3", "http://localhost:4873/fast-glob/-/fast-glob-3.3.3.tgz", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="], + "@nodelib/fs.stat": ["@nodelib/fs.stat@2.0.5", "", {}, "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="], - "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "http://localhost:4873/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="], + "@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="], - "fast-levenshtein": ["fast-levenshtein@2.0.6", "http://localhost:4873/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="], + "@oxc-resolver/binding-darwin-arm64": ["@oxc-resolver/binding-darwin-arm64@11.2.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-ruKLkS+Dm/YIJaUhzEB7zPI+jh3EXxu0QnNV8I7t9jf0lpD2VnltuyRbhrbJEkksklZj//xCMyFFsILGjiU2Mg=="], - "fast-uri": ["fast-uri@3.1.0", "http://localhost:4873/fast-uri/-/fast-uri-3.1.0.tgz", {}, "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA=="], + "@oxc-resolver/binding-darwin-x64": ["@oxc-resolver/binding-darwin-x64@11.2.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-0zhgNUm5bYezdSFOg3FYhtVP83bAq7FTV/3suGQDl/43MixfQG7+bl+hlrP4mz6WlD2SUb2u9BomnJWl1uey9w=="], - "fastest-levenshtein": ["fastest-levenshtein@1.0.16", "http://localhost:4873/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", {}, "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg=="], + "@oxc-resolver/binding-freebsd-x64": ["@oxc-resolver/binding-freebsd-x64@11.2.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-SHOxfCcZV1axeIGfyeD1BkdLvfQgjmPy18tO0OUXGElcdScxD6MqU5rj/AVtiuBT+51GtFfOKlwl1+BdVwhD1A=="], - "fastq": ["fastq@1.19.1", "http://localhost:4873/fastq/-/fastq-1.19.1.tgz", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="], + "@oxc-resolver/binding-linux-arm-gnueabihf": ["@oxc-resolver/binding-linux-arm-gnueabihf@11.2.0", "", { "os": "linux", "cpu": "arm" }, "sha512-mgEkYrJ+N90sgEDqEZ07zH+4I1D28WjqAhdzfW3aS2x2vynVpoY9jWfHuH8S62vZt3uATJrTKTRa8CjPWEsrdw=="], - "fd-package-json": ["fd-package-json@2.0.0", "http://localhost:4873/fd-package-json/-/fd-package-json-2.0.0.tgz", { "dependencies": { "walk-up-path": "^4.0.0" } }, "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ=="], + "@oxc-resolver/binding-linux-arm64-gnu": ["@oxc-resolver/binding-linux-arm64-gnu@11.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-BhEzNLjn4HjP8+Q18D3/jeIDBxW7OgoJYIjw2CaaysnYneoTlij8hPTKxHfyqq4IGM3fFs9TLR/k338M3zkQ7g=="], - "fdir": ["fdir@6.5.0", "http://localhost:4873/fdir/-/fdir-6.5.0.tgz", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="], + "@oxc-resolver/binding-linux-arm64-musl": ["@oxc-resolver/binding-linux-arm64-musl@11.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-yxbMYUgRmN2V8x8XoxmD/Qq6aG7YIW3ToMDILfmcfeeRRVieEJ3DOWBT0JSE+YgrOy79OyFDH/1lO8VnqLmDQQ=="], - "file-entry-cache": ["file-entry-cache@8.0.0", "http://localhost:4873/file-entry-cache/-/file-entry-cache-8.0.0.tgz", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], + "@oxc-resolver/binding-linux-riscv64-gnu": ["@oxc-resolver/binding-linux-riscv64-gnu@11.2.0", "", { "os": "linux", "cpu": "none" }, "sha512-QG1UfgC2N2qhW1tOnDCgB/26vn1RCshR5sYPhMeaxO1gMQ3kEKbZ3QyBXxrG1IX5qsXYj5hPDJLDYNYUjRcOpg=="], - "fill-range": ["fill-range@7.1.1", "http://localhost:4873/fill-range/-/fill-range-7.1.1.tgz", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="], + "@oxc-resolver/binding-linux-s390x-gnu": ["@oxc-resolver/binding-linux-s390x-gnu@11.2.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-uqTDsQdi6mrkSV1gvwbuT8jf/WFl6qVDVjNlx7IPSaAByrNiJfPrhTmH8b+Do58Dylz7QIRZgxQ8CHIZSyBUdg=="], - "find-my-way-ts": ["find-my-way-ts@0.1.6", "http://localhost:4873/find-my-way-ts/-/find-my-way-ts-0.1.6.tgz", {}, "sha512-a85L9ZoXtNAey3Y6Z+eBWW658kO/MwR7zIafkIUPUMf3isZG0NCs2pjW2wtjxAKuJPxMAsHUIP4ZPGv0o5gyTA=="], + "@oxc-resolver/binding-linux-x64-gnu": ["@oxc-resolver/binding-linux-x64-gnu@11.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-GZdHXhJ7p6GaQg9MjRqLebwBf8BLvGIagccI6z5yMj4fV3LU4QuDfwSEERG+R6oQ/Su9672MBqWwncvKcKT68w=="], - "find-up": ["find-up@5.0.0", "http://localhost:4873/find-up/-/find-up-5.0.0.tgz", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="], + "@oxc-resolver/binding-linux-x64-musl": ["@oxc-resolver/binding-linux-x64-musl@11.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-YBAC3GOicYznReG2twE7oFPSeK9Z1f507z1EYWKg6HpGYRYRlJyszViu7PrhMT85r/MumDTs429zm+CNqpFWOA=="], - "find-up-simple": ["find-up-simple@1.0.1", "http://localhost:4873/find-up-simple/-/find-up-simple-1.0.1.tgz", {}, "sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ=="], + "@oxc-resolver/binding-wasm32-wasi": ["@oxc-resolver/binding-wasm32-wasi@11.2.0", "", { "dependencies": { "@napi-rs/wasm-runtime": "^0.2.11" }, "cpu": "none" }, "sha512-+qlIg45CPVPy+Jn3vqU1zkxA/AAv6e/2Ax/ImX8usZa8Tr2JmQn/93bmSOOOnr9fXRV9d0n4JyqYzSWxWPYDEw=="], - "flat-cache": ["flat-cache@4.0.1", "http://localhost:4873/flat-cache/-/flat-cache-4.0.1.tgz", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], + "@oxc-resolver/binding-win32-arm64-msvc": ["@oxc-resolver/binding-win32-arm64-msvc@11.2.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-AI4KIpS8Zf6vwfOPk0uQPSC0pQ1m5HU4hCbtrgL21JgJSlnJaeEu3/aoOBB45AXKiExBU9R+CDR7aSnW7uhc5A=="], - "flatted": ["flatted@3.3.3", "http://localhost:4873/flatted/-/flatted-3.3.3.tgz", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="], + "@oxc-resolver/binding-win32-x64-msvc": ["@oxc-resolver/binding-win32-x64-msvc@11.2.0", "", { "os": "win32", "cpu": "x64" }, "sha512-r19cQc7HaEJ76HFsMsbiKMTIV2YqFGSof8H5hB7e5Jkb/23Y8Isv1YrSzkDaGhcw02I/COsrPo+eEmjy35eFuA=="], - "focusable-selectors": ["focusable-selectors@0.8.4", "http://localhost:4873/focusable-selectors/-/focusable-selectors-0.8.4.tgz", {}, "sha512-0XxbkD0KhOnX10qmnfF9U8DkDD8N/e4M77wMYw2Itoi4vdcoRjSkqXLZFIzkrLIOxzmzCGy88fNG1EbeXMD/zw=="], + "@oxlint/darwin-arm64": ["@oxlint/darwin-arm64@1.1.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-sSnR3SOxIU/QfaqXrcQ0UVUkzJO0bcInQ7dMhHa102gVAgWjp1fBeMVCM0adEY0UNmEXrRkgD/rQtQgn9YAU+w=="], - "formatly": ["formatly@0.3.0", "http://localhost:4873/formatly/-/formatly-0.3.0.tgz", { "dependencies": { "fd-package-json": "^2.0.0" }, "bin": { "formatly": "bin/index.mjs" } }, "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w=="], + "@oxlint/darwin-x64": ["@oxlint/darwin-x64@1.1.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-Jvd3fHnzY2OYbmsg9NSGPoBkGViDGHSFnBKyJQ9LOIw7lxAyQBG2Quxc3GYPFR/f9OYho9C3p4+dIaAJfKhnsw=="], - "fsevents": ["fsevents@2.3.2", "http://localhost:4873/fsevents/-/fsevents-2.3.2.tgz", { "os": "darwin" }, "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="], + "@oxlint/linux-arm64-gnu": ["@oxlint/linux-arm64-gnu@1.1.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-MgW4iskOdXuoR+wDXIJUfbdnTg2eo2FnQRaD6ZqhnDTDa7LnV+06rp/Cg3aGj2X9jSEcKDv/bMbYQuot7WRs6Q=="], - "function-bind": ["function-bind@1.1.2", "http://localhost:4873/function-bind/-/function-bind-1.1.2.tgz", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], + "@oxlint/linux-arm64-musl": ["@oxlint/linux-arm64-musl@1.1.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-a+pkEKmDRdrW+y0gtZ/m68ElVW2VZgATGbMxDgDYFpdiMx9Y0pUPwTMZ2EX/17Aslop4c1BiDSFDK7aEBxKR2g=="], - "functional-red-black-tree": ["functional-red-black-tree@1.0.1", "http://localhost:4873/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", {}, "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="], + "@oxlint/linux-x64-gnu": ["@oxlint/linux-x64-gnu@1.1.0", "", { "os": "linux", "cpu": "x64" }, "sha512-wNBsXCKVZMvUTcFitrV1wTsdhUAv8l+XQxHxciZ2SO6dpNnWEb2YCxSAIOXeyzBLdO4pIODYcSy38CvGue7TwA=="], - "get-caller-file": ["get-caller-file@2.0.5", "http://localhost:4873/get-caller-file/-/get-caller-file-2.0.5.tgz", {}, "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="], + "@oxlint/linux-x64-musl": ["@oxlint/linux-x64-musl@1.1.0", "", { "os": "linux", "cpu": "x64" }, "sha512-pZD0lt6A5j2Wp70fgIYk4GoPfKTZ8mHWamWIpKFT7aSkFkiOi6nhLWDFvMEIHWRTK3LgkWUNcnWPp4brvin4wQ=="], - "glob-parent": ["glob-parent@6.0.2", "http://localhost:4873/glob-parent/-/glob-parent-6.0.2.tgz", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="], + "@oxlint/win32-arm64": ["@oxlint/win32-arm64@1.1.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-rT6uXQvE80+B+L04HJf30uF26426FPI9i9DAY2AxBUhrpNwhqkDEhQdd9ilFWVC7SSbpHgAs50lo+ImSAAkHPQ=="], - "global-modules": ["global-modules@2.0.0", "http://localhost:4873/global-modules/-/global-modules-2.0.0.tgz", { "dependencies": { "global-prefix": "^3.0.0" } }, "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A=="], + "@oxlint/win32-x64": ["@oxlint/win32-x64@1.1.0", "", { "os": "win32", "cpu": "x64" }, "sha512-x6r5yvM3wEty93Bx0NuNK+kutUyS/K55itkUrxdExoK6GcmVDboGGuhju9HyU2cM/IWLEWO8RHcXSyaxr9GR5g=="], - "global-prefix": ["global-prefix@3.0.0", "http://localhost:4873/global-prefix/-/global-prefix-3.0.0.tgz", { "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" } }, "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg=="], + "@polka/url": ["@polka/url@1.0.0-next.28", "", {}, "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw=="], - "globals": ["globals@16.5.0", "http://localhost:4873/globals/-/globals-16.5.0.tgz", {}, "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ=="], + "@prettier/plugin-php": ["@prettier/plugin-php@0.22.4", "", { "dependencies": { "linguist-languages": "^7.27.0", "php-parser": "^3.1.5" }, "peerDependencies": { "prettier": "^3.0.0" } }, "sha512-uZWqfyrwsxScIYkmVcfnoQGFmKVMXTHD5pqYT4l8fxzm5P3XY94hTPbf8X6TFCi2QTZBIot7GS8lfIjQjldc2g=="], - "globby": ["globby@11.1.0", "http://localhost:4873/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }, "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="], + "@prettier/plugin-xml": ["@prettier/plugin-xml@3.4.1", "", { "dependencies": { "@xml-tools/parser": "^1.0.11" }, "peerDependencies": { "prettier": "^3.0.0" } }, "sha512-Uf/6/+9ez6z/IvZErgobZ2G9n1ybxF5BhCd7eMcKqfoWuOzzNUxBipNo3QAP8kRC1VD18TIo84no7LhqtyDcTg=="], - "globjoin": ["globjoin@0.1.4", "http://localhost:4873/globjoin/-/globjoin-0.1.4.tgz", {}, "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg=="], + "@reteps/dockerfmt": ["@reteps/dockerfmt@0.3.6", "", {}, "sha512-Tb5wIMvBf/nLejTQ61krK644/CEMB/cpiaIFXqGApfGqO3GwcR3qnI0DbmkFVCl2OyEp8LnLX3EkucoL0+tbFg=="], - "globrex": ["globrex@0.1.2", "http://localhost:4873/globrex/-/globrex-0.1.2.tgz", {}, "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="], + "@rollup/plugin-inject": ["@rollup/plugin-inject@5.0.5", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "estree-walker": "^2.0.2", "magic-string": "^0.30.3" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg=="], - "graphemer": ["graphemer@1.4.0", "http://localhost:4873/graphemer/-/graphemer-1.4.0.tgz", {}, "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="], + "@rollup/pluginutils": ["@rollup/pluginutils@5.1.4", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ=="], - "has-flag": ["has-flag@4.0.0", "http://localhost:4873/has-flag/-/has-flag-4.0.0.tgz", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], + "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.40.0", "", { "os": "android", "cpu": "arm" }, "sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg=="], - "hashery": ["hashery@1.2.0", "http://localhost:4873/hashery/-/hashery-1.2.0.tgz", { "dependencies": { "hookified": "^1.13.0" } }, "sha512-43XJKpwle72Ik5Zpam7MuzRWyNdwwdf6XHlh8wCj2PggvWf+v/Dm5B0dxGZOmddidgeO6Ofu9As/o231Ti/9PA=="], + "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.40.0", "", { "os": "android", "cpu": "arm64" }, "sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w=="], - "hasown": ["hasown@2.0.2", "http://localhost:4873/hasown/-/hasown-2.0.2.tgz", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], + "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.40.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ=="], - "hookified": ["hookified@1.13.0", "http://localhost:4873/hookified/-/hookified-1.13.0.tgz", {}, "sha512-6sPYUY8olshgM/1LDNW4QZQN0IqgKhtl/1C8koNZBJrKLBk3AZl6chQtNwpNztvfiApHMEwMHek5rv993PRbWw=="], + "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.40.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA=="], - "html-entities": ["html-entities@2.6.0", "http://localhost:4873/html-entities/-/html-entities-2.6.0.tgz", {}, "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ=="], + "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.40.0", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg=="], - "html-tags": ["html-tags@3.3.1", "http://localhost:4873/html-tags/-/html-tags-3.3.1.tgz", {}, "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ=="], + "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.40.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw=="], - "ignore": ["ignore@5.3.2", "http://localhost:4873/ignore/-/ignore-5.3.2.tgz", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], + "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.40.0", "", { "os": "linux", "cpu": "arm" }, "sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA=="], - "immutable": ["immutable@5.1.4", "http://localhost:4873/immutable/-/immutable-5.1.4.tgz", {}, "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA=="], + "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.40.0", "", { "os": "linux", "cpu": "arm" }, "sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg=="], - "import-fresh": ["import-fresh@3.3.1", "http://localhost:4873/import-fresh/-/import-fresh-3.3.1.tgz", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], + "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.40.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg=="], - "imurmurhash": ["imurmurhash@0.1.4", "http://localhost:4873/imurmurhash/-/imurmurhash-0.1.4.tgz", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="], + "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.40.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ=="], - "indent-string": ["indent-string@5.0.0", "http://localhost:4873/indent-string/-/indent-string-5.0.0.tgz", {}, "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg=="], + "@rollup/rollup-linux-loongarch64-gnu": ["@rollup/rollup-linux-loongarch64-gnu@4.40.0", "", { "os": "linux", "cpu": "none" }, "sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg=="], - "inherits": ["inherits@2.0.4", "http://localhost:4873/inherits/-/inherits-2.0.4.tgz", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="], + "@rollup/rollup-linux-powerpc64le-gnu": ["@rollup/rollup-linux-powerpc64le-gnu@4.40.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw=="], - "ini": ["ini@1.3.8", "http://localhost:4873/ini/-/ini-1.3.8.tgz", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], + "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.40.0", "", { "os": "linux", "cpu": "none" }, "sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA=="], - "is-arrayish": ["is-arrayish@0.2.1", "http://localhost:4873/is-arrayish/-/is-arrayish-0.2.1.tgz", {}, "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="], + "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.40.0", "", { "os": "linux", "cpu": "none" }, "sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ=="], - "is-builtin-module": ["is-builtin-module@5.0.0", "http://localhost:4873/is-builtin-module/-/is-builtin-module-5.0.0.tgz", { "dependencies": { "builtin-modules": "^5.0.0" } }, "sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA=="], + "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.40.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw=="], - "is-core-module": ["is-core-module@2.16.1", "http://localhost:4873/is-core-module/-/is-core-module-2.16.1.tgz", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="], + "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.40.0", "", { "os": "linux", "cpu": "x64" }, "sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ=="], - "is-extglob": ["is-extglob@2.1.1", "http://localhost:4873/is-extglob/-/is-extglob-2.1.1.tgz", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], + "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.40.0", "", { "os": "linux", "cpu": "x64" }, "sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw=="], - "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "http://localhost:4873/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="], + "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.40.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ=="], - "is-glob": ["is-glob@4.0.3", "http://localhost:4873/is-glob/-/is-glob-4.0.3.tgz", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], + "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.40.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA=="], - "is-immutable-type": ["is-immutable-type@5.0.1", "http://localhost:4873/is-immutable-type/-/is-immutable-type-5.0.1.tgz", { "dependencies": { "@typescript-eslint/type-utils": "^8.0.0", "ts-api-utils": "^2.0.0", "ts-declaration-location": "^1.0.4" }, "peerDependencies": { "eslint": "*", "typescript": ">=4.7.4" } }, "sha512-LkHEOGVZZXxGl8vDs+10k3DvP++SEoYEAJLRk6buTFi6kD7QekThV7xHS0j6gpnUCQ0zpud/gMDGiV4dQneLTg=="], + "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.40.0", "", { "os": "win32", "cpu": "x64" }, "sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ=="], - "is-number": ["is-number@7.0.0", "http://localhost:4873/is-number/-/is-number-7.0.0.tgz", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="], + "@sec-ant/readable-stream": ["@sec-ant/readable-stream@0.4.1", "", {}, "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg=="], - "is-plain-object": ["is-plain-object@5.0.0", "http://localhost:4873/is-plain-object/-/is-plain-object-5.0.0.tgz", {}, "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="], + "@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@9.28.1", "", { "dependencies": { "@sentry/core": "9.28.1" } }, "sha512-P/FEZkT7UqTw9P/2n/Y4Aa1OtGP6dnCvyqzPPkjiRdVa7Ep7S5ElBJloGv7077TLLBtAfCsEUVRlM1F6/jQoaA=="], - "is-unicode-supported": ["is-unicode-supported@2.1.0", "http://localhost:4873/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", {}, "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ=="], + "@sentry-internal/feedback": ["@sentry-internal/feedback@9.28.1", "", { "dependencies": { "@sentry/core": "9.28.1" } }, "sha512-HOk/c26D3nlClO/xEefev8fIJzRA621PFQvNFPu/y0Z5HujEqSmIsrff0cXszPPYD95h4Mwk63E0ZYdspdeXcw=="], - "isarray": ["isarray@0.0.1", "http://localhost:4873/isarray/-/isarray-0.0.1.tgz", {}, "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="], + "@sentry-internal/replay": ["@sentry-internal/replay@9.28.1", "", { "dependencies": { "@sentry-internal/browser-utils": "9.28.1", "@sentry/core": "9.28.1" } }, "sha512-Tv9pkfAX+1bmhxF42TL0c4uTiK2+rp5LMYEPdz6JBfpfvG/Z1unPGsuB7fQmHYKyfHBQJmi92DZV+smljm7w/g=="], - "isexe": ["isexe@2.0.0", "http://localhost:4873/isexe/-/isexe-2.0.0.tgz", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], + "@sentry-internal/replay-canvas": ["@sentry-internal/replay-canvas@9.28.1", "", { "dependencies": { "@sentry-internal/replay": "9.28.1", "@sentry/core": "9.28.1" } }, "sha512-RtkogfcIpXLFCyV8CTnXmVTH2QauT/KwmUAXBbeOz3rRWsM19yjN1moHrsjxn7OdjTv+D4qWSCA8Ka1aKSpr7g=="], - "jiti": ["jiti@2.6.1", "http://localhost:4873/jiti/-/jiti-2.6.1.tgz", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ=="], + "@sentry/browser": ["@sentry/browser@9.28.1", "", { "dependencies": { "@sentry-internal/browser-utils": "9.28.1", "@sentry-internal/feedback": "9.28.1", "@sentry-internal/replay": "9.28.1", "@sentry-internal/replay-canvas": "9.28.1", "@sentry/core": "9.28.1" } }, "sha512-XAS46iQSq8lXTnv9udQP025JTf3PwSVRE9ePJVQhx25QBWxedqGhEOv5qqX9b1Ijf8KiZYXXhBWMQxBBXVzUaw=="], - "js-tokens": ["js-tokens@4.0.0", "http://localhost:4873/js-tokens/-/js-tokens-4.0.0.tgz", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], + "@sentry/core": ["@sentry/core@9.28.1", "", {}, "sha512-6q59r/71MeE+4StkvwdKAAyhBBNpWcii0HeiWBZ3l1gaFYQlb6bChjZJRZmxSzF5dnvkdF4duQbAC3JmjeIbPA=="], - "js-yaml": ["js-yaml@4.1.1", "http://localhost:4873/js-yaml/-/js-yaml-4.1.1.tgz", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="], + "@sindresorhus/is": ["@sindresorhus/is@5.6.0", "", {}, "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="], - "jsdoc-type-pratt-parser": ["jsdoc-type-pratt-parser@6.10.0", "http://localhost:4873/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-6.10.0.tgz", {}, "sha512-+LexoTRyYui5iOhJGn13N9ZazL23nAHGkXsa1p/C8yeq79WRfLBag6ZZ0FQG2aRoc9yfo59JT9EYCQonOkHKkQ=="], + "@standard-schema/spec": ["@standard-schema/spec@1.0.0", "", {}, "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA=="], - "jsesc": ["jsesc@3.1.0", "http://localhost:4873/jsesc/-/jsesc-3.1.0.tgz", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], + "@stylistic/stylelint-plugin": ["@stylistic/stylelint-plugin@3.1.1", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1", "@csstools/media-query-list-parser": "^3.0.1", "is-plain-object": "^5.0.0", "postcss-selector-parser": "^6.1.2", "postcss-value-parser": "^4.2.0", "style-search": "^0.1.0", "stylelint": "^16.8.2" } }, "sha512-XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw=="], - "json-buffer": ["json-buffer@3.0.1", "http://localhost:4873/json-buffer/-/json-buffer-3.0.1.tgz", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], + "@swc/cli": ["@swc/cli@0.7.7", "", { "dependencies": { "@swc/counter": "^0.1.3", "@xhmikosr/bin-wrapper": "^13.0.5", "commander": "^8.3.0", "fast-glob": "^3.2.5", "minimatch": "^9.0.3", "piscina": "^4.3.1", "semver": "^7.3.8", "slash": "3.0.0", "source-map": "^0.7.3" }, "peerDependencies": { "@swc/core": "^1.2.66", "chokidar": "^4.0.1" }, "optionalPeers": ["chokidar"], "bin": { "swc": "bin/swc.js", "swcx": "bin/swcx.js", "spack": "bin/spack.js" } }, "sha512-j4yYm9bx3pxWofaJKX1BFwj/3ngUDynN4UIQ2Xd2h0h/7Gt7zkReBTpDN7g5S13mgAYxacaTHTOUsz18097E8w=="], - "json-parse-even-better-errors": ["json-parse-even-better-errors@2.3.1", "http://localhost:4873/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", {}, "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="], + "@swc/core": ["@swc/core@1.10.12", "", { "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.17" }, "optionalDependencies": { "@swc/core-darwin-arm64": "1.10.12", "@swc/core-darwin-x64": "1.10.12", "@swc/core-linux-arm-gnueabihf": "1.10.12", "@swc/core-linux-arm64-gnu": "1.10.12", "@swc/core-linux-arm64-musl": "1.10.12", "@swc/core-linux-x64-gnu": "1.10.12", "@swc/core-linux-x64-musl": "1.10.12", "@swc/core-win32-arm64-msvc": "1.10.12", "@swc/core-win32-ia32-msvc": "1.10.12", "@swc/core-win32-x64-msvc": "1.10.12" }, "peerDependencies": { "@swc/helpers": "*" }, "optionalPeers": ["@swc/helpers"] }, "sha512-+iUL0PYpPm6N9AdV1wvafakvCqFegQus1aoEDxgFsv3/uNVNIyRaupf/v/Zkp5hbep2EzhtoJR0aiJIzDbXWHg=="], - "json-schema-traverse": ["json-schema-traverse@0.4.1", "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="], + "@swc/core-darwin-arm64": ["@swc/core-darwin-arm64@1.10.12", "", { "os": "darwin", "cpu": "arm64" }, "sha512-pOANQegUTAriW7jq3SSMZGM5l89yLVMs48R0F2UG6UZsH04SiViCnDctOGlA/Sa++25C+rL9MGMYM1jDLylBbg=="], - "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "http://localhost:4873/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="], + "@swc/core-darwin-x64": ["@swc/core-darwin-x64@1.10.12", "", { "os": "darwin", "cpu": "x64" }, "sha512-m4kbpIDDsN1FrwfNQMU+FTrss356xsXvatLbearwR+V0lqOkjLBP0VmRvQfHEg+uy13VPyrT9gj4HLoztlci7w=="], - "json2php": ["json2php@0.0.9", "http://localhost:4873/json2php/-/json2php-0.0.9.tgz", {}, "sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw=="], + "@swc/core-linux-arm-gnueabihf": ["@swc/core-linux-arm-gnueabihf@1.10.12", "", { "os": "linux", "cpu": "arm" }, "sha512-OY9LcupgqEu8zVK+rJPes6LDJJwPDmwaShU96beTaxX2K6VrXbpwm5WbPS/8FfQTsmpnuA7dCcMPUKhNgmzTrQ=="], - "jsonc-parser": ["jsonc-parser@3.3.1", "http://localhost:4873/jsonc-parser/-/jsonc-parser-3.3.1.tgz", {}, "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ=="], + "@swc/core-linux-arm64-gnu": ["@swc/core-linux-arm64-gnu@1.10.12", "", { "os": "linux", "cpu": "arm64" }, "sha512-nJD587rO0N4y4VZszz3xzVr7JIiCzSMhEMWnPjuh+xmPxDBz0Qccpr8xCr1cSxpl1uY7ERkqAGlKr6CwoV5kVg=="], - "jsx-ast-utils-x": ["jsx-ast-utils-x@0.1.0", "http://localhost:4873/jsx-ast-utils-x/-/jsx-ast-utils-x-0.1.0.tgz", {}, "sha512-eQQBjBnsVtGacsG9uJNB8qOr3yA8rga4wAaGG1qRcBzSIvfhERLrWxMAM1hp5fcS6Abo8M4+bUBTekYR0qTPQw=="], + "@swc/core-linux-arm64-musl": ["@swc/core-linux-arm64-musl@1.10.12", "", { "os": "linux", "cpu": "arm64" }, "sha512-oqhSmV+XauSf0C//MoQnVErNUB/5OzmSiUzuazyLsD5pwqKNN+leC3JtRQ/QVzaCpr65jv9bKexT9+I2Tt3xDw=="], - "keyv": ["keyv@4.5.4", "http://localhost:4873/keyv/-/keyv-4.5.4.tgz", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], + "@swc/core-linux-x64-gnu": ["@swc/core-linux-x64-gnu@1.10.12", "", { "os": "linux", "cpu": "x64" }, "sha512-XldSIHyjD7m1Gh+/8rxV3Ok711ENLI420CU2EGEqSe3VSGZ7pHJvJn9ZFbYpWhsLxPqBYMFjp3Qw+J6OXCPXCA=="], - "kind-of": ["kind-of@6.0.3", "http://localhost:4873/kind-of/-/kind-of-6.0.3.tgz", {}, "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="], + "@swc/core-linux-x64-musl": ["@swc/core-linux-x64-musl@1.10.12", "", { "os": "linux", "cpu": "x64" }, "sha512-wvPXzJxzPgTqhyp1UskOx1hRTtdWxlyFD1cGWOxgLsMik0V9xKRgqKnMPv16Nk7L9xl6quQ6DuUHj9ID7L3oVw=="], - "knip": ["knip@5.71.0", "http://localhost:4873/knip/-/knip-5.71.0.tgz", { "dependencies": { "@nodelib/fs.walk": "^1.2.3", "fast-glob": "^3.3.3", "formatly": "^0.3.0", "jiti": "^2.6.0", "js-yaml": "^4.1.1", "minimist": "^1.2.8", "oxc-resolver": "^11.13.2", "picocolors": "^1.1.1", "picomatch": "^4.0.1", "smol-toml": "^1.5.2", "strip-json-comments": "5.0.3", "zod": "^4.1.11" }, "peerDependencies": { "@types/node": ">=18", "typescript": ">=5.0.4 <7" }, "bin": { "knip": "bin/knip.js", "knip-bun": "bin/knip-bun.js" } }, "sha512-hwgdqEJ+7DNJ5jE8BCPu7b57TY7vUwP6MzWYgCgPpg6iPCee/jKPShDNIlFER2koti4oz5xF88VJbKCb4Wl71g=="], + "@swc/core-win32-arm64-msvc": ["@swc/core-win32-arm64-msvc@1.10.12", "", { "os": "win32", "cpu": "arm64" }, "sha512-TUYzWuu1O7uyIcRfxdm6Wh1u+gNnrW5M1DUgDOGZLsyQzgc2Zjwfh2llLhuAIilvCVg5QiGbJlpibRYJ/8QGsg=="], - "known-css-properties": ["known-css-properties@0.37.0", "http://localhost:4873/known-css-properties/-/known-css-properties-0.37.0.tgz", {}, "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ=="], + "@swc/core-win32-ia32-msvc": ["@swc/core-win32-ia32-msvc@1.10.12", "", { "os": "win32", "cpu": "ia32" }, "sha512-4Qrw+0Xt+Fe2rz4OJ/dEPMeUf/rtuFWWAj/e0vL7J5laUHirzxawLRE5DCJLQTarOiYR6mWnmadt9o3EKzV6Xg=="], - "levn": ["levn@0.4.1", "http://localhost:4873/levn/-/levn-0.4.1.tgz", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="], + "@swc/core-win32-x64-msvc": ["@swc/core-win32-x64-msvc@1.10.12", "", { "os": "win32", "cpu": "x64" }, "sha512-YiloZXLW7rUxJpALwHXaGjVaAEn+ChoblG7/3esque+Y7QCyheoBUJp2DVM1EeVA43jBfZ8tvYF0liWd9Tpz1A=="], - "lightningcss": ["lightningcss@1.30.2", "http://localhost:4873/lightningcss/-/lightningcss-1.30.2.tgz", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.30.2", "lightningcss-darwin-arm64": "1.30.2", "lightningcss-darwin-x64": "1.30.2", "lightningcss-freebsd-x64": "1.30.2", "lightningcss-linux-arm-gnueabihf": "1.30.2", "lightningcss-linux-arm64-gnu": "1.30.2", "lightningcss-linux-arm64-musl": "1.30.2", "lightningcss-linux-x64-gnu": "1.30.2", "lightningcss-linux-x64-musl": "1.30.2", "lightningcss-win32-arm64-msvc": "1.30.2", "lightningcss-win32-x64-msvc": "1.30.2" } }, "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ=="], + "@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="], - "lightningcss-android-arm64": ["lightningcss-android-arm64@1.30.2", "http://localhost:4873/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz", { "os": "android", "cpu": "arm64" }, "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A=="], + "@swc/types": ["@swc/types@0.1.17", "", { "dependencies": { "@swc/counter": "^0.1.3" } }, "sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ=="], - "lightningcss-cli": ["lightningcss-cli@1.30.2", "http://localhost:4873/lightningcss-cli/-/lightningcss-cli-1.30.2.tgz", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-cli-android-arm64": "1.30.2", "lightningcss-cli-darwin-arm64": "1.30.2", "lightningcss-cli-darwin-x64": "1.30.2", "lightningcss-cli-freebsd-x64": "1.30.2", "lightningcss-cli-linux-arm-gnueabihf": "1.30.2", "lightningcss-cli-linux-arm64-gnu": "1.30.2", "lightningcss-cli-linux-arm64-musl": "1.30.2", "lightningcss-cli-linux-x64-gnu": "1.30.2", "lightningcss-cli-linux-x64-musl": "1.30.2", "lightningcss-cli-win32-arm64-msvc": "1.30.2", "lightningcss-cli-win32-x64-msvc": "1.30.2" }, "bin": { "lightningcss": "lightningcss" } }, "sha512-vTm/775SqvQ74T0y4twiqjopXV6SnAFguuRpnbKUE9aXxqJGxWJoHS77ZRkJj3dKmnD61ejOawg3FBiTT8/3Tw=="], + "@szmarczak/http-timer": ["@szmarczak/http-timer@5.0.1", "", { "dependencies": { "defer-to-connect": "^2.0.1" } }, "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw=="], - "lightningcss-cli-android-arm64": ["lightningcss-cli-android-arm64@1.30.2", "http://localhost:4873/lightningcss-cli-android-arm64/-/lightningcss-cli-android-arm64-1.30.2.tgz", { "os": "android", "cpu": "arm64" }, "sha512-CcntRK9yNjFRiZKwW9m4sf5WYYNOGxlD4ROymyIb+KPbsrEBAZSaknoUM1aIhuhvB/TUTtVmPKvt/Zu0LeSR7g=="], + "@tokenizer/token": ["@tokenizer/token@0.3.0", "", {}, "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A=="], - "lightningcss-cli-darwin-arm64": ["lightningcss-cli-darwin-arm64@1.30.2", "http://localhost:4873/lightningcss-cli-darwin-arm64/-/lightningcss-cli-darwin-arm64-1.30.2.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-Z2STTSes07R2R5tOPY85HipU+z1SwUBV2Yp5emAcqL+o5RsOAE1JWbkloQWa++8R6b/gxzD11VPM3WtCCqL8Gg=="], + "@tybys/wasm-util": ["@tybys/wasm-util@0.9.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw=="], - "lightningcss-cli-darwin-x64": ["lightningcss-cli-darwin-x64@1.30.2", "http://localhost:4873/lightningcss-cli-darwin-x64/-/lightningcss-cli-darwin-x64-1.30.2.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-N0IGWWsLnv81sDw9i/vvaisp55uDnhoapGBEJ8lMED064CsUHpLCK7L/5B8kFj8UI97zL+xb7KTTGOHkcC8skg=="], + "@types/chai": ["@types/chai@5.2.2", "", { "dependencies": { "@types/deep-eql": "*" } }, "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg=="], - "lightningcss-cli-freebsd-x64": ["lightningcss-cli-freebsd-x64@1.30.2", "http://localhost:4873/lightningcss-cli-freebsd-x64/-/lightningcss-cli-freebsd-x64-1.30.2.tgz", { "os": "freebsd", "cpu": "x64" }, "sha512-17pN+hnxU2fPOGhGzMhPf2KZrIFFwEtrIZYshGDM/jhskJmDq57DAt5esh7PVDUjNkD7JDt3a7E9xJEVltc2Kg=="], + "@types/deep-eql": ["@types/deep-eql@4.0.2", "", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="], - "lightningcss-cli-linux-arm-gnueabihf": ["lightningcss-cli-linux-arm-gnueabihf@1.30.2", "http://localhost:4873/lightningcss-cli-linux-arm-gnueabihf/-/lightningcss-cli-linux-arm-gnueabihf-1.30.2.tgz", { "os": "linux", "cpu": "arm" }, "sha512-aaeEtZXqvNWDyHYCThugev1YPGlouvY9lE+o9QJg/Z5GTNb/1EM2TaTBGEwdG5m1ChYukc2lD5CPIEHjQ7qzSA=="], + "@types/estree": ["@types/estree@1.0.7", "", {}, "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="], - "lightningcss-cli-linux-arm64-gnu": ["lightningcss-cli-linux-arm64-gnu@1.30.2", "http://localhost:4873/lightningcss-cli-linux-arm64-gnu/-/lightningcss-cli-linux-arm64-gnu-1.30.2.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-XhgByx2H85MeEWGtI0XR+ugtQRBc/bvRN8gSGdXa3YqVONmACsLj7shatVHmqVOaPgtnevKVKl7wtqfN9pW96A=="], + "@types/http-cache-semantics": ["@types/http-cache-semantics@4.0.4", "", {}, "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA=="], - "lightningcss-cli-linux-arm64-musl": ["lightningcss-cli-linux-arm64-musl@1.30.2", "http://localhost:4873/lightningcss-cli-linux-arm64-musl/-/lightningcss-cli-linux-arm64-musl-1.30.2.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-UR7/N/33b8sG9e07TccxJvWxvNdlMFglesdgv1fi+wMa8sbN3tBPXOGj67B5nlVWHskYD9bHLPahemRWxnNuHQ=="], + "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], - "lightningcss-cli-linux-x64-gnu": ["lightningcss-cli-linux-x64-gnu@1.30.2", "http://localhost:4873/lightningcss-cli-linux-x64-gnu/-/lightningcss-cli-linux-x64-gnu-1.30.2.tgz", { "os": "linux", "cpu": "x64" }, "sha512-W6U9LNo+4mCsEB22AIvtRVGp8NETN4by9U2AIRDzZbYZYb7W9+1H56xKzb/2ABQEAoDrh/7027I/XDheuGrlZg=="], + "@types/node": ["@types/node@24.0.1", "", { "dependencies": { "undici-types": "~7.8.0" } }, "sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw=="], - "lightningcss-cli-linux-x64-musl": ["lightningcss-cli-linux-x64-musl@1.30.2", "http://localhost:4873/lightningcss-cli-linux-x64-musl/-/lightningcss-cli-linux-x64-musl-1.30.2.tgz", { "os": "linux", "cpu": "x64" }, "sha512-Qe6hwTXmc37LnKPIyoY20EQgHsVoAeTUF389Bt7sJfK5JZPLm7EyVvqkO4DukCx4Dv4DSskU03o+qT1+s6UeVw=="], + "@types/trusted-types": ["@types/trusted-types@2.0.7", "", {}, "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="], - "lightningcss-cli-win32-arm64-msvc": ["lightningcss-cli-win32-arm64-msvc@1.30.2", "http://localhost:4873/lightningcss-cli-win32-arm64-msvc/-/lightningcss-cli-win32-arm64-msvc-1.30.2.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-PZrkKHhYncBRh/Xe2Voa7t7ors+zUMU8hm5qOLgR0W5NfhbwwjLBXa3+fFF+BVdpTeyjLGF1ovzKIWSF1rMN/g=="], + "@types/whatwg-mimetype": ["@types/whatwg-mimetype@3.0.2", "", {}, "sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA=="], - "lightningcss-cli-win32-x64-msvc": ["lightningcss-cli-win32-x64-msvc@1.30.2", "http://localhost:4873/lightningcss-cli-win32-x64-msvc/-/lightningcss-cli-win32-x64-msvc-1.30.2.tgz", { "os": "win32", "cpu": "x64" }, "sha512-5VUIS1Dcbkcy2SDr7vBlKfwpSx2BUlZwmvoRVWA+OkkLsQhVUtLUKheJJXsOFruBn9uV8FH8KPLkvTJzuGFLyQ=="], + "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.34.0", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.34.0", "@typescript-eslint/type-utils": "8.34.0", "@typescript-eslint/utils": "8.34.0", "@typescript-eslint/visitor-keys": "8.34.0", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.34.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-QXwAlHlbcAwNlEEMKQS2RCgJsgXrTJdjXT08xEgbPFa2yYQgVjBymxP5DrfrE7X7iodSzd9qBUHUycdyVJTW1w=="], - "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.30.2", "http://localhost:4873/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA=="], + "@typescript-eslint/parser": ["@typescript-eslint/parser@8.34.0", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.34.0", "@typescript-eslint/types": "8.34.0", "@typescript-eslint/typescript-estree": "8.34.0", "@typescript-eslint/visitor-keys": "8.34.0", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-vxXJV1hVFx3IXz/oy2sICsJukaBrtDEQSBiV48/YIV5KWjX1dO+bcIr/kCPrW6weKXvsaGKFNlwH0v2eYdRRbA=="], - "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.30.2", "http://localhost:4873/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ=="], + "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.34.0", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.34.0", "@typescript-eslint/types": "^8.34.0", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-iEgDALRf970/B2YExmtPMPF54NenZUf4xpL3wsCRx/lgjz6ul/l13R81ozP/ZNuXfnLCS+oPmG7JIxfdNYKELw=="], - "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.30.2", "http://localhost:4873/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz", { "os": "freebsd", "cpu": "x64" }, "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA=="], + "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.34.0", "", { "dependencies": { "@typescript-eslint/types": "8.34.0", "@typescript-eslint/visitor-keys": "8.34.0" } }, "sha512-9Ac0X8WiLykl0aj1oYQNcLZjHgBojT6cW68yAgZ19letYu+Hxd0rE0veI1XznSSst1X5lwnxhPbVdwjDRIomRw=="], - "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.30.2", "http://localhost:4873/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz", { "os": "linux", "cpu": "arm" }, "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA=="], + "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.34.0", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-+W9VYHKFIzA5cBeooqQxqNriAP0QeQ7xTiDuIOr71hzgffm3EL2hxwWBIIj4GuofIbKxGNarpKqIq6Q6YrShOA=="], - "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.30.2", "http://localhost:4873/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A=="], + "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.34.0", "", { "dependencies": { "@typescript-eslint/typescript-estree": "8.34.0", "@typescript-eslint/utils": "8.34.0", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-n7zSmOcUVhcRYC75W2pnPpbO1iwhJY3NLoHEtbJwJSNlVAZuwqu05zY3f3s2SDWWDSo9FdN5szqc73DCtDObAg=="], - "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.30.2", "http://localhost:4873/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA=="], + "@typescript-eslint/types": ["@typescript-eslint/types@8.34.0", "", {}, "sha512-9V24k/paICYPniajHfJ4cuAWETnt7Ssy+R0Rbcqo5sSFr3QEZ/8TSoUi9XeXVBGXCaLtwTOKSLGcInCAvyZeMA=="], - "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.30.2", "http://localhost:4873/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz", { "os": "linux", "cpu": "x64" }, "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w=="], + "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.34.0", "", { "dependencies": { "@typescript-eslint/project-service": "8.34.0", "@typescript-eslint/tsconfig-utils": "8.34.0", "@typescript-eslint/types": "8.34.0", "@typescript-eslint/visitor-keys": "8.34.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-rOi4KZxI7E0+BMqG7emPSK1bB4RICCpF7QD3KCLXn9ZvWoESsOMlHyZPAHyG04ujVplPaHbmEvs34m+wjgtVtg=="], - "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.30.2", "http://localhost:4873/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz", { "os": "linux", "cpu": "x64" }, "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA=="], + "@typescript-eslint/utils": ["@typescript-eslint/utils@8.34.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.34.0", "@typescript-eslint/types": "8.34.0", "@typescript-eslint/typescript-estree": "8.34.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-8L4tWatGchV9A1cKbjaavS6mwYwp39jql8xUmIIKJdm+qiaeHy5KMKlBrf30akXAWBzn2SqKsNOtSENWUwg7XQ=="], - "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.30.2", "http://localhost:4873/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ=="], + "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.34.0", "", { "dependencies": { "@typescript-eslint/types": "8.34.0", "eslint-visitor-keys": "^4.2.0" } }, "sha512-qHV7pW7E85A0x6qyrFn+O+q1k1p3tQCsqIZ1KZ5ESLXY57aTvUd3/a4rdPTeXisvhXn2VQG0VSKUqs8KHF2zcA=="], - "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.2", "http://localhost:4873/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz", { "os": "win32", "cpu": "x64" }, "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw=="], + "@typescript/lib-decorators": ["@better-typescript-lib/decorators@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-ZL90jrzAhnvDr/fbpJt3CgGZdWvAeoAWznp56/mHJRKrCwsaJ9uCPqU09D21FJkWsmZ2jkz+mwBI9+e5dzwFvg=="], - "lines-and-columns": ["lines-and-columns@1.2.4", "http://localhost:4873/lines-and-columns/-/lines-and-columns-1.2.4.tgz", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], + "@typescript/lib-dom": ["@better-typescript-lib/dom@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-tt0ZgcgxqwRL3oWa2xgtBnq7zJjBXqrtwQo6hvHEwsKNA5SD65FVrC+b1zTFTGvTLURGDIlq1kn3cB2quurVAA=="], - "linguist-languages": ["linguist-languages@8.2.0", "http://localhost:4873/linguist-languages/-/linguist-languages-8.2.0.tgz", {}, "sha512-KCUUH9x97QWYU0SXOCGxUrZR6cSfuQrMhABB7L/0I8N0LXOeaKe7+RZs7FAwvWCV2qKfZ4Wv1luLq4OfMezSJg=="], + "@typescript/lib-es2015": ["@better-typescript-lib/es2015@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-Xtg8WhxWAvBawWBOsAF3XurOHa18A7nvqYdfGYz4EXfrDvw32nod6zjf0it7/sDwcGIcms6wyRZyLkI4RP7e8Q=="], - "lit-html": ["lit-html@3.3.1", "http://localhost:4873/lit-html/-/lit-html-3.3.1.tgz", { "dependencies": { "@types/trusted-types": "^2.0.2" } }, "sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA=="], + "@typescript/lib-es2016": ["@better-typescript-lib/es2016@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-RFLgskFU2rt/5esIcWibJu8n9a4EjmP6hCh5kqULb+w5J0eE9gXnhU6IZ685+spY2nPw991IYwnUP5idtfiGjQ=="], - "locate-path": ["locate-path@6.0.0", "http://localhost:4873/locate-path/-/locate-path-6.0.0.tgz", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="], + "@typescript/lib-es2017": ["@better-typescript-lib/es2017@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-bgCJrI6h3d6jvZsnzsbdH7/HVAV2GYrbtiUnBxV/ZTJ+VDiHdSI8CvsjIAVYHmrzLDC7FBTU+B+O8YhQ+fsehA=="], - "lodash.merge": ["lodash.merge@4.6.2", "http://localhost:4873/lodash.merge/-/lodash.merge-4.6.2.tgz", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="], + "@typescript/lib-es2018": ["@better-typescript-lib/es2018@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-8rwLcK9SqzO6bCsa6fQkCrYtFMAs8b5Oz+Rhuh/RmKD/Ja6XvkuXvsA8k+Zf6LjzEc/1aHk3ooQaoPeyh5wVIw=="], - "lodash.truncate": ["lodash.truncate@4.4.2", "http://localhost:4873/lodash.truncate/-/lodash.truncate-4.4.2.tgz", {}, "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw=="], + "@typescript/lib-es2019": ["@better-typescript-lib/es2019@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-S16xjOz1GJ1N9c7cdk+jywkkKjagQI8ojP9wBABU4876rv6Ng64iYVBG6IOpPcQ3eSIbnWSZVk4h4kCyJt1sKA=="], - "mathml-tag-names": ["mathml-tag-names@2.1.3", "http://localhost:4873/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", {}, "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg=="], + "@typescript/lib-es2020": ["@better-typescript-lib/es2020@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-TZMzKXvPXrxT25nhuA43uUbpBagwi5jjxfBcMPZQwbDfFAemO0oa96tQCw8L5oKxN/uxFLhRZuEwLRLVrtcjFw=="], - "mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.2", "http://localhost:4873/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA=="], + "@typescript/lib-es2021": ["@better-typescript-lib/es2021@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-TCc6rj/uj3SHO9SPmsUqT3uRuZgFF2+ZLsKmA6+vQZDDVBQnelQHuooUhUWz49dh9TzntEI46x+yXen+UHfBGw=="], - "mdast-util-to-string": ["mdast-util-to-string@4.0.0", "http://localhost:4873/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", { "dependencies": { "@types/mdast": "^4.0.0" } }, "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg=="], + "@typescript/lib-es2022": ["@better-typescript-lib/es2022@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-Gu5MihDWyEgEd7gXXmMmh2lwyZDPlJIEU8v7Mfeqlk7BfYmS4Raww7f1WYGlXT01zAUELE9vOQdOb+jWG+9N1A=="], - "mdn-data": ["mdn-data@2.12.2", "http://localhost:4873/mdn-data/-/mdn-data-2.12.2.tgz", {}, "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="], + "@typescript/lib-es2023": ["@better-typescript-lib/es2023@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-Ezo4X5hM5bZx9LTPwexvpn1dq+JO+Od6P661pVjMoFA1eUm13SxGox2YIeISFAnWmJyLrcA9ZDr9+1cYlbeZzA=="], - "meow": ["meow@13.2.0", "http://localhost:4873/meow/-/meow-13.2.0.tgz", {}, "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA=="], + "@typescript/lib-es2024": ["@better-typescript-lib/es2024@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-1Gix0YIF/NkCid7W+/bOMivG3vIUYfOfpUNx94UDRmkTHTQa3/Vu/X2Mjes8Cu60fBhcfscMBC6QY0emStK79w=="], - "merge2": ["merge2@1.4.1", "http://localhost:4873/merge2/-/merge2-1.4.1.tgz", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="], + "@typescript/lib-es5": ["@better-typescript-lib/es5@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-Efdc4z0hL+HQvcKmsuKtypYcwREUjm1U17eE9J3oXQ2icjR6bAD5IEgFX2gSV2/Ad1KGeBS9gakLxYvDP1G0eQ=="], - "micromark": ["micromark@4.0.2", "http://localhost:4873/micromark/-/micromark-4.0.2.tgz", { "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "micromark-core-commonmark": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-combine-extensions": "^2.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-encode": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-subtokenize": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA=="], + "@typescript/lib-es6": ["@better-typescript-lib/es6@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-zjl9jCTXwWx0QRSv5ILADM1wEgLq40VzBFURVHXg0D8LYv2KYVA7ICdcJZ2/DxoLhaukJm42mllRPjr/Bylw/A=="], - "micromark-core-commonmark": ["micromark-core-commonmark@2.0.3", "http://localhost:4873/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", { "dependencies": { "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "micromark-factory-destination": "^2.0.0", "micromark-factory-label": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-factory-title": "^2.0.0", "micromark-factory-whitespace": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-classify-character": "^2.0.0", "micromark-util-html-tag-name": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-subtokenize": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg=="], + "@typescript/lib-esnext": ["@better-typescript-lib/esnext@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-NTWWr05QE2/oes0xEiy84on87gzzEWyk0vwPTVgcuWvgtBwDe9sIeGJQSO4vfc7ZP+s3FPBqeSPiAlB7rZi68w=="], - "micromark-factory-destination": ["micromark-factory-destination@2.0.1", "http://localhost:4873/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA=="], + "@typescript/lib-scripthost": ["@better-typescript-lib/scripthost@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-XwpujOfKtEn0oXodg8Rzm7ULu4OscK0l88ozWp4/q114k5vVd/1d90Q8nEIlB2RR8eqcGNkBG+Tcaj0qiaaJ1A=="], - "micromark-factory-label": ["micromark-factory-label@2.0.1", "http://localhost:4873/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", { "dependencies": { "devlop": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg=="], + "@typescript/lib-webworker": ["@better-typescript-lib/webworker@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-9jdYsSj7YWGixeVok7xZSV+OHpOxMBEcuw+zPHj2462LS812Xq2Vs5Kk00PoFjVXolgQm6naXDG1Wa+x445BPQ=="], - "micromark-factory-space": ["micromark-factory-space@2.0.1", "http://localhost:4873/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg=="], + "@vitejs/plugin-legacy": ["@vitejs/plugin-legacy@6.1.1", "", { "dependencies": { "@babel/core": "^7.26.10", "@babel/preset-env": "^7.26.9", "browserslist": "^4.24.4", "browserslist-to-esbuild": "^2.1.1", "core-js": "^3.41.0", "magic-string": "^0.30.17", "regenerator-runtime": "^0.14.1", "systemjs": "^6.15.1" }, "peerDependencies": { "terser": "^5.16.0", "vite": "^6.0.0" } }, "sha512-BvusL+mYZ0q5qS5Rq3D70QxZBmhyiHRaXLtYJHH5AEsAmdSqJR4xe5KwMi1H3w8/9lVJwhkLYqFQ9vmWYWy6kA=="], - "micromark-factory-title": ["micromark-factory-title@2.0.1", "http://localhost:4873/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", { "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw=="], + "@vitest/expect": ["@vitest/expect@3.2.3", "", { "dependencies": { "@types/chai": "^5.2.2", "@vitest/spy": "3.2.3", "@vitest/utils": "3.2.3", "chai": "^5.2.0", "tinyrainbow": "^2.0.0" } }, "sha512-W2RH2TPWVHA1o7UmaFKISPvdicFJH+mjykctJFoAkUw+SPTJTGjUNdKscFBrqM7IPnCVu6zihtKYa7TkZS1dkQ=="], - "micromark-factory-whitespace": ["micromark-factory-whitespace@2.0.1", "http://localhost:4873/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", { "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ=="], + "@vitest/mocker": ["@vitest/mocker@3.2.3", "", { "dependencies": { "@vitest/spy": "3.2.3", "estree-walker": "^3.0.3", "magic-string": "^0.30.17" }, "peerDependencies": { "msw": "^2.4.9", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "optionalPeers": ["msw", "vite"] }, "sha512-cP6fIun+Zx8he4rbWvi+Oya6goKQDZK+Yq4hhlggwQBbrlOQ4qtZ+G4nxB6ZnzI9lyIb+JnvyiJnPC2AGbKSPA=="], - "micromark-util-character": ["micromark-util-character@2.1.1", "http://localhost:4873/micromark-util-character/-/micromark-util-character-2.1.1.tgz", { "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q=="], + "@vitest/pretty-format": ["@vitest/pretty-format@3.2.3", "", { "dependencies": { "tinyrainbow": "^2.0.0" } }, "sha512-yFglXGkr9hW/yEXngO+IKMhP0jxyFw2/qys/CK4fFUZnSltD+MU7dVYGrH8rvPcK/O6feXQA+EU33gjaBBbAng=="], - "micromark-util-chunked": ["micromark-util-chunked@2.0.1", "http://localhost:4873/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA=="], + "@vitest/runner": ["@vitest/runner@3.2.3", "", { "dependencies": { "@vitest/utils": "3.2.3", "pathe": "^2.0.3", "strip-literal": "^3.0.0" } }, "sha512-83HWYisT3IpMaU9LN+VN+/nLHVBCSIUKJzGxC5RWUOsK1h3USg7ojL+UXQR3b4o4UBIWCYdD2fxuzM7PQQ1u8w=="], - "micromark-util-classify-character": ["micromark-util-classify-character@2.0.1", "http://localhost:4873/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q=="], + "@vitest/snapshot": ["@vitest/snapshot@3.2.3", "", { "dependencies": { "@vitest/pretty-format": "3.2.3", "magic-string": "^0.30.17", "pathe": "^2.0.3" } }, "sha512-9gIVWx2+tysDqUmmM1L0hwadyumqssOL1r8KJipwLx5JVYyxvVRfxvMq7DaWbZZsCqZnu/dZedaZQh4iYTtneA=="], - "micromark-util-combine-extensions": ["micromark-util-combine-extensions@2.0.1", "http://localhost:4873/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", { "dependencies": { "micromark-util-chunked": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg=="], + "@vitest/spy": ["@vitest/spy@3.2.3", "", { "dependencies": { "tinyspy": "^4.0.3" } }, "sha512-JHu9Wl+7bf6FEejTCREy+DmgWe+rQKbK+y32C/k5f4TBIAlijhJbRBIRIOCEpVevgRsCQR2iHRUH2/qKVM/plw=="], - "micromark-util-decode-numeric-character-reference": ["micromark-util-decode-numeric-character-reference@2.0.2", "http://localhost:4873/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw=="], + "@vitest/ui": ["@vitest/ui@3.2.3", "", { "dependencies": { "@vitest/utils": "3.2.3", "fflate": "^0.8.2", "flatted": "^3.3.3", "pathe": "^2.0.3", "sirv": "^3.0.1", "tinyglobby": "^0.2.14", "tinyrainbow": "^2.0.0" }, "peerDependencies": { "vitest": "3.2.3" } }, "sha512-9aR2tY/WT7GRHGEH/9sSIipJqeA21Eh3C6xmiOVmfyBCFmezUSUFLalpaSmRHlRzWCKQU10yz3AHhKuYcdnZGQ=="], - "micromark-util-decode-string": ["micromark-util-decode-string@2.0.1", "http://localhost:4873/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", { "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-symbol": "^2.0.0" } }, "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ=="], + "@vitest/utils": ["@vitest/utils@3.2.3", "", { "dependencies": { "@vitest/pretty-format": "3.2.3", "loupe": "^3.1.3", "tinyrainbow": "^2.0.0" } }, "sha512-4zFBCU5Pf+4Z6v+rwnZ1HU1yzOKKvDkMXZrymE2PBlbjKJRlrOxbvpfPSvJTGRIwGoahaOGvp+kbCoxifhzJ1Q=="], - "micromark-util-encode": ["micromark-util-encode@2.0.1", "http://localhost:4873/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", {}, "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw=="], + "@xhmikosr/archive-type": ["@xhmikosr/archive-type@7.0.0", "", { "dependencies": { "file-type": "^19.0.0" } }, "sha512-sIm84ZneCOJuiy3PpWR5bxkx3HaNt1pqaN+vncUBZIlPZCq8ASZH+hBVdu5H8znR7qYC6sKwx+ie2Q7qztJTxA=="], - "micromark-util-html-tag-name": ["micromark-util-html-tag-name@2.0.1", "http://localhost:4873/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", {}, "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA=="], + "@xhmikosr/bin-check": ["@xhmikosr/bin-check@7.0.3", "", { "dependencies": { "execa": "^5.1.1", "isexe": "^2.0.0" } }, "sha512-4UnCLCs8DB+itHJVkqFp9Zjg+w/205/J2j2wNBsCEAm/BuBmtua2hhUOdAMQE47b1c7P9Xmddj0p+X1XVsfHsA=="], - "micromark-util-normalize-identifier": ["micromark-util-normalize-identifier@2.0.1", "http://localhost:4873/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q=="], + "@xhmikosr/bin-wrapper": ["@xhmikosr/bin-wrapper@13.0.5", "", { "dependencies": { "@xhmikosr/bin-check": "^7.0.3", "@xhmikosr/downloader": "^15.0.1", "@xhmikosr/os-filter-obj": "^3.0.0", "bin-version-check": "^5.1.0" } }, "sha512-DT2SAuHDeOw0G5bs7wZbQTbf4hd8pJ14tO0i4cWhRkIJfgRdKmMfkDilpaJ8uZyPA0NVRwasCNAmMJcWA67osw=="], - "micromark-util-resolve-all": ["micromark-util-resolve-all@2.0.1", "http://localhost:4873/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", { "dependencies": { "micromark-util-types": "^2.0.0" } }, "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg=="], + "@xhmikosr/decompress": ["@xhmikosr/decompress@10.0.1", "", { "dependencies": { "@xhmikosr/decompress-tar": "^8.0.1", "@xhmikosr/decompress-tarbz2": "^8.0.1", "@xhmikosr/decompress-targz": "^8.0.1", "@xhmikosr/decompress-unzip": "^7.0.0", "graceful-fs": "^4.2.11", "make-dir": "^4.0.0", "strip-dirs": "^3.0.0" } }, "sha512-6uHnEEt5jv9ro0CDzqWlFgPycdE+H+kbJnwyxgZregIMLQ7unQSCNVsYG255FoqU8cP46DyggI7F7LohzEl8Ag=="], - "micromark-util-sanitize-uri": ["micromark-util-sanitize-uri@2.0.1", "http://localhost:4873/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-encode": "^2.0.0", "micromark-util-symbol": "^2.0.0" } }, "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ=="], + "@xhmikosr/decompress-tar": ["@xhmikosr/decompress-tar@8.0.1", "", { "dependencies": { "file-type": "^19.0.0", "is-stream": "^2.0.1", "tar-stream": "^3.1.7" } }, "sha512-dpEgs0cQKJ2xpIaGSO0hrzz3Kt8TQHYdizHsgDtLorWajuHJqxzot9Hbi0huRxJuAGG2qiHSQkwyvHHQtlE+fg=="], - "micromark-util-subtokenize": ["micromark-util-subtokenize@2.1.0", "http://localhost:4873/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", { "dependencies": { "devlop": "^1.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA=="], + "@xhmikosr/decompress-tarbz2": ["@xhmikosr/decompress-tarbz2@8.0.2", "", { "dependencies": { "@xhmikosr/decompress-tar": "^8.0.1", "file-type": "^19.6.0", "is-stream": "^2.0.1", "seek-bzip": "^2.0.0", "unbzip2-stream": "^1.4.3" } }, "sha512-p5A2r/AVynTQSsF34Pig6olt9CvRj6J5ikIhzUd3b57pUXyFDGtmBstcw+xXza0QFUh93zJsmY3zGeNDlR2AQQ=="], - "micromark-util-symbol": ["micromark-util-symbol@2.0.1", "http://localhost:4873/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", {}, "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q=="], + "@xhmikosr/decompress-targz": ["@xhmikosr/decompress-targz@8.0.1", "", { "dependencies": { "@xhmikosr/decompress-tar": "^8.0.1", "file-type": "^19.0.0", "is-stream": "^2.0.1" } }, "sha512-mvy5AIDIZjQ2IagMI/wvauEiSNHhu/g65qpdM4EVoYHUJBAmkQWqcPJa8Xzi1aKVTmOA5xLJeDk7dqSjlHq8Mg=="], - "micromark-util-types": ["micromark-util-types@2.0.2", "http://localhost:4873/micromark-util-types/-/micromark-util-types-2.0.2.tgz", {}, "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA=="], + "@xhmikosr/decompress-unzip": ["@xhmikosr/decompress-unzip@7.0.0", "", { "dependencies": { "file-type": "^19.0.0", "get-stream": "^6.0.1", "yauzl": "^3.1.2" } }, "sha512-GQMpzIpWTsNr6UZbISawsGI0hJ4KA/mz5nFq+cEoPs12UybAqZWKbyIaZZyLbJebKl5FkLpsGBkrplJdjvUoSQ=="], - "micromatch": ["micromatch@4.0.8", "http://localhost:4873/micromatch/-/micromatch-4.0.8.tgz", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="], + "@xhmikosr/downloader": ["@xhmikosr/downloader@15.0.1", "", { "dependencies": { "@xhmikosr/archive-type": "^7.0.0", "@xhmikosr/decompress": "^10.0.1", "content-disposition": "^0.5.4", "defaults": "^3.0.0", "ext-name": "^5.0.0", "file-type": "^19.0.0", "filenamify": "^6.0.0", "get-stream": "^6.0.1", "got": "^13.0.0" } }, "sha512-fiuFHf3Dt6pkX8HQrVBsK0uXtkgkVlhrZEh8b7VgoDqFf+zrgFBPyrwCqE/3nDwn3hLeNz+BsrS7q3mu13Lp1g=="], - "minimatch": ["minimatch@3.1.2", "http://localhost:4873/minimatch/-/minimatch-3.1.2.tgz", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + "@xhmikosr/os-filter-obj": ["@xhmikosr/os-filter-obj@3.0.0", "", { "dependencies": { "arch": "^3.0.0" } }, "sha512-siPY6BD5dQ2SZPl3I0OZBHL27ZqZvLEosObsZRQ1NUB8qcxegwt0T9eKtV96JMFQpIz1elhkzqOg4c/Ri6Dp9A=="], - "minimist": ["minimist@1.2.8", "http://localhost:4873/minimist/-/minimist-1.2.8.tgz", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="], + "@xml-tools/parser": ["@xml-tools/parser@1.0.11", "", { "dependencies": { "chevrotain": "7.1.1" } }, "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA=="], - "ms": ["ms@2.1.3", "http://localhost:4873/ms/-/ms-2.1.3.tgz", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + "a11y-dialog": ["a11y-dialog@8.1.3", "", { "dependencies": { "focusable-selectors": "^0.8.0" } }, "sha512-fA1RKuGEeDnfqSUeigf0Yec8SHsn7Qng/V0Tw4lcwbwLl+4bigxqxm8b7UdBhl6cqGmKO/4USRXU1lkCdpW0/g=="], - "msgpackr": ["msgpackr@1.11.5", "http://localhost:4873/msgpackr/-/msgpackr-1.11.5.tgz", { "optionalDependencies": { "msgpackr-extract": "^3.0.2" } }, "sha512-UjkUHN0yqp9RWKy0Lplhh+wlpdt9oQBYgULZOiFhV3VclSF1JnSQWZ5r9gORQlNYaUKQoR8itv7g7z1xDDuACA=="], + "acorn": ["acorn@8.14.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="], - "msgpackr-extract": ["msgpackr-extract@3.0.3", "http://localhost:4873/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", { "dependencies": { "node-gyp-build-optional-packages": "5.2.2" }, "optionalDependencies": { "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" }, "bin": { "download-msgpackr-prebuilds": "bin/download-prebuilds.js" } }, "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA=="], + "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], - "multimatch": ["multimatch@5.0.0", "http://localhost:4873/multimatch/-/multimatch-5.0.0.tgz", { "dependencies": { "@types/minimatch": "^3.0.3", "array-differ": "^3.0.0", "array-union": "^2.1.0", "arrify": "^2.0.1", "minimatch": "^3.0.4" } }, "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA=="], + "ajv": ["ajv@6.12.6", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="], - "multipasta": ["multipasta@0.2.7", "http://localhost:4873/multipasta/-/multipasta-0.2.7.tgz", {}, "sha512-KPA58d68KgGil15oDqXjkUBEBYc00XvbPj5/X+dyzeo/lWm9Nc25pQRlf1D+gv4OpK7NM0J1odrbu9JNNGvynA=="], + "ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "nanoid": ["nanoid@3.3.11", "http://localhost:4873/nanoid/-/nanoid-3.3.11.tgz", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], + "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], - "natural-compare": ["natural-compare@1.4.0", "http://localhost:4873/natural-compare/-/natural-compare-1.4.0.tgz", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], + "arch": ["arch@3.0.0", "", {}, "sha512-AmIAC+Wtm2AU8lGfTtHsw0Y9Qtftx2YXEEtiBP10xFUtMOA+sHHx6OAddyL52mUKh1vsXQ6/w1mVDptZCyUt4Q=="], - "natural-orderby": ["natural-orderby@5.0.0", "http://localhost:4873/natural-orderby/-/natural-orderby-5.0.0.tgz", {}, "sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg=="], + "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], - "nimble-html": ["nimble-html@0.1.5", "http://localhost:4873/nimble-html/-/nimble-html-0.1.5.tgz", {}, "sha512-PqVXPTQ5Kcb6ZL14i+3n75oUKBRFjlMnt4skoBQuX4HweHpES+3ufwiV0RgfuBGdmF62nxcEMT4pddnjJFgFMA=="], + "array-timsort": ["array-timsort@1.0.3", "", {}, "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ=="], - "node-addon-api": ["node-addon-api@7.1.1", "http://localhost:4873/node-addon-api/-/node-addon-api-7.1.1.tgz", {}, "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ=="], + "array-union": ["array-union@2.1.0", "", {}, "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="], - "node-gyp-build-optional-packages": ["node-gyp-build-optional-packages@5.2.2", "http://localhost:4873/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", { "dependencies": { "detect-libc": "^2.0.1" }, "bin": { "node-gyp-build-optional-packages": "bin.js", "node-gyp-build-optional-packages-optional": "optional.js", "node-gyp-build-optional-packages-test": "build-test.js" } }, "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw=="], + "asn1.js": ["asn1.js@4.10.1", "", { "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" } }, "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw=="], - "node-releases": ["node-releases@2.0.27", "http://localhost:4873/node-releases/-/node-releases-2.0.27.tgz", {}, "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA=="], + "assert": ["assert@2.1.0", "", { "dependencies": { "call-bind": "^1.0.2", "is-nan": "^1.3.2", "object-is": "^1.1.5", "object.assign": "^4.1.4", "util": "^0.12.5" } }, "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw=="], - "normalize-path": ["normalize-path@3.0.0", "http://localhost:4873/normalize-path/-/normalize-path-3.0.0.tgz", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], + "assertion-error": ["assertion-error@2.0.1", "", {}, "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA=="], - "object-deep-merge": ["object-deep-merge@2.0.0", "http://localhost:4873/object-deep-merge/-/object-deep-merge-2.0.0.tgz", {}, "sha512-3DC3UMpeffLTHiuXSy/UG4NOIYTLlY9u3V82+djSCLYClWobZiS4ivYzpIUWrRY/nfsJ8cWsKyG3QfyLePmhvg=="], + "astral-regex": ["astral-regex@2.0.0", "", {}, "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="], - "once": ["once@1.4.0", "http://localhost:4873/once/-/once-1.4.0.tgz", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="], + "available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="], - "optionator": ["optionator@0.9.4", "http://localhost:4873/optionator/-/optionator-0.9.4.tgz", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="], + "b4a": ["b4a@1.6.7", "", {}, "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg=="], - "oxc-resolver": ["oxc-resolver@11.13.2", "http://localhost:4873/oxc-resolver/-/oxc-resolver-11.13.2.tgz", { "optionalDependencies": { "@oxc-resolver/binding-android-arm-eabi": "11.13.2", "@oxc-resolver/binding-android-arm64": "11.13.2", "@oxc-resolver/binding-darwin-arm64": "11.13.2", "@oxc-resolver/binding-darwin-x64": "11.13.2", "@oxc-resolver/binding-freebsd-x64": "11.13.2", "@oxc-resolver/binding-linux-arm-gnueabihf": "11.13.2", "@oxc-resolver/binding-linux-arm-musleabihf": "11.13.2", "@oxc-resolver/binding-linux-arm64-gnu": "11.13.2", "@oxc-resolver/binding-linux-arm64-musl": "11.13.2", "@oxc-resolver/binding-linux-ppc64-gnu": "11.13.2", "@oxc-resolver/binding-linux-riscv64-gnu": "11.13.2", "@oxc-resolver/binding-linux-riscv64-musl": "11.13.2", "@oxc-resolver/binding-linux-s390x-gnu": "11.13.2", "@oxc-resolver/binding-linux-x64-gnu": "11.13.2", "@oxc-resolver/binding-linux-x64-musl": "11.13.2", "@oxc-resolver/binding-wasm32-wasi": "11.13.2", "@oxc-resolver/binding-win32-arm64-msvc": "11.13.2", "@oxc-resolver/binding-win32-ia32-msvc": "11.13.2", "@oxc-resolver/binding-win32-x64-msvc": "11.13.2" } }, "sha512-1SXVyYQ9bqMX3uZo8Px81EG7jhZkO9PvvR5X9roY5TLYVm4ZA7pbPDNlYaDBBeF9U+YO3OeMNoHde52hrcCu8w=="], + "babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@0.4.12", "", { "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.6.3", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og=="], - "oxlint": ["oxlint@1.31.0", "http://localhost:4873/oxlint/-/oxlint-1.31.0.tgz", { "optionalDependencies": { "@oxlint/darwin-arm64": "1.31.0", "@oxlint/darwin-x64": "1.31.0", "@oxlint/linux-arm64-gnu": "1.31.0", "@oxlint/linux-arm64-musl": "1.31.0", "@oxlint/linux-x64-gnu": "1.31.0", "@oxlint/linux-x64-musl": "1.31.0", "@oxlint/win32-arm64": "1.31.0", "@oxlint/win32-x64": "1.31.0" }, "peerDependencies": { "oxlint-tsgolint": ">=0.8.1" }, "optionalPeers": ["oxlint-tsgolint"], "bin": { "oxlint": "bin/oxlint", "oxc_language_server": "bin/oxc_language_server" } }, "sha512-U+Z3VShi1zuLF2Hz/pm4vWJUBm5sDHjwSzj340tz4tS2yXg9H5PTipsZv+Yu/alg6Z7EM2cZPKGNBZAvmdfkQg=="], + "babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.11.1", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.3", "core-js-compat": "^3.40.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ=="], - "p-limit": ["p-limit@3.1.0", "http://localhost:4873/p-limit/-/p-limit-3.1.0.tgz", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], + "babel-plugin-polyfill-regenerator": ["babel-plugin-polyfill-regenerator@0.6.3", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.3" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q=="], - "p-locate": ["p-locate@5.0.0", "http://localhost:4873/p-locate/-/p-locate-5.0.0.tgz", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="], + "balanced-match": ["balanced-match@2.0.0", "", {}, "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA=="], - "parent-module": ["parent-module@1.0.1", "http://localhost:4873/parent-module/-/parent-module-1.0.1.tgz", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], + "bare-events": ["bare-events@2.5.4", "", {}, "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA=="], - "parse-imports-exports": ["parse-imports-exports@0.2.4", "http://localhost:4873/parse-imports-exports/-/parse-imports-exports-0.2.4.tgz", { "dependencies": { "parse-statements": "1.0.11" } }, "sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ=="], + "base64-js": ["base64-js@1.5.1", "", {}, "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="], - "parse-json": ["parse-json@5.2.0", "http://localhost:4873/parse-json/-/parse-json-5.2.0.tgz", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], + "better-typescript-lib": ["better-typescript-lib@2.11.0", "", { "dependencies": { "@typescript/lib-decorators": "npm:@better-typescript-lib/decorators@2.11.0", "@typescript/lib-dom": "npm:@better-typescript-lib/dom@2.11.0", "@typescript/lib-es2015": "npm:@better-typescript-lib/es2015@2.11.0", "@typescript/lib-es2016": "npm:@better-typescript-lib/es2016@2.11.0", "@typescript/lib-es2017": "npm:@better-typescript-lib/es2017@2.11.0", "@typescript/lib-es2018": "npm:@better-typescript-lib/es2018@2.11.0", "@typescript/lib-es2019": "npm:@better-typescript-lib/es2019@2.11.0", "@typescript/lib-es2020": "npm:@better-typescript-lib/es2020@2.11.0", "@typescript/lib-es2021": "npm:@better-typescript-lib/es2021@2.11.0", "@typescript/lib-es2022": "npm:@better-typescript-lib/es2022@2.11.0", "@typescript/lib-es2023": "npm:@better-typescript-lib/es2023@2.11.0", "@typescript/lib-es2024": "npm:@better-typescript-lib/es2024@2.11.0", "@typescript/lib-es5": "npm:@better-typescript-lib/es5@2.11.0", "@typescript/lib-es6": "npm:@better-typescript-lib/es6@2.11.0", "@typescript/lib-esnext": "npm:@better-typescript-lib/esnext@2.11.0", "@typescript/lib-scripthost": "npm:@better-typescript-lib/scripthost@2.11.0", "@typescript/lib-webworker": "npm:@better-typescript-lib/webworker@2.11.0" }, "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-dwaPodcG5lVepyeoEmwRSpRqKWOso5CRktnMcPKlE4jjcHLGjkBhZXIMe6EFD9ALG/Ru3kwOO1t6TNNQ6Pf1Jw=="], - "parse-statements": ["parse-statements@1.0.11", "http://localhost:4873/parse-statements/-/parse-statements-1.0.11.tgz", {}, "sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA=="], + "bin-version": ["bin-version@6.0.0", "", { "dependencies": { "execa": "^5.0.0", "find-versions": "^5.0.0" } }, "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw=="], - "path-exists": ["path-exists@4.0.0", "http://localhost:4873/path-exists/-/path-exists-4.0.0.tgz", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], + "bin-version-check": ["bin-version-check@5.1.0", "", { "dependencies": { "bin-version": "^6.0.0", "semver": "^7.5.3", "semver-truncate": "^3.0.0" } }, "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g=="], - "path-key": ["path-key@3.1.1", "http://localhost:4873/path-key/-/path-key-3.1.1.tgz", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="], + "bn.js": ["bn.js@5.2.1", "", {}, "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="], - "path-parse": ["path-parse@1.0.7", "http://localhost:4873/path-parse/-/path-parse-1.0.7.tgz", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="], + "brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], - "path-type": ["path-type@4.0.0", "http://localhost:4873/path-type/-/path-type-4.0.0.tgz", {}, "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="], + "braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], - "php-parser": ["php-parser@3.2.5", "http://localhost:4873/php-parser/-/php-parser-3.2.5.tgz", {}, "sha512-M1ZYlALFFnESbSdmRtTQrBFUHSriHgPhgqtTF/LCbZM4h7swR5PHtUceB2Kzby5CfqcsYwBn7OXTJ0+8Sajwkw=="], + "brorand": ["brorand@1.1.0", "", {}, "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="], - "picocolors": ["picocolors@1.1.1", "http://localhost:4873/picocolors/-/picocolors-1.1.1.tgz", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + "browser-resolve": ["browser-resolve@2.0.0", "", { "dependencies": { "resolve": "^1.17.0" } }, "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ=="], - "picomatch": ["picomatch@4.0.3", "http://localhost:4873/picomatch/-/picomatch-4.0.3.tgz", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="], + "browserify-aes": ["browserify-aes@1.2.0", "", { "dependencies": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", "create-hash": "^1.1.0", "evp_bytestokey": "^1.0.3", "inherits": "^2.0.1", "safe-buffer": "^5.0.1" } }, "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA=="], - "playwright": ["playwright@1.57.0", "http://localhost:4873/playwright/-/playwright-1.57.0.tgz", { "dependencies": { "playwright-core": "1.57.0" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-ilYQj1s8sr2ppEJ2YVadYBN0Mb3mdo9J0wQ+UuDhzYqURwSoW4n1Xs5vs7ORwgDGmyEh33tRMeS8KhdkMoLXQw=="], + "browserify-cipher": ["browserify-cipher@1.0.1", "", { "dependencies": { "browserify-aes": "^1.0.4", "browserify-des": "^1.0.0", "evp_bytestokey": "^1.0.0" } }, "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w=="], - "playwright-core": ["playwright-core@1.57.0", "http://localhost:4873/playwright-core/-/playwright-core-1.57.0.tgz", { "bin": { "playwright-core": "cli.js" } }, "sha512-agTcKlMw/mjBWOnD6kFZttAAGHgi/Nw0CZ2o6JqWSbMlI219lAFLZZCyqByTsvVAJq5XA5H8cA6PrvBRpBWEuQ=="], + "browserify-des": ["browserify-des@1.0.2", "", { "dependencies": { "cipher-base": "^1.0.1", "des.js": "^1.0.0", "inherits": "^2.0.1", "safe-buffer": "^5.1.2" } }, "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A=="], - "pluralize": ["pluralize@8.0.0", "http://localhost:4873/pluralize/-/pluralize-8.0.0.tgz", {}, "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA=="], + "browserify-rsa": ["browserify-rsa@4.1.1", "", { "dependencies": { "bn.js": "^5.2.1", "randombytes": "^2.1.0", "safe-buffer": "^5.2.1" } }, "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ=="], - "postcss": ["postcss@8.5.6", "http://localhost:4873/postcss/-/postcss-8.5.6.tgz", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], + "browserify-sign": ["browserify-sign@4.2.3", "", { "dependencies": { "bn.js": "^5.2.1", "browserify-rsa": "^4.1.0", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", "elliptic": "^6.5.5", "hash-base": "~3.0", "inherits": "^2.0.4", "parse-asn1": "^5.1.7", "readable-stream": "^2.3.8", "safe-buffer": "^5.2.1" } }, "sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw=="], - "postcss-media-query-parser": ["postcss-media-query-parser@0.2.3", "http://localhost:4873/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", {}, "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig=="], + "browserify-zlib": ["browserify-zlib@0.2.0", "", { "dependencies": { "pako": "~1.0.5" } }, "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="], - "postcss-resolve-nested-selector": ["postcss-resolve-nested-selector@0.1.6", "http://localhost:4873/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", {}, "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw=="], + "browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], - "postcss-safe-parser": ["postcss-safe-parser@7.0.1", "http://localhost:4873/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz", { "peerDependencies": { "postcss": "^8.4.31" } }, "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A=="], + "browserslist-to-esbuild": ["browserslist-to-esbuild@2.1.1", "", { "dependencies": { "meow": "^13.0.0" }, "peerDependencies": { "browserslist": "*" }, "bin": { "browserslist-to-esbuild": "cli/index.js" } }, "sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw=="], - "postcss-scss": ["postcss-scss@4.0.9", "http://localhost:4873/postcss-scss/-/postcss-scss-4.0.9.tgz", { "peerDependencies": { "postcss": "^8.4.29" } }, "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A=="], + "buffer": ["buffer@5.7.1", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="], - "postcss-selector-parser": ["postcss-selector-parser@7.1.0", "http://localhost:4873/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + "buffer-builder": ["buffer-builder@0.2.0", "", {}, "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg=="], - "postcss-sorting": ["postcss-sorting@9.1.0", "http://localhost:4873/postcss-sorting/-/postcss-sorting-9.1.0.tgz", { "peerDependencies": { "postcss": "^8.4.20" } }, "sha512-Mn8KJ45HNNG6JBpBizXcyf6LqY/qyqetGcou/nprDnFwBFBLGj0j/sNKV2lj2KMOVOwdXu14aEzqJv8CIV6e8g=="], + "buffer-crc32": ["buffer-crc32@0.2.13", "", {}, "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="], - "postcss-value-parser": ["postcss-value-parser@4.2.0", "http://localhost:4873/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="], + "buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="], - "prelude-ls": ["prelude-ls@1.2.1", "http://localhost:4873/prelude-ls/-/prelude-ls-1.2.1.tgz", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], + "buffer-xor": ["buffer-xor@1.0.3", "", {}, "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="], - "prettier": ["prettier@3.7.4", "http://localhost:4873/prettier/-/prettier-3.7.4.tgz", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA=="], + "builtin-status-codes": ["builtin-status-codes@3.0.0", "", {}, "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="], - "prettier-plugin-curly": ["prettier-plugin-curly@0.4.1", "http://localhost:4873/prettier-plugin-curly/-/prettier-plugin-curly-0.4.1.tgz", { "peerDependencies": { "prettier": "^3" } }, "sha512-Xc7zatoD0/08zYFv+hwnlqT5ekM81DCbBr73CWAsr1Fmx7qLQT/M0wfPx6w/+zfnmXH009xYvjzLUPcwzq7Fbw=="], + "cac": ["cac@6.7.14", "", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="], - "prettier-plugin-jsdoc": ["prettier-plugin-jsdoc@1.5.0", "http://localhost:4873/prettier-plugin-jsdoc/-/prettier-plugin-jsdoc-1.5.0.tgz", { "dependencies": { "binary-searching": "^2.0.5", "comment-parser": "^1.4.0", "mdast-util-from-markdown": "^2.0.0" }, "peerDependencies": { "prettier": "^3.0.0" } }, "sha512-Fehp5qkFQhNFcxUilDPEcqHX8AdP6oGyCRLatqRc0gLXv3qOtndTnnUxfHCYc26I4Lc1A4lVozAtWEE8o7ubUA=="], + "cacheable": ["cacheable@1.10.0", "", { "dependencies": { "hookified": "^1.8.2", "keyv": "^5.3.3" } }, "sha512-SSgQTAnhd7WlJXnGlIi4jJJOiHzgnM5wRMEPaXAU4kECTAMpBoYKoZ9i5zHmclIEZbxcu3j7yY/CF8DTmwIsHg=="], - "prettier-plugin-pkg": ["prettier-plugin-pkg@0.21.2", "http://localhost:4873/prettier-plugin-pkg/-/prettier-plugin-pkg-0.21.2.tgz", { "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-CSlM5+51B7yTKcoRWT4M3ImcdFHD5NUz0Xu2t8J03B761zu6J3BjSo/XleKp2kB0tH49K7oG5Uuqn6ldI5LRLg=="], + "cacheable-lookup": ["cacheable-lookup@7.0.0", "", {}, "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="], - "prettier-plugin-sh": ["prettier-plugin-sh@0.18.0", "http://localhost:4873/prettier-plugin-sh/-/prettier-plugin-sh-0.18.0.tgz", { "dependencies": { "@reteps/dockerfmt": "^0.3.6", "sh-syntax": "^0.5.8" }, "peerDependencies": { "prettier": "^3.6.0" } }, "sha512-cW1XL27FOJQ/qGHOW6IHwdCiNWQsAgK+feA8V6+xUTaH0cD3Mh+tFAtBvEEWvuY6hTDzRV943Fzeii+qMOh7nQ=="], + "cacheable-request": ["cacheable-request@10.2.14", "", { "dependencies": { "@types/http-cache-semantics": "^4.0.2", "get-stream": "^6.0.1", "http-cache-semantics": "^4.1.1", "keyv": "^4.5.3", "mimic-response": "^4.0.0", "normalize-url": "^8.0.0", "responselike": "^3.0.0" } }, "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ=="], - "punycode": ["punycode@2.3.1", "http://localhost:4873/punycode/-/punycode-2.3.1.tgz", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], + "call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - "pure-rand": ["pure-rand@6.1.0", "http://localhost:4873/pure-rand/-/pure-rand-6.1.0.tgz", {}, "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA=="], + "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.1", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g=="], - "purify-ts": ["purify-ts@2.1.2", "http://localhost:4873/purify-ts/-/purify-ts-2.1.2.tgz", { "dependencies": { "@types/json-schema": "7.0.15" } }, "sha512-v9RnHfoxZJZt5PeZork6zErRwYnGKxUiO7wk+NqPnJcG7AKjt97ut41WbGRMSUuMBexrXZsVNePSMcO9qPHODQ=="], + "call-bound": ["call-bound@1.0.3", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "get-intrinsic": "^1.2.6" } }, "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA=="], - "qified": ["qified@0.5.2", "http://localhost:4873/qified/-/qified-0.5.2.tgz", { "dependencies": { "hookified": "^1.13.0" } }, "sha512-7gJ6mxcQb9vUBOtbKm5mDevbe2uRcOEVp1g4gb/Q+oLntB3HY8eBhOYRxFI2mlDFlY1e4DOSCptzxarXRvzxCA=="], + "callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="], - "queue-microtask": ["queue-microtask@1.2.3", "http://localhost:4873/queue-microtask/-/queue-microtask-1.2.3.tgz", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="], + "caniuse-lite": ["caniuse-lite@1.0.30001718", "", {}, "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw=="], - "readable-stream": ["readable-stream@1.1.14", "http://localhost:4873/readable-stream/-/readable-stream-1.1.14.tgz", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", "isarray": "0.0.1", "string_decoder": "~0.10.x" } }, "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ=="], + "chai": ["chai@5.2.0", "", { "dependencies": { "assertion-error": "^2.0.1", "check-error": "^2.1.1", "deep-eql": "^5.0.1", "loupe": "^3.1.0", "pathval": "^2.0.0" } }, "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw=="], - "readdirp": ["readdirp@4.1.2", "http://localhost:4873/readdirp/-/readdirp-4.1.2.tgz", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="], + "chalk": ["chalk@5.4.1", "", {}, "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="], - "refa": ["refa@0.12.1", "http://localhost:4873/refa/-/refa-0.12.1.tgz", { "dependencies": { "@eslint-community/regexpp": "^4.8.0" } }, "sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g=="], + "chalk-template": ["chalk-template@1.1.0", "", { "dependencies": { "chalk": "^5.2.0" } }, "sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg=="], - "regexp-ast-analysis": ["regexp-ast-analysis@0.7.1", "http://localhost:4873/regexp-ast-analysis/-/regexp-ast-analysis-0.7.1.tgz", { "dependencies": { "@eslint-community/regexpp": "^4.8.0", "refa": "^0.12.1" } }, "sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A=="], + "check-error": ["check-error@2.1.1", "", {}, "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw=="], - "regexp-to-ast": ["regexp-to-ast@0.5.0", "http://localhost:4873/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz", {}, "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw=="], + "chevrotain": ["chevrotain@7.1.1", "", { "dependencies": { "regexp-to-ast": "0.5.0" } }, "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw=="], - "regexp-tree": ["regexp-tree@0.1.27", "http://localhost:4873/regexp-tree/-/regexp-tree-0.1.27.tgz", { "bin": { "regexp-tree": "bin/regexp-tree" } }, "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA=="], + "cipher-base": ["cipher-base@1.0.6", "", { "dependencies": { "inherits": "^2.0.4", "safe-buffer": "^5.2.1" } }, "sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw=="], - "regjsparser": ["regjsparser@0.13.0", "http://localhost:4873/regjsparser/-/regjsparser-0.13.0.tgz", { "dependencies": { "jsesc": "~3.1.0" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q=="], + "clear-module": ["clear-module@4.1.2", "", { "dependencies": { "parent-module": "^2.0.0", "resolve-from": "^5.0.0" } }, "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw=="], - "require-directory": ["require-directory@2.1.1", "http://localhost:4873/require-directory/-/require-directory-2.1.1.tgz", {}, "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="], + "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], - "require-from-string": ["require-from-string@2.0.2", "http://localhost:4873/require-from-string/-/require-from-string-2.0.2.tgz", {}, "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="], + "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], - "reserved-identifiers": ["reserved-identifiers@1.2.0", "http://localhost:4873/reserved-identifiers/-/reserved-identifiers-1.2.0.tgz", {}, "sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw=="], + "colord": ["colord@2.9.3", "", {}, "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="], - "resolve": ["resolve@1.22.11", "http://localhost:4873/resolve/-/resolve-1.22.11.tgz", { "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ=="], + "colorjs.io": ["colorjs.io@0.5.2", "", {}, "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw=="], - "resolve-from": ["resolve-from@5.0.0", "http://localhost:4873/resolve-from/-/resolve-from-5.0.0.tgz", {}, "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="], + "commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - "reusify": ["reusify@1.1.0", "http://localhost:4873/reusify/-/reusify-1.1.0.tgz", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="], + "comment-json": ["comment-json@4.2.5", "", { "dependencies": { "array-timsort": "^1.0.3", "core-util-is": "^1.0.3", "esprima": "^4.0.1", "has-own-prop": "^2.0.0", "repeat-string": "^1.6.1" } }, "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw=="], - "rolldown": ["rolldown@1.0.0-beta.53", "http://localhost:4873/rolldown/-/rolldown-1.0.0-beta.53.tgz", { "dependencies": { "@oxc-project/types": "=0.101.0", "@rolldown/pluginutils": "1.0.0-beta.53" }, "optionalDependencies": { "@rolldown/binding-android-arm64": "1.0.0-beta.53", "@rolldown/binding-darwin-arm64": "1.0.0-beta.53", "@rolldown/binding-darwin-x64": "1.0.0-beta.53", "@rolldown/binding-freebsd-x64": "1.0.0-beta.53", "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.53", "@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.53", "@rolldown/binding-linux-arm64-musl": "1.0.0-beta.53", "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.53", "@rolldown/binding-linux-x64-musl": "1.0.0-beta.53", "@rolldown/binding-openharmony-arm64": "1.0.0-beta.53", "@rolldown/binding-wasm32-wasi": "1.0.0-beta.53", "@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.53", "@rolldown/binding-win32-x64-msvc": "1.0.0-beta.53" }, "bin": { "rolldown": "bin/cli.mjs" } }, "sha512-Qd9c2p0XKZdgT5AYd+KgAMggJ8ZmCs3JnS9PTMWkyUfteKlfmKtxJbWTHkVakxwXs1Ub7jrRYVeFeF7N0sQxyw=="], + "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], - "run-parallel": ["run-parallel@1.2.0", "http://localhost:4873/run-parallel/-/run-parallel-1.2.0.tgz", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], + "console-browserify": ["console-browserify@1.2.0", "", {}, "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="], - "rxjs": ["rxjs@7.8.2", "http://localhost:4873/rxjs/-/rxjs-7.8.2.tgz", { "dependencies": { "tslib": "^2.1.0" } }, "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA=="], + "constants-browserify": ["constants-browserify@1.0.0", "", {}, "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="], - "safe-buffer": ["safe-buffer@5.2.1", "http://localhost:4873/safe-buffer/-/safe-buffer-5.2.1.tgz", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], + "content-disposition": ["content-disposition@0.5.4", "", { "dependencies": { "safe-buffer": "5.2.1" } }, "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="], - "sass": ["sass@1.93.3", "http://localhost:4873/sass/-/sass-1.93.3.tgz", { "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" }, "optionalDependencies": { "@parcel/watcher": "^2.4.1" }, "bin": { "sass": "sass.js" } }, "sha512-elOcIZRTM76dvxNAjqYrucTSI0teAF/L2Lv0s6f6b7FOwcwIuA357bIE871580AjHJuSvLIRUosgV+lIWx6Rgg=="], + "convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], - "sass-embedded": ["sass-embedded@1.93.3", "http://localhost:4873/sass-embedded/-/sass-embedded-1.93.3.tgz", { "dependencies": { "@bufbuild/protobuf": "^2.5.0", "buffer-builder": "^0.2.0", "colorjs.io": "^0.5.0", "immutable": "^5.0.2", "rxjs": "^7.4.0", "supports-color": "^8.1.1", "sync-child-process": "^1.0.2", "varint": "^6.0.0" }, "optionalDependencies": { "sass-embedded-all-unknown": "1.93.3", "sass-embedded-android-arm": "1.93.3", "sass-embedded-android-arm64": "1.93.3", "sass-embedded-android-riscv64": "1.93.3", "sass-embedded-android-x64": "1.93.3", "sass-embedded-darwin-arm64": "1.93.3", "sass-embedded-darwin-x64": "1.93.3", "sass-embedded-linux-arm": "1.93.3", "sass-embedded-linux-arm64": "1.93.3", "sass-embedded-linux-musl-arm": "1.93.3", "sass-embedded-linux-musl-arm64": "1.93.3", "sass-embedded-linux-musl-riscv64": "1.93.3", "sass-embedded-linux-musl-x64": "1.93.3", "sass-embedded-linux-riscv64": "1.93.3", "sass-embedded-linux-x64": "1.93.3", "sass-embedded-unknown-all": "1.93.3", "sass-embedded-win32-arm64": "1.93.3", "sass-embedded-win32-x64": "1.93.3" }, "bin": { "sass": "dist/bin/sass.js" } }, "sha512-+VUy01yfDqNmIVMd/LLKl2TTtY0ovZN0rTonh+FhKr65mFwIYgU9WzgIZKS7U9/SPCQvWTsTGx9jyt+qRm/XFw=="], + "core-js": ["core-js@3.41.0", "", {}, "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA=="], - "sass-embedded-all-unknown": ["sass-embedded-all-unknown@1.93.3", "http://localhost:4873/sass-embedded-all-unknown/-/sass-embedded-all-unknown-1.93.3.tgz", { "dependencies": { "sass": "1.93.3" }, "cpu": [ "!arm", "!x64", "!arm64", ] }, "sha512-3okGgnE41eg+CPLtAPletu6nQ4N0ij7AeW+Sl5Km4j29XcmqZQeFwYjHe1AlKTEgLi/UAONk1O8i8/lupeKMbw=="], + "core-js-compat": ["core-js-compat@3.40.0", "", { "dependencies": { "browserslist": "^4.24.3" } }, "sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ=="], - "sass-embedded-android-arm": ["sass-embedded-android-arm@1.93.3", "http://localhost:4873/sass-embedded-android-arm/-/sass-embedded-android-arm-1.93.3.tgz", { "os": "android", "cpu": "arm" }, "sha512-8xOw9bywfOD6Wv24BgCmgjkk6tMrsOTTHcb28KDxeJtFtoxiUyMbxo0vChpPAfp2Hyg2tFFKS60s0s4JYk+Raw=="], + "core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="], - "sass-embedded-android-arm64": ["sass-embedded-android-arm64@1.93.3", "http://localhost:4873/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.93.3.tgz", { "os": "android", "cpu": "arm64" }, "sha512-uqUl3Kt1IqdGVAcAdbmC+NwuUJy8tM+2ZnB7/zrt6WxWVShVCRdFnWR9LT8HJr7eJN7AU8kSXxaVX/gedanPsg=="], + "cosmiconfig": ["cosmiconfig@9.0.0", "", { "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg=="], - "sass-embedded-android-riscv64": ["sass-embedded-android-riscv64@1.93.3", "http://localhost:4873/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.93.3.tgz", { "os": "android", "cpu": "none" }, "sha512-2jNJDmo+3qLocjWqYbXiBDnfgwrUeZgZFHJIwAefU7Fn66Ot7rsXl+XPwlokaCbTpj7eMFIqsRAZ/uDueXNCJg=="], + "create-ecdh": ["create-ecdh@4.0.4", "", { "dependencies": { "bn.js": "^4.1.0", "elliptic": "^6.5.3" } }, "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A=="], - "sass-embedded-android-x64": ["sass-embedded-android-x64@1.93.3", "http://localhost:4873/sass-embedded-android-x64/-/sass-embedded-android-x64-1.93.3.tgz", { "os": "android", "cpu": "x64" }, "sha512-y0RoAU6ZenQFcjM9PjQd3cRqRTjqwSbtWLL/p68y2oFyh0QGN0+LQ826fc0ZvU/AbqCsAizkqjzOn6cRZJxTTQ=="], + "create-hash": ["create-hash@1.2.0", "", { "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", "md5.js": "^1.3.4", "ripemd160": "^2.0.1", "sha.js": "^2.4.0" } }, "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg=="], - "sass-embedded-darwin-arm64": ["sass-embedded-darwin-arm64@1.93.3", "http://localhost:4873/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.93.3.tgz", { "os": "darwin", "cpu": "arm64" }, "sha512-7zb/hpdMOdKteK17BOyyypemglVURd1Hdz6QGsggy60aUFfptTLQftLRg8r/xh1RbQAUKWFbYTNaM47J9yPxYg=="], + "create-hmac": ["create-hmac@1.1.7", "", { "dependencies": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", "inherits": "^2.0.1", "ripemd160": "^2.0.0", "safe-buffer": "^5.0.1", "sha.js": "^2.4.8" } }, "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="], - "sass-embedded-darwin-x64": ["sass-embedded-darwin-x64@1.93.3", "http://localhost:4873/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.93.3.tgz", { "os": "darwin", "cpu": "x64" }, "sha512-Ek1Vp8ZDQEe327Lz0b7h3hjvWH3u9XjJiQzveq74RPpJQ2q6d9LfWpjiRRohM4qK6o4XOHw1X10OMWPXJtdtWg=="], + "create-require": ["create-require@1.1.1", "", {}, "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="], - "sass-embedded-linux-arm": ["sass-embedded-linux-arm@1.93.3", "http://localhost:4873/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.93.3.tgz", { "os": "linux", "cpu": "arm" }, "sha512-yeiv2y+dp8B4wNpd3+JsHYD0mvpXSfov7IGyQ1tMIR40qv+ROkRqYiqQvAOXf76Qwh4Y9OaYZtLpnsPjfeq6mA=="], + "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], - "sass-embedded-linux-arm64": ["sass-embedded-linux-arm64@1.93.3", "http://localhost:4873/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.93.3.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-RBrHWgfd8Dd8w4fbmdRVXRrhh8oBAPyeWDTKAWw8ZEmuXfVl4ytjDuyxaVilh6rR1xTRTNpbaA/YWApBlLrrNw=="], + "crypto-browserify": ["crypto-browserify@3.12.1", "", { "dependencies": { "browserify-cipher": "^1.0.1", "browserify-sign": "^4.2.3", "create-ecdh": "^4.0.4", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", "diffie-hellman": "^5.0.3", "hash-base": "~3.0.4", "inherits": "^2.0.4", "pbkdf2": "^3.1.2", "public-encrypt": "^4.0.3", "randombytes": "^2.1.0", "randomfill": "^1.0.4" } }, "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ=="], - "sass-embedded-linux-musl-arm": ["sass-embedded-linux-musl-arm@1.93.3", "http://localhost:4873/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.93.3.tgz", { "os": "linux", "cpu": "arm" }, "sha512-fU0fwAwbp7sBE3h5DVU5UPzvaLg7a4yONfFWkkcCp6ZrOiPuGRHXXYriWQ0TUnWy4wE+svsVuWhwWgvlb/tkKg=="], + "cspell": ["cspell@9.0.2", "", { "dependencies": { "@cspell/cspell-json-reporter": "9.0.2", "@cspell/cspell-pipe": "9.0.2", "@cspell/cspell-types": "9.0.2", "@cspell/dynamic-import": "9.0.2", "@cspell/url": "9.0.2", "chalk": "^5.4.1", "chalk-template": "^1.1.0", "commander": "^14.0.0", "cspell-dictionary": "9.0.2", "cspell-gitignore": "9.0.2", "cspell-glob": "9.0.2", "cspell-io": "9.0.2", "cspell-lib": "9.0.2", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^9.1.0", "semver": "^7.7.2", "tinyglobby": "^0.2.13" }, "bin": { "cspell": "bin.mjs", "cspell-esm": "bin.mjs" } }, "sha512-VwPNTTivvv/NyovXUMcTYc7BaOgun7k8FhRWaVKxZPEsl/9r9WTLmQ1dNbHRq56LajH2b7wKGQYuRsfov3UWTg=="], - "sass-embedded-linux-musl-arm64": ["sass-embedded-linux-musl-arm64@1.93.3", "http://localhost:4873/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.93.3.tgz", { "os": "linux", "cpu": "arm64" }, "sha512-PS829l+eUng+9W4PFclXGb4uA2+965NHV3/Sa5U7qTywjeeUUYTZg70dJHSqvhrBEfCc2XJABeW3adLJbyQYkw=="], + "cspell-config-lib": ["cspell-config-lib@9.0.2", "", { "dependencies": { "@cspell/cspell-types": "9.0.2", "comment-json": "^4.2.5", "yaml": "^2.8.0" } }, "sha512-8rCmGUEzlytnNeAazvbBdLeUoN18Cct8k6KLePiUS0GglYomSAvcPWsamSk9jeh947m0cu2dhjZPnKQlp11XBA=="], - "sass-embedded-linux-musl-riscv64": ["sass-embedded-linux-musl-riscv64@1.93.3", "http://localhost:4873/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.93.3.tgz", { "os": "linux", "cpu": "none" }, "sha512-cK1oBY+FWQquaIGEeQ5H74KTO8cWsSWwXb/WaildOO9U6wmUypTgUYKQ0o5o/29nZbWWlM1PHuwVYTSnT23Jjg=="], + "cspell-dictionary": ["cspell-dictionary@9.0.2", "", { "dependencies": { "@cspell/cspell-pipe": "9.0.2", "@cspell/cspell-types": "9.0.2", "cspell-trie-lib": "9.0.2", "fast-equals": "^5.2.2" } }, "sha512-u1jLnqu+2IJiGKdUP9LF1/vseOrCh6hUACHZQ8JsCbHC2KU/DL68s4IgS5jDyK5lBcwPOWzQOiTuXQSEardpFQ=="], - "sass-embedded-linux-musl-x64": ["sass-embedded-linux-musl-x64@1.93.3", "http://localhost:4873/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.93.3.tgz", { "os": "linux", "cpu": "x64" }, "sha512-A7wkrsHu2/I4Zpa0NMuPGkWDVV7QGGytxGyUq3opSXgAexHo/vBPlGoDXoRlSdex0cV+aTMRPjoGIfdmNlHwyg=="], + "cspell-gitignore": ["cspell-gitignore@9.0.2", "", { "dependencies": { "@cspell/url": "9.0.2", "cspell-glob": "9.0.2", "cspell-io": "9.0.2" }, "bin": { "cspell-gitignore": "bin.mjs" } }, "sha512-2CXpUYa+mf1I0oMH/V0qzT0zP95IqYzaS9BfEB7AcSmjrvuIgmiGLztUNrG5mMMBAlHk7sfI8gAEMMvr/Q7sTQ=="], - "sass-embedded-linux-riscv64": ["sass-embedded-linux-riscv64@1.93.3", "http://localhost:4873/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.93.3.tgz", { "os": "linux", "cpu": "none" }, "sha512-vWkW1+HTF5qcaHa6hO80gx/QfB6GGjJUP0xLbnAoY4pwEnw5ulGv6RM8qYr8IDhWfVt/KH+lhJ2ZFxnJareisQ=="], + "cspell-glob": ["cspell-glob@9.0.2", "", { "dependencies": { "@cspell/url": "9.0.2", "picomatch": "^4.0.2" } }, "sha512-trTskAU7tw9RpCb+/uPM4zWByZEavHh3SIrjz7Du/ritjZi85O80HItNw5O3ext4zSPfNNLL3kBT7fLLphFHrw=="], - "sass-embedded-linux-x64": ["sass-embedded-linux-x64@1.93.3", "http://localhost:4873/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.93.3.tgz", { "os": "linux", "cpu": "x64" }, "sha512-k6uFxs+e5jSuk1Y0niCwuq42F9ZC5UEP7P+RIOurIm8w/5QFa0+YqeW+BPWEW5M1FqVOsNZH3qGn4ahqvAEjPA=="], + "cspell-grammar": ["cspell-grammar@9.0.2", "", { "dependencies": { "@cspell/cspell-pipe": "9.0.2", "@cspell/cspell-types": "9.0.2" }, "bin": { "cspell-grammar": "bin.mjs" } }, "sha512-3hrNZJYEgWSaCvH3rpFq43PX9pxdJt60+pFG3CTZAdpcI97DDsrdH3f7a6h8sNAb+pN59JnV2DtWexsAVL6vjA=="], - "sass-embedded-unknown-all": ["sass-embedded-unknown-all@1.93.3", "http://localhost:4873/sass-embedded-unknown-all/-/sass-embedded-unknown-all-1.93.3.tgz", { "dependencies": { "sass": "1.93.3" }, "os": [ "!linux", "!win32", "!darwin", "!android", ] }, "sha512-o5wj2rLpXH0C+GJKt/VpWp6AnMsCCbfFmnMAttcrsa+U3yrs/guhZ3x55KAqqUsE8F47e3frbsDL+1OuQM5DAA=="], + "cspell-io": ["cspell-io@9.0.2", "", { "dependencies": { "@cspell/cspell-service-bus": "9.0.2", "@cspell/url": "9.0.2" } }, "sha512-TO93FTgQjjp62nAn213885RdyOTsQwdjSHdeYaaNiaTBOBgj2jR8M8bi3+h2imGBlinlYERoVbPF9wghJEK2nw=="], - "sass-embedded-win32-arm64": ["sass-embedded-win32-arm64@1.93.3", "http://localhost:4873/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.93.3.tgz", { "os": "win32", "cpu": "arm64" }, "sha512-0dOfT9moy9YmBolodwYYXtLwNr4jL4HQC9rBfv6mVrD7ud8ue2kDbn+GVzj1hEJxvEexVSmDCf7MHUTLcGs9xQ=="], + "cspell-lib": ["cspell-lib@9.0.2", "", { "dependencies": { "@cspell/cspell-bundled-dicts": "9.0.2", "@cspell/cspell-pipe": "9.0.2", "@cspell/cspell-resolver": "9.0.2", "@cspell/cspell-types": "9.0.2", "@cspell/dynamic-import": "9.0.2", "@cspell/filetypes": "9.0.2", "@cspell/strong-weak-map": "9.0.2", "@cspell/url": "9.0.2", "clear-module": "^4.1.2", "comment-json": "^4.2.5", "cspell-config-lib": "9.0.2", "cspell-dictionary": "9.0.2", "cspell-glob": "9.0.2", "cspell-grammar": "9.0.2", "cspell-io": "9.0.2", "cspell-trie-lib": "9.0.2", "env-paths": "^3.0.0", "fast-equals": "^5.2.2", "gensequence": "^7.0.0", "import-fresh": "^3.3.1", "resolve-from": "^5.0.0", "vscode-languageserver-textdocument": "^1.0.12", "vscode-uri": "^3.1.0", "xdg-basedir": "^5.1.0" } }, "sha512-uoPQ0f+umOGUQB/q0H+K/gWfd7xJMaPlt5rXMMTeKIPHLDRBE7lBx4mHVCmgevL+oTNSLpIE5FdqRDbr+Q+Awg=="], - "sass-embedded-win32-x64": ["sass-embedded-win32-x64@1.93.3", "http://localhost:4873/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.93.3.tgz", { "os": "win32", "cpu": "x64" }, "sha512-wHFVfxiS9hU/sNk7KReD+lJWRp3R0SLQEX4zfOnRP2zlvI2X4IQR5aZr9GNcuMP6TmNpX0nQPZTegS8+h9RrEg=="], + "cspell-trie-lib": ["cspell-trie-lib@9.0.2", "", { "dependencies": { "@cspell/cspell-pipe": "9.0.2", "@cspell/cspell-types": "9.0.2", "gensequence": "^7.0.0" } }, "sha512-inXu6YEoJFLYnxgcXy3quCoGgSWYRye1kM4dj8kbYtNAQgUVD93hPFdmPWObwhVawsS3rQybckG3DSnmxBe9Fg=="], - "scslre": ["scslre@0.3.0", "http://localhost:4873/scslre/-/scslre-0.3.0.tgz", { "dependencies": { "@eslint-community/regexpp": "^4.8.0", "refa": "^0.12.0", "regexp-ast-analysis": "^0.7.0" } }, "sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ=="], + "css-functions-list": ["css-functions-list@3.2.3", "", {}, "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA=="], - "semver": ["semver@7.7.3", "http://localhost:4873/semver/-/semver-7.7.3.tgz", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="], + "css-tree": ["css-tree@3.1.0", "", { "dependencies": { "mdn-data": "2.12.2", "source-map-js": "^1.0.1" } }, "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w=="], - "sh-syntax": ["sh-syntax@0.5.8", "http://localhost:4873/sh-syntax/-/sh-syntax-0.5.8.tgz", { "dependencies": { "tslib": "^2.8.1" } }, "sha512-JfVoxf4FxQI5qpsPbkHhZo+n6N9YMJobyl4oGEUBb/31oQYlgTjkXQD8PBiafS2UbWoxrTO0Z5PJUBXEPAG1Zw=="], + "cssesc": ["cssesc@3.0.0", "", { "bin": { "cssesc": "bin/cssesc" } }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="], - "shebang-command": ["shebang-command@2.0.0", "http://localhost:4873/shebang-command/-/shebang-command-2.0.0.tgz", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="], + "debug": ["debug@4.4.1", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="], - "shebang-regex": ["shebang-regex@3.0.0", "http://localhost:4873/shebang-regex/-/shebang-regex-3.0.0.tgz", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="], + "decompress-response": ["decompress-response@6.0.0", "", { "dependencies": { "mimic-response": "^3.1.0" } }, "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="], - "signal-exit": ["signal-exit@4.1.0", "http://localhost:4873/signal-exit/-/signal-exit-4.1.0.tgz", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + "deep-eql": ["deep-eql@5.0.2", "", {}, "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q=="], - "slash": ["slash@3.0.0", "http://localhost:4873/slash/-/slash-3.0.0.tgz", {}, "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="], + "deep-is": ["deep-is@0.1.4", "", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="], - "slice-ansi": ["slice-ansi@4.0.0", "http://localhost:4873/slice-ansi/-/slice-ansi-4.0.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }, "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="], + "defaults": ["defaults@3.0.0", "", {}, "sha512-RsqXDEAALjfRTro+IFNKpcPCt0/Cy2FqHSIlnomiJp9YGadpQnrtbRpSgN2+np21qHcIKiva4fiOQGjS9/qR/A=="], - "smol-toml": ["smol-toml@1.5.2", "http://localhost:4873/smol-toml/-/smol-toml-1.5.2.tgz", {}, "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ=="], + "defer-to-connect": ["defer-to-connect@2.0.1", "", {}, "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="], - "source-map": ["source-map@0.7.6", "http://localhost:4873/source-map/-/source-map-0.7.6.tgz", {}, "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ=="], + "define-data-property": ["define-data-property@1.1.4", "", { "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" } }, "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="], - "source-map-js": ["source-map-js@1.2.1", "http://localhost:4873/source-map-js/-/source-map-js-1.2.1.tgz", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], + "define-properties": ["define-properties@1.2.1", "", { "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="], - "spdx-exceptions": ["spdx-exceptions@2.5.0", "http://localhost:4873/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", {}, "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w=="], + "des.js": ["des.js@1.1.0", "", { "dependencies": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" } }, "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg=="], - "spdx-expression-parse": ["spdx-expression-parse@4.0.0", "http://localhost:4873/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", { "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ=="], + "detect-libc": ["detect-libc@2.0.3", "", {}, "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="], - "spdx-license-ids": ["spdx-license-ids@3.0.22", "http://localhost:4873/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz", {}, "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ=="], + "diffie-hellman": ["diffie-hellman@5.0.3", "", { "dependencies": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", "randombytes": "^2.0.0" } }, "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="], - "stream-shift": ["stream-shift@1.0.3", "http://localhost:4873/stream-shift/-/stream-shift-1.0.3.tgz", {}, "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ=="], + "dir-glob": ["dir-glob@3.0.1", "", { "dependencies": { "path-type": "^4.0.0" } }, "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="], - "string-width": ["string-width@4.2.3", "http://localhost:4873/string-width/-/string-width-4.2.3.tgz", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + "domain-browser": ["domain-browser@4.22.0", "", {}, "sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw=="], - "string_decoder": ["string_decoder@0.10.31", "http://localhost:4873/string_decoder/-/string_decoder-0.10.31.tgz", {}, "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="], + "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], - "strip-ansi": ["strip-ansi@6.0.1", "http://localhost:4873/strip-ansi/-/strip-ansi-6.0.1.tgz", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + "effect": ["effect@3.16.5", "", { "dependencies": { "@standard-schema/spec": "^1.0.0", "fast-check": "^3.23.1" } }, "sha512-7nA+ZPMLoHItabNRV95RpMtwVw2k3BDNhILP4ffo8dG7zGR04XGjarP1JbO+jdBbTRET3eGx1Nz+hWB9kSOajw=="], - "strip-indent": ["strip-indent@4.1.1", "http://localhost:4873/strip-indent/-/strip-indent-4.1.1.tgz", {}, "sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA=="], + "electron-to-chromium": ["electron-to-chromium@1.5.166", "", {}, "sha512-QPWqHL0BglzPYyJJ1zSSmwFFL6MFXhbACOCcsCdUMCkzPdS9/OIBVxg516X/Ado2qwAq8k0nJJ7phQPCqiaFAw=="], - "strip-json-comments": ["strip-json-comments@5.0.3", "http://localhost:4873/strip-json-comments/-/strip-json-comments-5.0.3.tgz", {}, "sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw=="], + "elliptic": ["elliptic@6.6.1", "", { "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", "hash.js": "^1.0.0", "hmac-drbg": "^1.0.1", "inherits": "^2.0.4", "minimalistic-assert": "^1.0.1", "minimalistic-crypto-utils": "^1.0.1" } }, "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g=="], - "style-search": ["style-search@0.1.0", "http://localhost:4873/style-search/-/style-search-0.1.0.tgz", {}, "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg=="], + "emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "stylelint": ["stylelint@16.26.1", "http://localhost:4873/stylelint/-/stylelint-16.26.1.tgz", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-syntax-patches-for-csstree": "^1.0.19", "@csstools/css-tokenizer": "^3.0.4", "@csstools/media-query-list-parser": "^4.0.3", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.2.1", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.1.0", "debug": "^4.4.3", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^11.1.1", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^7.0.5", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.37.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.5.6", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.2.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" } }, "sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw=="], + "env-paths": ["env-paths@3.0.0", "", {}, "sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A=="], - "stylelint-config-clean-order": ["stylelint-config-clean-order@8.0.0", "http://localhost:4873/stylelint-config-clean-order/-/stylelint-config-clean-order-8.0.0.tgz", { "peerDependencies": { "stylelint": ">=16", "stylelint-order": ">=6" } }, "sha512-Ub+1k1OQvJPf6HKMRyku6DgOmdhD5ZTrevcbfyHP21Zf7pbs5ds4a8HbKY8iadA5RFlwiXwkzqLDytxQOqfDnA=="], + "error-ex": ["error-ex@1.3.2", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="], - "stylelint-config-recommended": ["stylelint-config-recommended@17.0.0", "http://localhost:4873/stylelint-config-recommended/-/stylelint-config-recommended-17.0.0.tgz", { "peerDependencies": { "stylelint": "^16.23.0" } }, "sha512-WaMSdEiPfZTSFVoYmJbxorJfA610O0tlYuU2aEwY33UQhSPgFbClrVJYWvy3jGJx+XW37O+LyNLiZOEXhKhJmA=="], + "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - "stylelint-config-recommended-scss": ["stylelint-config-recommended-scss@16.0.2", "http://localhost:4873/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-16.0.2.tgz", { "dependencies": { "postcss-scss": "^4.0.9", "stylelint-config-recommended": "^17.0.0", "stylelint-scss": "^6.12.1" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.24.0" }, "optionalPeers": ["postcss"] }, "sha512-aUTHhPPWCvFyWaxtckJlCPaXTDFsp4pKO8evXNCsW9OwsaUWyMd6jvcUhSmfGWPrTddvzNqK4rS/UuSLcbVGdQ=="], + "es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="], - "stylelint-config-sass-guidelines": ["stylelint-config-sass-guidelines@12.1.0", "http://localhost:4873/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-12.1.0.tgz", { "dependencies": { "@stylistic/stylelint-plugin": "^3.0.1", "postcss-scss": "^4.0.9", "stylelint-scss": "^6.2.1" }, "peerDependencies": { "postcss": "^8.4.21", "stylelint": "^16.1.0" } }, "sha512-NTxEtVT6uNSqRvq+A3ScyKhjUrY/Z845TnpWEwnMgIPZ/+/Waa4+51r6OPuQRMu4XZS3D8DK1UaT4TWFBvuuAw=="], + "es-module-lexer": ["es-module-lexer@1.7.0", "", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="], - "stylelint-config-standard": ["stylelint-config-standard@39.0.1", "http://localhost:4873/stylelint-config-standard/-/stylelint-config-standard-39.0.1.tgz", { "dependencies": { "stylelint-config-recommended": "^17.0.0" }, "peerDependencies": { "stylelint": "^16.23.0" } }, "sha512-b7Fja59EYHRNOTa3aXiuWnhUWXFU2Nfg6h61bLfAb5GS5fX3LMUD0U5t4S8N/4tpHQg3Acs2UVPR9jy2l1g/3A=="], + "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - "stylelint-config-standard-scss": ["stylelint-config-standard-scss@16.0.0", "http://localhost:4873/stylelint-config-standard-scss/-/stylelint-config-standard-scss-16.0.0.tgz", { "dependencies": { "stylelint-config-recommended-scss": "^16.0.1", "stylelint-config-standard": "^39.0.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.23.1" }, "optionalPeers": ["postcss"] }, "sha512-/FHECLUu+med/e6OaPFpprG86ShC4SYT7Tzb2PTVdDjJsehhFBOioSlWqYFqJxmGPIwO3AMBxNo+kY3dxrbczA=="], + "esbuild": ["esbuild@0.25.2", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.2", "@esbuild/android-arm": "0.25.2", "@esbuild/android-arm64": "0.25.2", "@esbuild/android-x64": "0.25.2", "@esbuild/darwin-arm64": "0.25.2", "@esbuild/darwin-x64": "0.25.2", "@esbuild/freebsd-arm64": "0.25.2", "@esbuild/freebsd-x64": "0.25.2", "@esbuild/linux-arm": "0.25.2", "@esbuild/linux-arm64": "0.25.2", "@esbuild/linux-ia32": "0.25.2", "@esbuild/linux-loong64": "0.25.2", "@esbuild/linux-mips64el": "0.25.2", "@esbuild/linux-ppc64": "0.25.2", "@esbuild/linux-riscv64": "0.25.2", "@esbuild/linux-s390x": "0.25.2", "@esbuild/linux-x64": "0.25.2", "@esbuild/netbsd-arm64": "0.25.2", "@esbuild/netbsd-x64": "0.25.2", "@esbuild/openbsd-arm64": "0.25.2", "@esbuild/openbsd-x64": "0.25.2", "@esbuild/sunos-x64": "0.25.2", "@esbuild/win32-arm64": "0.25.2", "@esbuild/win32-ia32": "0.25.2", "@esbuild/win32-x64": "0.25.2" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ=="], - "stylelint-declaration-block-no-ignored-properties": ["stylelint-declaration-block-no-ignored-properties@2.8.0", "http://localhost:4873/stylelint-declaration-block-no-ignored-properties/-/stylelint-declaration-block-no-ignored-properties-2.8.0.tgz", { "peerDependencies": { "stylelint": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, "sha512-Ws8Cav7Y+SPN0JsV407LrnNXWOrqGjxShf+37GBtnU/C58Syve9c0+I/xpLcFOosST3ternykn3Lp77f3ITnFw=="], + "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], - "stylelint-no-unsupported-browser-features": ["stylelint-no-unsupported-browser-features@8.0.5", "http://localhost:4873/stylelint-no-unsupported-browser-features/-/stylelint-no-unsupported-browser-features-8.0.5.tgz", { "dependencies": { "browserslist": "^4.26.3", "doiuse": "^6.0.5", "postcss": "^8.4.32" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "sha512-fCfV7C6q9PM/fb3oYERoxqiWEqDQf1S2NfKLy8tv1tiIhilFQ3zlw7AunE4kZHbGh6bD67SEiU0UwvJyNnvyKQ=="], + "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], - "stylelint-order": ["stylelint-order@7.0.0", "http://localhost:4873/stylelint-order/-/stylelint-order-7.0.0.tgz", { "dependencies": { "postcss": "^8.5.3", "postcss-sorting": "^9.1.0" }, "peerDependencies": { "stylelint": "^16.18.0" } }, "sha512-rSWxx0KscYfxU02wEskKXES9lkRzuuONMMNkZ7SUc6uiF3tDKm7e+sE0Ax/SBlG4TUf1sp1R6f3/SlsPGmzthg=="], + "eslint": ["eslint@9.28.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.20.0", "@eslint/config-helpers": "^0.2.1", "@eslint/core": "^0.14.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.28.0", "@eslint/plugin-kit": "^0.3.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.3.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ=="], - "stylelint-plugin-logical-css": ["stylelint-plugin-logical-css@1.2.3", "http://localhost:4873/stylelint-plugin-logical-css/-/stylelint-plugin-logical-css-1.2.3.tgz", { "peerDependencies": { "stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0" } }, "sha512-yzSDrw4yyZJosgMablqqQzCeJmsPRAK/H7X1XzliQkYvoC/ZHBfHKos27dQEwwSLBUaYg+7nJ1ct7OlST4iqZA=="], + "eslint-plugin-oxlint": ["eslint-plugin-oxlint@1.1.0", "", { "dependencies": { "jsonc-parser": "^3.3.1" } }, "sha512-spDWxcsAfoUDjSwxPrP2gfuOJ2Hrv8faqQ5Vkm90lURp4no5aWJQ09xRKmZroIPTuQCKYgG9nvnakdIbXGlijg=="], - "stylelint-scss": ["stylelint-scss@6.12.1", "http://localhost:4873/stylelint-scss/-/stylelint-scss-6.12.1.tgz", { "dependencies": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.36.0", "mdn-data": "^2.21.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "sha512-UJUfBFIvXfly8WKIgmqfmkGKPilKB4L5j38JfsDd+OCg2GBdU0vGUV08Uw82tsRZzd4TbsUURVVNGeOhJVF7pA=="], + "eslint-plugin-perfectionist": ["eslint-plugin-perfectionist@4.14.0", "", { "dependencies": { "@typescript-eslint/types": "^8.33.1", "@typescript-eslint/utils": "^8.33.1", "natural-orderby": "^5.0.0" }, "peerDependencies": { "eslint": ">=8.45.0" } }, "sha512-BkhiOqzdum8vQSFgj1/q5+6UUWPMn4GELdxuX7uIsGegmAeH/+LnWsiVxgMrxalD0p68sYfMeKaHF1NfrpI/mg=="], - "stylelint-value-no-unknown-custom-properties": ["stylelint-value-no-unknown-custom-properties@6.0.1", "http://localhost:4873/stylelint-value-no-unknown-custom-properties/-/stylelint-value-no-unknown-custom-properties-6.0.1.tgz", { "dependencies": { "postcss-value-parser": "^4.2.0", "resolve": "^1.22.8" }, "peerDependencies": { "stylelint": ">=16" } }, "sha512-N60PTdaTknB35j6D4FhW0GL2LlBRV++bRpXMMldWMQZ240yFQaoltzlLY4lXXs7Z0J5mNUYZQ/gjyVtU2DhCMA=="], + "eslint-scope": ["eslint-scope@8.3.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ=="], - "supports-color": ["supports-color@8.1.1", "http://localhost:4873/supports-color/-/supports-color-8.1.1.tgz", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], + "eslint-visitor-keys": ["eslint-visitor-keys@4.2.0", "", {}, "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="], - "supports-hyperlinks": ["supports-hyperlinks@3.2.0", "http://localhost:4873/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz", { "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" } }, "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig=="], + "espree": ["espree@10.3.0", "", { "dependencies": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" } }, "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg=="], - "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "http://localhost:4873/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="], + "esprima": ["esprima@4.0.1", "", { "bin": { "esparse": "./bin/esparse.js", "esvalidate": "./bin/esvalidate.js" } }, "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="], - "svg-tags": ["svg-tags@1.0.0", "http://localhost:4873/svg-tags/-/svg-tags-1.0.0.tgz", {}, "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA=="], + "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], - "sync-child-process": ["sync-child-process@1.0.2", "http://localhost:4873/sync-child-process/-/sync-child-process-1.0.2.tgz", { "dependencies": { "sync-message-port": "^1.0.0" } }, "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA=="], + "esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="], - "sync-message-port": ["sync-message-port@1.1.3", "http://localhost:4873/sync-message-port/-/sync-message-port-1.1.3.tgz", {}, "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg=="], + "estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="], - "table": ["table@6.9.0", "http://localhost:4873/table/-/table-6.9.0.tgz", { "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }, "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A=="], + "estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], - "tinyglobby": ["tinyglobby@0.2.15", "http://localhost:4873/tinyglobby/-/tinyglobby-0.2.15.tgz", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="], + "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], - "to-regex-range": ["to-regex-range@5.0.1", "http://localhost:4873/to-regex-range/-/to-regex-range-5.0.1.tgz", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], + "events": ["events@3.3.0", "", {}, "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="], - "to-valid-identifier": ["to-valid-identifier@1.0.0", "http://localhost:4873/to-valid-identifier/-/to-valid-identifier-1.0.0.tgz", { "dependencies": { "@sindresorhus/base62": "^1.0.0", "reserved-identifiers": "^1.0.0" } }, "sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw=="], + "evp_bytestokey": ["evp_bytestokey@1.0.3", "", { "dependencies": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" } }, "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA=="], - "ts-api-utils": ["ts-api-utils@2.1.0", "http://localhost:4873/ts-api-utils/-/ts-api-utils-2.1.0.tgz", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], + "execa": ["execa@5.1.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="], - "ts-declaration-location": ["ts-declaration-location@1.0.7", "http://localhost:4873/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz", { "dependencies": { "picomatch": "^4.0.2" }, "peerDependencies": { "typescript": ">=4.0.0" } }, "sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA=="], + "expect-type": ["expect-type@1.2.1", "", {}, "sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw=="], - "ts-pattern": ["ts-pattern@5.9.0", "http://localhost:4873/ts-pattern/-/ts-pattern-5.9.0.tgz", {}, "sha512-6s5V71mX8qBUmlgbrfL33xDUwO0fq48rxAu2LBE11WBeGdpCPOsXksQbZJHvHwhrd3QjUusd3mAOM5Gg0mFBLg=="], + "ext-list": ["ext-list@2.2.2", "", { "dependencies": { "mime-db": "^1.28.0" } }, "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA=="], - "tsconfck": ["tsconfck@3.1.6", "http://localhost:4873/tsconfck/-/tsconfck-3.1.6.tgz", { "peerDependencies": { "typescript": "^5.0.0" }, "optionalPeers": ["typescript"], "bin": { "tsconfck": "bin/tsconfck.js" } }, "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w=="], + "ext-name": ["ext-name@5.0.0", "", { "dependencies": { "ext-list": "^2.0.0", "sort-keys-length": "^1.0.0" } }, "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ=="], - "tslib": ["tslib@2.8.1", "http://localhost:4873/tslib/-/tslib-2.8.1.tgz", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "fast-check": ["fast-check@3.23.2", "", { "dependencies": { "pure-rand": "^6.1.0" } }, "sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A=="], - "type-check": ["type-check@0.4.0", "http://localhost:4873/type-check/-/type-check-0.4.0.tgz", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + "fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="], - "typescript": ["typescript@5.9.3", "http://localhost:4873/typescript/-/typescript-5.9.3.tgz", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], + "fast-equals": ["fast-equals@5.2.2", "", {}, "sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw=="], - "typescript-eslint": ["typescript-eslint@8.48.1", "http://localhost:4873/typescript-eslint/-/typescript-eslint-8.48.1.tgz", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.48.1", "@typescript-eslint/parser": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1", "@typescript-eslint/utils": "8.48.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-FbOKN1fqNoXp1hIl5KYpObVrp0mCn+CLgn479nmu2IsRMrx2vyv74MmsBLVlhg8qVwNFGbXSp8fh1zp8pEoC2A=="], + "fast-fifo": ["fast-fifo@1.3.2", "", {}, "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="], - "undici-types": ["undici-types@7.16.0", "http://localhost:4873/undici-types/-/undici-types-7.16.0.tgz", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="], + "fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="], - "unist-util-stringify-position": ["unist-util-stringify-position@4.0.0", "http://localhost:4873/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ=="], + "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="], - "update-browserslist-db": ["update-browserslist-db@1.2.2", "http://localhost:4873/update-browserslist-db/-/update-browserslist-db-1.2.2.tgz", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA=="], + "fast-levenshtein": ["fast-levenshtein@2.0.6", "", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="], - "uri-js": ["uri-js@4.4.1", "http://localhost:4873/uri-js/-/uri-js-4.4.1.tgz", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="], + "fast-uri": ["fast-uri@3.0.6", "", {}, "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="], - "util-deprecate": ["util-deprecate@1.0.2", "http://localhost:4873/util-deprecate/-/util-deprecate-1.0.2.tgz", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], + "fastest-levenshtein": ["fastest-levenshtein@1.0.16", "", {}, "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg=="], - "valibot": ["valibot@1.1.0", "http://localhost:4873/valibot/-/valibot-1.1.0.tgz", { "peerDependencies": { "typescript": ">=5" }, "optionalPeers": ["typescript"] }, "sha512-Nk8lX30Qhu+9txPYTwM0cFlWLdPFsFr6LblzqIySfbZph9+BFsAHsNvHOymEviUepeIW6KFHzpX8TKhbptBXXw=="], + "fastq": ["fastq@1.19.0", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA=="], - "varint": ["varint@6.0.0", "http://localhost:4873/varint/-/varint-6.0.0.tgz", {}, "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg=="], + "fd-package-json": ["fd-package-json@2.0.0", "", { "dependencies": { "walk-up-path": "^4.0.0" } }, "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ=="], - "vite": ["vite@8.0.0-beta.0", "http://localhost:4873/vite/-/vite-8.0.0-beta.0.tgz", { "dependencies": { "@oxc-project/runtime": "0.101.0", "fdir": "^6.5.0", "lightningcss": "^1.30.2", "picomatch": "^4.0.3", "postcss": "^8.5.6", "rolldown": "1.0.0-beta.53", "tinyglobby": "^0.2.15" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "esbuild": "^0.25.0", "jiti": ">=1.21.0", "less": "^4.0.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "esbuild", "jiti", "less", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-bXHWmtg5hUxn/MB5zJ8qhBLphnsNmO1EYOFmBO/fVCBJekTdWDuqJ/GmUMLgrC0QUCCrxhw3JLgteWdiyqaVSQ=="], + "fdir": ["fdir@6.4.6", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w=="], - "vite-php-manifest": ["vite-php-manifest@0.1.1", "http://localhost:4873/vite-php-manifest/-/vite-php-manifest-0.1.1.tgz", { "dependencies": { "json2php": "^0.0.9" }, "peerDependencies": { "vite": ">=6" } }, "sha512-AW0qO2v5MVYO6FvvgXzQeL1YBK6YGszOxn8p3cNKlBMC92hHnzsdsMK0yg2J7ssXn5a2Koks/B967mluroBiqw=="], + "fflate": ["fflate@0.8.2", "", {}, "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A=="], - "vite-plugin-valibot-env": ["vite-plugin-valibot-env@1.0.1", "http://localhost:4873/vite-plugin-valibot-env/-/vite-plugin-valibot-env-1.0.1.tgz", { "dependencies": { "is-unicode-supported": "^2.1.0" }, "peerDependencies": { "valibot": ">=1.0.0", "vite": "^5.0.0 || ^6.0.0 || >=7.0.0" } }, "sha512-u/X+iHKrvilvJrP1UiQHzaeLYDuDa3pu6i3rJxW22Tj0+LvQMENK4piLfBO6NmcopnVmD4K36Ngk08NNrmIjVw=="], + "file-entry-cache": ["file-entry-cache@9.1.0", "", { "dependencies": { "flat-cache": "^5.0.0" } }, "sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg=="], - "vite-tsconfig-paths": ["vite-tsconfig-paths@5.1.4", "http://localhost:4873/vite-tsconfig-paths/-/vite-tsconfig-paths-5.1.4.tgz", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" }, "optionalPeers": ["vite"] }, "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w=="], + "file-type": ["file-type@19.6.0", "", { "dependencies": { "get-stream": "^9.0.1", "strtok3": "^9.0.1", "token-types": "^6.0.0", "uint8array-extras": "^1.3.0" } }, "sha512-VZR5I7k5wkD0HgFnMsq5hOsSc710MJMu5Nc5QYsbe38NN5iPV/XTObYLc/cpttRTf6lX538+5uO1ZQRhYibiZQ=="], - "walk-up-path": ["walk-up-path@4.0.0", "http://localhost:4873/walk-up-path/-/walk-up-path-4.0.0.tgz", {}, "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A=="], + "filename-reserved-regex": ["filename-reserved-regex@3.0.0", "", {}, "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw=="], - "which": ["which@2.0.2", "http://localhost:4873/which/-/which-2.0.2.tgz", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], + "filenamify": ["filenamify@6.0.0", "", { "dependencies": { "filename-reserved-regex": "^3.0.0" } }, "sha512-vqIlNogKeyD3yzrm0yhRMQg8hOVwYcYRfjEoODd49iCprMn4HL85gK3HcykQE53EPIpX3HcAbGA5ELQv216dAQ=="], - "word-wrap": ["word-wrap@1.2.5", "http://localhost:4873/word-wrap/-/word-wrap-1.2.5.tgz", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], + "fill-range": ["fill-range@7.1.1", "", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="], - "wp-types": ["wp-types@4.69.0", "http://localhost:4873/wp-types/-/wp-types-4.69.0.tgz", { "dependencies": { "typescript": ">=4" } }, "sha512-2w0i2ygylpbYpqFskg1NlvH/1DM8thZuhxjihFRHdvjgFkmzJ2cHl2kq9cBnxYWHyLHzRiLI2TupKbq3yl2STQ=="], + "find-my-way-ts": ["find-my-way-ts@0.1.5", "", {}, "sha512-4GOTMrpGQVzsCH2ruUn2vmwzV/02zF4q+ybhCIrw/Rkt3L8KWcycdC6aJMctJzwN4fXD4SD5F/4B9Sksh5rE0A=="], - "wrap-ansi": ["wrap-ansi@7.0.0", "http://localhost:4873/wrap-ansi/-/wrap-ansi-7.0.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + "find-up": ["find-up@5.0.0", "", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="], - "wrappy": ["wrappy@1.0.2", "http://localhost:4873/wrappy/-/wrappy-1.0.2.tgz", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="], + "find-versions": ["find-versions@5.1.0", "", { "dependencies": { "semver-regex": "^4.0.5" } }, "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg=="], - "write-file-atomic": ["write-file-atomic@5.0.1", "http://localhost:4873/write-file-atomic/-/write-file-atomic-5.0.1.tgz", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="], + "flat-cache": ["flat-cache@5.0.0", "", { "dependencies": { "flatted": "^3.3.1", "keyv": "^4.5.4" } }, "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ=="], - "y18n": ["y18n@5.0.8", "http://localhost:4873/y18n/-/y18n-5.0.8.tgz", {}, "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="], + "flatted": ["flatted@3.3.3", "", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="], - "yargs": ["yargs@17.7.2", "http://localhost:4873/yargs/-/yargs-17.7.2.tgz", { "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" } }, "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="], + "focusable-selectors": ["focusable-selectors@0.8.4", "", {}, "sha512-0XxbkD0KhOnX10qmnfF9U8DkDD8N/e4M77wMYw2Itoi4vdcoRjSkqXLZFIzkrLIOxzmzCGy88fNG1EbeXMD/zw=="], - "yargs-parser": ["yargs-parser@21.1.1", "http://localhost:4873/yargs-parser/-/yargs-parser-21.1.1.tgz", {}, "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="], + "for-each": ["for-each@0.3.4", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw=="], - "yocto-queue": ["yocto-queue@0.1.0", "http://localhost:4873/yocto-queue/-/yocto-queue-0.1.0.tgz", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], + "form-data-encoder": ["form-data-encoder@2.1.4", "", {}, "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw=="], - "zod": ["zod@4.1.12", "http://localhost:4873/zod/-/zod-4.1.12.tgz", {}, "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ=="], + "formatly": ["formatly@0.2.4", "", { "dependencies": { "fd-package-json": "^2.0.0" }, "bin": { "formatly": "bin/index.mjs" } }, "sha512-lIN7GpcvX/l/i24r/L9bnJ0I8Qn01qijWpQpDDvTLL29nKqSaJJu4h20+7VJ6m2CAhQ2/En/GbxDiHCzq/0MyA=="], - "@cacheable/memory/keyv": ["keyv@5.5.4", "http://localhost:4873/keyv/-/keyv-5.5.4.tgz", { "dependencies": { "@keyv/serialize": "^1.1.1" } }, "sha512-eohl3hKTiVyD1ilYdw9T0OiB4hnjef89e3dMYKz+mVKDzj+5IteTseASUsOB+EU9Tf6VNTCjDePcP6wkDGmLKQ=="], + "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], - "@cacheable/utils/keyv": ["keyv@5.5.4", "http://localhost:4873/keyv/-/keyv-5.5.4.tgz", { "dependencies": { "@keyv/serialize": "^1.1.1" } }, "sha512-eohl3hKTiVyD1ilYdw9T0OiB4hnjef89e3dMYKz+mVKDzj+5IteTseASUsOB+EU9Tf6VNTCjDePcP6wkDGmLKQ=="], + "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], - "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "http://localhost:4873/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], + "gensequence": ["gensequence@7.0.0", "", {}, "sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ=="], - "@eslint/eslintrc/globals": ["globals@14.0.0", "http://localhost:4873/globals/-/globals-14.0.0.tgz", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="], + "gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="], - "@eslint/eslintrc/strip-json-comments": ["strip-json-comments@3.1.1", "http://localhost:4873/strip-json-comments/-/strip-json-comments-3.1.1.tgz", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], + "get-intrinsic": ["get-intrinsic@1.2.7", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "function-bind": "^1.1.2", "get-proto": "^1.0.0", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA=="], - "@gcch/configuration-eslint/eslint-plugin-oxlint": ["eslint-plugin-oxlint@1.29.0", "http://localhost:4873/eslint-plugin-oxlint/-/eslint-plugin-oxlint-1.29.0.tgz", { "dependencies": { "jsonc-parser": "^3.3.1" } }, "sha512-VmaZ1I0lXJVJokOpnV8F7e339hcFPln5EWY8KGCdTkBnrkRmAeH25GRO6F37lZEDO9e+px5xjqbkq9g3lejBdg=="], + "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="], - "@gcch/configuration-eslint/typescript-eslint": ["typescript-eslint@8.47.0", "http://localhost:4873/typescript-eslint/-/typescript-eslint-8.47.0.tgz", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.47.0", "@typescript-eslint/parser": "8.47.0", "@typescript-eslint/typescript-estree": "8.47.0", "@typescript-eslint/utils": "8.47.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-Lwe8i2XQ3WoMjua/r1PHrCTpkubPYJCAfOurtn+mtTzqB6jNd+14n9UN1bJ4s3F49x9ixAm0FLflB/JzQ57M8Q=="], + "get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], - "@gcch/configuration-prettier/prettier": ["prettier@4.0.0-alpha.13", "http://localhost:4873/prettier/-/prettier-4.0.0-alpha.13.tgz", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-177K/2S5iYDKtvZkDC2ZMqpyXtoiiVQBVQZpcQsRs+ZIIUQxsXomWIjquAlwt2pXpio9riz5IgtaUEnoZH44tg=="], + "glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="], - "@gcch/configuration-prettier/prettier-plugin-curly": ["prettier-plugin-curly@0.4.0", "http://localhost:4873/prettier-plugin-curly/-/prettier-plugin-curly-0.4.0.tgz", { "peerDependencies": { "prettier": "^2 || ^3" } }, "sha512-URhXSCdeYs+hWFyFS5NDrRBarFU5RV7X9C00LuUKmjFDqD2wxJJWZU+wmkgN50jyn97TWgqI2XrE6rX2AdGgZg=="], + "global-directory": ["global-directory@4.0.1", "", { "dependencies": { "ini": "4.1.1" } }, "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q=="], - "@gcch/ideale-standard/effect": ["effect@3.19.6", "http://localhost:4873/effect/-/effect-3.19.6.tgz", { "dependencies": { "@standard-schema/spec": "^1.0.0", "fast-check": "^3.23.1" } }, "sha512-Eh1E/CI+xCAcMSDC5DtyE29yWJINC0zwBbwHappQPorjKyS69rCA8qzpsHpfhKnPDYgxdg8zkknii8mZ+6YMQA=="], + "global-modules": ["global-modules@2.0.0", "", { "dependencies": { "global-prefix": "^3.0.0" } }, "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A=="], - "@keyv/bigmap/keyv": ["keyv@5.5.4", "http://localhost:4873/keyv/-/keyv-5.5.4.tgz", { "dependencies": { "@keyv/serialize": "^1.1.1" } }, "sha512-eohl3hKTiVyD1ilYdw9T0OiB4hnjef89e3dMYKz+mVKDzj+5IteTseASUsOB+EU9Tf6VNTCjDePcP6wkDGmLKQ=="], + "global-prefix": ["global-prefix@3.0.0", "", { "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" } }, "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg=="], - "@parcel/watcher/detect-libc": ["detect-libc@1.0.3", "http://localhost:4873/detect-libc/-/detect-libc-1.0.3.tgz", { "bin": { "detect-libc": "./bin/detect-libc.js" } }, "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="], + "globals": ["globals@16.2.0", "", {}, "sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg=="], - "@rolldown/binding-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.1.0", "http://localhost:4873/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.0.tgz", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@tybys/wasm-util": "^0.10.1" } }, "sha512-Fq6DJW+Bb5jaWE69/qOE0D1TUN9+6uWhCeZpdnSBk14pjLcCWR7Q8n49PTSPHazM37JqrsdpEthXy2xn6jWWiA=="], + "globby": ["globby@11.1.0", "", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }, "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="], - "@stylistic/stylelint-plugin/@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@3.0.1", "http://localhost:4873/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1" } }, "sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw=="], + "globjoin": ["globjoin@0.1.4", "", {}, "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg=="], - "@stylistic/stylelint-plugin/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "http://localhost:4873/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], + "globrex": ["globrex@0.1.2", "", {}, "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="], - "@typescript-eslint/eslint-plugin/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.48.1", "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz", { "dependencies": { "@typescript-eslint/types": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1" } }, "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w=="], + "gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="], - "@typescript-eslint/eslint-plugin/@typescript-eslint/utils": ["@typescript-eslint/utils@8.48.1", "http://localhost:4873/@typescript-eslint/utils/-/utils-8.48.1.tgz", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.48.1", "@typescript-eslint/types": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA=="], + "got": ["got@13.0.0", "", { "dependencies": { "@sindresorhus/is": "^5.2.0", "@szmarczak/http-timer": "^5.0.1", "cacheable-lookup": "^7.0.0", "cacheable-request": "^10.2.8", "decompress-response": "^6.0.0", "form-data-encoder": "^2.1.2", "get-stream": "^6.0.1", "http2-wrapper": "^2.1.10", "lowercase-keys": "^3.0.0", "p-cancelable": "^3.0.0", "responselike": "^3.0.0" } }, "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA=="], - "@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "http://localhost:4873/ignore/-/ignore-7.0.5.tgz", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="], - "@typescript-eslint/parser/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.48.1", "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz", { "dependencies": { "@typescript-eslint/types": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1" } }, "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w=="], + "graphemer": ["graphemer@1.4.0", "", {}, "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="], - "@typescript-eslint/parser/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "happy-dom": ["happy-dom@18.0.1", "", { "dependencies": { "@types/node": "^20.0.0", "@types/whatwg-mimetype": "^3.0.2", "whatwg-mimetype": "^3.0.0" } }, "sha512-qn+rKOW7KWpVTtgIUi6RVmTBZJSe2k0Db0vh1f7CWrWclkkc7/Q+FrOfkZIb2eiErLyqu5AXEzE7XthO9JVxRA=="], - "@typescript-eslint/project-service/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], - "@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.47.0", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ=="], + "has-own-prop": ["has-own-prop@2.0.0", "", {}, "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ=="], - "@typescript-eslint/type-utils/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "has-property-descriptors": ["has-property-descriptors@1.0.2", "", { "dependencies": { "es-define-property": "^1.0.0" } }, "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="], - "@typescript-eslint/type-utils/@typescript-eslint/utils": ["@typescript-eslint/utils@8.48.1", "http://localhost:4873/@typescript-eslint/utils/-/utils-8.48.1.tgz", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.48.1", "@typescript-eslint/types": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA=="], + "has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="], - "@typescript-eslint/typescript-estree/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "has-tostringtag": ["has-tostringtag@1.0.2", "", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="], - "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "http://localhost:4873/minimatch/-/minimatch-9.0.5.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "hash-base": ["hash-base@3.0.5", "", { "dependencies": { "inherits": "^2.0.4", "safe-buffer": "^5.2.1" } }, "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.47.0", "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-8.47.0.tgz", { "dependencies": { "@typescript-eslint/project-service": "8.47.0", "@typescript-eslint/tsconfig-utils": "8.47.0", "@typescript-eslint/types": "8.47.0", "@typescript-eslint/visitor-keys": "8.47.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg=="], + "hash.js": ["hash.js@1.1.7", "", { "dependencies": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" } }, "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA=="], - "@typescript-eslint/visitor-keys/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], - "brace-expansion/balanced-match": ["balanced-match@1.0.2", "http://localhost:4873/balanced-match/-/balanced-match-1.0.2.tgz", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "hmac-drbg": ["hmac-drbg@1.0.1", "", { "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", "minimalistic-crypto-utils": "^1.0.1" } }, "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg=="], - "cacheable/keyv": ["keyv@5.5.4", "http://localhost:4873/keyv/-/keyv-5.5.4.tgz", { "dependencies": { "@keyv/serialize": "^1.1.1" } }, "sha512-eohl3hKTiVyD1ilYdw9T0OiB4hnjef89e3dMYKz+mVKDzj+5IteTseASUsOB+EU9Tf6VNTCjDePcP6wkDGmLKQ=="], + "hookified": ["hookified@1.9.1", "", {}, "sha512-u3pxtGhKjcSXnGm1CX6aXS9xew535j3lkOCegbA6jdyh0BaAjTbXI4aslKstCr6zUNtoCxFGFKwjbSHdGrMB8g=="], - "chalk/supports-color": ["supports-color@7.2.0", "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + "html-tags": ["html-tags@3.3.1", "", {}, "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ=="], - "clean-regexp/escape-string-regexp": ["escape-string-regexp@1.0.5", "http://localhost:4873/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="], + "http-cache-semantics": ["http-cache-semantics@4.1.1", "", {}, "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="], - "core-js-compat/browserslist": ["browserslist@4.28.0", "http://localhost:4873/browserslist/-/browserslist-4.28.0.tgz", { "dependencies": { "baseline-browser-mapping": "^2.8.25", "caniuse-lite": "^1.0.30001754", "electron-to-chromium": "^1.5.249", "node-releases": "^2.0.27", "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" } }, "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ=="], + "http2-wrapper": ["http2-wrapper@2.2.1", "", { "dependencies": { "quick-lru": "^5.1.1", "resolve-alpn": "^1.2.0" } }, "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="], - "doiuse/browserslist": ["browserslist@4.28.0", "http://localhost:4873/browserslist/-/browserslist-4.28.0.tgz", { "dependencies": { "baseline-browser-mapping": "^2.8.25", "caniuse-lite": "^1.0.30001754", "electron-to-chromium": "^1.5.249", "node-releases": "^2.0.27", "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" } }, "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ=="], + "https-browserify": ["https-browserify@1.0.0", "", {}, "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="], - "doiuse/caniuse-lite": ["caniuse-lite@1.0.30001756", "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz", {}, "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A=="], + "human-signals": ["human-signals@2.1.0", "", {}, "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="], - "duplexify/readable-stream": ["readable-stream@3.6.2", "http://localhost:4873/readable-stream/-/readable-stream-3.6.2.tgz", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], + "ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="], - "eslint-plugin-functional/escape-string-regexp": ["escape-string-regexp@5.0.0", "http://localhost:4873/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], + "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], - "eslint-plugin-sonarjs/@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "http://localhost:4873/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], + "immutable": ["immutable@5.0.3", "", {}, "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw=="], - "eslint-plugin-sonarjs/minimatch": ["minimatch@9.0.5", "http://localhost:4873/minimatch/-/minimatch-9.0.5.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], - "eslint-plugin-sonarjs/semver": ["semver@7.7.2", "http://localhost:4873/semver/-/semver-7.7.2.tgz", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + "import-meta-resolve": ["import-meta-resolve@4.1.0", "", {}, "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw=="], - "fast-glob/glob-parent": ["glob-parent@5.1.2", "http://localhost:4873/glob-parent/-/glob-parent-5.1.2.tgz", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + "imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="], - "global-prefix/which": ["which@1.3.1", "http://localhost:4873/which/-/which-1.3.1.tgz", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "./bin/which" } }, "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="], + "inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="], - "import-fresh/resolve-from": ["resolve-from@4.0.0", "http://localhost:4873/resolve-from/-/resolve-from-4.0.0.tgz", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], + "ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], - "is-builtin-module/builtin-modules": ["builtin-modules@5.0.0", "http://localhost:4873/builtin-modules/-/builtin-modules-5.0.0.tgz", {}, "sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg=="], + "inspect-with-kind": ["inspect-with-kind@1.0.5", "", { "dependencies": { "kind-of": "^6.0.2" } }, "sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g=="], - "is-immutable-type/@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.47.0", "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "@typescript-eslint/typescript-estree": "8.47.0", "@typescript-eslint/utils": "8.47.0", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-QC9RiCmZ2HmIdCEvhd1aJELBlD93ErziOXXlHEZyuBo3tBiAZieya0HLIxp+DoDWlsQqDawyKuNEhORyku+P8A=="], + "is-arguments": ["is-arguments@1.2.0", "", { "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" } }, "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA=="], - "micromatch/picomatch": ["picomatch@2.3.1", "http://localhost:4873/picomatch/-/picomatch-2.3.1.tgz", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + "is-arrayish": ["is-arrayish@0.2.1", "", {}, "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="], - "stylelint/file-entry-cache": ["file-entry-cache@11.1.1", "http://localhost:4873/file-entry-cache/-/file-entry-cache-11.1.1.tgz", { "dependencies": { "flat-cache": "^6.1.19" } }, "sha512-TPVFSDE7q91Dlk1xpFLvFllf8r0HyOMOlnWy7Z2HBku5H3KhIeOGInexrIeg2D64DosVB/JXkrrk6N/7Wriq4A=="], + "is-callable": ["is-callable@1.2.7", "", {}, "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="], - "stylelint/ignore": ["ignore@7.0.5", "http://localhost:4873/ignore/-/ignore-7.0.5.tgz", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + "is-core-module": ["is-core-module@2.16.1", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="], - "stylelint-no-unsupported-browser-features/browserslist": ["browserslist@4.28.0", "http://localhost:4873/browserslist/-/browserslist-4.28.0.tgz", { "dependencies": { "baseline-browser-mapping": "^2.8.25", "caniuse-lite": "^1.0.30001754", "electron-to-chromium": "^1.5.249", "node-releases": "^2.0.27", "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" } }, "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ=="], + "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], - "stylelint-scss/known-css-properties": ["known-css-properties@0.36.0", "http://localhost:4873/known-css-properties/-/known-css-properties-0.36.0.tgz", {}, "sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA=="], + "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="], - "stylelint-scss/mdn-data": ["mdn-data@2.25.0", "http://localhost:4873/mdn-data/-/mdn-data-2.25.0.tgz", {}, "sha512-T2LPsjgUE/tgMmRXREVmwsux89DwWfNjiynOeXuLd2mX6jphGQ2YE3Ukz7LQ2VOFKiVZU/Ee1GqzHiipZCjymw=="], + "is-generator-function": ["is-generator-function@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "get-proto": "^1.0.0", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" } }, "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ=="], - "supports-hyperlinks/supports-color": ["supports-color@7.2.0", "http://localhost:4873/supports-color/-/supports-color-7.2.0.tgz", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], - "table/ajv": ["ajv@8.17.1", "http://localhost:4873/ajv/-/ajv-8.17.1.tgz", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="], + "is-nan": ["is-nan@1.3.2", "", { "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3" } }, "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w=="], - "typescript-eslint/@typescript-eslint/utils": ["@typescript-eslint/utils@8.48.1", "http://localhost:4873/@typescript-eslint/utils/-/utils-8.48.1.tgz", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.48.1", "@typescript-eslint/types": "8.48.1", "@typescript-eslint/typescript-estree": "8.48.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA=="], + "is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="], - "vite/fsevents": ["fsevents@2.3.3", "http://localhost:4873/fsevents/-/fsevents-2.3.3.tgz", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + "is-plain-obj": ["is-plain-obj@1.1.0", "", {}, "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.47.0", "http://localhost:4873/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.47.0.tgz", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.47.0", "@typescript-eslint/type-utils": "8.47.0", "@typescript-eslint/utils": "8.47.0", "@typescript-eslint/visitor-keys": "8.47.0", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.47.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-fe0rz9WJQ5t2iaLfdbDc9T80GJy0AeO453q8C3YCilnGozvOyCG5t+EZtg7j7D88+c3FipfP/x+wzGnh1xp8ZA=="], + "is-plain-object": ["is-plain-object@5.0.0", "", {}, "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/parser": ["@typescript-eslint/parser@8.47.0", "http://localhost:4873/@typescript-eslint/parser/-/parser-8.47.0.tgz", { "dependencies": { "@typescript-eslint/scope-manager": "8.47.0", "@typescript-eslint/types": "8.47.0", "@typescript-eslint/typescript-estree": "8.47.0", "@typescript-eslint/visitor-keys": "8.47.0", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-lJi3PfxVmo0AkEY93ecfN+r8SofEqZNGByvHAI3GBLrvt1Cw6H5k1IM02nSzu0RfUafr2EvFSw0wAsZgubNplQ=="], + "is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.47.0", "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-8.47.0.tgz", { "dependencies": { "@typescript-eslint/project-service": "8.47.0", "@typescript-eslint/tsconfig-utils": "8.47.0", "@typescript-eslint/types": "8.47.0", "@typescript-eslint/visitor-keys": "8.47.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg=="], + "is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], - "@gcch/configuration-prettier/prettier-plugin-curly/prettier": ["prettier@3.6.2", "http://localhost:4873/prettier/-/prettier-3.6.2.tgz", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="], + "is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], - "@typescript-eslint/eslint-plugin/@typescript-eslint/scope-manager/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "is-unicode-supported": ["is-unicode-supported@2.1.0", "", {}, "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ=="], - "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="], - "@typescript-eslint/type-utils/@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.48.1", "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz", { "dependencies": { "@typescript-eslint/types": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1" } }, "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w=="], + "isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], - "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.2.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + "isomorphic-timers-promises": ["isomorphic-timers-promises@1.0.1", "", {}, "sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.47.0", "http://localhost:4873/@typescript-eslint/project-service/-/project-service-8.47.0.tgz", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.47.0", "@typescript-eslint/types": "^8.47.0", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA=="], + "jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.47.0", "http://localhost:4873/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.47.0.tgz", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g=="], + "js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.47.0", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ=="], + "js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "http://localhost:4873/minimatch/-/minimatch-9.0.5.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - "core-js-compat/browserslist/baseline-browser-mapping": ["baseline-browser-mapping@2.8.30", "http://localhost:4873/baseline-browser-mapping/-/baseline-browser-mapping-2.8.30.tgz", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA=="], + "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], - "core-js-compat/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001756", "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz", {}, "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A=="], + "json-parse-even-better-errors": ["json-parse-even-better-errors@2.3.1", "", {}, "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="], - "core-js-compat/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.259", "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.5.259.tgz", {}, "sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ=="], + "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="], - "core-js-compat/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.4", "http://localhost:4873/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A=="], + "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="], - "doiuse/browserslist/baseline-browser-mapping": ["baseline-browser-mapping@2.8.30", "http://localhost:4873/baseline-browser-mapping/-/baseline-browser-mapping-2.8.30.tgz", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA=="], + "json5": ["json5@2.2.3", "", { "bin": { "json5": "lib/cli.js" } }, "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="], - "doiuse/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.259", "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.5.259.tgz", {}, "sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ=="], + "jsonc-parser": ["jsonc-parser@3.3.1", "", {}, "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ=="], - "doiuse/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.4", "http://localhost:4873/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A=="], + "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], - "duplexify/readable-stream/string_decoder": ["string_decoder@1.3.0", "http://localhost:4873/string_decoder/-/string_decoder-1.3.0.tgz", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], + "kind-of": ["kind-of@6.0.3", "", {}, "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="], - "eslint-plugin-sonarjs/minimatch/brace-expansion": ["brace-expansion@2.0.2", "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.2.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + "knip": ["knip@5.61.0", "", { "dependencies": { "@nodelib/fs.walk": "^1.2.3", "fast-glob": "^3.3.3", "formatly": "^0.2.4", "jiti": "^2.4.2", "js-yaml": "^4.1.0", "minimist": "^1.2.8", "oxc-resolver": "^11.1.0", "picocolors": "^1.1.1", "picomatch": "^4.0.1", "smol-toml": "^1.3.4", "strip-json-comments": "5.0.2", "zod": "^3.22.4", "zod-validation-error": "^3.0.3" }, "peerDependencies": { "@types/node": ">=18", "typescript": ">=5.0.4" }, "bin": { "knip": "bin/knip.js", "knip-bun": "bin/knip-bun.js" } }, "sha512-g4zwSPUoSCWXWTHshNgtsiuM90jnLpZyBZ6J7BQaydfoOjclgh4NfrD7BL+TjChgDbeYg5bEQcERKK/vdJlpmA=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.47.0", "http://localhost:4873/@typescript-eslint/typescript-estree/-/typescript-estree-8.47.0.tgz", { "dependencies": { "@typescript-eslint/project-service": "8.47.0", "@typescript-eslint/tsconfig-utils": "8.47.0", "@typescript-eslint/types": "8.47.0", "@typescript-eslint/visitor-keys": "8.47.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg=="], + "known-css-properties": ["known-css-properties@0.36.0", "", {}, "sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA=="], - "stylelint-no-unsupported-browser-features/browserslist/baseline-browser-mapping": ["baseline-browser-mapping@2.8.30", "http://localhost:4873/baseline-browser-mapping/-/baseline-browser-mapping-2.8.30.tgz", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA=="], + "levn": ["levn@0.4.1", "", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="], - "stylelint-no-unsupported-browser-features/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001756", "http://localhost:4873/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz", {}, "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A=="], + "lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "stylelint-no-unsupported-browser-features/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.259", "http://localhost:4873/electron-to-chromium/-/electron-to-chromium-1.5.259.tgz", {}, "sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ=="], + "linguist-languages": ["linguist-languages@7.27.0", "", {}, "sha512-Wzx/22c5Jsv2ag+uKy+ITanGA5hzvBZngrNGDXLTC7ZjGM6FLCYGgomauTkxNJeP9of353OM0pWqngYA180xgw=="], - "stylelint-no-unsupported-browser-features/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.4", "http://localhost:4873/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A=="], + "lit-html": ["lit-html@3.3.0", "", { "dependencies": { "@types/trusted-types": "^2.0.2" } }, "sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw=="], - "stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.19", "http://localhost:4873/flat-cache/-/flat-cache-6.1.19.tgz", { "dependencies": { "cacheable": "^2.2.0", "flatted": "^3.3.3", "hookified": "^1.13.0" } }, "sha512-l/K33newPTZMTGAnnzaiqSl6NnH7Namh8jBNjrgjprWxGmZUuxx/sJNIRaijOh3n7q7ESbhNZC+pvVZMFdeU4A=="], + "locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="], - "table/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "http://localhost:4873/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], + "lodash.debounce": ["lodash.debounce@4.0.8", "", {}, "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="], - "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.48.1", "http://localhost:4873/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz", { "dependencies": { "@typescript-eslint/types": "8.48.1", "@typescript-eslint/visitor-keys": "8.48.1" } }, "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w=="], + "lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="], - "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.48.1", "http://localhost:4873/@typescript-eslint/types/-/types-8.48.1.tgz", {}, "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q=="], + "lodash.truncate": ["lodash.truncate@4.4.2", "", {}, "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/eslint-plugin/@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.47.0", "http://localhost:4873/@typescript-eslint/type-utils/-/type-utils-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "@typescript-eslint/typescript-estree": "8.47.0", "@typescript-eslint/utils": "8.47.0", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-QC9RiCmZ2HmIdCEvhd1aJELBlD93ErziOXXlHEZyuBo3tBiAZieya0HLIxp+DoDWlsQqDawyKuNEhORyku+P8A=="], + "loglevel": ["loglevel@1.9.2", "", {}, "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/eslint-plugin/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.47.0", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ=="], + "loglevel-plugin-prefix": ["loglevel-plugin-prefix@0.8.4", "", {}, "sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "http://localhost:4873/ignore/-/ignore-7.0.5.tgz", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + "loupe": ["loupe@3.1.3", "", {}, "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/parser/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.47.0", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ=="], + "lowercase-keys": ["lowercase-keys@3.0.0", "", {}, "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.47.0", "http://localhost:4873/@typescript-eslint/project-service/-/project-service-8.47.0.tgz", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.47.0", "@typescript-eslint/types": "^8.47.0", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA=="], + "lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.47.0", "http://localhost:4873/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.47.0.tgz", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g=="], + "magic-string": ["magic-string@0.30.17", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0" } }, "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.47.0", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ=="], + "make-dir": ["make-dir@4.0.0", "", { "dependencies": { "semver": "^7.5.3" } }, "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "http://localhost:4873/minimatch/-/minimatch-9.0.5.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="], - "@typescript-eslint/typescript-estree/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "http://localhost:4873/balanced-match/-/balanced-match-1.0.2.tgz", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "mathml-tag-names": ["mathml-tag-names@2.1.3", "", {}, "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.2.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + "md5.js": ["md5.js@1.3.5", "", { "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1", "safe-buffer": "^5.1.2" } }, "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg=="], - "eslint-plugin-sonarjs/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "http://localhost:4873/balanced-match/-/balanced-match-1.0.2.tgz", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "mdn-data": ["mdn-data@2.12.2", "", {}, "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.47.0", "http://localhost:4873/@typescript-eslint/project-service/-/project-service-8.47.0.tgz", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.47.0", "@typescript-eslint/types": "^8.47.0", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA=="], + "meow": ["meow@13.2.0", "", {}, "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.47.0", "http://localhost:4873/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.47.0.tgz", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g=="], + "merge-stream": ["merge-stream@2.0.0", "", {}, "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.47.0", "http://localhost:4873/@typescript-eslint/visitor-keys/-/visitor-keys-8.47.0.tgz", { "dependencies": { "@typescript-eslint/types": "8.47.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ=="], + "merge2": ["merge2@1.4.1", "", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "http://localhost:4873/minimatch/-/minimatch-9.0.5.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.2.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + "miller-rabin": ["miller-rabin@4.0.1", "", { "dependencies": { "bn.js": "^4.0.0", "brorand": "^1.0.1" }, "bin": { "miller-rabin": "bin/miller-rabin" } }, "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "http://localhost:4873/balanced-match/-/balanced-match-1.0.2.tgz", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "mime-db": ["mime-db@1.53.0", "", {}, "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "http://localhost:4873/brace-expansion/-/brace-expansion-2.0.2.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], + "mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], - "@gcch/configuration-eslint/typescript-eslint/@typescript-eslint/typescript-estree/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "http://localhost:4873/balanced-match/-/balanced-match-1.0.2.tgz", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "mimic-response": ["mimic-response@4.0.0", "", {}, "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg=="], - "is-immutable-type/@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "http://localhost:4873/balanced-match/-/balanced-match-1.0.2.tgz", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "minimalistic-assert": ["minimalistic-assert@1.0.1", "", {}, "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="], + + "minimalistic-crypto-utils": ["minimalistic-crypto-utils@1.0.1", "", {}, "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="], + + "minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="], + + "mrmime": ["mrmime@2.0.0", "", {}, "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw=="], + + "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + + "msgpackr": ["msgpackr@1.11.4", "", { "optionalDependencies": { "msgpackr-extract": "^3.0.2" } }, "sha512-uaff7RG9VIC4jacFW9xzL3jc0iM32DNHe4jYVycBcjUePT/Klnfj7pqtWJt9khvDFizmjN2TlYniYmSS2LIaZg=="], + + "msgpackr-extract": ["msgpackr-extract@3.0.3", "", { "dependencies": { "node-gyp-build-optional-packages": "5.2.2" }, "optionalDependencies": { "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" }, "bin": { "download-msgpackr-prebuilds": "bin/download-prebuilds.js" } }, "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA=="], + + "multipasta": ["multipasta@0.2.5", "", {}, "sha512-c8eMDb1WwZcE02WVjHoOmUVk7fnKU/RmUcosHACglrWAuPQsEJv+E8430sXj6jNc1jHw0zrS16aCjQh4BcEb4A=="], + + "nanoid": ["nanoid@3.3.8", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="], + + "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], + + "natural-orderby": ["natural-orderby@5.0.0", "", {}, "sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg=="], + + "node-gyp-build-optional-packages": ["node-gyp-build-optional-packages@5.2.2", "", { "dependencies": { "detect-libc": "^2.0.1" }, "bin": { "node-gyp-build-optional-packages": "bin.js", "node-gyp-build-optional-packages-optional": "optional.js", "node-gyp-build-optional-packages-test": "build-test.js" } }, "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw=="], + + "node-releases": ["node-releases@2.0.19", "", {}, "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="], + + "node-stdlib-browser": ["node-stdlib-browser@1.3.0", "", { "dependencies": { "assert": "^2.0.0", "browser-resolve": "^2.0.0", "browserify-zlib": "^0.2.0", "buffer": "^5.7.1", "console-browserify": "^1.1.0", "constants-browserify": "^1.0.0", "create-require": "^1.1.1", "crypto-browserify": "^3.11.0", "domain-browser": "4.22.0", "events": "^3.0.0", "https-browserify": "^1.0.0", "isomorphic-timers-promises": "^1.0.1", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", "pkg-dir": "^5.0.0", "process": "^0.11.10", "punycode": "^1.4.1", "querystring-es3": "^0.2.1", "readable-stream": "^3.6.0", "stream-browserify": "^3.0.0", "stream-http": "^3.2.0", "string_decoder": "^1.0.0", "timers-browserify": "^2.0.4", "tty-browserify": "0.0.1", "url": "^0.11.4", "util": "^0.12.4", "vm-browserify": "^1.0.1" } }, "sha512-g/koYzOr9Fb1Jc+tHUHlFd5gODjGn48tHexUK8q6iqOVriEgSnd3/1T7myBYc+0KBVze/7F7n65ec9rW6OD7xw=="], + + "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], + + "normalize-url": ["normalize-url@8.0.1", "", {}, "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w=="], + + "npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], + + "object-inspect": ["object-inspect@1.13.3", "", {}, "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA=="], + + "object-is": ["object-is@1.1.6", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1" } }, "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q=="], + + "object-keys": ["object-keys@1.1.1", "", {}, "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="], + + "object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], + + "onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], + + "optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="], + + "os-browserify": ["os-browserify@0.3.0", "", {}, "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A=="], + + "oxc-resolver": ["oxc-resolver@11.2.0", "", { "optionalDependencies": { "@oxc-resolver/binding-darwin-arm64": "11.2.0", "@oxc-resolver/binding-darwin-x64": "11.2.0", "@oxc-resolver/binding-freebsd-x64": "11.2.0", "@oxc-resolver/binding-linux-arm-gnueabihf": "11.2.0", "@oxc-resolver/binding-linux-arm64-gnu": "11.2.0", "@oxc-resolver/binding-linux-arm64-musl": "11.2.0", "@oxc-resolver/binding-linux-riscv64-gnu": "11.2.0", "@oxc-resolver/binding-linux-s390x-gnu": "11.2.0", "@oxc-resolver/binding-linux-x64-gnu": "11.2.0", "@oxc-resolver/binding-linux-x64-musl": "11.2.0", "@oxc-resolver/binding-wasm32-wasi": "11.2.0", "@oxc-resolver/binding-win32-arm64-msvc": "11.2.0", "@oxc-resolver/binding-win32-x64-msvc": "11.2.0" } }, "sha512-3iJYyIdDZMDoj0ZSVBrI1gUvPBMkDC4gxonBG+7uqUyK5EslG0mCwnf6qhxK8oEU7jLHjbRBNyzflPSd3uvH7Q=="], + + "oxlint": ["oxlint@1.1.0", "", { "optionalDependencies": { "@oxlint/darwin-arm64": "1.1.0", "@oxlint/darwin-x64": "1.1.0", "@oxlint/linux-arm64-gnu": "1.1.0", "@oxlint/linux-arm64-musl": "1.1.0", "@oxlint/linux-x64-gnu": "1.1.0", "@oxlint/linux-x64-musl": "1.1.0", "@oxlint/win32-arm64": "1.1.0", "@oxlint/win32-x64": "1.1.0" }, "bin": { "oxlint": "bin/oxlint", "oxc_language_server": "bin/oxc_language_server" } }, "sha512-OVNpaoaQCUHHhCv5sYMPJ7Ts5k7ziw0QteH1gBSwF3elf/8GAew2Uh/0S7HsU1iGtjhlFy80+A8nwIb3Tq6m1w=="], + + "p-cancelable": ["p-cancelable@3.0.0", "", {}, "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw=="], + + "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], + + "p-locate": ["p-locate@5.0.0", "", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="], + + "pako": ["pako@1.0.11", "", {}, "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="], + + "parent-module": ["parent-module@2.0.0", "", { "dependencies": { "callsites": "^3.1.0" } }, "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg=="], + + "parse-asn1": ["parse-asn1@5.1.7", "", { "dependencies": { "asn1.js": "^4.10.1", "browserify-aes": "^1.2.0", "evp_bytestokey": "^1.0.3", "hash-base": "~3.0", "pbkdf2": "^3.1.2", "safe-buffer": "^5.2.1" } }, "sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg=="], + + "parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], + + "path-browserify": ["path-browserify@1.0.1", "", {}, "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="], + + "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], + + "path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="], + + "path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="], + + "path-type": ["path-type@4.0.0", "", {}, "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="], + + "pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "pathval": ["pathval@2.0.0", "", {}, "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA=="], + + "pbkdf2": ["pbkdf2@3.1.2", "", { "dependencies": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", "ripemd160": "^2.0.1", "safe-buffer": "^5.0.1", "sha.js": "^2.4.8" } }, "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="], + + "peek-readable": ["peek-readable@5.4.2", "", {}, "sha512-peBp3qZyuS6cNIJ2akRNG1uo1WJ1d0wTxg/fxMdZ0BqCVhx242bSFHM9eNqflfJVS9SsgkzgT/1UgnsurBOTMg=="], + + "pend": ["pend@1.2.0", "", {}, "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="], + + "php-parser": ["php-parser@3.2.2", "", {}, "sha512-voj3rzCJmEbwHwH3QteON28wA6K+JbcaJEofyUZkUXmcViiXofjbSbcE5PtqtjX6nstnnAEYCFoRq0mkjP5/cg=="], + + "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], + + "piscina": ["piscina@4.8.0", "", { "optionalDependencies": { "@napi-rs/nice": "^1.0.1" } }, "sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA=="], + + "pkg-dir": ["pkg-dir@5.0.0", "", { "dependencies": { "find-up": "^5.0.0" } }, "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA=="], + + "possible-typed-array-names": ["possible-typed-array-names@1.0.0", "", {}, "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q=="], + + "postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "postcss-media-query-parser": ["postcss-media-query-parser@0.2.3", "", {}, "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig=="], + + "postcss-resolve-nested-selector": ["postcss-resolve-nested-selector@0.1.6", "", {}, "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw=="], + + "postcss-safe-parser": ["postcss-safe-parser@7.0.1", "", { "peerDependencies": { "postcss": "^8.4.31" } }, "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A=="], + + "postcss-scss": ["postcss-scss@4.0.9", "", { "peerDependencies": { "postcss": "^8.4.29" } }, "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A=="], + + "postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + + "postcss-sorting": ["postcss-sorting@8.0.2", "", { "peerDependencies": { "postcss": "^8.4.20" } }, "sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q=="], + + "postcss-value-parser": ["postcss-value-parser@4.2.0", "", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="], + + "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], + + "prettier": ["prettier@3.5.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw=="], + + "prettier-plugin-pkg": ["prettier-plugin-pkg@0.21.1", "", { "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-f9qlj08joTh+x4UAQvL0UdhLf+LyJyBN9CBEnH7Ip1hitcc52vfkZEH5I7PsRFyDu/bm4d94GaJ7mfeLmFEsfg=="], + + "prettier-plugin-sh": ["prettier-plugin-sh@0.17.4", "", { "dependencies": { "@reteps/dockerfmt": "^0.3.5", "sh-syntax": "^0.5.6" }, "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-aAVKXZ7GTEMZdZsIPSwMwddwPvt2ibMbRGd4OJAP0G7QoeYZV+mPNg2Oln3R53sZ4PVjeAA7Xzi/PuI0QlHHfQ=="], + + "process": ["process@0.11.10", "", {}, "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="], + + "process-nextick-args": ["process-nextick-args@2.0.1", "", {}, "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="], + + "public-encrypt": ["public-encrypt@4.0.3", "", { "dependencies": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", "create-hash": "^1.1.0", "parse-asn1": "^5.0.0", "randombytes": "^2.0.1", "safe-buffer": "^5.1.2" } }, "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="], + + "punycode": ["punycode@1.4.1", "", {}, "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ=="], + + "pure-rand": ["pure-rand@6.1.0", "", {}, "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA=="], + + "qs": ["qs@6.14.0", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w=="], + + "querystring-es3": ["querystring-es3@0.2.1", "", {}, "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA=="], + + "queue-microtask": ["queue-microtask@1.2.3", "", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="], + + "quick-lru": ["quick-lru@5.1.1", "", {}, "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="], + + "randombytes": ["randombytes@2.1.0", "", { "dependencies": { "safe-buffer": "^5.1.0" } }, "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="], + + "randomfill": ["randomfill@1.0.4", "", { "dependencies": { "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" } }, "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw=="], + + "readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], + + "regenerate": ["regenerate@1.4.2", "", {}, "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="], + + "regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], + + "regenerator-runtime": ["regenerator-runtime@0.14.1", "", {}, "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="], + + "regenerator-transform": ["regenerator-transform@0.15.2", "", { "dependencies": { "@babel/runtime": "^7.8.4" } }, "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="], + + "regexp-to-ast": ["regexp-to-ast@0.5.0", "", {}, "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw=="], + + "regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], + + "regjsgen": ["regjsgen@0.8.0", "", {}, "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q=="], + + "regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], + + "repeat-string": ["repeat-string@1.6.1", "", {}, "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w=="], + + "require-from-string": ["require-from-string@2.0.2", "", {}, "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="], + + "resolve": ["resolve@1.22.10", "", { "dependencies": { "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w=="], + + "resolve-alpn": ["resolve-alpn@1.2.1", "", {}, "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="], + + "resolve-from": ["resolve-from@5.0.0", "", {}, "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="], + + "responselike": ["responselike@3.0.0", "", { "dependencies": { "lowercase-keys": "^3.0.0" } }, "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg=="], + + "reusify": ["reusify@1.0.4", "", {}, "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="], + + "ripemd160": ["ripemd160@2.0.2", "", { "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" } }, "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="], + + "rollup": ["rollup@4.40.0", "", { "dependencies": { "@types/estree": "1.0.7" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.40.0", "@rollup/rollup-android-arm64": "4.40.0", "@rollup/rollup-darwin-arm64": "4.40.0", "@rollup/rollup-darwin-x64": "4.40.0", "@rollup/rollup-freebsd-arm64": "4.40.0", "@rollup/rollup-freebsd-x64": "4.40.0", "@rollup/rollup-linux-arm-gnueabihf": "4.40.0", "@rollup/rollup-linux-arm-musleabihf": "4.40.0", "@rollup/rollup-linux-arm64-gnu": "4.40.0", "@rollup/rollup-linux-arm64-musl": "4.40.0", "@rollup/rollup-linux-loongarch64-gnu": "4.40.0", "@rollup/rollup-linux-powerpc64le-gnu": "4.40.0", "@rollup/rollup-linux-riscv64-gnu": "4.40.0", "@rollup/rollup-linux-riscv64-musl": "4.40.0", "@rollup/rollup-linux-s390x-gnu": "4.40.0", "@rollup/rollup-linux-x64-gnu": "4.40.0", "@rollup/rollup-linux-x64-musl": "4.40.0", "@rollup/rollup-win32-arm64-msvc": "4.40.0", "@rollup/rollup-win32-ia32-msvc": "4.40.0", "@rollup/rollup-win32-x64-msvc": "4.40.0", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w=="], + + "run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], + + "rxjs": ["rxjs@7.8.1", "", { "dependencies": { "tslib": "^2.1.0" } }, "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg=="], + + "safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], + + "safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], + + "sass-embedded": ["sass-embedded@1.89.2", "", { "dependencies": { "@bufbuild/protobuf": "^2.5.0", "buffer-builder": "^0.2.0", "colorjs.io": "^0.5.0", "immutable": "^5.0.2", "rxjs": "^7.4.0", "supports-color": "^8.1.1", "sync-child-process": "^1.0.2", "varint": "^6.0.0" }, "optionalDependencies": { "sass-embedded-android-arm": "1.89.2", "sass-embedded-android-arm64": "1.89.2", "sass-embedded-android-riscv64": "1.89.2", "sass-embedded-android-x64": "1.89.2", "sass-embedded-darwin-arm64": "1.89.2", "sass-embedded-darwin-x64": "1.89.2", "sass-embedded-linux-arm": "1.89.2", "sass-embedded-linux-arm64": "1.89.2", "sass-embedded-linux-musl-arm": "1.89.2", "sass-embedded-linux-musl-arm64": "1.89.2", "sass-embedded-linux-musl-riscv64": "1.89.2", "sass-embedded-linux-musl-x64": "1.89.2", "sass-embedded-linux-riscv64": "1.89.2", "sass-embedded-linux-x64": "1.89.2", "sass-embedded-win32-arm64": "1.89.2", "sass-embedded-win32-x64": "1.89.2" }, "bin": { "sass": "dist/bin/sass.js" } }, "sha512-Ack2K8rc57kCFcYlf3HXpZEJFNUX8xd8DILldksREmYXQkRHI879yy8q4mRDJgrojkySMZqmmmW1NxrFxMsYaA=="], + + "sass-embedded-android-arm": ["sass-embedded-android-arm@1.89.2", "", { "os": "android", "cpu": "arm" }, "sha512-oHAPTboBHRZlDBhyRB6dvDKh4KvFs+DZibDHXbkSI6dBZxMTT+Yb2ivocHnctVGucKTLQeT7+OM5DjWHyynL/A=="], + + "sass-embedded-android-arm64": ["sass-embedded-android-arm64@1.89.2", "", { "os": "android", "cpu": "arm64" }, "sha512-+pq7a7AUpItNyPu61sRlP6G2A8pSPpyazASb+8AK2pVlFayCSPAEgpwpCE9A2/Xj86xJZeMizzKUHxM2CBCUxA=="], + + "sass-embedded-android-riscv64": ["sass-embedded-android-riscv64@1.89.2", "", { "os": "android", "cpu": "none" }, "sha512-HfJJWp/S6XSYvlGAqNdakeEMPOdhBkj2s2lN6SHnON54rahKem+z9pUbCriUJfM65Z90lakdGuOfidY61R9TYg=="], + + "sass-embedded-android-x64": ["sass-embedded-android-x64@1.89.2", "", { "os": "android", "cpu": "x64" }, "sha512-BGPzq53VH5z5HN8de6jfMqJjnRe1E6sfnCWFd4pK+CAiuM7iw5Fx6BQZu3ikfI1l2GY0y6pRXzsVLdp/j4EKEA=="], + + "sass-embedded-darwin-arm64": ["sass-embedded-darwin-arm64@1.89.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-UCm3RL/tzMpG7DsubARsvGUNXC5pgfQvP+RRFJo9XPIi6elopY5B6H4m9dRYDpHA+scjVthdiDwkPYr9+S/KGw=="], + + "sass-embedded-darwin-x64": ["sass-embedded-darwin-x64@1.89.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-D9WxtDY5VYtMApXRuhQK9VkPHB8R79NIIR6xxVlN2MIdEid/TZWi1MHNweieETXhWGrKhRKglwnHxxyKdJYMnA=="], + + "sass-embedded-linux-arm": ["sass-embedded-linux-arm@1.89.2", "", { "os": "linux", "cpu": "arm" }, "sha512-leP0t5U4r95dc90o8TCWfxNXwMAsQhpWxTkdtySDpngoqtTy3miMd7EYNYd1znI0FN1CBaUvbdCMbnbPwygDlA=="], + + "sass-embedded-linux-arm64": ["sass-embedded-linux-arm64@1.89.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-2N4WW5LLsbtrWUJ7iTpjvhajGIbmDR18ZzYRywHdMLpfdPApuHPMDF5CYzHbS+LLx2UAx7CFKBnj5LLjY6eFgQ=="], + + "sass-embedded-linux-musl-arm": ["sass-embedded-linux-musl-arm@1.89.2", "", { "os": "linux", "cpu": "arm" }, "sha512-Z6gG2FiVEEdxYHRi2sS5VIYBmp17351bWtOCUZ/thBM66+e70yiN6Eyqjz80DjL8haRUegNQgy9ZJqsLAAmr9g=="], + + "sass-embedded-linux-musl-arm64": ["sass-embedded-linux-musl-arm64@1.89.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-nTyuaBX6U1A/cG7WJh0pKD1gY8hbg1m2SnzsyoFG+exQ0lBX/lwTLHq3nyhF+0atv7YYhYKbmfz+sjPP8CZ9lw=="], + + "sass-embedded-linux-musl-riscv64": ["sass-embedded-linux-musl-riscv64@1.89.2", "", { "os": "linux", "cpu": "none" }, "sha512-N6oul+qALO0SwGY8JW7H/Vs0oZIMrRMBM4GqX3AjM/6y8JsJRxkAwnfd0fDyK+aICMFarDqQonQNIx99gdTZqw=="], + + "sass-embedded-linux-musl-x64": ["sass-embedded-linux-musl-x64@1.89.2", "", { "os": "linux", "cpu": "x64" }, "sha512-K+FmWcdj/uyP8GiG9foxOCPfb5OAZG0uSVq80DKgVSC0U44AdGjvAvVZkrgFEcZ6cCqlNC2JfYmslB5iqdL7tg=="], + + "sass-embedded-linux-riscv64": ["sass-embedded-linux-riscv64@1.89.2", "", { "os": "linux", "cpu": "none" }, "sha512-g9nTbnD/3yhOaskeqeBQETbtfDQWRgsjHok6bn7DdAuwBsyrR3JlSFyqKc46pn9Xxd9SQQZU8AzM4IR+sY0A0w=="], + + "sass-embedded-linux-x64": ["sass-embedded-linux-x64@1.89.2", "", { "os": "linux", "cpu": "x64" }, "sha512-Ax7dKvzncyQzIl4r7012KCMBvJzOz4uwSNoyoM5IV6y5I1f5hEwI25+U4WfuTqdkv42taCMgpjZbh9ERr6JVMQ=="], + + "sass-embedded-win32-arm64": ["sass-embedded-win32-arm64@1.89.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-j96iJni50ZUsfD6tRxDQE2QSYQ2WrfHxeiyAXf41Kw0V4w5KYR/Sf6rCZQLMTUOHnD16qTMVpQi20LQSqf4WGg=="], + + "sass-embedded-win32-x64": ["sass-embedded-win32-x64@1.89.2", "", { "os": "win32", "cpu": "x64" }, "sha512-cS2j5ljdkQsb4PaORiClaVYynE9OAPZG/XjbOMxpQmjRIf7UroY4PEIH+Waf+y47PfXFX9SyxhYuw2NIKGbEng=="], + + "seek-bzip": ["seek-bzip@2.0.0", "", { "dependencies": { "commander": "^6.0.0" }, "bin": { "seek-bunzip": "bin/seek-bunzip", "seek-table": "bin/seek-bzip-table" } }, "sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg=="], + + "semver": ["semver@7.7.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="], + + "semver-regex": ["semver-regex@4.0.5", "", {}, "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw=="], + + "semver-truncate": ["semver-truncate@3.0.0", "", { "dependencies": { "semver": "^7.3.5" } }, "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg=="], + + "set-function-length": ["set-function-length@1.2.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" } }, "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="], + + "setimmediate": ["setimmediate@1.0.5", "", {}, "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="], + + "sh-syntax": ["sh-syntax@0.5.7", "", { "dependencies": { "tslib": "^2.8.1" } }, "sha512-74m9dt91konrF5+m0kASugzi37VxKsnTJQ6yvdDZu3IijG5/vIZpImP6FadsJLWNt2X2YD0VaTwW5W7Ox7mFVg=="], + + "sha.js": ["sha.js@2.4.11", "", { "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" }, "bin": { "sha.js": "./bin.js" } }, "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="], + + "shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="], + + "shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="], + + "side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="], + + "side-channel-list": ["side-channel-list@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" } }, "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="], + + "side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="], + + "side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="], + + "siginfo": ["siginfo@2.0.0", "", {}, "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g=="], + + "signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + + "sirv": ["sirv@3.0.1", "", { "dependencies": { "@polka/url": "^1.0.0-next.24", "mrmime": "^2.0.0", "totalist": "^3.0.0" } }, "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A=="], + + "slash": ["slash@3.0.0", "", {}, "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="], + + "slice-ansi": ["slice-ansi@4.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }, "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="], + + "smol-toml": ["smol-toml@1.3.4", "", {}, "sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA=="], + + "sort-keys": ["sort-keys@1.1.2", "", { "dependencies": { "is-plain-obj": "^1.0.0" } }, "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg=="], + + "sort-keys-length": ["sort-keys-length@1.0.1", "", { "dependencies": { "sort-keys": "^1.0.0" } }, "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw=="], + + "source-map": ["source-map@0.7.4", "", {}, "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="], + + "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], + + "source-map-support": ["source-map-support@0.5.21", "", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="], + + "stackback": ["stackback@0.0.2", "", {}, "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw=="], + + "std-env": ["std-env@3.9.0", "", {}, "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw=="], + + "stream-browserify": ["stream-browserify@3.0.0", "", { "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" } }, "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA=="], + + "stream-http": ["stream-http@3.2.0", "", { "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", "readable-stream": "^3.6.0", "xtend": "^4.0.2" } }, "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A=="], + + "streamx": ["streamx@2.22.0", "", { "dependencies": { "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" }, "optionalDependencies": { "bare-events": "^2.2.0" } }, "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw=="], + + "string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], + + "strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-dirs": ["strip-dirs@3.0.0", "", { "dependencies": { "inspect-with-kind": "^1.0.5", "is-plain-obj": "^1.1.0" } }, "sha512-I0sdgcFTfKQlUPZyAqPJmSG3HLO9rWDFnxonnIbskYNM3DwFOeTNB5KzVq3dA1GdRAc/25b5Y7UO2TQfKWw4aQ=="], + + "strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], + + "strip-json-comments": ["strip-json-comments@5.0.2", "", {}, "sha512-4X2FR3UwhNUE9G49aIsJW5hRRR3GXGTBTZRMfv568O60ojM8HcWjV/VxAxCDW3SUND33O6ZY66ZuRcdkj73q2g=="], + + "strip-literal": ["strip-literal@3.0.0", "", { "dependencies": { "js-tokens": "^9.0.1" } }, "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA=="], + + "strtok3": ["strtok3@9.1.1", "", { "dependencies": { "@tokenizer/token": "^0.3.0", "peek-readable": "^5.3.1" } }, "sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw=="], + + "style-search": ["style-search@0.1.0", "", {}, "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg=="], + + "stylelint": ["stylelint@16.20.0", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", "@csstools/media-query-list-parser": "^4.0.2", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.1.0", "debug": "^4.4.1", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^10.1.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^7.0.4", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.36.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.5.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.2.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" } }, "sha512-B5Myu9WRxrgKuLs3YyUXLP2H0mrbejwNxPmyADlACWwFsrL8Bmor/nTSh4OMae5sHjOz6gkSeccQH34gM4/nAw=="], + + "stylelint-config-clean-order": ["stylelint-config-clean-order@7.0.0", "", { "dependencies": { "stylelint-order": "^6.0.4" }, "peerDependencies": { "stylelint": ">=14" } }, "sha512-R28w1xNliIbem3o+VIrNjAU8cMgxrGlDoXVqWW7lJ1OvSDsmNGj5aKSW6Xm7i5PK4E99T3Hs19BJFni5IbE56g=="], + + "stylelint-config-recommended": ["stylelint-config-recommended@16.0.0", "", { "peerDependencies": { "stylelint": "^16.16.0" } }, "sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA=="], + + "stylelint-config-recommended-scss": ["stylelint-config-recommended-scss@15.0.1", "", { "dependencies": { "postcss-scss": "^4.0.9", "stylelint-config-recommended": "^16.0.0", "stylelint-scss": "^6.12.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.16.0" }, "optionalPeers": ["postcss"] }, "sha512-V24bxkNkFGggqPVJlP9iXaBabwSGEG7QTz+PyxrRtjPkcF+/NsWtB3tKYvFYEmczRkWiIEfuFMhGpJFj9Fxe6Q=="], + + "stylelint-config-sass-guidelines": ["stylelint-config-sass-guidelines@12.1.0", "", { "dependencies": { "@stylistic/stylelint-plugin": "^3.0.1", "postcss-scss": "^4.0.9", "stylelint-scss": "^6.2.1" }, "peerDependencies": { "postcss": "^8.4.21", "stylelint": "^16.1.0" } }, "sha512-NTxEtVT6uNSqRvq+A3ScyKhjUrY/Z845TnpWEwnMgIPZ/+/Waa4+51r6OPuQRMu4XZS3D8DK1UaT4TWFBvuuAw=="], + + "stylelint-config-standard": ["stylelint-config-standard@38.0.0", "", { "dependencies": { "stylelint-config-recommended": "^16.0.0" }, "peerDependencies": { "stylelint": "^16.18.0" } }, "sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag=="], + + "stylelint-config-standard-scss": ["stylelint-config-standard-scss@15.0.1", "", { "dependencies": { "stylelint-config-recommended-scss": "^15.0.1", "stylelint-config-standard": "^38.0.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.18.0" }, "optionalPeers": ["postcss"] }, "sha512-8pmmfutrMlPHukLp+Th9asmk21tBXMVGxskZCzkRVWt1d8Z0SrXjUUQ3vn9KcBj1bJRd5msk6yfEFM0UYHBRdg=="], + + "stylelint-declaration-block-no-ignored-properties": ["stylelint-declaration-block-no-ignored-properties@2.8.0", "", { "peerDependencies": { "stylelint": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, "sha512-Ws8Cav7Y+SPN0JsV407LrnNXWOrqGjxShf+37GBtnU/C58Syve9c0+I/xpLcFOosST3ternykn3Lp77f3ITnFw=="], + + "stylelint-order": ["stylelint-order@6.0.4", "", { "dependencies": { "postcss": "^8.4.32", "postcss-sorting": "^8.0.2" }, "peerDependencies": { "stylelint": "^14.0.0 || ^15.0.0 || ^16.0.1" } }, "sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA=="], + + "stylelint-plugin-logical-css": ["stylelint-plugin-logical-css@1.2.3", "", { "peerDependencies": { "stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0" } }, "sha512-yzSDrw4yyZJosgMablqqQzCeJmsPRAK/H7X1XzliQkYvoC/ZHBfHKos27dQEwwSLBUaYg+7nJ1ct7OlST4iqZA=="], + + "stylelint-scss": ["stylelint-scss@6.11.0", "", { "dependencies": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mdn-data": "^2.15.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "sha512-AvJ6LVzz2iXHxPlPTR9WVy73FC/vmohH54VySNlCKX1NIXNAeuzy/VbIkMJLMyw/xKYqkgY4kAgB+qy5BfCaCg=="], + + "supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], + + "supports-hyperlinks": ["supports-hyperlinks@3.2.0", "", { "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" } }, "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig=="], + + "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="], + + "svg-tags": ["svg-tags@1.0.0", "", {}, "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA=="], + + "sync-child-process": ["sync-child-process@1.0.2", "", { "dependencies": { "sync-message-port": "^1.0.0" } }, "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA=="], + + "sync-message-port": ["sync-message-port@1.1.3", "", {}, "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg=="], + + "systemjs": ["systemjs@6.15.1", "", {}, "sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA=="], + + "table": ["table@6.9.0", "", { "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }, "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A=="], + + "tar-stream": ["tar-stream@3.1.7", "", { "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="], + + "terser": ["terser@5.37.0", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA=="], + + "text-decoder": ["text-decoder@1.2.3", "", { "dependencies": { "b4a": "^1.6.4" } }, "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA=="], + + "through": ["through@2.3.8", "", {}, "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="], + + "timers-browserify": ["timers-browserify@2.0.12", "", { "dependencies": { "setimmediate": "^1.0.4" } }, "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ=="], + + "tinybench": ["tinybench@2.9.0", "", {}, "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg=="], + + "tinyexec": ["tinyexec@0.3.2", "", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="], + + "tinyglobby": ["tinyglobby@0.2.14", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ=="], + + "tinypool": ["tinypool@1.1.0", "", {}, "sha512-7CotroY9a8DKsKprEy/a14aCCm8jYVmR7aFy4fpkZM8sdpNJbKkixuNjgM50yCmip2ezc8z4N7k3oe2+rfRJCQ=="], + + "tinyrainbow": ["tinyrainbow@2.0.0", "", {}, "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw=="], + + "tinyspy": ["tinyspy@4.0.3", "", {}, "sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A=="], + + "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], + + "token-types": ["token-types@6.0.0", "", { "dependencies": { "@tokenizer/token": "^0.3.0", "ieee754": "^1.2.1" } }, "sha512-lbDrTLVsHhOMljPscd0yitpozq7Ga2M5Cvez5AjGg8GASBjtt6iERCAJ93yommPmz62fb45oFIXHEZ3u9bfJEA=="], + + "totalist": ["totalist@3.0.1", "", {}, "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ=="], + + "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], + + "ts-pattern": ["ts-pattern@5.7.1", "", {}, "sha512-EGs8PguQqAAUIcQfK4E9xdXxB6s2GK4sJfT/vcc9V1ELIvC4LH/zXu2t/5fajtv6oiRCxdv7BgtVK3vWgROxag=="], + + "tsconfck": ["tsconfck@3.1.4", "", { "peerDependencies": { "typescript": "^5.0.0" }, "optionalPeers": ["typescript"], "bin": { "tsconfck": "bin/tsconfck.js" } }, "sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ=="], + + "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "tty-browserify": ["tty-browserify@0.0.1", "", {}, "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="], + + "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + + "typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="], + + "typescript-eslint": ["typescript-eslint@8.34.0", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.34.0", "@typescript-eslint/parser": "8.34.0", "@typescript-eslint/utils": "8.34.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-MRpfN7uYjTrTGigFCt8sRyNqJFhjN0WwZecldaqhWm+wy0gaRt8Edb/3cuUy0zdq2opJWT6iXINKAtewnDOltQ=="], + + "uint8array-extras": ["uint8array-extras@1.4.0", "", {}, "sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ=="], + + "unbzip2-stream": ["unbzip2-stream@1.4.3", "", { "dependencies": { "buffer": "^5.2.1", "through": "^2.3.8" } }, "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg=="], + + "undici-types": ["undici-types@7.8.0", "", {}, "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw=="], + + "unicode-canonical-property-names-ecmascript": ["unicode-canonical-property-names-ecmascript@2.0.1", "", {}, "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg=="], + + "unicode-match-property-ecmascript": ["unicode-match-property-ecmascript@2.0.0", "", { "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" } }, "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="], + + "unicode-match-property-value-ecmascript": ["unicode-match-property-value-ecmascript@2.2.0", "", {}, "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg=="], + + "unicode-property-aliases-ecmascript": ["unicode-property-aliases-ecmascript@2.1.0", "", {}, "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="], + + "update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="], + + "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="], + + "url": ["url@0.11.4", "", { "dependencies": { "punycode": "^1.4.1", "qs": "^6.12.3" } }, "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg=="], + + "util": ["util@0.12.5", "", { "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", "is-typed-array": "^1.1.3", "which-typed-array": "^1.1.2" } }, "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA=="], + + "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], + + "valibot": ["valibot@1.1.0", "", { "peerDependencies": { "typescript": ">=5" }, "optionalPeers": ["typescript"] }, "sha512-Nk8lX30Qhu+9txPYTwM0cFlWLdPFsFr6LblzqIySfbZph9+BFsAHsNvHOymEviUepeIW6KFHzpX8TKhbptBXXw=="], + + "varint": ["varint@6.0.0", "", {}, "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg=="], + + "vite": ["vite@6.3.5", "", { "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.4.4", "picomatch": "^4.0.2", "postcss": "^8.5.3", "rollup": "^4.34.9", "tinyglobby": "^0.2.13" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "jiti": ">=1.21.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ=="], + + "vite-node": ["vite-node@3.2.3", "", { "dependencies": { "cac": "^6.7.14", "debug": "^4.4.1", "es-module-lexer": "^1.7.0", "pathe": "^2.0.3", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "bin": { "vite-node": "vite-node.mjs" } }, "sha512-gc8aAifGuDIpZHrPjuHyP4dpQmYXqWw7D1GmDnWeNWP654UEXzVfQ5IHPSK5HaHkwB/+p1atpYpSdw/2kOv8iQ=="], + + "vite-plugin-manifest-sri": ["vite-plugin-manifest-sri@0.2.0", "", {}, "sha512-Zt5jt19xTIJ91LOuQTCtNG7rTFc5OziAjBz2H5NdCGqaOD1nxrWExLhcKW+W4/q8/jOPCg/n5ncYEQmqCxiGQQ=="], + + "vite-plugin-node-polyfills": ["vite-plugin-node-polyfills@0.23.0", "", { "dependencies": { "@rollup/plugin-inject": "^5.0.5", "node-stdlib-browser": "^1.2.0" }, "peerDependencies": { "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" } }, "sha512-4n+Ys+2bKHQohPBKigFlndwWQ5fFKwaGY6muNDMTb0fSQLyBzS+jjUNRZG9sKF0S/Go4ApG6LFnUGopjkILg3w=="], + + "vite-plugin-valibot-env": ["vite-plugin-valibot-env@0.10.2", "", { "dependencies": { "is-unicode-supported": "^2.1.0" }, "peerDependencies": { "valibot": ">=1.0.0", "vite": "^5.0.0 || >=6.0.0" } }, "sha512-okp5sVQ0ZNA6JhkWFpviX9kszAlvL9rdFyKWnWpFpwNYoTVJcfvUVxB5bFKstAUzaTelV0mH8RqmHhgj5qxLkA=="], + + "vite-tsconfig-paths": ["vite-tsconfig-paths@5.1.4", "", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" }, "optionalPeers": ["vite"] }, "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w=="], + + "vitest": ["vitest@3.2.3", "", { "dependencies": { "@types/chai": "^5.2.2", "@vitest/expect": "3.2.3", "@vitest/mocker": "3.2.3", "@vitest/pretty-format": "^3.2.3", "@vitest/runner": "3.2.3", "@vitest/snapshot": "3.2.3", "@vitest/spy": "3.2.3", "@vitest/utils": "3.2.3", "chai": "^5.2.0", "debug": "^4.4.1", "expect-type": "^1.2.1", "magic-string": "^0.30.17", "pathe": "^2.0.3", "picomatch": "^4.0.2", "std-env": "^3.9.0", "tinybench": "^2.9.0", "tinyexec": "^0.3.2", "tinyglobby": "^0.2.14", "tinypool": "^1.1.0", "tinyrainbow": "^2.0.0", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", "vite-node": "3.2.3", "why-is-node-running": "^2.3.0" }, "peerDependencies": { "@edge-runtime/vm": "*", "@types/debug": "^4.1.12", "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "@vitest/browser": "3.2.3", "@vitest/ui": "3.2.3", "happy-dom": "*", "jsdom": "*" }, "optionalPeers": ["@edge-runtime/vm", "@types/debug", "@types/node", "@vitest/browser", "@vitest/ui", "happy-dom", "jsdom"], "bin": { "vitest": "vitest.mjs" } }, "sha512-E6U2ZFXe3N/t4f5BwUaVCKRLHqUpk1CBWeMh78UT4VaTPH/2dyvH6ALl29JTovEPu9dVKr/K/J4PkXgrMbw4Ww=="], + + "vm-browserify": ["vm-browserify@1.1.2", "", {}, "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="], + + "vscode-languageserver-textdocument": ["vscode-languageserver-textdocument@1.0.12", "", {}, "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA=="], + + "vscode-uri": ["vscode-uri@3.1.0", "", {}, "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ=="], + + "walk-up-path": ["walk-up-path@4.0.0", "", {}, "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A=="], + + "whatwg-mimetype": ["whatwg-mimetype@3.0.0", "", {}, "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q=="], + + "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], + + "which-typed-array": ["which-typed-array@1.1.18", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.3", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA=="], + + "why-is-node-running": ["why-is-node-running@2.3.0", "", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" }, "bin": { "why-is-node-running": "cli.js" } }, "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w=="], + + "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], + + "wp-types": ["wp-types@4.68.0", "", { "dependencies": { "typescript": ">=4" } }, "sha512-b4E861y0BzNUJSWH2i1/ArTISI87qdadEO0qBJRocJ0L95P8gaa7r4RXQHMIfBpFnQy0NToMrnN8Qb3rWP2Vjg=="], + + "write-file-atomic": ["write-file-atomic@5.0.1", "", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="], + + "xdg-basedir": ["xdg-basedir@5.1.0", "", {}, "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ=="], + + "xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="], + + "yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], + + "yaml": ["yaml@2.8.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ=="], + + "yauzl": ["yauzl@3.2.0", "", { "dependencies": { "buffer-crc32": "~0.2.3", "pend": "~1.2.0" } }, "sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w=="], + + "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], + + "zod": ["zod@3.24.1", "", {}, "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A=="], + + "zod-validation-error": ["zod-validation-error@3.4.0", "", { "peerDependencies": { "zod": "^3.18.0" } }, "sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ=="], + + "@babel/core/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/core/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.26.5", "", {}, "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg=="], + + "@babel/helper-compilation-targets/browserslist": ["browserslist@4.24.4", "", { "dependencies": { "caniuse-lite": "^1.0.30001688", "electron-to-chromium": "^1.5.73", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" } }, "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A=="], + + "@babel/helper-compilation-targets/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/helper-create-regexp-features-plugin/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/helper-define-polyfill-provider/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-module-imports/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-module-transforms/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-replace-supers/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-wrap-function/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-wrap-function/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/helper-wrap-function/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/plugin-transform-classes/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/plugin-transform-classes/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/plugin-transform-computed-properties/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/plugin-transform-function-name/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse": ["@babel/traverse@7.26.7", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.7", "@babel/template": "^7.25.9", "@babel/types": "^7.26.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA=="], + + "@babel/preset-env/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/preset-modules/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], + + "@eslint/config-array/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@eslint/config-array/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + + "@eslint/eslintrc/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@eslint/eslintrc/globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="], + + "@eslint/eslintrc/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + + "@eslint/eslintrc/strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], + + "@humanfs/node/@humanwhocodes/retry": ["@humanwhocodes/retry@0.3.1", "", {}, "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="], + + "@keyv/serialize/buffer": ["buffer@6.0.3", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }, "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="], + + "@rollup/pluginutils/@types/estree": ["@types/estree@1.0.6", "", {}, "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="], + + "@stylistic/stylelint-plugin/@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@3.0.1", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1" } }, "sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw=="], + + "@stylistic/stylelint-plugin/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], + + "@stylistic/stylelint-plugin/stylelint": ["stylelint@16.14.1", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", "@csstools/media-query-list-parser": "^4.0.2", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.1.0", "debug": "^4.3.7", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^10.0.5", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^7.0.3", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.5.1", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.1.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" } }, "sha512-oqCL7AC3786oTax35T/nuLL8p2C3k/8rHKAooezrPGRvUX0wX+qqs5kMWh5YYT4PHQgVDobHT4tw55WgpYG6Sw=="], + + "@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + + "@typescript-eslint/typescript-estree/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + + "@vitejs/plugin-legacy/browserslist": ["browserslist@4.24.5", "", { "dependencies": { "caniuse-lite": "^1.0.30001716", "electron-to-chromium": "^1.5.149", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw=="], + + "@vitest/mocker/estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="], + + "asn1.js/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + + "babel-plugin-polyfill-corejs2/@babel/compat-data": ["@babel/compat-data@7.26.5", "", {}, "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg=="], + + "babel-plugin-polyfill-corejs2/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "bin-version-check/semver": ["semver@7.7.0", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ=="], + + "brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "browserify-sign/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="], + + "cacheable/keyv": ["keyv@5.3.3", "", { "dependencies": { "@keyv/serialize": "^1.0.3" } }, "sha512-Rwu4+nXI9fqcxiEHtbkvoes2X+QfkTRo1TMkPfwzipGsJlJO/z69vqB4FNl9xJ3xCpAcbkvmEabZfPzrwN3+gQ=="], + + "core-js-compat/browserslist": ["browserslist@4.24.4", "", { "dependencies": { "caniuse-lite": "^1.0.30001688", "electron-to-chromium": "^1.5.73", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" } }, "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A=="], + + "cosmiconfig/env-paths": ["env-paths@2.2.1", "", {}, "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="], + + "create-ecdh/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + + "cspell/commander": ["commander@14.0.0", "", {}, "sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA=="], + + "cspell/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + + "cspell/tinyglobby": ["tinyglobby@0.2.13", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw=="], + + "decompress-response/mimic-response": ["mimic-response@3.1.0", "", {}, "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="], + + "diffie-hellman/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + + "elliptic/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + + "eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + + "eslint/file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], + + "eslint/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + + "execa/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], + + "fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "file-type/get-stream": ["get-stream@9.0.1", "", { "dependencies": { "@sec-ant/readable-stream": "^0.4.1", "is-stream": "^4.0.1" } }, "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA=="], + + "global-directory/ini": ["ini@4.1.1", "", {}, "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g=="], + + "global-prefix/which": ["which@1.3.1", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "./bin/which" } }, "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="], + + "happy-dom/@types/node": ["@types/node@20.19.0", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-hfrc+1tud1xcdVTABC2JiomZJEklMcXYNTVtZLAeqTVWD+qL5jkHKT+1lOtqDdGxt+mB53DTtiz673vfjU8D1Q=="], + + "import-fresh/parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], + + "import-fresh/resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], + + "make-dir/semver": ["semver@7.7.0", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ=="], + + "micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "miller-rabin/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + + "public-encrypt/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + + "regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], + + "seek-bzip/commander": ["commander@6.2.1", "", {}, "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="], + + "semver-truncate/semver": ["semver@7.7.0", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ=="], + + "source-map-support/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], + + "strip-literal/js-tokens": ["js-tokens@9.0.1", "", {}, "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ=="], + + "stylelint/file-entry-cache": ["file-entry-cache@10.1.1", "", { "dependencies": { "flat-cache": "^6.1.10" } }, "sha512-zcmsHjg2B2zjuBgjdnB+9q0+cWcgWfykIcsDkWDB4GTPtl1eXUA+gTI6sO0u01AqK3cliHryTU55/b2Ow1hfZg=="], + + "stylelint/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + + "stylelint-config-recommended-scss/stylelint-scss": ["stylelint-scss@6.12.0", "", { "dependencies": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.36.0", "mdn-data": "^2.21.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "sha512-U7CKhi1YNkM1pXUXl/GMUXi8xKdhl4Ayxdyceie1nZ1XNIdaUgMV6OArpooWcDzEggwgYD0HP/xIgVJo9a655w=="], + + "stylelint-order/postcss": ["postcss@8.5.1", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ=="], + + "stylelint-scss/known-css-properties": ["known-css-properties@0.35.0", "", {}, "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A=="], + + "stylelint-scss/mdn-data": ["mdn-data@2.15.0", "", {}, "sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ=="], + + "stylelint-scss/postcss-selector-parser": ["postcss-selector-parser@7.0.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ=="], + + "supports-hyperlinks/supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + + "table/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="], + + "terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="], + + "uri-js/punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], + + "vite/fdir": ["fdir@6.4.4", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg=="], + + "vite/tinyglobby": ["tinyglobby@0.2.13", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw=="], + + "vite-tsconfig-paths/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001696", "", {}, "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ=="], + + "@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.90", "", {}, "sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug=="], + + "@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.2", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-create-class-features-plugin/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-module-imports/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-module-imports/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-module-transforms/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-module-transforms/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-module-transforms/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-module-transforms/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-module-transforms/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-module-transforms/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-remap-async-to-generator/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-replace-supers/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-replace-supers/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-replace-supers/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-replace-supers/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/helper-replace-supers/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-replace-supers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/helper-wrap-function/@babel/template/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-wrap-function/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/helper-wrap-function/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/helper-wrap-function/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/helper-wrap-function/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/plugin-transform-classes/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/plugin-transform-classes/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/plugin-transform-classes/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/plugin-transform-classes/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-transform-classes/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/plugin-transform-computed-properties/@babel/template/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/plugin-transform-computed-properties/@babel/template/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-transform-function-name/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/plugin-transform-function-name/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/plugin-transform-function-name/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/plugin-transform-function-name/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-transform-function-name/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/plugin-transform-function-name/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/generator": ["@babel/generator@7.26.5", "", { "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/parser": ["@babel/parser@7.26.7", "", { "dependencies": { "@babel/types": "^7.26.7" }, "bin": "./bin/babel-parser.js" }, "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/template": ["@babel/template@7.25.9", "", { "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/types": ["@babel/types@7.26.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@babel/plugin-transform-modules-systemjs/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "@eslint/config-array/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + + "@eslint/eslintrc/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + + "@stylistic/stylelint-plugin/stylelint/@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@4.0.2", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3" } }, "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A=="], + + "@stylistic/stylelint-plugin/stylelint/debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache": ["file-entry-cache@10.0.6", "", { "dependencies": { "flat-cache": "^6.1.6" } }, "sha512-0wvv16mVo9nN0Md3k7DMjgAPKG/TY4F/gYMBVb/wMThFRJvzrpaqBFqF6km9wf8QfYTN+mNg5aeaBLfy8k35uA=="], + + "@stylistic/stylelint-plugin/stylelint/ignore": ["ignore@7.0.3", "", {}, "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA=="], + + "@stylistic/stylelint-plugin/stylelint/known-css-properties": ["known-css-properties@0.35.0", "", {}, "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A=="], + + "@stylistic/stylelint-plugin/stylelint/postcss": ["postcss@8.5.1", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ=="], + + "@stylistic/stylelint-plugin/stylelint/postcss-selector-parser": ["postcss-selector-parser@7.0.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ=="], + + "@vitejs/plugin-legacy/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.155", "", {}, "sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng=="], + + "@vitest/mocker/estree-walker/@types/estree": ["@types/estree@1.0.6", "", {}, "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="], + + "browserify-sign/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], + + "browserify-sign/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="], + + "core-js-compat/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001696", "", {}, "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ=="], + + "core-js-compat/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.90", "", {}, "sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug=="], + + "core-js-compat/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.2", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg=="], + + "cspell/tinyglobby/fdir": ["fdir@6.4.4", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg=="], + + "eslint/chalk/supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + + "eslint/file-entry-cache/flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], + + "eslint/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + + "file-type/get-stream/is-stream": ["is-stream@4.0.1", "", {}, "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A=="], + + "happy-dom/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], + + "stylelint-config-recommended-scss/stylelint-scss/mdn-data": ["mdn-data@2.21.0", "", {}, "sha512-+ZKPQezM5vYJIkCxaC+4DTnRrVZR1CgsKLu5zsQERQx6Tea8Y+wMx5A24rq8A8NepCeatIQufVAekKNgiBMsGQ=="], + + "stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.10", "", { "dependencies": { "cacheable": "^1.10.0", "flatted": "^3.3.3", "hookified": "^1.9.1" } }, "sha512-B6/v1f0NwjxzmeOhzfXPGWpKBVA207LS7lehaVKQnFrVktcFRfkzjZZ2gwj2i1TkEUMQht7ZMJbABUT5N+V1Nw=="], + + "table/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], + + "@eslint/config-array/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "@eslint/eslintrc/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.6", "", { "dependencies": { "cacheable": "^1.8.8", "flatted": "^3.3.2", "hookified": "^1.7.0" } }, "sha512-F+CKgSwp0pzLx67u+Zy1aCueVWFAHWbXepvXlZ+bWVTaASbm5SyCnSJ80Fp1ePEmS57wU+Bf6cx6525qtMZ4lQ=="], + + "eslint/file-entry-cache/flat-cache/flatted": ["flatted@3.3.2", "", {}, "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA=="], + + "eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache/cacheable": ["cacheable@1.8.8", "", { "dependencies": { "hookified": "^1.7.0", "keyv": "^5.2.3" } }, "sha512-OE1/jlarWxROUIpd0qGBSKFLkNsotY8pt4GeiVErUYh/NUeTNrT+SBksUgllQv4m6a0W/VZsLuiHb88maavqEw=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache/flatted": ["flatted@3.3.2", "", {}, "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache/hookified": ["hookified@1.7.0", "", {}, "sha512-XQdMjqC1AyeOzfs+17cnIk7Wdfu1hh2JtcyNfBf5u9jHrT3iZUlGHxLTntFBuk5lwkqJ6l3+daeQdHK5yByHVA=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache/cacheable/keyv": ["keyv@5.2.3", "", { "dependencies": { "@keyv/serialize": "^1.0.2" } }, "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache/cacheable/keyv/@keyv/serialize": ["@keyv/serialize@1.0.2", "", { "dependencies": { "buffer": "^6.0.3" } }, "sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache/cacheable/keyv/@keyv/serialize/buffer": ["buffer@6.0.3", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }, "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="], } } diff --git a/captures/about/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/about/desktop-chromium-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index a1fa0867..00000000 Binary files a/captures/about/desktop-chromium-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/about/desktop-chromium-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index c193771a..00000000 Binary files a/captures/about/desktop-chromium-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/about/desktop-chromium-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index 15e6c663..00000000 Binary files a/captures/about/desktop-chromium-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/about/desktop-firefox-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index 12fbfe7c..00000000 Binary files a/captures/about/desktop-firefox-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/about/desktop-firefox-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index 3a872bba..00000000 Binary files a/captures/about/desktop-firefox-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/about/desktop-firefox-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index 59582615..00000000 Binary files a/captures/about/desktop-firefox-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/about/mobile-chromium-landscape-863-360 2025-06-18.jxl deleted file mode 100644 index db40e6f0..00000000 Binary files a/captures/about/mobile-chromium-landscape-863-360 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/about/mobile-chromium-portrait-412-839 2025-06-18.jxl deleted file mode 100644 index 07a1981a..00000000 Binary files a/captures/about/mobile-chromium-portrait-412-839 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/about/tablet-chromium-landscape-1024-640 2025-06-18.jxl deleted file mode 100644 index 159b0be2..00000000 Binary files a/captures/about/tablet-chromium-landscape-1024-640 2025-06-18.jxl and /dev/null differ diff --git a/captures/about/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/about/tablet-chromium-portrait-640-1024 2025-06-18.jxl deleted file mode 100644 index a7945b45..00000000 Binary files a/captures/about/tablet-chromium-portrait-640-1024 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/category/desktop-chromium-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index f4063da6..00000000 Binary files a/captures/category/desktop-chromium-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/category/desktop-chromium-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index 7d4d01ad..00000000 Binary files a/captures/category/desktop-chromium-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/category/desktop-chromium-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index 98b7719d..00000000 Binary files a/captures/category/desktop-chromium-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/category/desktop-firefox-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index 80571f53..00000000 Binary files a/captures/category/desktop-firefox-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/category/desktop-firefox-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index da3dcdb6..00000000 Binary files a/captures/category/desktop-firefox-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/category/desktop-firefox-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index e6caabe1..00000000 Binary files a/captures/category/desktop-firefox-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/category/mobile-chromium-landscape-863-360 2025-06-18.jxl deleted file mode 100644 index d974c2d8..00000000 Binary files a/captures/category/mobile-chromium-landscape-863-360 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/category/mobile-chromium-portrait-412-839 2025-06-18.jxl deleted file mode 100644 index 789fce80..00000000 Binary files a/captures/category/mobile-chromium-portrait-412-839 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/category/tablet-chromium-landscape-1024-640 2025-06-18.jxl deleted file mode 100644 index 05194c1a..00000000 Binary files a/captures/category/tablet-chromium-landscape-1024-640 2025-06-18.jxl and /dev/null differ diff --git a/captures/category/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/category/tablet-chromium-portrait-640-1024 2025-06-18.jxl deleted file mode 100644 index 6114d8ac..00000000 Binary files a/captures/category/tablet-chromium-portrait-640-1024 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/home/desktop-chromium-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index 3a31f7cc..00000000 Binary files a/captures/home/desktop-chromium-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/home/desktop-chromium-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index d58f1d6e..00000000 Binary files a/captures/home/desktop-chromium-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/home/desktop-chromium-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index fc1affb0..00000000 Binary files a/captures/home/desktop-chromium-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/home/desktop-firefox-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index 67931939..00000000 Binary files a/captures/home/desktop-firefox-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/home/desktop-firefox-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index 49a01f33..00000000 Binary files a/captures/home/desktop-firefox-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/home/desktop-firefox-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index 9e22dd68..00000000 Binary files a/captures/home/desktop-firefox-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/home/mobile-chromium-landscape-863-360 2025-06-18.jxl deleted file mode 100644 index e975cd0c..00000000 Binary files a/captures/home/mobile-chromium-landscape-863-360 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/home/mobile-chromium-portrait-412-839 2025-06-18.jxl deleted file mode 100644 index f4a146b4..00000000 Binary files a/captures/home/mobile-chromium-portrait-412-839 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/home/tablet-chromium-landscape-1024-640 2025-06-18.jxl deleted file mode 100644 index 162a4e6c..00000000 Binary files a/captures/home/tablet-chromium-landscape-1024-640 2025-06-18.jxl and /dev/null differ diff --git a/captures/home/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/home/tablet-chromium-portrait-640-1024 2025-06-18.jxl deleted file mode 100644 index b3786cd7..00000000 Binary files a/captures/home/tablet-chromium-portrait-640-1024 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/product/desktop-chromium-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index 572ac78e..00000000 Binary files a/captures/product/desktop-chromium-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/product/desktop-chromium-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index a154f6a6..00000000 Binary files a/captures/product/desktop-chromium-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/product/desktop-chromium-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index c70b4e98..00000000 Binary files a/captures/product/desktop-chromium-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/product/desktop-firefox-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index 0914dda3..00000000 Binary files a/captures/product/desktop-firefox-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/product/desktop-firefox-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index b6c06433..00000000 Binary files a/captures/product/desktop-firefox-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/product/desktop-firefox-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index ac23c4f5..00000000 Binary files a/captures/product/desktop-firefox-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/product/mobile-chromium-landscape-863-360 2025-06-18.jxl deleted file mode 100644 index 769570f9..00000000 Binary files a/captures/product/mobile-chromium-landscape-863-360 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/product/mobile-chromium-portrait-412-839 2025-06-18.jxl deleted file mode 100644 index 29164a83..00000000 Binary files a/captures/product/mobile-chromium-portrait-412-839 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/product/tablet-chromium-landscape-1024-640 2025-06-18.jxl deleted file mode 100644 index df584200..00000000 Binary files a/captures/product/tablet-chromium-landscape-1024-640 2025-06-18.jxl and /dev/null differ diff --git a/captures/product/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/product/tablet-chromium-portrait-640-1024 2025-06-18.jxl deleted file mode 100644 index b451ac3d..00000000 Binary files a/captures/product/tablet-chromium-portrait-640-1024 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/shop/desktop-chromium-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index e1732750..00000000 Binary files a/captures/shop/desktop-chromium-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/shop/desktop-chromium-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index f1fd5314..00000000 Binary files a/captures/shop/desktop-chromium-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/shop/desktop-chromium-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index 9a3205ab..00000000 Binary files a/captures/shop/desktop-chromium-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/shop/desktop-firefox-1366-1366-768 2025-06-18.jxl deleted file mode 100644 index ab206627..00000000 Binary files a/captures/shop/desktop-firefox-1366-1366-768 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/shop/desktop-firefox-1536-1536-864 2025-06-18.jxl deleted file mode 100644 index 2fa37af1..00000000 Binary files a/captures/shop/desktop-firefox-1536-1536-864 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/shop/desktop-firefox-1920-1920-1080 2025-06-18.jxl deleted file mode 100644 index 21d543ae..00000000 Binary files a/captures/shop/desktop-firefox-1920-1920-1080 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/shop/mobile-chromium-landscape-863-360 2025-06-18.jxl deleted file mode 100644 index b00b45d3..00000000 Binary files a/captures/shop/mobile-chromium-landscape-863-360 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/shop/mobile-chromium-portrait-412-839 2025-06-18.jxl deleted file mode 100644 index e7ca9f21..00000000 Binary files a/captures/shop/mobile-chromium-portrait-412-839 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/shop/tablet-chromium-landscape-1024-640 2025-06-18.jxl deleted file mode 100644 index 340bcef7..00000000 Binary files a/captures/shop/tablet-chromium-landscape-1024-640 2025-06-18.jxl and /dev/null differ diff --git a/captures/shop/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/shop/tablet-chromium-portrait-640-1024 2025-06-18.jxl deleted file mode 100644 index 02f36ee4..00000000 Binary files a/captures/shop/tablet-chromium-portrait-640-1024 2025-06-18.jxl and /dev/null differ diff --git a/compose.yaml b/compose.yaml deleted file mode 100755 index 4a0df9b8..00000000 --- a/compose.yaml +++ /dev/null @@ -1,161 +0,0 @@ -name: "haikuatelier.fr" -networks: - haiku-network: -services: - db: - container_name: "haikuatelier.fr-db" - env_file: - - path: "./.env" - required: true - healthcheck: - interval: "10s" - retries: 3 - start_period: "60s" - test: - - "CMD" - - "healthcheck.sh" - - "--connect" - - "--innodb_initialized" - timeout: "5s" - image: "docker.io/library/mariadb:latest" - labels: - - "traefik.enable=false" - networks: - - "haiku-network" - restart: "unless-stopped" - volumes: - - "db-data:/var/lib/mysql:rw" - jaeger: - container_name: "haikuatelier.fr-jaeger" - environment: - - "COLLECTOR_OTLP_ENABLED=true" - healthcheck: - interval: "5s" - retries: 3 - start_period: "5s" - test: - - "CMD" - - "wget" - - "--spider" - - "http://localhost:16686" - timeout: "2s" - image: "cr.jaegertracing.io/jaegertracing/jaeger:latest" - networks: - - "haiku-network" - ports: - - "6831:6831/udp" - - "6832:6832/udp" - - "5778:5778" - - "16686:16686" - - "4317:4317" - - "4318:4318" - - "14250:14250" - - "14268:14268" - - "14269:14269" - phpmyadmin: - container_name: "haikuatelier.fr-phpmyadmin" - depends_on: - - "db" - - "proxy" - - "traefik" - env_file: - - path: "./.env" - required: true - image: "docker.io/library/phpmyadmin:latest" - networks: - - "haiku-network" - ports: - - "127.0.0.1:8080:80" - restart: "on-failure:3" - proxy: - container_name: "haikuatelier.fr-proxy" - depends_on: - - "wordpress" - env_file: - - path: "./.env" - required: true - healthcheck: - interval: "10s" - retries: 3 - test: - - "CMD-SHELL" - - "curl http://localhost/health | grep UP" - timeout: "5s" - image: "docker.io/eilandert/angie:latest" - networks: - - "haiku-network" - restart: "on-failure:3" - volumes: - - "./containers/conf/angie:/etc/angie:rw" - - "./containers/data/certs:/etc/angie/ssl:ro" - - "./containers/data/angie/logs:/var/log/angie:rw" - - "./:/var/www/wordpress:ro" - traefik: - container_name: "haikuatelier.fr-traefik" - env_file: - - path: "./.env" - required: true - healthcheck: - interval: "10s" - retries: 3 - test: - - "CMD" - - "traefik" - - "healthcheck" - - "--ping" - timeout: "5s" - image: "traefik" - mem_limit: "256m" - mem_reservation: "128m" - networks: - - "haiku-network" - ports: - - "127.0.0.1:80:80" - - "127.0.0.1:443:443" - - "127.0.0.1:8082:8082" - restart: "unless-stopped" - volumes: - - "./containers/conf/traefik/dynamic:/etc/traefik/dynamic:ro" - - "./containers/conf/traefik/traefik.yaml:/etc/traefik/traefik.yml:ro" - - "./containers/data/certs:/etc/certs/:ro" - - "./containers/data/traefik/logs:/var/log/traefik:rw" - - "/var/run/user/1000/podman/podman.sock:/var/run/docker.sock:ro" - valkey: - command: "valkey-server /usr/local/etc/valkey/valkey.conf" - container_name: "haikuatelier.fr-valkey" - env_file: - - path: "./.env" - required: true - healthcheck: - interval: "10s" - retries: 3 - test: - - "CMD-SHELL" - - "valkey-cli ping | grep PONG" - timeout: "5s" - image: "docker.io/valkey/valkey:9-alpine" - restart: "unless-stopped" - sysctls: - - "net.core.somaxconn=512" - volumes: - - "./containers/conf/valkey.conf:/usr/local/etc/valkey/valkey.conf:ro" - wordpress: - container_name: "haikuatelier.fr-wordpress" - depends_on: - - "db" - - "valkey" - - "traefik" - env_file: - - path: "./.env" - required: true - image: "localhost/wordpress-haiku-atelier" - networks: - - "haiku-network" - ports: - - "127.0.0.1:9000:9000" - restart: "unless-stopped" - volumes: - - "./containers/conf/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro" - - "./:/var/www/wordpress:rw" -volumes: - db-data: null diff --git a/composer.json b/composer.json index 9b9275db..aaa5cc7f 100755 --- a/composer.json +++ b/composer.json @@ -1,99 +1,82 @@ { - "authors": [], - "autoload": { - "psr-4": { - "HaikuAtelier\\": "web/app/themes/haiku-atelier-2024/src/inc" - } + "name": "roots/bedrock", + "type": "project", + "license": "MIT", + "description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure", + "homepage": "https://roots.io/bedrock/", + "authors": [ + { "name": "Scott Walkinshaw", "email": "scott.walkinshaw@gmail.com", "homepage": "https://github.com/swalkinshaw" }, + { "name": "Ben Word", "email": "ben@benword.com", "homepage": "https://github.com/retlehs" } + ], + "keywords": ["bedrock", "composer", "roots", "wordpress", "wp", "wp-config"], + "support": { + "issues": "https://github.com/roots/bedrock/issues", + "forum": "https://discourse.roots.io/category/bedrock" }, - "config": { - "allow-plugins": { - "carthage-software/mago": true, - "composer/installers": true, - "mnsami/composer-custom-directory-installer": true, - "phpstan/extension-installer": true, - "roots/wordpress-core-installer": true - }, - "optimize-autoloader": true, - "preferred-install": "dist", - "sort-packages": true - }, - "extra": { - "installer-paths": { - "web/app/mu-plugins/{$name}/": [ - "type:wordpress-muplugin" - ], - "web/app/plugins/{$name}/": [ - "type:wordpress-plugin" - ], - "web/app/themes/{$name}/": [ - "type:wordpress-theme" - ], - "web/vendor/{$vendor}/{$name}": [ - "htmlburger/carbon-fields" - ] - }, - "wordpress-install-dir": "web/wp" - }, - "minimum-stability": "dev", - "name": "gcch/haiku-atelier", - "prefer-stable": true, "repositories": [ - { - "only": [ - "wpackagist-plugin/*", - "wpackagist-theme/*" - ], - "type": "composer", - "url": "https://wpackagist.org" - } + { "type": "composer", "url": "https://wpackagist.org", "only": ["wpackagist-plugin/*", "wpackagist-theme/*"] } ], "require": { + "php": ">=8.2", "composer/installers": "^2.3", "crell/fp": "^1.0", - "htmlburger/carbon-fields": "^3.6.9", - "illuminate/support": "^12.37", - "laravel/helpers": "^1.8.1", + "htmlburger/carbon-fields": "^3.6.5", + "illuminate/support": "^12.18", + "laravel/helpers": "^1.7.1", "log1x/wp-smtp": "^1.0.2", "lstrojny/functional-php": "^1.17", "mnsami/composer-custom-directory-installer": "^2.0", - "mrottow/vite-wordpress": "^0.1.3", - "nesbot/carbon": "^3.10.3", + "nesbot/carbon": "^3.8.2", "oscarotero/env": "^2.1.1", - "php": ">=8.4", - "ramsey/uuid": "^4.9.1", + "ramsey/uuid": "^4.7.6", "roots/bedrock-autoloader": "^1.0.4", "roots/bedrock-disallow-indexing": "^2.0", - "roots/wordpress": "^6.8.3", + "roots/wordpress": "^6.8.1", "roots/wp-config": "^1.0", - "stripe/stripe-php": "^16.6", - "symfony/uid": "^8", - "timber/timber": "^2.3.3", - "vlucas/phpdotenv": "^5.6.2", - "webmozart/assert": "^1.12.1", - "wpackagist-plugin/falcon": "2.8.6", - "wpackagist-plugin/force-regenerate-thumbnails": "2.2.2", - "wpackagist-plugin/query-monitor": "^3.20.0", - "wpackagist-plugin/redis-cache": "^2.7.0", - "wpackagist-plugin/wc-multishipping": "3.0", - "wpackagist-plugin/woo-preview-emails": "2.2.14", - "wpackagist-plugin/woocommerce": "10.3.6", - "wpackagist-plugin/wp-mail-logging": "1.15.0", - "wpackagist-plugin/wp-mail-smtp": "4.7.1", - "wpackagist-plugin/wp-openapi": "1.0.27", - "wpackagist-theme/twentytwentyfour": "^1.4" + "stripe/stripe-php": "^16.3", + "symfony/uid": "^7.2.0", + "timber/timber": "^2.3", + "vlucas/phpdotenv": "^5.6.1", + "wpackagist-plugin/falcon": "^2.8.4", + "wpackagist-plugin/force-regenerate-thumbnails": "^2.2.1", + "wpackagist-plugin/query-monitor": "^3.17.0", + "wpackagist-plugin/redis-cache": "^2.5.4", + "wpackagist-plugin/wc-multishipping": "^2.5.4", + "wpackagist-plugin/woo-preview-emails": "^2.2.13", + "wpackagist-plugin/woocommerce": "^9.4.3", + "wpackagist-plugin/wp-mail-logging": "^1.13.1", + "wpackagist-plugin/wp-mail-smtp": "^4.2", + "wpackagist-plugin/wp-openapi": "^1.0.16", + "wpackagist-theme/twentytwentyfour": "^1.3" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.89.2", "phpstan/extension-installer": "^1.4.3", - "phpstan/phpstan": "^2.1.32", - "phpstan/phpstan-deprecation-rules": "^2.0.3", - "phpstan/phpstan-webmozart-assert": "^2.0", - "rector/rector": "^2.2.7", + "phpstan/phpstan": "^2.0.3", "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "^4.0.1", - "swissspidy/phpstan-no-private": "^1.0", - "szepeviktor/phpstan-wordpress": "2.x-dev", - "vincentlanglet/twig-cs-fixer": "^3.10" + "squizlabs/php_codesniffer": "^3.11.1", + "szepeviktor/phpstan-wordpress": "2.x-dev" }, - "type": "project" + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "allow-plugins": { + "composer/installers": true, + "mnsami/composer-custom-directory-installer": true, + "roots/wordpress-core-installer": true, + "phpstan/extension-installer": true + }, + "sort-packages": true + }, + "minimum-stability": "dev", + "prefer-stable": true, + "extra": { + "installer-paths": { + "web/vendor/{$vendor}/{$name}": ["htmlburger/carbon-fields"], + "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"], + "web/app/plugins/{$name}/": ["type:wordpress-plugin"], + "web/app/themes/{$name}/": ["type:wordpress-theme"] + }, + "wordpress-install-dir": "web/wp" + }, + "scripts": { "test": ["phpcs"] } } diff --git a/composer.lock b/composer.lock old mode 100644 new mode 100755 index a43562ec..433619d5 --- a/composer.lock +++ b/composer.lock @@ -4,29 +4,29 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "034c81849e3d954b07b3fb6561d3e0f5", + "content-hash": "88490f865007abd96a27b5a07160a1d6", "packages": [ { "name": "brick/math", - "version": "0.14.1", + "version": "0.13.1", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "f05858549e5f9d7bb45875a75583240a38a281d0" + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/f05858549e5f9d7bb45875a75583240a38a281d0", - "reference": "f05858549e5f9d7bb45875a75583240a38a281d0", + "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04", + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04", "shasum": "" }, "require": { - "php": "^8.2" + "php": "^8.1" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpstan/phpstan": "2.1.22", - "phpunit/phpunit": "^11.5" + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "6.8.8" }, "type": "library", "autoload": { @@ -56,7 +56,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.14.1" + "source": "https://github.com/brick/math/tree/0.13.1" }, "funding": [ { @@ -64,7 +64,7 @@ "type": "github" } ], - "time": "2025-11-24T14:40:29+00:00" + "time": "2025-03-29T13:50:30+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -353,32 +353,33 @@ }, { "name": "doctrine/inflector", - "version": "2.1.0", + "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", - "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^12.0 || ^13.0", - "phpstan/phpstan": "^1.12 || ^2.0", - "phpstan/phpstan-phpunit": "^1.4 || ^2.0", - "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", - "phpunit/phpunit": "^8.5 || ^12.2" + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Inflector\\": "src" + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -423,7 +424,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.1.0" + "source": "https://github.com/doctrine/inflector/tree/2.0.10" }, "funding": [ { @@ -439,7 +440,7 @@ "type": "tidelift" } ], - "time": "2025-08-10T19:31:58+00:00" + "time": "2024-02-18T20:23:39+00:00" }, { "name": "graham-campbell/result-type", @@ -645,25 +646,23 @@ }, { "name": "illuminate/collections", - "version": "v12.41.1", + "version": "v12.18.0", "source": { "type": "git", "url": "https://github.com/illuminate/collections.git", - "reference": "1cf6115f711ff775fcce547dee82d59cac33fedb" + "reference": "e5711846b7c68128bc8de72c13e017606043c996" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/1cf6115f711ff775fcce547dee82d59cac33fedb", - "reference": "1cf6115f711ff775fcce547dee82d59cac33fedb", + "url": "https://api.github.com/repos/illuminate/collections/zipball/e5711846b7c68128bc8de72c13e017606043c996", + "reference": "e5711846b7c68128bc8de72c13e017606043c996", "shasum": "" }, "require": { "illuminate/conditionable": "^12.0", "illuminate/contracts": "^12.0", "illuminate/macroable": "^12.0", - "php": "^8.2", - "symfony/polyfill-php84": "^1.33", - "symfony/polyfill-php85": "^1.33" + "php": "^8.2" }, "suggest": { "illuminate/http": "Required to convert collections to API resources (^12.0).", @@ -700,11 +699,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-11-29T13:55:43+00:00" + "time": "2025-05-28T13:08:33+00:00" }, { "name": "illuminate/conditionable", - "version": "v12.41.1", + "version": "v12.18.0", "source": { "type": "git", "url": "https://github.com/illuminate/conditionable.git", @@ -750,16 +749,16 @@ }, { "name": "illuminate/contracts", - "version": "v12.41.1", + "version": "v12.18.0", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", - "reference": "19e8938edb73047017cfbd443b96844b86da4a59" + "reference": "152313571553ef1be907a3c18b8ef2d635cb4339" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/19e8938edb73047017cfbd443b96844b86da4a59", - "reference": "19e8938edb73047017cfbd443b96844b86da4a59", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/152313571553ef1be907a3c18b8ef2d635cb4339", + "reference": "152313571553ef1be907a3c18b8ef2d635cb4339", "shasum": "" }, "require": { @@ -794,11 +793,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-11-26T21:36:01+00:00" + "time": "2025-06-09T18:23:03+00:00" }, { "name": "illuminate/macroable", - "version": "v12.41.1", + "version": "v12.18.0", "source": { "type": "git", "url": "https://github.com/illuminate/macroable.git", @@ -844,16 +843,16 @@ }, { "name": "illuminate/support", - "version": "v12.41.1", + "version": "v12.18.0", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", - "reference": "c65715d8a41863ee3f2e22dc796b75c62143fca2" + "reference": "3c3894ba09a86663b747efaa6822639f1c32ea01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/c65715d8a41863ee3f2e22dc796b75c62143fca2", - "reference": "c65715d8a41863ee3f2e22dc796b75c62143fca2", + "url": "https://api.github.com/repos/illuminate/support/zipball/3c3894ba09a86663b747efaa6822639f1c32ea01", + "reference": "3c3894ba09a86663b747efaa6822639f1c32ea01", "shasum": "" }, "require": { @@ -867,8 +866,6 @@ "illuminate/macroable": "^12.0", "nesbot/carbon": "^3.8.4", "php": "^8.2", - "symfony/polyfill-php83": "^1.33", - "symfony/polyfill-php85": "^1.33", "voku/portable-ascii": "^2.0.2" }, "conflict": { @@ -919,20 +916,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-12-03T01:01:36+00:00" + "time": "2025-06-06T18:15:26+00:00" }, { "name": "laravel/helpers", - "version": "v1.8.2", + "version": "v1.7.2", "source": { "type": "git", "url": "https://github.com/laravel/helpers.git", - "reference": "98499eea4c1cca76fb0fb37ed365a468773daf0a" + "reference": "672d79d5b5f65dc821e57783fa11f22c4d762d70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/helpers/zipball/98499eea4c1cca76fb0fb37ed365a468773daf0a", - "reference": "98499eea4c1cca76fb0fb37ed365a468773daf0a", + "url": "https://api.github.com/repos/laravel/helpers/zipball/672d79d5b5f65dc821e57783fa11f22c4d762d70", + "reference": "672d79d5b5f65dc821e57783fa11f22c4d762d70", "shasum": "" }, "require": { @@ -941,7 +938,7 @@ }, "require-dev": { "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0" + "phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0" }, "type": "library", "extra": { @@ -974,9 +971,9 @@ "laravel" ], "support": { - "source": "https://github.com/laravel/helpers/tree/v1.8.2" + "source": "https://github.com/laravel/helpers/tree/v1.7.2" }, - "time": "2025-11-25T14:46:28+00:00" + "time": "2025-01-24T15:41:25+00:00" }, { "name": "log1x/wp-smtp", @@ -1225,66 +1222,18 @@ }, "time": "2020-08-18T11:00:11+00:00" }, - { - "name": "mrottow/vite-wordpress", - "version": "v0.1.3", - "source": { - "type": "git", - "url": "https://github.com/mrOttoW/vite-wordpress-php.git", - "reference": "a540d91526294723ee7ab47c205d69c477c0e3ed" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mrOttoW/vite-wordpress-php/zipball/a540d91526294723ee7ab47c205d69c477c0e3ed", - "reference": "a540d91526294723ee7ab47c205d69c477c0e3ed", - "shasum": "" - }, - "require-dev": { - "brain/monkey": "^2.6", - "phpunit/phpunit": "^11.5", - "szepeviktor/phpstan-wordpress": "^2.0", - "wp-coding-standards/wpcs": "^3.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "ViteWordPress\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "mrOttoW" - } - ], - "description": "A collection of back-end utilities for ViteWordpress.", - "keywords": [ - "vite", - "vitejs", - "wordpress", - "wordpress vite" - ], - "support": { - "issues": "https://github.com/mrOttoW/vite-wordpress-php/issues", - "source": "https://github.com/mrOttoW/vite-wordpress-php/tree/v0.1.3" - }, - "time": "2024-12-26T02:41:25+00:00" - }, { "name": "nesbot/carbon", - "version": "3.11.0", + "version": "3.10.0", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "bdb375400dcd162624531666db4799b36b64e4a1" + "reference": "c1397390dd0a7e0f11660f0ae20f753d88c1f3d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/bdb375400dcd162624531666db4799b36b64e4a1", - "reference": "bdb375400dcd162624531666db4799b36b64e4a1", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/c1397390dd0a7e0f11660f0ae20f753d88c1f3d9", + "reference": "c1397390dd0a7e0f11660f0ae20f753d88c1f3d9", "shasum": "" }, "require": { @@ -1292,9 +1241,9 @@ "ext-json": "*", "php": "^8.1", "psr/clock": "^1.0", - "symfony/clock": "^6.3.12 || ^7.0 || ^8.0", + "symfony/clock": "^6.3.12 || ^7.0", "symfony/polyfill-mbstring": "^1.0", - "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0" + "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0" }, "provide": { "psr/clock-implementation": "1.0" @@ -1302,13 +1251,13 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^v3.87.1", + "friendsofphp/php-cs-fixer": "^3.75.0", "kylekatarnls/multi-tester": "^2.5.3", "phpmd/phpmd": "^2.15.0", "phpstan/extension-installer": "^1.4.3", - "phpstan/phpstan": "^2.1.22", - "phpunit/phpunit": "^10.5.53", - "squizlabs/php_codesniffer": "^3.13.4" + "phpstan/phpstan": "^2.1.17", + "phpunit/phpunit": "^10.5.46", + "squizlabs/php_codesniffer": "^3.13.0" }, "bin": [ "bin/carbon" @@ -1376,7 +1325,7 @@ "type": "tidelift" } ], - "time": "2025-12-02T21:04:28+00:00" + "time": "2025-06-12T10:24:28+00:00" }, { "name": "oscarotero/env", @@ -1435,16 +1384,16 @@ }, { "name": "phpoption/phpoption", - "version": "1.9.4", + "version": "1.9.3", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d" + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", - "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", "shasum": "" }, "require": { @@ -1452,7 +1401,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34" + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" }, "type": "library", "extra": { @@ -1494,7 +1443,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.4" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" }, "funding": [ { @@ -1506,7 +1455,7 @@ "type": "tidelift" } ], - "time": "2025-08-21T11:53:16+00:00" + "time": "2024-07-20T21:41:07+00:00" }, { "name": "psr/clock", @@ -1738,20 +1687,21 @@ }, { "name": "ramsey/uuid", - "version": "4.9.1", + "version": "4.8.1", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" + "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", - "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28", + "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", + "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -1810,9 +1760,9 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.9.1" + "source": "https://github.com/ramsey/uuid/tree/4.8.1" }, - "time": "2025-09-04T20:59:21+00:00" + "time": "2025-06-01T06:28:46+00:00" }, { "name": "roots/bedrock-autoloader", @@ -1950,20 +1900,20 @@ }, { "name": "roots/wordpress", - "version": "6.9", + "version": "6.8.1", "source": { "type": "git", "url": "https://github.com/roots/wordpress.git", - "reference": "29e4eb49b2f4c591e39d4eb6705a27cf1ea40e45" + "reference": "c53e4173d239dcaf8889f9f84c0b827a0cf643e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/roots/wordpress/zipball/29e4eb49b2f4c591e39d4eb6705a27cf1ea40e45", - "reference": "29e4eb49b2f4c591e39d4eb6705a27cf1ea40e45", + "url": "https://api.github.com/repos/roots/wordpress/zipball/c53e4173d239dcaf8889f9f84c0b827a0cf643e9", + "reference": "c53e4173d239dcaf8889f9f84c0b827a0cf643e9", "shasum": "" }, "require": { - "roots/wordpress-core-installer": "^3.0", + "roots/wordpress-core-installer": "^1.0.0", "roots/wordpress-no-content": "self.version" }, "type": "metapackage", @@ -1981,7 +1931,7 @@ ], "support": { "issues": "https://github.com/roots/wordpress/issues", - "source": "https://github.com/roots/wordpress/tree/6.9" + "source": "https://github.com/roots/wordpress/tree/6.8.1" }, "funding": [ { @@ -1989,25 +1939,25 @@ "type": "github" } ], - "time": "2025-05-23T18:54:22+00:00" + "time": "2024-12-15T16:32:37+00:00" }, { "name": "roots/wordpress-core-installer", - "version": "3.0.0", + "version": "1.100.0", "source": { "type": "git", "url": "https://github.com/roots/wordpress-core-installer.git", - "reference": "714d2e2a9e523f6e7bde4810d5a04aedf0ec217f" + "reference": "73f8488e5178c5d54234b919f823a9095e2b1847" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/roots/wordpress-core-installer/zipball/714d2e2a9e523f6e7bde4810d5a04aedf0ec217f", - "reference": "714d2e2a9e523f6e7bde4810d5a04aedf0ec217f", + "url": "https://api.github.com/repos/roots/wordpress-core-installer/zipball/73f8488e5178c5d54234b919f823a9095e2b1847", + "reference": "73f8488e5178c5d54234b919f823a9095e2b1847", "shasum": "" }, "require": { "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=7.2.24" + "php": ">=5.6.0" }, "conflict": { "composer/installers": "<1.0.6" @@ -2017,7 +1967,7 @@ }, "require-dev": { "composer/composer": "^1.0 || ^2.0", - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": ">=5.7.27" }, "type": "composer-plugin", "extra": { @@ -2042,41 +1992,45 @@ "email": "team@roots.io" } ], - "description": "A Composer custom installer to handle installing WordPress as a dependency", + "description": "A custom installer to handle deploying WordPress with composer", "keywords": [ "wordpress" ], "support": { "issues": "https://github.com/roots/wordpress-core-installer/issues", - "source": "https://github.com/roots/wordpress-core-installer/tree/3.0.0" + "source": "https://github.com/roots/wordpress-core-installer/tree/master" }, "funding": [ { "url": "https://github.com/roots", "type": "github" + }, + { + "url": "https://www.patreon.com/rootsdev", + "type": "patreon" } ], - "time": "2025-05-23T18:47:25+00:00" + "time": "2020-08-20T00:27:30+00:00" }, { "name": "roots/wordpress-no-content", - "version": "6.9", + "version": "6.8.1", "source": { "type": "git", "url": "https://github.com/WordPress/WordPress.git", - "reference": "6.9" + "reference": "6.8.1" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/release/wordpress-6.9-no-content.zip", - "reference": "6.9", - "shasum": "2d8cb4b253b690e255afde1d451e87380e6a5cb5" + "url": "https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip", + "reference": "6.8.1", + "shasum": "33a47970c8e42d9d8719cfae34e02a7a75920959" }, "require": { "php": ">= 7.2.24" }, "provide": { - "wordpress/core-implementation": "6.9" + "wordpress/core-implementation": "6.8.1" }, "suggest": { "ext-curl": "Performs remote request operations.", @@ -2127,7 +2081,7 @@ "type": "other" } ], - "time": "2025-12-02T19:09:36+00:00" + "time": "2025-04-30T16:53:41+00:00" }, { "name": "roots/wp-config", @@ -2236,21 +2190,22 @@ }, { "name": "symfony/clock", - "version": "v8.0.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/clock.git", - "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f" + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/clock/zipball/832119f9b8dbc6c8e6f65f30c5969eca1e88764f", - "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f", + "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", "shasum": "" }, "require": { - "php": ">=8.4", - "psr/clock": "^1.0" + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" }, "provide": { "psr/clock-implementation": "1.0" @@ -2289,7 +2244,7 @@ "time" ], "support": { - "source": "https://github.com/symfony/clock/tree/v8.0.0" + "source": "https://github.com/symfony/clock/tree/v7.3.0" }, "funding": [ { @@ -2300,16 +2255,12 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-11-12T15:46:48+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/deprecation-contracts", @@ -2380,7 +2331,7 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.33.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -2439,7 +2390,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0" }, "funding": [ { @@ -2450,10 +2401,6 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -2463,7 +2410,7 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.33.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", @@ -2524,7 +2471,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0" }, "funding": [ { @@ -2535,10 +2482,6 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -2548,7 +2491,7 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.33.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", @@ -2608,7 +2551,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0" }, "funding": [ { @@ -2619,10 +2562,6 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -2632,16 +2571,16 @@ }, { "name": "symfony/polyfill-php83", - "version": "v1.33.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", - "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", "shasum": "" }, "require": { @@ -2688,7 +2627,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0" }, "funding": [ { @@ -2699,180 +2638,16 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-07-08T02:45:35+00:00" - }, - { - "name": "symfony/polyfill-php84", - "version": "v1.33.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php84.git", - "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", - "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php84\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-06-24T13:30:11+00:00" - }, - { - "name": "symfony/polyfill-php85", - "version": "v1.33.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php85.git", - "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", - "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php85\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-06-23T16:12:55+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.33.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", @@ -2931,7 +2706,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0" }, "funding": [ { @@ -2942,10 +2717,6 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -2955,27 +2726,34 @@ }, { "name": "symfony/translation", - "version": "v8.0.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "82ab368a6fca6358d995b6dd5c41590fb42c03e6" + "reference": "4aba29076a29a3aa667e09b791e5f868973a8667" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/82ab368a6fca6358d995b6dd5c41590fb42c03e6", - "reference": "82ab368a6fca6358d995b6dd5c41590fb42c03e6", + "url": "https://api.github.com/repos/symfony/translation/zipball/4aba29076a29a3aa667e09b791e5f868973a8667", + "reference": "4aba29076a29a3aa667e09b791e5f868973a8667", "shasum": "" }, "require": { - "php": ">=8.4", - "symfony/polyfill-mbstring": "^1.0", - "symfony/translation-contracts": "^3.6.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { "nikic/php-parser": "<5.0", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", "symfony/http-client-contracts": "<2.5", - "symfony/service-contracts": "<2.5" + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" }, "provide": { "symfony/translation-implementation": "2.3|3.0" @@ -2983,17 +2761,17 @@ "require-dev": { "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", - "symfony/config": "^7.4|^8.0", - "symfony/console": "^7.4|^8.0", - "symfony/dependency-injection": "^7.4|^8.0", - "symfony/finder": "^7.4|^8.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", "symfony/http-client-contracts": "^2.5|^3.0", - "symfony/http-kernel": "^7.4|^8.0", - "symfony/intl": "^7.4|^8.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", "symfony/polyfill-intl-icu": "^1.21", - "symfony/routing": "^7.4|^8.0", + "symfony/routing": "^6.4|^7.0", "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^7.4|^8.0" + "symfony/yaml": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -3024,7 +2802,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v8.0.0" + "source": "https://github.com/symfony/translation/tree/v7.3.0" }, "funding": [ { @@ -3035,29 +2813,25 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-11-27T08:09:45+00:00" + "time": "2025-05-29T07:19:49+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.6.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "65a8bc82080447fae78373aa10f8d13b38338977" + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977", - "reference": "65a8bc82080447fae78373aa10f8d13b38338977", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", "shasum": "" }, "require": { @@ -3106,7 +2880,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0" }, "funding": [ { @@ -3117,37 +2891,33 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-07-15T13:41:35+00:00" + "time": "2024-09-27T08:32:26+00:00" }, { "name": "symfony/uid", - "version": "v8.0.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "8395a2cc2ed49aa68f602c5c489f60ab853893df" + "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/8395a2cc2ed49aa68f602c5c489f60ab853893df", - "reference": "8395a2cc2ed49aa68f602c5c489f60ab853893df", + "url": "https://api.github.com/repos/symfony/uid/zipball/7beeb2b885cd584cd01e126c5777206ae4c3c6a3", + "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3", "shasum": "" }, "require": { - "php": ">=8.4", + "php": ">=8.2", "symfony/polyfill-uuid": "^1.15" }, "require-dev": { - "symfony/console": "^7.4|^8.0" + "symfony/console": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -3184,7 +2954,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v8.0.0" + "source": "https://github.com/symfony/uid/tree/v7.3.0" }, "funding": [ { @@ -3195,29 +2965,25 @@ "url": "https://github.com/fabpot", "type": "github" }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-09-26T07:52:19+00:00" + "time": "2025-05-24T14:28:13+00:00" }, { "name": "timber/timber", - "version": "v2.3.3", + "version": "v2.3.2", "source": { "type": "git", "url": "https://github.com/timber/timber.git", - "reference": "7a87ac27c0b9deedffe419388b63a0c95d8798ca" + "reference": "08ce601167a03ed7a4fa7da740481c17ed650ef0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/timber/timber/zipball/7a87ac27c0b9deedffe419388b63a0c95d8798ca", - "reference": "7a87ac27c0b9deedffe419388b63a0c95d8798ca", + "url": "https://api.github.com/repos/timber/timber/zipball/08ce601167a03ed7a4fa7da740481c17ed650ef0", + "reference": "08ce601167a03ed7a4fa7da740481c17ed650ef0", "shasum": "" }, "require": { @@ -3227,15 +2993,16 @@ "require-dev": { "ergebnis/composer-normalize": "^2.28", "php-parallel-lint/php-parallel-lint": "^1.3", + "php-stubs/acf-pro-stubs": "^6.0", "php-stubs/wp-cli-stubs": "^2.0", "phpro/grumphp": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^2", + "phpstan/phpstan": "^1.7", "phpunit/phpunit": "^9.0", - "rector/rector": "^2.0", + "rector/rector": "^1.0", "squizlabs/php_codesniffer": "^3.0", - "symplify/easy-coding-standard": "^12", - "szepeviktor/phpstan-wordpress": "^2", + "symplify/easy-coding-standard": "^12.2", + "szepeviktor/phpstan-wordpress": "^1.1", "twig/cache-extra": "^3.17", "wpackagist-plugin/advanced-custom-fields": "^6.0", "wpackagist-plugin/co-authors-plus": "^3.6", @@ -3305,20 +3072,20 @@ "type": "open_collective" } ], - "time": "2025-09-24T14:07:33+00:00" + "time": "2025-05-13T13:41:56+00:00" }, { "name": "twig/twig", - "version": "v3.22.1", + "version": "v3.21.1", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "1de2ec1fc43ab58a4b7e80b214b96bfc895750f3" + "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/1de2ec1fc43ab58a4b7e80b214b96bfc895750f3", - "reference": "1de2ec1fc43ab58a4b7e80b214b96bfc895750f3", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d", + "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d", "shasum": "" }, "require": { @@ -3372,7 +3139,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.22.1" + "source": "https://github.com/twigphp/Twig/tree/v3.21.1" }, "funding": [ { @@ -3384,7 +3151,7 @@ "type": "tidelift" } ], - "time": "2025-11-16T16:01:12+00:00" + "time": "2025-05-03T07:21:55+00:00" }, { "name": "vlucas/phpdotenv", @@ -3544,75 +3311,17 @@ ], "time": "2024-11-21T01:49:47+00:00" }, - { - "name": "webmozart/assert", - "version": "1.12.1", - "source": { - "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "9be6926d8b485f55b9229203f962b51ed377ba68" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68", - "reference": "9be6926d8b485f55b9229203f962b51ed377ba68", - "shasum": "" - }, - "require": { - "ext-ctype": "*", - "ext-date": "*", - "ext-filter": "*", - "php": "^7.2 || ^8.0" - }, - "suggest": { - "ext-intl": "", - "ext-simplexml": "", - "ext-spl": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.12.1" - }, - "time": "2025-10-29T15:56:20+00:00" - }, { "name": "wpackagist-plugin/falcon", - "version": "2.8.6", + "version": "2.8.5", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/falcon/", - "reference": "tags/2.8.6" + "reference": "tags/2.8.5" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/falcon.2.8.6.zip" + "url": "https://downloads.wordpress.org/plugin/falcon.2.8.5.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3640,15 +3349,15 @@ }, { "name": "wpackagist-plugin/query-monitor", - "version": "3.20.0", + "version": "3.17.2", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/query-monitor/", - "reference": "tags/3.20.0" + "reference": "tags/3.17.2" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/query-monitor.3.20.0.zip" + "url": "https://downloads.wordpress.org/plugin/query-monitor.3.17.2.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3658,15 +3367,15 @@ }, { "name": "wpackagist-plugin/redis-cache", - "version": "2.7.0", + "version": "2.5.4", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/redis-cache/", - "reference": "tags/2.7.0" + "reference": "tags/2.5.4" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/redis-cache.2.7.0.zip" + "url": "https://downloads.wordpress.org/plugin/redis-cache.2.5.4.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3676,15 +3385,15 @@ }, { "name": "wpackagist-plugin/wc-multishipping", - "version": "3.0.0", + "version": "2.5.7", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/wc-multishipping/", - "reference": "tags/3.0.0" + "reference": "tags/2.5.7" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wc-multishipping.3.0.0.zip" + "url": "https://downloads.wordpress.org/plugin/wc-multishipping.2.5.7.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3712,15 +3421,15 @@ }, { "name": "wpackagist-plugin/woocommerce", - "version": "10.3.6", + "version": "9.9.3", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/woocommerce/", - "reference": "tags/10.3.6" + "reference": "tags/9.9.3" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/woocommerce.10.3.6.zip" + "url": "https://downloads.wordpress.org/plugin/woocommerce.9.9.3.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3730,15 +3439,15 @@ }, { "name": "wpackagist-plugin/wp-mail-logging", - "version": "1.15.0", + "version": "1.14.0", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/wp-mail-logging/", - "reference": "tags/1.15.0" + "reference": "tags/1.14.0" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wp-mail-logging.1.15.0.zip" + "url": "https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3748,15 +3457,15 @@ }, { "name": "wpackagist-plugin/wp-mail-smtp", - "version": "4.7.1", + "version": "4.5.0", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/wp-mail-smtp/", - "reference": "tags/4.7.1" + "reference": "tags/4.5.0" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.7.1.zip" + "url": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3766,15 +3475,15 @@ }, { "name": "wpackagist-plugin/wp-openapi", - "version": "1.0.27", + "version": "1.0.20", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/wp-openapi/", - "reference": "tags/1.0.27" + "reference": "tags/1.0.20" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wp-openapi.1.0.27.zip" + "url": "https://downloads.wordpress.org/plugin/wp-openapi.1.0.20.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3784,15 +3493,15 @@ }, { "name": "wpackagist-theme/twentytwentyfour", - "version": "1.4", + "version": "1.3", "source": { "type": "svn", "url": "https://themes.svn.wordpress.org/twentytwentyfour/", - "reference": "1.4" + "reference": "1.3" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip" + "url": "https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3802,515 +3511,18 @@ } ], "packages-dev": [ - { - "name": "clue/ndjson-react", - "version": "v1.3.0", - "source": { - "type": "git", - "url": "https://github.com/clue/reactphp-ndjson.git", - "reference": "392dc165fce93b5bb5c637b67e59619223c931b0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0", - "reference": "392dc165fce93b5bb5c637b67e59619223c931b0", - "shasum": "" - }, - "require": { - "php": ">=5.3", - "react/stream": "^1.2" - }, - "require-dev": { - "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35", - "react/event-loop": "^1.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Clue\\React\\NDJson\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering" - } - ], - "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.", - "homepage": "https://github.com/clue/reactphp-ndjson", - "keywords": [ - "NDJSON", - "json", - "jsonlines", - "newline", - "reactphp", - "streaming" - ], - "support": { - "issues": "https://github.com/clue/reactphp-ndjson/issues", - "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0" - }, - "funding": [ - { - "url": "https://clue.engineering/support", - "type": "custom" - }, - { - "url": "https://github.com/clue", - "type": "github" - } - ], - "time": "2022-12-23T10:58:28+00:00" - }, - { - "name": "composer/pcre", - "version": "3.3.2", - "source": { - "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<1.11.10" - }, - "require-dev": { - "phpstan/phpstan": "^1.12 || ^2", - "phpstan/phpstan-strict-rules": "^1 || ^2", - "phpunit/phpunit": "^8 || ^9" - }, - "type": "library", - "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - }, - "branch-alias": { - "dev-main": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\Pcre\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", - "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" - ], - "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.3.2" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-11-12T16:29:46+00:00" - }, - { - "name": "composer/semver", - "version": "3.4.4", - "source": { - "type": "git", - "url": "https://github.com/composer/semver.git", - "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95", - "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95", - "shasum": "" - }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^1.11", - "symfony/phpunit-bridge": "^3 || ^7" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\Semver\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - }, - { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" - } - ], - "description": "Semver library that offers utilities, version constraint parsing and validation.", - "keywords": [ - "semantic", - "semver", - "validation", - "versioning" - ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.4" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - } - ], - "time": "2025-08-20T19:15:30+00:00" - }, - { - "name": "composer/xdebug-handler", - "version": "3.0.5", - "source": { - "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", - "shasum": "" - }, - "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" - }, - "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Composer\\XdebugHandler\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" - } - ], - "description": "Restarts a process without Xdebug.", - "keywords": [ - "Xdebug", - "performance" - ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-05-06T16:37:16+00:00" - }, - { - "name": "evenement/evenement", - "version": "v3.0.2", - "source": { - "type": "git", - "url": "https://github.com/igorw/evenement.git", - "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc", - "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc", - "shasum": "" - }, - "require": { - "php": ">=7.0" - }, - "require-dev": { - "phpunit/phpunit": "^9 || ^6" - }, - "type": "library", - "autoload": { - "psr-4": { - "Evenement\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" - } - ], - "description": "Événement is a very simple event dispatching library for PHP", - "keywords": [ - "event-dispatcher", - "event-emitter" - ], - "support": { - "issues": "https://github.com/igorw/evenement/issues", - "source": "https://github.com/igorw/evenement/tree/v3.0.2" - }, - "time": "2023-08-08T05:53:35+00:00" - }, - { - "name": "fidry/cpu-core-counter", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/theofidry/cpu-core-counter.git", - "reference": "db9508f7b1474469d9d3c53b86f817e344732678" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678", - "reference": "db9508f7b1474469d9d3c53b86f817e344732678", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "fidry/makefile": "^0.2.0", - "fidry/php-cs-fixer-config": "^1.1.2", - "phpstan/extension-installer": "^1.2.0", - "phpstan/phpstan": "^2.0", - "phpstan/phpstan-deprecation-rules": "^2.0.0", - "phpstan/phpstan-phpunit": "^2.0", - "phpstan/phpstan-strict-rules": "^2.0", - "phpunit/phpunit": "^8.5.31 || ^9.5.26", - "webmozarts/strict-phpunit": "^7.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Fidry\\CpuCoreCounter\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Théo FIDRY", - "email": "theo.fidry@gmail.com" - } - ], - "description": "Tiny utility to get the number of CPU cores.", - "keywords": [ - "CPU", - "core" - ], - "support": { - "issues": "https://github.com/theofidry/cpu-core-counter/issues", - "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0" - }, - "funding": [ - { - "url": "https://github.com/theofidry", - "type": "github" - } - ], - "time": "2025-08-14T07:29:31+00:00" - }, - { - "name": "friendsofphp/php-cs-fixer", - "version": "v3.91.3", - "source": { - "type": "git", - "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "9f10aa6390cea91da175ea608880e942d7c0226e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/9f10aa6390cea91da175ea608880e942d7c0226e", - "reference": "9f10aa6390cea91da175ea608880e942d7c0226e", - "shasum": "" - }, - "require": { - "clue/ndjson-react": "^1.3", - "composer/semver": "^3.4", - "composer/xdebug-handler": "^3.0.5", - "ext-filter": "*", - "ext-hash": "*", - "ext-json": "*", - "ext-tokenizer": "*", - "fidry/cpu-core-counter": "^1.3", - "php": "^7.4 || ^8.0", - "react/child-process": "^0.6.6", - "react/event-loop": "^1.5", - "react/socket": "^1.16", - "react/stream": "^1.4", - "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0", - "symfony/console": "^5.4.47 || ^6.4.24 || ^7.0 || ^8.0", - "symfony/event-dispatcher": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", - "symfony/filesystem": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", - "symfony/finder": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", - "symfony/options-resolver": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", - "symfony/polyfill-mbstring": "^1.33", - "symfony/polyfill-php80": "^1.33", - "symfony/polyfill-php81": "^1.33", - "symfony/polyfill-php84": "^1.33", - "symfony/process": "^5.4.47 || ^6.4.24 || ^7.2 || ^8.0", - "symfony/stopwatch": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0" - }, - "require-dev": { - "facile-it/paraunit": "^1.3.1 || ^2.7", - "infection/infection": "^0.31.0", - "justinrainbow/json-schema": "^6.5", - "keradus/cli-executor": "^2.2", - "mikey179/vfsstream": "^1.6.12", - "php-coveralls/php-coveralls": "^2.9", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6", - "phpunit/phpunit": "^9.6.25 || ^10.5.53 || ^11.5.34", - "symfony/var-dumper": "^5.4.48 || ^6.4.24 || ^7.3.2 || ^8.0", - "symfony/yaml": "^5.4.45 || ^6.4.24 || ^7.3.2 || ^8.0" - }, - "suggest": { - "ext-dom": "For handling output formats in XML", - "ext-mbstring": "For handling non-UTF8 characters." - }, - "bin": [ - "php-cs-fixer" - ], - "type": "application", - "autoload": { - "psr-4": { - "PhpCsFixer\\": "src/" - }, - "exclude-from-classmap": [ - "src/**/Internal/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Dariusz Rumiński", - "email": "dariusz.ruminski@gmail.com" - } - ], - "description": "A tool to automatically fix PHP code style", - "keywords": [ - "Static code analysis", - "fixer", - "standards", - "static analysis" - ], - "support": { - "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.91.3" - }, - "funding": [ - { - "url": "https://github.com/keradus", - "type": "github" - } - ], - "time": "2025-12-05T19:45:37+00:00" - }, { "name": "php-stubs/wordpress-stubs", - "version": "v6.9.0", + "version": "v6.8.1", "source": { "type": "git", "url": "https://github.com/php-stubs/wordpress-stubs.git", - "reference": "5171cb6650e6c583a96943fd6ea0dfa3e1089a8a" + "reference": "92e444847d94f7c30f88c60004648f507688acd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/5171cb6650e6c583a96943fd6ea0dfa3e1089a8a", - "reference": "5171cb6650e6c583a96943fd6ea0dfa3e1089a8a", + "url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/92e444847d94f7c30f88c60004648f507688acd5", + "reference": "92e444847d94f7c30f88c60004648f507688acd5", "shasum": "" }, "conflict": { @@ -4318,7 +3530,7 @@ }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^1.0", - "nikic/php-parser": "^5.5", + "nikic/php-parser": "^5.4", "php": "^7.4 || ^8.0", "php-stubs/generator": "^0.8.3", "phpdocumentor/reflection-docblock": "^5.4.1", @@ -4346,9 +3558,9 @@ ], "support": { "issues": "https://github.com/php-stubs/wordpress-stubs/issues", - "source": "https://github.com/php-stubs/wordpress-stubs/tree/v6.9.0" + "source": "https://github.com/php-stubs/wordpress-stubs/tree/v6.8.1" }, - "time": "2025-12-03T23:06:24+00:00" + "time": "2025-05-02T12:33:34+00:00" }, { "name": "phpstan/extension-installer", @@ -4400,11 +3612,16 @@ }, { "name": "phpstan/phpstan", - "version": "2.1.33", + "version": "2.1.17", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "89b5ef665716fa2a52ecd2633f21007a6a349053" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9e800e6bee7d5bd02784d4c6069b48032d16224f", - "reference": "9e800e6bee7d5bd02784d4c6069b48032d16224f", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/89b5ef665716fa2a52ecd2633f21007a6a349053", + "reference": "89b5ef665716fa2a52ecd2633f21007a6a349053", "shasum": "" }, "require": { @@ -4449,791 +3666,7 @@ "type": "github" } ], - "time": "2025-12-05T10:24:31+00:00" - }, - { - "name": "phpstan/phpstan-deprecation-rules", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "468e02c9176891cc901143da118f09dc9505fc2f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f", - "reference": "468e02c9176891cc901143da118f09dc9505fc2f", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^2.1.15" - }, - "require-dev": { - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-phpunit": "^2.0", - "phpunit/phpunit": "^9.6" - }, - "type": "phpstan-extension", - "extra": { - "phpstan": { - "includes": [ - "rules.neon" - ] - } - }, - "autoload": { - "psr-4": { - "PHPStan\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", - "support": { - "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3" - }, - "time": "2025-05-14T10:56:57+00:00" - }, - { - "name": "phpstan/phpstan-webmozart-assert", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/phpstan/phpstan-webmozart-assert.git", - "reference": "0c641817d2a8f05c7157f92d91986e74d3c8ab0c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-webmozart-assert/zipball/0c641817d2a8f05c7157f92d91986e74d3c8ab0c", - "reference": "0c641817d2a8f05c7157f92d91986e74d3c8ab0c", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^2.0" - }, - "require-dev": { - "nikic/php-parser": "^5.1", - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-deprecation-rules": "^2.0", - "phpstan/phpstan-phpunit": "^2.0", - "phpstan/phpstan-strict-rules": "^2.0", - "phpunit/phpunit": "^9.6", - "webmozart/assert": "^1.11.0" - }, - "type": "phpstan-extension", - "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - } - }, - "autoload": { - "psr-4": { - "PHPStan\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "PHPStan webmozart/assert extension", - "support": { - "issues": "https://github.com/phpstan/phpstan-webmozart-assert/issues", - "source": "https://github.com/phpstan/phpstan-webmozart-assert/tree/2.0.0" - }, - "time": "2024-10-14T03:45:26+00:00" - }, - { - "name": "psr/event-dispatcher", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/event-dispatcher.git", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", - "shasum": "" - }, - "require": { - "php": ">=7.2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\EventDispatcher\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Standard interfaces for event handling.", - "keywords": [ - "events", - "psr", - "psr-14" - ], - "support": { - "issues": "https://github.com/php-fig/event-dispatcher/issues", - "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" - }, - "time": "2019-01-08T18:20:26+00:00" - }, - { - "name": "psr/log", - "version": "3.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", - "shasum": "" - }, - "require": { - "php": ">=8.0.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "support": { - "source": "https://github.com/php-fig/log/tree/3.0.2" - }, - "time": "2024-09-11T13:17:53+00:00" - }, - { - "name": "react/cache", - "version": "v1.2.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/cache.git", - "reference": "d47c472b64aa5608225f47965a484b75c7817d5b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b", - "reference": "d47c472b64aa5608225f47965a484b75c7817d5b", - "shasum": "" - }, - "require": { - "php": ">=5.3.0", - "react/promise": "^3.0 || ^2.0 || ^1.1" - }, - "require-dev": { - "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Async, Promise-based cache interface for ReactPHP", - "keywords": [ - "cache", - "caching", - "promise", - "reactphp" - ], - "support": { - "issues": "https://github.com/reactphp/cache/issues", - "source": "https://github.com/reactphp/cache/tree/v1.2.0" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2022-11-30T15:59:55+00:00" - }, - { - "name": "react/child-process", - "version": "v0.6.6", - "source": { - "type": "git", - "url": "https://github.com/reactphp/child-process.git", - "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159", - "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159", - "shasum": "" - }, - "require": { - "evenement/evenement": "^3.0 || ^2.0 || ^1.0", - "php": ">=5.3.0", - "react/event-loop": "^1.2", - "react/stream": "^1.4" - }, - "require-dev": { - "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", - "react/socket": "^1.16", - "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\ChildProcess\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Event-driven library for executing child processes with ReactPHP.", - "keywords": [ - "event-driven", - "process", - "reactphp" - ], - "support": { - "issues": "https://github.com/reactphp/child-process/issues", - "source": "https://github.com/reactphp/child-process/tree/v0.6.6" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2025-01-01T16:37:48+00:00" - }, - { - "name": "react/dns", - "version": "v1.14.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/dns.git", - "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3", - "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3", - "shasum": "" - }, - "require": { - "php": ">=5.3.0", - "react/cache": "^1.0 || ^0.6 || ^0.5", - "react/event-loop": "^1.2", - "react/promise": "^3.2 || ^2.7 || ^1.2.1" - }, - "require-dev": { - "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", - "react/async": "^4.3 || ^3 || ^2", - "react/promise-timer": "^1.11" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Dns\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Async DNS resolver for ReactPHP", - "keywords": [ - "async", - "dns", - "dns-resolver", - "reactphp" - ], - "support": { - "issues": "https://github.com/reactphp/dns/issues", - "source": "https://github.com/reactphp/dns/tree/v1.14.0" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2025-11-18T19:34:28+00:00" - }, - { - "name": "react/event-loop", - "version": "v1.6.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/event-loop.git", - "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a", - "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" - }, - "suggest": { - "ext-pcntl": "For signal handling support when using the StreamSelectLoop" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\EventLoop\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", - "keywords": [ - "asynchronous", - "event-loop" - ], - "support": { - "issues": "https://github.com/reactphp/event-loop/issues", - "source": "https://github.com/reactphp/event-loop/tree/v1.6.0" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2025-11-17T20:46:25+00:00" - }, - { - "name": "react/promise", - "version": "v3.3.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/promise.git", - "reference": "23444f53a813a3296c1368bb104793ce8d88f04a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a", - "reference": "23444f53a813a3296c1368bb104793ce8d88f04a", - "shasum": "" - }, - "require": { - "php": ">=7.1.0" - }, - "require-dev": { - "phpstan/phpstan": "1.12.28 || 1.4.10", - "phpunit/phpunit": "^9.6 || ^7.5" - }, - "type": "library", - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "React\\Promise\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", - "keywords": [ - "promise", - "promises" - ], - "support": { - "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v3.3.0" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2025-08-19T18:57:03+00:00" - }, - { - "name": "react/socket", - "version": "v1.17.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/socket.git", - "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08", - "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08", - "shasum": "" - }, - "require": { - "evenement/evenement": "^3.0 || ^2.0 || ^1.0", - "php": ">=5.3.0", - "react/dns": "^1.13", - "react/event-loop": "^1.2", - "react/promise": "^3.2 || ^2.6 || ^1.2.1", - "react/stream": "^1.4" - }, - "require-dev": { - "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", - "react/async": "^4.3 || ^3.3 || ^2", - "react/promise-stream": "^1.4", - "react/promise-timer": "^1.11" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Socket\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", - "keywords": [ - "Connection", - "Socket", - "async", - "reactphp", - "stream" - ], - "support": { - "issues": "https://github.com/reactphp/socket/issues", - "source": "https://github.com/reactphp/socket/tree/v1.17.0" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2025-11-19T20:47:34+00:00" - }, - { - "name": "react/stream", - "version": "v1.4.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/stream.git", - "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d", - "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d", - "shasum": "" - }, - "require": { - "evenement/evenement": "^3.0 || ^2.0 || ^1.0", - "php": ">=5.3.8", - "react/event-loop": "^1.2" - }, - "require-dev": { - "clue/stream-filter": "~1.2", - "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Stream\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", - "keywords": [ - "event-driven", - "io", - "non-blocking", - "pipe", - "reactphp", - "readable", - "stream", - "writable" - ], - "support": { - "issues": "https://github.com/reactphp/stream/issues", - "source": "https://github.com/reactphp/stream/tree/v1.4.0" - }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2024-06-11T12:45:25+00:00" - }, - { - "name": "rector/rector", - "version": "2.2.11", - "source": { - "type": "git", - "url": "https://github.com/rectorphp/rector.git", - "reference": "7bd21a40b0332b93d4bfee284093d7400696902d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/7bd21a40b0332b93d4bfee284093d7400696902d", - "reference": "7bd21a40b0332b93d4bfee284093d7400696902d", - "shasum": "" - }, - "require": { - "php": "^7.4|^8.0", - "phpstan/phpstan": "^2.1.32" - }, - "conflict": { - "rector/rector-doctrine": "*", - "rector/rector-downgrade-php": "*", - "rector/rector-phpunit": "*", - "rector/rector-symfony": "*" - }, - "suggest": { - "ext-dom": "To manipulate phpunit.xml via the custom-rule command" - }, - "bin": [ - "bin/rector" - ], - "type": "library", - "autoload": { - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Instant Upgrade and Automated Refactoring of any PHP code", - "homepage": "https://getrector.com/", - "keywords": [ - "automation", - "dev", - "migration", - "refactoring" - ], - "support": { - "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/2.2.11" - }, - "funding": [ - { - "url": "https://github.com/tomasvotruba", - "type": "github" - } - ], - "time": "2025-12-02T11:23:46+00:00" + "time": "2025-05-21T20:55:28+00:00" }, { "name": "roave/security-advisories", @@ -5241,33 +3674,30 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "10c1e6abcb8094a428b92e7d8c3126371f9f9126" + "reference": "c44d680c1033ece6eec5a1e6fef573548d916670" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/10c1e6abcb8094a428b92e7d8c3126371f9f9126", - "reference": "10c1e6abcb8094a428b92e7d8c3126371f9f9126", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/c44d680c1033ece6eec5a1e6fef573548d916670", + "reference": "c44d680c1033ece6eec5a1e6fef573548d916670", "shasum": "" }, "conflict": { "3f/pygmentize": "<1.2", "adaptcms/adaptcms": "<=1.3", - "admidio/admidio": "<=4.3.16", - "adodb/adodb-php": "<=5.22.9", + "admidio/admidio": "<4.3.12", + "adodb/adodb-php": "<=5.22.8", "aheinze/cockpit": "<2.2", "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.07.2", "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1", "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7", - "aimeos/ai-cms-grapesjs": ">=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.9|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.10.8|>=2025.04.1,<2025.10.2", "aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9|==2024.04.1", "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7", "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5", "airesvsg/acf-to-rest-api": "<=3.1", "akaunting/akaunting": "<2.1.13", "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53", - "alextselegidis/easyappointments": "<1.5.2.0-beta1", - "alexusmai/laravel-file-manager": "<=3.3.1", - "alt-design/alt-redirect": "<1.6.4", + "alextselegidis/easyappointments": "<=1.5.1", "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1", "amazing/media2click": ">=1,<1.3.3", "ameos/ameos_tarteaucitron": "<1.2.23", @@ -5280,8 +3710,8 @@ "aoe/restler": "<1.7.1", "apache-solr-for-typo3/solr": "<2.8.3", "apereo/phpcas": "<1.6", - "api-platform/core": "<3.4.17|>=4,<4.0.22|>=4.1,<4.1.5", - "api-platform/graphql": "<3.4.17|>=4,<4.0.22|>=4.1,<4.1.5", + "api-platform/core": "<3.4.17|>=4.0.0.0-alpha1,<4.0.22", + "api-platform/graphql": "<3.4.17|>=4.0.0.0-alpha1,<4.0.22", "appwrite/server-ce": "<=1.2.1", "arc/web": "<3", "area17/twill": "<1.2.5|>=2,<2.5.3", @@ -5291,22 +3721,22 @@ "athlon1600/php-proxy-app": "<=3", "athlon1600/youtube-downloader": "<=4", "austintoddj/canvas": "<=3.4.2", - "auth0/auth0-php": ">=3.3,<=8.16", - "auth0/login": "<=7.18", - "auth0/symfony": "<=5.4.1", - "auth0/wordpress": "<=5.3", + "auth0/auth0-php": ">=8.0.0.0-beta1,<8.14", + "auth0/login": "<7.17", + "auth0/symfony": "<5.4", + "auth0/wordpress": "<5.3", "automad/automad": "<2.0.0.0-alpha5", "automattic/jetpack": "<9.8", "awesome-support/awesome-support": "<=6.0.7", "aws/aws-sdk-php": "<3.288.1", "azuracast/azuracast": "<0.18.3", "b13/seo_basics": "<0.8.2", - "backdrop/backdrop": "<=1.32", + "backdrop/backdrop": "<1.27.3|>=1.28,<1.28.2", "backpack/crud": "<3.4.9", "backpack/filemanager": "<2.0.2|>=3,<3.0.9", - "bacula-web/bacula-web": "<9.7.1", - "badaso/core": "<=2.9.11", - "bagisto/bagisto": "<=2.3.7", + "bacula-web/bacula-web": "<8.0.0.0-RC2-dev", + "badaso/core": "<2.7", + "bagisto/bagisto": "<2.1", "barrelstrength/sprout-base-email": "<1.2.7", "barrelstrength/sprout-forms": "<3.9", "barryvdh/laravel-translation-manager": "<0.6.8", @@ -5319,8 +3749,7 @@ "bedita/bedita": "<4", "bednee/cooluri": "<1.0.30", "bigfork/silverstripe-form-capture": ">=3,<3.1.1", - "billz/raspap-webgui": "<3.3.6", - "binarytorch/larecipe": "<2.8.1", + "billz/raspap-webgui": "<=3.1.4", "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3", "blueimp/jquery-file-upload": "==6.4.4", "bmarshall511/wordpress_zero_spam": "<5.2.13", @@ -5356,31 +3785,29 @@ "ckeditor/ckeditor": "<4.25", "clickstorm/cs-seo": ">=6,<6.8|>=7,<7.5|>=8,<8.4|>=9,<9.3", "co-stack/fal_sftp": "<0.2.6", - "cockpit-hq/cockpit": "<2.11.4", - "code16/sharp": "<9.11.1", + "cockpit-hq/cockpit": "<2.7|==2.7", "codeception/codeception": "<3.1.3|>=4,<4.1.22", - "codeigniter/framework": "<3.1.10", - "codeigniter4/framework": "<4.6.2", + "codeigniter/framework": "<3.1.9", + "codeigniter4/framework": "<4.5.8", "codeigniter4/shield": "<1.0.0.0-beta8", "codiad/codiad": "<=2.8.4", "codingms/additional-tca": ">=1.7,<1.15.17|>=1.16,<1.16.9", - "codingms/modules": "<4.3.11|>=5,<5.7.4|>=6,<6.4.2|>=7,<7.5.5", "commerceteam/commerce": ">=0.9.6,<0.9.9", "components/jquery": ">=1.0.3,<3.5", "composer/composer": "<1.10.27|>=2,<2.2.24|>=2.3,<2.7.7", - "concrete5/concrete5": "<9.4.3", + "concrete5/concrete5": "<9.4.0.0-RC2-dev", "concrete5/core": "<8.5.8|>=9,<9.1", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4", - "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.13.56|>=5,<5.3.38|>=5.4.0.0-RC1-dev,<5.6.1", + "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4", "contao/core": "<3.5.39", - "contao/core-bundle": "<4.13.57|>=5,<5.3.42|>=5.4,<5.6.5", + "contao/core-bundle": "<4.13.54|>=5,<5.3.30|>=5.4,<5.5.6", "contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8", "contao/managed-edition": "<=1.5", "corveda/phpsandbox": "<1.3.5", "cosenary/instagram": "<=2.3", "couleurcitron/tarteaucitron-wp": "<0.3", - "craftcms/cms": "<=4.16.5|>=5,<=5.8.6", + "craftcms/cms": "<4.15.3|>=5,<5.7.5", "croogo/croogo": "<4", "cuyz/valinor": "<0.12", "czim/file-handling": "<1.5|>=2,<2.3", @@ -5389,7 +3816,6 @@ "dapphp/securimage": "<3.6.6", "darylldoyle/safe-svg": "<1.9.10", "datadog/dd-trace": ">=0.30,<0.30.2", - "datahihi1/tiny-env": "<1.0.3|>=1.0.9,<1.0.11", "datatables/datatables": "<1.10.10", "david-garcia/phpwhois": "<=4.3.1", "dbrisinajumi/d2files": "<1", @@ -5398,7 +3824,6 @@ "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4", "desperado/xml-bundle": "<=0.1.7", "dev-lancer/minecraft-motd-parser": "<=1.0.5", - "devcode-it/openstamanager": "<=2.9.4", "devgroup/dotplant": "<2020.09.14-dev", "digimix/wp-svg-upload": "<=1", "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2", @@ -5414,45 +3839,33 @@ "doctrine/mongodb-odm": "<1.0.2", "doctrine/mongodb-odm-bundle": "<3.0.1", "doctrine/orm": ">=1,<1.2.4|>=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4", - "dolibarr/dolibarr": "<21.0.3", + "dolibarr/dolibarr": "<19.0.2|==21.0.0.0-beta", "dompdf/dompdf": "<2.0.4", "doublethreedigital/guest-entries": "<3.1.2", - "drupal-pattern-lab/unified-twig-extensions": "<=0.1", - "drupal/access_code": "<2.0.5", - "drupal/acquia_dam": "<1.1.5", "drupal/admin_audit_trail": "<1.0.5", "drupal/ai": "<1.0.5", "drupal/alogin": "<2.0.6", "drupal/cache_utility": "<1.2.1", - "drupal/civictheme": "<1.12", "drupal/commerce_alphabank_redirect": "<1.0.3", "drupal/commerce_eurobank_redirect": "<2.1.1", "drupal/config_split": "<1.10|>=2,<2.0.2", - "drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.4.9|>=10.5,<10.5.6|>=11,<11.1.9|>=11.2,<11.2.8", + "drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.3.14|>=10.4,<10.4.5|>=11,<11.0.13|>=11.1,<11.1.5", "drupal/core-recommended": ">=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8", - "drupal/currency": "<3.5", "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8", - "drupal/email_tfa": "<2.0.6", "drupal/formatter_suite": "<2.1", "drupal/gdpr": "<3.0.1|>=3.1,<3.1.2", "drupal/google_tag": "<1.8|>=2,<2.0.8", "drupal/ignition": "<1.0.4", - "drupal/json_field": "<1.5", "drupal/lightgallery": "<1.6", "drupal/link_field_display_mode_formatter": "<1.6", "drupal/matomo": "<1.24", "drupal/oauth2_client": "<4.1.3", "drupal/oauth2_server": "<2.1", "drupal/obfuscate": "<2.0.1", - "drupal/plausible_tracking": "<1.0.2", "drupal/quick_node_block": "<2", "drupal/rapidoc_elements_field_formatter": "<1.0.1", - "drupal/reverse_proxy_header": "<1.1.2", - "drupal/simple_multistep": "<2", - "drupal/simple_oauth": ">=6,<6.0.7", "drupal/spamspan": "<3.2.1", "drupal/tfa": "<1.10", - "drupal/umami_analytics": "<1.0.1", "duncanmcclean/guest-entries": "<3.1.2", "dweeves/magmi": "<=0.7.24", "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2", @@ -5462,11 +3875,11 @@ "elefant/cms": "<2.0.7", "elgg/elgg": "<3.3.24|>=4,<4.0.5", "elijaa/phpmemcacheadmin": "<=1.3", - "elmsln/haxcms": "<11.0.14", + "elmsln/haxcms": "<11", "encore/laravel-admin": "<=1.8.19", "endroid/qr-code-bundle": "<3.4.2", "enhavo/enhavo-app": "<=0.13.1", - "enshrined/svg-sanitize": "<0.22", + "enshrined/svg-sanitize": "<0.15", "erusev/parsedown": "<1.7.2", "ether/logs": "<3.0.4", "evolutioncms/evolution": "<=3.2.3", @@ -5477,8 +3890,8 @@ "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev", "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev", "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24", - "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.39|>=3.3,<3.3.39", - "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1|>=5.3.0.0-beta1,<5.3.5", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26|>=3.3,<3.3.39", + "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1", "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12", "ezsystems/ezplatform-http-cache": "<2.3.16", "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35", @@ -5538,10 +3951,10 @@ "gaoming13/wechat-php-sdk": "<=1.10.2", "genix/cms": "<=1.1.11", "georgringer/news": "<1.3.3", - "geshi/geshi": "<=1.0.9.1", - "getformwork/formwork": "<2.2", - "getgrav/grav": "<1.11.0.0-beta1", - "getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1|>=5,<5.1.4", + "geshi/geshi": "<1.0.8.11-dev", + "getformwork/formwork": "<1.13.1|>=2.0.0.0-beta1,<2.0.0.0-beta4", + "getgrav/grav": "<1.7.46", + "getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1", "getkirby/kirby": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1", "getkirby/panel": "<2.5.14", "getkirby/starterkit": "<=3.7.0.2", @@ -5550,9 +3963,8 @@ "globalpayments/php-sdk": "<2", "goalgorilla/open_social": "<12.3.11|>=12.4,<12.4.10|>=13.0.0.0-alpha1,<13.0.0.0-alpha11", "gogentooss/samlbase": "<1.2.7", - "google/protobuf": "<3.4", + "google/protobuf": "<3.15", "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", - "gp247/core": "<1.1.24", "gree/jose": "<2.2.1", "gregwar/rst": "<1.0.3", "grumpydictator/firefly-iii": "<6.1.17", @@ -5561,7 +3973,6 @@ "guzzlehttp/oauth-subscriber": "<0.8.1", "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5", "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2", - "handcraftedinthealps/goodby-csv": "<1.4.3", "harvesthq/chosen": "<1.8.7", "helloxz/imgurl": "<=2.31", "hhxsv5/laravel-s": "<3.7.36", @@ -5571,15 +3982,14 @@ "hov/jobfair": "<1.0.13|>=2,<2.0.2", "httpsoft/http-message": "<1.0.12", "hyn/multi-tenant": ">=5.6,<5.7.2", - "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.25|>=5,<5.0.3", - "ibexa/admin-ui-assets": ">=4.6.0.0-alpha1,<4.6.21", + "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.14", "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2", - "ibexa/fieldtype-richtext": ">=4.6,<4.6.25|>=5,<5.0.3", + "ibexa/fieldtype-richtext": ">=4.6,<4.6.19", "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3", "ibexa/http-cache": ">=4.6,<4.6.14", "ibexa/post-install": "<1.0.16|>=4.6,<4.6.14", "ibexa/solr": ">=4.5,<4.5.4", - "ibexa/user": ">=4,<4.4.3|>=5,<5.0.3", + "ibexa/user": ">=4,<4.4.3", "icecoder/icecoder": "<=8.1", "idno/known": "<=1.3.1", "ilicmiljan/secure-props": ">=1.2,<1.2.2", @@ -5591,10 +4001,10 @@ "imdbphp/imdbphp": "<=5.1.1", "impresscms/impresscms": "<=1.4.5", "impresspages/impresspages": "<1.0.13", - "in2code/femanager": "<6.4.2|>=7,<7.5.3|>=8,<8.3.1", + "in2code/femanager": "<5.5.5|>=6,<6.4.1|>=7,<7.4.2|>=8,<8.2.2", "in2code/ipandlanguageredirect": "<5.1.2", "in2code/lux": "<17.6.1|>=18,<24.0.2", - "in2code/powermail": "<7.5.1|>=8,<8.5.1|>=9,<10.9.1|>=11,<12.5.3|==13", + "in2code/powermail": "<7.5.1|>=8,<8.5.1|>=9,<10.9.1|>=11,<12.4.1", "innologi/typo3-appointments": "<2.0.6", "intelliants/subrion": "<4.2.2", "inter-mediator/inter-mediator": "==5.5", @@ -5605,17 +4015,17 @@ "jackalope/jackalope-doctrine-dbal": "<1.7.4", "jambagecom/div2007": "<0.10.2", "james-heinrich/getid3": "<1.9.21", - "james-heinrich/phpthumb": "<=1.7.23", + "james-heinrich/phpthumb": "<1.7.12", "jasig/phpcas": "<1.3.3", "jbartels/wec-map": "<3.0.3", "jcbrand/converse.js": "<3.3.3", "joelbutcher/socialstream": "<5.6|>=6,<6.2", - "johnbillion/wp-crontrol": "<1.16.2|>=1.17,<1.19.2", + "johnbillion/wp-crontrol": "<1.16.2", "joomla/application": "<1.0.13", "joomla/archive": "<1.1.12|>=2,<2.0.1", "joomla/database": ">=1,<2.2|>=3,<3.4", "joomla/filesystem": "<1.6.2|>=2,<2.0.1", - "joomla/filter": "<2.0.6|>=3,<3.0.5|==4", + "joomla/filter": "<1.4.4|>=2,<2.0.1", "joomla/framework": "<1.5.7|>=2.5.4,<=3.8.12", "joomla/input": ">=2,<2.0.2", "joomla/joomla-cms": "<3.9.12|>=4,<4.4.13|>=5,<5.2.6", @@ -5624,7 +4034,7 @@ "joyqi/hyper-down": "<=2.4.27", "jsdecena/laracom": "<2.0.9", "jsmitty12/phpwhois": "<5.1", - "juzaweb/cms": "<=3.4.2", + "juzaweb/cms": "<=3.4", "jweiland/events2": "<8.3.8|>=9,<9.0.6", "jweiland/kk-downloader": "<1.2.2", "kazist/phpwhois": "<=4.2.6", @@ -5654,7 +4064,6 @@ "laravel/socialite": ">=1,<2.0.10", "latte/latte": "<2.10.8", "lavalite/cms": "<=9|==10.1", - "lavitto/typo3-form-to-database": "<2.2.5|>=3,<3.2.2|>=4,<4.2.3|>=5,<5.0.2", "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5", "league/commonmark": "<2.7", "league/flysystem": "<1.1.4|>=2,<2.1.1", @@ -5662,12 +4071,12 @@ "leantime/leantime": "<3.3", "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3", "libreform/libreform": ">=2,<=2.0.8", - "librenms/librenms": "<25.11", + "librenms/librenms": "<2017.08.18", "liftkit/database": "<2.13.2", "lightsaml/lightsaml": "<1.3.5", "limesurvey/limesurvey": "<6.5.12", "livehelperchat/livehelperchat": "<=3.91", - "livewire/livewire": "<2.12.7|>=3.0.0.0-beta1,<3.6.4", + "livewire/livewire": "<2.12.7|>=3.0.0.0-beta1,<3.5.2", "livewire/volt": "<1.7", "lms/routes": "<2.1.1", "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2", @@ -5676,45 +4085,39 @@ "luyadev/yii-helpers": "<1.2.1", "macropay-solutions/laravel-crud-wizard-free": "<3.4.17", "maestroerror/php-heic-to-jpg": "<1.0.5", - "magento/community-edition": "<2.4.6.0-patch13|>=2.4.7.0-beta1,<2.4.7.0-patch8|>=2.4.8.0-beta1,<2.4.8.0-patch3|>=2.4.9.0-alpha1,<2.4.9.0-alpha3|==2.4.9", + "magento/community-edition": "<2.4.5|==2.4.5|>=2.4.5.0-patch1,<2.4.5.0-patch12|==2.4.6|>=2.4.6.0-patch1,<2.4.6.0-patch10|>=2.4.7.0-beta1,<2.4.7.0-patch5|>=2.4.8.0-beta1,<2.4.8.0-beta2", "magento/core": "<=1.9.4.5", "magento/magento1ce": "<1.9.4.3-dev", "magento/magento1ee": ">=1,<1.14.4.3-dev", "magento/product-community-edition": "<2.4.4.0-patch9|>=2.4.5,<2.4.5.0-patch8|>=2.4.6,<2.4.6.0-patch6|>=2.4.7,<2.4.7.0-patch1", "magento/project-community-edition": "<=2.0.2", "magneto/core": "<1.9.4.4-dev", - "mahocommerce/maho": "<25.9", "maikuolan/phpmussel": ">=1,<1.6", "mainwp/mainwp": "<=4.4.3.3", - "manogi/nova-tiptap": "<=3.2.6", - "mantisbt/mantisbt": "<2.27.2", + "mantisbt/mantisbt": "<=2.26.3", "marcwillmann/turn": "<0.3.3", - "marshmallow/nova-tiptap": "<5.7", "matomo/matomo": "<1.11", "matyhtf/framework": "<3.0.6", - "mautic/core": "<5.2.9|>=6,<6.0.7", + "mautic/core": "<5.2.6|>=6.0.0.0-alpha,<6.0.2", "mautic/core-lib": ">=1.0.0.0-beta,<4.4.13|>=5.0.0.0-alpha,<5.1.1", - "mautic/grapes-js-builder-bundle": ">=4,<4.4.18|>=5,<5.2.9|>=6,<6.0.7", "maximebf/debugbar": "<1.19", "mdanter/ecc": "<2", "mediawiki/abuse-filter": "<1.39.9|>=1.40,<1.41.3|>=1.42,<1.42.2", - "mediawiki/cargo": "<3.8.3", + "mediawiki/cargo": "<3.6.1", "mediawiki/core": "<1.39.5|==1.40", "mediawiki/data-transfer": ">=1.39,<1.39.11|>=1.41,<1.41.3|>=1.42,<1.42.2", "mediawiki/matomo": "<2.4.3", "mediawiki/semantic-media-wiki": "<4.0.2", "mehrwert/phpmyadmin": "<3.2", "melisplatform/melis-asset-manager": "<5.0.1", - "melisplatform/melis-cms": "<5.3.4", - "melisplatform/melis-cms-slider": "<5.3.1", - "melisplatform/melis-core": "<5.3.11", + "melisplatform/melis-cms": "<5.0.1", "melisplatform/melis-front": "<5.0.1", "mezzio/mezzio-swoole": "<3.7|>=4,<4.3", "mgallegos/laravel-jqgrid": "<=1.3", "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1", "microsoft/microsoft-graph-beta": "<2.0.1", "microsoft/microsoft-graph-core": "<2.0.2", - "microweber/microweber": "<=2.0.19", + "microweber/microweber": "<=2.0.16", "mikehaertl/php-shellcommand": "<1.6.1", "miniorange/miniorange-saml": "<1.4.3", "mittwald/typo3_forum": "<1.2.1", @@ -5722,17 +4125,16 @@ "modx/revolution": "<=3.1", "mojo42/jirafeau": "<4.4", "mongodb/mongodb": ">=1,<1.9.2", - "mongodb/mongodb-extension": "<1.21.2", "monolog/monolog": ">=1.8,<1.12", - "moodle/moodle": "<4.4.11|>=4.5.0.0-beta,<4.5.7|>=5.0.0.0-beta,<5.0.3", - "moonshine/moonshine": "<=3.12.5", + "moodle/moodle": "<4.3.12|>=4.4,<4.4.8|>=4.5.0.0-beta,<4.5.4", "mos/cimage": "<0.7.19", "movim/moxl": ">=0.8,<=0.10", "movingbytes/social-network": "<=1.2.1", "mpdf/mpdf": "<=7.1.7", - "munkireport/comment": "<4", + "munkireport/comment": "<4.1", "munkireport/managedinstalls": "<2.6", "munkireport/munki_facts": "<1.5", + "munkireport/munkireport": ">=2.5.3,<5.6.3", "munkireport/reportdata": "<3.5", "munkireport/softwareupdate": "<1.6", "mustache/mustache": ">=2,<2.14.1", @@ -5758,7 +4160,6 @@ "notrinos/notrinos-erp": "<=0.7", "noumo/easyii": "<=0.9", "novaksolutions/infusionsoft-php-sdk": "<1", - "novosga/novosga": "<=2.2.12", "nukeviet/nukeviet": "<4.5.02", "nyholm/psr7": "<1.6.1", "nystudio107/craft-seomatic": "<3.4.12", @@ -5773,10 +4174,10 @@ "omeka/omeka-s": "<4.0.3", "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5", - "open-web-analytics/open-web-analytics": "<1.8.1", + "open-web-analytics/open-web-analytics": "<1.7.4", "opencart/opencart": ">=0", "openid/php-openid": "<2.3", - "openmage/magento-lts": "<20.16", + "openmage/magento-lts": "<20.12.3", "opensolutions/vimbadmin": "<=3.0.15", "opensource-workshop/connect-cms": "<1.8.7|>=2,<2.4.7", "orchid/platform": ">=8,<14.43", @@ -5817,12 +4218,11 @@ "phpmailer/phpmailer": "<6.5", "phpmussel/phpmussel": ">=1,<1.6", "phpmyadmin/phpmyadmin": "<5.2.2", - "phpmyfaq/phpmyfaq": "<=4.0.13", + "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5|>=3.2.10,<=4.0.1", "phpoffice/common": "<0.2.9", "phpoffice/math": "<=0.2", "phpoffice/phpexcel": "<=1.8.2", - "phpoffice/phpspreadsheet": "<1.30|>=2,<2.1.12|>=2.2,<2.4|>=3,<3.10|>=4,<5", - "phppgadmin/phppgadmin": "<=7.13", + "phpoffice/phpspreadsheet": "<1.29.9|>=2,<2.1.8|>=2.2,<2.3.7|>=3,<3.9", "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36", "phpservermon/phpservermon": "<3.6", "phpsysinfo/phpsysinfo": "<3.4.3", @@ -5843,7 +4243,7 @@ "pixelfed/pixelfed": "<0.12.5", "plotly/plotly.js": "<2.25.2", "pocketmine/bedrock-protocol": "<8.0.2", - "pocketmine/pocketmine-mp": "<5.32.1", + "pocketmine/pocketmine-mp": "<5.25.2", "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1", "pressbooks/pressbooks": "<5.18", "prestashop/autoupgrade": ">=4,<4.10.1", @@ -5851,18 +4251,17 @@ "prestashop/blockwishlist": ">=2,<2.1.1", "prestashop/contactform": ">=1.0.1,<4.3", "prestashop/gamification": "<2.3.2", - "prestashop/prestashop": "<8.2.3", + "prestashop/prestashop": "<8.1.6", "prestashop/productcomments": "<5.0.2", - "prestashop/ps_checkout": "<4.4.1|>=5,<5.0.5", "prestashop/ps_contactinfo": "<=3.3.2", "prestashop/ps_emailsubscription": "<2.6.1", "prestashop/ps_facetedsearch": "<3.4.1", "prestashop/ps_linklist": "<3.1", - "privatebin/privatebin": "<1.4|>=1.5,<1.7.4|>=1.7.7,<2.0.3", - "processwire/processwire": "<=3.0.246", + "privatebin/privatebin": "<1.4|>=1.5,<1.7.4", + "processwire/processwire": "<=3.0.229", "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7", "propel/propel1": ">=1,<=1.7.1", - "pterodactyl/panel": "<=1.11.10", + "pterodactyl/panel": "<1.11.8", "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2", "ptrofimov/beanstalk_console": "<1.7.14", "pubnub/pubnub": "<6.1", @@ -5880,7 +4279,7 @@ "rap2hpoutre/laravel-log-viewer": "<0.13", "react/http": ">=0.7,<1.9", "really-simple-plugins/complianz-gdpr": "<6.4.2", - "redaxo/source": "<5.20.1", + "redaxo/source": "<5.18.3", "remdex/livehelperchat": "<4.29", "renolit/reint-downloadmanager": "<4.0.2|>=5,<5.0.1", "reportico-web/reportico": "<=8.1", @@ -5891,7 +4290,7 @@ "roundcube/roundcubemail": "<1.5.10|>=1.6,<1.6.11", "rudloff/alltube": "<3.0.3", "rudloff/rtmpdump-bin": "<=2.3.1", - "s-cart/core": "<=9.0.5", + "s-cart/core": "<6.9", "s-cart/s-cart": "<6.9", "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1", "sabre/dav": ">=1.6,<1.7.11|>=1.8,<1.8.9", @@ -5899,13 +4298,12 @@ "scheb/two-factor-bundle": "<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", - "setasign/fpdi": "<2.6.4", "sfroemken/url_redirect": "<=1.2.1", "sheng/yiicms": "<1.2.1", - "shopware/core": "<6.6.10.9-dev|>=6.7,<6.7.4.1-dev", - "shopware/platform": "<6.6.10.7-dev|>=6.7,<6.7.3.1-dev", + "shopware/core": "<6.5.8.18-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev", + "shopware/platform": "<6.5.8.18-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev", "shopware/production": "<=6.3.5.2", - "shopware/shopware": "<=5.7.17|>=6.7,<6.7.2.1-dev", + "shopware/shopware": "<=5.7.17", "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev", "shopxo/shopxo": "<=6.4", "showdoc/showdoc": "<2.10.4", @@ -5928,7 +4326,6 @@ "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1", "silverstripe/userforms": "<3|>=5,<5.4.2", "silverstripe/versioned-admin": ">=1,<1.11.1", - "simogeo/filemanager": "<=2.5", "simple-updates/phpwhois": "<=1", "simplesamlphp/saml2": "<=4.16.15|>=5.0.0.0-alpha1,<=5.0.0.0-alpha19", "simplesamlphp/saml2-legacy": "<=4.16.15", @@ -5947,25 +4344,20 @@ "slim/slim": "<2.6", "slub/slub-events": "<3.0.3", "smarty/smarty": "<4.5.3|>=5,<5.1.1", - "snipe/snipe-it": "<=8.3.4", + "snipe/snipe-it": "<8.1", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", - "solspace/craft-freeform": ">=5,<5.10.16", - "soosyze/soosyze": "<=2", "spatie/browsershot": "<5.0.5", "spatie/image-optimizer": "<1.7.3", "spencer14420/sp-php-email-handler": "<1", "spipu/html2pdf": "<5.2.8", - "spiral/roadrunner": "<2025.1", "spoon/library": "<1.4.1", "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", "ssddanbrown/bookstack": "<24.05.1", - "starcitizentools/citizen-skin": ">=1.9.4,<3.9", - "starcitizentools/short-description": ">=4,<4.0.1", - "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2|>=3,<3.1.1", - "starcitizenwiki/embedvideo": "<=4", - "statamic/cms": "<=5.22", + "starcitizentools/citizen-skin": ">=2.4.2,<3.3.1", + "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2", + "statamic/cms": "<=5.16", "stormpath/sdk": "<9.9.99", "studio-42/elfinder": "<=2.1.64", "studiomitte/friendlycaptcha": "<0.1.4", @@ -5996,7 +4388,7 @@ "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1", "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<5.3.15|>=5.4.3,<5.4.4|>=6.0.3,<6.0.4", "symfony/http-client": ">=4.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8", - "symfony/http-foundation": "<5.4.50|>=6,<6.4.29|>=7,<7.3.7", + "symfony/http-foundation": "<5.4.46|>=6,<6.4.14|>=7,<7.1.7", "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6", "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13", "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1", @@ -6015,7 +4407,7 @@ "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8", "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8", "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12", - "symfony/symfony": "<5.4.50|>=6,<6.4.29|>=7,<7.3.7", + "symfony/symfony": "<5.4.47|>=6,<6.4.15|>=7,<7.1.8", "symfony/translation": ">=2,<2.0.17", "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8", "symfony/ux-autocomplete": "<2.11.2", @@ -6039,7 +4431,7 @@ "thelia/thelia": ">=2.1,<2.1.3", "theonedemon/phpwhois": "<=4.2.5", "thinkcmf/thinkcmf": "<6.0.8", - "thorsten/phpmyfaq": "<=4.0.13", + "thorsten/phpmyfaq": "<=4.0.1", "tikiwiki/tiki-manager": "<=17.1", "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1", "tinymce/tinymce": "<7.2", @@ -6050,19 +4442,19 @@ "topthink/framework": "<6.0.17|>=6.1,<=8.0.4", "topthink/think": "<=6.1.1", "topthink/thinkphp": "<=3.2.3|>=6.1.3,<=8.0.4", - "torrentpier/torrentpier": "<=2.8.8", + "torrentpier/torrentpier": "<=2.4.3", "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2", "tribalsystems/zenario": "<=9.7.61188", "truckersmp/phpwhois": "<=4.3.1", "ttskch/pagination-service-provider": "<1", - "twbs/bootstrap": "<3.4.1|>=4,<4.3.1", + "twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2", "twig/twig": "<3.11.2|>=3.12,<3.14.1|>=3.16,<3.19", "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", - "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18", + "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<10.4.46|>=11,<11.5.40|>=12,<=12.4.30|>=13,<=13.4.11", "typo3/cms-belog": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", - "typo3/cms-beuser": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18", - "typo3/cms-core": "<=8.7.56|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18", - "typo3/cms-dashboard": ">=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18", + "typo3/cms-beuser": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", + "typo3/cms-core": "<=8.7.56|>=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11", + "typo3/cms-dashboard": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1", "typo3/cms-extensionmanager": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", "typo3/cms-felogin": ">=4.2,<4.2.3", @@ -6072,13 +4464,10 @@ "typo3/cms-indexed-search": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", "typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8|==13.4.2", "typo3/cms-lowlevel": ">=11,<=11.5.41", - "typo3/cms-recordlist": ">=11,<11.5.48", - "typo3/cms-recycler": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18", "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30", "typo3/cms-scheduler": ">=11,<=11.5.41", "typo3/cms-setup": ">=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11", "typo3/cms-webhooks": ">=12,<=12.4.30|>=13,<=13.4.11", - "typo3/cms-workspaces": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3", @@ -6088,8 +4477,7 @@ "ua-parser/uap-php": "<3.8", "uasoft-indonesia/badaso": "<=2.9.7", "unisharp/laravel-filemanager": "<2.9.1", - "universal-omega/dynamic-page-list3": "<3.6.4", - "unopim/unopim": "<=0.3", + "unopim/unopim": "<0.1.5", "userfrosting/userfrosting": ">=0.3.1,<4.6.3", "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", "uvdesk/community-skeleton": "<=1.1.1", @@ -6103,7 +4491,7 @@ "vertexvaar/falsftp": "<0.2.6", "villagedefrance/opencart-overclocked": "<=1.11.1", "vova07/yii2-fileapi-widget": "<0.1.9", - "vrana/adminer": "<=4.8.1", + "vrana/adminer": "<4.8.1", "vufind/vufind": ">=2,<9.1.1", "waldhacker/hcaptcha": "<2.1.2", "wallabag/tcpdf": "<6.2.22", @@ -6119,7 +4507,6 @@ "webklex/laravel-imap": "<5.3", "webklex/php-imap": "<5.3", "webpa/webpa": "<3.1.2", - "webreinvent/vaahcms": "<=2.3.1", "wikibase/wikibase": "<=1.39.3", "wikimedia/parsoid": "<0.12.2", "willdurand/js-translation-bundle": "<2.1.1", @@ -6140,7 +4527,7 @@ "xataface/xataface": "<3", "xpressengine/xpressengine": "<3.0.15", "yab/quarx": "<2.4.5", - "yeswiki/yeswiki": "<=4.5.4", + "yeswiki/yeswiki": "<4.5.4", "yetiforce/yetiforce-crm": "<6.5", "yidashi/yii2cmf": "<=2", "yii2mod/yii2-cms": "<1.9.2", @@ -6157,7 +4544,6 @@ "yoast-seo-for-typo3/yoast_seo": "<7.2.3", "yourls/yourls": "<=1.8.2", "yuan1994/tpadmin": "<=1.3.12", - "z-push/z-push-dev": "<2.7.6", "zencart/zencart": "<=1.5.7.0-beta", "zendesk/zendesk_api_client_php": "<2.2.11", "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", @@ -6232,103 +4618,41 @@ "type": "tidelift" } ], - "time": "2025-12-05T21:05:14+00:00" - }, - { - "name": "sebastian/diff", - "version": "7.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "7ab1ea946c012266ca32390913653d844ecd085f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f", - "reference": "7ab1ea946c012266ca32390913653d844ecd085f", - "shasum": "" - }, - "require": { - "php": ">=8.3" - }, - "require-dev": { - "phpunit/phpunit": "^12.0", - "symfony/process": "^7.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "7.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - } - ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ], - "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "security": "https://github.com/sebastianbergmann/diff/security/policy", - "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2025-02-07T04:55:46+00:00" + "time": "2025-06-11T20:05:14+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "4.0.1", + "version": "3.13.1", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "0525c73950de35ded110cffafb9892946d7771b5" + "reference": "1b71b4dd7e7ef651ac749cea67e513c0c832f4bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0525c73950de35ded110cffafb9892946d7771b5", - "reference": "0525c73950de35ded110cffafb9892946d7771b5", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/1b71b4dd7e7ef651ac749cea67e513c0c832f4bd", + "reference": "1b71b4dd7e7ef651ac749cea67e513c0c832f4bd", "shasum": "" }, "require": { "ext-simplexml": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": ">=7.2.0" + "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^8.4.0 || ^9.3.4 || ^10.5.32 || 11.3.3 - 11.5.28 || ^11.5.31" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4" }, "bin": [ "bin/phpcbf", "bin/phpcs" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" @@ -6347,7 +4671,7 @@ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" } ], - "description": "PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.", + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", "keywords": [ "phpcs", @@ -6378,1074 +4702,7 @@ "type": "thanks_dev" } ], - "time": "2025-11-10T16:43:36+00:00" - }, - { - "name": "swissspidy/phpstan-no-private", - "version": "v1.0.0", - "source": { - "type": "git", - "url": "https://github.com/swissspidy/phpstan-no-private.git", - "reference": "559cb0e8d092df7314ed4254db83db0427440af2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/swissspidy/phpstan-no-private/zipball/559cb0e8d092df7314ed4254db83db0427440af2", - "reference": "559cb0e8d092df7314ed4254db83db0427440af2", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^2.0" - }, - "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^1.0.0", - "nikic/php-parser": "^v5.3.1", - "php-parallel-lint/php-parallel-lint": "^1.4", - "phpstan/phpstan-phpunit": "^2.0", - "phpstan/phpstan-strict-rules": "^2.0", - "phpunit/phpunit": "^9.5", - "slevomat/coding-standard": "^8.8.0", - "squizlabs/php_codesniffer": "^3.5.3" - }, - "type": "phpstan-extension", - "extra": { - "phpstan": { - "includes": [ - "rules.neon" - ] - } - }, - "autoload": { - "psr-4": { - "Swissspidy\\PHPStan\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "PHPStan rules for detecting usage of pseudo-private functions, classes, and methods.", - "support": { - "issues": "https://github.com/swissspidy/phpstan-no-private/issues", - "source": "https://github.com/swissspidy/phpstan-no-private/tree/v1.0.0" - }, - "time": "2024-11-11T11:04:45+00:00" - }, - { - "name": "symfony/console", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "307d3cf852f5ead3618ac60ecbedbdd512c348b1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/307d3cf852f5ead3618ac60ecbedbdd512c348b1", - "reference": "307d3cf852f5ead3618ac60ecbedbdd512c348b1", - "shasum": "" - }, - "require": { - "php": ">=8.4", - "symfony/polyfill-mbstring": "^1.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^7.4|^8.0" - }, - "provide": { - "psr/log-implementation": "1.0|2.0|3.0" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^7.4|^8.0", - "symfony/dependency-injection": "^7.4|^8.0", - "symfony/event-dispatcher": "^7.4|^8.0", - "symfony/http-foundation": "^7.4|^8.0", - "symfony/http-kernel": "^7.4|^8.0", - "symfony/lock": "^7.4|^8.0", - "symfony/messenger": "^7.4|^8.0", - "symfony/process": "^7.4|^8.0", - "symfony/stopwatch": "^7.4|^8.0", - "symfony/var-dumper": "^7.4|^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Eases the creation of beautiful and testable command line interfaces", - "homepage": "https://symfony.com", - "keywords": [ - "cli", - "command-line", - "console", - "terminal" - ], - "support": { - "source": "https://github.com/symfony/console/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-11-21T13:19:49+00:00" - }, - { - "name": "symfony/event-dispatcher", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "573f95783a2ec6e38752979db139f09fec033f03" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/573f95783a2ec6e38752979db139f09fec033f03", - "reference": "573f95783a2ec6e38752979db139f09fec033f03", - "shasum": "" - }, - "require": { - "php": ">=8.4", - "symfony/event-dispatcher-contracts": "^2.5|^3" - }, - "conflict": { - "symfony/security-http": "<7.4", - "symfony/service-contracts": "<2.5" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "2.0|3.0" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^7.4|^8.0", - "symfony/dependency-injection": "^7.4|^8.0", - "symfony/error-handler": "^7.4|^8.0", - "symfony/expression-language": "^7.4|^8.0", - "symfony/framework-bundle": "^7.4|^8.0", - "symfony/http-foundation": "^7.4|^8.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^7.4|^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-10-30T14:17:19+00:00" - }, - { - "name": "symfony/event-dispatcher-contracts", - "version": "v3.6.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "59eb412e93815df44f05f342958efa9f46b1e586" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", - "reference": "59eb412e93815df44f05f342958efa9f46b1e586", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/event-dispatcher": "^1" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.6-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-25T14:21:43+00:00" - }, - { - "name": "symfony/filesystem", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "7fc96ae83372620eaba3826874f46e26295768ca" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7fc96ae83372620eaba3826874f46e26295768ca", - "reference": "7fc96ae83372620eaba3826874f46e26295768ca", - "shasum": "" - }, - "require": { - "php": ">=8.4", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" - }, - "require-dev": { - "symfony/process": "^7.4|^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Filesystem\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides basic utilities for the filesystem", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/filesystem/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-11-05T14:36:47+00:00" - }, - { - "name": "symfony/finder", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "7598dd5770580fa3517ec83e8da0c9b9e01f4291" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/7598dd5770580fa3517ec83e8da0c9b9e01f4291", - "reference": "7598dd5770580fa3517ec83e8da0c9b9e01f4291", - "shasum": "" - }, - "require": { - "php": ">=8.4" - }, - "require-dev": { - "symfony/filesystem": "^7.4|^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Finder\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Finds files and directories via an intuitive fluent interface", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/finder/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-11-05T14:36:47+00:00" - }, - { - "name": "symfony/options-resolver", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/options-resolver.git", - "reference": "d2b592535ffa6600c265a3893a7f7fd2bad82dd7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/d2b592535ffa6600c265a3893a7f7fd2bad82dd7", - "reference": "d2b592535ffa6600c265a3893a7f7fd2bad82dd7", - "shasum": "" - }, - "require": { - "php": ">=8.4", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\OptionsResolver\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides an improved replacement for the array_replace PHP function", - "homepage": "https://symfony.com", - "keywords": [ - "config", - "configuration", - "options" - ], - "support": { - "source": "https://github.com/symfony/options-resolver/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-11-12T15:55:31+00:00" - }, - { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.33.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", - "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for intl's grapheme_* functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "grapheme", - "intl", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-06-27T09:58:17+00:00" - }, - { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.33.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "3833d7255cc303546435cb650316bff708a1c75c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", - "reference": "3833d7255cc303546435cb650316bff708a1c75c", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-php81", - "version": "v1.33.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-09T11:45:10+00:00" - }, - { - "name": "symfony/process", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "a0a750500c4ce900d69ba4e9faf16f82c10ee149" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/a0a750500c4ce900d69ba4e9faf16f82c10ee149", - "reference": "a0a750500c4ce900d69ba4e9faf16f82c10ee149", - "shasum": "" - }, - "require": { - "php": ">=8.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Process\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Executes commands in sub-processes", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/process/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-10-16T16:25:44+00:00" - }, - { - "name": "symfony/service-contracts", - "version": "v3.6.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", - "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/container": "^1.1|^2.0", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "conflict": { - "ext-psr": "<1.1|>=2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.6-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Service\\": "" - }, - "exclude-from-classmap": [ - "/Test/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-07-15T11:30:57+00:00" - }, - { - "name": "symfony/stopwatch", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/stopwatch.git", - "reference": "67df1914c6ccd2d7b52f70d40cf2aea02159d942" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/67df1914c6ccd2d7b52f70d40cf2aea02159d942", - "reference": "67df1914c6ccd2d7b52f70d40cf2aea02159d942", - "shasum": "" - }, - "require": { - "php": ">=8.4", - "symfony/service-contracts": "^2.5|^3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Stopwatch\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides a way to profile code", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/stopwatch/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-08-04T07:36:47+00:00" - }, - { - "name": "symfony/string", - "version": "v8.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "f929eccf09531078c243df72398560e32fa4cf4f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f929eccf09531078c243df72398560e32fa4cf4f", - "reference": "f929eccf09531078c243df72398560e32fa4cf4f", - "shasum": "" - }, - "require": { - "php": ">=8.4", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-intl-grapheme": "^1.33", - "symfony/polyfill-intl-normalizer": "^1.0", - "symfony/polyfill-mbstring": "^1.0" - }, - "conflict": { - "symfony/translation-contracts": "<2.5" - }, - "require-dev": { - "symfony/emoji": "^7.4|^8.0", - "symfony/http-client": "^7.4|^8.0", - "symfony/intl": "^7.4|^8.0", - "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^7.4|^8.0" - }, - "type": "library", - "autoload": { - "files": [ - "Resources/functions.php" - ], - "psr-4": { - "Symfony\\Component\\String\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", - "homepage": "https://symfony.com", - "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" - ], - "support": { - "source": "https://github.com/symfony/string/tree/v8.0.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-09-11T14:37:55+00:00" + "time": "2025-06-12T15:04:34+00:00" }, { "name": "szepeviktor/phpstan-wordpress", @@ -7453,12 +4710,12 @@ "source": { "type": "git", "url": "https://github.com/szepeviktor/phpstan-wordpress.git", - "reference": "aa722f037b2d034828cd6c55ebe9e5c74961927e" + "reference": "963887b04c21fe7ac78e61c1351f8b00fff9f8f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/szepeviktor/phpstan-wordpress/zipball/aa722f037b2d034828cd6c55ebe9e5c74961927e", - "reference": "aa722f037b2d034828cd6c55ebe9e5c74961927e", + "url": "https://api.github.com/repos/szepeviktor/phpstan-wordpress/zipball/963887b04c21fe7ac78e61c1351f8b00fff9f8f8", + "reference": "963887b04c21fe7ac78e61c1351f8b00fff9f8f8", "shasum": "" }, "require": { @@ -7468,7 +4725,6 @@ }, "require-dev": { "composer/composer": "^2.1.14", - "composer/semver": "^3.4", "dealerdirect/phpcodesniffer-composer-installer": "^1.0", "php-parallel-lint/php-parallel-lint": "^1.1", "phpstan/phpstan-strict-rules": "^2.0", @@ -7507,86 +4763,9 @@ ], "support": { "issues": "https://github.com/szepeviktor/phpstan-wordpress/issues", - "source": "https://github.com/szepeviktor/phpstan-wordpress/tree/2.x" + "source": "https://github.com/szepeviktor/phpstan-wordpress/tree/v2.0.2" }, - "time": "2025-09-14T02:58:22+00:00" - }, - { - "name": "vincentlanglet/twig-cs-fixer", - "version": "3.11.0", - "source": { - "type": "git", - "url": "https://github.com/VincentLanglet/Twig-CS-Fixer.git", - "reference": "866af065fd09980b6390ee5c69e45b08053101e8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/VincentLanglet/Twig-CS-Fixer/zipball/866af065fd09980b6390ee5c69e45b08053101e8", - "reference": "866af065fd09980b6390ee5c69e45b08053101e8", - "shasum": "" - }, - "require": { - "composer-runtime-api": "^2.0.0", - "ext-ctype": "*", - "ext-json": "*", - "php": ">=8.0", - "symfony/console": "^5.4.9 || ^6.4 || ^7.0 || ^8.0", - "symfony/filesystem": "^5.4 || ^6.4 || ^7.0 || ^8.0", - "symfony/finder": "^5.4 || ^6.4 || ^7.0 || ^8.0", - "symfony/string": "^5.4.42 || ^6.4.10 || ~7.0.10 || ^7.1.3 || ^8.0", - "twig/twig": "^3.4", - "webmozart/assert": "^1.10" - }, - "require-dev": { - "composer/semver": "^3.2.0", - "dereuromark/composer-prefer-lowest": "^0.1.10", - "ergebnis/composer-normalize": "^2.29", - "friendsofphp/php-cs-fixer": "^3.13.0", - "infection/infection": "^0.26.16 || ^0.29.14", - "phpstan/phpstan": "^2.0", - "phpstan/phpstan-phpunit": "^2.0", - "phpstan/phpstan-strict-rules": "^2.0", - "phpstan/phpstan-symfony": "^2.0", - "phpstan/phpstan-webmozart-assert": "^2.0", - "phpunit/phpunit": "^9.5.26 || ^11.5.18 || ^12.1.3", - "rector/rector": "^2.0.0", - "shipmonk/composer-dependency-analyser": "^1.6", - "symfony/process": "^5.4 || ^6.4 || ^7.0 || ^8.0", - "symfony/twig-bridge": "^5.4 || ^6.4 || ^7.0 || ^8.0", - "symfony/ux-twig-component": "^2.2.0", - "twig/cache-extra": "^3.2" - }, - "bin": [ - "bin/twig-cs-fixer" - ], - "type": "coding-standard", - "autoload": { - "psr-4": { - "TwigCsFixer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Vincent Langlet" - } - ], - "description": "A tool to automatically fix Twig code style", - "homepage": "https://github.com/VincentLanglet/Twig-CS-Fixer", - "support": { - "issues": "https://github.com/VincentLanglet/Twig-CS-Fixer/issues", - "source": "https://github.com/VincentLanglet/Twig-CS-Fixer/tree/3.11.0" - }, - "funding": [ - { - "url": "https://github.com/VincentLanglet", - "type": "github" - } - ], - "time": "2025-11-24T18:13:18+00:00" + "time": "2025-02-12T18:43:37+00:00" } ], "aliases": [], @@ -7598,7 +4777,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": ">=8.4" + "php": ">=8.2" }, "platform-dev": {}, "plugin-api-version": "2.6.0" diff --git a/config/application.php b/config/application.php index b025742c..ea4b10a8 100755 --- a/config/application.php +++ b/config/application.php @@ -1,5 +1,4 @@ load(); + $dotenv->load(); - $dotenv->required(['WP_HOME', 'WP_SITEURL']); - if (!env('DATABASE_URL')) { - $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD']); - } + $dotenv->required(["WP_HOME", "WP_SITEURL"]); + if (!env("DATABASE_URL")) { + $dotenv->required(["DB_NAME", "DB_USER", "DB_PASSWORD"]); + } } -/* +/** * Set up our global environment constant and load its config first * Default: production */ -\define('WP_ENV', env('WP_ENV') ?: 'production'); +define("WP_ENV", env("WP_ENV") ?: "production"); -// Infer WP_ENVIRONMENT_TYPE based on WP_ENV -if (!env('WP_ENVIRONMENT_TYPE') && \in_array(WP_ENV, ['production', 'staging', 'development', 'local'], true)) { - Config::define('WP_ENVIRONMENT_TYPE', WP_ENV); +/** + * Infer WP_ENVIRONMENT_TYPE based on WP_ENV + */ +if (!env("WP_ENVIRONMENT_TYPE") && in_array(WP_ENV, ["production", "staging", "development", "local"])) { + Config::define("WP_ENVIRONMENT_TYPE", WP_ENV); } -// URLs -Config::define('WP_HOME', env('WP_HOME')); -Config::define('WP_SITEURL', env('WP_SITEURL')); +/** + * URLs + */ +Config::define("WP_HOME", env("WP_HOME")); +Config::define("WP_SITEURL", env("WP_SITEURL")); -// Custom Content Directory -Config::define('CONTENT_DIR', '/app'); -Config::define('WP_CONTENT_DIR', $webroot_dir . Config::get('CONTENT_DIR')); -Config::define('WP_CONTENT_URL', Config::get('WP_HOME') . Config::get('CONTENT_DIR')); +/** + * Custom Content Directory + */ +Config::define("CONTENT_DIR", "/app"); +Config::define("WP_CONTENT_DIR", $webroot_dir . Config::get("CONTENT_DIR")); +Config::define("WP_CONTENT_URL", Config::get("WP_HOME") . Config::get("CONTENT_DIR")); -// DB settings -if (env('DB_SSL')) { - Config::define('MYSQL_CLIENT_FLAGS', \MYSQLI_CLIENT_SSL); +/** + * DB settings + */ +if (env("DB_SSL")) { + Config::define("MYSQL_CLIENT_FLAGS", MYSQLI_CLIENT_SSL); } -Config::define('DB_NAME', env('DB_NAME')); -Config::define('DB_USER', env('DB_USER')); -Config::define('DB_PASSWORD', env('DB_PASSWORD')); -Config::define('DB_HOST', env('DB_HOST') ?: 'localhost'); -Config::define('DB_CHARSET', 'utf8mb4'); -Config::define('DB_COLLATE', ''); -$table_prefix = env('DB_PREFIX') ?: 'wp_'; +Config::define("DB_NAME", env("DB_NAME")); +Config::define("DB_USER", env("DB_USER")); +Config::define("DB_PASSWORD", env("DB_PASSWORD")); +Config::define("DB_HOST", env("DB_HOST") ?: "localhost"); +Config::define("DB_CHARSET", "utf8mb4"); +Config::define("DB_COLLATE", ""); +$table_prefix = env("DB_PREFIX") ?: "wp_"; -if (env('DATABASE_URL')) { - $dsn = (object) parse_url(env('DATABASE_URL')); +if (env("DATABASE_URL")) { + $dsn = (object) parse_url(env("DATABASE_URL")); - Config::define('DB_NAME', mb_substr($dsn->path, 1)); - Config::define('DB_USER', $dsn->user); - Config::define('DB_PASSWORD', $dsn->pass ?? null); - Config::define('DB_HOST', isset($dsn->port) ? "{$dsn->host}:{$dsn->port}" : $dsn->host); + Config::define("DB_NAME", substr($dsn->path, 1)); + Config::define("DB_USER", $dsn->user); + Config::define("DB_PASSWORD", isset($dsn->pass) ? $dsn->pass : null); + Config::define("DB_HOST", isset($dsn->port) ? "{$dsn->host}:{$dsn->port}" : $dsn->host); } -// Authentication Unique Keys and Salts -Config::define('AUTH_KEY', env('AUTH_KEY')); -Config::define('SECURE_AUTH_KEY', env('SECURE_AUTH_KEY')); -Config::define('LOGGED_IN_KEY', env('LOGGED_IN_KEY')); -Config::define('NONCE_KEY', env('NONCE_KEY')); -Config::define('AUTH_SALT', env('AUTH_SALT')); -Config::define('SECURE_AUTH_SALT', env('SECURE_AUTH_SALT')); -Config::define('LOGGED_IN_SALT', env('LOGGED_IN_SALT')); -Config::define('NONCE_SALT', env('NONCE_SALT')); +/** + * Authentication Unique Keys and Salts + */ +Config::define("AUTH_KEY", env("AUTH_KEY")); +Config::define("SECURE_AUTH_KEY", env("SECURE_AUTH_KEY")); +Config::define("LOGGED_IN_KEY", env("LOGGED_IN_KEY")); +Config::define("NONCE_KEY", env("NONCE_KEY")); +Config::define("AUTH_SALT", env("AUTH_SALT")); +Config::define("SECURE_AUTH_SALT", env("SECURE_AUTH_SALT")); +Config::define("LOGGED_IN_SALT", env("LOGGED_IN_SALT")); +Config::define("NONCE_SALT", env("NONCE_SALT")); -// Custom Settings -Config::define('AUTOMATIC_UPDATER_DISABLED', true); -Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false); +/** + * Custom Settings + */ +Config::define("AUTOMATIC_UPDATER_DISABLED", true); +Config::define("DISABLE_WP_CRON", env("DISABLE_WP_CRON") ?: false); // Disable the plugin and theme file editor in the admin -Config::define('DISALLOW_FILE_EDIT', true); +Config::define("DISALLOW_FILE_EDIT", true); // Disable plugin and theme updates and installation from the admin -Config::define('DISALLOW_FILE_MODS', true); +Config::define("DISALLOW_FILE_MODS", true); // Limit the number of post revisions -Config::define('WP_POST_REVISIONS', env('WP_POST_REVISIONS') ?? true); +Config::define("WP_POST_REVISIONS", env("WP_POST_REVISIONS") ?? true); -// Debugging Settings -Config::define('WP_DEBUG_DISPLAY', false); -Config::define('WP_DEBUG_LOG', false); -Config::define('SCRIPT_DEBUG', false); -ini_set('display_errors', '0'); +/** + * Debugging Settings + */ +Config::define("WP_DEBUG_DISPLAY", false); +Config::define("WP_DEBUG_LOG", false); +Config::define("SCRIPT_DEBUG", false); +ini_set("display_errors", "0"); -// Plugins -Config::define('WPMU_PLUGIN_DIR', Config::get('WP_CONTENT_DIR') . '/mu-plugins'); -Config::define('WP_PLUGIN_DIR', Config::get('WP_CONTENT_DIR') . '/plugins'); +/** + * Plugins + */ +Config::define("WPMU_PLUGIN_DIR", Config::get("WP_CONTENT_DIR") . "/mu-plugins"); +Config::define("WP_PLUGIN_DIR", Config::get("WP_CONTENT_DIR") . "/plugins"); -/* +/** * Allow WordPress to detect HTTPS when used behind a reverse proxy or a load balancer * See https://codex.wordpress.org/Function_Reference/is_ssl#Notes */ -if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && 'https' === $_SERVER['HTTP_X_FORWARDED_PROTO']) { - $_SERVER['HTTPS'] = 'on'; +if (isset($_SERVER["HTTP_X_FORWARDED_PROTO"]) && $_SERVER["HTTP_X_FORWARDED_PROTO"] === "https") { + $_SERVER["HTTPS"] = "on"; } -$env_config = __DIR__ . '/environments/' . WP_ENV . '.php'; +$env_config = __DIR__ . "/environments/" . WP_ENV . ".php"; if (file_exists($env_config)) { - include_once $env_config; + require_once $env_config; } Config::apply(); -// Bootstrap WordPress -if (!\defined('ABSPATH')) { - \define('ABSPATH', $webroot_dir . '/wp/'); +/** + * Bootstrap WordPress + */ +if (!defined("ABSPATH")) { + define("ABSPATH", $webroot_dir . "/wp/"); } diff --git a/config/environments/development.php b/config/environments/development.php index 8ca963a2..f8a43311 100755 --- a/config/environments/development.php +++ b/config/environments/development.php @@ -1,36 +1,35 @@ Gravatar.',0,'1','','comment',0,0), -(2,543,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 09:48:32','2024-11-13 08:48:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(3,544,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 12:45:12','2024-11-13 11:45:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(4,609,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 18:17:59','2024-11-13 17:17:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(5,640,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 19:43:49','2024-11-13 18:43:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(6,657,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-14 11:55:59','2024-11-14 10:55:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(7,678,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-16 19:45:11','2024-11-16 18:45:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(8,687,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 10:44:59','2024-11-17 09:44:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(9,701,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:10:45','2024-11-17 10:10:45','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(10,706,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:23:11','2024-11-17 10:23:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(11,777,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 17:12:14','2024-11-21 16:12:14','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(12,782,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 23:23:47','2024-11-21 22:23:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(13,784,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 15:12:26','2024-11-22 14:12:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(14,785,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 18:37:30','2024-11-22 17:37:30','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(15,786,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 19:24:28','2024-11-22 18:24:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(16,838,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 08:58:17','2024-11-25 07:58:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(17,850,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 12:20:02','2024-11-25 11:20:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(18,854,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 18:18:15','2024-11-25 17:18:15','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(19,862,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 16:42:54','2024-11-28 15:42:54','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(20,861,'gcch','contact@gcch.fr','','','2024-11-28 18:00:31','2024-11-28 17:00:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(21,863,'gcch','contact@gcch.fr','','','2024-11-28 18:14:12','2024-11-28 17:14:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(22,863,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 20:33:49','2024-11-28 19:33:49','Order status changed from trash to Processing.',0,'1','WooCommerce','order_note',0,0), -(23,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), -(24,863,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), -(25,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:39','2024-11-28 19:40:39','Order status changed from On hold to Pending payment.',0,'1','WooCommerce','order_note',0,0), -(26,866,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 10:07:40','2024-11-29 09:07:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(27,868,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 18:26:38','2024-11-29 17:26:38','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(28,869,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 11:06:46','2024-12-02 10:06:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(29,871,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 17:34:12','2024-12-02 16:34:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(30,872,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 18:04:43','2024-12-03 17:04:43','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(31,873,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 23:55:58','2024-12-03 22:55:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(32,875,'gcch','contact@gcch.fr','','','2024-12-04 00:15:44','2024-12-03 23:15:44','Coupon applied: "zzzzzz".',0,'1','WooCommerce','order_note',0,0), -(33,878,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 14:10:02','2024-12-06 13:10:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(34,879,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 15:22:12','2024-12-06 14:22:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(35,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-12 17:59:06','2024-12-12 16:59:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(36,879,'gcch','contact@gcch.fr','','','2024-12-12 22:43:43','2024-12-12 21:43:43','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(37,878,'gcch','contact@gcch.fr','','','2024-12-12 23:07:34','2024-12-12 22:07:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(38,881,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-13 09:39:25','2024-12-13 08:39:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(39,884,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-14 11:10:27','2024-12-14 10:10:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(40,878,'gcch','contact@gcch.fr','','','2024-12-15 10:35:42','2024-12-15 09:35:42','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0), -(41,880,'gcch','contact@gcch.fr','','','2024-12-15 10:59:40','2024-12-15 09:59:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(42,885,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-16 10:17:25','2024-12-16 09:17:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(43,884,'gcch','contact@gcch.fr','','','2024-12-16 15:13:02','2024-12-16 14:13:02','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(44,881,'gcch','contact@gcch.fr','','','2024-12-16 15:13:35','2024-12-16 14:13:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(45,886,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-17 09:40:36','2024-12-17 08:40:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(46,887,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-18 16:14:07','2024-12-18 15:14:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(47,886,'gcch','contact@gcch.fr','','','2024-12-18 18:16:41','2024-12-18 17:16:41','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(48,885,'gcch','contact@gcch.fr','','','2024-12-18 18:19:20','2024-12-18 17:19:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(49,888,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-19 10:09:28','2024-12-19 09:09:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(50,888,'gcch','contact@gcch.fr','','','2024-12-20 19:55:35','2024-12-20 18:55:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(51,889,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-26 13:41:16','2024-12-26 12:41:16','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(52,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-30 11:40:43','2024-12-30 10:40:43','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), -(53,889,'gcch','contact@gcch.fr','','','2024-12-31 12:59:04','2024-12-31 11:59:04','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(54,887,'gcch','contact@gcch.fr','','','2024-12-31 12:59:53','2024-12-31 11:59:53','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(55,894,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-03 10:04:36','2025-01-03 09:04:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(56,894,'gcch','contact@gcch.fr','','','2025-01-07 15:56:35','2025-01-07 14:56:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(57,895,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-09 13:03:17','2025-01-09 12:03:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(58,895,'gcch','contact@gcch.fr','','','2025-01-14 20:47:46','2025-01-14 19:47:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(59,884,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-23 22:51:50','2025-01-23 21:51:50','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), -(60,897,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-29 11:33:02','2025-01-29 10:33:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(61,899,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-30 09:57:27','2025-01-30 08:57:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(62,897,'gcch','contact@gcch.fr','','','2025-02-03 18:36:20','2025-02-03 17:36:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(63,899,'gcch','contact@gcch.fr','','','2025-02-03 18:37:03','2025-02-03 17:37:03','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(64,901,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-23 18:08:48','2025-02-23 17:08:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(65,903,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-26 13:53:34','2025-02-26 12:53:34','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(66,903,'gcch','contact@gcch.fr','','','2025-03-01 09:14:28','2025-03-01 08:14:28','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(67,905,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 11:46:58','2025-03-03 10:46:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(68,906,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 12:11:31','2025-03-03 11:11:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(69,907,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-05 12:05:44','2025-03-05 11:05:44','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(70,905,'gcch','contact@gcch.fr','','','2025-03-06 09:24:34','2025-03-06 08:24:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(71,906,'gcch','contact@gcch.fr','','','2025-03-06 09:25:37','2025-03-06 08:25:37','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(72,907,'gcch','contact@gcch.fr','','','2025-03-18 10:40:40','2025-03-18 09:40:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(73,908,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-23 22:41:40','2025-03-23 21:41:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(74,908,'gcch','contact@gcch.fr','','','2025-04-04 08:41:40','2025-04-04 06:41:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(75,910,'WooCommerce','woocommerce@haikuatelier.com','','','2025-04-08 13:45:10','2025-04-08 11:45:10','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(76,912,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 11:50:58','2025-05-09 09:50:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(77,921,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 21:57:36','2025-05-09 19:57:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(78,910,'gcch','contact@gcch.fr','','','2025-05-11 15:35:33','2025-05-11 13:35:33','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(79,912,'gcch','contact@gcch.fr','','','2025-05-16 07:54:01','2025-05-16 05:54:01','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(80,921,'gcch','contact@gcch.fr','','','2025-05-16 07:54:27','2025-05-16 05:54:27','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(81,922,'gcch','contact@gcch.fr','','','2025-05-16 07:54:37','2025-05-16 05:54:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(82,922,'gcch','contact@gcch.fr','','','2025-05-16 07:55:05','2025-05-16 05:55:05','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(83,924,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-05 09:45:48','2025-06-05 07:45:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(84,924,'gcch','contact@gcch.fr','','','2025-06-09 12:59:57','2025-06-09 10:59:57','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(85,997,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-21 11:56:06','2025-06-21 09:56:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0); -/*!40000 ALTER TABLE `haikuwp_comments` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_links` --- - -DROP TABLE IF EXISTS `haikuwp_links`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_links` ( - `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `link_url` varchar(255) NOT NULL DEFAULT '', - `link_name` varchar(255) NOT NULL DEFAULT '', - `link_image` varchar(255) NOT NULL DEFAULT '', - `link_target` varchar(25) NOT NULL DEFAULT '', - `link_description` varchar(255) NOT NULL DEFAULT '', - `link_visible` varchar(20) NOT NULL DEFAULT 'Y', - `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, - `link_rating` int(11) NOT NULL DEFAULT 0, - `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `link_rel` varchar(255) NOT NULL DEFAULT '', - `link_notes` mediumtext NOT NULL, - `link_rss` varchar(255) NOT NULL DEFAULT '', - PRIMARY KEY (`link_id`), - KEY `link_visible` (`link_visible`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_links` --- - -LOCK TABLES `haikuwp_links` WRITE; -/*!40000 ALTER TABLE `haikuwp_links` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_links` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_mclean_refs` --- - -DROP TABLE IF EXISTS `haikuwp_mclean_refs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_mclean_refs` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `mediaId` bigint(20) DEFAULT NULL, - `mediaUrl` tinytext DEFAULT NULL, - `originType` tinytext NOT NULL, - `parentId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_mclean_refs` --- - -LOCK TABLES `haikuwp_mclean_refs` WRITE; -/*!40000 ALTER TABLE `haikuwp_mclean_refs` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_mclean_refs` VALUES -(1,506,NULL,'WOOCOOMMERCE (ID)',NULL), -(2,81,NULL,'META (ID) [72]',NULL), -(3,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [72]',NULL), -(4,420,NULL,'META (ID) [86]',NULL), -(5,110,NULL,'META (ID) [102]',NULL), -(6,121,NULL,'META (ID) [113]',NULL), -(7,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [113]',NULL), -(8,219,NULL,'META (ID) [123]',NULL), -(9,141,NULL,'META (ID) [133]',NULL), -(10,152,NULL,'META (ID) [144]',NULL), -(11,163,NULL,'META (ID) [155]',NULL), -(12,176,NULL,'META (ID) [168]',NULL), -(13,564,NULL,'META (ID) [183]',NULL), -(14,206,NULL,'META (ID) [202]',NULL), -(15,568,NULL,'META (ID) [213]',NULL), -(16,604,NULL,'META (ID) [220]',NULL), -(17,606,NULL,'META (ID) [226]',NULL), -(18,668,NULL,'META (ID) [232]',NULL), -(19,243,NULL,'META (ID) [240]',NULL), -(20,249,NULL,'META (ID) [246]',NULL), -(21,601,NULL,'META (ID) [251]',NULL), -(22,259,NULL,'META (ID) [258]',NULL), -(23,262,NULL,'META (ID) [261]',NULL), -(24,600,NULL,'META (ID) [263]',NULL), -(25,603,NULL,'META (ID) [268]',NULL), -(26,602,NULL,'META (ID) [271]',NULL), -(27,275,NULL,'META (ID) [274]',NULL), -(28,280,NULL,'META (ID) [276]',NULL), -(29,283,NULL,'META (ID) [282]',NULL), -(30,286,NULL,'META (ID) [285]',NULL), -(31,289,NULL,'META (ID) [288]',NULL), -(32,292,NULL,'META (ID) [291]',NULL), -(33,310,NULL,'META (ID) [306]',NULL), -(34,316,NULL,'META (ID) [312]',NULL), -(35,503,NULL,'META (ID) [318]',NULL), -(36,326,NULL,'META (ID) [325]',NULL), -(37,329,NULL,'META (ID) [328]',NULL), -(38,332,NULL,'META (ID) [331]',NULL), -(39,336,NULL,'META (ID) [335]',NULL), -(40,339,NULL,'META (ID) [338]',NULL), -(41,559,NULL,'META (ID) [342]',NULL), -(42,360,NULL,'META (ID) [356]',NULL), -(43,369,NULL,'META (ID) [365]',NULL), -(44,375,NULL,'META (ID) [372]',NULL), -(45,378,NULL,'META (ID) [377]',NULL), -(46,382,NULL,'META (ID) [381]',NULL), -(47,486,NULL,'META (ID) [385]',NULL), -(48,396,NULL,'META (ID) [393]',NULL), -(49,399,NULL,'META (ID) [398]',NULL), -(50,403,NULL,'META (ID) [402]',NULL), -(51,407,NULL,'META (ID) [406]',NULL), -(52,431,NULL,'META (ID) [430]',NULL), -(53,475,NULL,'META (ID) [433]',NULL), -(54,436,NULL,'META (ID) [435]',NULL), -(55,449,NULL,'META (ID) [447]',NULL), -(56,482,NULL,'META (ID) [481]',NULL), -(57,491,NULL,'META (ID) [490]',NULL), -(58,500,NULL,'META (ID) [496]',NULL), -(59,516,NULL,'META (ID) [515]',NULL), -(60,524,NULL,'META (ID) [521]',NULL), -(61,536,NULL,'META (ID) [535]',NULL), -(62,547,NULL,'META (ID) [545]',NULL), -(63,665,NULL,'META (ID) [554]',NULL), -(64,575,NULL,'META (ID) [572]',NULL), -(65,598,NULL,'META (ID) [589]',NULL), -(66,611,NULL,'META (ID) [610]',NULL), -(67,621,NULL,'META (ID) [613]',NULL), -(68,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [613]',NULL), -(69,634,NULL,'META (ID) [625]',NULL), -(70,176,NULL,'META (ID) [200]',NULL), -(71,178,NULL,'META (ID) [201]',NULL), -(72,243,NULL,'META (ID) [241]',NULL), -(73,249,NULL,'META (ID) [247]',NULL), -(74,475,NULL,'META (ID) [478]',NULL), -(75,476,NULL,'META (ID) [479]',NULL), -(76,477,NULL,'META (ID) [480]',NULL); -/*!40000 ALTER TABLE `haikuwp_mclean_refs` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_mclean_scan` --- - -DROP TABLE IF EXISTS `haikuwp_mclean_scan`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_mclean_scan` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `type` tinyint(1) NOT NULL, - `postId` bigint(20) DEFAULT NULL, - `path` tinytext DEFAULT NULL, - `size` int(9) DEFAULT NULL, - `ignored` tinyint(1) NOT NULL DEFAULT 0, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `issue` tinytext NOT NULL, - `parentId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `IgnoredIndex` (`ignored`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_mclean_scan` --- - -LOCK TABLES `haikuwp_mclean_scan` WRITE; -/*!40000 ALTER TABLE `haikuwp_mclean_scan` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_mclean_scan` VALUES -(1,'2024-11-15 17:19:13',1,100,'2024/09/HADOU-B-mix.jpg (+ 2 files)',633426,0,0,'NO_CONTENT',NULL), -(2,'2024-11-15 17:19:13',1,101,'2024/09/HADOU-BKIGEN-Bo.jpg (+ 2 files)',992102,0,0,'NO_CONTENT',NULL), -(3,'2024-11-15 17:19:13',1,111,'2024/09/IKKAN-B-arg.jpg (+ 2 files)',181582,0,0,'NO_CONTENT',NULL), -(4,'2024-11-15 17:19:13',1,112,'2024/09/IKKAN-BaKIGEN-Ba.jpg (+ 2 files)',474986,0,0,'NO_CONTENT',NULL), -(5,'2024-11-15 17:19:13',1,122,'2024/09/IKKAN-B-g.jpg (+ 1 files)',575848,0,0,'NO_CONTENT',NULL), -(6,'2024-11-15 17:19:13',1,132,'2024/09/DSC9928.jpg (+ 2 files)',659968,0,0,'NO_CONTENT',NULL), -(7,'2024-11-15 17:19:13',1,142,'2024/09/DSC9269.jpg (+ 2 files)',461644,0,0,'NO_CONTENT',NULL), -(8,'2024-11-15 17:19:13',1,143,'2024/09/DSC9148.jpg (+ 2 files)',432058,0,0,'NO_CONTENT',NULL), -(9,'2024-11-15 17:19:13',1,153,'2024/10/KISHOU-B-arg-1.jpg (+ 2 files)',159416,0,0,'NO_CONTENT',NULL), -(10,'2024-11-15 17:19:13',1,154,'2024/10/KIGEN-BaIKKANBa.jpg (+ 2 files)',456438,0,0,'NO_CONTENT',NULL), -(11,'2024-11-15 17:19:13',1,164,'2024/10/KISHOU-B-vrm-1.jpg (+ 2 files)',252118,0,0,'NO_CONTENT',NULL), -(12,'2024-11-15 17:19:13',1,165,'2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg (+ 2 files)',524168,0,0,'NO_CONTENT',NULL), -(13,'2024-11-15 17:19:13',1,166,'2024/09/DSC9760.jpg (+ 2 files)',705900,0,0,'NO_CONTENT',NULL), -(14,'2024-11-15 17:19:13',1,167,'2024/09/DSC9339.jpg (+ 2 files)',515504,0,0,'NO_CONTENT',NULL), -(15,'2024-11-15 17:19:13',1,177,'2024/10/ROKKU-B-malachite-1.jpg (+ 2 files)',171466,0,0,'NO_CONTENT',NULL), -(16,'2024-11-15 17:19:13',1,179,'2024/10/ROKKU-B-tigereye-1.jpg (+ 2 files)',175398,0,0,'NO_CONTENT',NULL), -(17,'2024-11-15 17:19:13',1,180,'2024/10/DSC9710.jpg (+ 2 files)',843748,0,0,'NO_CONTENT',NULL), -(18,'2024-11-15 17:19:13',1,182,'2024/10/DSC9190.jpg (+ 2 files)',459310,0,0,'NO_CONTENT',NULL), -(19,'2024-11-15 17:19:13',1,199,'2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg (+ 1 files)',236038,0,0,'NO_CONTENT',NULL), -(20,'2024-11-15 17:19:13',1,207,'2024/10/PIASU-BO-1.jpg (+ 2 files)',675740,0,0,'NO_CONTENT',NULL), -(21,'2024-11-15 17:19:13',1,212,'2024/10/PIASU-BO-2.jpg (+ 2 files)',374094,0,0,'NO_CONTENT',NULL), -(22,'2024-11-15 17:19:13',1,225,'2024/10/TAMANORI-BO-s-1.jpg (+ 2 files)',337094,0,0,'NO_CONTENT',NULL), -(23,'2024-11-15 17:19:13',1,231,'2024/10/TAMANORI-BO-g-1.jpg (+ 2 files)',376868,0,0,'NO_CONTENT',NULL), -(24,'2024-11-15 17:19:13',1,237,'2024/10/HADOU-BR.jpg (+ 2 files)',1045562,0,0,'NO_CONTENT',NULL), -(25,'2024-11-15 17:19:13',1,244,'2024/10/IKKAN-BR-s.jpg (+ 2 files)',877486,0,0,'NO_CONTENT',NULL), -(26,'2024-11-15 17:19:13',1,245,'2024/10/IKKAN-BR-s-1.jpg (+ 2 files)',1073188,0,0,'NO_CONTENT',NULL), -(27,'2024-11-15 17:19:13',1,250,'2024/10/IKKAN-BR-g.jpg (+ 2 files)',374178,0,0,'NO_CONTENT',NULL), -(28,'2024-11-15 17:19:13',1,255,'2024/10/TANEMAKI-BR-1.jpg (+ 2 files)',1028916,0,0,'NO_CONTENT',NULL), -(29,'2024-11-15 17:19:13',1,260,'2024/10/DSC9225.jpg (+ 2 files)',696974,0,0,'NO_CONTENT',NULL), -(30,'2024-11-15 17:19:13',1,265,'2024/10/IKKAN-C.jpg (+ 2 files)',1066054,0,0,'NO_CONTENT',NULL), -(31,'2024-11-15 17:19:13',1,266,'2024/10/IKKAN-C-1.jpg (+ 1 files)',554660,0,0,'NO_CONTENT',NULL), -(32,'2024-11-15 17:19:13',1,267,'2024/10/IKKAN-C-2.jpg (+ 2 files)',1012194,0,0,'NO_CONTENT',NULL), -(33,'2024-11-15 17:19:13',1,270,'2024/10/PIASU-C-arg-opti.jpg (+ 2 files)',532206,0,0,'NO_CONTENT',NULL), -(34,'2024-11-15 17:19:13',1,273,'2024/10/TANEMAKI-C.jpg (+ 2 files)',997056,0,0,'NO_CONTENT',NULL), -(35,'2024-11-15 17:19:13',1,281,'2024/10/HADOU-CR-s.jpg (+ 2 files)',965156,0,0,'NO_CONTENT',NULL), -(36,'2024-11-15 17:19:13',1,284,'2024/10/HADOU-CR-g.jpg (+ 1 files)',325294,0,0,'NO_CONTENT',NULL), -(37,'2024-11-15 17:19:13',1,287,'2024/10/HATTARI-CR1-s-1.jpg (+ 2 files)',647238,0,0,'NO_CONTENT',NULL), -(38,'2024-11-15 17:19:13',1,290,'2024/10/DSC9336.jpg (+ 2 files)',561068,0,0,'NO_CONTENT',NULL), -(39,'2024-11-15 17:19:13',1,293,'2024/10/HATTARI-CR2.jpg (+ 2 files)',535282,0,0,'NO_CONTENT',NULL), -(40,'2024-11-15 17:19:13',1,311,'2024/10/DSC9378.jpg (+ 2 files)',541902,0,0,'NO_CONTENT',NULL), -(41,'2024-11-15 17:19:13',1,317,'2024/10/TAMANORI-CR2-vrm-1.jpg (+ 1 files)',408918,0,0,'NO_CONTENT',NULL), -(42,'2024-11-15 17:19:13',1,323,'2024/10/FUYOU-CR.jpg (+ 1 files)',546040,0,0,'NO_CONTENT',NULL), -(43,'2024-11-15 17:19:13',1,324,'2024/10/DSC9542.jpg (+ 2 files)',876338,0,0,'NO_CONTENT',NULL), -(44,'2024-11-15 17:19:13',1,327,'2024/10/HADOU-EC.jpg (+ 2 files)',711176,0,0,'NO_CONTENT',NULL), -(45,'2024-11-15 17:19:13',1,330,'2024/10/HADOU-EC-vrm-1.jpg (+ 2 files)',447956,0,0,'NO_CONTENT',NULL), -(46,'2024-11-15 17:19:13',1,334,'2024/10/HATTARI-EC-arg-1.jpg (+ 2 files)',369024,0,0,'NO_CONTENT',NULL), -(47,'2024-11-15 17:19:13',1,337,'2024/10/DSC9472.jpg (+ 2 files)',713526,0,0,'NO_CONTENT',NULL), -(48,'2024-11-15 17:19:13',1,340,'2024/10/PIASU-BRC-1.jpg (+ 2 files)',474200,0,0,'NO_CONTENT',NULL), -(49,'2024-11-15 17:19:13',1,341,'2024/10/PIASU-BRC-2.jpg (+ 2 files)',652362,0,0,'NO_CONTENT',NULL), -(50,'2024-11-15 17:19:13',1,347,'2024/10/DSC9763.jpg (+ 2 files)',804254,0,0,'NO_CONTENT',NULL), -(51,'2024-11-15 17:19:13',1,348,'2024/10/DSC9781.jpg (+ 1 files)',372455,0,0,'NO_CONTENT',NULL), -(52,'2024-11-15 17:19:13',1,349,'2024/10/DSC9748.jpg (+ 2 files)',842826,0,0,'NO_CONTENT',NULL), -(53,'2024-11-15 17:19:13',1,361,'2024/10/DSC9354.jpg (+ 2 files)',565222,0,0,'NO_CONTENT',NULL), -(54,'2024-11-15 17:19:13',1,376,'2024/10/DSC9300.jpg (+ 2 files)',469948,0,0,'NO_CONTENT',NULL), -(55,'2024-11-15 17:19:13',1,379,'2024/10/DSC9260.jpg (+ 1 files)',232862,0,0,'NO_CONTENT',NULL), -(56,'2024-11-15 17:19:13',1,380,'2024/10/DSC9262.jpg (+ 2 files)',394188,0,0,'NO_CONTENT',NULL), -(57,'2024-11-15 17:19:13',1,383,'2024/10/DSC9772.jpg (+ 1 files)',602490,0,0,'NO_CONTENT',NULL), -(58,'2024-11-15 17:19:13',1,384,'2024/10/DSC9775.jpg (+ 1 files)',559293,0,0,'NO_CONTENT',NULL), -(59,'2024-11-15 17:19:13',1,388,'2024/10/ROKKU-C-arg.jpg (+ 2 files)',656360,0,0,'NO_CONTENT',NULL), -(60,'2024-11-15 17:19:13',1,397,'2024/10/DSC9733.jpg (+ 1 files)',373189,0,0,'NO_CONTENT',NULL), -(61,'2024-11-15 17:19:13',1,400,'2024/10/DSC9723.jpg (+ 2 files)',775076,0,0,'NO_CONTENT',NULL), -(62,'2024-11-15 17:19:13',1,401,'2024/10/DSC9730.jpg (+ 2 files)',776178,0,0,'NO_CONTENT',NULL), -(63,'2024-11-15 17:19:13',1,404,'2024/10/DSC9216.jpg (+ 2 files)',407382,0,0,'NO_CONTENT',NULL), -(64,'2024-11-15 17:19:13',1,405,'2024/10/IMG_9077.jpg (+ 2 files)',493806,0,0,'NO_CONTENT',NULL), -(65,'2024-11-15 17:19:14',1,408,'2024/10/DSC9485.jpg (+ 1 files)',509856,0,0,'NO_CONTENT',NULL), -(66,'2024-11-15 17:19:14',1,409,'2024/10/MUGURA-NAIL-.jpg (+ 2 files)',610030,0,0,'NO_CONTENT',NULL), -(67,'2024-11-15 17:19:14',1,410,'2024/10/MUGURA-FEU-arg.jpg (+ 2 files)',86010,0,0,'NO_CONTENT',NULL), -(68,'2024-11-15 17:19:14',1,411,'2024/09/DSC8400-copie.jpg (+ 2 files)',995626,0,0,'NO_CONTENT',NULL), -(69,'2024-11-15 17:19:14',1,412,'2024/09/HATTARI-B-2-1.jpg (+ 2 files)',1069220,0,0,'NO_CONTENT',NULL), -(70,'2024-11-15 17:19:14',1,419,'2024/09/HATTARI-B-1.jpg (+ 2 files)',1071022,0,0,'NO_CONTENT',NULL), -(71,'2024-11-15 17:19:14',1,424,'2024/10/DSC9376.jpg (+ 2 files)',626712,0,0,'NO_CONTENT',NULL), -(72,'2024-11-15 17:19:14',1,425,'2024/10/DSC9156.jpg (+ 2 files)',821022,0,0,'NO_CONTENT',NULL), -(73,'2024-11-15 17:19:14',1,432,'2024/10/DSC9297.jpg (+ 2 files)',594618,0,0,'NO_CONTENT',NULL), -(74,'2024-11-15 17:19:14',1,437,'2024/10/DSC9781-1.jpg (+ 2 files)',749844,0,0,'NO_CONTENT',NULL), -(75,'2024-11-15 17:19:14',1,440,'2024/09/IMG_1423.jpg (+ 1 files)',539259,0,0,'NO_CONTENT',NULL), -(76,'2024-11-15 17:19:14',1,441,'2024/10/IMG_1428.jpg (+ 1 files)',739647,0,0,'NO_CONTENT',NULL), -(77,'2024-11-15 17:19:14',1,442,'2024/10/IMG_1431.jpg (+ 1 files)',774253,0,0,'NO_CONTENT',NULL), -(78,'2024-11-15 17:19:14',1,443,'2024/10/IMG_1432.jpg (+ 1 files)',886014,0,0,'NO_CONTENT',NULL), -(79,'2024-11-15 17:19:14',1,448,'2024/11/IMG_1473.jpg (+ 1 files)',1448749,0,0,'NO_CONTENT',NULL), -(80,'2024-11-15 17:19:14',1,450,'2024/09/IMG_1478.jpg (+ 1 files)',1770683,0,0,'NO_CONTENT',NULL), -(81,'2024-11-15 17:19:14',1,451,'2024/10/IMG_1493.jpg (+ 1 files)',955698,0,0,'NO_CONTENT',NULL), -(82,'2024-11-15 17:19:14',1,452,'2024/10/IMG_1505.jpg (+ 1 files)',1160791,0,0,'NO_CONTENT',NULL), -(83,'2024-11-15 17:19:14',1,455,'2024/10/IMG_1531.jpg (+ 1 files)',1498668,0,0,'NO_CONTENT',NULL), -(84,'2024-11-15 17:19:14',1,456,'2024/10/IMG_1543.jpg (+ 1 files)',779634,0,0,'NO_CONTENT',NULL), -(85,'2024-11-15 17:19:14',1,457,'2024/10/IMG_1565.jpg (+ 1 files)',569995,0,0,'NO_CONTENT',NULL), -(86,'2024-11-15 17:19:14',1,459,'2024/10/IMG_1586.jpg (+ 1 files)',1749377,0,0,'NO_CONTENT',NULL), -(87,'2024-11-15 17:19:14',1,460,'2024/10/IMG_1588.jpg (+ 1 files)',1183645,0,0,'NO_CONTENT',NULL), -(88,'2024-11-15 17:19:14',1,461,'2024/10/IMG_1600.jpg (+ 1 files)',1339797,0,0,'NO_CONTENT',NULL), -(89,'2024-11-15 17:19:14',1,463,'2024/10/IMG_1638.jpg (+ 1 files)',960703,0,0,'NO_CONTENT',NULL), -(90,'2024-11-15 17:19:14',1,464,'2024/10/IMG_1647.jpg (+ 1 files)',782793,0,0,'NO_CONTENT',NULL), -(91,'2024-11-15 17:19:14',1,465,'2024/10/IMG_1651.jpg (+ 1 files)',1518958,0,0,'NO_CONTENT',NULL), -(92,'2024-11-15 17:19:14',1,468,'2024/10/IMG_1673.jpg (+ 1 files)',1651578,0,0,'NO_CONTENT',NULL), -(93,'2024-11-15 17:19:14',1,469,'2024/10/IMG_1669.jpg (+ 1 files)',1454981,0,0,'NO_CONTENT',NULL), -(94,'2024-11-15 17:19:14',1,470,'2024/10/IMG_1675.jpg (+ 1 files)',228383,0,0,'NO_CONTENT',NULL), -(95,'2024-11-15 17:19:14',1,471,'2024/10/IMG_1680.jpg (+ 1 files)',1422287,0,0,'NO_CONTENT',NULL), -(96,'2024-11-15 17:19:14',1,472,'2024/10/IMG_1746.jpg (+ 1 files)',1224686,0,0,'NO_CONTENT',NULL), -(97,'2024-11-15 17:19:14',1,473,'2024/10/IMG_1747.jpg (+ 1 files)',1254904,0,0,'NO_CONTENT',NULL), -(98,'2024-11-15 17:19:14',1,474,'2024/10/IMG_1748.jpg (+ 1 files)',1443067,0,0,'NO_CONTENT',NULL), -(99,'2024-11-15 17:19:14',1,483,'2024/11/IMG_1619.jpg (+ 1 files)',1626994,0,0,'NO_CONTENT',NULL), -(100,'2024-11-15 17:19:14',1,487,'2024/10/DSC9138.jpg (+ 1 files)',283469,0,0,'NO_CONTENT',NULL), -(101,'2024-11-15 17:19:14',1,488,'2024/10/ROKKU-C-lapis.jpg (+ 1 files)',800553,0,0,'NO_CONTENT',NULL), -(102,'2024-11-15 17:19:14',1,489,'2024/10/ROKKU-C-jaspe.jpg (+ 1 files)',750940,0,0,'NO_CONTENT',NULL), -(103,'2024-11-15 17:19:14',1,492,'2024/11/IMG_1474.jpg (+ 1 files)',1552782,0,0,'NO_CONTENT',NULL), -(104,'2024-11-15 17:19:14',1,501,'2024/11/IMG_1481.jpg (+ 1 files)',1930791,0,0,'NO_CONTENT',NULL), -(105,'2024-11-15 17:19:14',1,502,'2024/11/IMG_1484.jpg (+ 1 files)',547048,0,0,'NO_CONTENT',NULL), -(106,'2024-11-15 17:19:14',1,504,'2024/10/FUYOU-C-1.jpg (+ 1 files)',984668,0,0,'NO_CONTENT',NULL), -(107,'2024-11-15 17:19:14',1,518,'2024/11/BOROBORO-BO1-g-brown.jpg (+ 1 files)',720777,0,0,'NO_CONTENT',NULL), -(108,'2024-11-15 17:19:14',1,526,'2024/11/BOROBORO-BO1-s-green.jpg (+ 1 files)',685626,0,0,'NO_CONTENT',NULL), -(109,'2024-11-15 17:19:14',1,531,'2024/09/DSC9897.jpg (+ 1 files)',1361665,0,0,'NO_CONTENT',NULL), -(110,'2024-11-15 17:19:14',1,537,'2024/11/IMG_1703.jpg (+ 1 files)',1901030,0,0,'NO_CONTENT',NULL), -(111,'2024-11-15 17:19:14',1,538,'2024/11/BOROBORO-BLT-crystal.jpg (+ 1 files)',778439,0,0,'NO_CONTENT',NULL), -(112,'2024-11-15 17:19:14',1,539,'2024/11/IMG_1715.jpg (+ 1 files)',1313772,0,0,'NO_CONTENT',NULL), -(113,'2024-11-15 17:19:14',1,548,'2024/11/IMG_1563.jpg (+ 1 files)',1718895,0,0,'NO_CONTENT',NULL), -(114,'2024-11-15 17:19:14',1,558,'2024/11/DSC9463.jpg (+ 1 files)',1886628,0,0,'NO_CONTENT',NULL), -(115,'2024-11-15 17:19:14',1,576,'2024/11/IMG_1419.jpg (+ 1 files)',566675,0,0,'NO_CONTENT',NULL), -(116,'2024-11-15 17:19:14',1,599,'2024/11/BOROBORO-B-s-1.jpg (+ 1 files)',1671625,0,0,'NO_CONTENT',NULL), -(117,'2024-11-15 17:19:14',1,622,'2024/11/IMG_1504.jpg (+ 1 files)',642992,0,0,'NO_CONTENT',NULL), -(118,'2024-11-15 17:19:14',1,623,'2024/11/IMG_1554.jpg (+ 1 files)',1406586,0,0,'NO_CONTENT',NULL), -(119,'2024-11-15 17:19:14',1,635,'2024/11/IMG_1501.jpg (+ 1 files)',573637,0,0,'NO_CONTENT',NULL), -(120,'2024-11-15 17:19:14',1,636,'2024/11/IMG_1506.jpg (+ 1 files)',1149564,0,0,'NO_CONTENT',NULL), -(121,'2024-11-15 17:19:14',1,644,'2024/10/DSC9341.jpg (+ 1 files)',1492187,0,0,'NO_CONTENT',NULL), -(122,'2024-11-15 17:19:14',1,658,'2024/10/BOROBORO-BOaTANEMAKI-BO1a.jpg (+ 1 files)',1088937,0,0,'NO_CONTENT',NULL), -(123,'2024-11-15 17:19:14',1,659,'2024/09/HADOU-B-opti.jpg (+ 1 files)',0,0,1,'ORPHAN_MEDIA',NULL), -(124,'2024-11-15 17:19:14',1,660,'2024/10/IMG_1442.jpg (+ 1 files)',1029972,0,0,'NO_CONTENT',NULL), -(125,'2024-11-15 17:19:14',1,661,'2024/10/IMG_1454.jpg (+ 1 files)',849459,0,0,'NO_CONTENT',NULL), -(126,'2024-11-15 17:19:14',1,662,'2024/10/IMG_1456.jpg (+ 1 files)',730806,0,0,'NO_CONTENT',NULL), -(127,'2024-11-15 17:19:14',1,663,'2024/11/IMG_1460.jpg (+ 1 files)',98598,0,0,'NO_CONTENT',NULL), -(128,'2024-11-15 17:19:14',1,664,'2024/10/IMG_1512.jpg (+ 1 files)',873482,0,0,'NO_CONTENT',NULL), -(129,'2024-11-15 17:19:14',1,666,'2024/11/IMG_1525.jpg (+ 1 files)',173470,0,0,'NO_CONTENT',NULL), -(130,'2024-11-15 17:19:14',1,667,'2024/11/IMG_1524.jpg (+ 1 files)',172887,0,0,'NO_CONTENT',NULL), -(131,'2024-11-15 17:19:14',1,669,'2024/10/IMG_1528.jpg (+ 1 files)',958548,0,0,'NO_CONTENT',NULL), -(132,'2024-11-15 17:19:14',1,670,'2024/10/IMG_1582.jpg (+ 1 files)',1167334,0,0,'NO_CONTENT',NULL), -(133,'2024-11-15 17:19:14',1,671,'2024/10/IMG_1604.jpg (+ 1 files)',876712,0,0,'NO_CONTENT',NULL), -(134,'2024-11-15 17:19:14',1,672,'2024/10/IMG_1656-1.jpg (+ 1 files)',1095755,0,0,'NO_CONTENT',NULL), -(135,'2024-11-15 17:19:14',1,673,'2024/10/IMG_1657.jpg (+ 1 files)',901473,0,0,'NO_CONTENT',NULL); -/*!40000 ALTER TABLE `haikuwp_mclean_scan` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_options` --- - -DROP TABLE IF EXISTS `haikuwp_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_options` ( - `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `option_name` varchar(191) NOT NULL DEFAULT '', - `option_value` longtext NOT NULL, - `autoload` varchar(20) NOT NULL DEFAULT 'yes', - PRIMARY KEY (`option_id`), - UNIQUE KEY `option_name` (`option_name`), - KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=34083 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_options` --- - -LOCK TABLES `haikuwp_options` WRITE; -/*!40000 ALTER TABLE `haikuwp_options` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_options` VALUES -(1,'cron','a:25:{i:1750685606;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1750685914;a:2:{s:19:\"update_wms_statuses\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:17:\"check_wms_license\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750686774;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1750687839;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750687956;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750687957;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750687967;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750688232;a:1:{s:26:\"rediscache_discard_metrics\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750693974;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750704774;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750709439;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1750709450;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750709453;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750713039;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750714839;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750716000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750716639;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750727832;a:1:{s:45:\"woocommerce_marketplace_cron_fetch_promotions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750745326;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750769584;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750770755;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750770756;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1751227905;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1751979234;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','on'), -(2,'siteurl','https://haikuatelier.fr.ddev.site/wp','on'), -(3,'home','https://haikuatelier.fr.ddev.site/wp','on'), -(4,'blogname','Haiku Atelier','on'), -(5,'blogdescription','Handcrafted, poetic & minimalist silver jewelry.','on'), -(6,'users_can_register','0','on'), -(7,'admin_email','haiku.atelier@gmail.com','on'), -(8,'start_of_week','1','on'), -(9,'use_balanceTags','0','on'), -(10,'use_smilies','1','on'), -(11,'require_name_email','1','on'), -(12,'comments_notify','1','on'), -(13,'posts_per_rss','10','on'), -(14,'rss_use_excerpt','1','on'), -(15,'mailserver_url','mail.example.com','on'), -(16,'mailserver_login','login@example.com','on'), -(17,'mailserver_pass','password','on'), -(18,'mailserver_port','110','on'), -(19,'default_category','1','on'), -(20,'default_comment_status','open','on'), -(21,'default_ping_status','open','on'), -(22,'default_pingback_flag','1','on'), -(23,'posts_per_page','10','on'), -(24,'date_format','Y-m-d','on'), -(25,'time_format','H:i','on'), -(26,'links_updated_date_format','d F Y G\\hi','on'), -(27,'comment_moderation','0','on'), -(28,'moderation_notify','1','on'), -(29,'permalink_structure','/%postname%/','on'), -(31,'hack_file','0','on'), -(32,'blog_charset','UTF-8','on'), -(33,'moderation_keys','','off'), -(34,'active_plugins','a:6:{i:0;s:17:\"falcon/falcon.php\";i:1;s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";i:2;s:27:\"redis-cache/redis-cache.php\";i:3;s:37:\"wc-multishipping/wc-multishipping.php\";i:5;s:27:\"woocommerce/woocommerce.php\";i:7;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','on'), -(35,'category_base','/category','on'), -(36,'ping_sites','http://rpc.pingomatic.com/','on'), -(37,'comment_max_links','2','on'), -(38,'gmt_offset','','on'), -(39,'default_email_category','1','on'), -(40,'recently_edited','','off'), -(41,'template','haiku-atelier-2024','on'), -(42,'stylesheet','haiku-atelier-2024','on'), -(43,'comment_registration','0','on'), -(44,'html_type','text/html','on'), -(45,'use_trackback','0','on'), -(46,'default_role','customer','on'), -(47,'db_version','58975','on'), -(48,'uploads_use_yearmonth_folders','1','on'), -(49,'upload_path','','on'), -(50,'blog_public','1','on'), -(51,'default_link_category','2','on'), -(52,'show_on_front','page','on'), -(53,'tag_base','/tag','on'), -(54,'show_avatars','1','on'), -(55,'avatar_rating','G','on'), -(56,'upload_url_path','','on'), -(57,'thumbnail_size_w','300','on'), -(58,'thumbnail_size_h','300','on'), -(59,'thumbnail_crop','1','on'), -(60,'medium_size_w','9999','on'), -(61,'medium_size_h','9999','on'), -(62,'avatar_default','mystery','on'), -(63,'large_size_w','9999','on'), -(64,'large_size_h','9999','on'), -(65,'image_default_link_type','','on'), -(66,'image_default_size','','on'), -(67,'image_default_align','','on'), -(68,'close_comments_for_old_posts','0','on'), -(69,'close_comments_days_old','14','on'), -(70,'thread_comments','1','on'), -(71,'thread_comments_depth','5','on'), -(72,'page_comments','0','on'), -(73,'comments_per_page','50','on'), -(74,'default_comments_page','newest','on'), -(75,'comment_order','asc','on'), -(76,'sticky_posts','a:0:{}','on'), -(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(80,'uninstall_plugins','a:0:{}','off'), -(81,'timezone_string','Europe/Brussels','on'), -(82,'page_for_posts','0','on'), -(83,'page_on_front','13','on'), -(84,'default_post_format','0','on'), -(85,'link_manager_enabled','0','on'), -(86,'finished_splitting_shared_terms','1','on'), -(87,'site_icon','0','on'), -(88,'medium_large_size_w','768','on'), -(89,'medium_large_size_h','0','on'), -(90,'wp_page_for_privacy_policy','3','on'), -(91,'show_comments_cookies_opt_in','1','on'), -(92,'admin_email_lifespan','1738354239','on'), -(93,'disallowed_keys','','off'), -(94,'comment_previously_approved','1','on'), -(95,'auto_plugin_theme_update_emails','a:0:{}','off'), -(96,'auto_update_core_dev','enabled','on'), -(97,'auto_update_core_minor','enabled','on'), -(98,'auto_update_core_major','enabled','on'), -(99,'wp_force_deactivated_plugins','a:0:{}','off'), -(100,'wp_attachment_pages_enabled','0','on'), -(101,'initial_db_version','57155','on'), -(102,'haikuwp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:93:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}}','auto'), -(103,'fresh_site','0','off'), -(104,'WPLANG','en_GB','auto'), -(105,'user_count','2','off'), -(106,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:159:\"

Articles récents

\";}i:4;a:1:{s:7:\"content\";s:233:\"

Commentaires récents

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:151:\"

Catégories

\";}s:12:\"_multiwidget\";i:1;}','auto'), -(107,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'), -(108,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:1:{s:55:\"bedrock-disallow-indexing/bedrock-disallow-indexing.php\";a:15:{s:4:\"Name\";s:17:\"Disallow Indexing\";s:9:\"PluginURI\";s:25:\"https://roots.io/bedrock/\";s:7:\"Version\";s:5:\"2.0.0\";s:11:\"Description\";s:62:\"Disallow indexing of your site on non-production environments.\";s:6:\"Author\";s:5:\"Roots\";s:9:\"AuthorURI\";s:17:\"https://roots.io/\";s:10:\"TextDomain\";s:5:\"roots\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:17:\"Disallow Indexing\";s:10:\"AuthorName\";s:5:\"Roots\";}}s:5:\"count\";i:1;}','off'), -(109,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(110,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(111,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(112,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(113,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(114,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(115,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(116,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(117,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(118,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(119,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(120,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(121,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(122,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.1\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'), -(127,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1722802261;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'), -(153,'current_theme','','auto'), -(154,'theme_mods_haiku-atelier-2024','a:9:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:14:\"lien_instagram\";s:39:\"https://www.instagram.com/haiku.atelier\";s:26:\"texte_conditions_livraison\";s:450:\"Products will be shipped to you within 14 days after the order has been placed, depending on stock and complexity of production. However, we strive to prepare your order for the quickest delivery possible.\n
    \n
  • Belgium and France: free shipping.
  • \n
  • Worldwide: free shipping on orders above 150€.
  • \n
\nFor return inquiries, please contact us within 14 days after the item\'s reception.\";s:23:\"texte_entretien_produit\";s:404:\"Our jewelry are waterproof but it is preferable to avoid contact with perfume, beauty products, cleaning products, especially for your gold plated pieces.\n\nWipe dry with a soft cloth.\n\nPlease contact us for after sale services. Haiku pieces are guaranteed for a year. We can also repair your pieces after the year guarantee, the cost will depend on each case.\";s:21:\"sample_tinymce_editor\";s:8:\"zozozozo\";s:13:\"lien_facebook\";s:38:\"https://www.facebook.com/haiku.atelier\";s:14:\"lien_pinterest\";s:38:\"https://www.pinterest.com/haikuatelier\";}','on'), -(155,'theme_switched','','auto'), -(163,'finished_updating_comment_type','1','auto'), -(211,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'), -(212,'recently_activated','a:0:{}','off'), -(215,'polylang','a:14:{s:7:\"browser\";b:1;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:1;s:10:\"force_lang\";i:1;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";b:1;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:0:{}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:0:{}s:7:\"version\";s:5:\"3.6.4\";s:16:\"first_activation\";i:1722863554;s:12:\"default_lang\";s:2:\"en\";}','auto'), -(216,'polylang_wpml_strings','a:0:{}','auto'), -(217,'action_scheduler_hybrid_store_demarkation','6','auto'), -(218,'schema-ActionScheduler_StoreSchema','7.0.1722863555','auto'), -(219,'schema-ActionScheduler_LoggerSchema','3.0.1722863555','auto'), -(222,'woocommerce_newly_installed','no','auto'), -(223,'woocommerce_schema_version','920','auto'), -(224,'woocommerce_store_address','','on'), -(225,'woocommerce_store_address_2','','on'), -(226,'woocommerce_store_city','','on'), -(227,'woocommerce_default_country','BE','on'), -(228,'woocommerce_store_postcode','','on'), -(229,'woocommerce_allowed_countries','all','on'), -(230,'woocommerce_all_except_countries','a:0:{}','on'), -(231,'woocommerce_specific_allowed_countries','a:0:{}','on'), -(232,'woocommerce_ship_to_countries','','on'), -(233,'woocommerce_specific_ship_to_countries','a:0:{}','on'), -(234,'woocommerce_default_customer_address','base','on'), -(235,'woocommerce_calc_taxes','no','on'), -(236,'woocommerce_enable_coupons','yes','on'), -(237,'woocommerce_calc_discounts_sequentially','no','off'), -(238,'woocommerce_currency','EUR','on'), -(239,'woocommerce_currency_pos','left_space','on'), -(240,'woocommerce_price_thousand_sep','.','on'), -(241,'woocommerce_price_decimal_sep',',','on'), -(242,'woocommerce_price_num_decimals','2','on'), -(243,'woocommerce_shop_page_id','14','on'), -(244,'woocommerce_cart_redirect_after_add','no','on'), -(245,'woocommerce_enable_ajax_add_to_cart','yes','on'), -(246,'woocommerce_placeholder_image','506','on'), -(247,'woocommerce_weight_unit','kg','on'), -(248,'woocommerce_dimension_unit','cm','on'), -(249,'woocommerce_enable_reviews','no','on'), -(250,'woocommerce_review_rating_verification_label','no','off'), -(251,'woocommerce_review_rating_verification_required','no','off'), -(252,'woocommerce_enable_review_rating','no','on'), -(253,'woocommerce_review_rating_required','no','off'), -(254,'woocommerce_manage_stock','yes','on'), -(255,'woocommerce_hold_stock_minutes','60','off'), -(256,'woocommerce_notify_low_stock','yes','off'), -(257,'woocommerce_notify_no_stock','yes','off'), -(258,'woocommerce_stock_email_recipient','contact@gcch.fr','off'), -(259,'woocommerce_notify_low_stock_amount','2','off'), -(260,'woocommerce_notify_no_stock_amount','0','on'), -(261,'woocommerce_hide_out_of_stock_items','no','on'), -(262,'woocommerce_stock_format','','on'), -(263,'woocommerce_file_download_method','force','off'), -(264,'woocommerce_downloads_redirect_fallback_allowed','no','off'), -(265,'woocommerce_downloads_require_login','no','off'), -(266,'woocommerce_downloads_grant_access_after_payment','yes','off'), -(267,'woocommerce_downloads_deliver_inline','','off'), -(268,'woocommerce_downloads_add_hash_to_filename','yes','on'), -(270,'woocommerce_attribute_lookup_direct_updates','no','on'), -(271,'woocommerce_attribute_lookup_optimized_updates','no','on'), -(272,'woocommerce_product_match_featured_image_by_sku','no','on'), -(273,'woocommerce_prices_include_tax','no','on'), -(274,'woocommerce_tax_based_on','shipping','on'), -(275,'woocommerce_shipping_tax_class','inherit','on'), -(276,'woocommerce_tax_round_at_subtotal','no','on'), -(277,'woocommerce_tax_classes','','on'), -(278,'woocommerce_tax_display_shop','excl','on'), -(279,'woocommerce_tax_display_cart','excl','on'), -(280,'woocommerce_price_display_suffix','','on'), -(281,'woocommerce_tax_total_display','itemized','off'), -(282,'woocommerce_enable_shipping_calc','yes','off'), -(283,'woocommerce_shipping_cost_requires_address','no','on'), -(284,'woocommerce_ship_to_destination','shipping','off'), -(285,'woocommerce_shipping_debug_mode','no','on'), -(286,'woocommerce_enable_guest_checkout','yes','off'), -(287,'woocommerce_enable_checkout_login_reminder','yes','off'), -(288,'woocommerce_enable_signup_and_login_from_checkout','no','off'), -(289,'woocommerce_enable_myaccount_registration','no','off'), -(290,'woocommerce_registration_generate_username','no','off'), -(291,'woocommerce_registration_generate_password','no','off'), -(292,'woocommerce_erasure_request_removes_order_data','yes','off'), -(293,'woocommerce_erasure_request_removes_download_data','yes','off'), -(294,'woocommerce_allow_bulk_remove_personal_data','yes','off'), -(295,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on'), -(296,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on'), -(297,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(298,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(299,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(300,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(301,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(302,'woocommerce_email_from_name','Haiku Atelier','off'), -(303,'woocommerce_email_from_address','haiku.atelier@gmail.com','off'), -(304,'woocommerce_email_header_image','','off'), -(305,'woocommerce_email_footer_text','{site_title}','off'), -(306,'woocommerce_email_base_color','#720eec','off'), -(307,'woocommerce_email_background_color','#f7f7f7','off'), -(308,'woocommerce_email_body_background_color','#ffffff','off'), -(309,'woocommerce_email_text_color','#3c3c3c','off'), -(310,'woocommerce_merchant_email_notifications','no','off'), -(311,'woocommerce_cart_page_id','16','off'), -(312,'woocommerce_checkout_page_id','17','off'), -(313,'woocommerce_myaccount_page_id','15','off'), -(314,'woocommerce_terms_page_id','19','off'), -(315,'woocommerce_checkout_pay_endpoint','order-pay','on'), -(316,'woocommerce_checkout_order_received_endpoint','order-received','on'), -(317,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on'), -(318,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on'), -(319,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on'), -(320,'woocommerce_myaccount_orders_endpoint','orders','on'), -(321,'woocommerce_myaccount_view_order_endpoint','view-order','on'), -(322,'woocommerce_myaccount_downloads_endpoint','downloads','on'), -(323,'woocommerce_myaccount_edit_account_endpoint','edit-account','on'), -(324,'woocommerce_myaccount_edit_address_endpoint','edit-address','on'), -(325,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on'), -(326,'woocommerce_myaccount_lost_password_endpoint','lost-password','on'), -(327,'woocommerce_logout_endpoint','customer-logout','on'), -(328,'woocommerce_api_enabled','no','on'), -(329,'woocommerce_allow_tracking','no','on'), -(330,'woocommerce_show_marketplace_suggestions','no','off'), -(331,'woocommerce_custom_orders_table_enabled','yes','on'), -(332,'woocommerce_analytics_enabled','yes','on'), -(333,'woocommerce_feature_order_attribution_enabled','','on'), -(334,'woocommerce_feature_product_block_editor_enabled','no','on'), -(335,'woocommerce_hpos_fts_index_enabled','no','on'), -(336,'woocommerce_single_image_width','600','on'), -(337,'woocommerce_thumbnail_image_width','300','on'), -(338,'woocommerce_checkout_highlight_required_fields','yes','on'), -(339,'woocommerce_demo_store','no','off'), -(340,'wc_downloads_approved_directories_mode','enabled','auto'), -(341,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','auto'), -(342,'current_theme_supports_woocommerce','yes','auto'), -(343,'woocommerce_queue_flush_rewrite_rules','no','auto'), -(347,'default_product_cat','15','auto'), -(349,'woocommerce_refund_returns_page_id','11','auto'), -(352,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:15:\"contact@gcch.fr\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on'), -(353,'woocommerce_version','9.9.5','auto'), -(354,'woocommerce_db_version','9.9.5','auto'), -(355,'woocommerce_store_id','e041283c-a0c6-45fe-8c78-d326f5284551','auto'), -(356,'woocommerce_admin_install_timestamp','1722863556','auto'), -(357,'woocommerce_inbox_variant_assignment','7','auto'), -(358,'woocommerce_remote_variant_assignment','102','auto'), -(363,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','on'), -(364,'action_scheduler_lock_async-request-runner','6859577ea6d335.57465112|1750685626','no'), -(365,'woocommerce_admin_notices','a:0:{}','auto'), -(366,'wc_blocks_version','11.8.0-dev','auto'), -(367,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'), -(368,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"n9PIFnp4zKp5KnjKvWdyoOort7Umdclh\";}','on'), -(369,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on'), -(370,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(371,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(372,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(373,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(374,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(375,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(376,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(377,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(378,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(379,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(380,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(381,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(382,'widget_polylang','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(391,'wcpay_was_in_use','no','auto'), -(400,'wc_admin_show_legacy_coupon_menu','0','auto'), -(401,'woocommerce_custom_orders_table_created','yes','auto'), -(404,'wc_blocks_db_schema_version','260','auto'), -(405,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','off'), -(414,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1750684380;}','auto'), -(415,'_transient_woocommerce_reports-transient-version','1733494962','on'), -(423,'_transient_product_query-transient-version','1750363871','on'), -(430,'category_children','a:0:{}','auto'), -(433,'pll_dismissed_notices','a:2:{i:0;s:6:\"wizard\";i:1;s:5:\"pllwc\";}','auto'), -(449,'woocommerce_task_list_tracked_completed_tasks','a:5:{i:0;s:17:\"launch-your-store\";i:1;s:8:\"products\";i:2;s:15:\"customize-store\";i:3;s:8:\"shipping\";i:4;s:15:\"review-shipping\";}','auto'), -(450,'woocommerce_onboarding_profile','a:9:{s:15:\"business_choice\";s:18:\"im_already_selling\";s:21:\"selling_online_answer\";s:21:\"yes_im_selling_online\";s:17:\"selling_platforms\";a:1:{i:0;s:3:\"wix\";}s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;s:15:\"arts_and_crafts\";}s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:15:\"contact@gcch.fr\";s:9:\"completed\";b:1;s:23:\"is_plugins_page_skipped\";b:1;}','auto'), -(452,'woocommerce_coming_soon','no','auto'), -(453,'woocommerce_store_pages_only','no','auto'), -(454,'woocommerce_private_link','no','auto'), -(455,'woocommerce_share_key','F7pud5vmFEcHk1bhNgS9GiTlfxeNx7K4','auto'), -(479,'falcon','a:3:{s:8:\"features\";a:39:{i:0;s:12:\"no_gutenberg\";i:1;s:9:\"no_embeds\";i:2;s:11:\"no_comments\";i:3;s:14:\"no_comment_url\";i:4;s:12:\"no_revisions\";i:5;s:13:\"no_self_pings\";i:6;s:10:\"no_privacy\";i:7;s:15:\"no_auto_updates\";i:8;s:17:\"search_posts_only\";i:9;s:12:\"no_texturize\";i:10;s:13:\"no_feed_links\";i:11;s:11:\"no_rsd_link\";i:12;s:19:\"no_wlwmanifest_link\";i:13;s:23:\"no_adjacent_posts_links\";i:14;s:15:\"no_wp_generator\";i:15;s:12:\"no_shortlink\";i:16;s:12:\"no_rest_link\";i:17;s:17:\"no_jquery_migrate\";i:18;s:16:\"schema_less_urls\";i:19;s:31:\"no_recent_comments_widget_style\";i:20;s:12:\"cleanup_menu\";i:21;s:9:\"no_emojis\";i:22;s:18:\"no_image_threshold\";i:23;s:14:\"no_exif_rotate\";i:24;s:22:\"no_admin_email_confirm\";i:25;s:16:\"no_update_emails\";i:26;s:18:\"no_new_user_emails\";i:27;s:24:\"no_password_reset_emails\";i:28;s:20:\"change_default_email\";i:29;s:15:\"login_site_icon\";i:30;s:14:\"no_update_nags\";i:31;s:14:\"no_footer_text\";i:32;s:20:\"no_dashboard_widgets\";i:33;s:10:\"no_wp_logo\";i:34;s:24:\"no_application_passwords\";i:35;s:9:\"no_xmlrpc\";i:36;s:15:\"restrict_upload\";i:37;s:15:\"no_login_errors\";i:38;s:13:\"block_ai_bots\";}s:13:\"default_email\";a:2:{s:9:\"from_name\";s:13:\"Haiku Atelier\";s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";}s:4:\"smtp\";a:5:{s:4:\"host\";s:15:\"smtp.migadu.com\";s:4:\"port\";s:3:\"465\";s:8:\"username\";s:17:\"admin@minima.haus\";s:8:\"password\";s:32:\"ILDwXJpxhfgc0SfEQIUGhHlGmb7KuGkl\";s:10:\"encryption\";s:3:\"tls\";}}','auto'), -(520,'wcpay_welcome_page_viewed_timestamp','1722865333','auto'), -(521,'wcpay_welcome_page_incentives_dismissed','a:1:{i:0;s:32:\"wcpay-promo-2023-action-discount\";}','auto'), -(565,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','on'), -(604,'_transient_product-transient-version','1750363871','on'), -(701,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','auto'), -(706,'_transient_shipping-transient-version','1733267802','on'), -(809,'_transient_pll_languages_list','a:1:{i:0;a:22:{s:4:\"name\";s:7:\"English\";s:4:\"slug\";s:2:\"en\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:16;s:6:\"locale\";s:5:\"en_GB\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:5:\"en-GB\";s:8:\"facebook\";s:5:\"en_GB\";s:8:\"home_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:10:\"search_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:4:\"host\";N;s:13:\"page_on_front\";i:0;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"gb\";s:8:\"flag_url\";s:67:\"https://haikuatelier.fr.ddev.site/app/plugins/polylang/flags/gb.png\";s:4:\"flag\";s:636:\"\"English\"\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:1;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:16;s:16:\"term_taxonomy_id\";i:16;s:5:\"count\";i:7;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:17;s:16:\"term_taxonomy_id\";i:17;s:5:\"count\";i:1;}}}}','on'), -(825,'rewrite_rules','a:192:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:44:\"brand/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:39:\"brand/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:20:\"brand/(.+?)/embed/?$\";s:46:\"index.php?product_brand=$matches[1]&embed=true\";s:32:\"brand/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?product_brand=$matches[1]&paged=$matches[2]\";s:14:\"brand/(.+?)/?$\";s:35:\"index.php?product_brand=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$matches[3]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"collection/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=collection&term=$matches[1]&feed=$matches[2]\";s:46:\"collection/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=collection&term=$matches[1]&feed=$matches[2]\";s:27:\"collection/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=collection&term=$matches[1]&embed=true\";s:39:\"collection/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=collection&term=$matches[1]&paged=$matches[2]\";s:21:\"collection/([^/]+)/?$\";s:46:\"index.php?taxonomy=collection&term=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=13&cpage=$matches[1]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$matches[5]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$matches[4]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:36:\"([^/]+)/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?name=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\"[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','auto'), -(832,'woocommerce_pre_install_woocommerce_payments_promotion_settings','a:1:{s:12:\"is_dismissed\";s:3:\"yes\";}','auto'), -(833,'woocommerce_gateway_order','a:6:{s:19:\"_wc_pes_woopayments\";i:0;s:25:\"_wc_pes_paypal_full_stack\";i:1;s:33:\"_wc_offline_payment_methods_group\";i:2;s:4:\"bacs\";i:3;s:6:\"cheque\";i:4;s:3:\"cod\";i:5;}','auto'), -(840,'_transient_timeout_dirsize_cache','2045680880','off'), -(841,'_transient_dirsize_cache','a:2179:{s:37:\"/var/www/html/web/wp/wp-admin/network\";i:125999;s:40:\"/var/www/html/web/wp/wp-admin/js/widgets\";i:139432;s:32:\"/var/www/html/web/wp/wp-admin/js\";i:1971224;s:34:\"/var/www/html/web/wp/wp-admin/user\";i:3685;s:45:\"/var/www/html/web/wp/wp-admin/css/colors/blue\";i:77778;s:49:\"/var/www/html/web/wp/wp-admin/css/colors/midnight\";i:78486;s:48:\"/var/www/html/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/modern\";i:77989;s:50:\"/var/www/html/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/ocean\";i:75229;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/coffee\";i:75892;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/light\";i:78474;s:40:\"/var/www/html/web/wp/wp-admin/css/colors\";i:643556;s:33:\"/var/www/html/web/wp/wp-admin/css\";i:2542173;s:36:\"/var/www/html/web/wp/wp-admin/images\";i:426821;s:35:\"/var/www/html/web/wp/wp-admin/maint\";i:7592;s:38:\"/var/www/html/web/wp/wp-admin/includes\";i:3068919;s:29:\"/var/www/html/web/wp/wp-admin\";i:9070949;s:37:\"/var/www/html/web/wp/wp-includes/l10n\";i:30499;s:42:\"/var/www/html/web/wp/wp-includes/customize\";i:177349;s:47:\"/var/www/html/web/wp/wp-includes/block-patterns\";i:8843;s:36:\"/var/www/html/web/wp/wp-includes/ID3\";i:1160011;s:47:\"/var/www/html/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:52:\"/var/www/html/web/wp/wp-includes/js/dist/development\";i:179848;s:40:\"/var/www/html/web/wp/wp-includes/js/dist\";i:21234878;s:44:\"/var/www/html/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/html/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:48:\"/var/www/html/web/wp/wp-includes/js/mediaelement\";i:721307;s:45:\"/var/www/html/web/wp/wp-includes/js/swfupload\";i:8715;s:40:\"/var/www/html/web/wp/wp-includes/js/crop\";i:20004;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:54:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:62:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:56:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:51:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:50:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:43:\"/var/www/html/web/wp/wp-includes/js/tinymce\";i:2854127;s:46:\"/var/www/html/web/wp/wp-includes/js/codemirror\";i:1287141;s:45:\"/var/www/html/web/wp/wp-includes/js/jquery/ui\";i:787634;s:42:\"/var/www/html/web/wp/wp-includes/js/jquery\";i:1305370;s:49:\"/var/www/html/web/wp/wp-includes/js/imgareaselect\";i:49553;s:41:\"/var/www/html/web/wp/wp-includes/js/jcrop\";i:24976;s:44:\"/var/www/html/web/wp/wp-includes/js/thickbox\";i:31323;s:35:\"/var/www/html/web/wp/wp-includes/js\";i:30443441;s:50:\"/var/www/html/web/wp/wp-includes/interactivity-api\";i:55221;s:47:\"/var/www/html/web/wp/wp-includes/block-supports\";i:130165;s:51:\"/var/www/html/web/wp/wp-includes/sitemaps/providers\";i:17593;s:41:\"/var/www/html/web/wp/wp-includes/sitemaps\";i:47491;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-title\";i:1823;s:49:\"/var/www/html/web/wp/wp-includes/blocks/footnotes\";i:2642;s:47:\"/var/www/html/web/wp/wp-includes/blocks/buttons\";i:11183;s:45:\"/var/www/html/web/wp/wp-includes/blocks/group\";i:9055;s:45:\"/var/www/html/web/wp/wp-includes/blocks/query\";i:14007;s:46:\"/var/www/html/web/wp/wp-includes/blocks/search\";i:19592;s:55:\"/var/www/html/web/wp/wp-includes/blocks/comment-content\";i:1369;s:54:\"/var/www/html/web/wp/wp-includes/blocks/comments-title\";i:1701;s:48:\"/var/www/html/web/wp/wp-includes/blocks/archives\";i:1725;s:46:\"/var/www/html/web/wp/wp-includes/blocks/avatar\";i:2296;s:52:\"/var/www/html/web/wp/wp-includes/blocks/text-columns\";i:3034;s:52:\"/var/www/html/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:54:\"/var/www/html/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/html/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:44:\"/var/www/html/web/wp/wp-includes/blocks/file\";i:11514;s:50:\"/var/www/html/web/wp/wp-includes/blocks/categories\";i:2825;s:48:\"/var/www/html/web/wp/wp-includes/blocks/nextpage\";i:3039;s:64:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:45:\"/var/www/html/web/wp/wp-includes/blocks/video\";i:11619;s:51:\"/var/www/html/web/wp/wp-includes/blocks/social-link\";i:3474;s:49:\"/var/www/html/web/wp/wp-includes/blocks/post-date\";i:1377;s:49:\"/var/www/html/web/wp/wp-includes/blocks/page-list\";i:7663;s:56:\"/var/www/html/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:51:\"/var/www/html/web/wp/wp-includes/blocks/post-author\";i:2895;s:44:\"/var/www/html/web/wp/wp-includes/blocks/more\";i:3770;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-no-results\";i:899;s:49:\"/var/www/html/web/wp/wp-includes/blocks/home-link\";i:1130;s:50:\"/var/www/html/web/wp/wp-includes/blocks/site-title\";i:2289;s:45:\"/var/www/html/web/wp/wp-includes/blocks/block\";i:587;s:45:\"/var/www/html/web/wp/wp-includes/blocks/embed\";i:11232;s:45:\"/var/www/html/web/wp/wp-includes/blocks/audio\";i:3660;s:47:\"/var/www/html/web/wp/wp-includes/blocks/details\";i:2030;s:47:\"/var/www/html/web/wp/wp-includes/blocks/gallery\";i:80571;s:67:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:49:\"/var/www/html/web/wp/wp-includes/blocks/pullquote\";i:8267;s:49:\"/var/www/html/web/wp/wp-includes/blocks/paragraph\";i:6904;s:49:\"/var/www/html/web/wp/wp-includes/blocks/list-item\";i:1137;s:45:\"/var/www/html/web/wp/wp-includes/blocks/cover\";i:83346;s:50:\"/var/www/html/web/wp/wp-includes/blocks/media-text\";i:14445;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-content\";i:1389;s:58:\"/var/www/html/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:49:\"/var/www/html/web/wp/wp-includes/blocks/shortcode\";i:2918;s:45:\"/var/www/html/web/wp/wp-includes/blocks/table\";i:27351;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:46:\"/var/www/html/web/wp/wp-includes/blocks/button\";i:14416;s:53:\"/var/www/html/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-terms\";i:1715;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:44:\"/var/www/html/web/wp/wp-includes/blocks/list\";i:2173;s:49:\"/var/www/html/web/wp/wp-includes/blocks/read-more\";i:2526;s:56:\"/var/www/html/web/wp/wp-includes/blocks/term-description\";i:1751;s:46:\"/var/www/html/web/wp/wp-includes/blocks/spacer\";i:4737;s:56:\"/var/www/html/web/wp/wp-includes/blocks/comment-template\";i:2910;s:51:\"/var/www/html/web/wp/wp-includes/blocks/query-title\";i:1392;s:48:\"/var/www/html/web/wp/wp-includes/blocks/loginout\";i:1026;s:43:\"/var/www/html/web/wp/wp-includes/blocks/rss\";i:4491;s:52:\"/var/www/html/web/wp/wp-includes/blocks/widget-group\";i:400;s:52:\"/var/www/html/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:48:\"/var/www/html/web/wp/wp-includes/blocks/comments\";i:28882;s:47:\"/var/www/html/web/wp/wp-includes/blocks/heading\";i:5731;s:47:\"/var/www/html/web/wp/wp-includes/blocks/columns\";i:9193;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:45:\"/var/www/html/web/wp/wp-includes/blocks/quote\";i:6526;s:58:\"/var/www/html/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:44:\"/var/www/html/web/wp/wp-includes/blocks/html\";i:3770;s:57:\"/var/www/html/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/html/web/wp/wp-includes/blocks/post-featured-image\";i:29684;s:49:\"/var/www/html/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:53:\"/var/www/html/web/wp/wp-includes/blocks/template-part\";i:7986;s:53:\"/var/www/html/web/wp/wp-includes/blocks/post-template\";i:8072;s:52:\"/var/www/html/web/wp/wp-includes/blocks/social-links\";i:58808;s:46:\"/var/www/html/web/wp/wp-includes/blocks/column\";i:1597;s:61:\"/var/www/html/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:45:\"/var/www/html/web/wp/wp-includes/blocks/image\";i:64157;s:49:\"/var/www/html/web/wp/wp-includes/blocks/site-logo\";i:17033;s:65:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:50:\"/var/www/html/web/wp/wp-includes/blocks/navigation\";i:132149;s:68:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:55:\"/var/www/html/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:47:\"/var/www/html/web/wp/wp-includes/blocks/pattern\";i:411;s:48:\"/var/www/html/web/wp/wp-includes/blocks/calendar\";i:3804;s:49:\"/var/www/html/web/wp/wp-includes/blocks/separator\";i:5038;s:45:\"/var/www/html/web/wp/wp-includes/blocks/verse\";i:1860;s:64:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:55:\"/var/www/html/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:52:\"/var/www/html/web/wp/wp-includes/blocks/comment-date\";i:1112;s:47:\"/var/www/html/web/wp/wp-includes/blocks/missing\";i:617;s:52:\"/var/www/html/web/wp/wp-includes/blocks/preformatted\";i:1696;s:61:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:48:\"/var/www/html/web/wp/wp-includes/blocks/freeform\";i:41824;s:60:\"/var/www/html/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:44:\"/var/www/html/web/wp/wp-includes/blocks/code\";i:2638;s:39:\"/var/www/html/web/wp/wp-includes/blocks\";i:1503913;s:39:\"/var/www/html/web/wp/wp-includes/assets\";i:24990;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:49:\"/var/www/html/web/wp/wp-includes/css/dist/widgets\";i:23740;s:56:\"/var/www/html/web/wp/wp-includes/css/dist/format-library\";i:5556;s:48:\"/var/www/html/web/wp/wp-includes/css/dist/editor\";i:249100;s:59:\"/var/www/html/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:52:\"/var/www/html/web/wp/wp-includes/css/dist/components\";i:357993;s:62:\"/var/www/html/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/patterns\";i:7442;s:45:\"/var/www/html/web/wp/wp-includes/css/dist/nux\";i:11624;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/commands\";i:13442;s:53:\"/var/www/html/web/wp/wp-includes/css/dist/preferences\";i:8474;s:55:\"/var/www/html/web/wp/wp-includes/css/dist/block-library\";i:805380;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-post\";i:52240;s:41:\"/var/www/html/web/wp/wp-includes/css/dist\";i:2644068;s:36:\"/var/www/html/web/wp/wp-includes/css\";i:3289825;s:40:\"/var/www/html/web/wp/wp-includes/widgets\";i:158524;s:43:\"/var/www/html/web/wp/wp-includes/php-compat\";i:1253;s:58:\"/var/www/html/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/XML\";i:7098;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/Net\";i:7493;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/html/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:50:\"/var/www/html/web/wp/wp-includes/SimplePie/Content\";i:8015;s:54:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:49:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:47:\"/var/www/html/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:42:\"/var/www/html/web/wp/wp-includes/SimplePie\";i:458625;s:38:\"/var/www/html/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/html/web/wp/wp-includes/images/media\";i:5263;s:47:\"/var/www/html/web/wp/wp-includes/images/crystal\";i:15541;s:47:\"/var/www/html/web/wp/wp-includes/images/smilies\";i:10082;s:39:\"/var/www/html/web/wp/wp-includes/images\";i:102178;s:49:\"/var/www/html/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/html/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:42:\"/var/www/html/web/wp/wp-includes/Text/Diff\";i:44136;s:37:\"/var/www/html/web/wp/wp-includes/Text\";i:57049;s:37:\"/var/www/html/web/wp/wp-includes/pomo\";i:57146;s:45:\"/var/www/html/web/wp/wp-includes/style-engine\";i:47528;s:45:\"/var/www/html/web/wp/wp-includes/theme-compat\";i:15656;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/search\";i:16749;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/fields\";i:22510;s:51:\"/var/www/html/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:41:\"/var/www/html/web/wp/wp-includes/rest-api\";i:977234;s:36:\"/var/www/html/web/wp/wp-includes/IXR\";i:33915;s:45:\"/var/www/html/web/wp/wp-includes/certificates\";i:233231;s:42:\"/var/www/html/web/wp/wp-includes/PHPMailer\";i:233227;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:69:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:55:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:70:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:56:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:76:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:73:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:46:\"/var/www/html/web/wp/wp-includes/sodium_compat\";i:1303525;s:41:\"/var/www/html/web/wp/wp-includes/html-api\";i:330488;s:47:\"/var/www/html/web/wp/wp-includes/block-bindings\";i:3610;s:60:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:65:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:54:\"/var/www/html/web/wp/wp-includes/Requests/src/Response\";i:3101;s:51:\"/var/www/html/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:53:\"/var/www/html/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:52:\"/var/www/html/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:50:\"/var/www/html/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:45:\"/var/www/html/web/wp/wp-includes/Requests/src\";i:214849;s:49:\"/var/www/html/web/wp/wp-includes/Requests/library\";i:261;s:41:\"/var/www/html/web/wp/wp-includes/Requests\";i:215110;s:32:\"/var/www/html/web/wp/wp-includes\";i:48794197;s:20:\"/var/www/html/web/wp\";i:58049099;s:55:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/inc\";i:1242;s:69:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:3890;s:70:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:3094;s:61:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base\";i:8317;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:5543;s:66:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:261;s:56:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass\";i:14611;s:51:\"/var/www/html/web/app/themes/haiku-atelier-2024/src\";i:18883;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27943;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:643;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img\";i:28586;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/css\";i:34494;s:67:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:65:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:775316;s:60:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts\";i:998860;s:54:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets\";i:1061940;s:59:\"/var/www/html/web/app/themes/haiku-atelier-2024/views/parts\";i:2562;s:53:\"/var/www/html/web/app/themes/haiku-atelier-2024/views\";i:3229;s:47:\"/var/www/html/web/app/themes/haiku-atelier-2024\";i:1087153;s:51:\"/var/www/html/web/app/themes/twentytwentyfour/parts\";i:1473;s:56:\"/var/www/html/web/app/themes/twentytwentyfour/assets/css\";i:357;s:63:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:74:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:58:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:59:\"/var/www/html/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/assets\";i:2176015;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/styles\";i:33892;s:54:\"/var/www/html/web/app/themes/twentytwentyfour/patterns\";i:158957;s:55:\"/var/www/html/web/app/themes/twentytwentyfour/templates\";i:12953;s:45:\"/var/www/html/web/app/themes/twentytwentyfour\";i:3137090;s:28:\"/var/www/html/web/app/themes\";i:4224243;s:51:\"/var/www/html/web/app/plugins/falcon/src/Components\";i:3084;s:40:\"/var/www/html/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/html/web/app/plugins/falcon/vendor/composer\";i:37088;s:43:\"/var/www/html/web/app/plugins/falcon/vendor\";i:37859;s:43:\"/var/www/html/web/app/plugins/falcon/assets\";i:6377;s:56:\"/var/www/html/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:51:\"/var/www/html/web/app/plugins/falcon/views/settings\";i:13902;s:42:\"/var/www/html/web/app/plugins/falcon/views\";i:13902;s:36:\"/var/www/html/web/app/plugins/falcon\";i:97092;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:71:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:78:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:100907;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83933;s:83:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25699;s:75:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:354350;s:67:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler\";i:475782;s:68:\"/var/www/html/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:50:\"/var/www/html/web/app/plugins/woocommerce/packages\";i:475985;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:57:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Notes\";i:73813;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:62957;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:70693;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:89:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:47816;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9968;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8866;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25560;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:31578;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:57385;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:69829;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:113247;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:24158;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:44181;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:18932;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22026;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77212;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9963;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11562;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:18406;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:47160;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:23874;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29657;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:60372;s:80:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:31208;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:65298;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:690145;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API\";i:1009815;s:87:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:13900;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:86:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:48662;s:96:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43908;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21180;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:47117;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:57661;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:101089;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features\";i:303951;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:51:\"/var/www/html/web/app/plugins/woocommerce/src/Admin\";i:1668946;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:21817;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:176197;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:176533;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:144845;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:3796;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:5159;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:178544;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:189515;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi\";i:566738;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10471;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout\";i:10471;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Utilities\";i:50817;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:64889;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations\";i:130927;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Database\";i:130927;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:8936;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50559;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97298;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:105527;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:126187;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:38047;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47641;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:8879;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin\";i:764610;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Orders\";i:32575;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Utilities\";i:74076;s:97:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:30612;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:49112;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:72833;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95073;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:99:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:63353;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:63353;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features\";i:115099;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25054;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:284749;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores\";i:291991;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2480;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Internal\";i:1676491;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Caching\";i:20668;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Caches\";i:3406;s:58:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Utils\";i:78378;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25738;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:19338;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:52098;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:502024;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:61720;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Templates\";i:68111;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:8901;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:84:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101360;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain\";i:122574;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks\";i:1051533;s:45:\"/var/www/html/web/app/plugins/woocommerce/src\";i:5207127;s:64:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:68:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:58:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:82:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:80:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:87:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:71:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:61:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:54:\"/var/www/html/web/app/plugins/woocommerce/lib/packages\";i:126313;s:45:\"/var/www/html/web/app/plugins/woocommerce/lib\";i:126313;s:53:\"/var/www/html/web/app/plugins/woocommerce/sample-data\";i:220042;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:71:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:79:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42755;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:75:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39841;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17182;s:69:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107180;s:56:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony\";i:117710;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:55:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:161410;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:162514;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm\";i:162514;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6664;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25080;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:43599;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:62015;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2602;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21018;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3414;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21830;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:73:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:2191;s:91:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6218;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:262401;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:85946;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:368954;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic\";i:672051;s:52:\"/var/www/html/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:92:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:72:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:68:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:57:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer\";i:834582;s:67:\"/var/www/html/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:88:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:48:\"/var/www/html/web/app/plugins/woocommerce/vendor\";i:2029798;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/flexslider\";i:74711;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/selectWoo\";i:463933;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:59:\"/var/www/html/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/admin\";i:483578;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:60:\"/var/www/html/web/app/plugins/woocommerce/assets/js/frontend\";i:203314;s:56:\"/var/www/html/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:51:\"/var/www/html/web/app/plugins/woocommerce/assets/js\";i:2328886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:52:\"/var/www/html/web/app/plugins/woocommerce/assets/css\";i:2093041;s:54:\"/var/www/html/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:9410678;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/images/core-profiler\";i:307207;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/images/previews\";i:522602;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:36070;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons\";i:41143;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/images/onboarding\";i:178839;s:67:\"/var/www/html/web/app/plugins/woocommerce/assets/images/admin_notes\";i:30986;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment-methods\";i:61832;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/task_list\";i:99632;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/images\";i:11811898;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:993;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1334;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:927;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:624;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:782;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:290;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1141;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1195;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:616;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:670;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:300374;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:544;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:431;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1843;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:684;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:621;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1564;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:541;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1407;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1262;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1117;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:632;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:636;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:498;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:457;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:879;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1364;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:852;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:931;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1595;s:82:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1422;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1155;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1212;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1590;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:870;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1511;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:612;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:727;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1581;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:955;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1567;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:761;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:432;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:766;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:865;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1345;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1513;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:440;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:355;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:462;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:918;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:193714;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:66484;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:811;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:1022;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1603;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:540;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1878;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:461;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:785;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1378;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:470;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:813;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:530;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:478;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:589;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:750;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:469;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:617;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:651;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:663;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:662;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:616;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:590;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:618;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:622;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:612;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:628;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:603;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:619;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:714;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:586;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:617;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:578;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:624;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:566;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:641;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:625;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:570;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:660;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:583;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:682;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:837;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:674;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:633;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:587;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:827;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:633;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:598;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:588;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:816;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:593;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:715;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:600;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:612;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:573;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:640;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:633;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:672;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:641;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:627;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:744;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:614;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:659;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:442;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:677;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33477;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1367;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:641;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:641;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks\";i:5183022;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation-opt-out\";i:1123;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/data\";i:148336;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86621;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8027;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127309;s:70:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4673;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/app\";i:784133;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/components\";i:1088012;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:383066;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:161259;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:44202;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1733;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2640;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2158;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:572;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3422;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:2980;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3007;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5594;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5554;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3205;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3197;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:136:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22908;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8741;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3830;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2295;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2467;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:702;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:727;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6632;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:6717;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2058;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2233;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3397;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2093;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3469;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2395;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3197;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:1978;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13811;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:633;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5244;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:622;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7250;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7549;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4007;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7662;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:1995;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21670;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8858;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2471;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2864;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1652;s:124:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:572;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4850;s:126:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2241;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3595;s:130:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1698;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2037;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:627;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:211809;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:604;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2701;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1762;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:592;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2123;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:868;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7133;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3523;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2080;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4088;s:95:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:3912;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:992;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1942;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2050;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2621;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1822;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2244;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1858;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8184;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2674;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:832;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3354;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5482;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:617;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:8852;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3495;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2685;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3645;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:755;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1165;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1370;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:90628;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:310482;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1142135;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1904551;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:6773;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin\";i:6622059;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/client\";i:11805081;s:48:\"/var/www/html/web/app/plugins/woocommerce/assets\";i:28591795;s:61:\"/var/www/html/web/app/plugins/woocommerce/client/admin/config\";i:2299;s:54:\"/var/www/html/web/app/plugins/woocommerce/client/admin\";i:2299;s:48:\"/var/www/html/web/app/plugins/woocommerce/client\";i:2299;s:56:\"/var/www/html/web/app/plugins/woocommerce/i18n/languages\";i:1747540;s:46:\"/var/www/html/web/app/plugins/woocommerce/i18n\";i:2013376;s:50:\"/var/www/html/web/app/plugins/woocommerce/patterns\";i:208652;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/queue\";i:8898;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/shortcodes\";i:54308;s:54:\"/var/www/html/web/app/plugins/woocommerce/includes/cli\";i:38423;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks/events\";i:51376;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks\";i:75507;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/data-stores\";i:346017;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11577;s:70:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17839;s:93:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:74:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site\";i:57477;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/interfaces\";i:35472;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:128486;s:67:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:219869;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings/views\";i:54972;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings\";i:172360;s:68:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers\";i:58181;s:86:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:90:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper\";i:148126;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/views\";i:121333;s:77:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/admin\";i:1508682;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:83:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54515;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77527;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways\";i:116815;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin\";i:34566;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:365908;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:396739;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:453924;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1221250;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api\";i:1234915;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/export\";i:40330;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/emails\";i:100280;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/import\";i:56176;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/abstracts\";i:267717;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/traits\";i:2124;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:79:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:78:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:85:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:50:\"/var/www/html/web/app/plugins/woocommerce/includes\";i:6512655;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/loop\";i:12067;s:71:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:78:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15543;s:66:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product\";i:42783;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/auth\";i:7033;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/parts\";i:10431;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:59:\"/var/www/html/web/app/plugins/woocommerce/templates/notices\";i:2933;s:60:\"/var/www/html/web/app/plugins/woocommerce/templates/checkout\";i:36481;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/myaccount\";i:48888;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/cart\";i:32420;s:65:\"/var/www/html/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/order\";i:24189;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/emails/plain\";i:38216;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/emails\";i:91533;s:72:\"/var/www/html/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/templates\";i:23448;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/global\";i:10121;s:51:\"/var/www/html/web/app/plugins/woocommerce/templates\";i:373790;s:41:\"/var/www/html/web/app/plugins/woocommerce\";i:45825103;s:66:\"/var/www/html/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:55:\"/var/www/html/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:51:\"/var/www/html/web/app/plugins/polylang/modules/sync\";i:44536;s:56:\"/var/www/html/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:57:\"/var/www/html/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:60:\"/var/www/html/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:53:\"/var/www/html/web/app/plugins/polylang/modules/wizard\";i:130236;s:51:\"/var/www/html/web/app/plugins/polylang/modules/wpml\";i:66958;s:57:\"/var/www/html/web/app/plugins/polylang/modules/share-slug\";i:1565;s:58:\"/var/www/html/web/app/plugins/polylang/modules/site-health\";i:14557;s:62:\"/var/www/html/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:46:\"/var/www/html/web/app/plugins/polylang/modules\";i:272125;s:47:\"/var/www/html/web/app/plugins/polylang/settings\";i:119552;s:46:\"/var/www/html/web/app/plugins/polylang/install\";i:39475;s:47:\"/var/www/html/web/app/plugins/polylang/js/build\";i:103657;s:41:\"/var/www/html/web/app/plugins/polylang/js\";i:103657;s:44:\"/var/www/html/web/app/plugins/polylang/flags\";i:74931;s:54:\"/var/www/html/web/app/plugins/polylang/vendor/composer\";i:58432;s:45:\"/var/www/html/web/app/plugins/polylang/vendor\";i:59203;s:48:\"/var/www/html/web/app/plugins/polylang/css/build\";i:65766;s:42:\"/var/www/html/web/app/plugins/polylang/css\";i:65766;s:44:\"/var/www/html/web/app/plugins/polylang/admin\";i:161850;s:47:\"/var/www/html/web/app/plugins/polylang/frontend\";i:110448;s:73:\"/var/www/html/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:60:\"/var/www/html/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:63:\"/var/www/html/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:59:\"/var/www/html/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/yarpp\";i:719;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/cache\";i:3629;s:64:\"/var/www/html/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:51:\"/var/www/html/web/app/plugins/polylang/integrations\";i:53022;s:46:\"/var/www/html/web/app/plugins/polylang/include\";i:356041;s:38:\"/var/www/html/web/app/plugins/polylang\";i:1566178;s:29:\"/var/www/html/web/app/plugins\";i:47488373;s:37:\"/var/www/html/web/app/uploads/2024/08\";i:0;s:34:\"/var/www/html/web/app/uploads/2024\";i:0;s:49:\"/var/www/html/web/app/uploads/woocommerce_uploads\";i:13;s:37:\"/var/www/html/web/app/uploads/wc-logs\";i:5283;s:29:\"/var/www/html/web/app/uploads\";i:285118;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/customize\";i:177349;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/IXR\";i:33915;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-supports\";i:130165;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps/providers\";i:17593;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps\";i:47491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/theme-compat\";i:15656;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/php-compat\";i:1253;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/interactivity-api\";i:55295;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Response\";i:3101;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src\";i:214849;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/library\";i:261;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests\";i:215110;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/html-api\";i:330662;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/button\";i:14416;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query\";i:14007;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments\";i:28882;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-content\";i:1389;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/buttons\";i:11183;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/nextpage\";i:3039;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/rss\";i:4491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/table\";i:27351;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-date\";i:1377;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/html\";i:3770;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-date\";i:1112;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/search\";i:19592;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-terms\";i:1715;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/footnotes\";i:2642;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pattern\";i:411;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/categories\";i:2825;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list-item\";i:1137;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/file\";i:11514;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/widget-group\";i:400;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/more\";i:3770;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/cover\";i:83346;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/quote\";i:6526;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-featured-image\";i:29716;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-link\";i:3474;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/heading\";i:5731;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/paragraph\";i:6904;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list\";i:2173;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/columns\";i:9193;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/read-more\";i:2526;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/block\";i:587;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/image\";i:64157;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-title\";i:1823;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-content\";i:1369;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-logo\";i:17033;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/template-part\";i:7986;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/spacer\";i:4737;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list\";i:7663;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/loginout\";i:1026;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/preformatted\";i:1696;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/home-link\";i:1130;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-template\";i:8072;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/embed\";i:11232;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation\";i:132149;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/avatar\";i:2296;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-title\";i:1701;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-no-results\";i:899;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/separator\";i:5038;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/code\";i:2638;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-title\";i:2289;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/gallery\";i:80571;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/missing\";i:617;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:76:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/media-text\";i:14445;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/verse\";i:1860;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/shortcode\";i:2918;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pullquote\";i:8267;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/freeform\";i:41824;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/term-description\";i:1751;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-title\";i:1392;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-template\";i:2910;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/details\";i:2030;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/video\";i:11619;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/calendar\";i:3804;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-links\";i:58808;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author\";i:2895;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/audio\";i:3660;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/text-columns\";i:3034;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/archives\";i:1725;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/column\";i:1597;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/group\";i:9055;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks\";i:1503945;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/style-engine\";i:47528;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/pomo\";i:57146;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/assets\";i:24990;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/widgets\";i:158524;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML\";i:7098;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Net\";i:7493;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content\";i:8015;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie\";i:458625;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-bindings\";i:3610;s:47:\"/var/www/haiku-atelier/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/ID3\";i:1160011;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/PHPMailer\";i:233227;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/search\";i:16749;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/fields\";i:22510;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api\";i:977234;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/certificates\";i:233231;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery/ui\";i:787634;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery\";i:1305370;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/thickbox\";i:31323;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce\";i:2854127;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jcrop\";i:24976;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/swfupload\";i:8715;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/imgareaselect\";i:49553;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement\";i:721307;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/development\";i:179848;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist\";i:21236724;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/crop\";i:20004;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/js/codemirror\";i:1287141;s:44:\"/var/www/haiku-atelier/web/wp/wp-includes/js\";i:30445287;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-post\";i:51948;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/patterns\";i:7442;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/editor\";i:249468;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/commands\";i:13442;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-library\";i:805412;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/widgets\";i:23740;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/format-library\";i:5556;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/preferences\";i:8474;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/components\";i:357993;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/nux\";i:11624;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist\";i:2644176;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/css\";i:3289933;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff\";i:44136;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/Text\";i:57049;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/crystal\";i:15541;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/images/media\";i:5263;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/smilies\";i:10082;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/images\";i:102178;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-patterns\";i:8843;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:79:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:78:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:85:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:82:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat\";i:1303525;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/l10n\";i:30499;s:41:\"/var/www/haiku-atelier/web/wp/wp-includes\";i:48797833;s:43:\"/var/www/haiku-atelier/web/wp/wp-admin/user\";i:3685;s:46:\"/var/www/haiku-atelier/web/wp/wp-admin/network\";i:125999;s:47:\"/var/www/haiku-atelier/web/wp/wp-admin/includes\";i:3069241;s:44:\"/var/www/haiku-atelier/web/wp/wp-admin/maint\";i:7592;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/js/widgets\";i:139432;s:41:\"/var/www/haiku-atelier/web/wp/wp-admin/js\";i:1971286;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ocean\";i:75229;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/coffee\";i:75892;s:58:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/midnight\";i:78486;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/light\";i:78474;s:59:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:57:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:54:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/blue\";i:77778;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/modern\";i:77989;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors\";i:643556;s:42:\"/var/www/haiku-atelier/web/wp/wp-admin/css\";i:2542439;s:45:\"/var/www/haiku-atelier/web/wp/wp-admin/images\";i:426821;s:38:\"/var/www/haiku-atelier/web/wp/wp-admin\";i:9072296;s:29:\"/var/www/haiku-atelier/web/wp\";i:58054082;s:64:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/inc\";i:16246;s:87:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api/v3\";i:6589;s:84:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api\";i:16970;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas\";i:17870;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api/v3\";i:383;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api\";i:2909;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types\";i:4106;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib\";i:42733;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/constantes\";i:6552;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts\";i:99856;s:71:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/pages\";i:9304;s:75:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:1400;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:32926;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:7819;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:6185;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base\";i:16318;s:65:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass\";i:60709;s:60:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src\";i:182905;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/vendor\";i:1155;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:2681684;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts\";i:2905228;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27641;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/storytelling\";i:17708051;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/paypal\";i:3161;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/about\";i:41602782;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:2965;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TAMANORI\";i:28185358;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/BOROBORO\";i:12198378;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TANEMAKI\";i:51708624;s:90:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KARA\";i:20206872;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KISHOU\";i:1117321;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/IKKAN\";i:7522617;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/MUGURA\";i:48966844;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/ROKKU\";i:30061913;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KAGUN\";i:39437895;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/PIASU\";i:41429239;s:93:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HATTARI\";i:11237555;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HADOU\";i:14508333;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS\";i:306580949;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/HADOU\";i:927234;s:86:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/SIZECHART\";i:60067;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products\";i:308169029;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img\";i:367546884;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js/.vite\";i:23402;s:66:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js\";i:187659;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css/pages\";i:60815;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css\";i:168929;s:63:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets\";i:370810363;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/macros\";i:696;s:81:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/panier\";i:13142;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/produit\";i:5012;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/shop\";i:1199;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages\";i:19353;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts\";i:26003;s:62:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views\";i:45157;s:56:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024\";i:371054731;s:64:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/templates\";i:12953;s:63:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/patterns\";i:158957;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:72:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:83:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:67:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:65:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/css\";i:357;s:68:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets\";i:2176015;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/styles\";i:33892;s:60:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/parts\";i:1473;s:54:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour\";i:3137090;s:37:\"/var/www/haiku-atelier/web/app/themes\";i:374191821;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/src/Components\";i:3084;s:49:\"/var/www/haiku-atelier/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/assets\";i:6377;s:61:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor/composer\";i:37088;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor\";i:37859;s:65:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings\";i:13902;s:51:\"/var/www/haiku-atelier/web/app/plugins/falcon/views\";i:13902;s:45:\"/var/www/haiku-atelier/web/app/plugins/falcon\";i:97092;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/collectors\";i:146052;s:60:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/classes\";i:98467;s:57:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/data\";i:15807;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/wp-content\";i:2403;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/html\";i:165089;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/raw\";i:9533;s:67:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/headers\";i:4820;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output\";i:197727;s:65:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets/icons\";i:2156;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets\";i:73257;s:68:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor/composer\";i:26857;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor\";i:27628;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/dispatchers\";i:37910;s:52:\"/var/www/haiku-atelier/web/app/plugins/query-monitor\";i:636645;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/include\";i:356041;s:65:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:62:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard\";i:130236;s:64:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:67:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/site-health\";i:14557;s:71:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sync\";i:44536;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/share-slug\";i:1565;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wpml\";i:66958;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules\";i:272125;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/admin\";i:161850;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/frontend\";i:110448;s:63:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor/composer\";i:58432;s:54:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor\";i:59203;s:73:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/yarpp\";i:719;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:68:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:72:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:82:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/cache\";i:3629;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations\";i:53022;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/install\";i:39475;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/js/build\";i:103657;s:50:\"/var/www/haiku-atelier/web/app/plugins/polylang/js\";i:103657;s:57:\"/var/www/haiku-atelier/web/app/plugins/polylang/css/build\";i:65766;s:51:\"/var/www/haiku-atelier/web/app/plugins/polylang/css\";i:65766;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/flags\";i:74931;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/settings\";i:119552;s:47:\"/var/www/haiku-atelier/web/app/plugins/polylang\";i:1566178;s:73:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails/assets\";i:10275;s:66:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails\";i:55299;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15556;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product\";i:42878;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/checkout\";i:36451;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates\";i:23448;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails/plain\";i:38319;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails\";i:91920;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/cart\";i:32634;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/myaccount\";i:50782;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/global\";i:10397;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/order\";i:24189;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/notices\";i:2933;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/auth\";i:7309;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/parts\";i:10043;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/loop\";i:12321;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates\";i:376768;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages\";i:126313;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib\";i:126313;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/sample-data\";i:220042;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/patterns\";i:124277;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:4658;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:145254;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:828;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:174869;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:185840;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:5335;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:163674;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:164010;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi\";i:551266;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:51416;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Notes\";i:73841;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22904;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9309;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11036;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29290;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:61183;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:21403;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:62498;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:103155;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8958;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25687;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:30273;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:62825;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:17498;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:44458;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:30490;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:56521;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:23175;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:43714;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:19096;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:694872;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/AI\";i:16436;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API\";i:1031204;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9819;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Importers\";i:9932;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Exporters\";i:16010;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Steps\";i:12826;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint\";i:47719;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:14445;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:58486;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:102236;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21179;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:57851;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43946;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:37775;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features\";i:354011;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:63415;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:71728;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin\";i:1747611;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Utilities\";i:53577;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ImportExport\";i:6146;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:12470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50566;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97520;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47801;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:104650;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:128350;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:41004;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin\";i:778158;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Utilities\";i:78473;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:12349;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Logging\";i:15828;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:73593;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:285676;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores\";i:292918;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25545;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95406;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Orders\";i:32870;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:32478;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:50978;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:66833;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:66833;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features\";i:120939;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2474;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal\";i:1726157;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:69217;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations\";i:135204;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database\";i:135204;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101382;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain\";i:123033;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:22111;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:53330;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:521539;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:68267;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25904;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Utils\";i:80715;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Templates\";i:69877;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:10100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks\";i:1091452;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caches\";i:3406;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caching\";i:20668;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10472;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout\";i:10472;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src\";i:5367285;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:101713;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25700;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83943;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:355164;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler\";i:477051;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages\";i:477254;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:7131;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4746;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/app\";i:722758;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/data\";i:148210;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:750;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:145:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22944;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3203;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2100;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5296;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2059;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8748;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3061;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3839;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2764;s:133:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:576;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2165;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:635;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:2008;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3517;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3417;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4934;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7590;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:3010;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13768;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2496;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:5766;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3219;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:713;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:578;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6722;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4093;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7690;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2873;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2333;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2302;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:2002;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2649;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3458;s:135:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2248;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2511;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7272;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1737;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3216;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5644;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:642;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8902;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3671;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5559;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21738;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:626;s:139:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1702;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2064;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1661;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:212471;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1864;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2766;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:877;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3559;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1415;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1843;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5590;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1949;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:616;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2251;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7325;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:776;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:4363;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8443;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1945;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2134;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1172;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:610;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3390;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2110;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:9171;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2080;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2793;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2665;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3809;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:1001;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:598;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4132;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:841;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3705;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2729;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:93125;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:313641;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1155516;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86614;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:43966;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:263375;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/woo-product-usage-notice\";i:6028;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8655;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1908969;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/remote-logging\";i:21615;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127314;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:333496;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/components\";i:1108294;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin\";i:6638361;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:594;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:618;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:882;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:1012;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:965;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1434;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:635;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:633;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:31358;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1162;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:651;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1147;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:28151;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:625;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:905;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:867;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:479;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:634;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:771;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:933;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:613;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1842;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:446;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1585;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:357;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1523;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:441;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:535;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1605;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:870;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:791;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:1467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1596;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:588;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:643;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:583;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:627;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:818;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:444;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:575;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:624;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:635;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:746;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:614;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:836;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:665;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:642;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:572;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:643;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:614;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:602;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:605;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:618;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:626;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:717;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:583;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:664;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:635;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:619;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:590;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:635;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:829;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:619;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:580;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:629;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:662;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:595;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:661;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:679;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:630;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:676;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:594;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:471;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:634;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:621;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:616;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:605;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:674;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:620;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:716;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:592;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:568;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:684;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:653;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:585;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:634;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33590;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:2045;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1119;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1613;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1174;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:978;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:642;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1577;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:546;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:737;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1358;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:436;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:854;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:62928;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1365;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1374;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:672;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1417;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:311;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:442;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1888;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:937;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:542;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1272;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:815;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:543;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:508;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1521;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1377;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1304;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:464;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1388;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:680;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:623;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay-navigation\";i:2137;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1591;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:826;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks\";i:4700944;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client\";i:11339305;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/admin\";i:488725;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/frontend\";i:209838;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/flexslider\";i:74805;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/selectWoo\";i:464613;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js\";i:2341331;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css\";i:2096198;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/core-profiler\";i:33862;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/task_list\";i:83458;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/previews\";i:413623;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/onboarding\";i:240417;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment-methods\";i:67316;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:27486;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons\";i:31521;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:4053200;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/admin_notes\";i:22969;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images\";i:5767572;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets\";i:22097295;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin/config\";i:2432;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin\";i:2432;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client\";i:2432;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39842;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42756;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17185;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107185;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony\";i:117715;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:13039;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10209;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:17616;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:30074;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:37869;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:42613;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:171568;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:172672;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm\";i:172672;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer\";i:986889;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Info\";i:5464;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Formats\";i:9455;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Resolvers\";i:26657;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Schemas\";i:11417;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Filters\";i:14233;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Pragmas\";i:6839;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Keywords\";i:104211;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Drafts\";i:16672;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/KeywordValidators\";i:2046;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers\";i:168548;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Pragmas\";i:9060;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Keywords\";i:149538;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Exceptions\";i:14049;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Errors\";i:19102;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Variables\";i:6949;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/KeywordValidators\";i:4676;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src\";i:512100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema\";i:523262;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src/Exception\";i:3792;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src\";i:45510;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/res\";i:85488;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string\";i:141477;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri/src\";i:50158;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri\";i:61761;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis\";i:726500;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Cli\";i:2787;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs/json-examples\";i:578;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs\";i:578;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Schemas\";i:3561;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Importers\";i:13706;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Exporters\";i:5124;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResultFormatters\";i:2804;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResourceStorages\";i:5077;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Steps\";i:14199;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src\";i:87257;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/fixtures\";i:595;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit/Schemas\";i:2144;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit\";i:6049;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs/Exporters\";i:643;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs\";i:643;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests\";i:8499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint\";i:96039;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce\";i:96039;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis/_inc\";i:2116;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis\";i:45720;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6554;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/sso\";i:113495;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:462283;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:82512;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:86764;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:649975;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3465;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21881;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6809;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25225;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/build\";i:8948;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src/js\";i:2330;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src\";i:40444;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets\";i:68778;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2606;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21022;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:50948;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:69364;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic\";i:1029399;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor\";i:3372155;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/data-stores\";i:354754;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin\";i:34639;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/product-usage\";i:3082;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/import\";i:56176;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/views\";i:121662;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers\";i:62849;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:131617;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:223285;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings/views\";i:55620;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings\";i:181942;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper\";i:165129;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin\";i:1542031;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/interfaces\";i:35473;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/emails\";i:100280;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/traits\";i:2124;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/cli\";i:38423;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/queue\";i:8898;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/abstracts\";i:268729;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks/events\";i:62168;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks\";i:87347;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/export\";i:40330;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:373774;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:456837;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:397047;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1232337;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api\";i:1246552;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11576;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17838;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site\";i:57476;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54634;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77646;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways\";i:116934;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shortcodes\";i:53973;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes\";i:6609222;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n/languages\";i:1753660;s:55:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n\";i:2019496;s:50:\"/var/www/haiku-atelier/web/app/plugins/woocommerce\";i:40855736;s:73:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/scripts\";i:2058766;s:69:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/css\";i:1445;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources\";i:2060211;s:55:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build\";i:2060211;s:61:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Filters\";i:1300;s:58:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Spec\";i:16940;s:57:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/CLI\";i:2060;s:53:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src\";i:32330;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/assets\";i:417779;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor/composer\";i:36281;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor\";i:37052;s:67:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/scripts\";i:1193;s:68:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/elements\";i:2149767;s:64:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/sass\";i:401;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/views\";i:1979;s:59:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources\";i:2153340;s:49:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi\";i:4718989;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/chronopost\";i:21790;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/mondial_relay\";i:14027;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/ups\";i:14871;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods\";i:55876;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI/filters\";i:5896;s:68:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI\";i:100646;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/include\";i:952612;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/config\";i:1194;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/fonts\";i:2529;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/tools\";i:7413;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf\";i:2322586;s:63:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib\";i:2426416;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/chronopost\";i:80783;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/abstract_classes\";i:69630;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/config\";i:350;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/mondial_relay\";i:76867;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/ups\";i:70178;s:73:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes\";i:299338;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/openstreetmap\";i:2964;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/mondial_relay\";i:3251;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/google_maps\";i:2540;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups\";i:9732;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/shipping\";i:6384;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/config\";i:2233;s:92:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/chronopost\";i:6964;s:98:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/abstract_classes\";i:16698;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/mondial_relay\";i:5948;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/ups\";i:5812;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders\";i:35422;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/settings\";i:799;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials\";i:54570;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/chronopost\";i:12119;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/openstreetmap\";i:15136;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/mondial_relay\";i:5469;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/google_maps\";i:14868;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups\";i:37647;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/mondial_relay\";i:3080;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/dhl\";i:1381;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/ups\";i:3109;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js\";i:61179;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/chronopost\";i:55;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/pickups\";i:4890;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/mondial_relay\";i:55;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/ups\";i:55;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css\";i:5055;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets\";i:66234;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/views\";i:254;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin\";i:421863;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/woocommerce_block\";i:42885;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email/templates\";i:1248;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email\";i:1248;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources\";i:108037;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/chronopost\";i:4973;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/abstract_classes\";i:12853;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/mondial_relay\";i:4668;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/ups\";i:6516;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup\";i:29010;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/openstreetmap\";i:3603;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/mondial_relay\";i:3812;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/google_maps\";i:3461;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups\";i:10876;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials\";i:10876;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/openstreetmap\";i:11083;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/mondial_relay\";i:4894;s:102:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/woocommerce_blocks\";i:2911;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/google_maps\";i:11001;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups\";i:29889;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js\";i:29889;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css/pickups\";i:3911;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css\";i:3911;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets\";i:33800;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front\";i:75274;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/classes\";i:374;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/helper\";i:7996;s:67:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers\";i:10238;s:59:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc\";i:3140589;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor/composer\";i:35612;s:62:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor\";i:35751;s:55:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping\";i:3194686;s:38:\"/var/www/haiku-atelier/web/app/plugins\";i:51124625;s:58:\"/var/www/haiku-atelier/web/app/uploads/woocommerce_uploads\";i:14;s:46:\"/var/www/haiku-atelier/web/app/uploads/wc-logs\";i:4441;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/10\";i:122283131;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/09\";i:30092056;s:43:\"/var/www/haiku-atelier/web/app/uploads/2024\";i:152375187;s:38:\"/var/www/haiku-atelier/web/app/uploads\";i:152379642;}','off'), -(992,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1723037545;}','off'), -(1266,'woocommerce_task_list_reminder_bar_hidden','yes','auto'), -(1844,'nonce_key','Qe9)bK=%I]xCh./VgqP J~76af%z[ GJpRMI$H9^BE!rApKAVk}7rw._BQRV:.}4','off'), -(1845,'nonce_salt',' 3%/;I6>tVBcX^+ei0X(f07Fy}xZy9-W4;4Hp]+9c|7Lu9OyH*vDy<$[ ZFupt-K','off'), -(1855,'auth_key','+_xd+>H[lp.sF$h(0~tRw(*Mc3fU~j;oy5**DrV8N`:&oeE`[aW31h{1+sbj%m/9','off'), -(1856,'auth_salt','*g5A.#_L{&a+3G-HjFNXK!,lkIl{fp%Yk!b9LatvPCB_-oCx^?R~k^3X-*wzC T^','off'), -(1865,'secure_auth_key','_OJ{C5_dNeer{F8)-EMc@BG;IG#6FB*f!A=pxe@1kq:jG','off'), -(1866,'secure_auth_salt','0zE{&JkB]rz&F(6gC,sYm42s?Y~I(@wIuB%wVd$!r0IUEf2X|wWAAu,+t?NC[jQ','off'), -(1868,'logged_in_salt','%;$7@^LKY|%V>x95!VT;|+ 6qCn}f2Nxf9~0@ucl:o_B1@mP_KR XTC=lW~sDsX.','off'), -(2018,'woocommerce_downloads_count_partial','yes','on'), -(2230,'wp-openapi-rewrite-flushed','1','auto'), -(2232,'wp-openapi-options','','auto'), -(2594,'woocommerce_email_footer_text_color','#3c3c3c','off'), -(3107,'recovery_keys','a:0:{}','off'), -(5596,'woocommerce_admin_customize_store_completed','yes','auto'), -(6061,'site_logo','','auto'), -(8528,'woocommerce_feature_site_visibility_badge_enabled','yes','on'), -(8589,'woocommerce_admin_created_default_shipping_zones','yes','auto'), -(8590,'woocommerce_admin_reviewed_default_shipping_zones','yes','auto'), -(8603,'_transient_orders-transient-version','1733494933','on'), -(8610,'woocommerce_admin_last_orders_milestone','10','auto'), -(8759,'wc_shop_order_list_table_months_filter_cache_date','1749466779','auto'), -(8760,'wc_shop_order_list_table_months_filter_cache_value','a:8:{i:0;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"6\";}i:1;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"5\";}i:2;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"4\";}i:3;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"3\";}i:4;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"2\";}i:5;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"1\";}i:6;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"12\";}i:7;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"11\";}}','auto'), -(9197,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"dd429dffcb518f90fe1f9ce99f485c58\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'), -(9202,'db_upgraded','','on'), -(9217,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:8:\"extended\";i:1;s:5:\"setup\";}','auto'), -(9218,'woocommerce_default_homepage_layout','two_columns','auto'), -(10169,'can_compress_scripts','0','on'), -(10216,'woocommerce_sales_record_date','2024-11-26','auto'), -(10217,'woocommerce_sales_record_amount','1525','auto'), -(10790,'wpmc_options','a:27:{s:6:\"method\";s:5:\"media\";s:7:\"content\";b:1;s:18:\"filesystem_content\";b:0;s:13:\"media_library\";b:1;s:12:\"live_content\";b:0;s:9:\"debuglogs\";b:0;s:11:\"images_only\";b:0;s:13:\"attach_is_use\";b:0;s:15:\"thumbnails_only\";b:0;s:11:\"dirs_filter\";s:0:\"\";s:12:\"files_filter\";s:0:\"\";s:15:\"hide_thumbnails\";b:0;s:12:\"hide_warning\";b:0;s:10:\"skip_trash\";b:0;s:13:\"medias_buffer\";i:100;s:12:\"posts_buffer\";i:5;s:15:\"analysis_buffer\";i:100;s:14:\"file_op_buffer\";i:20;s:5:\"delay\";i:100;s:19:\"shortcodes_disabled\";b:0;s:31:\"output_buffer_cleaning_disabled\";b:0;s:14:\"php_error_logs\";b:0;s:14:\"posts_per_page\";i:1000;s:15:\"clean_uninstall\";b:0;s:11:\"repair_mode\";b:0;s:11:\"expert_mode\";b:0;s:9:\"logs_path\";N;}','off'), -(10791,'wpmc_rating_date','1732931640','off'), -(10793,'product_cat_children','a:0:{}','auto'), -(10807,'wms_mondial_relay_enable','yes','on'), -(10808,'wms_mondial_relay_customer_code','','on'), -(10809,'wms_mondial_relay_private_key','','on'), -(10810,'wms_mondial_relay_brand_code','','on'), -(10811,'wms_mondial_relay_section_pickup_points_map_type','openstreetmap','on'), -(10812,'wms_mondial_relay_section_pickup_points_google_maps_api_key','','on'), -(10813,'wms_mondial_relay_section_label_generation_status','a:0:{}','on'), -(10814,'wms_mondial_relay_section_label_status_post_generation','','on'), -(10815,'wms_mondial_relay_section_label_send_email','no','on'), -(10816,'wms_mondial_relay_price_before_discount','no','on'), -(10817,'wms_mondial_relay_shipper_civility','MLLE','on'), -(10818,'wms_mondial_relay_shipper_name','','on'), -(10819,'wms_mondial_relay_shipper_name_2','','on'), -(10820,'wms_mondial_relay_shipper_address_1','','on'), -(10821,'wms_mondial_relay_shipper_address_2','','on'), -(10822,'wms_mondial_relay_shipper_zip_code','','on'), -(10823,'wms_mondial_relay_shipper_city','','on'), -(10824,'wms_mondial_relay_shipper_country','AF','on'), -(10825,'wms_mondial_relay_shipper_email','','on'), -(10826,'wms_mondial_relay_shipper_phone','','on'), -(10827,'wms_mondial_relay_shipper_mobile_phone','','on'), -(10828,'wms_mondial_relay_section_parcel_insurance','0','on'), -(10829,'wms_mondial_relay_section_parcel_installation_duration','','on'), -(10830,'wms_mondial_relay_section_parcel_shipping_value','','on'), -(10831,'wms_mondial_relay_debug_mode','1','on'), -(10832,'wms_chronopost_enable','no','on'), -(10833,'wms_chronopost_account_number','','on'), -(10834,'wms_chronopost_account_name','','on'), -(10835,'wms_chronopost_account_password','','on'), -(10836,'wms_chronopost_section_pickup_points_map_type','openstreetmap','on'), -(10837,'wms_chronopost_section_pickup_points_google_maps_api_key','','on'), -(10838,'wms_chronopost_label_format','PDF','on'), -(10839,'wms_chronopost_section_label_generation_status','a:0:{}','on'), -(10840,'wms_chronopost_section_label_status_post_generation','','on'), -(10841,'wms_chronopost_section_label_send_email','no','on'), -(10842,'wms_chronopost_price_before_discount','yes','on'), -(10843,'wms_chronopost_shipper_civility','E','on'), -(10844,'wms_chronopost_shipper_name','','on'), -(10845,'wms_chronopost_shipper_name_2','','on'), -(10846,'wms_chronopost_shipper_address_1','','on'), -(10847,'wms_chronopost_shipper_address_2','','on'), -(10848,'wms_chronopost_shipper_zip_code','','on'), -(10849,'wms_chronopost_shipper_city','','on'), -(10850,'wms_chronopost_shipper_country','AF','on'), -(10851,'wms_chronopost_shipper_contact_name','','on'), -(10852,'wms_chronopost_shipper_email','','on'), -(10853,'wms_chronopost_shipper_phone','','on'), -(10854,'wms_chronopost_shipper_mobile_phone','','on'), -(10855,'wms_chronopost_customer_civility','E','on'), -(10856,'wms_chronopost_customer_name','','on'), -(10857,'wms_chronopost_customer_name_2','','on'), -(10858,'wms_chronopost_customer_address_1','','on'), -(10859,'wms_chronopost_customer_address_2','','on'), -(10860,'wms_chronopost_customer_zip_code','','on'), -(10861,'wms_chronopost_customer_city','','on'), -(10862,'wms_chronopost_customer_country','AF','on'), -(10863,'wms_chronopost_customer_contact_name','','on'), -(10864,'wms_chronopost_customer_email','','on'), -(10865,'wms_chronopost_customer_phone','','on'), -(10866,'wms_chronopost_customer_mobile_phone','','on'), -(10867,'wms_chronopost_section_insurance_ad_valorem_enabled','1','on'), -(10868,'wms_chronopost_section_insurance_ad_valorem_min_amount','0','on'), -(10869,'wms_chronopost_saturday_shipping_start_day','monday','on'), -(10870,'wms_chronopost_saturday_shipping_start_time','0','on'), -(10871,'wms_chronopost_saturday_shipping_end_day','monday','on'), -(10872,'wms_chronopost_saturday_shipping_end_time','0','on'), -(10873,'wms_chronopost_debug_mode','0','on'), -(10874,'wms_ups_enable','yes','on'), -(10875,'wms_ups_account_username','','on'), -(10876,'wms_ups_password','','on'), -(10877,'wms_ups_account_number','','on'), -(10878,'wms_ups_api_access_key','','on'), -(10879,'wms_ups_section_pickup_points_map_type','openstreetmap','on'), -(10880,'wms_ups_section_pickup_points_google_maps_api_key','','on'), -(10881,'wms_ups_section_label_generation_status','a:0:{}','on'), -(10882,'wms_ups_section_label_status_post_generation','','on'), -(10883,'wms_ups_section_label_send_email','no','on'), -(10884,'wms_ups_shipper_civility','MLLE','on'), -(10885,'wms_ups_shipper_name','','on'), -(10886,'wms_ups_shipper_name_2','','on'), -(10887,'wms_ups_shipper_company_name','','on'), -(10888,'wms_ups_shipper_vat_number','','on'), -(10889,'wms_ups_shipper_address_1','','on'), -(10890,'wms_ups_shipper_address_2','','on'), -(10891,'wms_ups_shipper_zip_code','','on'), -(10892,'wms_ups_shipper_city','','on'), -(10893,'wms_ups_shipper_country','AF','on'), -(10894,'wms_ups_shipper_email','','on'), -(10895,'wms_ups_shipper_phone','','on'), -(10896,'wms_ups_shipper_mobile_phone','','on'), -(10897,'wms_ups_debug_mode','1','on'), -(10899,'woocommerce_ups_standard_4_settings','a:8:{s:5:\"title\";s:14:\"UPS - Standard\";s:13:\"title_if_free\";s:13:\"Free Shipping\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:12;}}}','on'), -(10900,'woocommerce_mondial_relay_point_relais_5_settings','a:8:{s:5:\"title\";s:26:\"Mondial Relay Point Relais\";s:13:\"title_if_free\";s:33:\"Mondial Relay Point Relais (Free)\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:6;}}}','on'), -(10901,'woocommerce_mondial_relay_point_relais_6_settings','a:8:{s:5:\"title\";s:28:\"Mondial Relay - Point Relais\";s:13:\"title_if_free\";s:35:\"Mondial Relay - Point Relais (Free)\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:50;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:3;}}}','on'), -(12053,'wp_mail_logging_activated_time','1732552283','auto'), -(12054,'wp_mail_logging_db_version','2','off'), -(12055,'WPML_Plugin__version','1.13.1','auto'), -(12059,'wp_mail_logging_user_feedback_notice','a:2:{s:4:\"time\";i:1732552283;s:9:\"dismissed\";b:0;}','auto'), -(12077,'wp_mail_smtp_initial_version','4.2.0','off'), -(12078,'wp_mail_smtp_version','4.2.0','off'), -(12079,'wp_mail_smtp','a:19:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";s:9:\"from_name\";s:13:\"Haiku Atelier\";s:6:\"mailer\";s:5:\"gmail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:15:\"smtp.google.com\";s:4:\"port\";i:587;s:10:\"encryption\";s:3:\"tls\";s:4:\"user\";s:23:\"haiku.atelier@gmail.com\";s:4:\"pass\";s:8:\"jD091299\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:7:\"mailjet\";a:2:{s:7:\"api_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"smtp2go\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"amazonses\";a:3:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"region\";s:9:\"us-east-1\";}s:5:\"gmail\";a:10:{s:9:\"client_id\";s:72:\"402628219773-hl8niqniiiklf15f9biou8g06pbm9sac.apps.googleusercontent.com\";s:13:\"client_secret\";s:35:\"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\";s:12:\"access_token\";a:6:{s:12:\"access_token\";s:225:\"ya29.a0AW4XtxhX1ItT6KVp8_1Nqz13xpR0yRQnF6k6MQKLxh5qA-x7QpYKTcxLk8zuwIoK_Ad8PciWxnSvbXrPaqJeb8mnUKQ4BZq7sWolXAjw6HWSrLKugi5ksdoQefPLAcNGkrrQOU_3IHeO4B3E7SF1aE8Azrt9Tkl_D1fVYbLm1XAaCgYKAaUSARASFQHGX2MiBUTjXIVm8kWUnZnSfeGWNA0178\";s:10:\"expires_in\";i:3599;s:5:\"scope\";s:24:\"https://mail.google.com/\";s:10:\"token_type\";s:6:\"Bearer\";s:7:\"created\";i:1750499766;s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";}s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";s:12:\"user_details\";a:1:{s:5:\"email\";s:23:\"haiku.atelier@gmail.com\";}s:23:\"one_click_setup_enabled\";b:0;s:27:\"one_click_setup_credentials\";a:2:{s:3:\"key\";s:0:\"\";s:5:\"token\";s:0:\"\";}s:28:\"one_click_setup_user_details\";a:1:{s:5:\"email\";s:0:\"\";}s:20:\"is_setup_wizard_auth\";b:0;s:9:\"auth_code\";s:73:\"4/0AeanS0ZUssWZn8hNjBZJEuEFDL9SMb5c1tjzffcTAVb5e2L-B_PRnuKLBa88D022Uumzmw\";}s:7:\"outlook\";a:5:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"zoho\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"domain\";s:3:\"com\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"logs\";a:5:{s:7:\"enabled\";b:0;s:17:\"log_email_content\";b:0;s:16:\"save_attachments\";b:0;s:19:\"open_email_tracking\";b:0;s:19:\"click_link_tracking\";b:0;}s:11:\"alert_email\";a:2:{s:7:\"enabled\";b:0;s:11:\"connections\";a:0:{}}s:7:\"license\";a:4:{s:3:\"key\";s:0:\"\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}}','off'), -(12080,'wp_mail_smtp_activated_time','1732553202','off'), -(12081,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1732553202;}','auto'), -(12087,'wp_mail_smtp_migration_version','5','on'), -(12088,'wp_mail_smtp_debug_events_db_version','1','on'), -(12089,'wp_mail_smtp_activation_prevent_redirect','1','auto'), -(12090,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1732821999;s:14:\"completed_time\";i:1732822044;s:14:\"was_successful\";b:1;}','off'), -(12092,'wp_mail_smtp_mail_key','b4X/o2Jlr+B6fYssiy4aNvSjL0y5sT0DeDNxw9gANsE=','auto'), -(12094,'wp_mail_smtp_debug','a:0:{}','off'), -(12097,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1733769473;s:9:\"dismissed\";b:1;}','auto'), -(12100,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1750617000;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'), -(12490,'woocommerce_flat_rate_7_settings','a:3:{s:5:\"title\";s:12:\"UPS Standard\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"12,00\";}','on'), -(12492,'woocommerce_free_shipping_8_settings','a:4:{s:5:\"title\";s:19:\"UPS Standard (Free)\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:3:\"100\";s:16:\"ignore_discounts\";s:2:\"no\";}','on'), -(12503,'wp_mail_logging_product_education','a:1:{s:9:\"dismissed\";a:1:{s:17:\"email-logs-bottom\";b:1;}}','off'), -(12504,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:39:\"haiku.atelier@gmail.com,contact@gcch.fr\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(13305,'woocommerce_revenue_report_date_tour_shown','yes','auto'), -(13521,'wp_mail_smtp_lite_sent_email_counter','92','on'), -(13522,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{s:2:\"06\";i:2;s:2:\"08\";i:2;s:2:\"09\";i:3;i:10;i:8;i:12;i:3;i:14;i:1;i:15;i:2;i:19;i:5;i:20;i:5;i:23;i:2;i:24;i:1;i:25;i:1;}','on'), -(20569,'woocommerce_clear_ces_tracks_queue_for_page','a:2:{s:7:\"pagenow\";s:25:\"woocommerce_page_wc-admin\";s:9:\"adminpage\";s:25:\"woocommerce_page_wc-admin\";}','auto'), -(20640,'_transient_woocommerce_product_task_product_count_transient','66','on'), -(21366,'woocommerce_customer_on_hold_order_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:46:\"We look forward to fulfilling your order soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21367,'woocommerce_customer_processing_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for using {site_url}!\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21368,'woocommerce_customer_completed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for shopping with us.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21369,'woocommerce_customer_refunded_order_settings','a:7:{s:7:\"enabled\";s:2:\"no\";s:12:\"subject_full\";s:0:\"\";s:15:\"subject_partial\";s:0:\"\";s:12:\"heading_full\";s:0:\"\";s:15:\"heading_partial\";s:0:\"\";s:18:\"additional_content\";s:30:\"We hope to see you again soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21370,'woocommerce_mondial_relay_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21371,'woocommerce_ups_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), -(25278,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','on'), -(28660,'woocommerce_customer_note_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:19:\"Thanks for reading.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(30279,'action_scheduler_migration_status','complete','auto'), -(30281,'woocommerce_hpos_address_fts_index_created','yes','off'), -(30418,'widget_wc_brands_brand_description','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30419,'widget_woocommerce_brand_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30420,'widget_wc_brands_brand_thumbnails','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30421,'woocommerce_anonymize_refunded_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(30422,'woocommerce_email_auto_sync_with_theme','no','off'), -(30423,'woocommerce_feature_rate_limit_checkout_enabled','no','on'), -(30424,'woocommerce_feature_remote_logging_enabled','yes','on'), -(30425,'woocommerce_feature_email_improvements_enabled','no','on'), -(30426,'woocommerce_feature_reactify-classic-payments-settings_enabled','yes','on'), -(30427,'woocommerce_feature_cost_of_goods_sold_enabled','no','on'), -(30437,'new_admin_email','haiku.atelier@gmail.com','auto'), -(30451,'woocommerce_admin_pes_incentive_woopayments_store_had_woopayments','no','auto'), -(30480,'woocommerce_shipping_hide_rates_when_free','no','off'), -(30481,'woocommerce_email_header_image_width','120','on'), -(30482,'woocommerce_email_header_alignment','left','on'), -(30483,'woocommerce_email_font_family','Helvetica','on'), -(30484,'woocommerce_feature_blueprint_enabled','yes','on'), -(30485,'woocommerce_hpos_datastore_caching_enabled','no','on'), -(30486,'woocommerce_feature_block_email_editor_enabled','no','on'), -(30493,'_site_transient_timeout_woocommerce_blocks_patterns','1752934566','off'), -(30494,'_site_transient_woocommerce_blocks_patterns','a:2:{s:7:\"version\";s:5:\"9.9.4\";s:8:\"patterns\";a:41:{i:0;a:11:{s:5:\"title\";s:6:\"Banner\";s:4:\"slug\";s:25:\"woocommerce-blocks/banner\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:10:\"banner.php\";}i:1;a:11:{s:5:\"title\";s:23:\"Coming Soon Entire Site\";s:4:\"slug\";s:35:\"woocommerce/coming-soon-entire-site\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"coming-soon-entire-site.php\";}i:2;a:11:{s:5:\"title\";s:22:\"Coming Soon Store Only\";s:4:\"slug\";s:34:\"woocommerce/coming-soon-store-only\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:26:\"coming-soon-store-only.php\";}i:3;a:11:{s:5:\"title\";s:11:\"Coming Soon\";s:4:\"slug\";s:23:\"woocommerce/coming-soon\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:15:\"coming-soon.php\";}i:4;a:11:{s:5:\"title\";s:29:\"Content right with image left\";s:4:\"slug\";s:48:\"woocommerce-blocks/content-right-with-image-left\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, About\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:28:\"content-right-image-left.php\";}i:5;a:11:{s:5:\"title\";s:29:\"Featured Category Cover Image\";s:4:\"slug\";s:48:\"woocommerce-blocks/featured-category-cover-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:33:\"featured-category-cover-image.php\";}i:6;a:11:{s:5:\"title\";s:24:\"Featured Category Triple\";s:4:\"slug\";s:43:\"woocommerce-blocks/featured-category-triple\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:28:\"featured-category-triple.php\";}i:7;a:11:{s:5:\"title\";s:12:\"Large Footer\";s:4:\"slug\";s:31:\"woocommerce-blocks/footer-large\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:16:\"footer-large.php\";}i:8;a:11:{s:5:\"title\";s:23:\"Footer with Simple Menu\";s:4:\"slug\";s:37:\"woocommerce-blocks/footer-simple-menu\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:22:\"footer-simple-menu.php\";}i:9;a:11:{s:5:\"title\";s:17:\"Footer with menus\";s:4:\"slug\";s:38:\"woocommerce-blocks/footer-with-3-menus\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:23:\"footer-with-3-menus.php\";}i:10;a:11:{s:5:\"title\";s:28:\"Four Image Grid Content Left\";s:4:\"slug\";s:47:\"woocommerce-blocks/form-image-grid-content-left\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, About\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"four-image-grid-content-left.php\";}i:11;a:11:{s:5:\"title\";s:20:\"Centered Header Menu\";s:4:\"slug\";s:39:\"woocommerce-blocks/header-centered-menu\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"header-centered-pattern.php\";}i:12;a:11:{s:5:\"title\";s:23:\"Distraction Free Header\";s:4:\"slug\";s:42:\"woocommerce-blocks/header-distraction-free\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"header-distraction-free.php\";}i:13;a:11:{s:5:\"title\";s:16:\"Essential Header\";s:4:\"slug\";s:35:\"woocommerce-blocks/header-essential\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:20:\"header-essential.php\";}i:14;a:11:{s:5:\"title\";s:12:\"Large Header\";s:4:\"slug\";s:31:\"woocommerce-blocks/header-large\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:16:\"header-large.php\";}i:15;a:11:{s:5:\"title\";s:14:\"Minimal Header\";s:4:\"slug\";s:33:\"woocommerce-blocks/header-minimal\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:18:\"header-minimal.php\";}i:16;a:11:{s:5:\"title\";s:47:\"Heading with three columns of content with link\";s:4:\"slug\";s:66:\"woocommerce-blocks/heading-with-three-columns-of-content-with-link\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:21:\"WooCommerce, Services\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:51:\"heading-with-three-columns-of-content-with-link.php\";}i:17;a:11:{s:5:\"title\";s:20:\"Hero Product 3 Split\";s:4:\"slug\";s:39:\"woocommerce-blocks/hero-product-3-split\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:24:\"hero-product-3-split.php\";}i:18;a:11:{s:5:\"title\";s:23:\"Hero Product Chessboard\";s:4:\"slug\";s:42:\"woocommerce-blocks/hero-product-chessboard\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"hero-product-chessboard.php\";}i:19;a:11:{s:5:\"title\";s:18:\"Hero Product Split\";s:4:\"slug\";s:37:\"woocommerce-blocks/hero-product-split\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:22:\"hero-product-split.php\";}i:20;a:11:{s:5:\"title\";s:33:\"Centered content with image below\";s:4:\"slug\";s:52:\"woocommerce-blocks/centered-content-with-image-below\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:43:\"intro-centered-content-with-image-below.php\";}i:21;a:11:{s:5:\"title\";s:22:\"Just Arrived Full Hero\";s:4:\"slug\";s:41:\"woocommerce-blocks/just-arrived-full-hero\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:26:\"just-arrived-full-hero.php\";}i:22;a:11:{s:5:\"title\";s:33:\"No Products Found - Clear Filters\";s:4:\"slug\";s:43:\"woocommerce/no-products-found-clear-filters\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:29:\"no-products-found-filters.php\";}i:23;a:11:{s:5:\"title\";s:17:\"No Products Found\";s:4:\"slug\";s:29:\"woocommerce/no-products-found\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:21:\"no-products-found.php\";}i:24;a:11:{s:5:\"title\";s:19:\"Default Coming Soon\";s:4:\"slug\";s:36:\"woocommerce/page-coming-soon-default\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:28:\"page-coming-soon-default.php\";}i:25;a:11:{s:5:\"title\";s:25:\"Coming Soon Image Gallery\";s:4:\"slug\";s:42:\"woocommerce/page-coming-soon-image-gallery\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:34:\"page-coming-soon-image-gallery.php\";}i:26;a:11:{s:5:\"title\";s:30:\"Coming Soon Minimal Left Image\";s:4:\"slug\";s:47:\"woocommerce/page-coming-soon-minimal-left-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:39:\"page-coming-soon-minimal-left-image.php\";}i:27;a:11:{s:5:\"title\";s:24:\"Coming Soon Modern Black\";s:4:\"slug\";s:41:\"woocommerce/page-coming-soon-modern-black\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:33:\"page-coming-soon-modern-black.php\";}i:28;a:11:{s:5:\"title\";s:29:\"Coming Soon Split Right Image\";s:4:\"slug\";s:46:\"woocommerce/page-coming-soon-split-right-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:38:\"page-coming-soon-split-right-image.php\";}i:29;a:11:{s:5:\"title\";s:34:\"Coming Soon With Header and Footer\";s:4:\"slug\";s:47:\"woocommerce/page-coming-soon-with-header-footer\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:39:\"page-coming-soon-with-header-footer.php\";}i:30;a:11:{s:5:\"title\";s:28:\"Product Collection 3 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-3-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"product-collection-3-columns.php\";}i:31;a:11:{s:5:\"title\";s:28:\"Product Collection 4 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-4-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"product-collection-4-columns.php\";}i:32;a:11:{s:5:\"title\";s:28:\"Product Collection 5 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-5-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"product-collection-5-columns.php\";}i:33;a:11:{s:5:\"title\";s:47:\"Product Collection: Featured Products 5 Columns\";s:4:\"slug\";s:65:\"woocommerce-blocks/product-collection-featured-products-5-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:50:\"product-collection-featured-products-5-columns.php\";}i:34;a:11:{s:5:\"title\";s:15:\"Product Gallery\";s:4:\"slug\";s:48:\"woocommerce-blocks/product-query-product-gallery\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:36:\"core/query/woocommerce/product-query\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:33:\"product-query-product-gallery.php\";}i:35;a:11:{s:5:\"title\";s:14:\"Product Search\";s:4:\"slug\";s:31:\"woocommerce/product-search-form\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:23:\"product-search-form.php\";}i:36;a:11:{s:5:\"title\";s:16:\"Related Products\";s:4:\"slug\";s:35:\"woocommerce-blocks/related-products\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:20:\"related-products.php\";}i:37;a:11:{s:5:\"title\";s:33:\"Social: Follow us on social media\";s:4:\"slug\";s:51:\"woocommerce-blocks/social-follow-us-in-social-media\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:25:\"WooCommerce, social-media\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:36:\"social-follow-us-in-social-media.php\";}i:38;a:11:{s:5:\"title\";s:22:\"Testimonials 3 Columns\";s:4:\"slug\";s:41:\"woocommerce-blocks/testimonials-3-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:20:\"WooCommerce, Reviews\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:26:\"testimonials-3-columns.php\";}i:39;a:11:{s:5:\"title\";s:19:\"Testimonials Single\";s:4:\"slug\";s:38:\"woocommerce-blocks/testimonials-single\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:20:\"WooCommerce, Reviews\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:23:\"testimonials-single.php\";}i:40;a:11:{s:5:\"title\";s:37:\"Three columns with images and content\";s:4:\"slug\";s:56:\"woocommerce-blocks/three-columns-with-images-and-content\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:21:\"WooCommerce, Services\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:41:\"three-columns-with-images-and-content.php\";}}}','off'), -(30500,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1752934729','off'), -(30501,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"4f2e7067bd1c84cca43f\",\"dependencies\":[\"wc-types\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-types.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js\",\"version\":\"35dee88875b85ff65531\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"d79dedade2f2e4dc9df4\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"6a989f68440048d30473\",\"dependencies\":[\"wc-blocks-checkout-events\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"75d3533c33b46049ee88\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"96479001b0fbd0c70f36\",\"dependencies\":[\"react-jsx-runtime\",\"wc-settings\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"0db759a8a6e010732c50\",\"dependencies\":[\"react-jsx-runtime\",\"wp-blocks\",\"wp-compose\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"1d9ff4f03584490ad390\",\"dependencies\":[\"react-jsx-runtime\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"99a2a0de38bfa707fc7b\",\"dependencies\":[\"react-jsx-runtime\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"5f0dedeb373c5bb189ff\",\"dependencies\":[\"wc-settings\",\"wp-html-entities\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\",\"version\":\"2a67f05c7f92833d4e15\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\",\"version\":\"d8b1ce115c3935c88bec\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\",\"version\":\"7d01b022a3ccdebeef08\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"831c209cc1dd2f820fc4\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"react-jsx-runtime\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-checkout-events.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout-events.js\",\"version\":\"2d0fd4590f6cc663947c\",\"dependencies\":[\"wc-types\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"150bd47634d08fcc2dfc\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"react-jsx-runtime\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-schema-parser.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-schema-parser.js\",\"version\":\"f762078aeb4207fe9c3d\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/admin\\/customer-effort-score\\/index.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/admin\\/customer-effort-score\\/index.js\",\"version\":\"02f7a2e1496459cb9229\",\"dependencies\":[\"react\",\"wc-experimental\",\"wc-navigation\",\"wc-store-data\",\"wc-tracks\",\"wp-api-fetch\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-data-controls\",\"wp-element\",\"wp-i18n\"]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"2578b29b4939339ab9a4\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-jsx-runtime\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\",\"version\":\"0446a66f2604add5f739\",\"dependencies\":[\"react\",\"react-dom\",\"react-jsx-runtime\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]}},\"version\":\"wc-9.9.4\",\"hash\":\"313147516499b56ba02dbd7a799ff16a\"}','off'), -(30507,'_transient_timeout_wc_product_children_240','1753006121','off'), -(30508,'_transient_wc_product_children_240','a:3:{s:3:\"all\";a:2:{i:0;i:241;i:1;i:242;}s:7:\"visible\";a:2:{i:0;i:241;i:1;i:242;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30509,'_transient_timeout_wc_product_children_113','1752979705','off'), -(30510,'_transient_wc_product_children_113','a:3:{s:3:\"all\";a:8:{i:0;i:114;i:1;i:115;i:2;i:116;i:3;i:117;i:4;i:118;i:5;i:119;i:6;i:120;i:7;i:529;}s:7:\"visible\";a:8:{i:0;i:114;i:1;i:115;i:2;i:116;i:3;i:117;i:4;i:118;i:5;i:119;i:6;i:120;i:7;i:529;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30511,'_transient_timeout_wc_product_children_102','1752979706','off'), -(30512,'_transient_wc_product_children_102','a:3:{s:3:\"all\";a:8:{i:0;i:103;i:1;i:104;i:2;i:105;i:3;i:106;i:4;i:107;i:5;i:108;i:6;i:109;i:7;i:528;}s:7:\"visible\";a:8:{i:0;i:103;i:1;i:104;i:2;i:105;i:3;i:106;i:4;i:107;i:5;i:108;i:6;i:109;i:7;i:528;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30522,'_transient_timeout_wc_product_children_133','1752959997','off'), -(30523,'_transient_wc_product_children_133','a:3:{s:3:\"all\";a:8:{i:0;i:134;i:1;i:135;i:2;i:136;i:3;i:137;i:4;i:138;i:5;i:139;i:6;i:140;i:7;i:532;}s:7:\"visible\";a:8:{i:0;i:134;i:1;i:135;i:2;i:136;i:3;i:137;i:4;i:138;i:5;i:139;i:6;i:140;i:7;i:532;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30528,'_transient_timeout_wc_product_children_385','1752978934','off'), -(30529,'_transient_wc_product_children_385','a:3:{s:3:\"all\";a:3:{i:0;i:389;i:1;i:391;i:2;i:392;}s:7:\"visible\";a:3:{i:0;i:389;i:1;i:391;i:2;i:392;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30540,'_transient_timeout_wc_product_children_766','1752959977','off'), -(30541,'_transient_wc_product_children_766','a:3:{s:3:\"all\";a:3:{i:0;i:767;i:1;i:768;i:2;i:775;}s:7:\"visible\";a:3:{i:0;i:767;i:1;i:768;i:2;i:775;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30542,'_transient_timeout_wc_product_children_625','1752959977','off'), -(30543,'_transient_wc_product_children_625','a:3:{s:3:\"all\";a:8:{i:0;i:626;i:1;i:627;i:2;i:628;i:3;i:629;i:4;i:630;i:5;i:631;i:6;i:632;i:7;i:633;}s:7:\"visible\";a:8:{i:0;i:626;i:1;i:627;i:2;i:628;i:3;i:629;i:4;i:630;i:5;i:631;i:6;i:632;i:7;i:633;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30544,'_transient_timeout_wc_product_children_613','1752959978','off'), -(30545,'_transient_wc_product_children_613','a:3:{s:3:\"all\";a:8:{i:0;i:614;i:1;i:615;i:2;i:616;i:3;i:617;i:4;i:618;i:5;i:619;i:6;i:620;i:7;i:624;}s:7:\"visible\";a:8:{i:0;i:614;i:1;i:615;i:2;i:616;i:3;i:617;i:4;i:618;i:5;i:619;i:6;i:620;i:7;i:624;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30563,'_transient_timeout_wc_product_children_72','1752979706','off'), -(30564,'_transient_wc_product_children_72','a:3:{s:3:\"all\";a:7:{i:0;i:73;i:1;i:74;i:2;i:75;i:3;i:76;i:4;i:77;i:5;i:78;i:6;i:79;}s:7:\"visible\";a:7:{i:0;i:73;i:1;i:74;i:2;i:75;i:3;i:76;i:4;i:77;i:5;i:78;i:6;i:79;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30574,'_transient_timeout_wc_shipping_method_count','1752354498','off'), -(30575,'_transient_wc_shipping_method_count','a:4:{s:7:\"version\";s:10:\"1733267802\";s:6:\"legacy\";i:0;s:7:\"enabled\";i:5;s:8:\"disabled\";i:0;}','off'), -(30592,'_transient_timeout_wc_var_prices_433','1752733513','off'), -(30593,'_transient_wc_var_prices_433','{\"version\":\"1750141509\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"478\":\"48.00\",\"479\":\"48.00\",\"480\":\"48.00\"},\"regular_price\":{\"478\":\"48.00\",\"479\":\"48.00\",\"480\":\"48.00\"},\"sale_price\":{\"478\":\"48.00\",\"479\":\"48.00\",\"480\":\"48.00\"}}}','off'), -(30598,'_transient_timeout_wc_var_prices_430','1752733513','off'), -(30599,'_transient_wc_var_prices_430','{\"version\":\"1750141509\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"847\":\"45.00\",\"845\":\"45.00\",\"846\":\"45.00\"},\"regular_price\":{\"847\":\"45.00\",\"845\":\"45.00\",\"846\":\"45.00\"},\"sale_price\":{\"847\":\"45.00\",\"845\":\"45.00\",\"846\":\"45.00\"}}}','off'), -(30606,'_transient_timeout_wc_var_prices_385','1752934784','off'), -(30607,'_transient_wc_var_prices_385','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"389\":\"120.00\",\"391\":\"120.00\",\"392\":\"120.00\"},\"regular_price\":{\"389\":\"120.00\",\"391\":\"120.00\",\"392\":\"120.00\"},\"sale_price\":{\"389\":\"120.00\",\"391\":\"120.00\",\"392\":\"120.00\"}}}','off'), -(30624,'_transient_timeout_wc_product_children_312','1752978672','off'), -(30625,'_transient_wc_product_children_312','a:3:{s:3:\"all\";a:3:{i:0;i:655;i:1;i:654;i:2;i:656;}s:7:\"visible\";a:3:{i:0;i:655;i:1;i:654;i:2;i:656;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30626,'_transient_timeout_wc_var_prices_312','1752934784','off'), -(30627,'_transient_wc_var_prices_312','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"655\":\"75.00\",\"654\":\"52.00\",\"656\":\"50.00\"},\"regular_price\":{\"655\":\"75.00\",\"654\":\"52.00\",\"656\":\"50.00\"},\"sale_price\":{\"655\":\"75.00\",\"654\":\"52.00\",\"656\":\"50.00\"}}}','off'), -(30631,'_transient_timeout_wc_product_children_306','1752978672','off'), -(30632,'_transient_wc_product_children_306','a:3:{s:3:\"all\";a:3:{i:0;i:652;i:1;i:651;i:2;i:653;}s:7:\"visible\";a:3:{i:0;i:652;i:1;i:651;i:2;i:653;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30633,'_transient_timeout_wc_var_prices_306','1752934784','off'), -(30634,'_transient_wc_var_prices_306','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"652\":\"70.00\",\"651\":\"50.00\",\"653\":\"48.00\"},\"regular_price\":{\"652\":\"70.00\",\"651\":\"50.00\",\"653\":\"48.00\"},\"sale_price\":{\"652\":\"70.00\",\"651\":\"50.00\",\"653\":\"48.00\"}}}','off'), -(30659,'_transient_timeout_wc_var_prices_246','1752870677','off'), -(30660,'_transient_wc_var_prices_246','{\"version\":\"1750278673\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"247\":\"85.00\",\"248\":\"85.00\"},\"regular_price\":{\"247\":\"85.00\",\"248\":\"85.00\"},\"sale_price\":{\"247\":\"85.00\",\"248\":\"85.00\"}}}','off'), -(30663,'_transient_timeout_wc_var_prices_240','1752934784','off'), -(30664,'_transient_wc_var_prices_240','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"241\":\"80.00\",\"242\":\"80.00\"},\"regular_price\":{\"241\":\"80.00\",\"242\":\"80.00\"},\"sale_price\":{\"241\":\"80.00\",\"242\":\"80.00\"}}}','off'), -(30673,'_transient_timeout_wc_product_children_202','1752986692','off'), -(30674,'_transient_wc_product_children_202','a:3:{s:3:\"all\";a:3:{i:0;i:638;i:1;i:637;i:2;i:639;}s:7:\"visible\";a:3:{i:0;i:638;i:1;i:637;i:2;i:639;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(30675,'_transient_timeout_wc_var_prices_202','1752934784','off'), -(30676,'_transient_wc_var_prices_202','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"638\":\"85.00\",\"637\":\"50.00\",\"639\":\"50.00\"},\"regular_price\":{\"638\":\"85.00\",\"637\":\"50.00\",\"639\":\"50.00\"},\"sale_price\":{\"638\":\"85.00\",\"637\":\"50.00\",\"639\":\"50.00\"}}}','off'), -(30689,'_transient_timeout_wc_var_prices_155','1752355297','off'), -(30690,'_transient_wc_var_prices_155','{\"version\":\"1733267802\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"156\":\"80.00\",\"157\":\"80.00\",\"158\":\"80.00\",\"159\":\"80.00\",\"160\":\"80.00\",\"161\":\"80.00\",\"162\":\"80.00\"},\"regular_price\":{\"156\":\"80.00\",\"157\":\"80.00\",\"158\":\"80.00\",\"159\":\"80.00\",\"160\":\"80.00\",\"161\":\"80.00\",\"162\":\"80.00\"},\"sale_price\":{\"156\":\"80.00\",\"157\":\"80.00\",\"158\":\"80.00\",\"159\":\"80.00\",\"160\":\"80.00\",\"161\":\"80.00\",\"162\":\"80.00\"}}}','off'), -(30693,'_transient_timeout_wc_var_prices_144','1752355297','off'), -(30694,'_transient_wc_var_prices_144','{\"version\":\"1733267802\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"145\":\"75.00\",\"146\":\"75.00\",\"147\":\"75.00\",\"148\":\"75.00\",\"149\":\"75.00\",\"150\":\"75.00\",\"151\":\"75.00\"},\"regular_price\":{\"145\":\"75.00\",\"146\":\"75.00\",\"147\":\"75.00\",\"148\":\"75.00\",\"149\":\"75.00\",\"150\":\"75.00\",\"151\":\"75.00\"},\"sale_price\":{\"145\":\"75.00\",\"146\":\"75.00\",\"147\":\"75.00\",\"148\":\"75.00\",\"149\":\"75.00\",\"150\":\"75.00\",\"151\":\"75.00\"}}}','off'), -(30697,'_transient_timeout_wc_var_prices_133','1752934784','off'), -(30698,'_transient_wc_var_prices_133','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"134\":\"95.00\",\"135\":\"95.00\",\"136\":\"95.00\",\"137\":\"95.00\",\"138\":\"95.00\",\"139\":\"95.00\",\"140\":\"95.00\",\"532\":\"95.00\"},\"regular_price\":{\"134\":\"95.00\",\"135\":\"95.00\",\"136\":\"95.00\",\"137\":\"95.00\",\"138\":\"95.00\",\"139\":\"95.00\",\"140\":\"95.00\",\"532\":\"95.00\"},\"sale_price\":{\"134\":\"95.00\",\"135\":\"95.00\",\"136\":\"95.00\",\"137\":\"95.00\",\"138\":\"95.00\",\"139\":\"95.00\",\"140\":\"95.00\",\"532\":\"95.00\"}}}','off'), -(30705,'_transient_timeout_wc_var_prices_113','1752934784','off'), -(30706,'_transient_wc_var_prices_113','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"114\":\"90.00\",\"115\":\"90.00\",\"116\":\"90.00\",\"117\":\"90.00\",\"118\":\"90.00\",\"119\":\"90.00\",\"120\":\"90.00\"},\"regular_price\":{\"114\":\"90.00\",\"115\":\"90.00\",\"116\":\"90.00\",\"117\":\"90.00\",\"118\":\"90.00\",\"119\":\"90.00\",\"120\":\"90.00\"},\"sale_price\":{\"114\":\"90.00\",\"115\":\"90.00\",\"116\":\"90.00\",\"117\":\"90.00\",\"118\":\"90.00\",\"119\":\"90.00\",\"120\":\"90.00\"}}}','off'), -(30709,'_transient_timeout_wc_var_prices_102','1752934784','off'), -(30710,'_transient_wc_var_prices_102','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"103\":\"85.00\",\"104\":\"85.00\",\"105\":\"85.00\",\"106\":\"85.00\",\"107\":\"85.00\",\"108\":\"85.00\",\"109\":\"85.00\"},\"regular_price\":{\"103\":\"85.00\",\"104\":\"85.00\",\"105\":\"85.00\",\"106\":\"85.00\",\"107\":\"85.00\",\"108\":\"85.00\",\"109\":\"85.00\"},\"sale_price\":{\"103\":\"85.00\",\"104\":\"85.00\",\"105\":\"85.00\",\"106\":\"85.00\",\"107\":\"85.00\",\"108\":\"85.00\",\"109\":\"85.00\"}}}','off'), -(30713,'_transient_timeout_wc_var_prices_72','1752934784','off'), -(30714,'_transient_wc_var_prices_72','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"73\":\"85.00\",\"74\":\"85.00\",\"75\":\"85.00\",\"76\":\"85.00\",\"77\":\"85.00\",\"78\":\"85.00\",\"79\":\"85.00\"},\"regular_price\":{\"73\":\"85.00\",\"74\":\"85.00\",\"75\":\"85.00\",\"76\":\"85.00\",\"77\":\"85.00\",\"78\":\"85.00\",\"79\":\"85.00\"},\"sale_price\":{\"73\":\"85.00\",\"74\":\"85.00\",\"75\":\"85.00\",\"76\":\"85.00\",\"77\":\"85.00\",\"78\":\"85.00\",\"79\":\"85.00\"}}}','off'), -(30803,'_transient_timeout_woocommerce_admin_pes_incentive_woopayments_store_has_orders','1756885485','off'), -(30804,'_transient_woocommerce_admin_pes_incentive_woopayments_store_has_orders','yes','off'), -(30835,'_transient_timeout_wc_var_prices_766','1752934784','off'), -(30836,'_transient_wc_var_prices_766','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"767\":\"85.00\",\"768\":\"55.00\",\"775\":\"55.00\"},\"regular_price\":{\"767\":\"85.00\",\"768\":\"55.00\",\"775\":\"55.00\"},\"sale_price\":{\"767\":\"85.00\",\"768\":\"55.00\",\"775\":\"55.00\"}}}','off'), -(30837,'_transient_timeout_wc_var_prices_625','1752934784','off'), -(30838,'_transient_wc_var_prices_625','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"626\":\"65.00\",\"627\":\"65.00\",\"628\":\"65.00\",\"629\":\"65.00\",\"630\":\"65.00\",\"631\":\"65.00\",\"632\":\"65.00\",\"633\":\"65.00\"},\"regular_price\":{\"626\":\"65.00\",\"627\":\"65.00\",\"628\":\"65.00\",\"629\":\"65.00\",\"630\":\"65.00\",\"631\":\"65.00\",\"632\":\"65.00\",\"633\":\"65.00\"},\"sale_price\":{\"626\":\"65.00\",\"627\":\"65.00\",\"628\":\"65.00\",\"629\":\"65.00\",\"630\":\"65.00\",\"631\":\"65.00\",\"632\":\"65.00\",\"633\":\"65.00\"}}}','off'), -(30839,'_transient_timeout_wc_var_prices_613','1752934784','off'), -(30840,'_transient_wc_var_prices_613','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"614\":\"70.00\",\"615\":\"70.00\",\"616\":\"70.00\",\"617\":\"70.00\",\"618\":\"70.00\",\"619\":\"70.00\",\"620\":\"70.00\",\"624\":\"70.00\"},\"regular_price\":{\"614\":\"70.00\",\"615\":\"70.00\",\"616\":\"70.00\",\"617\":\"70.00\",\"618\":\"70.00\",\"619\":\"70.00\",\"620\":\"70.00\",\"624\":\"70.00\"},\"sale_price\":{\"614\":\"70.00\",\"615\":\"70.00\",\"616\":\"70.00\",\"617\":\"70.00\",\"618\":\"70.00\",\"619\":\"70.00\",\"620\":\"70.00\",\"624\":\"70.00\"}}}','off'), -(30845,'_transient_timeout_wc_var_prices_535','1752395871','off'), -(30846,'_transient_wc_var_prices_535','{\"version\":\"1733267802\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"540\":\"65.00\",\"541\":\"65.00\"},\"regular_price\":{\"540\":\"65.00\",\"541\":\"65.00\"},\"sale_price\":{\"540\":\"65.00\",\"541\":\"65.00\"}}}','off'), -(30853,'_transient_timeout_woocommerce_analytics_orders_statuses_all','1781339871','off'), -(30854,'_transient_woocommerce_analytics_orders_statuses_all','a:4:{i:0;s:10:\"wc-pending\";i:1;s:13:\"wc-processing\";i:2;s:12:\"wc-completed\";i:3;s:11:\"wc-refunded\";}','off'), -(31241,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1750943652','off'), -(31242,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_GB\";a:24:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:169:\"Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.\";s:5:\"image\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:59:\"https://woocommerce.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:1:\"<\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:9;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:1:\"<\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:9;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:8;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:9;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:9;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:1:\"<\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:7;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:6;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:9;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:4;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}i:1;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";s:0:\"\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:34:\"im_selling_both_online_and_offline\";s:7:\"default\";s:0:\"\";}}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:3;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:12:\"Mercado Pago\";s:7:\"content\";s:198:\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and money from your Mercado Pago account. Offer safe and secure payments with Latin America’s leading processor.\";s:5:\"image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:2;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:1;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:0;}s:25:\"woocommerce_payments:bnpl\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"woocommerce_payments:bnpl\";s:5:\"title\";s:38:\"Activate BNPL instantly on WooPayments\";s:7:\"content\";s:185:\"The world’s favorite buy now, pay later options and many more are right at your fingertips with WooPayments — all from one dashboard, without needing multiple extensions and logins.\";s:5:\"image\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:2:\">=\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:4;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}s:23:\"recommendation_priority\";i:9;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}}}','off'), -(31243,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1750943652','off'), -(31244,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:\"en_GB\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:154:\"Accept credit cards and other popular payment methods with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:119:\"Print shipping labels with WooCommerce Shipping\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:1:{i:0;s:2:\"US\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-shipping\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with WooCommerce Tax\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:110:\"Enhance speed and security with Jetpack\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with MailPoet\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:126:\"Drive sales with Google for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":8:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:141:\"List products and create ads on Facebook and Instagram with Facebook for WooCommerce\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:11:\"klaviyo:alt\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"MailChimp\";s:11:\"description\";s:80:\"Send targeted campaigns, recover abandoned baskets and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:29:\"mailchimp-for-woocommerce:alt\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:6:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:161:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalogue browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":8:{s:4:\"name\";s:26:\"Meta Ads & Pixel by Kliken\";s:11:\"description\";s:150:\"Automate Facebook & Instagram marketing with Kliken. Launch ads and schedule a month of posts in 5 minutes—first 5 free! Plans start at just $20/mo.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken.svg\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:0;s:10:\"is_visible\";b:1;s:3:\"key\";s:29:\"kliken-ads-pixel-for-meta:alt\";}i:4;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}i:5;O:8:\"stdClass\":10:{s:4:\"name\";s:28:\"Multichannel for WooCommerce\";s:11:\"description\";s:85:\"Sync your sales data across platforms and manage everything from a unified dashboard.\";s:9:\"image_url\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/multichannel.webp\";s:10:\"manage_url\";s:28:\"admin.php?page=sales_channel\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:1;s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.8.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:15:\"learn_more_link\";s:143:\"https://woocommerce.com/products/multichannel-by-cedcommerce-ebay-amazon-walmart-etsy-integration/?utm_source=marketing_task&utm_medium=product\";s:4:\"tags\";a:1:{i:0;s:11:\"marketplace\";}s:3:\"key\";s:27:\"multichannel-by-cedcommerce\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:12:{i:0;O:8:\"stdClass\":11:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:54:\"Offer safe and convenient ways to pay with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:123:\"https://woocommerce.com/products/woocommerce-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;s:12:\"requires_jpc\";b:1;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:41:\"Print discounted USPS, UPS and DHL labels\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-shipping\";s:5:\"label\";s:42:\"Save on shipping with WooCommerce Shipping\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:114:\"https://woocommerce.com/woocommerce-shipping?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:61:\"Offer more ways to pay with this all-in-one checkout solution\";s:14:\"is_built_by_wc\";b:0;s:15:\"install_options\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"name\";s:26:\"woocommerce_paypal_branded\";s:5:\"value\";s:8:\"profiler\";}}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:3:\"!in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:27:\"woocommerce-paypal-payments\";s:5:\"label\";s:41:\"Maximize conversions with PayPal Payments\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:3;O:8:\"stdClass\":9:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:60:\"Offer additional flexible payment options with PayPal Wallet\";s:14:\"is_built_by_wc\";b:0;s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:39:\"woocommerce-paypal-payments:wallet-only\";s:5:\"label\";s:38:\"Give shoppers a variety of ways to pay\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:4;O:8:\"stdClass\":11:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:53:\"Keep your store online with full security and backups\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:49:\"Protect your store and your shoppers with Jetpack\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/jetpack?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:8;s:12:\"requires_jpc\";b:1;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:55:\"Get your products in front of a highly engaged audience\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:128:\"https://woocommerce.com/products/pinterest-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:6;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:58:\"Attract and retain shoppers with email marketing campaigns\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/mailpoet?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:7;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:56:\"Build personalized email and SMS campaigns using Klaviyo\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";s:5:\"label\";s:7:\"Klaviyo\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/klaviyo-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:8;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:57:\"Create ads for your products straight from your dashboard\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:39:\"Drive sales with Google for WooCommerce\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:6;}i:9;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:62:\"Automatically calculate how much sales tax should be collected\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:106:\"https://woocommerce.com/products/tax?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:4;}i:10;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:59:\"Sync your store with TikTok to create engaging ad campaigns\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:125:\"https://woocommerce.com/products/tiktok-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:11;O:8:\"stdClass\":10:{s:4:\"name\";s:29:\"Print on Demand with Printful\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-printful.png\";s:11:\"description\";s:65:\"Design and easily sell custom print products online with Printful\";s:10:\"manage_url\";s:0:\"\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:9:{i:0;s:2:\"AU\";i:1;s:2:\"GB\";i:2;s:2:\"CA\";i:3;s:2:\"ES\";i:4;s:2:\"DE\";i:5;s:2:\"FR\";i:6;s:2:\"NL\";i:7;s:2:\"BE\";i:8;s:2:\"LU\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:10:\"industry.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:24:\"clothing_and_accessories\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"printful-shipping-for-woocommerce\";s:5:\"label\";s:29:\"Print on Demand with Printful\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/printful?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:9;}}}}}','off'), -(31702,'_site_transient_timeout_browser_6a23775729fd6c068d20d383cbe27f9b','1750744793','off'), -(31703,'_site_transient_browser_6a23775729fd6c068d20d383cbe27f9b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"127.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'), -(31710,'_transient_timeout_wc_report_orders_stats_1636ca5e2da7da9e3e6a76b9186b5a1a','1750744795','off'), -(31711,'_transient_wc_report_orders_stats_1636ca5e2da7da9e3e6a76b9186b5a1a','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(31712,'_transient_timeout_wc_report_orders_stats_0fcae2e0f6d5937bc8304793f56d6df1','1750744795','off'), -(31713,'_transient_wc_report_orders_stats_0fcae2e0f6d5937bc8304793f56d6df1','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(31714,'_transient_timeout_wc_report_products_stats_dd2add8c102c36bb161877fd4d3379b3','1750744795','off'), -(31715,'_transient_wc_report_products_stats_dd2add8c102c36bb161877fd4d3379b3','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(31716,'_transient_timeout_wc_report_variations_stats_9d7d2d257a94616503014644403ef512','1750744795','off'), -(31717,'_transient_wc_report_variations_stats_9d7d2d257a94616503014644403ef512','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(31718,'_transient_timeout_wc_report_orders_stats_c966a2470e117302cb0ff812c75b12a7','1750744795','off'), -(31719,'_transient_wc_report_orders_stats_c966a2470e117302cb0ff812c75b12a7','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:130;s:8:\"products\";i:3;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:17:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:130;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:17;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(31720,'_transient_timeout_wc_report_products_stats_f3bdfa82e7ac0d42ecbab6a6c74b91da','1750744795','off'), -(31721,'_transient_wc_report_products_stats_f3bdfa82e7ac0d42ecbab6a6c74b91da','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:17:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:17;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(31724,'_transient_filter_data-transient-version','1750363871','on'), -(31819,'_transient_timeout_wc_product_children_342','1752971793','off'), -(31820,'_transient_wc_product_children_342','a:3:{s:3:\"all\";a:4:{i:0;i:560;i:1;i:561;i:2;i:562;i:3;i:563;}s:7:\"visible\";a:4:{i:0;i:560;i:1;i:561;i:2;i:562;i:3;i:563;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(31825,'_transient_timeout_wc_var_prices_342','1752934784','off'), -(31826,'_transient_wc_var_prices_342','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"560\":\"55.00\",\"561\":\"38.00\",\"562\":\"35.00\",\"563\":\"30.00\"},\"regular_price\":{\"560\":\"55.00\",\"561\":\"38.00\",\"562\":\"35.00\",\"563\":\"30.00\"},\"sale_price\":{\"560\":\"55.00\",\"561\":\"38.00\",\"562\":\"35.00\",\"563\":\"30.00\"}}}','off'), -(31912,'_transient_timeout_wc_product_children_490','1752959978','off'), -(31913,'_transient_wc_product_children_490','a:3:{s:3:\"all\";a:3:{i:0;i:494;i:1;i:493;i:2;i:495;}s:7:\"visible\";a:3:{i:0;i:494;i:1;i:493;i:2;i:495;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(31914,'_transient_timeout_wc_var_prices_490','1752934784','off'), -(31915,'_transient_wc_var_prices_490','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"494\":\"50.00\",\"493\":\"35.00\",\"495\":\"35.00\"},\"regular_price\":{\"494\":\"50.00\",\"493\":\"35.00\",\"495\":\"35.00\"},\"sale_price\":{\"494\":\"50.00\",\"493\":\"35.00\",\"495\":\"35.00\"}}}','off'), -(31944,'_transient_timeout_wc_product_children_554','1752959978','off'), -(31945,'_transient_wc_product_children_554','a:3:{s:3:\"all\";a:2:{i:0;i:555;i:1;i:556;}s:7:\"visible\";a:2:{i:0;i:555;i:1;i:556;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(31946,'_transient_timeout_wc_var_prices_554','1752934784','off'), -(31947,'_transient_wc_var_prices_554','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"555\":\"65.00\",\"556\":\"40.00\"},\"regular_price\":{\"555\":\"65.00\",\"556\":\"40.00\"},\"sale_price\":{\"555\":\"65.00\",\"556\":\"40.00\"}}}','off'), -(31956,'_transient_timeout_wc_product_children_545','1752959978','off'), -(31957,'_transient_wc_product_children_545','a:3:{s:3:\"all\";a:2:{i:0;i:553;i:1;i:552;}s:7:\"visible\";a:2:{i:0;i:553;i:1;i:552;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(31958,'_transient_timeout_wc_var_prices_545','1752934784','off'), -(31959,'_transient_wc_var_prices_545','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"553\":\"70.00\",\"552\":\"45.00\"},\"regular_price\":{\"553\":\"70.00\",\"552\":\"45.00\"},\"sale_price\":{\"553\":\"70.00\",\"552\":\"45.00\"}}}','off'), -(32386,'_transient_timeout_wc_product_children_953','1752934784','off'), -(32387,'_transient_wc_product_children_953','a:3:{s:3:\"all\";a:8:{i:0;i:954;i:1;i:955;i:2;i:956;i:3;i:957;i:4;i:958;i:5;i:959;i:6;i:960;i:7;i:961;}s:7:\"visible\";a:8:{i:0;i:954;i:1;i:955;i:2;i:956;i:3;i:957;i:4;i:958;i:5;i:959;i:6;i:960;i:7;i:961;}s:7:\"version\";s:10:\"1750342773\";}','off'), -(32388,'_transient_timeout_wc_var_prices_953','1752934784','off'), -(32389,'_transient_wc_var_prices_953','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"954\":\"115.00\",\"955\":\"115.00\",\"956\":\"115.00\",\"957\":\"115.00\",\"958\":\"115.00\",\"959\":\"115.00\",\"960\":\"115.00\",\"961\":\"115.00\"},\"regular_price\":{\"954\":\"115.00\",\"955\":\"115.00\",\"956\":\"115.00\",\"957\":\"115.00\",\"958\":\"115.00\",\"959\":\"115.00\",\"960\":\"115.00\",\"961\":\"115.00\"},\"sale_price\":{\"954\":\"115.00\",\"955\":\"115.00\",\"956\":\"115.00\",\"957\":\"115.00\",\"958\":\"115.00\",\"959\":\"115.00\",\"960\":\"115.00\",\"961\":\"115.00\"}}}','off'), -(32434,'_transient_timeout_wc_product_children_288','1752983787','off'), -(32435,'_transient_wc_product_children_288','a:3:{s:3:\"all\";a:3:{i:0;i:646;i:1;i:645;i:2;i:647;}s:7:\"visible\";a:3:{i:0;i:646;i:1;i:645;i:2;i:647;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(32436,'_transient_timeout_wc_var_prices_288','1752934784','off'), -(32437,'_transient_wc_var_prices_288','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"646\":\"90.00\",\"645\":\"60.00\",\"647\":\"60.00\"},\"regular_price\":{\"646\":\"90.00\",\"645\":\"60.00\",\"647\":\"60.00\"},\"sale_price\":{\"646\":\"90.00\",\"645\":\"60.00\",\"647\":\"60.00\"}}}','off'), -(32448,'_transient_timeout_wc_product_children_285','1752983787','off'), -(32449,'_transient_wc_product_children_285','a:3:{s:3:\"all\";a:3:{i:0;i:642;i:1;i:641;i:2;i:643;}s:7:\"visible\";a:3:{i:0;i:642;i:1;i:641;i:2;i:643;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(32450,'_transient_timeout_wc_var_prices_285','1752934784','off'), -(32451,'_transient_wc_var_prices_285','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"642\":\"85.00\",\"641\":\"55.00\",\"643\":\"55.00\"},\"regular_price\":{\"642\":\"85.00\",\"641\":\"55.00\",\"643\":\"55.00\"},\"sale_price\":{\"642\":\"85.00\",\"641\":\"55.00\",\"643\":\"55.00\"}}}','off'), -(32468,'_transient_timeout_wc_product_children_213','1752963415','off'), -(32469,'_transient_wc_product_children_213','a:3:{s:3:\"all\";a:3:{i:0;i:570;i:1;i:569;i:2;i:571;}s:7:\"visible\";a:3:{i:0;i:570;i:1;i:569;i:2;i:571;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(32470,'_transient_timeout_wc_var_prices_213','1752934784','off'), -(32471,'_transient_wc_var_prices_213','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"570\":\"75.00\",\"569\":\"50.00\",\"571\":\"50.00\"},\"regular_price\":{\"570\":\"75.00\",\"569\":\"50.00\",\"571\":\"50.00\"},\"sale_price\":{\"570\":\"75.00\",\"569\":\"50.00\",\"571\":\"50.00\"}}}','off'), -(32487,'_transient_timeout_wc_product_children_183','1752934784','off'), -(32488,'_transient_wc_product_children_183','a:3:{s:3:\"all\";a:3:{i:0;i:566;i:1;i:565;i:2;i:567;}s:7:\"visible\";a:3:{i:0;i:566;i:1;i:565;i:2;i:567;}s:7:\"version\";s:10:\"1750342773\";}','off'), -(32489,'_transient_timeout_wc_var_prices_183','1752934784','off'), -(32490,'_transient_wc_var_prices_183','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"566\":\"70.00\",\"565\":\"45.00\",\"567\":\"45.00\"},\"regular_price\":{\"566\":\"70.00\",\"565\":\"45.00\",\"567\":\"45.00\"},\"sale_price\":{\"566\":\"70.00\",\"565\":\"45.00\",\"567\":\"45.00\"}}}','off'), -(32506,'_transient_timeout_wc_product_children_123','1752979705','off'), -(32507,'_transient_wc_product_children_123','a:3:{s:3:\"all\";a:8:{i:0;i:124;i:1;i:125;i:2;i:126;i:3;i:127;i:4;i:128;i:5;i:129;i:6;i:130;i:7;i:530;}s:7:\"visible\";a:8:{i:0;i:124;i:1;i:125;i:2;i:126;i:3;i:127;i:4;i:128;i:5;i:129;i:6;i:130;i:7;i:530;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(32508,'_transient_timeout_wc_var_prices_123','1752934784','off'), -(32509,'_transient_wc_var_prices_123','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"124\":\"100.00\",\"125\":\"100.00\",\"126\":\"100.00\",\"127\":\"100.00\",\"128\":\"100.00\",\"129\":\"100.00\",\"130\":\"100.00\",\"530\":\"100.00\"},\"regular_price\":{\"124\":\"100.00\",\"125\":\"100.00\",\"126\":\"100.00\",\"127\":\"100.00\",\"128\":\"100.00\",\"129\":\"100.00\",\"130\":\"100.00\",\"530\":\"100.00\"},\"sale_price\":{\"124\":\"100.00\",\"125\":\"100.00\",\"126\":\"100.00\",\"127\":\"100.00\",\"128\":\"100.00\",\"129\":\"100.00\",\"130\":\"100.00\",\"530\":\"100.00\"}}}','off'), -(32537,'_transient_timeout_wc_product_children_168','1752979705','off'), -(32538,'_transient_wc_product_children_168','a:3:{s:3:\"all\";a:2:{i:0;i:200;i:1;i:201;}s:7:\"visible\";a:2:{i:0;i:200;i:1;i:201;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(32539,'_transient_timeout_wc_var_prices_168','1752934784','off'), -(32540,'_transient_wc_var_prices_168','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"200\":\"100.00\",\"201\":\"110.00\"},\"regular_price\":{\"200\":\"100.00\",\"201\":\"110.00\"},\"sale_price\":{\"200\":\"100.00\",\"201\":\"110.00\"}}}','off'), -(32731,'_transient_wc_attribute_taxonomies','a:3:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:4:\"side\";s:15:\"attribute_label\";s:4:\"Side\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:2;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:5:\"stone\";s:15:\"attribute_label\";s:5:\"Stone\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"0\";}}','on'), -(32745,'_transient_timeout_wc_report_orders_stats_83f4b111ee4df55f5279ee6c94287e6c','1750947530','off'), -(32746,'_transient_wc_report_orders_stats_83f4b111ee4df55f5279ee6c94287e6c','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(32747,'_transient_timeout_wc_report_orders_stats_79d00df3b2e1f5542e612556aedaa2b9','1750947530','off'), -(32748,'_transient_wc_report_orders_stats_79d00df3b2e1f5542e612556aedaa2b9','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(32749,'_transient_timeout_wc_report_products_stats_481183ccf1f2f17d26690996e83b9a6d','1750947530','off'), -(32750,'_transient_wc_report_products_stats_481183ccf1f2f17d26690996e83b9a6d','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(32751,'_transient_timeout_wc_report_variations_stats_c0c0915417128f05ed409fd9709e454b','1750947530','off'), -(32752,'_transient_wc_report_variations_stats_c0c0915417128f05ed409fd9709e454b','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(32753,'_transient_timeout_wc_report_orders_stats_3f4690951ec3a38c568d32118d1c8bc5','1750947530','off'), -(32754,'_transient_wc_report_orders_stats_3f4690951ec3a38c568d32118d1c8bc5','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:130;s:8:\"products\";i:3;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:19:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:130;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:19;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(32755,'_transient_timeout_wc_report_products_stats_6e12e57e31f3b13745e2d95d01318d7d','1750947530','off'), -(32756,'_transient_wc_report_products_stats_6e12e57e31f3b13745e2d95d01318d7d','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:19:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:19;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(32767,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1750410671;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'), -(32768,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750412472;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/wc-multishipping\";s:4:\"slug\";s:16:\"wc-multishipping\";s:6:\"plugin\";s:37:\"wc-multishipping/wc-multishipping.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wc-multishipping/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wc-multishipping.2.5.7.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wc-multishipping/assets/icon-128x128.png?rev=2477036\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:17:\"falcon/falcon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/falcon\";s:4:\"slug\";s:6:\"falcon\";s:6:\"plugin\";s:17:\"falcon/falcon.php\";s:11:\"new_version\";s:5:\"2.8.5\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/falcon/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/falcon.2.8.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";s:3:\"svg\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/falcon/assets/banner-1544x500.png?rev=3052567\";s:2:\"1x\";s:61:\"https://ps.w.org/falcon/assets/banner-772x250.png?rev=3052567\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/force-regenerate-thumbnails\";s:4:\"slug\";s:27:\"force-regenerate-thumbnails\";s:6:\"plugin\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/force-regenerate-thumbnails/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/force-regenerate-thumbnails.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-256x256.jpg?rev=2816275\";s:2:\"1x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-128x128.jpg?rev=2816275\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-1544x500.jpg?rev=2816275\";s:2:\"1x\";s:82:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-772x250.jpg?rev=2816275\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/woo-preview-emails\";s:4:\"slug\";s:18:\"woo-preview-emails\";s:6:\"plugin\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:11:\"new_version\";s:6:\"2.2.14\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/woo-preview-emails/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/woo-preview-emails.2.2.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";s:2:\"1x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.1.0\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.18.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.18.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.9.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}s:25:\"wp-openapi/wp-openapi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-openapi\";s:4:\"slug\";s:10:\"wp-openapi\";s:6:\"plugin\";s:25:\"wp-openapi/wp-openapi.php\";s:11:\"new_version\";s:6:\"1.0.20\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-openapi/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-openapi.1.0.20.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:54:\"https://s.w.org/plugins/geopattern-icon/wp-openapi.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}}s:7:\"checked\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";s:5:\"2.5.7\";s:17:\"falcon/falcon.php\";s:5:\"2.8.5\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:5:\"2.2.2\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:6:\"2.2.14\";s:31:\"query-monitor/query-monitor.php\";s:6:\"3.18.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.4\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.9.4\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:6:\"1.14.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.5.0\";s:25:\"wp-openapi/wp-openapi.php\";s:6:\"1.0.20\";}}','off'), -(32769,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750371071;s:7:\"checked\";a:2:{s:18:\"haiku-atelier-2024\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','off'), -(32776,'_transient_timeout_wc_product_children_941','1752934778','off'), -(32777,'_transient_wc_product_children_941','a:3:{s:3:\"all\";a:8:{i:0;i:944;i:1;i:945;i:2;i:946;i:3;i:947;i:4;i:948;i:5;i:949;i:6;i:950;i:7;i:951;}s:7:\"visible\";a:8:{i:0;i:944;i:1;i:945;i:2;i:946;i:3;i:947;i:4;i:948;i:5;i:949;i:6;i:950;i:7;i:951;}s:7:\"version\";s:10:\"1750342773\";}','off'), -(32778,'_transient_timeout_wc_var_prices_941','1752934784','off'), -(32779,'_transient_wc_var_prices_941','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"944\":\"110.00\",\"945\":\"110.00\",\"946\":\"110.00\",\"947\":\"110.00\",\"948\":\"110.00\",\"949\":\"110.00\",\"950\":\"110.00\",\"951\":\"110.00\"},\"regular_price\":{\"944\":\"110.00\",\"945\":\"110.00\",\"946\":\"110.00\",\"947\":\"110.00\",\"948\":\"110.00\",\"949\":\"110.00\",\"950\":\"110.00\",\"951\":\"110.00\"},\"sale_price\":{\"944\":\"110.00\",\"945\":\"110.00\",\"946\":\"110.00\",\"947\":\"110.00\",\"948\":\"110.00\",\"949\":\"110.00\",\"950\":\"110.00\",\"951\":\"110.00\"}}}','off'), -(32787,'_transient_timeout_wc_product_children_521','1752959978','off'), -(32788,'_transient_wc_product_children_521','a:3:{s:3:\"all\";a:2:{i:0;i:926;i:1;i:523;}s:7:\"visible\";a:2:{i:0;i:926;i:1;i:523;}s:7:\"version\";s:10:\"1750363871\";}','off'), -(33135,'_transient_timeout_wc_term_counts','1752957881','off'), -(33136,'_transient_wc_term_counts','a:5:{s:14:\"30_product_cat\";i:22;s:14:\"31_product_cat\";i:8;s:14:\"32_product_cat\";i:5;s:14:\"33_product_cat\";i:5;s:14:\"15_product_cat\";i:1;}','off'), -(34049,'_site_transient_timeout_browser_6730ba9290070c6a10f3150d0424bb3b','1751018934','off'), -(34050,'_site_transient_browser_6730ba9290070c6a10f3150d0424bb3b','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"139.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'), -(34051,'_site_transient_timeout_php_check_928de2ffe6de60794a9b6aa48df2b0c8','1751018934','off'), -(34052,'_site_transient_php_check_928de2ffe6de60794a9b6aa48df2b0c8','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'), -(34059,'_transient_timeout_wc_report_orders_stats_cf7765c494e34de18135f6e4cbf05115','1751018935','off'), -(34060,'_transient_wc_report_orders_stats_cf7765c494e34de18135f6e4cbf05115','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(34061,'_transient_timeout_wc_report_orders_stats_50f6925f1c955c89b8a3edcc95509250','1751018935','off'), -(34062,'_transient_wc_report_orders_stats_50f6925f1c955c89b8a3edcc95509250','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(34063,'_transient_timeout_wc_report_products_stats_6026c4dd24ebfc1eff41ea21e575b418','1751018935','off'), -(34064,'_transient_wc_report_products_stats_6026c4dd24ebfc1eff41ea21e575b418','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(34065,'_transient_timeout_wc_report_variations_stats_19f6143541798f5f8ac7045d1bbca67b','1751018935','off'), -(34066,'_transient_wc_report_variations_stats_19f6143541798f5f8ac7045d1bbca67b','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(34067,'_transient_timeout_wc_report_orders_stats_c69bc0c26bdfb816b49ef03f20548062','1751018935','off'), -(34068,'_transient_wc_report_orders_stats_c69bc0c26bdfb816b49ef03f20548062','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:130;s:8:\"products\";i:3;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:20:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:130;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2025-06-20\";s:10:\"date_start\";s:19:\"2025-06-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-19 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:20;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(34069,'_transient_timeout_wc_report_products_stats_c4c7ff7ea597c86261b3b8641d847cb1','1751018935','off'), -(34070,'_transient_wc_report_products_stats_c4c7ff7ea597c86261b3b8641d847cb1','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:20:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2025-06-20\";s:10:\"date_start\";s:19:\"2025-06-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-19 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:20;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), -(34071,'_transient_timeout_wc_low_stock_count','1753006135','off'), -(34072,'_transient_wc_low_stock_count','0','off'), -(34073,'_transient_timeout_wc_outofstock_count','1753006135','off'), -(34074,'_transient_wc_outofstock_count','0','off'), -(34081,'woocommerce_attribute_lookup_enabled','yes','auto'); -/*!40000 ALTER TABLE `haikuwp_options` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_postmeta` --- - -DROP TABLE IF EXISTS `haikuwp_postmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_postmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `post_id` (`post_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=13100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_postmeta` --- - -LOCK TABLES `haikuwp_postmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_postmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_postmeta` VALUES -(22,13,'_edit_last','1'), -(23,13,'_edit_lock','1746463848:1'), -(24,14,'_edit_last','1'), -(25,14,'_edit_lock','1722975574:1'), -(28,16,'_edit_last','1'), -(29,16,'_edit_lock','1722958355:1'), -(30,17,'_edit_last','1'), -(31,17,'_edit_lock','1731277749:1'), -(32,18,'_wp_page_template','default'), -(33,18,'_edit_last','1'), -(34,18,'_edit_lock','1722864017:1'), -(35,19,'_edit_last','1'), -(36,19,'_edit_lock','1732548394:1'), -(71,22,'_variation_description',''), -(72,22,'total_sales','0'), -(73,22,'_tax_status','taxable'), -(74,22,'_tax_class','parent'), -(75,22,'_manage_stock','no'), -(76,22,'_backorders','no'), -(77,22,'_sold_individually','no'), -(78,22,'_virtual','no'), -(79,22,'_downloadable','no'), -(80,22,'_download_limit','-1'), -(81,22,'_download_expiry','-1'), -(82,22,'_stock',NULL), -(83,22,'_stock_status','instock'), -(84,22,'_wc_average_rating','0'), -(85,22,'_wc_review_count','0'), -(86,22,'attribute_matiere','Or'), -(87,22,'_product_version','9.1.4'), -(88,23,'_variation_description',''), -(89,23,'total_sales','0'), -(90,23,'_tax_status','taxable'), -(91,23,'_tax_class','parent'), -(92,23,'_manage_stock','no'), -(93,23,'_backorders','no'), -(94,23,'_sold_individually','no'), -(95,23,'_virtual','no'), -(96,23,'_downloadable','no'), -(97,23,'_download_limit','-1'), -(98,23,'_download_expiry','-1'), -(99,23,'_stock',NULL), -(100,23,'_stock_status','instock'), -(101,23,'_wc_average_rating','0'), -(102,23,'_wc_review_count','0'), -(103,23,'attribute_matiere','Argent'), -(104,23,'_product_version','9.1.4'), -(147,26,'_edit_last','1'), -(148,26,'_edit_lock','1722975540:1'), -(149,27,'_edit_last','1'), -(150,27,'_edit_lock','1722975561:1'), -(732,72,'_sku','HADOU-B'), -(733,72,'total_sales','0'), -(734,72,'_tax_status','taxable'), -(735,72,'_tax_class',''), -(736,72,'_manage_stock','no'), -(737,72,'_backorders','no'), -(738,72,'_sold_individually','no'), -(739,72,'_virtual','no'), -(740,72,'_downloadable','no'), -(741,72,'_download_limit','-1'), -(742,72,'_download_expiry','-1'), -(743,72,'_thumbnail_id','81'), -(744,72,'_stock',NULL), -(745,72,'_stock_status','instock'), -(746,72,'_wc_average_rating','0'), -(747,72,'_wc_review_count','0'), -(748,72,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(749,72,'_product_version','9.4.2'), -(753,73,'_variation_description',''), -(754,73,'_regular_price','85'), -(755,73,'total_sales','0'), -(756,73,'_tax_status','taxable'), -(757,73,'_tax_class','parent'), -(758,73,'_manage_stock','no'), -(759,73,'_backorders','no'), -(760,73,'_sold_individually','no'), -(761,73,'_virtual','no'), -(762,73,'_downloadable','no'), -(763,73,'_download_limit','-1'), -(764,73,'_download_expiry','-1'), -(765,73,'_thumbnail_id','0'), -(766,73,'_stock',NULL), -(767,73,'_stock_status','instock'), -(768,73,'_wc_average_rating','0'), -(769,73,'_wc_review_count','0'), -(770,73,'attribute_pa_size','50'), -(771,73,'_price','85'), -(772,73,'_product_version','9.3.2'), -(773,74,'_variation_description',''), -(774,74,'_regular_price','85'), -(775,74,'total_sales','0'), -(776,74,'_tax_status','taxable'), -(777,74,'_tax_class','parent'), -(778,74,'_manage_stock','no'), -(779,74,'_backorders','no'), -(780,74,'_sold_individually','no'), -(781,74,'_virtual','no'), -(782,74,'_downloadable','no'), -(783,74,'_download_limit','-1'), -(784,74,'_download_expiry','-1'), -(785,74,'_thumbnail_id','0'), -(786,74,'_stock',NULL), -(787,74,'_stock_status','instock'), -(788,74,'_wc_average_rating','0'), -(789,74,'_wc_review_count','0'), -(790,74,'attribute_pa_size','52'), -(791,74,'_price','85'), -(792,74,'_product_version','9.3.2'), -(793,75,'_variation_description',''), -(794,75,'_regular_price','85'), -(795,75,'total_sales','0'), -(796,75,'_tax_status','taxable'), -(797,75,'_tax_class','parent'), -(798,75,'_manage_stock','no'), -(799,75,'_backorders','no'), -(800,75,'_sold_individually','no'), -(801,75,'_virtual','no'), -(802,75,'_downloadable','no'), -(803,75,'_download_limit','-1'), -(804,75,'_download_expiry','-1'), -(805,75,'_thumbnail_id','0'), -(806,75,'_stock',NULL), -(807,75,'_stock_status','instock'), -(808,75,'_wc_average_rating','0'), -(809,75,'_wc_review_count','0'), -(810,75,'attribute_pa_size','54'), -(811,75,'_price','85'), -(812,75,'_product_version','9.3.2'), -(813,76,'_variation_description',''), -(814,76,'_regular_price','85'), -(815,76,'total_sales','0'), -(816,76,'_tax_status','taxable'), -(817,76,'_tax_class','parent'), -(818,76,'_manage_stock','no'), -(819,76,'_backorders','no'), -(820,76,'_sold_individually','no'), -(821,76,'_virtual','no'), -(822,76,'_downloadable','no'), -(823,76,'_download_limit','-1'), -(824,76,'_download_expiry','-1'), -(825,76,'_thumbnail_id','0'), -(826,76,'_stock',NULL), -(827,76,'_stock_status','instock'), -(828,76,'_wc_average_rating','0'), -(829,76,'_wc_review_count','0'), -(830,76,'attribute_pa_size','56'), -(831,76,'_price','85'), -(832,76,'_product_version','9.3.2'), -(833,77,'_variation_description',''), -(834,77,'_regular_price','85'), -(835,77,'total_sales','0'), -(836,77,'_tax_status','taxable'), -(837,77,'_tax_class','parent'), -(838,77,'_manage_stock','no'), -(839,77,'_backorders','no'), -(840,77,'_sold_individually','no'), -(841,77,'_virtual','no'), -(842,77,'_downloadable','no'), -(843,77,'_download_limit','-1'), -(844,77,'_download_expiry','-1'), -(845,77,'_thumbnail_id','0'), -(846,77,'_stock',NULL), -(847,77,'_stock_status','instock'), -(848,77,'_wc_average_rating','0'), -(849,77,'_wc_review_count','0'), -(850,77,'attribute_pa_size','58'), -(851,77,'_price','85'), -(852,77,'_product_version','9.3.2'), -(853,78,'_variation_description',''), -(854,78,'_regular_price','85'), -(855,78,'total_sales','0'), -(856,78,'_tax_status','taxable'), -(857,78,'_tax_class','parent'), -(858,78,'_manage_stock','no'), -(859,78,'_backorders','no'), -(860,78,'_sold_individually','no'), -(861,78,'_virtual','no'), -(862,78,'_downloadable','no'), -(863,78,'_download_limit','-1'), -(864,78,'_download_expiry','-1'), -(865,78,'_thumbnail_id','0'), -(866,78,'_stock',NULL), -(867,78,'_stock_status','instock'), -(868,78,'_wc_average_rating','0'), -(869,78,'_wc_review_count','0'), -(870,78,'attribute_pa_size','60'), -(871,78,'_price','85'), -(872,78,'_product_version','9.3.2'), -(873,79,'_variation_description',''), -(874,79,'_regular_price','85'), -(875,79,'total_sales','0'), -(876,79,'_tax_status','taxable'), -(877,79,'_tax_class','parent'), -(878,79,'_manage_stock','no'), -(879,79,'_backorders','no'), -(880,79,'_sold_individually','no'), -(881,79,'_virtual','no'), -(882,79,'_downloadable','no'), -(883,79,'_download_limit','-1'), -(884,79,'_download_expiry','-1'), -(885,79,'_thumbnail_id','0'), -(886,79,'_stock',NULL), -(887,79,'_stock_status','instock'), -(888,79,'_wc_average_rating','0'), -(889,79,'_wc_review_count','0'), -(890,79,'attribute_pa_size','62'), -(891,79,'_price','85'), -(892,79,'_product_version','9.3.2'), -(894,72,'_edit_lock','1732521768:1'), -(915,81,'_wp_attached_file','2024/09/HADOU-B.jpg'), -(916,81,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/09/HADOU-B.jpg\";s:8:\"filesize\";i:40136;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"HADOU-B.jpg\";}'), -(917,81,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), -(927,72,'_edit_last','1'), -(954,72,'_price','85'), -(1183,100,'_wp_attached_file','2024/09/HADOU-B-mix.jpg'), -(1184,100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/HADOU-B-mix.jpg\";s:8:\"filesize\";i:316713;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-B-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"HADOU-B-mix.jpg\";}'), -(1185,100,'_wp_attachment_image_alt','Hadou wavy silver ring and Kishou signet ring'), -(1194,102,'_sku','HADOU-B-s'), -(1195,102,'total_sales','0'), -(1196,102,'_tax_status','taxable'), -(1197,102,'_tax_class',''), -(1198,102,'_manage_stock','no'), -(1199,102,'_backorders','no'), -(1200,102,'_sold_individually','no'), -(1201,102,'_virtual','no'), -(1202,102,'_downloadable','no'), -(1203,102,'_download_limit','-1'), -(1204,102,'_download_expiry','-1'), -(1205,102,'_thumbnail_id','110'), -(1206,102,'_stock',NULL), -(1207,102,'_stock_status','instock'), -(1208,102,'_wc_average_rating','0'), -(1209,102,'_wc_review_count','0'), -(1210,102,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1211,102,'_product_version','9.4.2'), -(1216,103,'_variation_description',''), -(1217,103,'_regular_price','85'), -(1218,103,'total_sales','0'), -(1219,103,'_tax_status','taxable'), -(1220,103,'_tax_class','parent'), -(1221,103,'_manage_stock','no'), -(1222,103,'_backorders','no'), -(1223,103,'_sold_individually','no'), -(1224,103,'_virtual','no'), -(1225,103,'_downloadable','no'), -(1226,103,'_download_limit','-1'), -(1227,103,'_download_expiry','-1'), -(1228,103,'_thumbnail_id','0'), -(1229,103,'_stock',NULL), -(1230,103,'_stock_status','instock'), -(1231,103,'_wc_average_rating','0'), -(1232,103,'_wc_review_count','0'), -(1233,103,'attribute_pa_size','50'), -(1234,103,'_price','85'), -(1235,103,'_product_version','9.3.3'), -(1236,104,'_variation_description',''), -(1237,104,'_regular_price','85'), -(1238,104,'total_sales','0'), -(1239,104,'_tax_status','taxable'), -(1240,104,'_tax_class','parent'), -(1241,104,'_manage_stock','no'), -(1242,104,'_backorders','no'), -(1243,104,'_sold_individually','no'), -(1244,104,'_virtual','no'), -(1245,104,'_downloadable','no'), -(1246,104,'_download_limit','-1'), -(1247,104,'_download_expiry','-1'), -(1248,104,'_thumbnail_id','0'), -(1249,104,'_stock',NULL), -(1250,104,'_stock_status','instock'), -(1251,104,'_wc_average_rating','0'), -(1252,104,'_wc_review_count','0'), -(1253,104,'attribute_pa_size','52'), -(1254,104,'_price','85'), -(1255,104,'_product_version','9.3.3'), -(1256,105,'_variation_description',''), -(1257,105,'_regular_price','85'), -(1258,105,'total_sales','0'), -(1259,105,'_tax_status','taxable'), -(1260,105,'_tax_class','parent'), -(1261,105,'_manage_stock','no'), -(1262,105,'_backorders','no'), -(1263,105,'_sold_individually','no'), -(1264,105,'_virtual','no'), -(1265,105,'_downloadable','no'), -(1266,105,'_download_limit','-1'), -(1267,105,'_download_expiry','-1'), -(1268,105,'_thumbnail_id','0'), -(1269,105,'_stock',NULL), -(1270,105,'_stock_status','instock'), -(1271,105,'_wc_average_rating','0'), -(1272,105,'_wc_review_count','0'), -(1273,105,'attribute_pa_size','54'), -(1274,105,'_price','85'), -(1275,105,'_product_version','9.3.3'), -(1276,106,'_variation_description',''), -(1277,106,'_regular_price','85'), -(1278,106,'total_sales','0'), -(1279,106,'_tax_status','taxable'), -(1280,106,'_tax_class','parent'), -(1281,106,'_manage_stock','no'), -(1282,106,'_backorders','no'), -(1283,106,'_sold_individually','no'), -(1284,106,'_virtual','no'), -(1285,106,'_downloadable','no'), -(1286,106,'_download_limit','-1'), -(1287,106,'_download_expiry','-1'), -(1288,106,'_thumbnail_id','0'), -(1289,106,'_stock',NULL), -(1290,106,'_stock_status','instock'), -(1291,106,'_wc_average_rating','0'), -(1292,106,'_wc_review_count','0'), -(1293,106,'attribute_pa_size','56'), -(1294,106,'_price','85'), -(1295,106,'_product_version','9.3.3'), -(1296,107,'_variation_description',''), -(1297,107,'_regular_price','85'), -(1298,107,'total_sales','0'), -(1299,107,'_tax_status','taxable'), -(1300,107,'_tax_class','parent'), -(1301,107,'_manage_stock','no'), -(1302,107,'_backorders','no'), -(1303,107,'_sold_individually','no'), -(1304,107,'_virtual','no'), -(1305,107,'_downloadable','no'), -(1306,107,'_download_limit','-1'), -(1307,107,'_download_expiry','-1'), -(1308,107,'_thumbnail_id','0'), -(1309,107,'_stock',NULL), -(1310,107,'_stock_status','instock'), -(1311,107,'_wc_average_rating','0'), -(1312,107,'_wc_review_count','0'), -(1313,107,'attribute_pa_size','58'), -(1314,107,'_price','85'), -(1315,107,'_product_version','9.3.3'), -(1316,108,'_variation_description',''), -(1317,108,'_regular_price','85'), -(1318,108,'total_sales','0'), -(1319,108,'_tax_status','taxable'), -(1320,108,'_tax_class','parent'), -(1321,108,'_manage_stock','no'), -(1322,108,'_backorders','no'), -(1323,108,'_sold_individually','no'), -(1324,108,'_virtual','no'), -(1325,108,'_downloadable','no'), -(1326,108,'_download_limit','-1'), -(1327,108,'_download_expiry','-1'), -(1328,108,'_thumbnail_id','0'), -(1329,108,'_stock',NULL), -(1330,108,'_stock_status','instock'), -(1331,108,'_wc_average_rating','0'), -(1332,108,'_wc_review_count','0'), -(1333,108,'attribute_pa_size','60'), -(1334,108,'_price','85'), -(1335,108,'_product_version','9.3.3'), -(1336,109,'_variation_description',''), -(1337,109,'_regular_price','85'), -(1338,109,'total_sales','0'), -(1339,109,'_tax_status','taxable'), -(1340,109,'_tax_class','parent'), -(1341,109,'_manage_stock','no'), -(1342,109,'_backorders','no'), -(1343,109,'_sold_individually','no'), -(1344,109,'_virtual','no'), -(1345,109,'_downloadable','no'), -(1346,109,'_download_limit','-1'), -(1347,109,'_download_expiry','-1'), -(1348,109,'_thumbnail_id','0'), -(1349,109,'_stock',NULL), -(1350,109,'_stock_status','instock'), -(1351,109,'_wc_average_rating','0'), -(1352,109,'_wc_review_count','0'), -(1353,109,'attribute_pa_size','62'), -(1354,109,'_price','85'), -(1355,109,'_product_version','9.3.3'), -(1357,102,'_edit_lock','1750279209:1'), -(1358,110,'_wp_attached_file','2024/09/IKKAN-B2-arg.jpg'), -(1359,110,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/09/IKKAN-B2-arg.jpg\";s:8:\"filesize\";i:39627;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-B2-arg.jpg\";}'), -(1360,110,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), -(1361,111,'_wp_attached_file','2024/09/IKKAN-B-arg.jpg'), -(1362,111,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/IKKAN-B-arg.jpg\";s:8:\"filesize\";i:90791;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"IKKAN-B-arg.jpg\";}'), -(1363,111,'_wp_attachment_image_alt','Ikkan'), -(1364,112,'_wp_attached_file','2024/09/IKKAN-BaKIGEN-Ba.jpg'), -(1365,112,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/09/IKKAN-BaKIGEN-Ba.jpg\";s:8:\"filesize\";i:237493;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"IKKAN-BaKIGEN-Ba-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"IKKAN-BaKIGEN-Ba.jpg\";}'), -(1366,112,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), -(1369,102,'_edit_last','1'), -(1382,113,'_sku','HADOU-B-g'), -(1383,113,'total_sales','0'), -(1384,113,'_tax_status','taxable'), -(1385,113,'_tax_class',''), -(1386,113,'_manage_stock','no'), -(1387,113,'_backorders','no'), -(1388,113,'_sold_individually','no'), -(1389,113,'_virtual','no'), -(1390,113,'_downloadable','no'), -(1391,113,'_download_limit','-1'), -(1392,113,'_download_expiry','-1'), -(1394,113,'_stock',NULL), -(1395,113,'_stock_status','instock'), -(1396,113,'_wc_average_rating','0'), -(1397,113,'_wc_review_count','0'), -(1398,113,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1399,113,'_product_version','9.4.2'), -(1404,114,'_variation_description',''), -(1405,114,'_regular_price','90'), -(1406,114,'total_sales','0'), -(1407,114,'_tax_status','taxable'), -(1408,114,'_tax_class','parent'), -(1409,114,'_manage_stock','no'), -(1410,114,'_backorders','no'), -(1411,114,'_sold_individually','no'), -(1412,114,'_virtual','no'), -(1413,114,'_downloadable','no'), -(1414,114,'_download_limit','-1'), -(1415,114,'_download_expiry','-1'), -(1416,114,'_thumbnail_id','0'), -(1417,114,'_stock',NULL), -(1418,114,'_stock_status','instock'), -(1419,114,'_wc_average_rating','0'), -(1420,114,'_wc_review_count','0'), -(1421,114,'attribute_pa_size','50'), -(1422,114,'_price','90'), -(1423,114,'_product_version','9.3.3'), -(1424,115,'_variation_description',''), -(1425,115,'_regular_price','90'), -(1426,115,'total_sales','0'), -(1427,115,'_tax_status','taxable'), -(1428,115,'_tax_class','parent'), -(1429,115,'_manage_stock','no'), -(1430,115,'_backorders','no'), -(1431,115,'_sold_individually','no'), -(1432,115,'_virtual','no'), -(1433,115,'_downloadable','no'), -(1434,115,'_download_limit','-1'), -(1435,115,'_download_expiry','-1'), -(1436,115,'_thumbnail_id','0'), -(1437,115,'_stock',NULL), -(1438,115,'_stock_status','instock'), -(1439,115,'_wc_average_rating','0'), -(1440,115,'_wc_review_count','0'), -(1441,115,'attribute_pa_size','52'), -(1442,115,'_price','90'), -(1443,115,'_product_version','9.3.3'), -(1444,116,'_variation_description',''), -(1445,116,'_regular_price','90'), -(1446,116,'total_sales','0'), -(1447,116,'_tax_status','taxable'), -(1448,116,'_tax_class','parent'), -(1449,116,'_manage_stock','no'), -(1450,116,'_backorders','no'), -(1451,116,'_sold_individually','no'), -(1452,116,'_virtual','no'), -(1453,116,'_downloadable','no'), -(1454,116,'_download_limit','-1'), -(1455,116,'_download_expiry','-1'), -(1456,116,'_thumbnail_id','0'), -(1457,116,'_stock',NULL), -(1458,116,'_stock_status','instock'), -(1459,116,'_wc_average_rating','0'), -(1460,116,'_wc_review_count','0'), -(1461,116,'attribute_pa_size','54'), -(1462,116,'_price','90'), -(1463,116,'_product_version','9.3.3'), -(1464,117,'_variation_description',''), -(1465,117,'_regular_price','90'), -(1466,117,'total_sales','0'), -(1467,117,'_tax_status','taxable'), -(1468,117,'_tax_class','parent'), -(1469,117,'_manage_stock','no'), -(1470,117,'_backorders','no'), -(1471,117,'_sold_individually','no'), -(1472,117,'_virtual','no'), -(1473,117,'_downloadable','no'), -(1474,117,'_download_limit','-1'), -(1475,117,'_download_expiry','-1'), -(1476,117,'_thumbnail_id','0'), -(1477,117,'_stock',NULL), -(1478,117,'_stock_status','instock'), -(1479,117,'_wc_average_rating','0'), -(1480,117,'_wc_review_count','0'), -(1481,117,'attribute_pa_size','56'), -(1482,117,'_price','90'), -(1483,117,'_product_version','9.3.3'), -(1484,118,'_variation_description',''), -(1485,118,'_regular_price','90'), -(1486,118,'total_sales','0'), -(1487,118,'_tax_status','taxable'), -(1488,118,'_tax_class','parent'), -(1489,118,'_manage_stock','no'), -(1490,118,'_backorders','no'), -(1491,118,'_sold_individually','no'), -(1492,118,'_virtual','no'), -(1493,118,'_downloadable','no'), -(1494,118,'_download_limit','-1'), -(1495,118,'_download_expiry','-1'), -(1496,118,'_thumbnail_id','0'), -(1497,118,'_stock',NULL), -(1498,118,'_stock_status','instock'), -(1499,118,'_wc_average_rating','0'), -(1500,118,'_wc_review_count','0'), -(1501,118,'attribute_pa_size','58'), -(1502,118,'_price','90'), -(1503,118,'_product_version','9.3.3'), -(1504,119,'_variation_description',''), -(1505,119,'_regular_price','90'), -(1506,119,'total_sales','0'), -(1507,119,'_tax_status','taxable'), -(1508,119,'_tax_class','parent'), -(1509,119,'_manage_stock','no'), -(1510,119,'_backorders','no'), -(1511,119,'_sold_individually','no'), -(1512,119,'_virtual','no'), -(1513,119,'_downloadable','no'), -(1514,119,'_download_limit','-1'), -(1515,119,'_download_expiry','-1'), -(1516,119,'_thumbnail_id','0'), -(1517,119,'_stock',NULL), -(1518,119,'_stock_status','instock'), -(1519,119,'_wc_average_rating','0'), -(1520,119,'_wc_review_count','0'), -(1521,119,'attribute_pa_size','60'), -(1522,119,'_price','90'), -(1523,119,'_product_version','9.3.3'), -(1524,120,'_variation_description',''), -(1525,120,'_regular_price','90'), -(1526,120,'total_sales','0'), -(1527,120,'_tax_status','taxable'), -(1528,120,'_tax_class','parent'), -(1529,120,'_manage_stock','no'), -(1530,120,'_backorders','no'), -(1531,120,'_sold_individually','no'), -(1532,120,'_virtual','no'), -(1533,120,'_downloadable','no'), -(1534,120,'_download_limit','-1'), -(1535,120,'_download_expiry','-1'), -(1536,120,'_thumbnail_id','0'), -(1537,120,'_stock',NULL), -(1538,120,'_stock_status','instock'), -(1539,120,'_wc_average_rating','0'), -(1540,120,'_wc_review_count','0'), -(1541,120,'attribute_pa_size','62'), -(1542,120,'_price','90'), -(1543,120,'_product_version','9.3.3'), -(1545,113,'_edit_lock','1732521826:1'), -(1549,122,'_wp_attached_file','2024/09/IKKAN-B-g.jpg'), -(1550,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/IKKAN-B-g.jpg\";s:8:\"filesize\";i:575848;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(1551,122,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top'), -(1554,113,'_edit_last','1'), -(1558,123,'_sku','PIASU-B'), -(1559,123,'total_sales','0'), -(1560,123,'_tax_status','taxable'), -(1561,123,'_tax_class',''), -(1562,123,'_manage_stock','no'), -(1563,123,'_backorders','no'), -(1564,123,'_sold_individually','no'), -(1565,123,'_virtual','no'), -(1566,123,'_downloadable','no'), -(1567,123,'_download_limit','-1'), -(1568,123,'_download_expiry','-1'), -(1570,123,'_stock',NULL), -(1571,123,'_stock_status','instock'), -(1572,123,'_wc_average_rating','0'), -(1573,123,'_wc_review_count','0'), -(1574,123,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1575,123,'_product_version','9.9.3'), -(1579,124,'_variation_description',''), -(1580,124,'_regular_price','100'), -(1581,124,'total_sales','0'), -(1582,124,'_tax_status','taxable'), -(1583,124,'_tax_class','parent'), -(1584,124,'_manage_stock','no'), -(1585,124,'_backorders','no'), -(1586,124,'_sold_individually','no'), -(1587,124,'_virtual','no'), -(1588,124,'_downloadable','no'), -(1589,124,'_download_limit','-1'), -(1590,124,'_download_expiry','-1'), -(1591,124,'_thumbnail_id','0'), -(1592,124,'_stock',NULL), -(1593,124,'_stock_status','instock'), -(1594,124,'_wc_average_rating','0'), -(1595,124,'_wc_review_count','0'), -(1596,124,'attribute_pa_size','50'), -(1597,124,'_price','100'), -(1598,124,'_product_version','9.9.3'), -(1599,125,'_variation_description',''), -(1600,125,'_regular_price','100'), -(1601,125,'total_sales','0'), -(1602,125,'_tax_status','taxable'), -(1603,125,'_tax_class','parent'), -(1604,125,'_manage_stock','no'), -(1605,125,'_backorders','no'), -(1606,125,'_sold_individually','no'), -(1607,125,'_virtual','no'), -(1608,125,'_downloadable','no'), -(1609,125,'_download_limit','-1'), -(1610,125,'_download_expiry','-1'), -(1611,125,'_thumbnail_id','0'), -(1612,125,'_stock',NULL), -(1613,125,'_stock_status','instock'), -(1614,125,'_wc_average_rating','0'), -(1615,125,'_wc_review_count','0'), -(1616,125,'attribute_pa_size','52'), -(1617,125,'_price','100'), -(1618,125,'_product_version','9.9.3'), -(1619,126,'_variation_description',''), -(1620,126,'_regular_price','100'), -(1621,126,'total_sales','0'), -(1622,126,'_tax_status','taxable'), -(1623,126,'_tax_class','parent'), -(1624,126,'_manage_stock','no'), -(1625,126,'_backorders','no'), -(1626,126,'_sold_individually','no'), -(1627,126,'_virtual','no'), -(1628,126,'_downloadable','no'), -(1629,126,'_download_limit','-1'), -(1630,126,'_download_expiry','-1'), -(1631,126,'_thumbnail_id','0'), -(1632,126,'_stock',NULL), -(1633,126,'_stock_status','instock'), -(1634,126,'_wc_average_rating','0'), -(1635,126,'_wc_review_count','0'), -(1636,126,'attribute_pa_size','54'), -(1637,126,'_price','100'), -(1638,126,'_product_version','9.9.3'), -(1639,127,'_variation_description',''), -(1640,127,'_regular_price','100'), -(1641,127,'total_sales','0'), -(1642,127,'_tax_status','taxable'), -(1643,127,'_tax_class','parent'), -(1644,127,'_manage_stock','no'), -(1645,127,'_backorders','no'), -(1646,127,'_sold_individually','no'), -(1647,127,'_virtual','no'), -(1648,127,'_downloadable','no'), -(1649,127,'_download_limit','-1'), -(1650,127,'_download_expiry','-1'), -(1651,127,'_thumbnail_id','0'), -(1652,127,'_stock',NULL), -(1653,127,'_stock_status','instock'), -(1654,127,'_wc_average_rating','0'), -(1655,127,'_wc_review_count','0'), -(1656,127,'attribute_pa_size','56'), -(1657,127,'_price','100'), -(1658,127,'_product_version','9.9.3'), -(1659,128,'_variation_description',''), -(1660,128,'_regular_price','100'), -(1661,128,'total_sales','0'), -(1662,128,'_tax_status','taxable'), -(1663,128,'_tax_class','parent'), -(1664,128,'_manage_stock','no'), -(1665,128,'_backorders','no'), -(1666,128,'_sold_individually','no'), -(1667,128,'_virtual','no'), -(1668,128,'_downloadable','no'), -(1669,128,'_download_limit','-1'), -(1670,128,'_download_expiry','-1'), -(1671,128,'_thumbnail_id','0'), -(1672,128,'_stock',NULL), -(1673,128,'_stock_status','instock'), -(1674,128,'_wc_average_rating','0'), -(1675,128,'_wc_review_count','0'), -(1676,128,'attribute_pa_size','58'), -(1677,128,'_price','100'), -(1678,128,'_product_version','9.9.3'), -(1679,129,'_variation_description',''), -(1680,129,'_regular_price','100'), -(1681,129,'total_sales','0'), -(1682,129,'_tax_status','taxable'), -(1683,129,'_tax_class','parent'), -(1684,129,'_manage_stock','no'), -(1685,129,'_backorders','no'), -(1686,129,'_sold_individually','no'), -(1687,129,'_virtual','no'), -(1688,129,'_downloadable','no'), -(1689,129,'_download_limit','-1'), -(1690,129,'_download_expiry','-1'), -(1691,129,'_thumbnail_id','0'), -(1692,129,'_stock',NULL), -(1693,129,'_stock_status','instock'), -(1694,129,'_wc_average_rating','0'), -(1695,129,'_wc_review_count','0'), -(1696,129,'attribute_pa_size','60'), -(1697,129,'_price','100'), -(1698,129,'_product_version','9.9.3'), -(1699,130,'_variation_description',''), -(1700,130,'_regular_price','100'), -(1701,130,'total_sales','0'), -(1702,130,'_tax_status','taxable'), -(1703,130,'_tax_class','parent'), -(1704,130,'_manage_stock','no'), -(1705,130,'_backorders','no'), -(1706,130,'_sold_individually','no'), -(1707,130,'_virtual','no'), -(1708,130,'_downloadable','no'), -(1709,130,'_download_limit','-1'), -(1710,130,'_download_expiry','-1'), -(1711,130,'_thumbnail_id','0'), -(1712,130,'_stock',NULL), -(1713,130,'_stock_status','instock'), -(1714,130,'_wc_average_rating','0'), -(1715,130,'_wc_review_count','0'), -(1716,130,'attribute_pa_size','62'), -(1717,130,'_price','100'), -(1718,130,'_product_version','9.9.3'), -(1720,123,'_edit_lock','1750279357:1'), -(1724,132,'_wp_attached_file','2024/09/DSC9928.jpg'), -(1725,132,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9928.jpg\";s:8:\"filesize\";i:329984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9928-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9928.jpg\";}'), -(1726,132,'_wp_attachment_image_alt','Piasu wide ring in sterling silver with three small rings on top, one in 18k gold'), -(1729,123,'_edit_last','1'), -(1736,133,'_sku','KARA-B'), -(1737,133,'total_sales','0'), -(1738,133,'_tax_status','taxable'), -(1739,133,'_tax_class',''), -(1740,133,'_manage_stock','no'), -(1741,133,'_backorders','no'), -(1742,133,'_sold_individually','no'), -(1743,133,'_virtual','no'), -(1744,133,'_downloadable','no'), -(1745,133,'_download_limit','-1'), -(1746,133,'_download_expiry','-1'), -(1748,133,'_stock',NULL), -(1749,133,'_stock_status','instock'), -(1750,133,'_wc_average_rating','0'), -(1751,133,'_wc_review_count','0'), -(1752,133,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1753,133,'_product_version','9.8.4'), -(1757,134,'_variation_description',''), -(1758,134,'_regular_price','95'), -(1759,134,'total_sales','0'), -(1760,134,'_tax_status','taxable'), -(1761,134,'_tax_class','parent'), -(1762,134,'_manage_stock','no'), -(1763,134,'_backorders','no'), -(1764,134,'_sold_individually','no'), -(1765,134,'_virtual','no'), -(1766,134,'_downloadable','no'), -(1767,134,'_download_limit','-1'), -(1768,134,'_download_expiry','-1'), -(1769,134,'_thumbnail_id','0'), -(1770,134,'_stock',NULL), -(1771,134,'_stock_status','instock'), -(1772,134,'_wc_average_rating','0'), -(1773,134,'_wc_review_count','0'), -(1774,134,'attribute_pa_size','50'), -(1775,134,'_price','95'), -(1776,134,'_product_version','9.8.4'), -(1777,135,'_variation_description',''), -(1778,135,'_regular_price','95'), -(1779,135,'total_sales','0'), -(1780,135,'_tax_status','taxable'), -(1781,135,'_tax_class','parent'), -(1782,135,'_manage_stock','no'), -(1783,135,'_backorders','no'), -(1784,135,'_sold_individually','no'), -(1785,135,'_virtual','no'), -(1786,135,'_downloadable','no'), -(1787,135,'_download_limit','-1'), -(1788,135,'_download_expiry','-1'), -(1789,135,'_thumbnail_id','0'), -(1790,135,'_stock',NULL), -(1791,135,'_stock_status','instock'), -(1792,135,'_wc_average_rating','0'), -(1793,135,'_wc_review_count','0'), -(1794,135,'attribute_pa_size','52'), -(1795,135,'_price','95'), -(1796,135,'_product_version','9.8.4'), -(1797,136,'_variation_description',''), -(1798,136,'_regular_price','95'), -(1799,136,'total_sales','0'), -(1800,136,'_tax_status','taxable'), -(1801,136,'_tax_class','parent'), -(1802,136,'_manage_stock','no'), -(1803,136,'_backorders','no'), -(1804,136,'_sold_individually','no'), -(1805,136,'_virtual','no'), -(1806,136,'_downloadable','no'), -(1807,136,'_download_limit','-1'), -(1808,136,'_download_expiry','-1'), -(1809,136,'_thumbnail_id','0'), -(1810,136,'_stock',NULL), -(1811,136,'_stock_status','instock'), -(1812,136,'_wc_average_rating','0'), -(1813,136,'_wc_review_count','0'), -(1814,136,'attribute_pa_size','54'), -(1815,136,'_price','95'), -(1816,136,'_product_version','9.8.4'), -(1817,137,'_variation_description',''), -(1818,137,'_regular_price','95'), -(1819,137,'total_sales','0'), -(1820,137,'_tax_status','taxable'), -(1821,137,'_tax_class','parent'), -(1822,137,'_manage_stock','no'), -(1823,137,'_backorders','no'), -(1824,137,'_sold_individually','no'), -(1825,137,'_virtual','no'), -(1826,137,'_downloadable','no'), -(1827,137,'_download_limit','-1'), -(1828,137,'_download_expiry','-1'), -(1829,137,'_thumbnail_id','0'), -(1830,137,'_stock',NULL), -(1831,137,'_stock_status','instock'), -(1832,137,'_wc_average_rating','0'), -(1833,137,'_wc_review_count','0'), -(1834,137,'attribute_pa_size','56'), -(1835,137,'_price','95'), -(1836,137,'_product_version','9.8.4'), -(1837,138,'_variation_description',''), -(1838,138,'_regular_price','95'), -(1839,138,'total_sales','0'), -(1840,138,'_tax_status','taxable'), -(1841,138,'_tax_class','parent'), -(1842,138,'_manage_stock','no'), -(1843,138,'_backorders','no'), -(1844,138,'_sold_individually','no'), -(1845,138,'_virtual','no'), -(1846,138,'_downloadable','no'), -(1847,138,'_download_limit','-1'), -(1848,138,'_download_expiry','-1'), -(1849,138,'_thumbnail_id','0'), -(1850,138,'_stock',NULL), -(1851,138,'_stock_status','instock'), -(1852,138,'_wc_average_rating','0'), -(1853,138,'_wc_review_count','0'), -(1854,138,'attribute_pa_size','58'), -(1855,138,'_price','95'), -(1856,138,'_product_version','9.8.4'), -(1857,139,'_variation_description',''), -(1858,139,'_regular_price','95'), -(1859,139,'total_sales','0'), -(1860,139,'_tax_status','taxable'), -(1861,139,'_tax_class','parent'), -(1862,139,'_manage_stock','no'), -(1863,139,'_backorders','no'), -(1864,139,'_sold_individually','no'), -(1865,139,'_virtual','no'), -(1866,139,'_downloadable','no'), -(1867,139,'_download_limit','-1'), -(1868,139,'_download_expiry','-1'), -(1869,139,'_thumbnail_id','0'), -(1870,139,'_stock',NULL), -(1871,139,'_stock_status','instock'), -(1872,139,'_wc_average_rating','0'), -(1873,139,'_wc_review_count','0'), -(1874,139,'attribute_pa_size','60'), -(1875,139,'_price','95'), -(1876,139,'_product_version','9.8.4'), -(1877,140,'_variation_description',''), -(1878,140,'_regular_price','95'), -(1879,140,'total_sales','0'), -(1880,140,'_tax_status','taxable'), -(1881,140,'_tax_class','parent'), -(1882,140,'_manage_stock','no'), -(1883,140,'_backorders','no'), -(1884,140,'_sold_individually','no'), -(1885,140,'_virtual','no'), -(1886,140,'_downloadable','no'), -(1887,140,'_download_limit','-1'), -(1888,140,'_download_expiry','-1'), -(1889,140,'_thumbnail_id','0'), -(1890,140,'_stock',NULL), -(1891,140,'_stock_status','instock'), -(1892,140,'_wc_average_rating','0'), -(1893,140,'_wc_review_count','0'), -(1894,140,'attribute_pa_size','62'), -(1895,140,'_price','95'), -(1896,140,'_product_version','9.8.4'), -(1898,133,'_edit_lock','1746805101:1'), -(1902,142,'_wp_attached_file','2024/09/DSC9269.jpg'), -(1903,142,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9269.jpg\";s:8:\"filesize\";i:230822;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9269-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9269.jpg\";}'), -(1904,142,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(1905,143,'_wp_attached_file','2024/09/DSC9148.jpg'), -(1906,143,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9148.jpg\";s:8:\"filesize\";i:216029;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9148-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9148.jpg\";}'), -(1907,143,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(1910,133,'_edit_last','1'), -(1918,144,'_sku','Kishou-B-s'), -(1919,144,'total_sales','0'), -(1920,144,'_tax_status','taxable'), -(1921,144,'_tax_class',''), -(1922,144,'_manage_stock','no'), -(1923,144,'_backorders','no'), -(1924,144,'_sold_individually','no'), -(1925,144,'_virtual','no'), -(1926,144,'_downloadable','no'), -(1927,144,'_download_limit','-1'), -(1928,144,'_download_expiry','-1'), -(1930,144,'_stock',NULL), -(1931,144,'_stock_status','instock'), -(1932,144,'_wc_average_rating','0'), -(1933,144,'_wc_review_count','0'), -(1934,144,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1935,144,'_product_version','9.4.2'), -(1940,145,'_variation_description',''), -(1941,145,'_regular_price','75'), -(1942,145,'total_sales','0'), -(1943,145,'_tax_status','taxable'), -(1944,145,'_tax_class','parent'), -(1945,145,'_manage_stock','no'), -(1946,145,'_backorders','no'), -(1947,145,'_sold_individually','no'), -(1948,145,'_virtual','no'), -(1949,145,'_downloadable','no'), -(1950,145,'_download_limit','-1'), -(1951,145,'_download_expiry','-1'), -(1952,145,'_thumbnail_id','0'), -(1953,145,'_stock',NULL), -(1954,145,'_stock_status','instock'), -(1955,145,'_wc_average_rating','0'), -(1956,145,'_wc_review_count','0'), -(1957,145,'attribute_pa_size','50'), -(1958,145,'_price','75'), -(1959,145,'_product_version','9.3.3'), -(1960,146,'_variation_description',''), -(1961,146,'_regular_price','75'), -(1962,146,'total_sales','0'), -(1963,146,'_tax_status','taxable'), -(1964,146,'_tax_class','parent'), -(1965,146,'_manage_stock','no'), -(1966,146,'_backorders','no'), -(1967,146,'_sold_individually','no'), -(1968,146,'_virtual','no'), -(1969,146,'_downloadable','no'), -(1970,146,'_download_limit','-1'), -(1971,146,'_download_expiry','-1'), -(1972,146,'_thumbnail_id','0'), -(1973,146,'_stock',NULL), -(1974,146,'_stock_status','instock'), -(1975,146,'_wc_average_rating','0'), -(1976,146,'_wc_review_count','0'), -(1977,146,'attribute_pa_size','52'), -(1978,146,'_price','75'), -(1979,146,'_product_version','9.3.3'), -(1980,147,'_variation_description',''), -(1981,147,'_regular_price','75'), -(1982,147,'total_sales','0'), -(1983,147,'_tax_status','taxable'), -(1984,147,'_tax_class','parent'), -(1985,147,'_manage_stock','no'), -(1986,147,'_backorders','no'), -(1987,147,'_sold_individually','no'), -(1988,147,'_virtual','no'), -(1989,147,'_downloadable','no'), -(1990,147,'_download_limit','-1'), -(1991,147,'_download_expiry','-1'), -(1992,147,'_thumbnail_id','0'), -(1993,147,'_stock',NULL), -(1994,147,'_stock_status','instock'), -(1995,147,'_wc_average_rating','0'), -(1996,147,'_wc_review_count','0'), -(1997,147,'attribute_pa_size','54'), -(1998,147,'_price','75'), -(1999,147,'_product_version','9.3.3'), -(2000,148,'_variation_description',''), -(2001,148,'_regular_price','75'), -(2002,148,'total_sales','0'), -(2003,148,'_tax_status','taxable'), -(2004,148,'_tax_class','parent'), -(2005,148,'_manage_stock','no'), -(2006,148,'_backorders','no'), -(2007,148,'_sold_individually','no'), -(2008,148,'_virtual','no'), -(2009,148,'_downloadable','no'), -(2010,148,'_download_limit','-1'), -(2011,148,'_download_expiry','-1'), -(2012,148,'_thumbnail_id','0'), -(2013,148,'_stock',NULL), -(2014,148,'_stock_status','instock'), -(2015,148,'_wc_average_rating','0'), -(2016,148,'_wc_review_count','0'), -(2017,148,'attribute_pa_size','56'), -(2018,148,'_price','75'), -(2019,148,'_product_version','9.3.3'), -(2020,149,'_variation_description',''), -(2021,149,'_regular_price','75'), -(2022,149,'total_sales','0'), -(2023,149,'_tax_status','taxable'), -(2024,149,'_tax_class','parent'), -(2025,149,'_manage_stock','no'), -(2026,149,'_backorders','no'), -(2027,149,'_sold_individually','no'), -(2028,149,'_virtual','no'), -(2029,149,'_downloadable','no'), -(2030,149,'_download_limit','-1'), -(2031,149,'_download_expiry','-1'), -(2032,149,'_thumbnail_id','0'), -(2033,149,'_stock',NULL), -(2034,149,'_stock_status','instock'), -(2035,149,'_wc_average_rating','0'), -(2036,149,'_wc_review_count','0'), -(2037,149,'attribute_pa_size','58'), -(2038,149,'_price','75'), -(2039,149,'_product_version','9.3.3'), -(2040,150,'_variation_description',''), -(2041,150,'_regular_price','75'), -(2042,150,'total_sales','0'), -(2043,150,'_tax_status','taxable'), -(2044,150,'_tax_class','parent'), -(2045,150,'_manage_stock','no'), -(2046,150,'_backorders','no'), -(2047,150,'_sold_individually','no'), -(2048,150,'_virtual','no'), -(2049,150,'_downloadable','no'), -(2050,150,'_download_limit','-1'), -(2051,150,'_download_expiry','-1'), -(2052,150,'_thumbnail_id','0'), -(2053,150,'_stock',NULL), -(2054,150,'_stock_status','instock'), -(2055,150,'_wc_average_rating','0'), -(2056,150,'_wc_review_count','0'), -(2057,150,'attribute_pa_size','60'), -(2058,150,'_price','75'), -(2059,150,'_product_version','9.3.3'), -(2060,151,'_variation_description',''), -(2061,151,'_regular_price','75'), -(2062,151,'total_sales','0'), -(2063,151,'_tax_status','taxable'), -(2064,151,'_tax_class','parent'), -(2065,151,'_manage_stock','no'), -(2066,151,'_backorders','no'), -(2067,151,'_sold_individually','no'), -(2068,151,'_virtual','no'), -(2069,151,'_downloadable','no'), -(2070,151,'_download_limit','-1'), -(2071,151,'_download_expiry','-1'), -(2072,151,'_thumbnail_id','0'), -(2073,151,'_stock',NULL), -(2074,151,'_stock_status','instock'), -(2075,151,'_wc_average_rating','0'), -(2076,151,'_wc_review_count','0'), -(2077,151,'attribute_pa_size','62'), -(2078,151,'_price','75'), -(2079,151,'_product_version','9.3.3'), -(2081,144,'_edit_lock','1749803782:1'), -(2087,154,'_wp_attached_file','2024/10/KIGEN-BaIKKANBa.jpg'), -(2088,154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/KIGEN-BaIKKANBa.jpg\";s:8:\"filesize\";i:228219;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"KIGEN-BaIKKANBa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12630;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"KIGEN-BaIKKANBa.jpg\";}'), -(2090,154,'_wp_attachment_image_alt','Kishou signet ring in silver, with three engrave lines'), -(2093,144,'_edit_last','1'), -(2102,155,'_sku','Kishou-B-g'), -(2103,155,'total_sales','0'), -(2104,155,'_tax_status','taxable'), -(2105,155,'_tax_class',''), -(2106,155,'_manage_stock','no'), -(2107,155,'_backorders','no'), -(2108,155,'_sold_individually','no'), -(2109,155,'_virtual','no'), -(2110,155,'_downloadable','no'), -(2111,155,'_download_limit','-1'), -(2112,155,'_download_expiry','-1'), -(2114,155,'_stock',NULL), -(2115,155,'_stock_status','instock'), -(2116,155,'_wc_average_rating','0'), -(2117,155,'_wc_review_count','0'), -(2118,155,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2119,155,'_product_version','9.4.2'), -(2124,156,'_variation_description',''), -(2125,156,'_regular_price','80'), -(2126,156,'total_sales','0'), -(2127,156,'_tax_status','taxable'), -(2128,156,'_tax_class','parent'), -(2129,156,'_manage_stock','no'), -(2130,156,'_backorders','no'), -(2131,156,'_sold_individually','no'), -(2132,156,'_virtual','no'), -(2133,156,'_downloadable','no'), -(2134,156,'_download_limit','-1'), -(2135,156,'_download_expiry','-1'), -(2136,156,'_thumbnail_id','0'), -(2137,156,'_stock',NULL), -(2138,156,'_stock_status','instock'), -(2139,156,'_wc_average_rating','0'), -(2140,156,'_wc_review_count','0'), -(2141,156,'attribute_pa_size','50'), -(2142,156,'_price','80'), -(2143,156,'_product_version','9.3.3'), -(2144,157,'_variation_description',''), -(2145,157,'_regular_price','80'), -(2146,157,'total_sales','0'), -(2147,157,'_tax_status','taxable'), -(2148,157,'_tax_class','parent'), -(2149,157,'_manage_stock','no'), -(2150,157,'_backorders','no'), -(2151,157,'_sold_individually','no'), -(2152,157,'_virtual','no'), -(2153,157,'_downloadable','no'), -(2154,157,'_download_limit','-1'), -(2155,157,'_download_expiry','-1'), -(2156,157,'_thumbnail_id','0'), -(2157,157,'_stock',NULL), -(2158,157,'_stock_status','instock'), -(2159,157,'_wc_average_rating','0'), -(2160,157,'_wc_review_count','0'), -(2161,157,'attribute_pa_size','52'), -(2162,157,'_price','80'), -(2163,157,'_product_version','9.3.3'), -(2164,158,'_variation_description',''), -(2165,158,'_regular_price','80'), -(2166,158,'total_sales','0'), -(2167,158,'_tax_status','taxable'), -(2168,158,'_tax_class','parent'), -(2169,158,'_manage_stock','no'), -(2170,158,'_backorders','no'), -(2171,158,'_sold_individually','no'), -(2172,158,'_virtual','no'), -(2173,158,'_downloadable','no'), -(2174,158,'_download_limit','-1'), -(2175,158,'_download_expiry','-1'), -(2176,158,'_thumbnail_id','0'), -(2177,158,'_stock',NULL), -(2178,158,'_stock_status','instock'), -(2179,158,'_wc_average_rating','0'), -(2180,158,'_wc_review_count','0'), -(2181,158,'attribute_pa_size','54'), -(2182,158,'_price','80'), -(2183,158,'_product_version','9.3.3'), -(2184,159,'_variation_description',''), -(2185,159,'_regular_price','80'), -(2186,159,'total_sales','0'), -(2187,159,'_tax_status','taxable'), -(2188,159,'_tax_class','parent'), -(2189,159,'_manage_stock','no'), -(2190,159,'_backorders','no'), -(2191,159,'_sold_individually','no'), -(2192,159,'_virtual','no'), -(2193,159,'_downloadable','no'), -(2194,159,'_download_limit','-1'), -(2195,159,'_download_expiry','-1'), -(2196,159,'_thumbnail_id','0'), -(2197,159,'_stock',NULL), -(2198,159,'_stock_status','instock'), -(2199,159,'_wc_average_rating','0'), -(2200,159,'_wc_review_count','0'), -(2201,159,'attribute_pa_size','56'), -(2202,159,'_price','80'), -(2203,159,'_product_version','9.3.3'), -(2204,160,'_variation_description',''), -(2205,160,'_regular_price','80'), -(2206,160,'total_sales','0'), -(2207,160,'_tax_status','taxable'), -(2208,160,'_tax_class','parent'), -(2209,160,'_manage_stock','no'), -(2210,160,'_backorders','no'), -(2211,160,'_sold_individually','no'), -(2212,160,'_virtual','no'), -(2213,160,'_downloadable','no'), -(2214,160,'_download_limit','-1'), -(2215,160,'_download_expiry','-1'), -(2216,160,'_thumbnail_id','0'), -(2217,160,'_stock',NULL), -(2218,160,'_stock_status','instock'), -(2219,160,'_wc_average_rating','0'), -(2220,160,'_wc_review_count','0'), -(2221,160,'attribute_pa_size','58'), -(2222,160,'_price','80'), -(2223,160,'_product_version','9.3.3'), -(2224,161,'_variation_description',''), -(2225,161,'_regular_price','80'), -(2226,161,'total_sales','0'), -(2227,161,'_tax_status','taxable'), -(2228,161,'_tax_class','parent'), -(2229,161,'_manage_stock','no'), -(2230,161,'_backorders','no'), -(2231,161,'_sold_individually','no'), -(2232,161,'_virtual','no'), -(2233,161,'_downloadable','no'), -(2234,161,'_download_limit','-1'), -(2235,161,'_download_expiry','-1'), -(2236,161,'_thumbnail_id','0'), -(2237,161,'_stock',NULL), -(2238,161,'_stock_status','instock'), -(2239,161,'_wc_average_rating','0'), -(2240,161,'_wc_review_count','0'), -(2241,161,'attribute_pa_size','60'), -(2242,161,'_price','80'), -(2243,161,'_product_version','9.3.3'), -(2244,162,'_variation_description',''), -(2245,162,'_regular_price','80'), -(2246,162,'total_sales','0'), -(2247,162,'_tax_status','taxable'), -(2248,162,'_tax_class','parent'), -(2249,162,'_manage_stock','no'), -(2250,162,'_backorders','no'), -(2251,162,'_sold_individually','no'), -(2252,162,'_virtual','no'), -(2253,162,'_downloadable','no'), -(2254,162,'_download_limit','-1'), -(2255,162,'_download_expiry','-1'), -(2256,162,'_thumbnail_id','0'), -(2257,162,'_stock',NULL), -(2258,162,'_stock_status','instock'), -(2259,162,'_wc_average_rating','0'), -(2260,162,'_wc_review_count','0'), -(2261,162,'attribute_pa_size','62'), -(2262,162,'_price','80'), -(2263,162,'_product_version','9.3.3'), -(2265,155,'_edit_lock','1749803780:1'), -(2272,165,'_wp_attached_file','2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg'), -(2273,165,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";s:8:\"filesize\";i:262084;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";}'), -(2274,165,'_wp_attachment_image_alt','Kishou signet ring in gold plated silver, with three engrave lines'), -(2277,155,'_edit_last','1'), -(2282,166,'_wp_attached_file','2024/09/DSC9760.jpg'), -(2283,166,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9760.jpg\";s:8:\"filesize\";i:352950;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9760-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9760.jpg\";}'), -(2284,166,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(2285,167,'_wp_attached_file','2024/09/DSC9339.jpg'), -(2286,167,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9339.jpg\";s:8:\"filesize\";i:257752;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9339-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9339.jpg\";}'), -(2287,167,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(2294,168,'_sku','Rokku-B'), -(2295,168,'total_sales','2'), -(2296,168,'_tax_status','taxable'), -(2297,168,'_tax_class',''), -(2298,168,'_manage_stock','no'), -(2299,168,'_backorders','no'), -(2300,168,'_sold_individually','no'), -(2301,168,'_virtual','no'), -(2302,168,'_downloadable','no'), -(2303,168,'_download_limit','-1'), -(2304,168,'_download_expiry','-1'), -(2306,168,'_stock',NULL), -(2307,168,'_stock_status','instock'), -(2308,168,'_wc_average_rating','0'), -(2309,168,'_wc_review_count','0'), -(2310,168,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2311,168,'_product_version','9.9.3'), -(2457,168,'_edit_lock','1750279422:1'), -(2461,177,'_wp_attached_file','2024/10/ROKKU-B-malachite-1.jpg'), -(2462,177,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-B-malachite-1.jpg\";s:8:\"filesize\";i:85733;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-B-malachite-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"ROKKU-B-malachite-1.jpg\";}'), -(2463,177,'_wp_attachment_image_alt',''), -(2464,178,'_wp_attached_file','2024/10/ROKKU-B-tigereye.jpg'), -(2465,178,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/ROKKU-B-tigereye.jpg\";s:8:\"filesize\";i:51905;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"ROKKU-B-tigereye.jpg\";}'), -(2466,178,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2467,179,'_wp_attached_file','2024/10/ROKKU-B-tigereye-1.jpg'), -(2468,179,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-B-tigereye-1.jpg\";s:8:\"filesize\";i:87699;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-B-tigereye-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"ROKKU-B-tigereye-1.jpg\";}'), -(2469,179,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2470,180,'_wp_attached_file','2024/10/DSC9710.jpg'), -(2471,180,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9710.jpg\";s:8:\"filesize\";i:421874;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9710-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9710.jpg\";}'), -(2472,180,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), -(2475,182,'_wp_attached_file','2024/10/DSC9190.jpg'), -(2476,182,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9190.jpg\";s:8:\"filesize\";i:229655;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9190-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9190.jpg\";}'), -(2477,182,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2480,168,'_edit_last','1'), -(2488,183,'_sku','BOROBORO-BO2-s'), -(2489,183,'total_sales','1'), -(2490,183,'_tax_status','taxable'), -(2491,183,'_tax_class',''), -(2492,183,'_manage_stock','no'), -(2493,183,'_backorders','no'), -(2494,183,'_sold_individually','no'), -(2495,183,'_virtual','no'), -(2496,183,'_downloadable','no'), -(2497,183,'_download_limit','-1'), -(2498,183,'_download_expiry','-1'), -(2500,183,'_stock',NULL), -(2501,183,'_stock_status','instock'), -(2502,183,'_wc_average_rating','0'), -(2503,183,'_wc_review_count','0'), -(2504,183,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2505,183,'_product_version','9.9.3'), -(2654,183,'_edit_lock','1750279007:1'), -(2772,199,'_wp_attached_file','2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg'), -(2773,199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:42:\"2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg\";s:8:\"filesize\";i:236038;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"BOROBORO-BOaTANEMAKI-BO1a-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19871;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(2775,199,'_wp_attachment_image_alt','Boroboro long silver earrings. right side'), -(2790,183,'_edit_last','1'), -(2805,200,'_variation_description',''), -(2806,200,'total_sales','0'), -(2807,200,'_tax_status','taxable'), -(2808,200,'_tax_class','parent'), -(2809,200,'_manage_stock','no'), -(2810,200,'_backorders','no'), -(2811,200,'_sold_individually','no'), -(2812,200,'_virtual','no'), -(2813,200,'_downloadable','no'), -(2814,200,'_download_limit','-1'), -(2815,200,'_download_expiry','-1'), -(2816,200,'_stock',NULL), -(2817,200,'_stock_status','instock'), -(2818,200,'_wc_average_rating','0'), -(2819,200,'_wc_review_count','0'), -(2820,200,'attribute_pa_stone','malachite'), -(2821,200,'_product_version','9.9.3'), -(2822,201,'_variation_description',''), -(2823,201,'total_sales','0'), -(2824,201,'_tax_status','taxable'), -(2825,201,'_tax_class','parent'), -(2826,201,'_manage_stock','no'), -(2827,201,'_backorders','no'), -(2828,201,'_sold_individually','no'), -(2829,201,'_virtual','no'), -(2830,201,'_downloadable','no'), -(2831,201,'_download_limit','-1'), -(2832,201,'_download_expiry','-1'), -(2833,201,'_stock',NULL), -(2834,201,'_stock_status','instock'), -(2835,201,'_wc_average_rating','0'), -(2836,201,'_wc_review_count','0'), -(2837,201,'attribute_pa_stone','tiger-eye'), -(2838,201,'_product_version','9.9.3'), -(2839,200,'_regular_price','100'), -(2841,200,'_price','100'), -(2842,201,'_regular_price','110'), -(2843,201,'_thumbnail_id','178'), -(2844,201,'_price','110'), -(2854,202,'_sku','PIASU-BO'), -(2855,202,'total_sales','3'), -(2856,202,'_tax_status','taxable'), -(2857,202,'_tax_class',''), -(2858,202,'_manage_stock','no'), -(2859,202,'_backorders','no'), -(2860,202,'_sold_individually','no'), -(2861,202,'_virtual','no'), -(2862,202,'_downloadable','no'), -(2863,202,'_download_limit','-1'), -(2864,202,'_download_expiry','-1'), -(2865,202,'_thumbnail_id','206'), -(2866,202,'_stock',NULL), -(2867,202,'_stock_status','instock'), -(2868,202,'_wc_average_rating','0'), -(2869,202,'_wc_review_count','0'), -(2870,202,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2871,202,'_product_version','9.4.1'), -(2941,202,'_edit_lock','1732521920:1'), -(2942,206,'_wp_attached_file','2024/10/PIASU-BO.jpg'), -(2943,206,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/10/PIASU-BO.jpg\";s:8:\"filesize\";i:56620;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"PIASU-BO.jpg\";}'), -(2944,206,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(2945,207,'_wp_attached_file','2024/10/PIASU-BO-1.jpg'), -(2946,207,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/PIASU-BO-1.jpg\";s:8:\"filesize\";i:337870;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-BO-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13327;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"PIASU-BO-1.jpg\";}'), -(2949,207,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(2956,202,'_edit_last','1'), -(2967,212,'_wp_attached_file','2024/10/PIASU-BO-2.jpg'), -(2968,212,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/PIASU-BO-2.jpg\";s:8:\"filesize\";i:187047;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-BO-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14061;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"PIASU-BO-2.jpg\";}'), -(2969,212,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(2977,213,'_sku','BOROBORO-BO2-g'), -(2978,213,'total_sales','0'), -(2979,213,'_tax_status','taxable'), -(2980,213,'_tax_class',''), -(2981,213,'_manage_stock','no'), -(2982,213,'_backorders','no'), -(2983,213,'_sold_individually','no'), -(2984,213,'_virtual','no'), -(2985,213,'_downloadable','no'), -(2986,213,'_download_limit','-1'), -(2987,213,'_download_expiry','-1'), -(2989,213,'_stock',NULL), -(2990,213,'_stock_status','instock'), -(2991,213,'_wc_average_rating','0'), -(2992,213,'_wc_review_count','0'), -(2993,213,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2994,213,'_product_version','9.9.3'), -(3064,213,'_edit_lock','1750279453:1'), -(3070,213,'_edit_last','1'), -(3440,240,'_sku','IKKAN-BR-s'), -(3441,240,'total_sales','0'), -(3442,240,'_tax_status','taxable'), -(3443,240,'_tax_class',''), -(3444,240,'_manage_stock','no'), -(3445,240,'_backorders','no'), -(3446,240,'_sold_individually','no'), -(3447,240,'_virtual','no'), -(3448,240,'_downloadable','no'), -(3449,240,'_download_limit','-1'), -(3450,240,'_download_expiry','-1'), -(3451,240,'_thumbnail_id','243'), -(3452,240,'_stock',NULL), -(3453,240,'_stock_status','instock'), -(3454,240,'_wc_average_rating','0'), -(3455,240,'_wc_review_count','0'), -(3456,240,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(3457,240,'_product_version','9.8.4'), -(3461,241,'_variation_description',''), -(3462,241,'_sku','IKKAN-BR-s-1'), -(3463,241,'_regular_price','80'), -(3464,241,'total_sales','0'), -(3465,241,'_tax_status','taxable'), -(3466,241,'_tax_class','parent'), -(3467,241,'_manage_stock','no'), -(3468,241,'_backorders','no'), -(3469,241,'_sold_individually','no'), -(3470,241,'_virtual','no'), -(3471,241,'_downloadable','no'), -(3472,241,'_download_limit','-1'), -(3473,241,'_download_expiry','-1'), -(3474,241,'_thumbnail_id','243'), -(3475,241,'_stock',NULL), -(3476,241,'_stock_status','instock'), -(3477,241,'_wc_average_rating','0'), -(3478,241,'_wc_review_count','0'), -(3479,241,'attribute_pa_size','size-1'), -(3480,241,'_price','80'), -(3481,241,'_product_version','9.8.4'), -(3482,242,'_variation_description',''), -(3483,242,'_sku','IKKAN-BR-s-2'), -(3484,242,'_regular_price','80'), -(3485,242,'total_sales','0'), -(3486,242,'_tax_status','taxable'), -(3487,242,'_tax_class','parent'), -(3488,242,'_manage_stock','no'), -(3489,242,'_backorders','no'), -(3490,242,'_sold_individually','no'), -(3491,242,'_virtual','no'), -(3492,242,'_downloadable','no'), -(3493,242,'_download_limit','-1'), -(3494,242,'_download_expiry','-1'), -(3495,242,'_thumbnail_id','243'), -(3496,242,'_stock',NULL), -(3497,242,'_stock_status','instock'), -(3498,242,'_wc_average_rating','0'), -(3499,242,'_wc_review_count','0'), -(3500,242,'attribute_pa_size','size-2'), -(3501,242,'_price','80'), -(3502,242,'_product_version','9.8.4'), -(3504,240,'_edit_lock','1746805937:1'), -(3505,243,'_wp_attached_file','2024/10/IKKAN-BR-arg.jpg'), -(3506,243,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-arg.jpg\";s:8:\"filesize\";i:51107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-arg.jpg\";}'), -(3507,243,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3508,244,'_wp_attached_file','2024/10/IKKAN-BR-s.jpg'), -(3509,244,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-s.jpg\";s:8:\"filesize\";i:438743;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-s.jpg\";}'), -(3510,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3511,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3512,245,'_wp_attached_file','2024/10/IKKAN-BR-s-1.jpg'), -(3513,245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-s-1.jpg\";s:8:\"filesize\";i:536594;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-s-1.jpg\";}'), -(3514,245,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3516,240,'_edit_last','1'), -(3521,246,'_sku','IKKAN-BR-g'), -(3522,246,'total_sales','0'), -(3523,246,'_tax_status','taxable'), -(3524,246,'_tax_class',''), -(3525,246,'_manage_stock','no'), -(3526,246,'_backorders','no'), -(3527,246,'_sold_individually','no'), -(3528,246,'_virtual','no'), -(3529,246,'_downloadable','no'), -(3530,246,'_download_limit','-1'), -(3531,246,'_download_expiry','-1'), -(3532,246,'_thumbnail_id','249'), -(3533,246,'_stock',NULL), -(3534,246,'_stock_status','instock'), -(3535,246,'_wc_average_rating','0'), -(3536,246,'_wc_review_count','0'), -(3537,246,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(3538,246,'_product_version','9.8.4'), -(3543,247,'_variation_description',''), -(3544,247,'_sku','IKKAN-BR-g-1'), -(3545,247,'_regular_price','85'), -(3546,247,'total_sales','0'), -(3547,247,'_tax_status','taxable'), -(3548,247,'_tax_class','parent'), -(3549,247,'_manage_stock','no'), -(3550,247,'_backorders','no'), -(3551,247,'_sold_individually','no'), -(3552,247,'_virtual','no'), -(3553,247,'_downloadable','no'), -(3554,247,'_download_limit','-1'), -(3555,247,'_download_expiry','-1'), -(3556,247,'_thumbnail_id','249'), -(3557,247,'_stock',NULL), -(3558,247,'_stock_status','instock'), -(3559,247,'_wc_average_rating','0'), -(3560,247,'_wc_review_count','0'), -(3561,247,'attribute_pa_size','size-1'), -(3562,247,'_price','85'), -(3563,247,'_product_version','9.8.4'), -(3564,248,'_variation_description',''), -(3565,248,'_sku','IKKAN-BR-g-2'), -(3566,248,'_regular_price','85'), -(3567,248,'total_sales','0'), -(3568,248,'_tax_status','taxable'), -(3569,248,'_tax_class','parent'), -(3570,248,'_manage_stock','no'), -(3571,248,'_backorders','no'), -(3572,248,'_sold_individually','no'), -(3573,248,'_virtual','no'), -(3574,248,'_downloadable','no'), -(3575,248,'_download_limit','-1'), -(3576,248,'_download_expiry','-1'), -(3577,248,'_thumbnail_id','249'), -(3578,248,'_stock',NULL), -(3579,248,'_stock_status','instock'), -(3580,248,'_wc_average_rating','0'), -(3581,248,'_wc_review_count','0'), -(3582,248,'attribute_pa_size','size-2'), -(3583,248,'_price','85'), -(3584,248,'_product_version','9.8.4'), -(3586,246,'_edit_lock','1746805795:1'), -(3587,249,'_wp_attached_file','2024/10/IKKAN-BR-vrm.jpg'), -(3588,249,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-vrm.jpg\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-vrm.jpg\";}'), -(3589,249,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), -(3590,250,'_wp_attached_file','2024/10/IKKAN-BR-g.jpg'), -(3591,250,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-g.jpg\";s:8:\"filesize\";i:187089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-g.jpg\";}'), -(3592,250,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), -(3594,246,'_edit_last','1'), -(3601,251,'_sku','TANEMAKI-BR'), -(3602,251,'total_sales','3'), -(3603,251,'_tax_status','taxable'), -(3604,251,'_tax_class',''), -(3605,251,'_manage_stock','no'), -(3606,251,'_backorders','no'), -(3607,251,'_sold_individually','no'), -(3608,251,'_virtual','no'), -(3609,251,'_downloadable','no'), -(3610,251,'_download_limit','-1'), -(3611,251,'_download_expiry','-1'), -(3613,251,'_stock',NULL), -(3614,251,'_stock_status','instock'), -(3615,251,'_wc_average_rating','0'), -(3616,251,'_wc_review_count','0'), -(3618,251,'_product_version','9.8.5'), -(3665,251,'_edit_lock','1749450379:1'), -(3669,255,'_wp_attached_file','2024/10/TANEMAKI-BR-1.jpg'), -(3670,255,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2835;s:6:\"height\";i:2835;s:4:\"file\";s:25:\"2024/10/TANEMAKI-BR-1.jpg\";s:8:\"filesize\";i:514458;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TANEMAKI-BR-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"TANEMAKI-BR-1.jpg\";}'), -(3671,255,'_wp_attachment_image_alt',''), -(3707,251,'_edit_last','1'), -(3708,251,'_regular_price','75'), -(3709,251,'_price','75'), -(3713,258,'_sku','FUYOU-BR-s'), -(3714,258,'_regular_price','75'), -(3715,258,'total_sales','0'), -(3716,258,'_tax_status','taxable'), -(3717,258,'_tax_class',''), -(3718,258,'_manage_stock','no'), -(3719,258,'_backorders','no'), -(3720,258,'_sold_individually','no'), -(3721,258,'_virtual','no'), -(3722,258,'_downloadable','no'), -(3723,258,'_download_limit','-1'), -(3724,258,'_download_expiry','-1'), -(3725,258,'_thumbnail_id','259'), -(3726,258,'_stock',NULL), -(3727,258,'_stock_status','instock'), -(3728,258,'_wc_average_rating','0'), -(3729,258,'_wc_review_count','0'), -(3730,258,'_product_version','9.4.2'), -(3731,258,'_price','75'), -(3735,258,'_edit_lock','1732522678:1'), -(3736,259,'_wp_attached_file','2024/10/FUYOU-BR-s.jpg'), -(3737,259,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/10/FUYOU-BR-s.jpg\";s:8:\"filesize\";i:49290;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"FUYOU-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"FUYOU-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"FUYOU-BR-s.jpg\";}'), -(3738,259,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element'), -(3739,260,'_wp_attached_file','2024/10/DSC9225.jpg'), -(3740,260,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9225.jpg\";s:8:\"filesize\";i:348487;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9225-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16775;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9225.jpg\";}'), -(3741,260,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element'), -(3742,258,'_edit_last','1'), -(3752,261,'_sku','FUYOU-BR-g'), -(3753,261,'_regular_price','80'), -(3754,261,'total_sales','0'), -(3755,261,'_tax_status','taxable'), -(3756,261,'_tax_class',''), -(3757,261,'_manage_stock','no'), -(3758,261,'_backorders','no'), -(3759,261,'_sold_individually','no'), -(3760,261,'_virtual','no'), -(3761,261,'_downloadable','no'), -(3762,261,'_download_limit','-1'), -(3763,261,'_download_expiry','-1'), -(3765,261,'_stock',NULL), -(3766,261,'_stock_status','instock'), -(3767,261,'_wc_average_rating','0'), -(3768,261,'_wc_review_count','0'), -(3769,261,'_product_version','9.4.2'), -(3770,261,'_price','80'), -(3774,261,'_edit_lock','1732556185:1'), -(3778,261,'_edit_last','1'), -(3782,263,'_sku','IKKAN-C'), -(3783,263,'_regular_price','100'), -(3784,263,'total_sales','1'), -(3785,263,'_tax_status','taxable'), -(3786,263,'_tax_class',''), -(3787,263,'_manage_stock','no'), -(3788,263,'_backorders','no'), -(3789,263,'_sold_individually','no'), -(3790,263,'_virtual','no'), -(3791,263,'_downloadable','no'), -(3792,263,'_download_limit','-1'), -(3793,263,'_download_expiry','-1'), -(3795,263,'_stock',NULL), -(3796,263,'_stock_status','instock'), -(3797,263,'_wc_average_rating','0'), -(3798,263,'_wc_review_count','0'), -(3799,263,'_product_version','9.9.3'), -(3800,263,'_price','100'), -(3804,263,'_edit_lock','1750278386:1'), -(3808,265,'_wp_attached_file','2024/10/IKKAN-C.jpg'), -(3809,265,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/IKKAN-C.jpg\";s:8:\"filesize\";i:533027;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"IKKAN-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16621;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"IKKAN-C.jpg\";}'), -(3810,265,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), -(3811,266,'_wp_attached_file','2024/10/IKKAN-C-1.jpg'), -(3812,266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/IKKAN-C-1.jpg\";s:8:\"filesize\";i:554660;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14277;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(3813,266,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), -(3814,267,'_wp_attached_file','2024/10/IKKAN-C-2.jpg'), -(3815,267,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/IKKAN-C-2.jpg\";s:8:\"filesize\";i:506097;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-C-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15987;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IKKAN-C-2.jpg\";}'), -(3816,267,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), -(3817,263,'_edit_last','1'), -(3828,268,'_sku','PIASU-C'), -(3829,268,'_regular_price','100'), -(3830,268,'total_sales','0'), -(3831,268,'_tax_status','taxable'), -(3832,268,'_tax_class',''), -(3833,268,'_manage_stock','no'), -(3834,268,'_backorders','no'), -(3835,268,'_sold_individually','no'), -(3836,268,'_virtual','no'), -(3837,268,'_downloadable','no'), -(3838,268,'_download_limit','-1'), -(3839,268,'_download_expiry','-1'), -(3841,268,'_stock',NULL), -(3842,268,'_stock_status','instock'), -(3843,268,'_wc_average_rating','0'), -(3844,268,'_wc_review_count','0'), -(3845,268,'_product_version','9.9.3'), -(3846,268,'_price','100'), -(3852,268,'_edit_lock','1750278425:1'), -(3856,270,'_wp_attached_file','2024/10/PIASU-C-arg-opti.jpg'), -(3857,270,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/10/PIASU-C-arg-opti.jpg\";s:8:\"filesize\";i:266103;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"PIASU-C-arg-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"PIASU-C-arg-opti.jpg\";}'), -(3858,270,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), -(3859,268,'_edit_last','1'), -(3863,271,'_sku','TANEMAKI-C'), -(3864,271,'_regular_price','120'), -(3865,271,'total_sales','3'), -(3866,271,'_tax_status','taxable'), -(3867,271,'_tax_class',''), -(3868,271,'_manage_stock','no'), -(3869,271,'_backorders','no'), -(3870,271,'_sold_individually','no'), -(3871,271,'_virtual','no'), -(3872,271,'_downloadable','no'), -(3873,271,'_download_limit','-1'), -(3874,271,'_download_expiry','-1'), -(3876,271,'_stock',NULL), -(3877,271,'_stock_status','instock'), -(3878,271,'_wc_average_rating','0'), -(3879,271,'_wc_review_count','0'), -(3880,271,'_product_version','9.9.3'), -(3881,271,'_price','120'), -(3885,271,'_edit_lock','1750279636:1'), -(3889,273,'_wp_attached_file','2024/10/TANEMAKI-C.jpg'), -(3890,273,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/TANEMAKI-C.jpg\";s:8:\"filesize\";i:498528;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TANEMAKI-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"TANEMAKI-C.jpg\";}'), -(3891,273,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), -(3892,271,'_edit_last','1'), -(3899,274,'_sku','FUYOU-C'), -(3900,274,'_regular_price','120'), -(3901,274,'total_sales','2'), -(3902,274,'_tax_status','taxable'), -(3903,274,'_tax_class',''), -(3904,274,'_manage_stock','no'), -(3905,274,'_backorders','no'), -(3906,274,'_sold_individually','no'), -(3907,274,'_virtual','no'), -(3908,274,'_downloadable','no'), -(3909,274,'_download_limit','-1'), -(3910,274,'_download_expiry','-1'), -(3911,274,'_thumbnail_id','275'), -(3912,274,'_stock',NULL), -(3913,274,'_stock_status','instock'), -(3914,274,'_wc_average_rating','0'), -(3915,274,'_wc_review_count','0'), -(3916,274,'_product_version','9.8.4'), -(3917,274,'_price','120'), -(3921,274,'_edit_lock','1746806135:1'), -(3922,275,'_wp_attached_file','2024/10/FUYOU-C.jpg'), -(3923,275,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/10/FUYOU-C.jpg\";s:8:\"filesize\";i:66984;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"FUYOU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7799;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"FUYOU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7799;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"FUYOU-C.jpg\";}'), -(3924,275,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail'), -(3925,274,'_edit_last','1'), -(4071,285,'_sku','HATTARI-CR1-s'), -(4073,285,'total_sales','1'), -(4074,285,'_tax_status','taxable'), -(4075,285,'_tax_class',''), -(4076,285,'_manage_stock','no'), -(4077,285,'_backorders','no'), -(4078,285,'_sold_individually','no'), -(4079,285,'_virtual','no'), -(4080,285,'_downloadable','no'), -(4081,285,'_download_limit','-1'), -(4082,285,'_download_expiry','-1'), -(4083,285,'_thumbnail_id','286'), -(4084,285,'_stock',NULL), -(4085,285,'_stock_status','instock'), -(4086,285,'_wc_average_rating','0'), -(4087,285,'_wc_review_count','0'), -(4088,285,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4089,285,'_product_version','9.9.3'), -(4094,285,'_edit_lock','1750278532:1'), -(4095,286,'_wp_attached_file','2024/10/HATTARI-CR1-s.jpg'), -(4096,286,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/HATTARI-CR1-s.jpg\";s:8:\"filesize\";i:38518;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-CR1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4755;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"HATTARI-CR1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4755;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"HATTARI-CR1-s.jpg\";}'), -(4097,286,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver'), -(4098,287,'_wp_attached_file','2024/10/HATTARI-CR1-s-1.jpg'), -(4099,287,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/HATTARI-CR1-s-1.jpg\";s:8:\"filesize\";i:323619;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HATTARI-CR1-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15492;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"HATTARI-CR1-s-1.jpg\";}'), -(4100,287,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver'), -(4101,285,'_edit_last','1'), -(4105,288,'_sku','HATTARI-CR1-g'), -(4107,288,'total_sales','3'), -(4108,288,'_tax_status','taxable'), -(4109,288,'_tax_class',''), -(4110,288,'_manage_stock','no'), -(4111,288,'_backorders','no'), -(4112,288,'_sold_individually','no'), -(4113,288,'_virtual','no'), -(4114,288,'_downloadable','no'), -(4115,288,'_download_limit','-1'), -(4116,288,'_download_expiry','-1'), -(4117,288,'_thumbnail_id','289'), -(4118,288,'_stock',NULL), -(4119,288,'_stock_status','instock'), -(4120,288,'_wc_average_rating','0'), -(4121,288,'_wc_review_count','0'), -(4122,288,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4123,288,'_product_version','9.9.3'), -(4128,288,'_edit_lock','1750278482:1'), -(4129,289,'_wp_attached_file','2024/10/HATTARI-CR1-g.jpg'), -(4130,289,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/HATTARI-CR1-g.jpg\";s:8:\"filesize\";i:44097;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-CR1-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"HATTARI-CR1-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"HATTARI-CR1-g.jpg\";}'), -(4131,289,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver'), -(4132,290,'_wp_attached_file','2024/10/DSC9336.jpg'), -(4133,290,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9336.jpg\";s:8:\"filesize\";i:280534;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9336-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9336.jpg\";}'), -(4134,290,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(4135,288,'_edit_last','1'), -(4381,306,'_sku','TAMANORI-CR-s'), -(4382,306,'total_sales','4'), -(4383,306,'_tax_status','taxable'), -(4384,306,'_tax_class',''), -(4385,306,'_manage_stock','no'), -(4386,306,'_backorders','no'), -(4387,306,'_sold_individually','no'), -(4388,306,'_virtual','no'), -(4389,306,'_downloadable','no'), -(4390,306,'_download_limit','-1'), -(4391,306,'_download_expiry','-1'), -(4392,306,'_thumbnail_id','310'), -(4393,306,'_stock',NULL), -(4394,306,'_stock_status','instock'), -(4395,306,'_wc_average_rating','0'), -(4396,306,'_wc_review_count','0'), -(4397,306,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4398,306,'_product_version','9.4.1'), -(4467,306,'_edit_lock','1732523141:1'), -(4468,310,'_wp_attached_file','2024/10/TAMANORI-CR2-arg.jpg'), -(4469,310,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-arg.jpg\";s:8:\"filesize\";i:33849;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"TAMANORI-CR2-arg.jpg\";}'), -(4470,310,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(4471,311,'_wp_attached_file','2024/10/DSC9378.jpg'), -(4472,311,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9378.jpg\";s:8:\"filesize\";i:270951;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9378-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9378.jpg\";}'), -(4473,311,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(4477,306,'_edit_last','1'), -(4481,312,'_sku','TAMANORI-CR-g'), -(4482,312,'total_sales','1'), -(4483,312,'_tax_status','taxable'), -(4484,312,'_tax_class',''), -(4485,312,'_manage_stock','no'), -(4486,312,'_backorders','no'), -(4487,312,'_sold_individually','no'), -(4488,312,'_virtual','no'), -(4489,312,'_downloadable','no'), -(4490,312,'_download_limit','-1'), -(4491,312,'_download_expiry','-1'), -(4493,312,'_stock',NULL), -(4494,312,'_stock_status','instock'), -(4495,312,'_wc_average_rating','0'), -(4496,312,'_wc_review_count','0'), -(4497,312,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4498,312,'_product_version','9.4.2'), -(4568,312,'_edit_lock','1732523154:1'), -(4572,317,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm-1.jpg'), -(4573,317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2440;s:6:\"height\";i:2440;s:4:\"file\";s:30:\"2024/10/TAMANORI-CR2-vrm-1.jpg\";s:8:\"filesize\";i:408918;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"TAMANORI-CR2-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4574,317,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(4578,312,'_edit_last','1'), -(4585,318,'_sku','FUYOU-CR'), -(4586,318,'total_sales','1'), -(4587,318,'_tax_status','taxable'), -(4588,318,'_tax_class',''), -(4589,318,'_manage_stock','no'), -(4590,318,'_backorders','no'), -(4591,318,'_sold_individually','no'), -(4592,318,'_virtual','no'), -(4593,318,'_downloadable','no'), -(4594,318,'_download_limit','-1'), -(4595,318,'_download_expiry','-1'), -(4597,318,'_stock',NULL), -(4598,318,'_stock_status','instock'), -(4599,318,'_wc_average_rating','0'), -(4600,318,'_wc_review_count','0'), -(4602,318,'_product_version','9.8.4'), -(4669,318,'_price','45'), -(4670,318,'_price','45'), -(4671,318,'_price','45'), -(4672,318,'_edit_lock','1746806227:1'), -(4676,323,'_wp_attached_file','2024/10/FUYOU-CR.jpg'), -(4677,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/FUYOU-CR.jpg\";s:8:\"filesize\";i:546040;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-CR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4678,323,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), -(4679,324,'_wp_attached_file','2024/10/DSC9542.jpg'), -(4680,324,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9542.jpg\";s:8:\"filesize\";i:438169;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9542-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18806;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9542.jpg\";}'), -(4681,324,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), -(4682,318,'_edit_last','1'), -(4683,318,'_regular_price','45'), -(4712,325,'_sku','HADOU-EC-s'), -(4713,325,'_regular_price','40'), -(4714,325,'total_sales','1'), -(4715,325,'_tax_status','taxable'), -(4716,325,'_tax_class',''), -(4717,325,'_manage_stock','no'), -(4718,325,'_backorders','no'), -(4719,325,'_sold_individually','no'), -(4720,325,'_virtual','no'), -(4721,325,'_downloadable','no'), -(4722,325,'_download_limit','-1'), -(4723,325,'_download_expiry','-1'), -(4724,325,'_thumbnail_id','326'), -(4725,325,'_stock',NULL), -(4726,325,'_stock_status','instock'), -(4727,325,'_wc_average_rating','0'), -(4728,325,'_wc_review_count','0'), -(4729,325,'_product_version','9.8.4'), -(4730,325,'_price','40'), -(4735,325,'_edit_lock','1746806441:1'), -(4736,326,'_wp_attached_file','2024/10/HADOU-EC-arg.jpg'), -(4737,326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-arg.jpg\";s:8:\"filesize\";i:27956;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-arg.jpg\";}'), -(4738,326,'_wp_attachment_image_alt','Hadou earcuff in sterling silver.'), -(4739,327,'_wp_attached_file','2024/10/HADOU-EC.jpg'), -(4740,327,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/HADOU-EC.jpg\";s:8:\"filesize\";i:355588;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"HADOU-EC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"HADOU-EC.jpg\";}'), -(4741,327,'_wp_attachment_image_alt','Hadou earcuff in sterling silver'), -(4742,325,'_edit_last','1'), -(4746,328,'_sku','HADOU-EC-g'), -(4747,328,'_regular_price','45'), -(4748,328,'total_sales','2'), -(4749,328,'_tax_status','taxable'), -(4750,328,'_tax_class',''), -(4751,328,'_manage_stock','no'), -(4752,328,'_backorders','no'), -(4753,328,'_sold_individually','no'), -(4754,328,'_virtual','no'), -(4755,328,'_downloadable','no'), -(4756,328,'_download_limit','-1'), -(4757,328,'_download_expiry','-1'), -(4758,328,'_thumbnail_id','329'), -(4759,328,'_stock',NULL), -(4760,328,'_stock_status','instock'), -(4761,328,'_wc_average_rating','0'), -(4762,328,'_wc_review_count','0'), -(4763,328,'_product_version','9.8.4'), -(4764,328,'_price','45'), -(4768,328,'_edit_lock','1746806573:1'), -(4769,329,'_wp_attached_file','2024/10/HADOU-EC-vrm.jpg'), -(4770,329,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-vrm.jpg\";s:8:\"filesize\";i:28932;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-vrm.jpg\";}'), -(4771,329,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), -(4772,330,'_wp_attached_file','2024/10/HADOU-EC-vrm-1.jpg'), -(4773,330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/HADOU-EC-vrm-1.jpg\";s:8:\"filesize\";i:223978;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"HADOU-EC-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"HADOU-EC-vrm-1.jpg\";}'), -(4774,330,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), -(4775,328,'_edit_last','1'), -(4843,337,'_wp_attached_file','2024/10/DSC9472.jpg'), -(4844,337,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9472.jpg\";s:8:\"filesize\";i:356763;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9472-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9472.jpg\";}'), -(4845,337,'_wp_attachment_image_alt','Hattari earcuff in gold plated silver.'), -(4853,338,'_sku','PIASU-BRC'), -(4854,338,'_regular_price','50'), -(4855,338,'total_sales','0'), -(4856,338,'_tax_status','taxable'), -(4857,338,'_tax_class',''), -(4858,338,'_manage_stock','no'), -(4859,338,'_backorders','no'), -(4860,338,'_sold_individually','no'), -(4861,338,'_virtual','no'), -(4862,338,'_downloadable','no'), -(4863,338,'_download_limit','-1'), -(4864,338,'_download_expiry','-1'), -(4865,338,'_thumbnail_id','339'), -(4866,338,'_stock',NULL), -(4867,338,'_stock_status','instock'), -(4868,338,'_wc_average_rating','0'), -(4869,338,'_wc_review_count','0'), -(4870,338,'_product_version','9.3.3'), -(4871,338,'_price','50'), -(4875,338,'_edit_lock','1732523359:1'), -(4876,339,'_wp_attached_file','2024/10/PIASU-BRC.jpg'), -(4877,339,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/PIASU-BRC.jpg\";s:8:\"filesize\";i:38982;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"PIASU-BRC.jpg\";}'), -(4878,339,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4879,340,'_wp_attached_file','2024/10/PIASU-BRC-1.jpg'), -(4880,340,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-1.jpg\";s:8:\"filesize\";i:237100;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-1.jpg\";}'), -(4881,340,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4882,341,'_wp_attached_file','2024/10/PIASU-BRC-2.jpg'), -(4883,341,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-2.jpg\";s:8:\"filesize\";i:326181;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10210;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-2.jpg\";}'), -(4884,341,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4885,338,'_edit_last','2'), -(4886,338,'_photos_colonne_gauche|||0|value','339'), -(4887,338,'_photos_colonne_droite|||0|value','340'), -(4888,338,'_photos_colonne_droite|||1|value','341'), -(4889,338,'_haiku_details_produit',''), -(4890,342,'_sku','KAGUN-BOP'), -(4891,342,'total_sales','7'), -(4892,342,'_tax_status','taxable'), -(4893,342,'_tax_class',''), -(4894,342,'_manage_stock','no'), -(4895,342,'_backorders','no'), -(4896,342,'_sold_individually','no'), -(4897,342,'_virtual','no'), -(4898,342,'_downloadable','no'), -(4899,342,'_download_limit','-1'), -(4900,342,'_download_expiry','-1'), -(4902,342,'_stock',NULL), -(4903,342,'_stock_status','instock'), -(4904,342,'_wc_average_rating','0'), -(4905,342,'_wc_review_count','0'), -(4906,342,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4907,342,'_product_version','9.9.3'), -(4977,342,'_edit_lock','1750141019:1'), -(4981,347,'_wp_attached_file','2024/10/DSC9763.jpg'), -(4982,347,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9763.jpg\";s:8:\"filesize\";i:402127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9763-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19294;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9763.jpg\";}'), -(4983,347,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(4984,348,'_wp_attached_file','2024/10/DSC9781.jpg'), -(4985,348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1919;s:4:\"file\";s:19:\"2024/10/DSC9781.jpg\";s:8:\"filesize\";i:372455;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9781-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4986,348,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(4987,349,'_wp_attached_file','2024/10/DSC9748.jpg'), -(4988,349,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9748.jpg\";s:8:\"filesize\";i:421413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9748-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9748.jpg\";}'), -(4989,349,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(5113,342,'_edit_last','1'), -(5595,384,'_wp_attached_file','2024/10/DSC9775.jpg'), -(5596,384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1919;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9775.jpg\";s:8:\"filesize\";i:559293;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9775-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(5598,384,'_wp_attachment_image_alt','Kagun bracelet mixing chains in gold plated silver.'), -(5608,385,'_sku','ROKKU-C'), -(5610,385,'total_sales','0'), -(5611,385,'_tax_status','taxable'), -(5612,385,'_tax_class',''), -(5613,385,'_manage_stock','no'), -(5614,385,'_backorders','no'), -(5615,385,'_sold_individually','no'), -(5616,385,'_virtual','no'), -(5617,385,'_downloadable','no'), -(5618,385,'_download_limit','-1'), -(5619,385,'_download_expiry','-1'), -(5621,385,'_stock',NULL), -(5622,385,'_stock_status','instock'), -(5623,385,'_wc_average_rating','0'), -(5624,385,'_wc_review_count','0'), -(5625,385,'_product_version','9.8.4'), -(5630,385,'_edit_lock','1750342713:1'), -(5637,388,'_wp_attached_file','2024/10/ROKKU-C-arg.jpg'), -(5638,388,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/ROKKU-C-arg.jpg\";s:8:\"filesize\";i:328180;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ROKKU-C-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16682;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"ROKKU-C-arg.jpg\";}'), -(5639,388,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(5640,385,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5641,389,'_variation_description',''), -(5642,389,'total_sales','0'), -(5643,389,'_tax_status','taxable'), -(5644,389,'_tax_class','parent'), -(5645,389,'_manage_stock','no'), -(5646,389,'_backorders','no'), -(5647,389,'_sold_individually','no'), -(5648,389,'_virtual','no'), -(5649,389,'_downloadable','no'), -(5650,389,'_download_limit','-1'), -(5651,389,'_download_expiry','-1'), -(5652,389,'_stock',NULL), -(5653,389,'_stock_status','instock'), -(5654,389,'_wc_average_rating','0'), -(5655,389,'_wc_review_count','0'), -(5656,389,'attribute_pa_stone','green-jaspe'), -(5657,389,'_product_version','9.8.4'), -(5675,391,'_variation_description',''), -(5676,391,'total_sales','0'), -(5677,391,'_tax_status','taxable'), -(5678,391,'_tax_class','parent'), -(5679,391,'_manage_stock','no'), -(5680,391,'_backorders','no'), -(5681,391,'_sold_individually','no'), -(5682,391,'_virtual','no'), -(5683,391,'_downloadable','no'), -(5684,391,'_download_limit','-1'), -(5685,391,'_download_expiry','-1'), -(5686,391,'_stock',NULL), -(5687,391,'_stock_status','instock'), -(5688,391,'_wc_average_rating','0'), -(5689,391,'_wc_review_count','0'), -(5690,391,'attribute_pa_stone','lapis-lazuli'), -(5691,391,'_product_version','9.8.4'), -(5692,392,'_variation_description',''), -(5693,392,'total_sales','0'), -(5694,392,'_tax_status','taxable'), -(5695,392,'_tax_class','parent'), -(5696,392,'_manage_stock','no'), -(5697,392,'_backorders','no'), -(5698,392,'_sold_individually','no'), -(5699,392,'_virtual','no'), -(5700,392,'_downloadable','no'), -(5701,392,'_download_limit','-1'), -(5702,392,'_download_expiry','-1'), -(5703,392,'_stock',NULL), -(5704,392,'_stock_status','instock'), -(5705,392,'_wc_average_rating','0'), -(5706,392,'_wc_review_count','0'), -(5707,392,'attribute_pa_stone','tiger-eye'), -(5708,392,'_product_version','9.8.4'), -(5709,389,'_sku','ROKKU-C-jaspe'), -(5710,389,'_regular_price','120'), -(5711,389,'_thumbnail_id','0'), -(5712,389,'_price','120'), -(5717,391,'_sku','ROKKU-C-lapis'), -(5718,391,'_regular_price','120'), -(5719,391,'_thumbnail_id','0'), -(5720,391,'_price','120'), -(5721,392,'_sku','ROKKU-C-tiger'), -(5722,392,'_regular_price','120'), -(5723,392,'_thumbnail_id','0'), -(5724,392,'_price','120'), -(5726,385,'_edit_last','1'), -(5736,393,'_sku','MUGURA-CR-s'), -(5737,393,'total_sales','0'), -(5738,393,'_tax_status','taxable'), -(5739,393,'_tax_class',''), -(5740,393,'_manage_stock','no'), -(5741,393,'_backorders','no'), -(5742,393,'_sold_individually','no'), -(5743,393,'_virtual','no'), -(5744,393,'_downloadable','no'), -(5745,393,'_download_limit','-1'), -(5746,393,'_download_expiry','-1'), -(5747,393,'_thumbnail_id','932'), -(5748,393,'_stock',NULL), -(5749,393,'_stock_status','instock'), -(5750,393,'_wc_average_rating','0'), -(5751,393,'_wc_review_count','0'), -(5752,393,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5753,393,'_product_version','9.9.3'), -(5801,393,'_edit_lock','1750342713:1'), -(5802,396,'_wp_attached_file','2024/10/MUGURA-CR2-arg.jpg'), -(5803,396,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-arg.jpg\";s:8:\"filesize\";i:33386;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"MUGURA-CR2-arg.jpg\";}'), -(5804,396,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5805,397,'_wp_attached_file','2024/10/DSC9733.jpg'), -(5806,397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9733.jpg\";s:8:\"filesize\";i:373189;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9733-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14866;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(5807,397,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5808,393,'_edit_last','1'), -(5816,398,'_sku','MUGURA-CR-g'), -(5818,398,'total_sales','0'), -(5819,398,'_tax_status','taxable'), -(5820,398,'_tax_class',''), -(5821,398,'_manage_stock','no'), -(5822,398,'_backorders','no'), -(5823,398,'_sold_individually','no'), -(5824,398,'_virtual','no'), -(5825,398,'_downloadable','no'), -(5826,398,'_download_limit','-1'), -(5827,398,'_download_expiry','-1'), -(5829,398,'_stock',NULL), -(5830,398,'_stock_status','instock'), -(5831,398,'_wc_average_rating','0'), -(5832,398,'_wc_review_count','0'), -(5833,398,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5834,398,'_product_version','9.9.3'), -(5839,398,'_edit_lock','1750342713:1'), -(5843,400,'_wp_attached_file','2024/10/DSC9723.jpg'), -(5844,400,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9723.jpg\";s:8:\"filesize\";i:387538;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9723-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9723.jpg\";}'), -(5845,400,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5846,401,'_wp_attached_file','2024/10/DSC9730.jpg'), -(5847,401,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9730.jpg\";s:8:\"filesize\";i:388089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9730-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9730.jpg\";}'), -(5848,401,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5849,398,'_edit_last','1'), -(5885,404,'_wp_attached_file','2024/10/DSC9216.jpg'), -(5886,404,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9216.jpg\";s:8:\"filesize\";i:203691;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9216-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15326;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9216.jpg\";}'), -(5887,404,'_wp_attachment_image_alt','Mugura nail jewel in silver to slip on your finger.'), -(5928,408,'_wp_attached_file','2024/10/DSC9485.jpg'), -(5929,408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9485.jpg\";s:8:\"filesize\";i:509856;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9485-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17109;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(5930,408,'_wp_attachment_image_alt','Mugura nail jewel in gold plated silver to slip on your finger.'), -(5946,411,'_wp_attached_file','2024/09/DSC8400-copie.jpg'), -(5947,411,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2024/09/DSC8400-copie.jpg\";s:8:\"filesize\";i:497813;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"DSC8400-copie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"DSC8400-copie.jpg\";}'), -(5948,411,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), -(5955,412,'_wp_attached_file','2024/09/HATTARI-B-2-1.jpg'), -(5956,412,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2024/09/HATTARI-B-2-1.jpg\";s:8:\"filesize\";i:534610;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-B-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17021;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"HATTARI-B-2-1.jpg\";}'), -(5957,412,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver'), -(5990,419,'_wp_attached_file','2024/09/HATTARI-B-1.jpg'), -(5991,419,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/HATTARI-B-1.jpg\";s:8:\"filesize\";i:535511;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HATTARI-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17617;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"HATTARI-B-1.jpg\";}'), -(5992,419,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver'), -(5997,420,'_wp_attached_file','2024/09/HATTARI-B.jpg'), -(5998,420,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/09/HATTARI-B.jpg\";s:8:\"filesize\";i:37003;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"HATTARI-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4366;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"HATTARI-B.jpg\";}'), -(5999,420,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver'), -(6121,424,'_wp_attached_file','2024/10/DSC9376.jpg'), -(6122,424,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9376.jpg\";s:8:\"filesize\";i:313356;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9376-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13739;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9376.jpg\";}'), -(6123,424,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(6150,425,'_wp_attached_file','2024/10/DSC9156.jpg'), -(6151,425,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9156.jpg\";s:8:\"filesize\";i:410511;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9156-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9156.jpg\";}'), -(6152,425,'_wp_attachment_image_alt','Mugura minimalist opened earrings to slip into the earlobe, in sterling silver.'), -(6201,393,'_price','70'), -(6202,393,'_price','70'), -(6252,430,'_sku','ROKKU-CR-s'), -(6254,430,'total_sales','1'), -(6255,430,'_tax_status','taxable'), -(6256,430,'_tax_class',''), -(6257,430,'_manage_stock','no'), -(6258,430,'_backorders','no'), -(6259,430,'_sold_individually','no'), -(6260,430,'_virtual','no'), -(6261,430,'_downloadable','no'), -(6262,430,'_download_limit','-1'), -(6263,430,'_download_expiry','-1'), -(6265,430,'_stock',NULL), -(6266,430,'_stock_status','instock'), -(6267,430,'_wc_average_rating','0'), -(6268,430,'_wc_review_count','0'), -(6269,430,'_product_version','9.4.2'), -(6275,430,'_edit_lock','1732556276:1'), -(6282,430,'_edit_last','1'), -(6292,433,'_sku','ROKKU-CR-g'), -(6294,433,'total_sales','1'), -(6295,433,'_tax_status','taxable'), -(6296,433,'_tax_class',''), -(6297,433,'_manage_stock','no'), -(6298,433,'_backorders','no'), -(6299,433,'_sold_individually','no'), -(6300,433,'_virtual','no'), -(6301,433,'_downloadable','no'), -(6302,433,'_download_limit','-1'), -(6303,433,'_download_expiry','-1'), -(6305,433,'_stock',NULL), -(6306,433,'_stock_status','instock'), -(6307,433,'_wc_average_rating','0'), -(6308,433,'_wc_review_count','0'), -(6309,433,'_product_version','9.4.2'), -(6314,433,'_edit_lock','1732557031:1'), -(6318,433,'_edit_last','1'), -(6322,435,'_sku','KARA-EC-s'), -(6323,435,'_regular_price','40'), -(6324,435,'total_sales','3'), -(6325,435,'_tax_status','taxable'), -(6326,435,'_tax_class',''), -(6327,435,'_manage_stock','no'), -(6328,435,'_backorders','no'), -(6329,435,'_sold_individually','no'), -(6330,435,'_virtual','no'), -(6331,435,'_downloadable','no'), -(6332,435,'_download_limit','-1'), -(6333,435,'_download_expiry','-1'), -(6334,435,'_thumbnail_id','940'), -(6335,435,'_stock',NULL), -(6336,435,'_stock_status','instock'), -(6337,435,'_wc_average_rating','0'), -(6338,435,'_wc_review_count','0'), -(6339,435,'_product_version','9.9.3'), -(6340,435,'_price','40'), -(6344,435,'_edit_lock','1750342713:1'), -(6345,436,'_wp_attached_file','2024/10/KARA-EC-arg.jpg'), -(6346,436,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/KARA-EC-arg.jpg\";s:8:\"filesize\";i:27162;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"KARA-EC-arg.jpg\";}'), -(6347,436,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), -(6348,437,'_wp_attached_file','2024/10/DSC9781-1.jpg'), -(6349,437,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/DSC9781-1.jpg\";s:8:\"filesize\";i:374922;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9781-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"DSC9781-1.jpg\";}'), -(6350,437,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), -(6351,435,'_edit_last','1'), -(6364,398,'_price','75'), -(6365,398,'_regular_price','75'), -(6370,393,'_regular_price','70'), -(6501,447,'_sku','KARA-EC-s-1'), -(6502,447,'_regular_price','45'), -(6503,447,'total_sales','3'), -(6504,447,'_tax_status','taxable'), -(6505,447,'_tax_class',''), -(6506,447,'_manage_stock','no'), -(6507,447,'_backorders','no'), -(6508,447,'_sold_individually','no'), -(6509,447,'_virtual','no'), -(6510,447,'_downloadable','no'), -(6511,447,'_download_limit','-1'), -(6512,447,'_download_expiry','-1'), -(6514,447,'_stock',NULL), -(6515,447,'_stock_status','instock'), -(6516,447,'_wc_average_rating','0'), -(6517,447,'_wc_review_count','0'), -(6518,447,'_product_version','9.9.3'), -(6519,447,'_price','45'), -(6523,447,'_edit_lock','1750342713:1'), -(6530,447,'_edit_last','1'), -(6733,433,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(6734,478,'_variation_description',''), -(6735,478,'total_sales','0'), -(6736,478,'_tax_status','taxable'), -(6737,478,'_tax_class','parent'), -(6738,478,'_manage_stock','no'), -(6739,478,'_backorders','no'), -(6740,478,'_sold_individually','no'), -(6741,478,'_virtual','no'), -(6742,478,'_downloadable','no'), -(6743,478,'_download_limit','-1'), -(6744,478,'_download_expiry','-1'), -(6745,478,'_stock',NULL), -(6746,478,'_stock_status','instock'), -(6747,478,'_wc_average_rating','0'), -(6748,478,'_wc_review_count','0'), -(6749,478,'attribute_pa_stone','lapis-lazuli'), -(6750,478,'_product_version','9.4.1'), -(6751,479,'_variation_description',''), -(6752,479,'total_sales','0'), -(6753,479,'_tax_status','taxable'), -(6754,479,'_tax_class','parent'), -(6755,479,'_manage_stock','no'), -(6756,479,'_backorders','no'), -(6757,479,'_sold_individually','no'), -(6758,479,'_virtual','no'), -(6759,479,'_downloadable','no'), -(6760,479,'_download_limit','-1'), -(6761,479,'_download_expiry','-1'), -(6762,479,'_stock',NULL), -(6763,479,'_stock_status','instock'), -(6764,479,'_wc_average_rating','0'), -(6765,479,'_wc_review_count','0'), -(6766,479,'attribute_pa_stone','malachite'), -(6767,479,'_product_version','9.4.1'), -(6768,480,'_variation_description',''), -(6769,480,'total_sales','0'), -(6770,480,'_tax_status','taxable'), -(6771,480,'_tax_class','parent'), -(6772,480,'_manage_stock','no'), -(6773,480,'_backorders','no'), -(6774,480,'_sold_individually','no'), -(6775,480,'_virtual','no'), -(6776,480,'_downloadable','no'), -(6777,480,'_download_limit','-1'), -(6778,480,'_download_expiry','-1'), -(6779,480,'_stock',NULL), -(6780,480,'_stock_status','instock'), -(6781,480,'_wc_average_rating','0'), -(6782,480,'_wc_review_count','0'), -(6783,480,'attribute_pa_stone','tiger-eye'), -(6784,480,'_product_version','9.4.1'), -(6785,478,'_sku','ROKKU-CR-g-lapis'), -(6787,479,'_sku','ROKKU-CR-g-malachite'), -(6789,480,'_sku','ROKKU-CR-g-tiger'), -(6868,487,'_wp_attached_file','2024/10/DSC9138.jpg'), -(6869,487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9138.jpg\";s:8:\"filesize\";i:283469;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9138-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16095;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(6870,487,'_wp_attachment_image_alt','Rokku statement necklace in silver with semi tiger\'s eye stone pendant and gold plated clasp.'), -(6887,490,'_sku','HADOU-BOP'), -(6889,490,'total_sales','1'), -(6890,490,'_tax_status','taxable'), -(6891,490,'_tax_class',''), -(6892,490,'_manage_stock','no'), -(6893,490,'_backorders','no'), -(6894,490,'_sold_individually','no'), -(6895,490,'_virtual','no'), -(6896,490,'_downloadable','no'), -(6897,490,'_download_limit','-1'), -(6898,490,'_download_expiry','-1'), -(6900,490,'_stock',NULL), -(6901,490,'_stock_status','instock'), -(6902,490,'_wc_average_rating','0'), -(6903,490,'_wc_review_count','0'), -(6904,490,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(6905,490,'_product_version','9.9.3'), -(6912,490,'_edit_lock','1750342713:1'), -(6919,493,'_variation_description',''), -(6920,493,'total_sales','0'), -(6921,493,'_tax_status','taxable'), -(6922,493,'_tax_class','parent'), -(6923,493,'_manage_stock','no'), -(6924,493,'_backorders','no'), -(6925,493,'_sold_individually','no'), -(6926,493,'_virtual','no'), -(6927,493,'_downloadable','no'), -(6928,493,'_download_limit','-1'), -(6929,493,'_download_expiry','-1'), -(6930,493,'_stock',NULL), -(6931,493,'_stock_status','instock'), -(6932,493,'_wc_average_rating','0'), -(6933,493,'_wc_review_count','0'), -(6934,493,'attribute_pa_side','left-side'), -(6935,493,'_product_version','9.8.4'), -(6936,494,'_variation_description',''), -(6937,494,'total_sales','0'), -(6938,494,'_tax_status','taxable'), -(6939,494,'_tax_class','parent'), -(6940,494,'_manage_stock','no'), -(6941,494,'_backorders','no'), -(6942,494,'_sold_individually','no'), -(6943,494,'_virtual','no'), -(6944,494,'_downloadable','no'), -(6945,494,'_download_limit','-1'), -(6946,494,'_download_expiry','-1'), -(6947,494,'_stock',NULL), -(6948,494,'_stock_status','instock'), -(6949,494,'_wc_average_rating','0'), -(6950,494,'_wc_review_count','0'), -(6951,494,'attribute_pa_side','pair'), -(6952,494,'_product_version','9.8.4'), -(6953,495,'_variation_description',''), -(6954,495,'total_sales','0'), -(6955,495,'_tax_status','taxable'), -(6956,495,'_tax_class','parent'), -(6957,495,'_manage_stock','no'), -(6958,495,'_backorders','no'), -(6959,495,'_sold_individually','no'), -(6960,495,'_virtual','no'), -(6961,495,'_downloadable','no'), -(6962,495,'_download_limit','-1'), -(6963,495,'_download_expiry','-1'), -(6964,495,'_stock',NULL), -(6965,495,'_stock_status','instock'), -(6966,495,'_wc_average_rating','0'), -(6967,495,'_wc_review_count','0'), -(6968,495,'attribute_pa_side','right-side'), -(6969,495,'_product_version','9.8.4'), -(6970,493,'_sku','HADOU-BOP-left'), -(6971,493,'_regular_price','35'), -(6972,493,'_thumbnail_id','0'), -(6973,493,'_price','35'), -(6974,494,'_sku','HADOU-BOP-pair'), -(6975,494,'_regular_price','50'), -(6976,494,'_thumbnail_id','0'), -(6977,494,'_price','50'), -(6978,495,'_sku','HADOU-BOP-right'), -(6979,495,'_regular_price','35'), -(6980,495,'_thumbnail_id','0'), -(6981,495,'_price','35'), -(6984,490,'_edit_last','1'), -(6989,496,'_sku','MUGURA-CR1'), -(6990,496,'total_sales','0'), -(6991,496,'_tax_status','taxable'), -(6992,496,'_tax_class',''), -(6993,496,'_manage_stock','no'), -(6994,496,'_backorders','no'), -(6995,496,'_sold_individually','no'), -(6996,496,'_virtual','no'), -(6997,496,'_downloadable','no'), -(6998,496,'_download_limit','-1'), -(6999,496,'_download_expiry','-1'), -(7001,496,'_stock',NULL), -(7002,496,'_stock_status','instock'), -(7003,496,'_wc_average_rating','0'), -(7004,496,'_wc_review_count','0'), -(7006,496,'_product_version','9.9.3'), -(7069,496,'_edit_lock','1750342713:1'), -(7079,496,'_edit_last','1'), -(7080,496,'_regular_price','45'), -(7081,496,'_price','45'), -(7109,506,'_wp_attached_file','woocommerce-placeholder.png'), -(7110,506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:48149;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(7111,510,'_edit_last','1'), -(7112,510,'_edit_lock','1731429269:1'), -(7113,511,'_edit_last','1'), -(7114,511,'_edit_lock','1731429286:1'), -(7120,515,'_sku','BOROBORO-BO1-g'), -(7122,515,'total_sales','0'), -(7123,515,'_tax_status','taxable'), -(7124,515,'_tax_class',''), -(7125,515,'_manage_stock','no'), -(7126,515,'_backorders','no'), -(7127,515,'_sold_individually','no'), -(7128,515,'_virtual','no'), -(7129,515,'_downloadable','no'), -(7130,515,'_download_limit','-1'), -(7131,515,'_download_expiry','-1'), -(7133,515,'_stock',NULL), -(7134,515,'_stock_status','instock'), -(7135,515,'_wc_average_rating','0'), -(7136,515,'_wc_review_count','0'), -(7137,515,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7138,515,'_product_version','9.9.4'), -(7145,515,'_edit_lock','1750342713:1'), -(7197,515,'_price','65'), -(7198,515,'_edit_last','1'), -(7199,515,'_regular_price','65'), -(7204,521,'_sku','BOROBORO-BO1-s'), -(7205,521,'total_sales','2'), -(7206,521,'_tax_status','taxable'), -(7207,521,'_tax_class',''), -(7208,521,'_manage_stock','no'), -(7209,521,'_backorders','no'), -(7210,521,'_sold_individually','no'), -(7211,521,'_virtual','no'), -(7212,521,'_downloadable','no'), -(7213,521,'_download_limit','-1'), -(7214,521,'_download_expiry','-1'), -(7216,521,'_stock',NULL), -(7217,521,'_stock_status','instock'), -(7218,521,'_wc_average_rating','0'), -(7219,521,'_wc_review_count','0'), -(7220,521,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7221,521,'_product_version','9.9.4'), -(7247,523,'_variation_description',''), -(7248,523,'_sku','BOROBORO-BO1-s-brown'), -(7249,523,'_regular_price','60'), -(7250,523,'total_sales','0'), -(7251,523,'_tax_status','taxable'), -(7252,523,'_tax_class','parent'), -(7253,523,'_manage_stock','no'), -(7254,523,'_backorders','no'), -(7255,523,'_sold_individually','no'), -(7256,523,'_virtual','no'), -(7257,523,'_downloadable','no'), -(7258,523,'_download_limit','-1'), -(7259,523,'_download_expiry','-1'), -(7260,523,'_thumbnail_id','0'), -(7261,523,'_stock',NULL), -(7262,523,'_stock_status','instock'), -(7263,523,'_wc_average_rating','0'), -(7264,523,'_wc_review_count','0'), -(7265,523,'attribute_pa_stone','tiger-eye'), -(7266,523,'_price','60'), -(7267,523,'_product_version','9.3.3'), -(7269,521,'_edit_lock','1750342713:1'), -(7280,521,'_edit_last','1'), -(7320,528,'_variation_description',''), -(7321,528,'total_sales','0'), -(7322,528,'_tax_status','taxable'), -(7323,528,'_tax_class','parent'), -(7324,528,'_manage_stock','no'), -(7325,528,'_backorders','no'), -(7326,528,'_sold_individually','no'), -(7327,528,'_virtual','no'), -(7328,528,'_downloadable','no'), -(7329,528,'_download_limit','-1'), -(7330,528,'_download_expiry','-1'), -(7331,528,'_stock',NULL), -(7332,528,'_stock_status','instock'), -(7333,528,'_wc_average_rating','0'), -(7334,528,'_wc_review_count','0'), -(7335,528,'attribute_pa_size','64'), -(7336,528,'_product_version','9.3.3'), -(7338,528,'_thumbnail_id','0'), -(7339,102,'_price','85'), -(7344,529,'_variation_description',''), -(7345,529,'total_sales','0'), -(7346,529,'_tax_status','taxable'), -(7347,529,'_tax_class','parent'), -(7348,529,'_manage_stock','no'), -(7349,529,'_backorders','no'), -(7350,529,'_sold_individually','no'), -(7351,529,'_virtual','no'), -(7352,529,'_downloadable','no'), -(7353,529,'_download_limit','-1'), -(7354,529,'_download_expiry','-1'), -(7355,529,'_stock',NULL), -(7356,529,'_stock_status','instock'), -(7357,529,'_wc_average_rating','0'), -(7358,529,'_wc_review_count','0'), -(7359,529,'attribute_pa_size','64'), -(7360,529,'_product_version','9.3.3'), -(7362,529,'_thumbnail_id','0'), -(7363,113,'_price','90'), -(7368,530,'_variation_description',''), -(7369,530,'total_sales','0'), -(7370,530,'_tax_status','taxable'), -(7371,530,'_tax_class','parent'), -(7372,530,'_manage_stock','no'), -(7373,530,'_backorders','no'), -(7374,530,'_sold_individually','no'), -(7375,530,'_virtual','no'), -(7376,530,'_downloadable','no'), -(7377,530,'_download_limit','-1'), -(7378,530,'_download_expiry','-1'), -(7379,530,'_stock',NULL), -(7380,530,'_stock_status','instock'), -(7381,530,'_wc_average_rating','0'), -(7382,530,'_wc_review_count','0'), -(7383,530,'attribute_pa_size','64'), -(7384,530,'_product_version','9.9.3'), -(7386,530,'_thumbnail_id','0'), -(7395,532,'_variation_description',''), -(7396,532,'total_sales','0'), -(7397,532,'_tax_status','taxable'), -(7398,532,'_tax_class','parent'), -(7399,532,'_manage_stock','no'), -(7400,532,'_backorders','no'), -(7401,532,'_sold_individually','no'), -(7402,532,'_virtual','no'), -(7403,532,'_downloadable','no'), -(7404,532,'_download_limit','-1'), -(7405,532,'_download_expiry','-1'), -(7406,532,'_stock',NULL), -(7407,532,'_stock_status','instock'), -(7408,532,'_wc_average_rating','0'), -(7409,532,'_wc_review_count','0'), -(7410,532,'attribute_pa_size','64'), -(7411,532,'_product_version','9.8.4'), -(7413,532,'_thumbnail_id','0'), -(7421,533,'_variation_description',''), -(7422,533,'total_sales','0'), -(7423,533,'_tax_status','taxable'), -(7424,533,'_tax_class','parent'), -(7425,533,'_manage_stock','no'), -(7426,533,'_backorders','no'), -(7427,533,'_sold_individually','no'), -(7428,533,'_virtual','no'), -(7429,533,'_downloadable','no'), -(7430,533,'_download_limit','-1'), -(7431,533,'_download_expiry','-1'), -(7432,533,'_stock',NULL), -(7433,533,'_stock_status','instock'), -(7434,533,'_wc_average_rating','0'), -(7435,533,'_wc_review_count','0'), -(7436,533,'attribute_pa_size','64'), -(7437,533,'_product_version','9.3.3'), -(7439,533,'_thumbnail_id','0'), -(7440,144,'_price','75'), -(7445,534,'_variation_description',''), -(7446,534,'total_sales','0'), -(7447,534,'_tax_status','taxable'), -(7448,534,'_tax_class','parent'), -(7449,534,'_manage_stock','no'), -(7450,534,'_backorders','no'), -(7451,534,'_sold_individually','no'), -(7452,534,'_virtual','no'), -(7453,534,'_downloadable','no'), -(7454,534,'_download_limit','-1'), -(7455,534,'_download_expiry','-1'), -(7456,534,'_stock',NULL), -(7457,534,'_stock_status','instock'), -(7458,534,'_wc_average_rating','0'), -(7459,534,'_wc_review_count','0'), -(7460,534,'attribute_pa_size','64'), -(7461,534,'_product_version','9.3.3'), -(7463,534,'_thumbnail_id','0'), -(7464,155,'_price','80'), -(7478,535,'_sku','BOROBORO-BELT'), -(7480,535,'total_sales','0'), -(7481,535,'_tax_status','taxable'), -(7482,535,'_tax_class',''), -(7483,535,'_manage_stock','no'), -(7484,535,'_backorders','no'), -(7485,535,'_sold_individually','no'), -(7486,535,'_virtual','no'), -(7487,535,'_downloadable','no'), -(7488,535,'_download_limit','-1'), -(7489,535,'_download_expiry','-1'), -(7491,535,'_stock',NULL), -(7492,535,'_stock_status','instock'), -(7493,535,'_wc_average_rating','0'), -(7494,535,'_wc_review_count','0'), -(7495,535,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7496,535,'_product_version','9.4.1'), -(7502,535,'_edit_lock','1732524303:1'), -(7515,540,'_variation_description',''), -(7516,540,'total_sales','0'), -(7517,540,'_tax_status','taxable'), -(7518,540,'_tax_class','parent'), -(7519,540,'_manage_stock','no'), -(7520,540,'_backorders','no'), -(7521,540,'_sold_individually','no'), -(7522,540,'_virtual','no'), -(7523,540,'_downloadable','no'), -(7524,540,'_download_limit','-1'), -(7525,540,'_download_expiry','-1'), -(7526,540,'_stock',NULL), -(7527,540,'_stock_status','instock'), -(7528,540,'_wc_average_rating','0'), -(7529,540,'_wc_review_count','0'), -(7530,540,'attribute_pa_stone','crystal'), -(7531,540,'_product_version','9.3.3'), -(7532,541,'_variation_description',''), -(7533,541,'total_sales','0'), -(7534,541,'_tax_status','taxable'), -(7535,541,'_tax_class','parent'), -(7536,541,'_manage_stock','no'), -(7537,541,'_backorders','no'), -(7538,541,'_sold_individually','no'), -(7539,541,'_virtual','no'), -(7540,541,'_downloadable','no'), -(7541,541,'_download_limit','-1'), -(7542,541,'_download_expiry','-1'), -(7543,541,'_stock',NULL), -(7544,541,'_stock_status','instock'), -(7545,541,'_wc_average_rating','0'), -(7546,541,'_wc_review_count','0'), -(7547,541,'attribute_pa_stone','jade'), -(7548,541,'_product_version','9.3.3'), -(7549,540,'_sku','BOROBORO-BLT-crystal'), -(7550,540,'_regular_price','65'), -(7551,540,'_thumbnail_id','0'), -(7552,540,'_price','65'), -(7553,541,'_sku','BOROBORO-BLT-jade'), -(7554,541,'_regular_price','65'), -(7555,541,'_thumbnail_id','0'), -(7556,541,'_price','65'), -(7557,535,'_price','65'), -(7558,535,'_edit_last','1'), -(7559,535,'_regular_price','65'), -(7568,545,'_sku','KARA-CR1-g'), -(7570,545,'total_sales','2'), -(7571,545,'_tax_status','taxable'), -(7572,545,'_tax_class',''), -(7573,545,'_manage_stock','no'), -(7574,545,'_backorders','no'), -(7575,545,'_sold_individually','no'), -(7576,545,'_virtual','no'), -(7577,545,'_downloadable','no'), -(7578,545,'_download_limit','-1'), -(7579,545,'_download_expiry','-1'), -(7581,545,'_stock',NULL), -(7582,545,'_stock_status','instock'), -(7583,545,'_wc_average_rating','0'), -(7584,545,'_wc_review_count','0'), -(7585,545,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7586,545,'_product_version','9.9.3'), -(7592,545,'_edit_lock','1750342713:1'), -(7602,545,'_edit_last','1'), -(7681,552,'_variation_description',''), -(7682,552,'total_sales','0'), -(7683,552,'_tax_status','taxable'), -(7684,552,'_tax_class','parent'), -(7685,552,'_manage_stock','no'), -(7686,552,'_backorders','no'), -(7687,552,'_sold_individually','no'), -(7688,552,'_virtual','no'), -(7689,552,'_downloadable','no'), -(7690,552,'_download_limit','-1'), -(7691,552,'_download_expiry','-1'), -(7692,552,'_stock',NULL), -(7693,552,'_stock_status','instock'), -(7694,552,'_wc_average_rating','0'), -(7695,552,'_wc_review_count','0'), -(7696,552,'attribute_pa_side','one'), -(7697,552,'_product_version','9.8.4'), -(7698,553,'_variation_description',''), -(7699,553,'total_sales','0'), -(7700,553,'_tax_status','taxable'), -(7701,553,'_tax_class','parent'), -(7702,553,'_manage_stock','no'), -(7703,553,'_backorders','no'), -(7704,553,'_sold_individually','no'), -(7705,553,'_virtual','no'), -(7706,553,'_downloadable','no'), -(7707,553,'_download_limit','-1'), -(7708,553,'_download_expiry','-1'), -(7709,553,'_stock',NULL), -(7710,553,'_stock_status','instock'), -(7711,553,'_wc_average_rating','0'), -(7712,553,'_wc_review_count','0'), -(7713,553,'attribute_pa_side','pair'), -(7714,553,'_product_version','9.8.4'), -(7715,552,'_sku','KARA-CR-g-one'), -(7716,552,'_regular_price','45'), -(7717,552,'_thumbnail_id','0'), -(7718,552,'_price','45'), -(7719,553,'_sku','KARA-CR-g-pair'), -(7720,553,'_regular_price','70'), -(7721,553,'_thumbnail_id','0'), -(7722,553,'_price','70'), -(7729,554,'_sku','KARA-CR1-s'), -(7730,554,'total_sales','1'), -(7731,554,'_tax_status','taxable'), -(7732,554,'_tax_class',''), -(7733,554,'_manage_stock','no'), -(7734,554,'_backorders','no'), -(7735,554,'_sold_individually','no'), -(7736,554,'_virtual','no'), -(7737,554,'_downloadable','no'), -(7738,554,'_download_limit','-1'), -(7739,554,'_download_expiry','-1'), -(7741,554,'_stock',NULL), -(7742,554,'_stock_status','instock'), -(7743,554,'_wc_average_rating','0'), -(7744,554,'_wc_review_count','0'), -(7745,554,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7746,554,'_product_version','9.9.3'), -(7750,555,'_variation_description',''), -(7751,555,'_sku','KARA-CR-s-pair'), -(7752,555,'_regular_price','65'), -(7753,555,'total_sales','0'), -(7754,555,'_tax_status','taxable'), -(7755,555,'_tax_class','parent'), -(7756,555,'_manage_stock','no'), -(7757,555,'_backorders','no'), -(7758,555,'_sold_individually','no'), -(7759,555,'_virtual','no'), -(7760,555,'_downloadable','no'), -(7761,555,'_download_limit','-1'), -(7762,555,'_download_expiry','-1'), -(7763,555,'_thumbnail_id','0'), -(7764,555,'_stock',NULL), -(7765,555,'_stock_status','instock'), -(7766,555,'_wc_average_rating','0'), -(7767,555,'_wc_review_count','0'), -(7768,555,'attribute_pa_side','pair'), -(7769,555,'_price','65'), -(7770,555,'_product_version','9.8.4'), -(7771,556,'_variation_description',''), -(7772,556,'_sku','KARA-CR-s-one'), -(7773,556,'_regular_price','40'), -(7774,556,'total_sales','0'), -(7775,556,'_tax_status','taxable'), -(7776,556,'_tax_class','parent'), -(7777,556,'_manage_stock','no'), -(7778,556,'_backorders','no'), -(7779,556,'_sold_individually','no'), -(7780,556,'_virtual','no'), -(7781,556,'_downloadable','no'), -(7782,556,'_download_limit','-1'), -(7783,556,'_download_expiry','-1'), -(7784,556,'_thumbnail_id','0'), -(7785,556,'_stock',NULL), -(7786,556,'_stock_status','instock'), -(7787,556,'_wc_average_rating','0'), -(7788,556,'_wc_review_count','0'), -(7789,556,'attribute_pa_side','one'), -(7790,556,'_price','40'), -(7791,556,'_product_version','9.8.4'), -(7794,554,'_edit_lock','1750342713:1'), -(7803,554,'_edit_last','1'), -(7810,560,'_variation_description',''), -(7811,560,'total_sales','0'), -(7812,560,'_tax_status','taxable'), -(7813,560,'_tax_class','parent'), -(7814,560,'_manage_stock','no'), -(7815,560,'_backorders','no'), -(7816,560,'_sold_individually','no'), -(7817,560,'_virtual','no'), -(7818,560,'_downloadable','no'), -(7819,560,'_download_limit','-1'), -(7820,560,'_download_expiry','-1'), -(7821,560,'_stock',NULL), -(7822,560,'_stock_status','instock'), -(7823,560,'_wc_average_rating','0'), -(7824,560,'_wc_review_count','0'), -(7825,560,'attribute_pa_side','all'), -(7826,560,'_product_version','9.9.3'), -(7827,561,'_variation_description',''), -(7828,561,'total_sales','0'), -(7829,561,'_tax_status','taxable'), -(7830,561,'_tax_class','parent'), -(7831,561,'_manage_stock','no'), -(7832,561,'_backorders','no'), -(7833,561,'_sold_individually','no'), -(7834,561,'_virtual','no'), -(7835,561,'_downloadable','no'), -(7836,561,'_download_limit','-1'), -(7837,561,'_download_expiry','-1'), -(7838,561,'_stock',NULL), -(7839,561,'_stock_status','instock'), -(7840,561,'_wc_average_rating','0'), -(7841,561,'_wc_review_count','0'), -(7842,561,'attribute_pa_side','long'), -(7843,561,'_product_version','9.9.3'), -(7844,562,'_variation_description',''), -(7845,562,'total_sales','0'), -(7846,562,'_tax_status','taxable'), -(7847,562,'_tax_class','parent'), -(7848,562,'_manage_stock','no'), -(7849,562,'_backorders','no'), -(7850,562,'_sold_individually','no'), -(7851,562,'_virtual','no'), -(7852,562,'_downloadable','no'), -(7853,562,'_download_limit','-1'), -(7854,562,'_download_expiry','-1'), -(7855,562,'_stock',NULL), -(7856,562,'_stock_status','instock'), -(7857,562,'_wc_average_rating','0'), -(7858,562,'_wc_review_count','0'), -(7859,562,'attribute_pa_side','medium'), -(7860,562,'_product_version','9.9.3'), -(7861,563,'_variation_description',''), -(7862,563,'total_sales','0'), -(7863,563,'_tax_status','taxable'), -(7864,563,'_tax_class','parent'), -(7865,563,'_manage_stock','no'), -(7866,563,'_backorders','no'), -(7867,563,'_sold_individually','no'), -(7868,563,'_virtual','no'), -(7869,563,'_downloadable','no'), -(7870,563,'_download_limit','-1'), -(7871,563,'_download_expiry','-1'), -(7872,563,'_stock',NULL), -(7873,563,'_stock_status','instock'), -(7874,563,'_wc_average_rating','0'), -(7875,563,'_wc_review_count','0'), -(7876,563,'attribute_pa_side','short'), -(7877,563,'_product_version','9.9.3'), -(7878,560,'_sku','MUGURA-BOP-all'), -(7879,560,'_regular_price','55'), -(7880,560,'_thumbnail_id','0'), -(7881,560,'_price','55'), -(7882,561,'_sku','MUGURA-BOP-long'), -(7883,561,'_regular_price','38'), -(7884,561,'_thumbnail_id','0'), -(7885,561,'_price','38'), -(7886,562,'_sku','MUGURA-BOP-medium'), -(7887,562,'_regular_price','35'), -(7888,562,'_thumbnail_id','0'), -(7889,562,'_price','35'), -(7890,563,'_sku','MUGURA-BOP-short'), -(7891,563,'_regular_price','30'), -(7892,563,'_thumbnail_id','0'), -(7893,563,'_price','30'), -(7909,565,'_variation_description',''), -(7910,565,'total_sales','0'), -(7911,565,'_tax_status','taxable'), -(7912,565,'_tax_class','parent'), -(7913,565,'_manage_stock','no'), -(7914,565,'_backorders','no'), -(7915,565,'_sold_individually','no'), -(7916,565,'_virtual','no'), -(7917,565,'_downloadable','no'), -(7918,565,'_download_limit','-1'), -(7919,565,'_download_expiry','-1'), -(7920,565,'_stock',NULL), -(7921,565,'_stock_status','instock'), -(7922,565,'_wc_average_rating','0'), -(7923,565,'_wc_review_count','0'), -(7924,565,'attribute_pa_side','one-element-side'), -(7925,565,'_product_version','9.9.3'), -(7926,566,'_variation_description',''), -(7927,566,'total_sales','0'), -(7928,566,'_tax_status','taxable'), -(7929,566,'_tax_class','parent'), -(7930,566,'_manage_stock','no'), -(7931,566,'_backorders','no'), -(7932,566,'_sold_individually','no'), -(7933,566,'_virtual','no'), -(7934,566,'_downloadable','no'), -(7935,566,'_download_limit','-1'), -(7936,566,'_download_expiry','-1'), -(7937,566,'_stock',NULL), -(7938,566,'_stock_status','instock'), -(7939,566,'_wc_average_rating','0'), -(7940,566,'_wc_review_count','0'), -(7941,566,'attribute_pa_side','pair'), -(7942,566,'_product_version','9.9.3'), -(7943,567,'_variation_description',''), -(7944,567,'total_sales','0'), -(7945,567,'_tax_status','taxable'), -(7946,567,'_tax_class','parent'), -(7947,567,'_manage_stock','no'), -(7948,567,'_backorders','no'), -(7949,567,'_sold_individually','no'), -(7950,567,'_virtual','no'), -(7951,567,'_downloadable','no'), -(7952,567,'_download_limit','-1'), -(7953,567,'_download_expiry','-1'), -(7954,567,'_stock',NULL), -(7955,567,'_stock_status','instock'), -(7956,567,'_wc_average_rating','0'), -(7957,567,'_wc_review_count','0'), -(7958,567,'attribute_pa_side','two-elements-side'), -(7959,567,'_product_version','9.9.3'), -(7960,565,'_regular_price','45'), -(7961,565,'_thumbnail_id','0'), -(7962,565,'_price','45'), -(7963,566,'_regular_price','70'), -(7964,566,'_thumbnail_id','0'), -(7965,566,'_price','70'), -(7966,567,'_regular_price','45'), -(7967,567,'_thumbnail_id','0'), -(7968,567,'_price','45'), -(7980,569,'_variation_description',''), -(7981,569,'total_sales','0'), -(7982,569,'_tax_status','taxable'), -(7983,569,'_tax_class','parent'), -(7984,569,'_manage_stock','no'), -(7985,569,'_backorders','no'), -(7986,569,'_sold_individually','no'), -(7987,569,'_virtual','no'), -(7988,569,'_downloadable','no'), -(7989,569,'_download_limit','-1'), -(7990,569,'_download_expiry','-1'), -(7991,569,'_stock',NULL), -(7992,569,'_stock_status','instock'), -(7993,569,'_wc_average_rating','0'), -(7994,569,'_wc_review_count','0'), -(7995,569,'attribute_pa_side','one-element-side'), -(7996,569,'_product_version','9.8.4'), -(7997,570,'_variation_description',''), -(7998,570,'total_sales','0'), -(7999,570,'_tax_status','taxable'), -(8000,570,'_tax_class','parent'), -(8001,570,'_manage_stock','no'), -(8002,570,'_backorders','no'), -(8003,570,'_sold_individually','no'), -(8004,570,'_virtual','no'), -(8005,570,'_downloadable','no'), -(8006,570,'_download_limit','-1'), -(8007,570,'_download_expiry','-1'), -(8008,570,'_stock',NULL), -(8009,570,'_stock_status','instock'), -(8010,570,'_wc_average_rating','0'), -(8011,570,'_wc_review_count','0'), -(8012,570,'attribute_pa_side','pair'), -(8013,570,'_product_version','9.9.3'), -(8014,571,'_variation_description',''), -(8015,571,'total_sales','0'), -(8016,571,'_tax_status','taxable'), -(8017,571,'_tax_class','parent'), -(8018,571,'_manage_stock','no'), -(8019,571,'_backorders','no'), -(8020,571,'_sold_individually','no'), -(8021,571,'_virtual','no'), -(8022,571,'_downloadable','no'), -(8023,571,'_download_limit','-1'), -(8024,571,'_download_expiry','-1'), -(8025,571,'_stock',NULL), -(8026,571,'_stock_status','instock'), -(8027,571,'_wc_average_rating','0'), -(8028,571,'_wc_review_count','0'), -(8029,571,'attribute_pa_side','two-elements-side'), -(8030,571,'_product_version','9.8.4'), -(8031,569,'_sku','BOROBORO-BO2-g-one'), -(8032,569,'_regular_price','50'), -(8033,569,'_thumbnail_id','0'), -(8034,569,'_price','50'), -(8035,570,'_sku','BOROBORO-BO2-g-pair'), -(8036,570,'_regular_price','75'), -(8037,570,'_thumbnail_id','0'), -(8038,570,'_price','75'), -(8039,571,'_sku','BOROBORO-BO2-g-two'), -(8040,571,'_regular_price','50'), -(8041,571,'_thumbnail_id','0'), -(8042,571,'_price','50'), -(8052,566,'_sku','BOROBORO-BO2-s-pair'), -(8053,565,'_sku','BOROBORO-BO2-s-one'), -(8054,567,'_sku','BOROBORO-BO2-s-two'), -(8652,610,'_sku','HATTARI-BR'), -(8653,610,'_regular_price','120'), -(8654,610,'total_sales','0'), -(8655,610,'_tax_status','taxable'), -(8656,610,'_tax_class',''), -(8657,610,'_manage_stock','no'), -(8658,610,'_backorders','no'), -(8659,610,'_sold_individually','no'), -(8660,610,'_virtual','no'), -(8661,610,'_downloadable','no'), -(8662,610,'_download_limit','-1'), -(8663,610,'_download_expiry','-1'), -(8665,610,'_stock',NULL), -(8666,610,'_stock_status','instock'), -(8667,610,'_wc_average_rating','0'), -(8668,610,'_wc_review_count','0'), -(8669,610,'_product_version','9.8.4'), -(8670,610,'_price','120'), -(8674,610,'_edit_lock','1750342713:1'), -(8682,610,'_edit_last','1'), -(8686,613,'_sku','BOROBORO-B2-g'), -(8687,613,'total_sales','0'), -(8688,613,'_tax_status','taxable'), -(8689,613,'_tax_class',''), -(8690,613,'_manage_stock','no'), -(8691,613,'_backorders','no'), -(8692,613,'_sold_individually','no'), -(8693,613,'_virtual','no'), -(8694,613,'_downloadable','no'), -(8695,613,'_download_limit','-1'), -(8696,613,'_download_expiry','-1'), -(8698,613,'_stock',NULL), -(8699,613,'_stock_status','instock'), -(8700,613,'_wc_average_rating','0'), -(8701,613,'_wc_review_count','0'), -(8702,613,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(8703,613,'_product_version','9.4.2'), -(8710,614,'_variation_description',''), -(8711,614,'_regular_price','70'), -(8712,614,'total_sales','0'), -(8713,614,'_tax_status','taxable'), -(8714,614,'_tax_class','parent'), -(8715,614,'_manage_stock','no'), -(8716,614,'_backorders','no'), -(8717,614,'_sold_individually','no'), -(8718,614,'_virtual','no'), -(8719,614,'_downloadable','no'), -(8720,614,'_download_limit','-1'), -(8721,614,'_download_expiry','-1'), -(8722,614,'_thumbnail_id','0'), -(8723,614,'_stock',NULL), -(8724,614,'_stock_status','instock'), -(8725,614,'_wc_average_rating','0'), -(8726,614,'_wc_review_count','0'), -(8727,614,'attribute_pa_size','50'), -(8728,614,'_price','70'), -(8729,614,'_product_version','9.3.3'), -(8730,615,'_variation_description',''), -(8731,615,'_regular_price','70'), -(8732,615,'total_sales','0'), -(8733,615,'_tax_status','taxable'), -(8734,615,'_tax_class','parent'), -(8735,615,'_manage_stock','no'), -(8736,615,'_backorders','no'), -(8737,615,'_sold_individually','no'), -(8738,615,'_virtual','no'), -(8739,615,'_downloadable','no'), -(8740,615,'_download_limit','-1'), -(8741,615,'_download_expiry','-1'), -(8742,615,'_thumbnail_id','0'), -(8743,615,'_stock',NULL), -(8744,615,'_stock_status','instock'), -(8745,615,'_wc_average_rating','0'), -(8746,615,'_wc_review_count','0'), -(8747,615,'attribute_pa_size','52'), -(8748,615,'_price','70'), -(8749,615,'_product_version','9.3.3'), -(8750,616,'_variation_description',''), -(8751,616,'_regular_price','70'), -(8752,616,'total_sales','0'), -(8753,616,'_tax_status','taxable'), -(8754,616,'_tax_class','parent'), -(8755,616,'_manage_stock','no'), -(8756,616,'_backorders','no'), -(8757,616,'_sold_individually','no'), -(8758,616,'_virtual','no'), -(8759,616,'_downloadable','no'), -(8760,616,'_download_limit','-1'), -(8761,616,'_download_expiry','-1'), -(8762,616,'_thumbnail_id','0'), -(8763,616,'_stock',NULL), -(8764,616,'_stock_status','instock'), -(8765,616,'_wc_average_rating','0'), -(8766,616,'_wc_review_count','0'), -(8767,616,'attribute_pa_size','54'), -(8768,616,'_price','70'), -(8769,616,'_product_version','9.3.3'), -(8770,617,'_variation_description',''), -(8771,617,'_regular_price','70'), -(8772,617,'total_sales','0'), -(8773,617,'_tax_status','taxable'), -(8774,617,'_tax_class','parent'), -(8775,617,'_manage_stock','no'), -(8776,617,'_backorders','no'), -(8777,617,'_sold_individually','no'), -(8778,617,'_virtual','no'), -(8779,617,'_downloadable','no'), -(8780,617,'_download_limit','-1'), -(8781,617,'_download_expiry','-1'), -(8782,617,'_thumbnail_id','0'), -(8783,617,'_stock',NULL), -(8784,617,'_stock_status','instock'), -(8785,617,'_wc_average_rating','0'), -(8786,617,'_wc_review_count','0'), -(8787,617,'attribute_pa_size','56'), -(8788,617,'_price','70'), -(8789,617,'_product_version','9.3.3'), -(8790,618,'_variation_description',''), -(8791,618,'_regular_price','70'), -(8792,618,'total_sales','0'), -(8793,618,'_tax_status','taxable'), -(8794,618,'_tax_class','parent'), -(8795,618,'_manage_stock','no'), -(8796,618,'_backorders','no'), -(8797,618,'_sold_individually','no'), -(8798,618,'_virtual','no'), -(8799,618,'_downloadable','no'), -(8800,618,'_download_limit','-1'), -(8801,618,'_download_expiry','-1'), -(8802,618,'_thumbnail_id','0'), -(8803,618,'_stock',NULL), -(8804,618,'_stock_status','instock'), -(8805,618,'_wc_average_rating','0'), -(8806,618,'_wc_review_count','0'), -(8807,618,'attribute_pa_size','58'), -(8808,618,'_price','70'), -(8809,618,'_product_version','9.3.3'), -(8810,619,'_variation_description',''), -(8811,619,'_regular_price','70'), -(8812,619,'total_sales','0'), -(8813,619,'_tax_status','taxable'), -(8814,619,'_tax_class','parent'), -(8815,619,'_manage_stock','no'), -(8816,619,'_backorders','no'), -(8817,619,'_sold_individually','no'), -(8818,619,'_virtual','no'), -(8819,619,'_downloadable','no'), -(8820,619,'_download_limit','-1'), -(8821,619,'_download_expiry','-1'), -(8822,619,'_thumbnail_id','0'), -(8823,619,'_stock',NULL), -(8824,619,'_stock_status','instock'), -(8825,619,'_wc_average_rating','0'), -(8826,619,'_wc_review_count','0'), -(8827,619,'attribute_pa_size','60'), -(8828,619,'_price','70'), -(8829,619,'_product_version','9.3.3'), -(8830,620,'_variation_description',''), -(8831,620,'_regular_price','70'), -(8832,620,'total_sales','0'), -(8833,620,'_tax_status','taxable'), -(8834,620,'_tax_class','parent'), -(8835,620,'_manage_stock','no'), -(8836,620,'_backorders','no'), -(8837,620,'_sold_individually','no'), -(8838,620,'_virtual','no'), -(8839,620,'_downloadable','no'), -(8840,620,'_download_limit','-1'), -(8841,620,'_download_expiry','-1'), -(8842,620,'_thumbnail_id','0'), -(8843,620,'_stock',NULL), -(8844,620,'_stock_status','instock'), -(8845,620,'_wc_average_rating','0'), -(8846,620,'_wc_review_count','0'), -(8847,620,'attribute_pa_size','62'), -(8848,620,'_price','70'), -(8849,620,'_product_version','9.4.1'), -(8851,613,'_edit_lock','1750342643:1'), -(8861,624,'_variation_description',''), -(8862,624,'total_sales','0'), -(8863,624,'_tax_status','taxable'), -(8864,624,'_tax_class','parent'), -(8865,624,'_manage_stock','no'), -(8866,624,'_backorders','no'), -(8867,624,'_sold_individually','no'), -(8868,624,'_virtual','no'), -(8869,624,'_downloadable','no'), -(8870,624,'_download_limit','-1'), -(8871,624,'_download_expiry','-1'), -(8872,624,'_stock',NULL), -(8873,624,'_stock_status','instock'), -(8874,624,'_wc_average_rating','0'), -(8875,624,'_wc_review_count','0'), -(8876,624,'attribute_pa_size','64'), -(8877,624,'_product_version','9.3.3'), -(8879,624,'_sku','BOROBORO-B2-g-60'), -(8880,624,'_regular_price','70'), -(8881,624,'_thumbnail_id','0'), -(8882,624,'_price','70'), -(8883,614,'_sku','BOROBORO-B2-g-50'), -(8884,615,'_sku','BOROBORO-B2-g-52'), -(8885,616,'_sku','BOROBORO-B2-g-54'), -(8886,617,'_sku','BOROBORO-B2-g-56'), -(8887,618,'_sku','BOROBORO-B2-g-58'), -(8890,613,'_edit_last','1'), -(8895,625,'_sku','BOROBORO-B2-s'), -(8896,625,'total_sales','0'), -(8897,625,'_tax_status','taxable'), -(8898,625,'_tax_class',''), -(8899,625,'_manage_stock','no'), -(8900,625,'_backorders','no'), -(8901,625,'_sold_individually','no'), -(8902,625,'_virtual','no'), -(8903,625,'_downloadable','no'), -(8904,625,'_download_limit','-1'), -(8905,625,'_download_expiry','-1'), -(8907,625,'_stock',NULL), -(8908,625,'_stock_status','instock'), -(8909,625,'_wc_average_rating','0'), -(8910,625,'_wc_review_count','0'), -(8911,625,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(8912,625,'_product_version','9.4.2'), -(8917,626,'_variation_description',''), -(8918,626,'_sku','BOROBORO-B2-s-50'), -(8919,626,'_regular_price','65'), -(8920,626,'total_sales','0'), -(8921,626,'_tax_status','taxable'), -(8922,626,'_tax_class','parent'), -(8923,626,'_manage_stock','no'), -(8924,626,'_backorders','no'), -(8925,626,'_sold_individually','no'), -(8926,626,'_virtual','no'), -(8927,626,'_downloadable','no'), -(8928,626,'_download_limit','-1'), -(8929,626,'_download_expiry','-1'), -(8930,626,'_thumbnail_id','0'), -(8931,626,'_stock',NULL), -(8932,626,'_stock_status','instock'), -(8933,626,'_wc_average_rating','0'), -(8934,626,'_wc_review_count','0'), -(8935,626,'attribute_pa_size','50'), -(8936,626,'_price','65'), -(8937,626,'_product_version','9.3.3'), -(8938,627,'_variation_description',''), -(8939,627,'_sku','BOROBORO-B2-s-52'), -(8940,627,'_regular_price','65'), -(8941,627,'total_sales','0'), -(8942,627,'_tax_status','taxable'), -(8943,627,'_tax_class','parent'), -(8944,627,'_manage_stock','no'), -(8945,627,'_backorders','no'), -(8946,627,'_sold_individually','no'), -(8947,627,'_virtual','no'), -(8948,627,'_downloadable','no'), -(8949,627,'_download_limit','-1'), -(8950,627,'_download_expiry','-1'), -(8951,627,'_thumbnail_id','0'), -(8952,627,'_stock',NULL), -(8953,627,'_stock_status','instock'), -(8954,627,'_wc_average_rating','0'), -(8955,627,'_wc_review_count','0'), -(8956,627,'attribute_pa_size','52'), -(8957,627,'_price','65'), -(8958,627,'_product_version','9.3.3'), -(8959,628,'_variation_description',''), -(8960,628,'_sku','BOROBORO-B2-s-54'), -(8961,628,'_regular_price','65'), -(8962,628,'total_sales','0'), -(8963,628,'_tax_status','taxable'), -(8964,628,'_tax_class','parent'), -(8965,628,'_manage_stock','no'), -(8966,628,'_backorders','no'), -(8967,628,'_sold_individually','no'), -(8968,628,'_virtual','no'), -(8969,628,'_downloadable','no'), -(8970,628,'_download_limit','-1'), -(8971,628,'_download_expiry','-1'), -(8972,628,'_thumbnail_id','0'), -(8973,628,'_stock',NULL), -(8974,628,'_stock_status','instock'), -(8975,628,'_wc_average_rating','0'), -(8976,628,'_wc_review_count','0'), -(8977,628,'attribute_pa_size','54'), -(8978,628,'_price','65'), -(8979,628,'_product_version','9.3.3'), -(8980,629,'_variation_description',''), -(8981,629,'_sku','BOROBORO-B2-s-56'), -(8982,629,'_regular_price','65'), -(8983,629,'total_sales','0'), -(8984,629,'_tax_status','taxable'), -(8985,629,'_tax_class','parent'), -(8986,629,'_manage_stock','no'), -(8987,629,'_backorders','no'), -(8988,629,'_sold_individually','no'), -(8989,629,'_virtual','no'), -(8990,629,'_downloadable','no'), -(8991,629,'_download_limit','-1'), -(8992,629,'_download_expiry','-1'), -(8993,629,'_thumbnail_id','0'), -(8994,629,'_stock',NULL), -(8995,629,'_stock_status','instock'), -(8996,629,'_wc_average_rating','0'), -(8997,629,'_wc_review_count','0'), -(8998,629,'attribute_pa_size','56'), -(8999,629,'_price','65'), -(9000,629,'_product_version','9.3.3'), -(9001,630,'_variation_description',''), -(9002,630,'_sku','BOROBORO-B2-s-58'), -(9003,630,'_regular_price','65'), -(9004,630,'total_sales','0'), -(9005,630,'_tax_status','taxable'), -(9006,630,'_tax_class','parent'), -(9007,630,'_manage_stock','no'), -(9008,630,'_backorders','no'), -(9009,630,'_sold_individually','no'), -(9010,630,'_virtual','no'), -(9011,630,'_downloadable','no'), -(9012,630,'_download_limit','-1'), -(9013,630,'_download_expiry','-1'), -(9014,630,'_thumbnail_id','0'), -(9015,630,'_stock',NULL), -(9016,630,'_stock_status','instock'), -(9017,630,'_wc_average_rating','0'), -(9018,630,'_wc_review_count','0'), -(9019,630,'attribute_pa_size','58'), -(9020,630,'_price','65'), -(9021,630,'_product_version','9.3.3'), -(9022,631,'_variation_description',''), -(9023,631,'_regular_price','65'), -(9024,631,'total_sales','0'), -(9025,631,'_tax_status','taxable'), -(9026,631,'_tax_class','parent'), -(9027,631,'_manage_stock','no'), -(9028,631,'_backorders','no'), -(9029,631,'_sold_individually','no'), -(9030,631,'_virtual','no'), -(9031,631,'_downloadable','no'), -(9032,631,'_download_limit','-1'), -(9033,631,'_download_expiry','-1'), -(9034,631,'_thumbnail_id','0'), -(9035,631,'_stock',NULL), -(9036,631,'_stock_status','instock'), -(9037,631,'_wc_average_rating','0'), -(9038,631,'_wc_review_count','0'), -(9039,631,'attribute_pa_size','60'), -(9040,631,'_price','65'), -(9041,631,'_product_version','9.3.3'), -(9042,632,'_variation_description',''), -(9043,632,'_regular_price','65'), -(9044,632,'total_sales','0'), -(9045,632,'_tax_status','taxable'), -(9046,632,'_tax_class','parent'), -(9047,632,'_manage_stock','no'), -(9048,632,'_backorders','no'), -(9049,632,'_sold_individually','no'), -(9050,632,'_virtual','no'), -(9051,632,'_downloadable','no'), -(9052,632,'_download_limit','-1'), -(9053,632,'_download_expiry','-1'), -(9054,632,'_thumbnail_id','0'), -(9055,632,'_stock',NULL), -(9056,632,'_stock_status','instock'), -(9057,632,'_wc_average_rating','0'), -(9058,632,'_wc_review_count','0'), -(9059,632,'attribute_pa_size','62'), -(9060,632,'_price','65'), -(9061,632,'_product_version','9.3.3'), -(9062,633,'_variation_description',''), -(9063,633,'_sku','BOROBORO-B2-s-64'), -(9064,633,'_regular_price','65'), -(9065,633,'total_sales','0'), -(9066,633,'_tax_status','taxable'), -(9067,633,'_tax_class','parent'), -(9068,633,'_manage_stock','no'), -(9069,633,'_backorders','no'), -(9070,633,'_sold_individually','no'), -(9071,633,'_virtual','no'), -(9072,633,'_downloadable','no'), -(9073,633,'_download_limit','-1'), -(9074,633,'_download_expiry','-1'), -(9075,633,'_thumbnail_id','0'), -(9076,633,'_stock',NULL), -(9077,633,'_stock_status','instock'), -(9078,633,'_wc_average_rating','0'), -(9079,633,'_wc_review_count','0'), -(9080,633,'attribute_pa_size','64'), -(9081,633,'_price','65'), -(9082,633,'_product_version','9.3.3'), -(9085,625,'_edit_lock','1750342642:1'), -(9095,631,'_sku','BOROBORO-B2-s-60'), -(9096,625,'_price','65'), -(9097,625,'_edit_last','1'), -(9102,637,'_variation_description',''), -(9103,637,'total_sales','0'), -(9104,637,'_tax_status','taxable'), -(9105,637,'_tax_class','parent'), -(9106,637,'_manage_stock','no'), -(9107,637,'_backorders','no'), -(9108,637,'_sold_individually','no'), -(9109,637,'_virtual','no'), -(9110,637,'_downloadable','no'), -(9111,637,'_download_limit','-1'), -(9112,637,'_download_expiry','-1'), -(9113,637,'_stock',NULL), -(9114,637,'_stock_status','instock'), -(9115,637,'_wc_average_rating','0'), -(9116,637,'_wc_review_count','0'), -(9117,637,'attribute_pa_side','left-side'), -(9118,637,'_product_version','9.4.1'), -(9119,638,'_variation_description',''), -(9120,638,'total_sales','0'), -(9121,638,'_tax_status','taxable'), -(9122,638,'_tax_class','parent'), -(9123,638,'_manage_stock','no'), -(9124,638,'_backorders','no'), -(9125,638,'_sold_individually','no'), -(9126,638,'_virtual','no'), -(9127,638,'_downloadable','no'), -(9128,638,'_download_limit','-1'), -(9129,638,'_download_expiry','-1'), -(9130,638,'_stock',NULL), -(9131,638,'_stock_status','instock'), -(9132,638,'_wc_average_rating','0'), -(9133,638,'_wc_review_count','0'), -(9134,638,'attribute_pa_side','pair'), -(9135,638,'_product_version','9.3.3'), -(9136,639,'_variation_description',''), -(9137,639,'total_sales','0'), -(9138,639,'_tax_status','taxable'), -(9139,639,'_tax_class','parent'), -(9140,639,'_manage_stock','no'), -(9141,639,'_backorders','no'), -(9142,639,'_sold_individually','no'), -(9143,639,'_virtual','no'), -(9144,639,'_downloadable','no'), -(9145,639,'_download_limit','-1'), -(9146,639,'_download_expiry','-1'), -(9147,639,'_stock',NULL), -(9148,639,'_stock_status','instock'), -(9149,639,'_wc_average_rating','0'), -(9150,639,'_wc_review_count','0'), -(9151,639,'attribute_pa_side','right-side'), -(9152,639,'_product_version','9.3.3'), -(9153,637,'_sku','PIASU-BO-left'), -(9154,637,'_regular_price','50'), -(9155,637,'_thumbnail_id','0'), -(9156,637,'_price','50'), -(9157,638,'_sku','PIASU-BO-pair'), -(9158,638,'_regular_price','85'), -(9159,638,'_thumbnail_id','0'), -(9160,638,'_price','85'), -(9161,639,'_sku','PIASU-BO-right'), -(9162,639,'_regular_price','50'), -(9163,639,'_thumbnail_id','0'), -(9164,639,'_price','50'), -(9214,641,'_variation_description',''), -(9215,641,'total_sales','0'), -(9216,641,'_tax_status','taxable'), -(9217,641,'_tax_class','parent'), -(9218,641,'_manage_stock','no'), -(9219,641,'_backorders','no'), -(9220,641,'_sold_individually','no'), -(9221,641,'_virtual','no'), -(9222,641,'_downloadable','no'), -(9223,641,'_download_limit','-1'), -(9224,641,'_download_expiry','-1'), -(9225,641,'_stock',NULL), -(9226,641,'_stock_status','instock'), -(9227,641,'_wc_average_rating','0'), -(9228,641,'_wc_review_count','0'), -(9229,641,'attribute_pa_side','left-side'), -(9230,641,'_product_version','9.8.4'), -(9231,642,'_variation_description',''), -(9232,642,'total_sales','0'), -(9233,642,'_tax_status','taxable'), -(9234,642,'_tax_class','parent'), -(9235,642,'_manage_stock','no'), -(9236,642,'_backorders','no'), -(9237,642,'_sold_individually','no'), -(9238,642,'_virtual','no'), -(9239,642,'_downloadable','no'), -(9240,642,'_download_limit','-1'), -(9241,642,'_download_expiry','-1'), -(9242,642,'_stock',NULL), -(9243,642,'_stock_status','instock'), -(9244,642,'_wc_average_rating','0'), -(9245,642,'_wc_review_count','0'), -(9246,642,'attribute_pa_side','pair'), -(9247,642,'_product_version','9.9.3'), -(9248,643,'_variation_description',''), -(9249,643,'total_sales','0'), -(9250,643,'_tax_status','taxable'), -(9251,643,'_tax_class','parent'), -(9252,643,'_manage_stock','no'), -(9253,643,'_backorders','no'), -(9254,643,'_sold_individually','no'), -(9255,643,'_virtual','no'), -(9256,643,'_downloadable','no'), -(9257,643,'_download_limit','-1'), -(9258,643,'_download_expiry','-1'), -(9259,643,'_stock',NULL), -(9260,643,'_stock_status','instock'), -(9261,643,'_wc_average_rating','0'), -(9262,643,'_wc_review_count','0'), -(9263,643,'attribute_pa_side','right-side'), -(9264,643,'_product_version','9.8.4'), -(9265,641,'_sku','HATTARI-CR1-s-left'), -(9266,641,'_regular_price','55'), -(9267,641,'_thumbnail_id','0'), -(9268,641,'_price','55'), -(9269,642,'_sku','HATTARI-CR1-s-pair'), -(9270,642,'_regular_price','85'), -(9271,642,'_thumbnail_id','0'), -(9272,642,'_price','85'), -(9273,643,'_sku','HATTARI-CR1-s-right'), -(9274,643,'_regular_price','55'), -(9275,643,'_thumbnail_id','0'), -(9276,643,'_price','55'), -(9286,645,'_variation_description',''), -(9287,645,'total_sales','0'), -(9288,645,'_tax_status','taxable'), -(9289,645,'_tax_class','parent'), -(9290,645,'_manage_stock','no'), -(9291,645,'_backorders','no'), -(9292,645,'_sold_individually','no'), -(9293,645,'_virtual','no'), -(9294,645,'_downloadable','no'), -(9295,645,'_download_limit','-1'), -(9296,645,'_download_expiry','-1'), -(9297,645,'_stock',NULL), -(9298,645,'_stock_status','instock'), -(9299,645,'_wc_average_rating','0'), -(9300,645,'_wc_review_count','0'), -(9301,645,'attribute_pa_side','left-side'), -(9302,645,'_product_version','9.8.4'), -(9303,646,'_variation_description',''), -(9304,646,'total_sales','0'), -(9305,646,'_tax_status','taxable'), -(9306,646,'_tax_class','parent'), -(9307,646,'_manage_stock','no'), -(9308,646,'_backorders','no'), -(9309,646,'_sold_individually','no'), -(9310,646,'_virtual','no'), -(9311,646,'_downloadable','no'), -(9312,646,'_download_limit','-1'), -(9313,646,'_download_expiry','-1'), -(9314,646,'_stock',NULL), -(9315,646,'_stock_status','instock'), -(9316,646,'_wc_average_rating','0'), -(9317,646,'_wc_review_count','0'), -(9318,646,'attribute_pa_side','pair'), -(9319,646,'_product_version','9.9.3'), -(9320,647,'_variation_description',''), -(9321,647,'total_sales','0'), -(9322,647,'_tax_status','taxable'), -(9323,647,'_tax_class','parent'), -(9324,647,'_manage_stock','no'), -(9325,647,'_backorders','no'), -(9326,647,'_sold_individually','no'), -(9327,647,'_virtual','no'), -(9328,647,'_downloadable','no'), -(9329,647,'_download_limit','-1'), -(9330,647,'_download_expiry','-1'), -(9331,647,'_stock',NULL), -(9332,647,'_stock_status','instock'), -(9333,647,'_wc_average_rating','0'), -(9334,647,'_wc_review_count','0'), -(9335,647,'attribute_pa_side','right-side'), -(9336,647,'_product_version','9.8.4'), -(9337,645,'_sku','HATTARI-CR1-g-left'), -(9338,645,'_regular_price','60'), -(9339,645,'_thumbnail_id','0'), -(9340,645,'_price','60'), -(9341,646,'_sku','HATTARI-CR1-g-pair'), -(9342,646,'_regular_price','90'), -(9343,646,'_thumbnail_id','0'), -(9344,646,'_price','90'), -(9345,647,'_sku','HATTARI-CR1-g-right'), -(9346,647,'_regular_price','60'), -(9347,647,'_thumbnail_id','0'), -(9348,647,'_price','60'), -(9427,651,'_variation_description',''), -(9428,651,'total_sales','0'), -(9429,651,'_tax_status','taxable'), -(9430,651,'_tax_class','parent'), -(9431,651,'_manage_stock','no'), -(9432,651,'_backorders','no'), -(9433,651,'_sold_individually','no'), -(9434,651,'_virtual','no'), -(9435,651,'_downloadable','no'), -(9436,651,'_download_limit','-1'), -(9437,651,'_download_expiry','-1'), -(9438,651,'_stock',NULL), -(9439,651,'_stock_status','instock'), -(9440,651,'_wc_average_rating','0'), -(9441,651,'_wc_review_count','0'), -(9442,651,'attribute_pa_side','long'), -(9443,651,'_product_version','9.3.3'), -(9444,652,'_variation_description',''), -(9445,652,'total_sales','0'), -(9446,652,'_tax_status','taxable'), -(9447,652,'_tax_class','parent'), -(9448,652,'_manage_stock','no'), -(9449,652,'_backorders','no'), -(9450,652,'_sold_individually','no'), -(9451,652,'_virtual','no'), -(9452,652,'_downloadable','no'), -(9453,652,'_download_limit','-1'), -(9454,652,'_download_expiry','-1'), -(9455,652,'_stock',NULL), -(9456,652,'_stock_status','instock'), -(9457,652,'_wc_average_rating','0'), -(9458,652,'_wc_review_count','0'), -(9459,652,'attribute_pa_side','pair'), -(9460,652,'_product_version','9.3.3'), -(9461,653,'_variation_description',''), -(9462,653,'total_sales','0'), -(9463,653,'_tax_status','taxable'), -(9464,653,'_tax_class','parent'), -(9465,653,'_manage_stock','no'), -(9466,653,'_backorders','no'), -(9467,653,'_sold_individually','no'), -(9468,653,'_virtual','no'), -(9469,653,'_downloadable','no'), -(9470,653,'_download_limit','-1'), -(9471,653,'_download_expiry','-1'), -(9472,653,'_stock',NULL), -(9473,653,'_stock_status','instock'), -(9474,653,'_wc_average_rating','0'), -(9475,653,'_wc_review_count','0'), -(9476,653,'attribute_pa_side','short'), -(9477,653,'_product_version','9.4.1'), -(9478,651,'_sku','TAMANORI-CR-s-long'), -(9479,651,'_regular_price','50'), -(9480,651,'_thumbnail_id','0'), -(9481,651,'_price','50'), -(9482,652,'_sku','TAMANORI-CR-s-pair'), -(9483,652,'_regular_price','70'), -(9484,652,'_thumbnail_id','0'), -(9485,652,'_price','70'), -(9486,653,'_sku','TAMANORI-CR-s-short'), -(9487,653,'_regular_price','48'), -(9488,653,'_thumbnail_id','0'), -(9489,653,'_price','48'), -(9498,654,'_variation_description',''), -(9499,654,'total_sales','0'), -(9500,654,'_tax_status','taxable'), -(9501,654,'_tax_class','parent'), -(9502,654,'_manage_stock','no'), -(9503,654,'_backorders','no'), -(9504,654,'_sold_individually','no'), -(9505,654,'_virtual','no'), -(9506,654,'_downloadable','no'), -(9507,654,'_download_limit','-1'), -(9508,654,'_download_expiry','-1'), -(9509,654,'_stock',NULL), -(9510,654,'_stock_status','instock'), -(9511,654,'_wc_average_rating','0'), -(9512,654,'_wc_review_count','0'), -(9513,654,'attribute_pa_side','long'), -(9514,654,'_product_version','9.4.1'), -(9515,655,'_variation_description',''), -(9516,655,'total_sales','0'), -(9517,655,'_tax_status','taxable'), -(9518,655,'_tax_class','parent'), -(9519,655,'_manage_stock','no'), -(9520,655,'_backorders','no'), -(9521,655,'_sold_individually','no'), -(9522,655,'_virtual','no'), -(9523,655,'_downloadable','no'), -(9524,655,'_download_limit','-1'), -(9525,655,'_download_expiry','-1'), -(9526,655,'_stock',NULL), -(9527,655,'_stock_status','instock'), -(9528,655,'_wc_average_rating','0'), -(9529,655,'_wc_review_count','0'), -(9530,655,'attribute_pa_side','pair'), -(9531,655,'_product_version','9.3.3'), -(9532,656,'_variation_description',''), -(9533,656,'total_sales','0'), -(9534,656,'_tax_status','taxable'), -(9535,656,'_tax_class','parent'), -(9536,656,'_manage_stock','no'), -(9537,656,'_backorders','no'), -(9538,656,'_sold_individually','no'), -(9539,656,'_virtual','no'), -(9540,656,'_downloadable','no'), -(9541,656,'_download_limit','-1'), -(9542,656,'_download_expiry','-1'), -(9543,656,'_stock',NULL), -(9544,656,'_stock_status','instock'), -(9545,656,'_wc_average_rating','0'), -(9546,656,'_wc_review_count','0'), -(9547,656,'attribute_pa_side','short'), -(9548,656,'_product_version','9.4.1'), -(9549,654,'_sku','TAMANORI-CR-g-long'), -(9550,654,'_regular_price','52'), -(9551,654,'_thumbnail_id','0'), -(9552,654,'_price','52'), -(9553,655,'_sku','TAMANORI-CR-g-pair'), -(9554,655,'_regular_price','75'), -(9555,655,'_thumbnail_id','0'), -(9556,655,'_price','75'), -(9557,656,'_sku','TAMANORI-CR-g-short'), -(9558,656,'_regular_price','50'), -(9559,656,'_thumbnail_id','0'), -(9560,656,'_price','50'), -(9575,659,'_wp_attached_file','2024/09/HADOU-B-opti.jpg'), -(9576,659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/09/HADOU-B-opti.jpg\";s:8:\"filesize\";i:249510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9577,659,'_wp_attachment_image_alt','Hadou wavy ring mix of silver and gold plated silver.'), -(9584,660,'_wp_attached_file','2024/10/IMG_1442.jpg'), -(9585,660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1442.jpg\";s:8:\"filesize\";i:1029972;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1442-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19538;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9586,660,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(9587,306,'_price','48'), -(9588,306,'_price','50'), -(9589,306,'_price','70'), -(9590,306,'_photos_colonne_gauche|||0|value','310'), -(9591,306,'_photos_colonne_droite|||0|value','311'), -(9592,306,'_photos_colonne_droite|||1|value','424'), -(9593,306,'_haiku_details_produit',''), -(9594,312,'_price','50'), -(9595,312,'_price','52'), -(9596,312,'_price','75'), -(9601,661,'_wp_attached_file','2024/10/IMG_1454.jpg'), -(9602,661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1454.jpg\";s:8:\"filesize\";i:849459;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1454-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15222;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9603,661,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(9604,202,'_price','50'), -(9605,202,'_price','85'), -(9612,662,'_wp_attached_file','2024/10/IMG_1456.jpg'), -(9613,662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1456.jpg\";s:8:\"filesize\";i:730806;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1456-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22777;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9614,662,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(9615,202,'_photos_colonne_gauche|||0|value','206'), -(9616,202,'_photos_colonne_droite|||0|value','662'), -(9617,202,'_photos_colonne_droite|||1|value','661'), -(9618,202,'_photos_colonne_droite|||2|value','212'), -(9619,202,'_photos_colonne_droite|||3|value','207'), -(9620,202,'_haiku_details_produit',''), -(9627,664,'_wp_attached_file','2024/10/IMG_1512.jpg'), -(9628,664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1512.jpg\";s:8:\"filesize\";i:873482;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1512-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17996;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9629,664,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(9693,671,'_wp_attached_file','2024/10/IMG_1604.jpg'), -(9694,671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1604.jpg\";s:8:\"filesize\";i:876712;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1604-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16608;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9695,671,'_wp_attachment_image_alt','pair of Boroboro long gold plated silver earrings with asymmetrical shapes.'), -(9701,672,'_wp_attached_file','2024/10/IMG_1656-1.jpg'), -(9702,672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IMG_1656-1.jpg\";s:8:\"filesize\";i:1095755;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1656-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9703,672,'_wp_attachment_image_alt','Hattari ear cuff gold plated.'), -(9713,673,'_wp_attached_file','2024/10/IMG_1657.jpg'), -(9714,673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1657.jpg\";s:8:\"filesize\";i:901473;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1657-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16418;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9715,673,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(9833,478,'_regular_price','48'), -(9834,478,'_price','48'), -(9835,479,'_regular_price','48'), -(9836,479,'_price','48'), -(9837,480,'_regular_price','48'), -(9838,480,'_price','48'), -(9840,433,'_price','48'), -(9850,613,'_price','70'), -(9851,679,'_wp_attached_file','2024/10/DSC9116.jpg'), -(9852,679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9116.jpg\";s:8:\"filesize\";i:485510;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9116-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12868;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9853,679,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail.'), -(9892,681,'_wp_attached_file','2024/09/DSC9897.jpg'), -(9893,681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9897.jpg\";s:8:\"filesize\";i:689413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9897-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9894,681,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops, one in 18K gold.'), -(9906,683,'_wp_attached_file','2024/09/IMG_1423.jpg'), -(9907,683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/09/IMG_1423.jpg\";s:8:\"filesize\";i:534598;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1423-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9908,683,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver.'), -(9915,684,'_wp_attached_file','2024/09/IMG_1478.jpg'), -(9916,684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/09/IMG_1478.jpg\";s:8:\"filesize\";i:867867;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1478-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9917,684,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), -(9947,689,'_wp_attached_file','2024/10/DSC9341.jpg'), -(9948,689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9341.jpg\";s:8:\"filesize\";i:635454;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9341-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9949,689,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(9954,690,'_wp_attached_file','2024/10/FUYOU-C-1.jpg'), -(9955,690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/FUYOU-C-1.jpg\";s:8:\"filesize\";i:394786;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9956,690,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail.'), -(9967,691,'_wp_attached_file','2024/10/FUYOU-CR1.jpg'), -(9968,691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/FUYOU-CR1.jpg\";s:8:\"filesize\";i:235970;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4020;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4020;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9969,691,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with gold plated rings hanging.'), -(9970,318,'_thumbnail_id','691'), -(9976,692,'_wp_attached_file','2024/10/HADOU-BR-mix.jpg'), -(9977,692,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-BR-mix.jpg\";s:8:\"filesize\";i:312958;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-BR-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6692;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-BR-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6692;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9978,692,'_wp_attachment_image_alt','Hadou wavy blangles in silver and gold plated silver.'), -(9988,696,'_wp_attached_file','2024/10/IKKAN-C-3.jpg'), -(9989,696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/IKKAN-C-3.jpg\";s:8:\"filesize\";i:431103;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7161;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"IKKAN-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7161;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9990,696,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(9991,263,'_thumbnail_id','696'), -(9998,698,'_wp_attached_file','2024/10/IMG_1428-1.jpg'), -(9999,698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IMG_1428-1.jpg\";s:8:\"filesize\";i:484518;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1428-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9487;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10000,698,'_wp_attachment_image_alt','Fuyou gold plated chain bracelet with fluid element'), -(10004,700,'_wp_attached_file','2024/10/IMG_1431.jpg'), -(10005,700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1431.jpg\";s:8:\"filesize\";i:1757156;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1431-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10006,700,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10011,702,'_wp_attached_file','2024/10/IMG_1432.jpg'), -(10012,702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1432.jpg\";s:8:\"filesize\";i:540692;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1432-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10013,702,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10021,704,'_wp_attached_file','2024/10/IMG_1493.jpg'), -(10022,704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1493.jpg\";s:8:\"filesize\";i:985049;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1493-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10023,704,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), -(10028,705,'_wp_attached_file','2024/10/IMG_1531.jpg'), -(10029,705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1531.jpg\";s:8:\"filesize\";i:774222;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1531-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10030,705,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(10031,707,'_wp_attached_file','2024/10/IMG_1543.jpg'), -(10032,707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1543.jpg\";s:8:\"filesize\";i:776895;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1543-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10033,707,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(10041,708,'_wp_attached_file','2024/10/IMG_1565.jpg'), -(10042,708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1565.jpg\";s:8:\"filesize\";i:570527;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1565-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11827;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10043,708,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), -(10081,713,'_wp_attached_file','2024/10/IMG_1647.jpg'), -(10082,713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1647.jpg\";s:8:\"filesize\";i:703654;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1647-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10083,713,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail'), -(10084,274,'_photos_colonne_gauche|||0|value','275'), -(10085,274,'_photos_colonne_droite|||0|value','713'), -(10086,274,'_photos_colonne_droite|||1|value','690'), -(10087,274,'_photos_colonne_droite|||2|value','679'), -(10088,274,'_haiku_details_produit',''), -(10089,714,'_wp_attached_file','2024/10/IMG_1651.jpg'), -(10090,714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1651.jpg\";s:8:\"filesize\";i:639347;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1651-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10091,714,'_wp_attachment_image_alt','Fuyou solo hoop and Hadou ear cuff in sterling silver'), -(10097,715,'_wp_attached_file','2024/10/IMG_1669.jpg'), -(10098,715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1669.jpg\";s:8:\"filesize\";i:642926;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1669-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10099,715,'_wp_attachment_image_alt','Rokku solo hoop silver with tiger\'s eye and Tamanori earrings gold plated silver.'), -(10126,718,'_wp_attached_file','2024/10/IMG_1746.jpg'), -(10127,718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1746.jpg\";s:8:\"filesize\";i:684400;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1746-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10128,718,'_wp_attachment_image_alt','Boroboro earrings gold plated and silver.'), -(10152,342,'_thumbnail_id','928'), -(10159,722,'_wp_attached_file','2024/10/MUGURA-CR2-vrm.jpg'), -(10160,722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-vrm.jpg\";s:8:\"filesize\";i:254284;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10161,722,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(10162,398,'_thumbnail_id','931'), -(10183,725,'_wp_attached_file','2024/10/PIASU-C.jpg'), -(10184,725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/10/PIASU-C.jpg\";s:8:\"filesize\";i:391561;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10185,725,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains.'), -(10186,268,'_thumbnail_id','725'), -(10191,726,'_wp_attached_file','2024/10/ROKKU-B-malachite.jpg'), -(10192,726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:29:\"2024/10/ROKKU-B-malachite.jpg\";s:8:\"filesize\";i:287899;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10193,726,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), -(10194,168,'_thumbnail_id','726'), -(10203,727,'_wp_attached_file','2024/10/ROKKU-C-jaspe.jpg'), -(10204,727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-jaspe.jpg\";s:8:\"filesize\";i:324080;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-jaspe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10205,727,'_wp_attachment_image_alt','Rokku statement necklace in silver with jaspe stone pendant and gold plated clasp.'), -(10209,729,'_wp_attached_file','2024/10/ROKKU-C-tiger.jpg'), -(10210,729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-tiger.jpg\";s:8:\"filesize\";i:325348;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10211,729,'_wp_attachment_image_alt','Rokku statement necklace in silver with tiger\'s eye stone pendant and gold plated clasp.'), -(10212,385,'_thumbnail_id','729'), -(10227,730,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-lapis.jpg'), -(10228,730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-lapis.jpg\";s:8:\"filesize\";i:243829;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10229,730,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with lapis lazuli stone.'), -(10230,731,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-malachite.jpg'), -(10231,731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:35:\"2024/10/ROKKU-CR1-vrm-malachite.jpg\";s:8:\"filesize\";i:224150;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"ROKKU-CR1-vrm-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3790;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10232,731,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with malachite stone.'), -(10233,732,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-tiger.jpg'), -(10234,732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-tiger.jpg\";s:8:\"filesize\";i:239111;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10235,732,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with tiger\'s eye stone.'), -(10236,433,'_thumbnail_id','730'), -(10260,735,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm.jpg'), -(10261,735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-vrm.jpg\";s:8:\"filesize\";i:262704;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10262,735,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(10267,736,'_wp_attached_file','2024/10/TANEMAKI-BR.jpg'), -(10268,736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/TANEMAKI-BR.jpg\";s:8:\"filesize\";i:287017;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10269,736,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10270,251,'_thumbnail_id','736'), -(10313,743,'_wp_attached_file','2024/11/BOROBORO-B2-g.jpg'), -(10314,743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-g.jpg\";s:8:\"filesize\";i:237826;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4182;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10315,743,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10316,613,'_thumbnail_id','743'), -(10321,744,'_wp_attached_file','2024/11/BOROBORO-B2-s.jpg'), -(10322,744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-s.jpg\";s:8:\"filesize\";i:221635;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3652;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10323,744,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10324,625,'_thumbnail_id','744'), -(10341,747,'_wp_attached_file','2024/11/BOROBORO-BO1-g-green.jpg'), -(10342,747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-green.jpg\";s:8:\"filesize\";i:292196;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5376;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10343,747,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), -(10344,748,'_wp_attached_file','2024/11/BOROBORO-BO1-g-brown.jpg'), -(10345,748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-brown.jpg\";s:8:\"filesize\";i:290704;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10346,748,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with tiger\'s eye.'), -(10347,515,'_thumbnail_id','927'), -(10352,749,'_wp_attached_file','2024/11/BOROBORO-BO1-s-brown.jpg'), -(10353,749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-brown.jpg\";s:8:\"filesize\";i:265471;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10354,749,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), -(10355,750,'_wp_attached_file','2024/11/BOROBORO-BO1-s-green.jpg'), -(10356,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-green.jpg\";s:8:\"filesize\";i:266105;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10357,750,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with green aventurine.'), -(10358,521,'_thumbnail_id','925'), -(10363,751,'_wp_attached_file','2024/11/DSC9463.jpg'), -(10364,751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC9463.jpg\";s:8:\"filesize\";i:888805;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9463-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10365,751,'_wp_attachment_image_alt','Kara textured silver hoops'), -(10369,752,'_wp_attached_file','2024/11/HADOU-BOP.jpg'), -(10370,752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/HADOU-BOP.jpg\";s:8:\"filesize\";i:248309;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10371,752,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), -(10372,490,'_thumbnail_id','934'), -(10376,753,'_wp_attached_file','2024/11/HATTARI-BR.jpg'), -(10377,753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/11/HATTARI-BR.jpg\";s:8:\"filesize\";i:302897;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10378,753,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), -(10379,610,'_thumbnail_id','753'), -(10389,755,'_wp_attached_file','2024/11/IMG_1474.jpg'), -(10390,755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1474.jpg\";s:8:\"filesize\";i:625708;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1474-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10391,755,'_wp_attachment_image_alt','Hadou wavy stud earrings mixing gold and silver.'), -(10395,756,'_wp_attached_file','2024/11/IMG_1481.jpg'), -(10396,756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1481.jpg\";s:8:\"filesize\";i:841107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1481-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10397,756,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), -(10398,757,'_wp_attached_file','2024/11/IMG_1484.jpg'), -(10399,757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1484.jpg\";s:8:\"filesize\";i:691565;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1484-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10400,757,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), -(10405,758,'_wp_attached_file','2024/11/IMG_1501.jpg'), -(10406,758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1501.jpg\";s:8:\"filesize\";i:582559;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1501-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10407,758,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), -(10408,759,'_wp_attached_file','2024/11/IMG_1506.jpg'), -(10409,759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1506.jpg\";s:8:\"filesize\";i:606859;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1506-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10410,759,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), -(10415,760,'_wp_attached_file','2024/11/IMG_1504.jpg'), -(10416,760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1504.jpg\";s:8:\"filesize\";i:599899;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1504-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10417,760,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10418,761,'_wp_attached_file','2024/11/IMG_1554.jpg'), -(10419,761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1554.jpg\";s:8:\"filesize\";i:648391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1554-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10420,761,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10425,762,'_wp_attached_file','2024/11/IMG_1563.jpg'), -(10426,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1563.jpg\";s:8:\"filesize\";i:711087;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1563-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14072;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10427,762,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(10443,535,'_photos_colonne_gauche|||0|value','745'), -(10444,535,'_photos_colonne_droite|||0|value','764'), -(10445,535,'_photos_colonne_droite|||1|value','746'), -(10446,535,'_photos_colonne_droite|||2|value','765'), -(10447,535,'_haiku_details_produit',''), -(10448,766,'_sku','FUYOU-BO-s'), -(10449,766,'total_sales','0'), -(10450,766,'_tax_status','taxable'), -(10451,766,'_tax_class',''), -(10452,766,'_manage_stock','no'), -(10453,766,'_backorders','no'), -(10454,766,'_sold_individually','no'), -(10455,766,'_virtual','no'), -(10456,766,'_downloadable','no'), -(10457,766,'_download_limit','-1'), -(10458,766,'_download_expiry','-1'), -(10459,766,'_thumbnail_id','770'), -(10460,766,'_stock',NULL), -(10461,766,'_stock_status','instock'), -(10462,766,'_wc_average_rating','0'), -(10463,766,'_wc_review_count','0'), -(10464,766,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(10465,766,'_product_version','9.8.4'), -(10470,767,'_variation_description',''), -(10471,767,'_sku','FUYOU-BO-s-pair'), -(10472,767,'_regular_price','85'), -(10473,767,'total_sales','0'), -(10474,767,'_tax_status','taxable'), -(10475,767,'_tax_class','parent'), -(10476,767,'_manage_stock','no'), -(10477,767,'_backorders','no'), -(10478,767,'_sold_individually','no'), -(10479,767,'_virtual','no'), -(10480,767,'_downloadable','no'), -(10481,767,'_download_limit','-1'), -(10482,767,'_download_expiry','-1'), -(10483,767,'_thumbnail_id','0'), -(10484,767,'_stock',NULL), -(10485,767,'_stock_status','instock'), -(10486,767,'_wc_average_rating','0'), -(10487,767,'_wc_review_count','0'), -(10489,767,'_price','85'), -(10490,767,'_product_version','9.8.4'), -(10491,768,'_variation_description',''), -(10492,768,'_sku','FUYOU-BO-s-long'), -(10493,768,'_regular_price','55'), -(10494,768,'total_sales','0'), -(10495,768,'_tax_status','taxable'), -(10496,768,'_tax_class','parent'), -(10497,768,'_manage_stock','no'), -(10498,768,'_backorders','no'), -(10499,768,'_sold_individually','no'), -(10500,768,'_virtual','no'), -(10501,768,'_downloadable','no'), -(10502,768,'_download_limit','-1'), -(10503,768,'_download_expiry','-1'), -(10504,768,'_thumbnail_id','0'), -(10505,768,'_stock',NULL), -(10506,768,'_stock_status','instock'), -(10507,768,'_wc_average_rating','0'), -(10508,768,'_wc_review_count','0'), -(10510,768,'_price','55'), -(10511,768,'_product_version','9.8.4'), -(10513,766,'_edit_lock','1750266919:1'), -(10516,770,'_wp_attached_file','2024/11/FUYOU-B0-s.jpg'), -(10517,770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/11/FUYOU-B0-s.jpg\";s:8:\"filesize\";i:302772;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"FUYOU-B0-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5442;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10518,770,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), -(10519,771,'_wp_attached_file','2024/11/DSC0240.jpg'), -(10520,771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0240.jpg\";s:8:\"filesize\";i:707748;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0240-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10521,772,'_wp_attached_file','2024/11/DSC0242.jpg'), -(10522,772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0242.jpg\";s:8:\"filesize\";i:655520;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0242-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10523,773,'_wp_attached_file','2024/11/DSC0249.jpg'), -(10524,773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0249.jpg\";s:8:\"filesize\";i:545109;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0249-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16678;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10525,774,'_wp_attached_file','2024/11/DSC0251.jpg'), -(10526,774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0251.jpg\";s:8:\"filesize\";i:599812;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0251-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10527,771,'_wp_attachment_image_alt',''), -(10528,772,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), -(10529,773,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), -(10530,774,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), -(10531,767,'attribute_pa_side','pair'), -(10532,768,'attribute_pa_side','long'), -(10534,775,'_variation_description',''), -(10535,775,'total_sales','0'), -(10536,775,'_tax_status','taxable'), -(10537,775,'_tax_class','parent'), -(10538,775,'_manage_stock','no'), -(10539,775,'_backorders','no'), -(10540,775,'_sold_individually','no'), -(10541,775,'_virtual','no'), -(10542,775,'_downloadable','no'), -(10543,775,'_download_limit','-1'), -(10544,775,'_download_expiry','-1'), -(10545,775,'_stock',NULL), -(10546,775,'_stock_status','instock'), -(10547,775,'_wc_average_rating','0'), -(10548,775,'_wc_review_count','0'), -(10549,775,'attribute_pa_side','medium'), -(10550,775,'_product_version','9.8.4'), -(10552,775,'_thumbnail_id','0'), -(10554,775,'_sku','FUYOU-BO-s-mid'), -(10555,775,'_regular_price','55'), -(10556,775,'_price','55'), -(10559,766,'_edit_last','1'), -(11354,819,'_wp_attached_file','2024/11/HAIKU-ringsizes.jpg'), -(11355,819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:595;s:6:\"height\";i:842;s:4:\"file\";s:27:\"2024/11/HAIKU-ringsizes.jpg\";s:8:\"filesize\";i:41989;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HAIKU-ringsizes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11356,819,'_wp_attachment_image_alt','Ring size guide'), -(11357,72,'_photos_colonne_gauche|||0|value','81'), -(11358,72,'_photos_colonne_droite|||0|value','100'), -(11359,72,'_photos_colonne_droite|||1|value','411'), -(11360,72,'_photos_colonne_droite|||2|value','101'), -(11361,72,'_haiku_details_produit',''), -(11368,102,'_photos_colonne_gauche|||0|value','110'), -(11369,102,'_photos_colonne_droite|||0|value','112'), -(11370,102,'_photos_colonne_droite|||1|value','111'), -(11371,102,'_haiku_details_produit',''), -(11391,144,'_photos_colonne_gauche|||0|value','152'), -(11392,144,'_photos_colonne_droite|||0|value','154'), -(11393,144,'_photos_colonne_droite|||1|value','153'), -(11394,144,'_haiku_details_produit',''), -(11395,155,'_photos_colonne_gauche|||0|value','163'), -(11396,155,'_photos_colonne_droite|||0|value','712'), -(11397,155,'_photos_colonne_droite|||1|value','165'), -(11398,155,'_photos_colonne_droite|||2|value','164'), -(11399,155,'_haiku_details_produit',''), -(11412,613,'_photos_colonne_gauche|||0|value','743'), -(11413,613,'_photos_colonne_droite|||0|value','760'), -(11414,613,'_photos_colonne_droite|||1|value','761'), -(11415,613,'_haiku_details_produit',''), -(11416,625,'_photos_colonne_gauche|||0|value','744'), -(11417,625,'_photos_colonne_droite|||0|value','758'), -(11418,625,'_photos_colonne_droite|||1|value','759'), -(11419,625,'_haiku_details_produit',''), -(11420,820,'_wp_attached_file','2024/09/IKKAN-B-vrm.jpg'), -(11421,820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1277;s:4:\"file\";s:23:\"2024/09/IKKAN-B-vrm.jpg\";s:8:\"filesize\";i:393112;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27681;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5054;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11422,820,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), -(11423,113,'_thumbnail_id','820'), -(11424,113,'_photos_colonne_gauche|||0|value','820'), -(11425,113,'_photos_colonne_droite|||0|value','122'), -(11426,113,'_photos_colonne_droite|||1|value','684'), -(11427,113,'_haiku_details_produit',''), -(11428,821,'_wp_attached_file','2024/09/KARA-B.jpg'), -(11429,821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:18:\"2024/09/KARA-B.jpg\";s:8:\"filesize\";i:460992;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"KARA-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11430,822,'_wp_attached_file','2024/09/KARA-B-1.jpg'), -(11431,822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/09/KARA-B-1.jpg\";s:8:\"filesize\";i:429750;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22093;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11432,821,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(11433,822,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(11441,823,'_wp_attached_file','2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti-1.jpg'), -(11442,823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:823;s:6:\"height\";i:547;s:4:\"file\";s:44:\"2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti-1.jpg\";s:8:\"filesize\";i:108182;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"BOROBORO-BOaTANEMAKI-BO1a-opti-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11443,823,'_wp_attachment_image_alt','BoroBoro earrings minimalist oval shape'), -(11448,824,'_wp_attached_file','2024/10/FUYOU-BR-g.jpg'), -(11449,824,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/10/FUYOU-BR-g.jpg\";s:8:\"filesize\";i:453474;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"FUYOU-BR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24091;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11450,824,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element'), -(11451,261,'_thumbnail_id','824'), -(11456,825,'_wp_attached_file','2024/10/IMG_1505.jpg'), -(11457,825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1505.jpg\";s:8:\"filesize\";i:460176;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1505-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11458,825,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire.'), -(11463,826,'_wp_attached_file','2024/10/IMG_1582.jpg'), -(11464,826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1195;s:6:\"height\";i:1195;s:4:\"file\";s:20:\"2024/10/IMG_1582.jpg\";s:8:\"filesize\";i:1286747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1582-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1729428985\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11465,826,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold.'), -(11485,828,'_wp_attached_file','2024/10/ROKKU-C-lapis-copy.jpg'), -(11486,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-C-lapis-copy.jpg\";s:8:\"filesize\";i:546484;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-C-lapis-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11487,828,'_wp_attachment_image_alt','Rokku statement necklace in silver with lapis lazuli stone pendant and gold plated clasp.'), -(11495,312,'_thumbnail_id','735'), -(11496,312,'_photos_colonne_gauche|||0|value','735'), -(11497,312,'_photos_colonne_droite|||0|value','660'), -(11498,312,'_photos_colonne_droite|||1|value','317'), -(11499,312,'_haiku_details_produit',''), -(11500,829,'_wp_attached_file','2024/11/IMG_1460.jpg'), -(11501,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1460.jpg\";s:8:\"filesize\";i:934957;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1460-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11502,829,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), -(11509,830,'_wp_attached_file','2024/11/IMG_1473.jpg'), -(11510,830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1473.jpg\";s:8:\"filesize\";i:632613;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1473-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11511,830,'_wp_attachment_image_alt','Kara textured ear cuff in silver and gold plated'), -(11515,133,'_thumbnail_id','822'), -(11524,831,'_wp_attached_file','2024/11/IMG_1524.jpg'), -(11525,831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1921;s:4:\"file\";s:20:\"2024/11/IMG_1524.jpg\";s:8:\"filesize\";i:911352;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1524-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11526,831,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), -(11531,832,'_wp_attached_file','2024/11/IMG_1525.jpg'), -(11532,832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1525.jpg\";s:8:\"filesize\";i:985758;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11533,832,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), -(11538,833,'_wp_attached_file','2024/11/KAGUN-CR1.jpg'), -(11539,833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3553;s:6:\"height\";i:2361;s:4:\"file\";s:21:\"2024/11/KAGUN-CR1.jpg\";s:8:\"filesize\";i:455669;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KAGUN-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3735;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11540,833,'_wp_attachment_image_alt','Mugura solo hoop with wavy gold plated element.'), -(11545,834,'_wp_attached_file','2024/11/KARA-CR-g.jpg'), -(11546,834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-g.jpg\";s:8:\"filesize\";i:407384;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22482;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4712;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11547,834,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(11551,835,'_wp_attached_file','2024/11/KARA-CR-s.jpg'), -(11552,835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-s.jpg\";s:8:\"filesize\";i:384089;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24691;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3818;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11553,835,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), -(11554,554,'_thumbnail_id','935'), -(11558,545,'_thumbnail_id','938'), -(11562,496,'_thumbnail_id','833'), -(11567,836,'_wp_attached_file','2024/11/KARA-EC-vrm.jpg'), -(11568,836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/11/KARA-EC-vrm.jpg\";s:8:\"filesize\";i:361036;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3165;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11569,836,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver'), -(11570,447,'_thumbnail_id','939'), -(11581,839,'_wp_attached_file','2024/10/DSC9242.jpg'), -(11582,839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:19:\"2024/10/DSC9242.jpg\";s:8:\"filesize\";i:337187;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9242-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13205;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11583,839,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element.'), -(11584,840,'_wp_attached_file','2024/10/DSC9237.jpg'), -(11585,840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9237.jpg\";s:8:\"filesize\";i:849705;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9237-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15439;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11586,840,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element.'), -(11587,258,'_photos_colonne_gauche|||0|value','259'), -(11588,258,'_photos_colonne_droite|||0|value','839'), -(11589,258,'_photos_colonne_droite|||1|value','840'), -(11590,258,'_photos_colonne_droite|||2|value','260'), -(11591,258,'_haiku_details_produit',''), -(11650,430,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(11651,845,'_variation_description',''), -(11652,845,'total_sales','0'), -(11653,845,'_tax_status','taxable'), -(11654,845,'_tax_class','parent'), -(11655,845,'_manage_stock','no'), -(11656,845,'_backorders','no'), -(11657,845,'_sold_individually','no'), -(11658,845,'_virtual','no'), -(11659,845,'_downloadable','no'), -(11660,845,'_download_limit','-1'), -(11661,845,'_download_expiry','-1'), -(11662,845,'_stock',NULL), -(11663,845,'_stock_status','instock'), -(11664,845,'_wc_average_rating','0'), -(11665,845,'_wc_review_count','0'), -(11666,845,'attribute_pa_stone','lapis-lazuli'), -(11667,845,'_product_version','9.4.2'), -(11668,846,'_variation_description',''), -(11669,846,'total_sales','0'), -(11670,846,'_tax_status','taxable'), -(11671,846,'_tax_class','parent'), -(11672,846,'_manage_stock','no'), -(11673,846,'_backorders','no'), -(11674,846,'_sold_individually','no'), -(11675,846,'_virtual','no'), -(11676,846,'_downloadable','no'), -(11677,846,'_download_limit','-1'), -(11678,846,'_download_expiry','-1'), -(11679,846,'_stock',NULL), -(11680,846,'_stock_status','instock'), -(11681,846,'_wc_average_rating','0'), -(11682,846,'_wc_review_count','0'), -(11683,846,'attribute_pa_stone','malachite'), -(11684,846,'_product_version','9.4.2'), -(11685,847,'_variation_description',''), -(11686,847,'total_sales','0'), -(11687,847,'_tax_status','taxable'), -(11688,847,'_tax_class','parent'), -(11689,847,'_manage_stock','no'), -(11690,847,'_backorders','no'), -(11691,847,'_sold_individually','no'), -(11692,847,'_virtual','no'), -(11693,847,'_downloadable','no'), -(11694,847,'_download_limit','-1'), -(11695,847,'_download_expiry','-1'), -(11696,847,'_stock',NULL), -(11697,847,'_stock_status','instock'), -(11698,847,'_wc_average_rating','0'), -(11699,847,'_wc_review_count','0'), -(11700,847,'attribute_pa_stone','tiger-eye'), -(11701,847,'_product_version','9.4.2'), -(11702,845,'_sku','ROKKU-CR-s-lapis'), -(11703,845,'_regular_price','45'), -(11704,845,'_thumbnail_id','0'), -(11705,845,'_price','45'), -(11706,846,'_sku','ROKKU-CR-s-malachite'), -(11707,846,'_regular_price','45'), -(11708,846,'_thumbnail_id','0'), -(11709,846,'_price','45'), -(11710,847,'_sku','ROKKU-CR-s-tiger'), -(11711,847,'_regular_price','45'), -(11712,847,'_thumbnail_id','0'), -(11713,847,'_price','45'), -(11714,430,'_price','45'), -(11716,430,'_regular_price','45'), -(11717,430,'_photos_colonne_gauche|||0|value','842'), -(11718,430,'_photos_colonne_droite|||0|value','432'), -(11719,430,'_photos_colonne_droite|||1|value','715'), -(11720,430,'_photos_colonne_droite|||2|value','843'), -(11721,430,'_photos_colonne_droite|||3|value','844'), -(11722,430,'_haiku_details_produit',''), -(11730,851,'_edit_lock','1733268183:1'), -(11731,851,'_edit_last','1'), -(11732,851,'discount_type','percent'), -(11733,851,'coupon_amount','20'), -(11734,851,'individual_use','no'), -(11735,851,'usage_limit','0'), -(11736,851,'usage_limit_per_user','1'), -(11737,851,'limit_usage_to_x_items','0'), -(11738,851,'usage_count','0'), -(11739,851,'date_expires','1733266800'), -(11740,851,'free_shipping','no'), -(11741,851,'exclude_sale_items','no'), -(11752,261,'_photos_colonne_gauche|||0|value','824'), -(11753,261,'_photos_colonne_droite|||0|value','698'), -(11754,261,'_haiku_details_produit',''), -(11755,433,'_photos_colonne_gauche|||0|value','730'), -(11756,433,'_photos_colonne_droite|||0|value','716'), -(11757,433,'_photos_colonne_droite|||1|value','731'), -(11758,433,'_photos_colonne_droite|||2|value','732'), -(11759,433,'_haiku_details_produit',''), -(11939,530,'_regular_price','100'), -(11940,530,'_price','100'), -(11951,532,'_regular_price','95'), -(11952,532,'_price','95'), -(11954,133,'_price','95'), -(11955,133,'_photos_colonne_gauche|||0|value','822'), -(11956,133,'_photos_colonne_droite|||0|value','166'), -(11957,133,'_photos_colonne_droite|||1|value','142'), -(11958,133,'_photos_colonne_droite|||2|value','821'), -(11959,133,'_photos_colonne_droite|||3|value','167'), -(11960,133,'_photos_colonne_droite|||4|value','143'), -(11961,133,'_haiku_details_produit',''), -(11962,200,'_thumbnail_id','0'), -(12003,766,'_price','55'), -(12004,766,'_price','85'), -(12005,766,'_photos_colonne_gauche|||0|value','770'), -(12006,766,'_photos_colonne_droite|||0|value','771'), -(12007,766,'_photos_colonne_droite|||1|value','774'), -(12008,766,'_photos_colonne_droite|||2|value','772'), -(12009,766,'_photos_colonne_droite|||3|value','773'), -(12010,766,'_haiku_details_produit',''), -(12011,246,'_price','85'), -(12012,246,'_photos_colonne_gauche|||0|value','249'), -(12013,246,'_photos_colonne_droite|||0|value','825'), -(12014,246,'_photos_colonne_droite|||1|value','250'), -(12015,246,'_haiku_details_produit',''), -(12016,240,'_price','80'), -(12017,240,'_photos_colonne_gauche|||0|value','243'), -(12018,240,'_photos_colonne_droite|||0|value','244'), -(12019,240,'_photos_colonne_droite|||1|value','245'), -(12020,240,'_haiku_details_produit',''), -(12021,610,'_photos_colonne_gauche|||0|value','753'), -(12022,610,'_photos_colonne_droite|||0|value','829'), -(12023,610,'_haiku_details_produit',''), -(12025,385,'_price','120'), -(12026,385,'_photos_colonne_gauche|||0|value','729'), -(12027,385,'_photos_colonne_droite|||0|value','487'), -(12028,385,'_photos_colonne_droite|||1|value','727'), -(12029,385,'_photos_colonne_droite|||2|value','705'), -(12030,385,'_photos_colonne_droite|||3|value','828'), -(12031,385,'_photos_colonne_droite|||4|value','707'), -(12032,385,'_haiku_details_produit',''), -(12044,318,'_photos_colonne_gauche|||0|value','691'), -(12045,318,'_photos_colonne_droite|||0|value','714'), -(12046,318,'_photos_colonne_droite|||1|value','324'), -(12047,318,'_photos_colonne_droite|||2|value','323'), -(12048,318,'_haiku_details_produit',''), -(12054,545,'_price','45'), -(12055,545,'_price','70'), -(12064,554,'_price','40'), -(12065,554,'_price','65'), -(12072,328,'_photos_colonne_gauche|||0|value','329'), -(12073,328,'_photos_colonne_droite|||0|value','330'), -(12074,328,'_haiku_details_produit',''), -(12075,325,'_photos_colonne_gauche|||0|value','326'), -(12076,325,'_photos_colonne_droite|||0|value','327'), -(12077,325,'_photos_colonne_droite|||1|value','714'), -(12078,325,'_haiku_details_produit',''), -(12095,490,'_price','35'), -(12096,490,'_price','50'), -(12132,251,'_photos_colonne_gauche|||0|value','736'), -(12133,251,'_photos_colonne_droite|||0|value','700'), -(12134,251,'_photos_colonne_droite|||1|value','702'), -(12135,251,'_haiku_details_produit',''), -(12136,540,'_wp_trash_meta_status','publish'), -(12137,540,'_wp_trash_meta_time','1749803880'), -(12138,540,'_wp_desired_post_slug','mugura-nail-jewel-silver-copy-crystal'), -(12139,541,'_wp_trash_meta_status','publish'), -(12140,541,'_wp_trash_meta_time','1749803880'), -(12141,541,'_wp_desired_post_slug','mugura-nail-jewel-silver-copy-jade'), -(12142,535,'_wp_trash_meta_status','publish'), -(12143,535,'_wp_trash_meta_time','1749803880'), -(12144,535,'_wp_desired_post_slug','boroboro-belt'), -(12145,534,'_wp_trash_meta_status','publish'), -(12146,534,'_wp_trash_meta_time','1749803912'), -(12147,534,'_wp_desired_post_slug','kishou-ring-gold-plated-64'), -(12148,161,'_wp_trash_meta_status','publish'), -(12149,161,'_wp_trash_meta_time','1749803912'), -(12150,161,'_wp_desired_post_slug','hadou-golden-earcuff-117'), -(12151,162,'_wp_trash_meta_status','publish'), -(12152,162,'_wp_trash_meta_time','1749803912'), -(12153,162,'_wp_desired_post_slug','hadou-golden-earcuff-118'), -(12154,156,'_wp_trash_meta_status','publish'), -(12155,156,'_wp_trash_meta_time','1749803912'), -(12156,156,'_wp_desired_post_slug','hadou-golden-earcuff-112'), -(12157,157,'_wp_trash_meta_status','publish'), -(12158,157,'_wp_trash_meta_time','1749803912'), -(12159,157,'_wp_desired_post_slug','hadou-golden-earcuff-113'), -(12160,158,'_wp_trash_meta_status','publish'), -(12161,158,'_wp_trash_meta_time','1749803912'), -(12162,158,'_wp_desired_post_slug','hadou-golden-earcuff-114'), -(12163,159,'_wp_trash_meta_status','publish'), -(12164,159,'_wp_trash_meta_time','1749803912'), -(12165,159,'_wp_desired_post_slug','hadou-golden-earcuff-115'), -(12166,160,'_wp_trash_meta_status','publish'), -(12167,160,'_wp_trash_meta_time','1749803912'), -(12168,160,'_wp_desired_post_slug','hadou-golden-earcuff-116'), -(12169,155,'_wp_trash_meta_status','publish'), -(12170,155,'_wp_trash_meta_time','1749803912'), -(12171,155,'_wp_desired_post_slug','kishou-ring-gold-plated'), -(12172,533,'_wp_trash_meta_status','publish'), -(12173,533,'_wp_trash_meta_time','1749803912'), -(12174,533,'_wp_desired_post_slug','kishou-ring-silver-64'), -(12175,147,'_wp_trash_meta_status','publish'), -(12176,147,'_wp_trash_meta_time','1749803912'), -(12177,147,'_wp_desired_post_slug','hadou-golden-earcuff-107'), -(12178,148,'_wp_trash_meta_status','publish'), -(12179,148,'_wp_trash_meta_time','1749803912'), -(12180,148,'_wp_desired_post_slug','hadou-golden-earcuff-108'), -(12181,149,'_wp_trash_meta_status','publish'), -(12182,149,'_wp_trash_meta_time','1749803912'), -(12183,149,'_wp_desired_post_slug','hadou-golden-earcuff-109'), -(12184,150,'_wp_trash_meta_status','publish'), -(12185,150,'_wp_trash_meta_time','1749803912'), -(12186,150,'_wp_desired_post_slug','hadou-golden-earcuff-110'), -(12187,151,'_wp_trash_meta_status','publish'), -(12188,151,'_wp_trash_meta_time','1749803912'), -(12189,151,'_wp_desired_post_slug','hadou-golden-earcuff-111'), -(12190,145,'_wp_trash_meta_status','publish'), -(12191,145,'_wp_trash_meta_time','1749803912'), -(12192,145,'_wp_desired_post_slug','hadou-golden-earcuff-105'), -(12193,146,'_wp_trash_meta_status','publish'), -(12194,146,'_wp_trash_meta_time','1749803912'), -(12195,146,'_wp_desired_post_slug','hadou-golden-earcuff-106'), -(12196,144,'_wp_trash_meta_status','publish'), -(12197,144,'_wp_trash_meta_time','1749803912'), -(12198,144,'_wp_desired_post_slug','kishou-silver-ring'), -(12200,925,'_wp_attached_file','2024/11/BORO-BO1-arg.jpg'), -(12201,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/11/BORO-BO1-arg.jpg\";s:8:\"filesize\";i:162384;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BORO-BO1-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12202,925,'_wp_attachment_image_alt','Boroboro asymmetrical silver earrings with honey calcite beads.'), -(12203,926,'_variation_description',''), -(12204,926,'total_sales','0'), -(12205,926,'_tax_status','taxable'), -(12206,926,'_tax_class','parent'), -(12207,926,'_manage_stock','no'), -(12208,926,'_backorders','no'), -(12209,926,'_sold_individually','no'), -(12210,926,'_virtual','no'), -(12211,926,'_downloadable','no'), -(12212,926,'_download_limit','-1'), -(12213,926,'_download_expiry','-1'), -(12214,926,'_stock',NULL), -(12215,926,'_stock_status','instock'), -(12216,926,'_wc_average_rating','0'), -(12217,926,'_wc_review_count','0'), -(12218,926,'attribute_pa_stone','honey-calcite'), -(12219,926,'_product_version','9.9.3'), -(12221,926,'_sku','BOROBORO-BO1-s-honey'), -(12222,926,'_regular_price','60'), -(12223,926,'_thumbnail_id','0'), -(12224,926,'_price','60'), -(12225,521,'_price','60'), -(12230,927,'_wp_attached_file','2024/11/BORO-BO1-or.jpg'), -(12231,927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/BORO-BO1-or.jpg\";s:8:\"filesize\";i:168334;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"BORO-BO1-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12232,927,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated silver earrings with green aventurine beads.'), -(12237,928,'_wp_attached_file','2024/10/MUGURA-BOP.jpg'), -(12238,928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/MUGURA-BOP.jpg\";s:8:\"filesize\";i:155395;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MUGURA-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12239,928,'_wp_attachment_image_alt','Mugura trio of stud earrings in silver and gold plated silver with dangling pearls.'), -(12240,342,'_price','30'), -(12241,342,'_price','35'), -(12242,342,'_price','38'), -(12243,342,'_price','55'), -(12244,342,'_wp_old_slug','kagun-trio-earrings'), -(12245,342,'_photos_colonne_gauche|||0|value','928'), -(12246,342,'_photos_colonne_droite|||0|value','664'), -(12247,342,'_photos_colonne_droite|||1|value','347'), -(12248,342,'_photos_colonne_droite|||2|value','348'), -(12249,342,'_photos_colonne_droite|||3|value','349'), -(12250,342,'_haiku_details_produit',''), -(12251,496,'_photos_colonne_gauche|||0|value','833'), -(12252,496,'_photos_colonne_droite|||0|value','756'), -(12253,496,'_photos_colonne_droite|||1|value','757'), -(12254,496,'_haiku_details_produit',''), -(12255,478,'_wp_trash_meta_status','publish'), -(12256,478,'_wp_trash_meta_time','1750141541'), -(12257,478,'_wp_desired_post_slug','rokku-hoop-gold-plated-lapis-lazuli'), -(12258,479,'_wp_trash_meta_status','publish'), -(12259,479,'_wp_trash_meta_time','1750141541'), -(12260,479,'_wp_desired_post_slug','rokku-hoop-gold-plated-malachite'), -(12261,480,'_wp_trash_meta_status','publish'), -(12262,480,'_wp_trash_meta_time','1750141541'), -(12263,480,'_wp_desired_post_slug','rokku-hoop-gold-plated-tiger-eye'), -(12264,433,'_wp_trash_meta_status','publish'), -(12265,433,'_wp_trash_meta_time','1750141541'), -(12266,433,'_wp_desired_post_slug','rokku-hoop-gold-plated'), -(12267,845,'_wp_trash_meta_status','publish'), -(12268,845,'_wp_trash_meta_time','1750141552'), -(12269,845,'_wp_desired_post_slug','rokku-hoop-silver-lapis-lazuli'), -(12270,846,'_wp_trash_meta_status','publish'), -(12271,846,'_wp_trash_meta_time','1750141552'), -(12272,846,'_wp_desired_post_slug','rokku-hoop-silver-malachite'), -(12273,847,'_wp_trash_meta_status','publish'), -(12274,847,'_wp_trash_meta_time','1750141552'), -(12275,847,'_wp_desired_post_slug','rokku-hoop-silver-tigers-eye'), -(12276,430,'_wp_trash_meta_status','publish'), -(12277,430,'_wp_trash_meta_time','1750141552'), -(12278,430,'_wp_desired_post_slug','rokku-hoop-silver'), -(12279,931,'_wp_attached_file','2024/10/MUGURA-CR2-g.jpg'), -(12280,931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/MUGURA-CR2-g.jpg\";s:8:\"filesize\";i:174500;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12281,931,'_wp_attachment_image_alt','Mugura minimalist gold plated silver hoops.'), -(12287,398,'_photos_colonne_gauche|||0|value','931'), -(12288,398,'_photos_colonne_droite|||0|value','400'), -(12289,398,'_photos_colonne_droite|||1|value','401'), -(12290,398,'_photos_colonne_droite|||2|value','722'), -(12291,398,'_haiku_details_produit',''), -(12292,932,'_wp_attached_file','2024/10/MUGURA-CR2-s.jpg'), -(12293,932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/MUGURA-CR2-s.jpg\";s:8:\"filesize\";i:176716;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12294,932,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(12295,393,'_photos_colonne_gauche|||0|value','932'), -(12296,393,'_photos_colonne_droite|||0|value','397'), -(12297,393,'_photos_colonne_droite|||1|value','673'), -(12298,393,'_photos_colonne_droite|||2|value','396'), -(12299,393,'_haiku_details_produit',''), -(12300,934,'_wp_attached_file','2024/11/HADOU-BOP-1.jpg'), -(12301,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/HADOU-BOP-1.jpg\";s:8:\"filesize\";i:160091;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-BOP-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18088;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12302,934,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), -(12303,490,'_photos_colonne_gauche|||0|value','934'), -(12304,490,'_photos_colonne_droite|||0|value','755'), -(12305,490,'_photos_colonne_droite|||1|value','752'), -(12306,490,'_haiku_details_produit',''), -(12307,935,'_wp_attached_file','2024/11/KARA-CR-s-1.jpg'), -(12308,935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-s-1.jpg\";s:8:\"filesize\";i:173653;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12309,935,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), -(12310,936,'_wp_attached_file','2024/11/DSC00650.jpg'), -(12311,936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00650.jpg\";s:8:\"filesize\";i:1683107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00650-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989922\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12312,936,'_wp_attachment_image_alt','Kara small textured silver hoops.'), -(12313,937,'_wp_attached_file','2024/11/DSC00655.jpg'), -(12314,937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00655.jpg\";s:8:\"filesize\";i:1563690;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00655-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12315,937,'_wp_attachment_image_alt','Kara small textured silver hoops.'), -(12316,554,'_photos_colonne_gauche|||0|value','935'), -(12317,554,'_photos_colonne_droite|||0|value','936'), -(12318,554,'_photos_colonne_droite|||1|value','937'), -(12319,554,'_photos_colonne_droite|||2|value','835'), -(12320,554,'_haiku_details_produit',''), -(12321,938,'_wp_attached_file','2024/11/KARA-CR-g-1.jpg'), -(12322,938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-g-1.jpg\";s:8:\"filesize\";i:170852;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12323,938,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(12324,545,'_photos_colonne_gauche|||0|value','938'), -(12325,545,'_photos_colonne_droite|||0|value','762'), -(12326,545,'_photos_colonne_droite|||1|value','834'), -(12327,545,'_haiku_details_produit',''), -(12328,939,'_wp_attached_file','2024/11/KARA-EC-g.jpg'), -(12329,939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/KARA-EC-g.jpg\";s:8:\"filesize\";i:162501;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12330,939,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver.'), -(12331,447,'_photos_colonne_gauche|||0|value','939'), -(12332,447,'_photos_colonne_droite|||0|value','830'), -(12333,447,'_photos_colonne_droite|||1|value','939'), -(12334,447,'_haiku_details_produit',''), -(12335,940,'_wp_attached_file','2024/10/KARA-EC-s.jpg'), -(12336,940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/KARA-EC-s.jpg\";s:8:\"filesize\";i:157285;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12337,940,'_wp_attachment_image_alt','Kara textured ear cuff in silver.'), -(12338,435,'_photos_colonne_gauche|||0|value','940'), -(12339,435,'_photos_colonne_droite|||0|value','437'), -(12340,435,'_photos_colonne_droite|||1|value','940'), -(12341,435,'_haiku_details_produit',''), -(12342,941,'_edit_lock','1750440068:1'), -(12343,941,'_edit_last','1'), -(12347,943,'_wp_attached_file','2025/06/DSC00671.jpg'), -(12348,943,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00671.jpg\";s:8:\"filesize\";i:1219328;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00671-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31560;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12349,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), -(12350,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), -(12351,941,'total_sales','0'), -(12352,941,'_tax_status','taxable'), -(12353,941,'_tax_class',''), -(12354,941,'_manage_stock','no'), -(12355,941,'_backorders','no'), -(12356,941,'_sold_individually','no'), -(12357,941,'_virtual','no'), -(12358,941,'_downloadable','no'), -(12359,941,'_download_limit','-1'), -(12360,941,'_download_expiry','-1'), -(12361,941,'_stock',NULL), -(12362,941,'_stock_status','instock'), -(12363,941,'_wc_average_rating','0'), -(12364,941,'_wc_review_count','0'), -(12365,941,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12366,941,'_product_version','9.9.4'), -(12367,944,'_variation_description',''), -(12368,944,'total_sales','0'), -(12369,944,'_tax_status','taxable'), -(12370,944,'_tax_class','parent'), -(12371,944,'_manage_stock','no'), -(12372,944,'_backorders','no'), -(12373,944,'_sold_individually','no'), -(12374,944,'_virtual','no'), -(12375,944,'_downloadable','no'), -(12376,944,'_download_limit','-1'), -(12377,944,'_download_expiry','-1'), -(12378,944,'_stock',NULL), -(12379,944,'_stock_status','instock'), -(12380,944,'_wc_average_rating','0'), -(12381,944,'_wc_review_count','0'), -(12382,944,'attribute_pa_size','50'), -(12383,944,'_product_version','9.9.3'), -(12384,945,'_variation_description',''), -(12385,945,'total_sales','0'), -(12386,945,'_tax_status','taxable'), -(12387,945,'_tax_class','parent'), -(12388,945,'_manage_stock','no'), -(12389,945,'_backorders','no'), -(12390,945,'_sold_individually','no'), -(12391,945,'_virtual','no'), -(12392,945,'_downloadable','no'), -(12393,945,'_download_limit','-1'), -(12394,945,'_download_expiry','-1'), -(12395,945,'_stock',NULL), -(12396,945,'_stock_status','instock'), -(12397,945,'_wc_average_rating','0'), -(12398,945,'_wc_review_count','0'), -(12399,945,'attribute_pa_size','52'), -(12400,945,'_product_version','9.9.3'), -(12401,946,'_variation_description',''), -(12402,946,'total_sales','0'), -(12403,946,'_tax_status','taxable'), -(12404,946,'_tax_class','parent'), -(12405,946,'_manage_stock','no'), -(12406,946,'_backorders','no'), -(12407,946,'_sold_individually','no'), -(12408,946,'_virtual','no'), -(12409,946,'_downloadable','no'), -(12410,946,'_download_limit','-1'), -(12411,946,'_download_expiry','-1'), -(12412,946,'_stock',NULL), -(12413,946,'_stock_status','instock'), -(12414,946,'_wc_average_rating','0'), -(12415,946,'_wc_review_count','0'), -(12416,946,'attribute_pa_size','54'), -(12417,946,'_product_version','9.9.3'), -(12418,947,'_variation_description',''), -(12419,947,'total_sales','0'), -(12420,947,'_tax_status','taxable'), -(12421,947,'_tax_class','parent'), -(12422,947,'_manage_stock','no'), -(12423,947,'_backorders','no'), -(12424,947,'_sold_individually','no'), -(12425,947,'_virtual','no'), -(12426,947,'_downloadable','no'), -(12427,947,'_download_limit','-1'), -(12428,947,'_download_expiry','-1'), -(12429,947,'_stock',NULL), -(12430,947,'_stock_status','instock'), -(12431,947,'_wc_average_rating','0'), -(12432,947,'_wc_review_count','0'), -(12433,947,'attribute_pa_size','56'), -(12434,947,'_product_version','9.9.3'), -(12435,948,'_variation_description',''), -(12436,948,'total_sales','0'), -(12437,948,'_tax_status','taxable'), -(12438,948,'_tax_class','parent'), -(12439,948,'_manage_stock','no'), -(12440,948,'_backorders','no'), -(12441,948,'_sold_individually','no'), -(12442,948,'_virtual','no'), -(12443,948,'_downloadable','no'), -(12444,948,'_download_limit','-1'), -(12445,948,'_download_expiry','-1'), -(12446,948,'_stock',NULL), -(12447,948,'_stock_status','instock'), -(12448,948,'_wc_average_rating','0'), -(12449,948,'_wc_review_count','0'), -(12450,948,'attribute_pa_size','58'), -(12451,948,'_product_version','9.9.3'), -(12452,949,'_variation_description',''), -(12453,949,'total_sales','0'), -(12454,949,'_tax_status','taxable'), -(12455,949,'_tax_class','parent'), -(12456,949,'_manage_stock','no'), -(12457,949,'_backorders','no'), -(12458,949,'_sold_individually','no'), -(12459,949,'_virtual','no'), -(12460,949,'_downloadable','no'), -(12461,949,'_download_limit','-1'), -(12462,949,'_download_expiry','-1'), -(12463,949,'_stock',NULL), -(12464,949,'_stock_status','instock'), -(12465,949,'_wc_average_rating','0'), -(12466,949,'_wc_review_count','0'), -(12467,949,'attribute_pa_size','60'), -(12468,949,'_product_version','9.9.3'), -(12469,950,'_variation_description',''), -(12470,950,'total_sales','0'), -(12471,950,'_tax_status','taxable'), -(12472,950,'_tax_class','parent'), -(12473,950,'_manage_stock','no'), -(12474,950,'_backorders','no'), -(12475,950,'_sold_individually','no'), -(12476,950,'_virtual','no'), -(12477,950,'_downloadable','no'), -(12478,950,'_download_limit','-1'), -(12479,950,'_download_expiry','-1'), -(12480,950,'_stock',NULL), -(12481,950,'_stock_status','instock'), -(12482,950,'_wc_average_rating','0'), -(12483,950,'_wc_review_count','0'), -(12484,950,'attribute_pa_size','62'), -(12485,950,'_product_version','9.9.3'), -(12486,951,'_variation_description',''), -(12487,951,'total_sales','0'), -(12488,951,'_tax_status','taxable'), -(12489,951,'_tax_class','parent'), -(12490,951,'_manage_stock','no'), -(12491,951,'_backorders','no'), -(12492,951,'_sold_individually','no'), -(12493,951,'_virtual','no'), -(12494,951,'_downloadable','no'), -(12495,951,'_download_limit','-1'), -(12496,951,'_download_expiry','-1'), -(12497,951,'_stock',NULL), -(12498,951,'_stock_status','instock'), -(12499,951,'_wc_average_rating','0'), -(12500,951,'_wc_review_count','0'), -(12501,951,'attribute_pa_size','64'), -(12502,951,'_product_version','9.9.3'), -(12503,944,'_sku','UTEKI-B-s-50'), -(12504,944,'_regular_price','110'), -(12505,944,'_thumbnail_id','0'), -(12506,944,'_price','110'), -(12507,945,'_sku','UTEKI-B-s-52'), -(12508,945,'_regular_price','110'), -(12509,945,'_thumbnail_id','0'), -(12510,945,'_price','110'), -(12511,946,'_sku','UTEKI-B-s-54'), -(12512,946,'_regular_price','110'), -(12513,946,'_thumbnail_id','0'), -(12514,946,'_price','110'), -(12515,947,'_sku','UTEKI-B-s-56'), -(12516,947,'_regular_price','110'), -(12517,947,'_thumbnail_id','0'), -(12518,947,'_price','110'), -(12519,948,'_sku','UTEKI-B-s-58'), -(12520,948,'_regular_price','110'), -(12521,948,'_thumbnail_id','0'), -(12522,948,'_price','110'), -(12523,949,'_sku','UTEKI-B-s-60'), -(12524,949,'_regular_price','110'), -(12525,949,'_thumbnail_id','0'), -(12526,949,'_price','110'), -(12527,950,'_sku','UTEKI-B-s-62'), -(12528,950,'_regular_price','110'), -(12529,950,'_thumbnail_id','0'), -(12530,950,'_price','110'), -(12531,951,'_sku','UTEKI-B-s-64'), -(12532,951,'_regular_price','110'), -(12533,951,'_thumbnail_id','0'), -(12534,951,'_price','110'), -(12535,941,'_price','110'), -(12537,941,'_regular_price','110'), -(12541,952,'_wp_attached_file','2025/06/UTEKI-B-s-1.jpg'), -(12542,952,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2025/06/UTEKI-B-s-1.jpg\";s:8:\"filesize\";i:176396;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"UTEKI-B-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20275;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12543,952,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver'), -(12544,941,'_thumbnail_id','952'), -(12548,953,'total_sales','0'), -(12549,953,'_tax_status','taxable'), -(12550,953,'_tax_class',''), -(12551,953,'_manage_stock','no'), -(12552,953,'_backorders','no'), -(12553,953,'_sold_individually','no'), -(12554,953,'_virtual','no'), -(12555,953,'_downloadable','no'), -(12556,953,'_download_limit','-1'), -(12557,953,'_download_expiry','-1'), -(12558,953,'_thumbnail_id','962'), -(12559,953,'_stock',NULL), -(12560,953,'_stock_status','instock'), -(12561,953,'_wc_average_rating','0'), -(12562,953,'_wc_review_count','0'), -(12563,953,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12564,953,'_product_version','9.9.4'), -(12568,954,'_variation_description',''), -(12569,954,'_sku','UTEKI-B-s-50-1'), -(12570,954,'_regular_price','115'), -(12571,954,'total_sales','0'), -(12572,954,'_tax_status','taxable'), -(12573,954,'_tax_class','parent'), -(12574,954,'_manage_stock','no'), -(12575,954,'_backorders','no'), -(12576,954,'_sold_individually','no'), -(12577,954,'_virtual','no'), -(12578,954,'_downloadable','no'), -(12579,954,'_download_limit','-1'), -(12580,954,'_download_expiry','-1'), -(12581,954,'_thumbnail_id','0'), -(12582,954,'_stock',NULL), -(12583,954,'_stock_status','instock'), -(12584,954,'_wc_average_rating','0'), -(12585,954,'_wc_review_count','0'), -(12586,954,'attribute_pa_size','50'), -(12587,954,'_price','115'), -(12588,954,'_product_version','9.9.3'), -(12589,955,'_variation_description',''), -(12590,955,'_sku','UTEKI-B-s-52-1'), -(12591,955,'_regular_price','115'), -(12592,955,'total_sales','0'), -(12593,955,'_tax_status','taxable'), -(12594,955,'_tax_class','parent'), -(12595,955,'_manage_stock','no'), -(12596,955,'_backorders','no'), -(12597,955,'_sold_individually','no'), -(12598,955,'_virtual','no'), -(12599,955,'_downloadable','no'), -(12600,955,'_download_limit','-1'), -(12601,955,'_download_expiry','-1'), -(12602,955,'_thumbnail_id','0'), -(12603,955,'_stock',NULL), -(12604,955,'_stock_status','instock'), -(12605,955,'_wc_average_rating','0'), -(12606,955,'_wc_review_count','0'), -(12607,955,'attribute_pa_size','52'), -(12608,955,'_price','115'), -(12609,955,'_product_version','9.9.3'), -(12610,956,'_variation_description',''), -(12611,956,'_sku','UTEKI-B-s-54-1'), -(12612,956,'_regular_price','115'), -(12613,956,'total_sales','0'), -(12614,956,'_tax_status','taxable'), -(12615,956,'_tax_class','parent'), -(12616,956,'_manage_stock','no'), -(12617,956,'_backorders','no'), -(12618,956,'_sold_individually','no'), -(12619,956,'_virtual','no'), -(12620,956,'_downloadable','no'), -(12621,956,'_download_limit','-1'), -(12622,956,'_download_expiry','-1'), -(12623,956,'_thumbnail_id','0'), -(12624,956,'_stock',NULL), -(12625,956,'_stock_status','instock'), -(12626,956,'_wc_average_rating','0'), -(12627,956,'_wc_review_count','0'), -(12628,956,'attribute_pa_size','54'), -(12629,956,'_price','115'), -(12630,956,'_product_version','9.9.3'), -(12631,957,'_variation_description',''), -(12632,957,'_sku','UTEKI-B-s-56-1'), -(12633,957,'_regular_price','115'), -(12634,957,'total_sales','0'), -(12635,957,'_tax_status','taxable'), -(12636,957,'_tax_class','parent'), -(12637,957,'_manage_stock','no'), -(12638,957,'_backorders','no'), -(12639,957,'_sold_individually','no'), -(12640,957,'_virtual','no'), -(12641,957,'_downloadable','no'), -(12642,957,'_download_limit','-1'), -(12643,957,'_download_expiry','-1'), -(12644,957,'_thumbnail_id','0'), -(12645,957,'_stock',NULL), -(12646,957,'_stock_status','instock'), -(12647,957,'_wc_average_rating','0'), -(12648,957,'_wc_review_count','0'), -(12649,957,'attribute_pa_size','56'), -(12650,957,'_price','115'), -(12651,957,'_product_version','9.9.3'), -(12652,958,'_variation_description',''), -(12653,958,'_sku','UTEKI-B-s-58-1'), -(12654,958,'_regular_price','115'), -(12655,958,'total_sales','0'), -(12656,958,'_tax_status','taxable'), -(12657,958,'_tax_class','parent'), -(12658,958,'_manage_stock','no'), -(12659,958,'_backorders','no'), -(12660,958,'_sold_individually','no'), -(12661,958,'_virtual','no'), -(12662,958,'_downloadable','no'), -(12663,958,'_download_limit','-1'), -(12664,958,'_download_expiry','-1'), -(12665,958,'_thumbnail_id','0'), -(12666,958,'_stock',NULL), -(12667,958,'_stock_status','instock'), -(12668,958,'_wc_average_rating','0'), -(12669,958,'_wc_review_count','0'), -(12670,958,'attribute_pa_size','58'), -(12671,958,'_price','115'), -(12672,958,'_product_version','9.9.3'), -(12673,959,'_variation_description',''), -(12674,959,'_sku','UTEKI-B-s-60-1'), -(12675,959,'_regular_price','115'), -(12676,959,'total_sales','0'), -(12677,959,'_tax_status','taxable'), -(12678,959,'_tax_class','parent'), -(12679,959,'_manage_stock','no'), -(12680,959,'_backorders','no'), -(12681,959,'_sold_individually','no'), -(12682,959,'_virtual','no'), -(12683,959,'_downloadable','no'), -(12684,959,'_download_limit','-1'), -(12685,959,'_download_expiry','-1'), -(12686,959,'_thumbnail_id','0'), -(12687,959,'_stock',NULL), -(12688,959,'_stock_status','instock'), -(12689,959,'_wc_average_rating','0'), -(12690,959,'_wc_review_count','0'), -(12691,959,'attribute_pa_size','60'), -(12692,959,'_price','115'), -(12693,959,'_product_version','9.9.3'), -(12694,960,'_variation_description',''), -(12695,960,'_sku','UTEKI-B-s-62-1'), -(12696,960,'_regular_price','115'), -(12697,960,'total_sales','0'), -(12698,960,'_tax_status','taxable'), -(12699,960,'_tax_class','parent'), -(12700,960,'_manage_stock','no'), -(12701,960,'_backorders','no'), -(12702,960,'_sold_individually','no'), -(12703,960,'_virtual','no'), -(12704,960,'_downloadable','no'), -(12705,960,'_download_limit','-1'), -(12706,960,'_download_expiry','-1'), -(12707,960,'_thumbnail_id','0'), -(12708,960,'_stock',NULL), -(12709,960,'_stock_status','instock'), -(12710,960,'_wc_average_rating','0'), -(12711,960,'_wc_review_count','0'), -(12712,960,'attribute_pa_size','62'), -(12713,960,'_price','115'), -(12714,960,'_product_version','9.9.3'), -(12715,961,'_variation_description',''), -(12716,961,'_sku','UTEKI-B-s-64-1'), -(12717,961,'_regular_price','115'), -(12718,961,'total_sales','0'), -(12719,961,'_tax_status','taxable'), -(12720,961,'_tax_class','parent'), -(12721,961,'_manage_stock','no'), -(12722,961,'_backorders','no'), -(12723,961,'_sold_individually','no'), -(12724,961,'_virtual','no'), -(12725,961,'_downloadable','no'), -(12726,961,'_download_limit','-1'), -(12727,961,'_download_expiry','-1'), -(12728,961,'_thumbnail_id','0'), -(12729,961,'_stock',NULL), -(12730,961,'_stock_status','instock'), -(12731,961,'_wc_average_rating','0'), -(12732,961,'_wc_review_count','0'), -(12733,961,'attribute_pa_size','64'), -(12734,961,'_price','115'), -(12735,961,'_product_version','9.9.3'), -(12737,953,'_edit_lock','1750439928:1'), -(12738,962,'_wp_attached_file','2025/06/UTEKI-B-g.jpg'), -(12739,962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-B-g.jpg\";s:8:\"filesize\";i:181915;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12740,953,'_edit_last','1'), -(12741,962,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated sterling silver'), -(12742,963,'_wp_attached_file','2025/06/DSC00670.jpg'), -(12743,963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00670.jpg\";s:8:\"filesize\";i:1396939;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00670-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990764\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12744,963,'_wp_attachment_image_alt',''), -(12745,953,'_price','115'), -(12749,263,'_photos_colonne_gauche|||0|value','696'), -(12750,263,'_photos_colonne_droite|||0|value','265'), -(12751,263,'_photos_colonne_droite|||1|value','267'), -(12752,263,'_photos_colonne_droite|||2|value','708'), -(12753,263,'_haiku_details_produit',''), -(12754,268,'_photos_colonne_gauche|||0|value','725'), -(12755,268,'_photos_colonne_droite|||0|value','704'), -(12756,268,'_photos_colonne_droite|||1|value','270'), -(12757,268,'_haiku_details_produit',''), -(12758,288,'_price','60'), -(12759,288,'_price','90'), -(12760,288,'_photos_colonne_gauche|||0|value','289'), -(12761,288,'_photos_colonne_droite|||0|value','290'), -(12762,288,'_photos_colonne_droite|||1|value','689'), -(12763,288,'_haiku_details_produit',''), -(12764,285,'_price','55'), -(12765,285,'_price','85'), -(12766,285,'_photos_colonne_gauche|||0|value','286'), -(12767,285,'_photos_colonne_droite|||0|value','287'), -(12768,285,'_haiku_details_produit',''), -(12769,247,'_wp_trash_meta_status','publish'), -(12770,247,'_wp_trash_meta_time','1750278720'), -(12771,247,'_wp_desired_post_slug','tamanori-earrings-gold-plated-copy-size-5'), -(12772,248,'_wp_trash_meta_status','publish'), -(12773,248,'_wp_trash_meta_time','1750278720'), -(12774,248,'_wp_desired_post_slug','tamanori-earrings-gold-plated-copy-size-6'), -(12775,246,'_wp_trash_meta_status','publish'), -(12776,246,'_wp_trash_meta_time','1750278720'), -(12777,246,'_wp_desired_post_slug','ikkan-bracelet-gold-plated'), -(12778,965,'_wp_attached_file','2024/10/BOROBORO-BO2-g.jpg'), -(12779,965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/BOROBORO-BO2-g.jpg\";s:8:\"filesize\";i:191599;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12780,965,'_wp_attachment_image_alt','pair of Boroboro long gold plated earrings with asymmetrical shapes.'), -(12781,213,'_price','50'), -(12782,213,'_price','75'), -(12783,213,'_thumbnail_id','965'), -(12784,213,'_photos_colonne_gauche|||0|value','965'), -(12785,213,'_photos_colonne_droite|||0|value','671'), -(12786,213,'_photos_colonne_droite|||1|value','199'), -(12787,213,'_haiku_details_produit',''), -(12788,966,'_wp_attached_file','2024/10/BOROBORO-BO2-s.jpg'), -(12789,966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/BOROBORO-BO2-s.jpg\";s:8:\"filesize\";i:181343;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12790,966,'_wp_attachment_image_alt','pair of Boroboro long silver earrings with asymmetrical shapes.'), -(12791,183,'_price','45'), -(12792,183,'_price','70'), -(12793,183,'_thumbnail_id','966'), -(12794,183,'_photos_colonne_gauche|||0|value','966'), -(12795,183,'_photos_colonne_droite|||0|value','718'), -(12796,183,'_photos_colonne_droite|||1|value','823'), -(12797,183,'_haiku_details_produit',''), -(12798,968,'_wp_attached_file','2024/09/PIASU-B-s.jpg'), -(12799,968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/PIASU-B-s.jpg\";s:8:\"filesize\";i:187836;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12800,968,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops.'), -(12801,123,'_price','100'), -(12802,123,'_thumbnail_id','968'), -(12803,123,'_photos_colonne_gauche|||0|value','968'), -(12804,123,'_photos_colonne_droite|||0|value','132'), -(12805,123,'_photos_colonne_droite|||1|value','681'), -(12806,123,'_haiku_details_produit',''), -(12807,168,'_price','100'), -(12808,168,'_price','110'), -(12809,168,'_photos_colonne_gauche|||0|value','726'), -(12810,168,'_photos_colonne_droite|||0|value','180'), -(12811,168,'_photos_colonne_droite|||1|value','177'), -(12812,168,'_photos_colonne_droite|||2|value','178'), -(12813,168,'_photos_colonne_droite|||3|value','182'), -(12814,168,'_photos_colonne_droite|||4|value','179'), -(12815,168,'_photos_colonne_droite|||5|value','826'), -(12816,168,'_haiku_details_produit',''), -(12817,969,'_wp_attached_file','2024/10/TANEMAKI-C-1.jpg'), -(12818,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/TANEMAKI-C-1.jpg\";s:8:\"filesize\";i:581610;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"TANEMAKI-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12819,969,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), -(12820,271,'_thumbnail_id','969'), -(12821,271,'_photos_colonne_gauche|||0|value','737'), -(12822,271,'_photos_colonne_gauche|||1|value','969'), -(12823,271,'_photos_colonne_droite|||0|value','273'), -(12824,271,'_haiku_details_produit',''), -(12828,521,'_photos_colonne_gauche|||0|value','925'), -(12829,521,'_photos_colonne_droite|||0|value','831'), -(12830,521,'_photos_colonne_droite|||1|value','749'), -(12831,521,'_haiku_details_produit',''), -(12832,515,'_photos_colonne_gauche|||0|value','927'), -(12833,515,'_photos_colonne_droite|||0|value','832'), -(12834,515,'_photos_colonne_droite|||1|value','747'), -(12835,515,'_haiku_details_produit',''), -(12836,982,'total_sales','0'), -(12837,982,'_tax_status','taxable'), -(12838,982,'_tax_class',''), -(12839,982,'_manage_stock','no'), -(12840,982,'_backorders','no'), -(12841,982,'_sold_individually','no'), -(12842,982,'_virtual','no'), -(12843,982,'_downloadable','no'), -(12844,982,'_download_limit','-1'), -(12845,982,'_download_expiry','-1'), -(12846,982,'_thumbnail_id','991'), -(12847,982,'_stock',NULL), -(12848,982,'_stock_status','instock'), -(12849,982,'_wc_average_rating','0'), -(12850,982,'_wc_review_count','0'), -(12851,982,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12852,982,'_product_version','9.9.4'), -(13024,982,'_price','100'), -(13025,982,'_edit_lock','1750440191:1'), -(13026,982,'_edit_last','1'), -(13027,991,'_wp_attached_file','2025/06/UTEKI-C-s.jpg'), -(13028,991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-C-s.jpg\";s:8:\"filesize\";i:190153;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-C-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13029,991,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In sterling silver'), -(13030,992,'_wp_attached_file','2025/06/DSC00689.jpg'), -(13031,992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4912;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00689.jpg\";s:8:\"filesize\";i:1445969;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00689-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13032,992,'_wp_attachment_image_alt','Uteki necklaces with a droplet pendant and prehnite oval stone.'), -(13033,993,'_wp_attached_file','2025/06/DSC00684.jpg'), -(13034,993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2137;s:6:\"height\";i:2138;s:4:\"file\";s:20:\"2025/06/DSC00684.jpg\";s:8:\"filesize\";i:950776;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00684-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13035,993,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. Silver version'), -(13036,982,'_sku','UTEKI-C-s'), -(13037,982,'_regular_price','100'), -(13042,994,'_sku','UTEKI-C-g'), -(13043,994,'_regular_price','100'), -(13044,994,'total_sales','0'), -(13045,994,'_tax_status','taxable'), -(13046,994,'_tax_class',''), -(13047,994,'_manage_stock','no'), -(13048,994,'_backorders','no'), -(13049,994,'_sold_individually','no'), -(13050,994,'_virtual','no'), -(13051,994,'_downloadable','no'), -(13052,994,'_download_limit','-1'), -(13053,994,'_download_expiry','-1'), -(13054,994,'_thumbnail_id','995'), -(13055,994,'_stock',NULL), -(13056,994,'_stock_status','instock'), -(13057,994,'_wc_average_rating','0'), -(13058,994,'_wc_review_count','0'), -(13059,994,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(13060,994,'_product_version','9.9.4'), -(13061,994,'_price','100'), -(13066,994,'_edit_lock','1750440135:1'), -(13067,995,'_wp_attached_file','2025/06/UTEKI-C-g.jpg'), -(13068,995,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-C-g.jpg\";s:8:\"filesize\";i:196560;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-C-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13069,995,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In gold plated silver'), -(13070,994,'_edit_last','1'), -(13071,996,'_wp_attached_file','2025/06/DSC00699.jpg'), -(13072,996,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00699.jpg\";s:8:\"filesize\";i:1161535;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00699-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13073,996,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone.'), -(13078,941,'_sku','UTEKI-B-s'), -(13082,953,'_sku','UTEKI-B-g'), -(13086,953,'_photos_colonne_gauche|||0|value','962'), -(13087,953,'_photos_colonne_droite|||0|value','963'), -(13088,953,'_haiku_details_produit',''), -(13089,941,'_photos_colonne_gauche|||0|value','952'), -(13090,941,'_photos_colonne_droite|||0|value','943'), -(13091,941,'_haiku_details_produit',''), -(13092,994,'_photos_colonne_gauche|||0|value','995'), -(13093,994,'_photos_colonne_droite|||0|value','992'), -(13094,994,'_photos_colonne_droite|||1|value','996'), -(13095,994,'_haiku_details_produit',''), -(13096,982,'_photos_colonne_gauche|||0|value','991'), -(13097,982,'_photos_colonne_droite|||0|value','992'), -(13098,982,'_photos_colonne_droite|||1|value','993'), -(13099,982,'_haiku_details_produit',''); -/*!40000 ALTER TABLE `haikuwp_postmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_posts` --- - -DROP TABLE IF EXISTS `haikuwp_posts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_posts` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, - `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content` longtext NOT NULL, - `post_title` text NOT NULL, - `post_excerpt` text NOT NULL, - `post_status` varchar(20) NOT NULL DEFAULT 'publish', - `comment_status` varchar(20) NOT NULL DEFAULT 'open', - `ping_status` varchar(20) NOT NULL DEFAULT 'open', - `post_password` varchar(255) NOT NULL DEFAULT '', - `post_name` varchar(200) NOT NULL DEFAULT '', - `to_ping` text NOT NULL, - `pinged` text NOT NULL, - `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content_filtered` longtext NOT NULL, - `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `guid` varchar(255) NOT NULL DEFAULT '', - `menu_order` int(11) NOT NULL DEFAULT 0, - `post_type` varchar(20) NOT NULL DEFAULT 'post', - `post_mime_type` varchar(100) NOT NULL DEFAULT '', - `comment_count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`ID`), - KEY `post_name` (`post_name`(191)), - KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), - KEY `post_parent` (`post_parent`), - KEY `post_author` (`post_author`) -) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_posts` --- - -LOCK TABLES `haikuwp_posts` WRITE; -/*!40000 ALTER TABLE `haikuwp_posts` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_posts` VALUES -(1,1,'2024-08-04 22:10:39','2024-08-04 20:10:39','\n

Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !

\n','Bonjour tout le monde !','','publish','open','open','','bonjour-tout-le-monde','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/?p=1',0,'post','',1), -(4,0,'2024-08-04 22:10:39','2024-08-04 20:10:39','','Navigation','','publish','closed','closed','','navigation','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/2024/08/04/navigation/',0,'wp_navigation','',0), -(13,1,'2024-08-05 15:21:14','2024-08-05 13:21:14','','Home','','publish','closed','closed','','home','','','2024-08-05 15:21:14','2024-08-05 13:21:14','',0,'https://haikuatelier.fr.ddev.site/?page_id=13',0,'page','',0), -(14,1,'2024-08-05 15:21:25','2024-08-05 13:21:25','','E-Shop','','publish','closed','closed','','shop','','','2024-08-06 22:21:51','2024-08-06 20:21:51','',0,'https://haikuatelier.fr.ddev.site/?page_id=14',0,'page','',0), -(16,1,'2024-08-05 15:22:02','2024-08-05 13:22:02','','Cart','','publish','closed','closed','','cart','','','2024-08-05 15:22:02','2024-08-05 13:22:02','',0,'https://haikuatelier.fr.ddev.site/?page_id=16',0,'page','',0), -(17,1,'2024-08-05 15:22:18','2024-08-05 13:22:18','','Checkout','','publish','closed','closed','','checkout','','','2024-08-05 15:22:18','2024-08-05 13:22:18','',0,'https://haikuatelier.fr.ddev.site/?page_id=17',0,'page','',0), -(18,1,'2024-08-05 15:22:40','2024-08-05 13:22:40','','Privacy policy','','publish','closed','closed','','privacy-policy','','','2024-08-05 15:22:40','2024-08-05 13:22:40','',0,'https://haikuatelier.fr.ddev.site/?page_id=18',0,'page','',0), -(19,1,'2024-08-05 15:23:03','2024-08-05 13:23:03','','Terms & Conditions','','publish','closed','closed','','terms-and-conditions','','','2024-11-25 16:28:57','2024-11-25 15:28:57','',0,'https://haikuatelier.fr.ddev.site/?page_id=19',0,'page','',0), -(26,1,'2024-08-06 22:21:23','2024-08-06 20:21:23','','Contact','','publish','closed','closed','','contact','','','2024-08-06 22:21:23','2024-08-06 20:21:23','',0,'https://haikuatelier.fr.ddev.site/?page_id=26',0,'page','',0), -(27,1,'2024-08-06 22:21:30','2024-08-06 20:21:30','','About','','publish','closed','closed','','about','','','2024-08-06 22:21:30','2024-08-06 20:21:30','',0,'https://haikuatelier.fr.ddev.site/?page_id=27',0,'page','',0), -(72,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','HADOU: wave \r\n\r\nA wavy ring mixing two bands: one in sterling silver, the other in gold plated silver.\r\n
    \r\n
  • total width 0,5cm
  • \r\n
  • wires diameter 2mm and 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Hadou Ring','','publish','closed','closed','','hadou-ring','','','2024-11-24 11:44:31','2024-11-24 10:44:31','',0,'https://haiku.gcch.fr/?post_type=product&p=72',0,'product','',0), -(73,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-63','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=73',2,'product_variation','',0), -(74,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-64','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=74',3,'product_variation','',0), -(75,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-65','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=75',4,'product_variation','',0), -(76,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-66','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=76',5,'product_variation','',0), -(77,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-67','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=77',6,'product_variation','',0), -(78,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-68','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=78',7,'product_variation','',0), -(79,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-69','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=79',8,'product_variation','',0), -(81,2,'2024-09-30 17:22:16','2024-09-30 15:22:16','','Hadou Ring','','inherit','closed','closed','','sony-dsc','','','2024-09-30 17:26:53','2024-09-30 15:26:53','',72,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B.jpg',0,'attachment','image/jpeg',0), -(100,2,'2024-09-30 18:51:37','2024-09-30 16:51:37','','Hadou ring','','inherit','closed','closed','','hadou-b-mix','','','2024-09-30 18:51:55','2024-09-30 16:51:55','',72,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B-mix.jpg',0,'attachment','image/jpeg',0), -(102,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','IKKAN : link\r\n\r\nA piece made of an oversized link thread into a D-shaped sterling silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring silver','','publish','closed','closed','','ikkan-ring-silver','','','2024-11-24 11:45:53','2024-11-24 10:45:53','',0,'https://haiku.gcch.fr/?post_type=product&p=102',0,'product','',0), -(103,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-77','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=103',1,'product_variation','',0), -(104,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-78','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=104',2,'product_variation','',0), -(105,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-79','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=105',3,'product_variation','',0), -(106,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-80','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=106',4,'product_variation','',0), -(107,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-81','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=107',5,'product_variation','',0), -(108,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-82','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=108',6,'product_variation','',0), -(109,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-83','','','2024-11-12 23:40:27','2024-11-12 22:40:27','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=109',7,'product_variation','',0), -(110,2,'2024-09-30 18:56:37','2024-09-30 16:56:37','','Ikkan silver Ring','','inherit','closed','closed','','sony-dsc-3','','','2024-09-30 18:58:06','2024-09-30 16:58:06','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B2-arg.jpg',0,'attachment','image/jpeg',0), -(111,2,'2024-09-30 18:57:45','2024-09-30 16:57:45','','Ikkan silver ring','','inherit','closed','closed','','ikkan-b-arg','','','2024-09-30 18:58:26','2024-09-30 16:58:26','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-arg.jpg',0,'attachment','image/jpeg',0), -(112,2,'2024-09-30 18:59:53','2024-09-30 16:59:53','','Ikkan silver ring + Kishou ring','','inherit','closed','closed','','ikkan-bakigen-ba','','','2024-09-30 19:00:36','2024-09-30 17:00:36','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-BaKIGEN-Ba.jpg',0,'attachment','image/jpeg',0), -(113,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','IKKAN: link\r\n\r\nA piece made of an oversized link thread into a D-shaped gold plated silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring gold plated','','publish','closed','closed','','ikkan-ring-gold-plated','','','2024-11-24 11:53:51','2024-11-24 10:53:51','',0,'https://haiku.gcch.fr/?post_type=product&p=113',0,'product','',0), -(114,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-84','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=114',1,'product_variation','',0), -(115,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-85','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=115',2,'product_variation','',0), -(116,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-86','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=116',3,'product_variation','',0), -(117,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-87','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=117',4,'product_variation','',0), -(118,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-88','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=118',5,'product_variation','',0), -(119,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-89','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=119',6,'product_variation','',0), -(120,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-90','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=120',7,'product_variation','',0), -(122,2,'2024-09-30 21:19:26','2024-09-30 19:19:26','','Ikkan gold plated ring','','inherit','closed','closed','','ikkan-b-g','','','2024-11-07 23:57:12','2024-11-07 22:57:12','',113,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-g.jpg',0,'attachment','image/jpeg',0), -(123,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','PIASU : piercing\r\n\r\nWide band ring in sterling silver with three movable hoops on top.\r\n
    \r\n
  • bands diameter 1cm to 1,5cm
  • \r\n
  • height 0,8 cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Piasu Ring','','publish','closed','closed','','piasu-ring','','','2025-06-18 22:44:58','2025-06-18 20:44:58','',0,'https://haiku.gcch.fr/?post_type=product&p=123',0,'product','',0), -(124,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-91','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=124',1,'product_variation','',0), -(125,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-92','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=125',2,'product_variation','',0), -(126,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-93','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=126',3,'product_variation','',0), -(127,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-94','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=127',4,'product_variation','',0), -(128,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-95','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=128',5,'product_variation','',0), -(129,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-96','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=129',6,'product_variation','',0), -(130,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-97','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=130',7,'product_variation','',0), -(132,2,'2024-09-30 21:40:43','2024-09-30 19:40:43','','Piasu ring','','inherit','closed','closed','','_dsc9928','','','2024-09-30 21:41:04','2024-09-30 19:41:04','',123,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9928.jpg',0,'attachment','image/jpeg',0), -(133,2,'2024-09-30 22:00:26','2024-09-30 20:00:26','KARA: hull, shell\r\n\r\nTwo textured sterling silver rings linked by a thin silver curb chain. Can be worn stacked on the same finger, or on two different fingers.\r\n
    \r\n
  • height 1cm and 0,5cm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Kara Ring','','publish','closed','closed','','kara-ring','','','2025-05-09 17:40:27','2025-05-09 15:40:27','',0,'https://haiku.gcch.fr/?post_type=product&p=133',0,'product','',0), -(134,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-98','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=134',1,'product_variation','',0), -(135,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-99','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=135',2,'product_variation','',0), -(136,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-100','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=136',3,'product_variation','',0), -(137,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-101','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=137',4,'product_variation','',0), -(138,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-102','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=138',5,'product_variation','',0), -(139,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-103','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=139',6,'product_variation','',0), -(140,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-104','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=140',7,'product_variation','',0), -(142,2,'2024-09-30 22:16:16','2024-09-30 20:16:16','','Kara ring','','inherit','closed','closed','','_dsc9269','','','2024-09-30 22:16:33','2024-09-30 20:16:33','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9269.jpg',0,'attachment','image/jpeg',0), -(143,2,'2024-09-30 22:17:13','2024-09-30 20:17:13','','Kara ring','','inherit','closed','closed','','_dsc9148','','','2024-09-30 22:17:26','2024-09-30 20:17:26','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9148.jpg',0,'attachment','image/jpeg',0), -(144,2,'2024-10-01 08:12:23','2024-10-01 06:12:23','KISHOU: signing\r\n\r\nSignet ring engraved with three lines that represent the three sentences composing an haïku. Made in sterling silver.\r\n
    \r\n
  • height 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kishou Ring silver','','trash','closed','closed','','kishou-silver-ring__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',0,'https://haiku.gcch.fr/?post_type=product&p=144',0,'product','',0), -(145,2,'2024-10-01 08:12:23','2024-10-01 06:12:23','','Kishou Ring silver - 50','Size: 50','trash','closed','closed','','hadou-golden-earcuff-105__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=145',1,'product_variation','',0), -(146,2,'2024-10-01 08:12:23','2024-10-01 06:12:23','','Kishou Ring silver - 52','Size: 52','trash','closed','closed','','hadou-golden-earcuff-106__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=146',2,'product_variation','',0), -(147,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 54','Size: 54','trash','closed','closed','','hadou-golden-earcuff-107__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=147',3,'product_variation','',0), -(148,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 56','Size: 56','trash','closed','closed','','hadou-golden-earcuff-108__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=148',4,'product_variation','',0), -(149,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 58','Size: 58','trash','closed','closed','','hadou-golden-earcuff-109__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=149',5,'product_variation','',0), -(150,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 60','Size: 60','trash','closed','closed','','hadou-golden-earcuff-110__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=150',6,'product_variation','',0), -(151,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 62','Size: 62','trash','closed','closed','','hadou-golden-earcuff-111__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=151',7,'product_variation','',0), -(154,2,'2024-10-01 08:28:27','2024-10-01 06:28:27','','Kishou silver ring','','inherit','closed','closed','','kigen-baikkanba','','','2024-10-01 08:29:30','2024-10-01 06:29:30','',144,'https://haiku.gcch.fr/app/uploads/2024/10/KIGEN-BaIKKANBa.jpg',0,'attachment','image/jpeg',0), -(155,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','KISHOU: signing\r\n\r\nSignet ring engraved with three lines that represent the three sentences composing a haïku. Made in gold plated silver.\r\n
    \r\n
  • height 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kishou Ring gold plated','','trash','closed','closed','','kishou-ring-gold-plated__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',0,'https://haiku.gcch.fr/?post_type=product&p=155',0,'product','',0), -(156,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 50','Size: 50','trash','closed','closed','','hadou-golden-earcuff-112__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=156',1,'product_variation','',0), -(157,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 52','Size: 52','trash','closed','closed','','hadou-golden-earcuff-113__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=157',2,'product_variation','',0), -(158,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 54','Size: 54','trash','closed','closed','','hadou-golden-earcuff-114__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=158',3,'product_variation','',0), -(159,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 56','Size: 56','trash','closed','closed','','hadou-golden-earcuff-115__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=159',4,'product_variation','',0), -(160,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 58','Size: 58','trash','closed','closed','','hadou-golden-earcuff-116__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=160',5,'product_variation','',0), -(161,2,'2024-10-01 08:31:01','2024-10-01 06:31:01','','Kishou Ring gold plated - 60','Size: 60','trash','closed','closed','','hadou-golden-earcuff-117__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=161',6,'product_variation','',0), -(162,2,'2024-10-01 08:31:01','2024-10-01 06:31:01','','Kishou Ring gold plated - 62','Size: 62','trash','closed','closed','','hadou-golden-earcuff-118__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=162',7,'product_variation','',0), -(165,2,'2024-10-01 08:37:37','2024-10-01 06:37:37','','Kishou gold plated ring','','inherit','closed','closed','','hadou-booikkan-bkigen-bjokou-co','','','2024-10-01 08:37:59','2024-10-01 06:37:59','',155,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg',0,'attachment','image/jpeg',0), -(166,2,'2024-10-01 08:40:28','2024-10-01 06:40:28','','Kara ring','','inherit','closed','closed','','_dsc9760','','','2024-10-01 08:40:59','2024-10-01 06:40:59','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9760.jpg',0,'attachment','image/jpeg',0), -(167,2,'2024-10-01 08:41:39','2024-10-01 06:41:39','','Kara ring','','inherit','closed','closed','','_dsc9339','','','2024-10-01 08:41:56','2024-10-01 06:41:56','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9339.jpg',0,'attachment','image/jpeg',0), -(168,2,'2024-10-01 08:42:52','2024-10-01 06:42:52','ROKKU: pebble\r\n\r\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in silver.\r\n
    \r\n
  • adjustable
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','publish','closed','closed','','rokku-ring','','','2025-06-18 22:46:03','2025-06-18 20:46:03','',0,'https://haiku.gcch.fr/?post_type=product&p=168',0,'product','',0), -(177,2,'2024-10-01 09:12:26','2024-10-01 07:12:26','','Rokku ring malachite','','inherit','closed','closed','','rokku-b-malachite-2','','','2024-10-01 09:12:46','2024-10-01 07:12:46','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-malachite-1.jpg',0,'attachment','image/jpeg',0), -(178,2,'2024-10-01 09:13:13','2024-10-01 07:13:13','','Rokku ring tiger eye','','inherit','closed','closed','','sony-dsc-9','','','2024-10-01 09:13:48','2024-10-01 07:13:48','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye.jpg',0,'attachment','image/jpeg',0), -(179,2,'2024-10-01 09:14:04','2024-10-01 07:14:04','','Rokku ring tiger eye','','inherit','closed','closed','','rokku-b-tigereye','','','2024-10-01 09:14:34','2024-10-01 07:14:34','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye-1.jpg',0,'attachment','image/jpeg',0), -(180,2,'2024-10-01 09:25:14','2024-10-01 07:25:14','','Rokku ring malachite','','inherit','closed','closed','','_dsc9710','','','2024-10-01 09:25:39','2024-10-01 07:25:39','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9710.jpg',0,'attachment','image/jpeg',0), -(182,2,'2024-10-01 09:26:24','2024-10-01 07:26:24','','Rokku ring tiger eye','','inherit','closed','closed','','_dsc9190','','','2024-10-01 09:26:54','2024-10-01 07:26:54','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9190.jpg',0,'attachment','image/jpeg',0), -(183,2,'2024-10-01 11:31:42','2024-10-01 09:31:42','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of sterling silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','publish','closed','closed','','boroboro-long-earrings-silver','','','2025-06-18 22:39:08','2025-06-18 20:39:08','',0,'https://haiku.gcch.fr/?post_type=product&p=183',0,'product','',0), -(199,2,'2024-10-01 12:16:11','2024-10-01 10:16:11','','BoroBoro silver long earring, right side','','inherit','closed','closed','','sony-dsc-11','','','2024-10-01 12:17:24','2024-10-01 10:17:24','',183,'https://haiku.gcch.fr/app/uploads/2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg',0,'attachment','image/jpeg',0), -(200,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Malachite','Stone: Malachite','publish','closed','closed','','rokku-ring-malachite','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=200',1,'product_variation','',0), -(201,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','rokku-ring-tiger-eye','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=201',2,'product_variation','',0), -(202,2,'2024-10-01 18:14:00','2024-10-01 16:14:00','PIASU: piercing\r\n\r\nLarge earrings covering the lobe with three hoops hanging to it, mixing sterling silver and gold plated silver.\r\n
    \r\n
  • rings diameter 0,5 to 1,5cm
  • \r\n
  • total caliber 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Piasu Earrings','','publish','closed','closed','','piasu-earrings','','','2024-11-15 12:40:29','2024-11-15 11:40:29','',0,'https://haiku.gcch.fr/?post_type=product&p=202',0,'product','',0), -(206,2,'2024-10-01 18:20:45','2024-10-01 16:20:45','','Piasu earrings','','inherit','closed','closed','','sony-dsc-12','','','2024-10-01 18:22:00','2024-10-01 16:22:00','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO.jpg',0,'attachment','image/jpeg',0), -(207,2,'2024-10-01 19:33:10','2024-10-01 17:33:10','','Piasu earrings','','inherit','closed','closed','','piasu-bo','','','2024-10-01 19:34:41','2024-10-01 17:34:41','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO-1.jpg',0,'attachment','image/jpeg',0), -(212,2,'2024-10-01 19:50:41','2024-10-01 17:50:41','','PIASU-BO','','inherit','closed','closed','','piasu-bo-2','','','2024-10-01 19:51:04','2024-10-01 17:51:04','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO-2.jpg',0,'attachment','image/jpeg',0), -(213,2,'2024-10-01 19:52:06','2024-10-01 17:52:06','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of gold plated silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings gold plated','','publish','closed','closed','','boroboro-long-earrings-gold-plated','','','2025-06-18 22:36:56','2025-06-18 20:36:56','',0,'https://haiku.gcch.fr/?post_type=product&p=213',0,'product','',0), -(240,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','IKKAN : link\r\n\r\nA bracelet in sterling silver mixing a rigid band and loose curb chain\r\n
    \r\n
  • size 1: 6cm diameter / size 2: 7cm diameter
  • \r\n
  • wire thickness 2,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Ikkan Bracelet silver','','publish','closed','closed','','ikkan-bracelet-silver','','','2025-05-09 17:52:17','2025-05-09 15:52:17','',0,'https://haiku.gcch.fr/?post_type=product&p=240',0,'product','',0), -(241,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 1','Size: Size 1','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-3','','','2025-05-09 17:52:17','2025-05-09 15:52:17','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=241',1,'product_variation','',0), -(242,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 2','Size: Size 2','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-4','','','2025-05-09 17:52:17','2025-05-09 15:52:17','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=242',2,'product_variation','',0), -(243,2,'2024-10-02 23:24:46','2024-10-02 21:24:46','','Ikkan bracelet silver','','inherit','closed','closed','','sony-dsc-17','','','2024-10-02 23:29:51','2024-10-02 21:29:51','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-arg.jpg',0,'attachment','image/jpeg',0), -(244,2,'2024-10-02 23:32:58','2024-10-02 21:32:58','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s','','','2024-10-02 23:33:16','2024-10-02 21:33:16','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s.jpg',0,'attachment','image/jpeg',0), -(245,2,'2024-10-02 23:33:24','2024-10-02 21:33:24','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s-2','','','2024-10-02 23:33:43','2024-10-02 21:33:43','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s-1.jpg',0,'attachment','image/jpeg',0), -(246,2,'2024-10-02 23:36:10','2024-10-02 21:36:10','IKKAN : link\r\n\r\nA bracelet in gold plated silver, mixing a rigid wire and loose curb chain.\r\n
    \r\n
  • size 1: 6cm diameter / size 2: 7cm diameter
  • \r\n
  • wire thickness 2,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Ikkan Bracelet gold plated','','trash','closed','closed','','ikkan-bracelet-gold-plated__trashed','','','2025-06-18 22:32:00','2025-06-18 20:32:00','',0,'https://haiku.gcch.fr/?post_type=product&p=246',0,'product','',0), -(247,2,'2024-10-02 23:36:10','2024-10-02 21:36:10','','Ikkan Bracelet gold plated - Size 1','Size: Size 1','trash','closed','closed','','tamanori-earrings-gold-plated-copy-size-5__trashed','','','2025-06-18 22:32:00','2025-06-18 20:32:00','',246,'https://haiku.gcch.fr/?post_type=product_variation&p=247',1,'product_variation','',0), -(248,2,'2024-10-02 23:36:10','2024-10-02 21:36:10','','Ikkan Bracelet gold plated - Size 2','Size: Size 2','trash','closed','closed','','tamanori-earrings-gold-plated-copy-size-6__trashed','','','2025-06-18 22:32:00','2025-06-18 20:32:00','',246,'https://haiku.gcch.fr/?post_type=product_variation&p=248',2,'product_variation','',0), -(249,2,'2024-10-02 23:36:59','2024-10-02 21:36:59','','Ikkan bracelet gold plated','','inherit','closed','closed','','sony-dsc-18','','','2024-10-02 23:37:41','2024-10-02 21:37:41','',246,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-vrm.jpg',0,'attachment','image/jpeg',0), -(250,2,'2024-10-02 23:38:49','2024-10-02 21:38:49','','Ikkan bracelet gold plated','','inherit','closed','closed','','ikkan-br-g','','','2024-11-08 00:00:39','2024-11-07 23:00:39','',246,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-g.jpg',0,'attachment','image/jpeg',0), -(251,2,'2024-10-02 23:40:26','2024-10-02 21:40:26','TANEMAKI: seeding \r\n\r\nDelicate bracelet composed of an fluid center element with small grey fresh water pearls on one side, and a mix of sterling silver and gold plated silver chains on the other side.\r\n
    \r\n
  • adjustable in between 15cm and 18cm
  • \r\n
  • oval center shape 1cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tanemaki Bracelet','','publish','closed','closed','','tanemaki-bracelet','','','2025-05-27 08:49:54','2025-05-27 06:49:54','',0,'https://haiku.gcch.fr/?post_type=product&p=251',0,'product','',0), -(255,2,'2024-10-02 23:55:51','2024-10-02 21:55:51','','Tanemaki bracelet','','inherit','closed','closed','','tanemaki-br','','','2024-10-02 23:56:12','2024-10-02 21:56:12','',251,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-BR-1.jpg',0,'attachment','image/jpeg',0), -(258,2,'2024-10-03 22:02:26','2024-10-03 20:02:26','Fuyou: floating leave on water\r\n\r\nRectangular trace chain bracelet in sterling silver with a fluid oval shape element in the center.\r\n
    \r\n
  • adjustable in between 15 and 18cm
  • \r\n
  • oval center shape 2cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet silver','','publish','closed','closed','','fuyou-bracelet-silver','','','2024-11-25 09:20:15','2024-11-25 08:20:15','',0,'https://haiku.gcch.fr/?post_type=product&p=258',0,'product','',0), -(259,2,'2024-10-03 22:05:22','2024-10-03 20:05:22','','Fuyou bracelet silver','','inherit','closed','closed','','sony-dsc-20','','','2024-10-03 22:06:35','2024-10-03 20:06:35','',258,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-BR-s.jpg',0,'attachment','image/jpeg',0), -(260,2,'2024-10-03 22:08:43','2024-10-03 20:08:43','','Fuyou bracelet silver','','inherit','closed','closed','','_dsc9225','','','2024-11-25 09:11:31','2024-11-25 08:11:31','',258,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9225.jpg',0,'attachment','image/jpeg',0), -(261,2,'2024-10-03 22:13:48','2024-10-03 20:13:48','Fuyou : floating leave on water\r\n\r\nRectangular trace chain bracelet in gold plated silver with a fluid oval shape element in the center.\r\n
    \r\n
  • adjustable in between 15 and 18cm
  • \r\n
  • oval center shape 2cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet gold plated','','publish','closed','closed','','fuyou-bracelet-gold-plated','','','2024-11-25 18:37:49','2024-11-25 17:37:49','',0,'https://haiku.gcch.fr/?post_type=product&p=261',0,'product','',0), -(263,2,'2024-10-03 22:17:11','2024-10-03 20:17:11','IKKAN: link \r\n\r\nNecklace with a mix of different links combining sterling silver and gold plated silver.\r\n
    \r\n
  • length 50 to 54cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Ikkan Necklace','','publish','closed','closed','','ikkan-necklace','','','2025-06-18 22:28:46','2025-06-18 20:28:46','',0,'https://haiku.gcch.fr/?post_type=product&p=263',0,'product','',0), -(265,2,'2024-10-03 22:39:11','2024-10-03 20:39:11','','Ikkan necklace silver','','inherit','closed','closed','','ikkan-c','','','2024-10-03 22:39:37','2024-10-03 20:39:37','',263,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-C.jpg',0,'attachment','image/jpeg',0), -(266,2,'2024-10-03 22:39:57','2024-10-03 20:39:57','','Ikkan necklace silver','','inherit','closed','closed','','ikkan-c-2','','','2024-10-03 22:40:20','2024-10-03 20:40:20','',263,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-C-1.jpg',0,'attachment','image/jpeg',0), -(267,2,'2024-10-03 22:40:36','2024-10-03 20:40:36','','Ikkan necklace silver','','inherit','closed','closed','','ikkan-c-3','','','2024-10-03 22:40:53','2024-10-03 20:40:53','',263,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-C-2.jpg',0,'attachment','image/jpeg',0), -(268,2,'2024-10-03 22:43:42','2024-10-03 20:43:42','PIASU : piercing\r\n\r\nThis short necklace combines different thin chains with a mix of sterling silver and gold plated silver. Secured by a toggle clasp on the front.\r\n
    \r\n
  • length 45cm to 50cm
  • \r\n
  • toggle clasp caliber 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Necklace','','publish','closed','closed','','piasu-necklace','','','2025-06-18 22:29:26','2025-06-18 20:29:26','',0,'https://haiku.gcch.fr/?post_type=product&p=268',0,'product','',0), -(270,2,'2024-10-03 22:48:06','2024-10-03 20:48:06','','Piasu necklace silver','','inherit','closed','closed','','piasu-c-arg-opti','','','2024-10-03 22:48:49','2024-10-03 20:48:49','',268,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-C-arg-opti.jpg',0,'attachment','image/jpeg',0), -(271,2,'2024-10-04 08:18:27','2024-10-04 06:18:27','TANEMAKI : seeding\r\n\r\nA necklace composed of a fluid center element with dark grey fresh water pearls on one side, and a mix of sterling silver and gold plated chains on the other side.\r\n
    \r\n
  • length 50cm to 55cm
  • \r\n
  • center element caliber 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Tanemaki Necklace','','publish','closed','closed','','tanemaki-necklace','','','2025-06-18 22:49:37','2025-06-18 20:49:37','',0,'https://haiku.gcch.fr/?post_type=product&p=271',0,'product','',0), -(273,2,'2024-10-04 08:32:08','2024-10-04 06:32:08','','Tanemaki necklace','','inherit','closed','closed','','tanemaki-c','','','2024-10-04 08:32:26','2024-10-04 06:32:26','',271,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-C.jpg',0,'attachment','image/jpeg',0), -(274,2,'2024-10-04 08:33:31','2024-10-04 06:33:31','FUYOU: floating leave on water\r\n\r\nA necklace with thin rectangular trace chain and oval fluid elements in sterling silver, with a dangling gold plated detail.\r\n
    \r\n
  • length 50cm to 55cm
  • \r\n
  • oval shapes caliber between 3cm and 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Necklace','','publish','closed','closed','','fuyou-necklace','','','2025-05-09 17:55:35','2025-05-09 15:55:35','',0,'https://haiku.gcch.fr/?post_type=product&p=274',0,'product','',0), -(275,2,'2024-10-04 08:39:00','2024-10-04 06:39:00','','Fuyou necklace','','inherit','closed','closed','','sony-dsc-25','','','2024-10-04 08:40:13','2024-10-04 06:40:13','',274,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-C.jpg',0,'attachment','image/jpeg',0), -(285,2,'2024-10-04 08:55:02','2024-10-04 06:55:02','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in sterling silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops silver','','publish','closed','closed','','hattari-stacked-hoops-silver','','','2025-06-18 22:31:13','2025-06-18 20:31:13','',0,'https://haiku.gcch.fr/?post_type=product&p=285',0,'product','',0), -(286,2,'2024-10-04 09:00:41','2024-10-04 07:00:41','','Hattari stacked hoops silver','','inherit','closed','closed','','sony-dsc-28','','','2024-10-04 09:01:22','2024-10-04 07:01:22','',285,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-s.jpg',0,'attachment','image/jpeg',0), -(287,2,'2024-10-04 09:08:50','2024-10-04 07:08:50','','Hattari stacked hoops silver','','inherit','closed','closed','','hattari-cr1-s','','','2024-10-04 09:09:07','2024-10-04 07:09:07','',285,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-s-1.jpg',0,'attachment','image/jpeg',0), -(288,2,'2024-10-04 09:10:01','2024-10-04 07:10:01','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in gold plated silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops gold plated','','publish','closed','closed','','hattari-stacked-hoops-gold-plated','','','2025-06-18 22:30:24','2025-06-18 20:30:24','',0,'https://haiku.gcch.fr/?post_type=product&p=288',0,'product','',0), -(289,2,'2024-10-04 09:10:35','2024-10-04 07:10:35','','Hattari stacked hoops gold plated','','inherit','closed','closed','','sony-dsc-29','','','2024-10-04 09:11:02','2024-10-04 07:11:02','',288,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-g.jpg',0,'attachment','image/jpeg',0), -(290,2,'2024-10-04 09:12:19','2024-10-04 07:12:19','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9336','','','2024-11-13 19:53:24','2024-11-13 18:53:24','',288,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9336.jpg',0,'attachment','image/jpeg',0), -(306,2,'2024-10-07 08:18:28','2024-10-07 06:18:28','TAMANORI: in balance on a ball\r\n\r\nOval sterling silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tamanori Hoops silver','','publish','closed','closed','','tamanori-hoops','','','2024-11-15 12:32:15','2024-11-15 11:32:15','',0,'https://haiku.gcch.fr/?post_type=product&p=306',0,'product','',0), -(310,2,'2024-10-07 08:20:16','2024-10-07 06:20:16','','Tamanori Hoops silver','','inherit','closed','closed','','sony-dsc-31','','','2024-10-07 08:20:55','2024-10-07 06:20:55','',306,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(311,2,'2024-10-07 08:22:26','2024-10-07 06:22:26','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9378','','','2024-10-07 08:22:48','2024-10-07 06:22:48','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9378.jpg',0,'attachment','image/jpeg',0), -(312,2,'2024-10-07 08:33:26','2024-10-07 06:33:26','TAMANORI: in balance on a ball\r\n\r\nOval gold plated silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycles sterling silver and 24K gold plated silver.','Tamanori Hoops gold plated','','publish','closed','closed','','tamanori-hoops-gold-plated','','','2024-11-24 12:12:54','2024-11-24 11:12:54','',0,'https://haiku.gcch.fr/?post_type=product&p=312',0,'product','',0), -(317,2,'2024-10-07 08:36:37','2024-10-07 06:36:37','','Tamanori Hoops gold plated','','inherit','closed','closed','','tamanori-cr2-vrm','','','2024-10-07 08:36:52','2024-10-07 06:36:52','',312,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-vrm-1.jpg',0,'attachment','image/jpeg',0), -(318,2,'2024-10-07 08:40:26','2024-10-07 06:40:26','FUYOU: floating leave on water\r\n\r\nSolo hoop in sterling silver with a mix of small rings in gold plated silver hanging on it.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • small rings diameter around 5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Fuyou Hoop','','publish','closed','closed','','fuyou-hoop','','','2025-05-09 17:59:27','2025-05-09 15:59:27','',0,'https://haiku.gcch.fr/?post_type=product&p=318',0,'product','',0), -(323,2,'2024-10-07 08:54:21','2024-10-07 06:54:21','','Fuyou Hoops silver and gold','','inherit','closed','closed','','fuyou-cr','','','2024-10-07 08:54:39','2024-10-07 06:54:39','',318,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-CR.jpg',0,'attachment','image/jpeg',0), -(324,2,'2024-10-07 08:55:07','2024-10-07 06:55:07','','Fuyou Hoops silver and gold','','inherit','closed','closed','','_dsc9542','','','2024-10-07 08:55:26','2024-10-07 06:55:26','',318,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9542.jpg',0,'attachment','image/jpeg',0), -(325,2,'2024-10-07 11:08:32','2024-10-07 09:08:32','HADOU: wave\r\n\r\nAn ear cuff composed of three wavy bands in sterling silver.\r\n
    \r\n
  • total height 8mm
  • \r\n
  • bands thickness 1,2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Hadou Ear Cuff silver','','publish','closed','closed','','hadou-earcuff-silver','','','2025-05-09 18:03:02','2025-05-09 16:03:02','',0,'https://haiku.gcch.fr/?post_type=product&p=325',0,'product','',0), -(326,2,'2024-10-07 11:17:26','2024-10-07 09:17:26','','Hadou Earcuff silver','','inherit','closed','closed','','sony-dsc-34','','','2024-10-07 11:24:14','2024-10-07 09:24:14','',325,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-arg.jpg',0,'attachment','image/jpeg',0), -(327,2,'2024-10-07 11:21:04','2024-10-07 09:21:04','','Hadou Earcuff silver','','inherit','closed','closed','','hadou-ec','','','2024-10-07 11:21:41','2024-10-07 09:21:41','',325,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC.jpg',0,'attachment','image/jpeg',0), -(328,2,'2024-10-07 11:22:52','2024-10-07 09:22:52','HADOU: wave\r\n\r\nAn ear cuff composed of three wavy bands in gold plated silver.\r\n
    \r\n
  • total height 8mm
  • \r\n
  • bands thickness 1,2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Hadou Ear Cuff gold plated','','publish','closed','closed','','hadou-earcuff-gold-plated','','','2025-05-09 18:02:53','2025-05-09 16:02:53','',0,'https://haiku.gcch.fr/?post_type=product&p=328',0,'product','',0), -(329,2,'2024-10-07 11:23:37','2024-10-07 09:23:37','','Hadou Earcuff gold plated','','inherit','closed','closed','','sony-dsc-35','','','2024-10-07 11:24:28','2024-10-07 09:24:28','',328,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm.jpg',0,'attachment','image/jpeg',0), -(330,2,'2024-10-07 11:25:22','2024-10-07 09:25:22','','Hadou Earcuff gold plated','','inherit','closed','closed','','hadou-ec-vrm','','','2024-10-07 11:25:54','2024-10-07 09:25:54','',328,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm-1.jpg',0,'attachment','image/jpeg',0), -(337,2,'2024-10-07 11:36:56','2024-10-07 09:36:56','','Hattari Earcuff gold plated','','inherit','closed','closed','','_dsc9472','','','2024-10-07 11:37:19','2024-10-07 09:37:19','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9472.jpg',0,'attachment','image/jpeg',0), -(338,2,'2024-10-07 11:38:31','2024-10-07 09:38:31','PIASU: piercing\r\n\r\nThis brooch, made to be hooked on a top, mimics a nipple piercing and is made of sterling silver with a gold plated silver bead.\r\n
    \r\n
  • caliber 1,2cm
  • \r\n
  • wire thickness 15mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Piasu Brooch','','publish','closed','closed','','piasu-brooch','','','2024-10-07 11:51:18','2024-10-07 09:51:18','',0,'https://haiku.gcch.fr/?post_type=product&p=338',0,'product','',0), -(339,2,'2024-10-07 11:42:14','2024-10-07 09:42:14','','Piasu brooch','','inherit','closed','closed','','sony-dsc-38','','','2024-10-07 11:43:19','2024-10-07 09:43:19','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC.jpg',0,'attachment','image/jpeg',0), -(340,2,'2024-10-07 11:46:56','2024-10-07 09:46:56','','Piasu Brooch','','inherit','closed','closed','','piasu-brc','','','2024-10-07 11:47:31','2024-10-07 09:47:31','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-1.jpg',0,'attachment','image/jpeg',0), -(341,2,'2024-10-07 11:50:14','2024-10-07 09:50:14','','Piasu Brooch','','inherit','closed','closed','','piasu-brc-2','','','2024-10-07 11:50:42','2024-10-07 09:50:42','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-2.jpg',0,'attachment','image/jpeg',0), -(342,2,'2024-10-15 15:24:41','2024-10-15 13:24:41','MUGURA: vine\r\n\r\nTrio of mismatched stud earrings in sterling silver and gold plated silver, mixing wavy lines and natural grey pearls.\r\n
    \r\n
  • wire width 15mm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Trio Stud Earrings','','publish','closed','closed','','mugura-trio-earrings','','','2025-06-17 08:19:15','2025-06-17 06:19:15','',0,'https://haiku.gcch.fr/?post_type=product&p=342',0,'product','',0), -(347,2,'2024-10-15 15:51:14','2024-10-15 13:51:14','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9763','','','2024-10-15 15:51:54','2024-10-15 13:51:54','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9763.jpg',0,'attachment','image/jpeg',0), -(348,2,'2024-10-15 15:52:11','2024-10-15 13:52:11','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9781','','','2024-10-15 15:52:27','2024-10-15 13:52:27','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781.jpg',0,'attachment','image/jpeg',0), -(349,2,'2024-10-15 15:52:56','2024-10-15 13:52:56','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9748','','','2024-10-15 15:57:59','2024-10-15 13:57:59','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9748.jpg',0,'attachment','image/jpeg',0), -(384,2,'2024-10-18 08:17:21','2024-10-18 06:17:21','','Kagun bracelet gold plated','','inherit','closed','closed','','_dsc9775','','','2024-10-18 08:17:50','2024-10-18 06:17:50','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9775.jpg',0,'attachment','image/jpeg',0), -(385,2,'2024-10-18 08:19:19','2024-10-18 06:19:19','ROKKU: pebble\r\n\r\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\r\n
    \r\n
  • total chain length 50cm
  • \r\n
  • pendant height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','publish','closed','closed','','rokku-necklace','','','2025-05-09 17:57:00','2025-05-09 15:57:00','',0,'https://haiku.gcch.fr/?post_type=product&p=385',0,'product','',0), -(388,2,'2024-10-18 08:40:49','2024-10-18 06:40:49','','Rokku necklace silver and semi precious stone','','inherit','closed','closed','','rokku-c-arg','','','2024-10-18 08:41:04','2024-10-18 06:41:04','',385,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-C-arg.jpg',0,'attachment','image/jpeg',0), -(389,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Green Jaspe','Stone: Green Jaspe','publish','closed','closed','','fuyou-necklace-copy-green-jaspe','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=389',1,'product_variation','',0), -(391,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Lapis Lazuli','Stone: Lapis Lazuli','publish','closed','closed','','fuyou-necklace-copy-lapis-lazuli','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=391',2,'product_variation','',0), -(392,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','fuyou-necklace-copy-tiger-eye','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=392',3,'product_variation','',0), -(393,2,'2024-10-18 08:48:05','2024-10-18 06:48:05','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In sterling silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diameter 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops silver','','publish','closed','closed','','mugura-hoops-silver','','','2025-06-17 08:35:24','2025-06-17 06:35:24','',0,'https://haiku.gcch.fr/?post_type=product&p=393',0,'product','',0), -(396,2,'2024-10-18 08:51:31','2024-10-18 06:51:31','','Mugura hoops silver','','inherit','closed','closed','','sony-dsc-46','','','2024-10-18 08:59:25','2024-10-18 06:59:25','',393,'https://haiku.gcch.fr/app/uploads/2024/10/MUGURA-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(397,2,'2024-10-18 08:59:16','2024-10-18 06:59:16','','Mugura hoops silver','','inherit','closed','closed','','_dsc9733','','','2024-11-08 00:27:40','2024-11-07 23:27:40','',393,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9733.jpg',0,'attachment','image/jpeg',0), -(398,2,'2024-10-18 09:00:33','2024-10-18 07:00:33','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diametre 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops gold plated','','publish','closed','closed','','mugura-hoops-gold-plated','','','2025-06-17 08:33:37','2025-06-17 06:33:37','',0,'https://haiku.gcch.fr/?post_type=product&p=398',0,'product','',0), -(400,2,'2024-10-18 09:21:51','2024-10-18 07:21:51','','Mugura hoops silver','','inherit','closed','closed','','_dsc9723','','','2024-10-18 09:22:07','2024-10-18 07:22:07','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9723.jpg',0,'attachment','image/jpeg',0), -(401,2,'2024-10-18 09:22:21','2024-10-18 07:22:21','','Mugura hoops silver','','inherit','closed','closed','','_dsc9730','','','2024-10-18 09:22:38','2024-10-18 07:22:38','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9730.jpg',0,'attachment','image/jpeg',0), -(404,2,'2024-10-28 07:51:48','2024-10-28 06:51:48','','Mugura Nail Jewel silver','','inherit','closed','closed','','_dsc9216','','','2024-10-28 07:52:28','2024-10-28 06:52:28','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9216.jpg',0,'attachment','image/jpeg',0), -(408,2,'2024-10-28 08:07:14','2024-10-28 07:07:14','','Mugura Nail Jewel gold plated','','inherit','closed','closed','','_dsc9485','','','2024-10-28 08:07:36','2024-10-28 07:07:36','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9485.jpg',0,'attachment','image/jpeg',0), -(411,1,'2024-10-30 20:42:57','2024-10-30 19:42:57','','Hadou ring','','inherit','closed','closed','','_dsc8400-copie','','','2024-10-30 20:43:23','2024-10-30 19:43:23','',72,'https://haiku.gcch.fr/app/uploads/2024/09/DSC8400-copie.jpg',0,'attachment','image/jpeg',0), -(412,1,'2024-10-30 20:51:18','2024-10-30 19:51:18','','Hattari ring','','inherit','closed','closed','','hattari-b-2-2','','','2024-10-30 20:51:35','2024-10-30 19:51:35','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HATTARI-B-2-1.jpg',0,'attachment','image/jpeg',0), -(419,1,'2024-10-30 21:03:44','2024-10-30 20:03:44','','Hattari ring','','inherit','closed','closed','','hattari-b-1','','','2024-10-30 21:04:17','2024-10-30 20:04:17','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HATTARI-B-1.jpg',0,'attachment','image/jpeg',0), -(420,1,'2024-10-30 21:15:40','2024-10-30 20:15:40','','Hattari ring','','inherit','closed','closed','','sony-dsc-2','','','2024-10-30 21:16:19','2024-10-30 20:16:19','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HATTARI-B.jpg',0,'attachment','image/jpeg',0), -(424,1,'2024-10-30 22:08:13','2024-10-30 21:08:13','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9376','','','2024-10-30 22:08:31','2024-10-30 21:08:31','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9376.jpg',0,'attachment','image/jpeg',0), -(425,1,'2024-10-30 22:19:21','2024-10-30 21:19:21','','Mugura Earrings silver','','inherit','closed','closed','','_dsc9156','','','2024-10-30 22:19:38','2024-10-30 21:19:38','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9156.jpg',0,'attachment','image/jpeg',0), -(430,1,'2024-10-30 22:27:09','2024-10-30 21:27:09','ROKKU: pebble\r\n\r\nSolo hoop earring in sterling silver with a semi precious oval stone.\r\n
    \r\n
  • hoop 13mm diameter
  • \r\n
  • pendant height 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Hoop silver','','trash','closed','closed','','rokku-hoop-silver__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',0,'https://haiku.gcch.fr/?post_type=product&p=430',0,'product','',0), -(433,1,'2024-10-30 22:33:29','2024-10-30 21:33:29','ROKKU: pebble\r\n\r\nSolo hoop earring in gold plated silver with a semi precious oval stone.\r\n
    \r\n
  • hoop 13mm diameter
  • \r\n
  • pendant height 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 24K gold plated silver.','Rokku Hoop gold plated','','trash','closed','closed','','rokku-hoop-gold-plated__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',0,'https://haiku.gcch.fr/?post_type=product&p=433',0,'product','',0), -(435,1,'2024-10-30 22:36:02','2024-10-30 21:36:02','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Kara Ear Cuff silver','','publish','closed','closed','','kara-earcuff-silver','','','2025-06-17 10:28:57','2025-06-17 08:28:57','',0,'https://haiku.gcch.fr/?post_type=product&p=435',0,'product','',0), -(436,1,'2024-10-30 22:37:12','2024-10-30 21:37:12','','Kara ear cuff silver','','inherit','closed','closed','','sony-dsc-53','','','2024-10-30 22:37:44','2024-10-30 21:37:44','',435,'https://haiku.gcch.fr/app/uploads/2024/10/KARA-EC-arg.jpg',0,'attachment','image/jpeg',0), -(437,1,'2024-10-30 22:40:43','2024-10-30 21:40:43','','Kara ear cuff silver','','inherit','closed','closed','','_dsc9781-2','','','2024-10-30 22:40:56','2024-10-30 21:40:56','',435,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781-1.jpg',0,'attachment','image/jpeg',0), -(447,1,'2024-11-07 23:51:25','2024-11-07 22:51:25','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling gold plated silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','publish','closed','closed','','kara-ear-cuff-gold-plated','','','2025-06-17 10:27:36','2025-06-17 08:27:36','',0,'https://haikuatelier.com/?post_type=product&p=447',0,'product','',0), -(478,1,'2024-11-08 08:34:00','2024-11-08 07:34:00','','Rokku Hoop gold plated - Lapis Lazuli','Stone: Lapis Lazuli','trash','closed','closed','','rokku-hoop-gold-plated-lapis-lazuli__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',433,'https://haikuatelier.com/?post_type=product_variation&p=478',1,'product_variation','',0), -(479,1,'2024-11-08 08:34:00','2024-11-08 07:34:00','','Rokku Hoop gold plated - Malachite','Stone: Malachite','trash','closed','closed','','rokku-hoop-gold-plated-malachite__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',433,'https://haikuatelier.com/?post_type=product_variation&p=479',2,'product_variation','',0), -(480,1,'2024-11-08 08:34:00','2024-11-08 07:34:00','','Rokku Hoop gold plated - Tiger\'s Eye','Stone: Tiger\'s Eye','trash','closed','closed','','rokku-hoop-gold-plated-tiger-eye__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',433,'https://haikuatelier.com/?post_type=product_variation&p=480',3,'product_variation','',0), -(487,1,'2024-11-08 10:36:08','2024-11-08 09:36:08','','Rokku necklace tiger\'s eye stone','','inherit','closed','closed','','_dsc9138','','','2024-11-08 10:37:34','2024-11-08 09:37:34','',385,'https://haikuatelier.com/app/uploads/2024/10/DSC9138.jpg',0,'attachment','image/jpeg',0), -(490,1,'2024-11-10 12:47:12','2024-11-10 11:47:12','Hadou: wave\r\n\r\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\r\n
    \r\n
  • height 1cm
  • \r\n
  • wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','publish','closed','closed','','hadou-stud-earrings','','','2025-06-17 09:46:46','2025-06-17 07:46:46','',0,'https://haikuatelier.com/?post_type=product&p=490',0,'product','',0), -(493,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - left side','Side: left side','publish','closed','closed','','hattari-double-hoops-copy-left-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=493',2,'product_variation','',0), -(494,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - pair','Side: pair','publish','closed','closed','','hattari-double-hoops-copy-pair','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=494',1,'product_variation','',0), -(495,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - right side','Side: right side','publish','closed','closed','','hattari-double-hoops-copy-right-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=495',3,'product_variation','',0), -(496,1,'2024-11-10 13:07:31','2024-11-10 12:07:31','Mugura: vine\r\n\r\nSmall solo hoop in sterling silver with a wavy element in gold plated silver dangling.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • total height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 24K gold plated silver.','Mugura Solo Hoop','','publish','closed','closed','','kagun-hoop','','','2025-06-17 08:25:09','2025-06-17 06:25:09','',0,'https://haikuatelier.com/?post_type=product&p=496',0,'product','',0), -(506,0,'2024-11-11 23:02:44','2024-11-11 22:02:44','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2024-11-11 23:02:44','2024-11-11 22:02:44','',0,'https://haiku.gcch.fr/app/uploads/2024/11/woocommerce-placeholder.png',0,'attachment','image/png',0), -(510,1,'2024-11-12 17:15:05','2024-11-12 16:15:05','','Successful Order','','publish','closed','closed','','successful-order','','','2024-11-12 17:34:29','2024-11-12 16:34:29','',0,'https://haiku.gcch.fr/?page_id=510',0,'page','',0), -(511,1,'2024-11-12 17:15:13','2024-11-12 16:15:13','','Failed Order','','publish','closed','closed','','failed-order','','','2024-11-12 17:34:46','2024-11-12 16:34:46','',0,'https://haiku.gcch.fr/?page_id=511',0,'page','',0), -(515,1,'2024-11-12 23:15:48','2024-11-12 22:15:48','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings gold plated','','publish','closed','closed','','boroboro-bead-earrings-gold-plated','','','2025-06-19 16:20:08','2025-06-19 14:20:08','',0,'https://haikuatelier.com/?post_type=product&p=515',0,'product','',0), -(521,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings silver','','publish','closed','closed','','boroboro-bead-earrings-silver','','','2025-06-19 16:20:06','2025-06-19 14:20:06','',0,'https://haikuatelier.com/?post_type=product&p=521',0,'product','',0), -(523,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','','BoroBoro Bead Earrings silver - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-tigers-eye-2','','','2024-11-12 23:30:51','2024-11-12 22:30:51','',521,'https://haikuatelier.com/?post_type=product_variation&p=523',2,'product_variation','',0), -(528,1,'2024-11-12 23:40:20','2024-11-12 22:40:20','','Ikkan Ring silver - 64','Size: 64','publish','closed','closed','','ikkan-ring-silver-64','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haikuatelier.com/?post_type=product_variation&p=528',8,'product_variation','',0), -(529,1,'2024-11-12 23:42:21','2024-11-12 22:42:21','','Ikkan Ring gold plated - 64','Size: 64','publish','closed','closed','','ikkan-ring-gold-plated-64','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haikuatelier.com/?post_type=product_variation&p=529',8,'product_variation','',0), -(530,1,'2024-11-12 23:43:55','2024-11-12 22:43:55','','Piasu Ring - 64','Size: 64','publish','closed','closed','','piasu-ring-64','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haikuatelier.com/?post_type=product_variation&p=530',8,'product_variation','',0), -(532,1,'2024-11-12 23:50:23','2024-11-12 22:50:23','','Kara Ring - 64','Size: 64','publish','closed','closed','','kara-ring-64','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haikuatelier.com/?post_type=product_variation&p=532',8,'product_variation','',0), -(533,1,'2024-11-12 23:51:56','2024-11-12 22:51:56','','Kishou Ring silver - 64','Size: 64','trash','closed','closed','','kishou-ring-silver-64__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haikuatelier.com/?post_type=product_variation&p=533',8,'product_variation','',0), -(534,1,'2024-11-12 23:53:31','2024-11-12 22:53:31','','Kishou Ring gold plated - 64','Size: 64','trash','closed','closed','','kishou-ring-gold-plated-64__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haikuatelier.com/?post_type=product_variation&p=534',8,'product_variation','',0), -(535,1,'2024-11-13 08:41:58','2024-11-13 07:41:58','BoroBoro: the sound of something crumbling \r\n\r\nA belt made of thin leather scraps and a sterling silver oval buckle, secured by sliding the straps into a semi precious bead. \r\n
    \r\n
  • adjustable up to 95cm
  • \r\n
  • oval element caliber 8cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Belt','','trash','closed','closed','','boroboro-belt__trashed','','','2025-06-13 10:38:00','2025-06-13 08:38:00','',0,'https://haikuatelier.com/?post_type=product&p=535',0,'product','',0), -(540,1,'2024-11-13 09:11:24','2024-11-13 08:11:24','','BoroBoro Belt - Crystal','Stone: Crystal','trash','closed','closed','','mugura-nail-jewel-silver-copy-crystal__trashed','','','2025-06-13 10:38:00','2025-06-13 08:38:00','',535,'https://haikuatelier.com/?post_type=product_variation&p=540',1,'product_variation','',0), -(541,1,'2024-11-13 09:11:24','2024-11-13 08:11:24','','BoroBoro Belt - Jade','Stone: Jade','trash','closed','closed','','mugura-nail-jewel-silver-copy-jade__trashed','','','2025-06-13 10:38:00','2025-06-13 08:38:00','',535,'https://haikuatelier.com/?post_type=product_variation&p=541',2,'product_variation','',0), -(545,1,'2024-11-13 13:56:53','2024-11-13 12:56:53','KARA: hull, shell\r\n\r\nSmall textured gold plated silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','publish','closed','closed','','kara-hoops-gold-plated','','','2025-06-17 10:23:24','2025-06-17 08:23:24','',0,'https://haikuatelier.com/?post_type=product&p=545',0,'product','',0), -(552,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring','','','2025-05-09 18:01:13','2025-05-09 16:01:13','',545,'https://haikuatelier.com/?post_type=product_variation&p=552',2,'product_variation','',0), -(553,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair','','','2025-05-09 18:01:13','2025-05-09 16:01:13','',545,'https://haikuatelier.com/?post_type=product_variation&p=553',1,'product_variation','',0), -(554,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','KARA: hull, shell\r\n\r\nSmall textured sterling silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops silver','','publish','closed','closed','','kara-hoops-silver','','','2025-06-17 10:21:21','2025-06-17 08:21:21','',0,'https://haikuatelier.com/?post_type=product&p=554',0,'product','',0), -(555,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair-2','','','2025-05-09 18:01:37','2025-05-09 16:01:37','',554,'https://haikuatelier.com/?post_type=product_variation&p=555',1,'product_variation','',0), -(556,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring-2','','','2025-05-09 18:01:55','2025-05-09 16:01:55','',554,'https://haikuatelier.com/?post_type=product_variation&p=556',2,'product_variation','',0), -(560,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - all','Side: all','publish','closed','closed','','kagun-trio-earrings-all','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=560',1,'product_variation','',0), -(561,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - long','Side: long','publish','closed','closed','','kagun-trio-earrings-long-side','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=561',2,'product_variation','',0), -(562,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - medium','Side: medium','publish','closed','closed','','kagun-trio-earrings-medium-side','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=562',3,'product_variation','',0), -(563,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - short','Side: short','publish','closed','closed','','kagun-trio-earrings-short-side','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=563',4,'product_variation','',0), -(565,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-silver-one-element-side','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=565',2,'product_variation','',0), -(566,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-silver-pair','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=566',1,'product_variation','',0), -(567,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-silver-two-elements-side','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=567',3,'product_variation','',0), -(569,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-one-element-side','','','2025-05-09 17:43:23','2025-05-09 15:43:23','',213,'https://haikuatelier.com/?post_type=product_variation&p=569',2,'product_variation','',0), -(570,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-gold-plated-pair','','','2025-06-18 22:36:56','2025-06-18 20:36:56','',213,'https://haikuatelier.com/?post_type=product_variation&p=570',1,'product_variation','',0), -(571,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-two-elements-side','','','2025-05-09 17:43:23','2025-05-09 15:43:23','',213,'https://haikuatelier.com/?post_type=product_variation&p=571',3,'product_variation','',0), -(610,1,'2024-11-13 18:30:59','2024-11-13 17:30:59','HATTARI: bluff\r\n\r\nA bangle bracelet composed of a wide asymmetrical band in sterling silver, and a round wire in gold plated silver crossing it.\r\n
    \r\n
  • adjustable
  • \r\n
  • band width 2cm and wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Hattari Cuff','','publish','closed','closed','','hattari-cuff','','','2025-05-09 17:53:12','2025-05-09 15:53:12','',0,'https://haikuatelier.com/?post_type=product&p=610',0,'product','',0), -(613,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist gold plated ring composed of a thick round band and a movable green aventurine bead.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring gold plated','','publish','closed','closed','','boroboro-bead-ring-gold-plated','','','2024-11-24 11:51:37','2024-11-24 10:51:37','',0,'https://haikuatelier.com/?post_type=product&p=613',0,'product','',0), -(614,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-119','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=614',1,'product_variation','',0), -(615,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-120','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=615',2,'product_variation','',0), -(616,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-121','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=616',3,'product_variation','',0), -(617,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-122','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=617',4,'product_variation','',0), -(618,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-123','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=618',5,'product_variation','',0), -(619,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-124','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=619',6,'product_variation','',0), -(620,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-125','','','2024-11-16 19:45:02','2024-11-16 18:45:02','',613,'https://haikuatelier.com/?post_type=product_variation&p=620',7,'product_variation','',0), -(624,1,'2024-11-13 19:09:17','2024-11-13 18:09:17','','BoroBoro Bead Ring gold plated - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-64','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=624',8,'product_variation','',0), -(625,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist sterling silver ring composed of a thick round band and a movable tiger\'s eye bead.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring silver','','publish','closed','closed','','boroboro-bead-ring-silver','','','2024-11-24 11:51:44','2024-11-24 10:51:44','',0,'https://haikuatelier.com/?post_type=product&p=625',0,'product','',0), -(626,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-126','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=626',1,'product_variation','',0), -(627,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-127','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=627',2,'product_variation','',0), -(628,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-128','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=628',3,'product_variation','',0), -(629,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-129','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=629',4,'product_variation','',0), -(630,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-130','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=630',5,'product_variation','',0), -(631,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-131','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=631',6,'product_variation','',0), -(632,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-132','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=632',7,'product_variation','',0), -(633,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-65','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=633',8,'product_variation','',0), -(637,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - left side','Side: left side','publish','closed','closed','','piasu-earrings-left-side','','','2024-11-15 12:38:50','2024-11-15 11:38:50','',202,'https://haikuatelier.com/?post_type=product_variation&p=637',2,'product_variation','',0), -(638,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - pair','Side: pair','publish','closed','closed','','piasu-earrings-pair','','','2024-11-13 19:25:24','2024-11-13 18:25:24','',202,'https://haikuatelier.com/?post_type=product_variation&p=638',1,'product_variation','',0), -(639,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - right side','Side: right side','publish','closed','closed','','piasu-earrings-right-side','','','2024-11-13 19:25:24','2024-11-13 18:25:24','',202,'https://haikuatelier.com/?post_type=product_variation&p=639',3,'product_variation','',0), -(641,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-silver-left-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=641',2,'product_variation','',0), -(642,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-silver-pair','','','2025-06-18 22:31:04','2025-06-18 20:31:04','',285,'https://haikuatelier.com/?post_type=product_variation&p=642',1,'product_variation','',0), -(643,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-silver-right-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=643',3,'product_variation','',0), -(645,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-left-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=645',2,'product_variation','',0), -(646,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-gold-plated-pair','','','2025-06-18 22:30:24','2025-06-18 20:30:24','',288,'https://haikuatelier.com/?post_type=product_variation&p=646',1,'product_variation','',0), -(647,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-right-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=647',3,'product_variation','',0), -(651,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - long','Side: long','publish','closed','closed','','tamanori-hoops-silver-long','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=651',2,'product_variation','',0), -(652,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - pair','Side: pair','publish','closed','closed','','tamanori-hoops-silver-pair','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=652',1,'product_variation','',0), -(653,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - short','Side: short','publish','closed','closed','','tamanori-hoops-silver-short','','','2024-11-15 12:32:10','2024-11-15 11:32:10','',306,'https://haikuatelier.com/?post_type=product_variation&p=653',3,'product_variation','',0), -(654,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - long','Side: long','publish','closed','closed','','tamanori-hoops-gold-plated-long','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=654',2,'product_variation','',0), -(655,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - pair','Side: pair','publish','closed','closed','','tamanori-hoops-gold-plated-pair','','','2024-11-13 20:13:10','2024-11-13 19:13:10','',312,'https://haikuatelier.com/?post_type=product_variation&p=655',1,'product_variation','',0), -(656,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - short','Side: short','publish','closed','closed','','tamanori-hoops-gold-plated-short','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=656',3,'product_variation','',0), -(659,1,'2024-11-15 12:26:34','2024-11-15 11:26:34','','Hadou wavy ring silver and gold','','inherit','closed','closed','','hadou-b-opti','','','2024-11-15 17:20:07','2024-11-15 16:20:07','',72,'https://haikuatelier.com/app/uploads/2024/09/HADOU-B-opti.jpg',0,'wmpc-trash','image/jpeg',0), -(660,1,'2024-11-15 12:30:13','2024-11-15 11:30:13','','Tamanori hoops gold plated','','inherit','closed','closed','','img_1442','','','2024-11-15 12:30:25','2024-11-15 11:30:25','',312,'https://haikuatelier.com/app/uploads/2024/10/IMG_1442.jpg',0,'attachment','image/jpeg',0), -(661,1,'2024-11-15 12:37:38','2024-11-15 11:37:38','','Piasu earrins mixing gold and silver','','inherit','closed','closed','','img_1454','','','2024-11-15 12:38:04','2024-11-15 11:38:04','',202,'https://haikuatelier.com/app/uploads/2024/10/IMG_1454.jpg',0,'attachment','image/jpeg',0), -(662,1,'2024-11-15 12:39:58','2024-11-15 11:39:58','','Piasu earrings mixing gold and silver','','inherit','closed','closed','','img_1456','','','2024-11-15 12:40:19','2024-11-15 11:40:19','',202,'https://haikuatelier.com/app/uploads/2024/10/IMG_1456.jpg',0,'attachment','image/jpeg',0), -(664,1,'2024-11-15 12:45:23','2024-11-15 11:45:23','','Kagun trio earrings','','inherit','closed','closed','','img_1512','','','2024-11-15 12:45:38','2024-11-15 11:45:38','',342,'https://haikuatelier.com/app/uploads/2024/10/IMG_1512.jpg',0,'attachment','image/jpeg',0), -(671,1,'2024-11-15 13:18:10','2024-11-15 12:18:10','','BoroBoro gold plated asymmetrical earrings','','inherit','closed','closed','','img_1604','','','2024-11-15 13:18:55','2024-11-15 12:18:55','',213,'https://haikuatelier.com/app/uploads/2024/10/IMG_1604.jpg',0,'attachment','image/jpeg',0), -(672,1,'2024-11-15 13:23:08','2024-11-15 12:23:08','','Hattari ear cuff gold plated','','inherit','closed','closed','','img_1656-2','','','2024-11-15 13:27:38','2024-11-15 12:27:38','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1656-1.jpg',0,'attachment','image/jpeg',0), -(673,1,'2024-11-15 13:29:39','2024-11-15 12:29:39','','Mugura minimalist silver hoops','','inherit','closed','closed','','img_1657','','','2024-11-15 13:30:07','2024-11-15 12:30:07','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1657.jpg',0,'attachment','image/jpeg',0), -(679,1,'2024-11-16 19:53:30','2024-11-16 18:53:30','','Fuyou necklace','','inherit','closed','closed','','_dsc9116','','','2024-11-16 19:53:56','2024-11-16 18:53:56','',274,'https://haikuatelier.com/app/uploads/2024/10/DSC9116.jpg',0,'attachment','image/jpeg',0), -(681,1,'2024-11-17 10:24:25','2024-11-17 09:24:25','','Piasu Ring','','inherit','closed','closed','','dsc9897','','','2024-11-17 10:24:56','2024-11-17 09:24:56','',123,'https://haikuatelier.com/app/uploads/2024/09/DSC9897.jpg',0,'attachment','image/jpeg',0), -(683,1,'2024-11-17 10:32:47','2024-11-17 09:32:47','','Hattari double fingers ring','','inherit','closed','closed','','img_1423','','','2024-11-17 10:33:09','2024-11-17 09:33:09','',0,'https://haikuatelier.com/app/uploads/2024/09/IMG_1423.jpg',0,'attachment','image/jpeg',0), -(684,1,'2024-11-17 10:35:57','2024-11-17 09:35:57','','Ikkan ring gold plated','','inherit','closed','closed','','img_1478','','','2024-11-17 10:36:09','2024-11-17 09:36:09','',113,'https://haikuatelier.com/app/uploads/2024/09/IMG_1478.jpg',0,'attachment','image/jpeg',0), -(689,1,'2024-11-17 10:50:52','2024-11-17 09:50:52','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9341','','','2024-11-17 10:51:13','2024-11-17 09:51:13','',288,'https://haikuatelier.com/app/uploads/2024/10/DSC9341.jpg',0,'attachment','image/jpeg',0), -(690,1,'2024-11-17 10:54:45','2024-11-17 09:54:45','','Fuyou necklace','SONY DSC','inherit','closed','closed','','sony-dsc-33','','','2024-11-17 10:55:01','2024-11-17 09:55:01','',274,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-C-1.jpg',0,'attachment','image/jpeg',0), -(691,1,'2024-11-17 10:57:02','2024-11-17 09:57:02','','Fuyou solo hoop','SONY DSC','inherit','closed','closed','','sony-dsc-62','','','2024-11-17 10:57:29','2024-11-17 09:57:29','',318,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-CR1.jpg',0,'attachment','image/jpeg',0), -(692,1,'2024-11-17 10:59:40','2024-11-17 09:59:40','','Hadou bangles','SONY DSC','inherit','closed','closed','','sony-dsc-16','','','2024-11-17 10:59:48','2024-11-17 09:59:48','',0,'https://haikuatelier.com/app/uploads/2024/10/HADOU-BR-mix.jpg',0,'attachment','image/jpeg',0), -(696,1,'2024-11-17 11:05:12','2024-11-17 10:05:12','','Ikkan necklace','','inherit','closed','closed','','sony-dsc-22','','','2024-11-17 11:05:30','2024-11-17 10:05:30','',263,'https://haikuatelier.com/app/uploads/2024/10/IKKAN-C-3.jpg',0,'attachment','image/jpeg',0), -(698,1,'2024-11-17 11:07:52','2024-11-17 10:07:52','','Fuyou bracelet gold plated','','inherit','closed','closed','','img_1428-2','','','2024-11-17 11:08:08','2024-11-17 10:08:08','',261,'https://haikuatelier.com/app/uploads/2024/10/IMG_1428-1.jpg',0,'attachment','image/jpeg',0), -(700,1,'2024-11-17 11:10:04','2024-11-17 10:10:04','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1431','','','2024-11-17 11:10:29','2024-11-17 10:10:29','',251,'https://haikuatelier.com/app/uploads/2024/10/IMG_1431.jpg',0,'attachment','image/jpeg',0), -(702,1,'2024-11-17 11:11:49','2024-11-17 10:11:49','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1432','','','2024-11-17 11:12:02','2024-11-17 10:12:02','',251,'https://haikuatelier.com/app/uploads/2024/10/IMG_1432.jpg',0,'attachment','image/jpeg',0), -(704,1,'2024-11-17 11:18:25','2024-11-17 10:18:25','','Piasu necklace','','inherit','closed','closed','','img_1493','','','2024-11-17 11:18:37','2024-11-17 10:18:37','',268,'https://haikuatelier.com/app/uploads/2024/10/IMG_1493.jpg',0,'attachment','image/jpeg',0), -(705,1,'2024-11-17 11:21:09','2024-11-17 10:21:09','','Rokku necklace jaspe stone','','inherit','closed','closed','','img_1531','','','2024-11-17 11:21:43','2024-11-17 10:21:43','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1531.jpg',0,'attachment','image/jpeg',0), -(707,1,'2024-11-17 11:24:00','2024-11-17 10:24:00','','Rokku necklace lapis lazuli stone','','inherit','closed','closed','','img_1543','','','2024-11-17 11:24:27','2024-11-17 10:24:27','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1543.jpg',0,'attachment','image/jpeg',0), -(708,1,'2024-11-17 11:26:34','2024-11-17 10:26:34','','Ikkan necklace','','inherit','closed','closed','','img_1565','','','2024-11-17 11:26:44','2024-11-17 10:26:44','',263,'https://haikuatelier.com/app/uploads/2024/10/IMG_1565.jpg',0,'attachment','image/jpeg',0), -(713,1,'2024-11-17 11:39:49','2024-11-17 10:39:49','','Fuyou necklace','','inherit','closed','closed','','img_1647','','','2024-11-17 11:39:58','2024-11-17 10:39:58','',274,'https://haikuatelier.com/app/uploads/2024/10/IMG_1647.jpg',0,'attachment','image/jpeg',0), -(714,1,'2024-11-17 11:42:07','2024-11-17 10:42:07','','Fuyou solo hoop','','inherit','closed','closed','','img_1651','','','2024-11-17 11:42:18','2024-11-17 10:42:18','',318,'https://haikuatelier.com/app/uploads/2024/10/IMG_1651.jpg',0,'attachment','image/jpeg',0), -(715,1,'2024-11-17 11:44:06','2024-11-17 10:44:06','','Rokku silver hoop and Tamanori goldplated earring','','inherit','closed','closed','','img_1669','','','2024-11-17 11:44:41','2024-11-17 10:44:41','',430,'https://haikuatelier.com/app/uploads/2024/10/IMG_1669.jpg',0,'attachment','image/jpeg',0), -(718,1,'2024-11-17 11:54:22','2024-11-17 10:54:22','','Boroboro earrings','','inherit','closed','closed','','img_1746','','','2024-11-17 11:54:46','2024-11-17 10:54:46','',183,'https://haikuatelier.com/app/uploads/2024/10/IMG_1746.jpg',0,'attachment','image/jpeg',0), -(722,1,'2024-11-17 17:29:17','2024-11-17 16:29:17','','Mugura hoops gold plated','','inherit','closed','closed','','sony-dsc-39','','','2024-11-17 17:29:34','2024-11-17 16:29:34','',398,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-vrm.jpg',0,'attachment','image/jpeg',0), -(725,1,'2024-11-17 17:36:52','2024-11-17 16:36:52','','Piasu necklace','SONY DSC','inherit','closed','closed','','sony-dsc-23','','','2024-11-17 17:37:08','2024-11-17 16:37:08','',268,'https://haikuatelier.com/app/uploads/2024/10/PIASU-C.jpg',0,'attachment','image/jpeg',0), -(726,1,'2024-11-17 17:39:44','2024-11-17 16:39:44','','Rokku ring silver and malachite','','inherit','closed','closed','','rokku-b-malachite','','','2024-11-17 17:40:01','2024-11-17 16:40:01','',168,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-B-malachite.jpg',0,'attachment','image/jpeg',0), -(727,1,'2024-11-17 17:41:31','2024-11-17 16:41:31','','Rokku necklace with jaspe','','inherit','closed','closed','','sony-dsc-49','','','2024-11-17 17:41:48','2024-11-17 16:41:48','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-jaspe.jpg',0,'attachment','image/jpeg',0), -(729,1,'2024-11-17 17:44:27','2024-11-17 16:44:27','','Rokku necklace tiger\'s eye','','inherit','closed','closed','','sony-dsc-45','','','2024-11-17 17:44:45','2024-11-17 16:44:45','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-tiger.jpg',0,'attachment','image/jpeg',0), -(730,1,'2024-11-17 17:52:40','2024-11-17 16:52:40','','Rokku solo hoop gold plated lapis lazuli','','inherit','closed','closed','','sony-dsc-52','','','2024-11-17 17:53:02','2024-11-17 16:53:02','',433,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-lapis.jpg',0,'attachment','image/jpeg',0), -(731,1,'2024-11-17 17:54:12','2024-11-17 16:54:12','','Rokku solo hoop gold plated malachite','','inherit','closed','closed','','sony-dsc-55','','','2024-11-17 17:54:32','2024-11-17 16:54:32','',433,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-malachite.jpg',0,'attachment','image/jpeg',0), -(732,1,'2024-11-17 17:55:29','2024-11-17 16:55:29','','Rokku solo hoop gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-56','','','2024-11-17 17:55:59','2024-11-17 16:55:59','',433,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-tiger.jpg',0,'attachment','image/jpeg',0), -(735,1,'2024-11-17 18:03:32','2024-11-17 17:03:32','','Tamanori hoops gold plated','','inherit','closed','closed','','sony-dsc-32','','','2024-11-17 18:03:50','2024-11-17 17:03:50','',312,'https://haikuatelier.com/app/uploads/2024/10/TAMANORI-CR2-vrm.jpg',0,'attachment','image/jpeg',0), -(736,1,'2024-11-17 18:05:42','2024-11-17 17:05:42','','Tanemaki pearls bracelet','','inherit','closed','closed','','sony-dsc-59','','','2024-11-17 18:05:56','2024-11-17 17:05:56','',251,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-BR.jpg',0,'attachment','image/jpeg',0), -(743,1,'2024-11-17 18:19:23','2024-11-17 17:19:23','','BoroBoro bead ring gold plated','','inherit','closed','closed','','sony-dsc-73','','','2024-11-17 18:19:43','2024-11-17 17:19:43','',613,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-g.jpg',0,'attachment','image/jpeg',0), -(744,1,'2024-11-17 18:20:59','2024-11-17 17:20:59','','BoroBoro bead ring silver','','inherit','closed','closed','','sony-dsc-74','','','2024-11-17 18:21:16','2024-11-17 17:21:16','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-s.jpg',0,'attachment','image/jpeg',0), -(747,1,'2024-11-17 18:27:21','2024-11-17 17:27:21','','BoroBoro beads earrings gold plated and aventurine','','inherit','closed','closed','','sony-dsc-63','','','2024-11-17 18:27:51','2024-11-17 17:27:51','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-green.jpg',0,'attachment','image/jpeg',0), -(748,1,'2024-11-17 18:28:18','2024-11-17 17:28:18','','BoroBoro beads earrings gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-64','','','2024-11-17 18:28:45','2024-11-17 17:28:45','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-brown.jpg',0,'attachment','image/jpeg',0), -(749,1,'2024-11-17 18:30:10','2024-11-17 17:30:10','','BoroBoro beads earrings silver and tiger\'s eye','','inherit','closed','closed','','sony-dsc-65','','','2024-11-17 18:30:37','2024-11-17 17:30:37','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-brown.jpg',0,'attachment','image/jpeg',0), -(750,1,'2024-11-17 18:30:59','2024-11-17 17:30:59','','BoroBoro beads earrings silver and aventurine','','inherit','closed','closed','','sony-dsc-66','','','2024-11-17 18:31:22','2024-11-17 17:31:22','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-green.jpg',0,'attachment','image/jpeg',0), -(751,1,'2024-11-17 18:34:14','2024-11-17 17:34:14','','Kara hoops silver','','inherit','closed','closed','','_dsc9463','','','2024-11-17 18:34:32','2024-11-17 17:34:32','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC9463.jpg',0,'attachment','image/jpeg',0), -(752,1,'2024-11-17 18:35:52','2024-11-17 17:35:52','','Hadou stud earrings','','inherit','closed','closed','','sony-dsc-60','','','2024-11-17 18:37:25','2024-11-17 17:37:25','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP.jpg',0,'attachment','image/jpeg',0), -(753,1,'2024-11-17 18:40:18','2024-11-17 17:40:18','','Hattari cuff','','inherit','closed','closed','','sony-dsc-15','','','2024-11-17 18:40:30','2024-11-17 17:40:30','',610,'https://haikuatelier.com/app/uploads/2024/11/HATTARI-BR.jpg',0,'attachment','image/jpeg',0), -(755,1,'2024-11-17 18:44:27','2024-11-17 17:44:27','','Hadou stud earrings silver','','inherit','closed','closed','','img_1474','','','2024-11-17 18:45:04','2024-11-17 17:45:04','',490,'https://haikuatelier.com/app/uploads/2024/11/IMG_1474.jpg',0,'attachment','image/jpeg',0), -(756,1,'2024-11-17 18:47:01','2024-11-17 17:47:01','','Kagun solo hoop earring','','inherit','closed','closed','','img_1481','','','2024-11-17 18:47:16','2024-11-17 17:47:16','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1481.jpg',0,'attachment','image/jpeg',0), -(757,1,'2024-11-17 18:48:24','2024-11-17 17:48:24','','Kagun solo hoop earring','','inherit','closed','closed','','img_1484','','','2024-11-17 18:48:35','2024-11-17 17:48:35','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1484.jpg',0,'attachment','image/jpeg',0), -(758,1,'2024-11-17 18:50:22','2024-11-17 17:50:22','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1501','','','2024-11-17 18:55:54','2024-11-17 17:55:54','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1501.jpg',0,'attachment','image/jpeg',0), -(759,1,'2024-11-17 18:51:58','2024-11-17 17:51:58','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1506','','','2024-11-17 18:55:47','2024-11-17 17:55:47','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1506.jpg',0,'attachment','image/jpeg',0), -(760,1,'2024-11-17 18:53:44','2024-11-17 17:53:44','','BoroBoro bead ring gold plated and aventurine','','inherit','closed','closed','','img_1504','','','2024-11-17 18:55:29','2024-11-17 17:55:29','',613,'https://haikuatelier.com/app/uploads/2024/11/IMG_1504.jpg',0,'attachment','image/jpeg',0), -(761,1,'2024-11-17 18:55:14','2024-11-17 17:55:14','','BoroBoro bead ring gold plated and aventurine','','inherit','closed','closed','','img_1554','','','2024-11-17 18:55:37','2024-11-17 17:55:37','',613,'https://haikuatelier.com/app/uploads/2024/11/IMG_1554.jpg',0,'attachment','image/jpeg',0), -(762,1,'2024-11-17 18:57:40','2024-11-17 17:57:40','','Kara textured hoops gold plated','','inherit','closed','closed','','img_1563','','','2024-11-17 18:58:00','2024-11-17 17:58:00','',545,'https://haikuatelier.com/app/uploads/2024/11/IMG_1563.jpg',0,'attachment','image/jpeg',0), -(766,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','Fuyou : floating leave on water\r\n\r\nLong dangling earrings in sterling silver. Composed of fluid oval shapes and rectangular chains.\r\n\r\n• total length 5cm\r\n• oval length 2,5cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.\r\n\r\n ','Fuyou Long Earrings silver','','publish','closed','closed','','fuyou-long-earrings-silver','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',0,'https://haikuatelier.com/?post_type=product&p=766',0,'product','',0), -(767,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','','Fuyou Long Earrings silver - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-tigers-eye-3','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',766,'https://haikuatelier.com/?post_type=product_variation&p=767',1,'product_variation','',0), -(768,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','','Fuyou Long Earrings silver - long','Side: long','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-green-aventurine-3','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',766,'https://haikuatelier.com/?post_type=product_variation&p=768',2,'product_variation','',0), -(770,1,'2024-11-20 16:10:04','2024-11-20 15:10:04','','Fuyou long earrings silver','','inherit','closed','closed','','sony-dsc-75','','','2024-11-20 16:10:49','2024-11-20 15:10:49','',766,'https://haikuatelier.com/app/uploads/2024/11/FUYOU-B0-s.jpg',0,'attachment','image/jpeg',0), -(771,1,'2024-11-20 16:18:56','2024-11-20 15:18:56','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0240','','','2024-11-20 16:19:28','2024-11-20 15:19:28','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0240.jpg',0,'attachment','image/jpeg',0), -(772,1,'2024-11-20 16:18:57','2024-11-20 15:18:57','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0242','','','2024-11-20 16:19:40','2024-11-20 15:19:40','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0242.jpg',0,'attachment','image/jpeg',0), -(773,1,'2024-11-20 16:18:58','2024-11-20 15:18:58','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0249','','','2024-11-20 16:19:42','2024-11-20 15:19:42','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0249.jpg',0,'attachment','image/jpeg',0), -(774,1,'2024-11-20 16:18:59','2024-11-20 15:18:59','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0251','','','2024-11-20 16:19:57','2024-11-20 15:19:57','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0251.jpg',0,'attachment','image/jpeg',0), -(775,1,'2024-11-20 16:22:51','2024-11-20 15:22:51','','Fuyou Long Earrings silver - medium','Side: medium','publish','closed','closed','','boroboro-bead-earrings-silver-copy-medium','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',766,'https://haikuatelier.com/?post_type=product_variation&p=775',3,'product_variation','',0), -(819,1,'2024-11-24 11:42:38','2024-11-24 10:42:38','','Haiku size guide','','inherit','closed','closed','','haiku-ringsizes','','','2024-11-24 11:42:57','2024-11-24 10:42:57','',0,'https://haikuatelier.com/app/uploads/2024/11/HAIKU-ringsizes.jpg',0,'attachment','image/jpeg',0), -(820,1,'2024-11-24 11:53:29','2024-11-24 10:53:29','','Ikkan ring gold plated','','inherit','closed','closed','','sony-dsc-4','','','2024-11-24 11:53:45','2024-11-24 10:53:45','',113,'https://haikuatelier.com/app/uploads/2024/09/IKKAN-B-vrm.jpg',0,'attachment','image/jpeg',0), -(821,1,'2024-11-24 11:55:38','2024-11-24 10:55:38','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-6','','','2024-11-24 11:55:59','2024-11-24 10:55:59','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B.jpg',0,'attachment','image/jpeg',0), -(822,1,'2024-11-24 11:55:39','2024-11-24 10:55:39','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-76','','','2024-11-24 11:56:08','2024-11-24 10:56:08','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B-1.jpg',0,'attachment','image/jpeg',0), -(823,1,'2024-11-24 11:58:59','2024-11-24 10:58:59','','BoroBoro earrings silver','','inherit','closed','closed','','boroboro-boatanemaki-bo1a-opti','','','2024-11-24 11:59:14','2024-11-24 10:59:14','',183,'https://haikuatelier.com/app/uploads/2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti-1.jpg',0,'attachment','image/jpeg',0), -(824,1,'2024-11-24 12:01:15','2024-11-24 11:01:15','','Fuyou bracelet gold plated','','inherit','closed','closed','','sony-dsc-77','','','2024-11-24 12:01:38','2024-11-24 11:01:38','',261,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-BR-g.jpg',0,'attachment','image/jpeg',0), -(825,1,'2024-11-24 12:05:34','2024-11-24 11:05:34','','Ikkan bracelet gold plated','','inherit','closed','closed','','img_1505','','','2024-11-24 12:05:50','2024-11-24 11:05:50','',246,'https://haikuatelier.com/app/uploads/2024/10/IMG_1505.jpg',0,'attachment','image/jpeg',0), -(826,1,'2024-11-24 12:07:57','2024-11-24 11:07:57','','Rokku ring silver and 18k gold','','inherit','closed','closed','','img_1582','','','2024-11-24 12:08:10','2024-11-24 11:08:10','',168,'https://haikuatelier.com/app/uploads/2024/10/IMG_1582.jpg',0,'attachment','image/jpeg',0), -(828,1,'2024-11-24 12:11:18','2024-11-24 11:11:18','','Rokku necklace silver and lapis lazuli','SONY DSC','inherit','closed','closed','','sony-dsc-58','','','2024-11-24 12:11:34','2024-11-24 11:11:34','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-lapis-copy.jpg',0,'attachment','image/jpeg',0), -(829,1,'2024-11-24 15:08:28','2024-11-24 14:08:28','','Hattari cuff','','inherit','closed','closed','','img_1460','','','2024-11-24 15:08:36','2024-11-24 14:08:36','',610,'https://haikuatelier.com/app/uploads/2024/11/IMG_1460.jpg',0,'attachment','image/jpeg',0), -(830,1,'2024-11-24 15:10:45','2024-11-24 14:10:45','','Kara ear cuff','','inherit','closed','closed','','img_1473','','','2024-11-24 15:11:09','2024-11-24 14:11:09','',447,'https://haikuatelier.com/app/uploads/2024/11/IMG_1473.jpg',0,'attachment','image/jpeg',0), -(831,1,'2024-11-24 15:13:27','2024-11-24 14:13:27','','BoroBoro bead earrings','','inherit','closed','closed','','img_1524','','','2024-11-24 15:13:44','2024-11-24 14:13:44','',521,'https://haikuatelier.com/app/uploads/2024/11/IMG_1524.jpg',0,'attachment','image/jpeg',0), -(832,1,'2024-11-24 15:14:54','2024-11-24 14:14:54','','BoroBoro bead earrings','','inherit','closed','closed','','img_1525','','','2024-11-24 15:15:08','2024-11-24 14:15:08','',515,'https://haikuatelier.com/app/uploads/2024/11/IMG_1525.jpg',0,'attachment','image/jpeg',0), -(833,1,'2024-11-24 15:16:47','2024-11-24 14:16:47','','Mugura solo hoop','','inherit','closed','closed','','sony-dsc-61','','','2025-06-17 08:27:38','2025-06-17 06:27:38','',496,'https://haikuatelier.com/app/uploads/2024/11/KAGUN-CR1.jpg',0,'attachment','image/jpeg',0), -(834,1,'2024-11-24 15:19:36','2024-11-24 14:19:36','','Kara textured hoops gold plated','','inherit','closed','closed','','sony-dsc-69','','','2024-11-24 15:19:54','2024-11-24 14:19:54','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g.jpg',0,'attachment','image/jpeg',0), -(835,1,'2024-11-24 15:21:03','2024-11-24 14:21:03','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-70','','','2024-11-24 15:21:25','2024-11-24 14:21:25','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s.jpg',0,'attachment','image/jpeg',0), -(836,1,'2024-11-24 15:24:19','2024-11-24 14:24:19','','Kara ear cuff gold plated','','inherit','closed','closed','','sony-dsc-54','','','2024-11-24 15:24:36','2024-11-24 14:24:36','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-vrm.jpg',0,'attachment','image/jpeg',0), -(839,1,'2024-11-25 09:11:59','2024-11-25 08:11:59','','Fuyou bracelet silver','','inherit','closed','closed','','_dsc9242','','','2024-11-25 09:12:22','2024-11-25 08:12:22','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9242.jpg',0,'attachment','image/jpeg',0), -(840,1,'2024-11-25 09:19:54','2024-11-25 08:19:54','','Fuyou bracelet silver','','inherit','closed','closed','','_dsc9237','','','2024-11-25 09:20:06','2024-11-25 08:20:06','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9237.jpg',0,'attachment','image/jpeg',0), -(845,1,'2024-11-25 09:44:31','2024-11-25 08:44:31','','Rokku Hoop silver - Lapis Lazuli','Stone: Lapis Lazuli','trash','closed','closed','','rokku-hoop-silver-lapis-lazuli__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',430,'https://haikuatelier.com/?post_type=product_variation&p=845',2,'product_variation','',0), -(846,1,'2024-11-25 09:44:31','2024-11-25 08:44:31','','Rokku Hoop silver - Malachite','Stone: Malachite','trash','closed','closed','','rokku-hoop-silver-malachite__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',430,'https://haikuatelier.com/?post_type=product_variation&p=846',3,'product_variation','',0), -(847,1,'2024-11-25 09:44:31','2024-11-25 08:44:31','','Rokku Hoop silver - Tiger\'s Eye','Stone: Tiger\'s Eye','trash','closed','closed','','rokku-hoop-silver-tigers-eye__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',430,'https://haikuatelier.com/?post_type=product_variation&p=847',1,'product_variation','',0), -(851,1,'2024-11-25 16:26:31','2024-11-25 15:26:31','','NEWSHOP20','Code promo pour l\'ouverture du site.','publish','closed','closed','','newshop20','','','2024-12-04 00:23:03','2024-12-03 23:23:03','',0,'https://haikuatelier.com/?post_type=shop_coupon&p=851',0,'shop_coupon','',0), -(861,1,'2024-11-28 16:21:17','2024-11-28 15:21:17','','','','draft','closed','closed','','','','','2024-11-28 16:21:17','2024-11-28 15:21:17','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=861',0,'shop_order_placehold','',3), -(862,1,'2024-11-28 16:40:46','2024-11-28 15:40:46','','','','draft','closed','closed','','','','','2024-11-28 16:40:46','2024-11-28 15:40:46','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=862',0,'shop_order_placehold','',1), -(866,1,'2024-11-29 10:05:49','2024-11-29 09:05:49','','','','draft','closed','closed','','','','','2024-11-29 10:05:49','2024-11-29 09:05:49','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=866',0,'shop_order_placehold','',1), -(867,1,'2024-11-29 10:30:23','2024-11-29 09:30:23','','','','draft','closed','closed','','','','','2024-11-29 10:30:23','2024-11-29 09:30:23','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=867',0,'shop_order_placehold','',0), -(868,1,'2024-11-29 18:22:16','2024-11-29 17:22:16','','','','draft','closed','closed','','','','','2024-11-29 18:22:16','2024-11-29 17:22:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=868',0,'shop_order_placehold','',1), -(869,1,'2024-12-02 11:05:43','2024-12-02 10:05:43','','','','draft','closed','closed','','','','','2024-12-02 11:05:43','2024-12-02 10:05:43','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=869',0,'shop_order_placehold','',1), -(870,1,'2024-12-02 11:46:48','2024-12-02 10:46:48','','','','draft','closed','closed','','','','','2024-12-02 11:46:48','2024-12-02 10:46:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=870',0,'shop_order_placehold','',0), -(871,1,'2024-12-02 17:33:11','2024-12-02 16:33:11','','','','draft','closed','closed','','','','','2024-12-02 17:33:11','2024-12-02 16:33:11','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=871',0,'shop_order_placehold','',1), -(872,1,'2024-12-03 18:03:18','2024-12-03 17:03:18','','','','draft','closed','closed','','','','','2024-12-03 18:03:18','2024-12-03 17:03:18','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=872',0,'shop_order_placehold','',1), -(873,1,'2024-12-03 23:53:41','2024-12-03 22:53:41','','','','draft','closed','closed','','','','','2024-12-03 23:53:41','2024-12-03 22:53:41','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=873',0,'shop_order_placehold','',1), -(876,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=876',0,'shop_order_placehold','',0), -(877,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=877',0,'shop_order_placehold','',0), -(878,1,'2024-12-06 14:08:34','2024-12-06 13:08:34','','','','draft','closed','closed','','','','','2024-12-06 14:08:34','2024-12-06 13:08:34','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=878',0,'shop_order_placehold','',3), -(879,1,'2024-12-06 15:04:22','2024-12-06 14:04:22','','','','draft','closed','closed','','','','','2024-12-06 15:04:22','2024-12-06 14:04:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=879',0,'shop_order_placehold','',2), -(880,1,'2024-12-12 17:55:38','2024-12-12 16:55:38','','','','draft','closed','closed','','','','','2024-12-12 17:55:38','2024-12-12 16:55:38','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=880',0,'shop_order_placehold','',3), -(881,1,'2024-12-13 09:37:26','2024-12-13 08:37:26','','','','draft','closed','closed','','','','','2024-12-13 09:37:26','2024-12-13 08:37:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=881',0,'shop_order_placehold','',2), -(884,1,'2024-12-14 11:10:01','2024-12-14 10:10:01','','','','draft','closed','closed','','','','','2024-12-14 11:10:01','2024-12-14 10:10:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=884',0,'shop_order_placehold','',3), -(885,1,'2024-12-16 10:16:07','2024-12-16 09:16:07','','','','draft','closed','closed','','','','','2024-12-16 10:16:07','2024-12-16 09:16:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=885',0,'shop_order_placehold','',2), -(886,1,'2024-12-17 09:40:04','2024-12-17 08:40:04','','','','draft','closed','closed','','','','','2024-12-17 09:40:04','2024-12-17 08:40:04','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=886',0,'shop_order_placehold','',2), -(887,1,'2024-12-18 16:13:28','2024-12-18 15:13:28','','','','draft','closed','closed','','','','','2024-12-18 16:13:28','2024-12-18 15:13:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=887',0,'shop_order_placehold','',2), -(888,1,'2024-12-19 10:08:20','2024-12-19 09:08:20','','','','draft','closed','closed','','','','','2024-12-19 10:08:20','2024-12-19 09:08:20','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=888',0,'shop_order_placehold','',2), -(889,1,'2024-12-26 13:37:45','2024-12-26 12:37:45','','','','draft','closed','closed','','','','','2024-12-26 13:37:45','2024-12-26 12:37:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=889',0,'shop_order_placehold','',2), -(890,1,'2024-12-29 15:53:20','2024-12-29 14:53:20','','','','draft','closed','closed','','','','','2024-12-29 15:53:20','2024-12-29 14:53:20','',888,'https://haikuatelier.com/?post_type=shop_order_placehold&p=890',0,'shop_order_placehold','',0), -(891,1,'2024-12-30 11:40:43','2024-12-30 10:40:43','','','','draft','closed','closed','','','','','2024-12-30 11:40:43','2024-12-30 10:40:43','',880,'https://haikuatelier.com/?post_type=shop_order_placehold&p=891',0,'shop_order_placehold','',0), -(892,1,'2024-12-30 19:59:22','2024-12-30 18:59:22','','','','draft','closed','closed','','','','','2024-12-30 19:59:22','2024-12-30 18:59:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=892',0,'shop_order_placehold','',0), -(893,1,'2025-01-03 09:10:31','2025-01-03 08:10:31','','','','draft','closed','closed','','','','','2025-01-03 09:10:31','2025-01-03 08:10:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=893',0,'shop_order_placehold','',0), -(894,1,'2025-01-03 10:04:01','2025-01-03 09:04:01','','','','draft','closed','closed','','','','','2025-01-03 10:04:01','2025-01-03 09:04:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=894',0,'shop_order_placehold','',2), -(895,1,'2025-01-09 13:01:26','2025-01-09 12:01:26','','','','draft','closed','closed','','','','','2025-01-09 13:01:26','2025-01-09 12:01:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=895',0,'shop_order_placehold','',2), -(896,1,'2025-01-23 22:51:50','2025-01-23 21:51:50','','','','draft','closed','closed','','','','','2025-01-23 22:51:50','2025-01-23 21:51:50','',884,'https://haikuatelier.com/?post_type=shop_order_placehold&p=896',0,'shop_order_placehold','',0), -(897,1,'2025-01-29 11:32:07','2025-01-29 10:32:07','','','','draft','closed','closed','','','','','2025-01-29 11:32:07','2025-01-29 10:32:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=897',0,'shop_order_placehold','',2), -(898,1,'2025-01-30 09:55:09','2025-01-30 08:55:09','','','','draft','closed','closed','','','','','2025-01-30 09:55:09','2025-01-30 08:55:09','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=898',0,'shop_order_placehold','',0), -(899,1,'2025-01-30 09:57:12','2025-01-30 08:57:12','','','','draft','closed','closed','','','','','2025-01-30 09:57:12','2025-01-30 08:57:12','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=899',0,'shop_order_placehold','',2), -(900,1,'2025-02-21 20:32:16','2025-02-21 19:32:16','','','','draft','closed','closed','','','','','2025-02-21 20:32:16','2025-02-21 19:32:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=900',0,'shop_order_placehold','',0), -(901,1,'2025-02-23 18:08:07','2025-02-23 17:08:07','','','','draft','closed','closed','','','','','2025-02-23 18:08:07','2025-02-23 17:08:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=901',0,'shop_order_placehold','',1), -(902,1,'2025-02-26 13:51:14','2025-02-26 12:51:14','','','','draft','closed','closed','','','','','2025-02-26 13:51:14','2025-02-26 12:51:14','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=902',0,'shop_order_placehold','',0), -(903,1,'2025-02-26 13:51:16','2025-02-26 12:51:16','','','','draft','closed','closed','','','','','2025-02-26 13:51:16','2025-02-26 12:51:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=903',0,'shop_order_placehold','',2), -(904,1,'2025-03-03 08:31:50','2025-03-03 07:31:50','','','','draft','closed','closed','','','','','2025-03-03 08:31:50','2025-03-03 07:31:50','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=904',0,'shop_order_placehold','',0), -(905,1,'2025-03-03 11:45:26','2025-03-03 10:45:26','','','','draft','closed','closed','','','','','2025-03-03 11:45:26','2025-03-03 10:45:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=905',0,'shop_order_placehold','',2), -(906,1,'2025-03-03 12:10:15','2025-03-03 11:10:15','','','','draft','closed','closed','','','','','2025-03-03 12:10:15','2025-03-03 11:10:15','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=906',0,'shop_order_placehold','',2), -(907,1,'2025-03-05 12:04:07','2025-03-05 11:04:07','','','','draft','closed','closed','','','','','2025-03-05 12:04:07','2025-03-05 11:04:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=907',0,'shop_order_placehold','',2), -(908,1,'2025-03-23 22:39:51','2025-03-23 21:39:51','','','','draft','closed','closed','','','','','2025-03-23 22:39:51','2025-03-23 21:39:51','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=908',0,'shop_order_placehold','',2), -(909,1,'2025-04-07 13:50:33','2025-04-07 11:50:33','','','','draft','closed','closed','','','','','2025-04-07 13:50:33','2025-04-07 11:50:33','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=909',0,'shop_order_placehold','',0), -(910,1,'2025-04-08 13:44:22','2025-04-08 11:44:22','','','','draft','closed','closed','','','','','2025-04-08 13:44:22','2025-04-08 11:44:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=910',0,'shop_order_placehold','',2), -(911,1,'2025-05-05 11:14:57','2025-05-05 09:14:57','','','','draft','closed','closed','','','','','2025-05-05 11:14:57','2025-05-05 09:14:57','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=911',0,'shop_order_placehold','',0), -(912,1,'2025-05-09 11:49:40','2025-05-09 09:49:40','','','','draft','closed','closed','','','','','2025-05-09 11:49:40','2025-05-09 09:49:40','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=912',0,'shop_order_placehold','',2), -(913,1,'2025-05-09 17:41:06','2025-05-09 15:41:06','ROKKU: pebble\n\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in some 18K gold.\n
    \n
  • adjustable
  • \n
  • height 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','inherit','closed','closed','','168-autosave-v1','','','2025-05-09 17:41:06','2025-05-09 15:41:06','',168,'https://haikuatelier.com/?p=913',0,'revision','',0), -(919,1,'2025-05-09 21:54:35','2025-05-09 19:54:35','','','','draft','closed','closed','','','','','2025-05-09 21:54:35','2025-05-09 19:54:35','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=919',0,'shop_order_placehold','',0), -(920,1,'2025-05-09 21:56:26','2025-05-09 19:56:26','','','','draft','closed','closed','','','','','2025-05-09 21:56:26','2025-05-09 19:56:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=920',0,'shop_order_placehold','',0), -(921,1,'2025-05-09 21:56:27','2025-05-09 19:56:27','','','','draft','closed','closed','','','','','2025-05-09 21:56:27','2025-05-09 19:56:27','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=921',0,'shop_order_placehold','',2), -(922,1,'2025-05-09 21:56:28','2025-05-09 19:56:28','','','','draft','closed','closed','','','','','2025-05-09 21:56:28','2025-05-09 19:56:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=922',0,'shop_order_placehold','',2), -(923,1,'2025-06-04 13:13:31','2025-06-04 11:13:31','','','','draft','closed','closed','','','','','2025-06-04 13:13:31','2025-06-04 11:13:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=923',0,'shop_order_placehold','',0), -(924,1,'2025-06-05 09:44:45','2025-06-05 07:44:45','','','','draft','closed','closed','','','','','2025-06-05 09:44:45','2025-06-05 07:44:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=924',0,'shop_order_placehold','',2), -(925,1,'2025-06-17 08:02:32','2025-06-17 06:02:32','','BoroBoro silver earrings with honey calcite beads','','inherit','closed','closed','','boro-bo1-arg','','','2025-06-17 08:08:00','2025-06-17 06:08:00','',521,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-arg.jpg',0,'attachment','image/jpeg',0), -(926,1,'2025-06-17 08:09:43','2025-06-17 06:09:43','','BoroBoro Bead Earrings silver - Honey Calcite','Stone: Honey Calcite','publish','closed','closed','','boroboro-bead-earrings-silver-honey-calcite','','','2025-06-17 08:10:30','2025-06-17 06:10:30','',521,'https://haikuatelier.com/?post_type=product_variation&p=926',1,'product_variation','',0), -(927,1,'2025-06-17 08:11:34','2025-06-17 06:11:34','','BoroBoro gold plated earrings with green aventurine beads','','inherit','closed','closed','','boro-bo1-or','','','2025-06-17 08:12:40','2025-06-17 06:12:40','',515,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-or.jpg',0,'attachment','image/jpeg',0), -(928,1,'2025-06-17 08:15:25','2025-06-17 06:15:25','','Mugura trio of stud earrings','','inherit','closed','closed','','mugura-bop','','','2025-06-17 08:16:36','2025-06-17 06:16:36','',342,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-BOP.jpg',0,'attachment','image/jpeg',0), -(929,1,'2025-06-17 08:19:04','2025-06-17 06:19:04','MUGURA: vine\n\nTrio of mismatched stud earrings in sterling silver and gold plated silver, mixing wavy lines and natural grey pearls.\n
    \n
  • wire width 15mm
  • \n
  • chain length 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Trio Stud Earrings','','inherit','closed','closed','','342-autosave-v1','','','2025-06-17 08:19:04','2025-06-17 06:19:04','',342,'https://haikuatelier.com/?p=929',0,'revision','',0), -(930,1,'2025-06-17 08:24:48','2025-06-17 06:24:48','Mugura: vine\n\nSmall solo hoop in sterling silver with a wavy element in gold plated silver dangling.\n
    \n
  • hoop diameter 13mm
  • \n
  • total height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our jewelry are made in 80% recycled silver and 24K gold plated silver.','Mugura Solo Hoop','','inherit','closed','closed','','496-autosave-v1','','','2025-06-17 08:24:48','2025-06-17 06:24:48','',496,'https://haikuatelier.com/?p=930',0,'revision','',0), -(931,1,'2025-06-17 08:32:35','2025-06-17 06:32:35','','Mugura hoops gold plated','','inherit','closed','closed','','mugura-cr2-g','','','2025-06-17 08:34:26','2025-06-17 06:34:26','',398,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-g.jpg',0,'attachment','image/jpeg',0), -(932,1,'2025-06-17 08:34:07','2025-06-17 06:34:07','','Mugura hoops silver','','inherit','closed','closed','','mugura-cr2-s','','','2025-06-17 08:34:59','2025-06-17 06:34:59','',393,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-s.jpg',0,'attachment','image/jpeg',0), -(933,1,'2025-06-17 09:45:36','2025-06-17 07:45:36','Hadou : wave\n\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\n
    \n
  • height 1cm
  • \n
  • wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','inherit','closed','closed','','490-autosave-v1','','','2025-06-17 09:45:36','2025-06-17 07:45:36','',490,'https://haikuatelier.com/?p=933',0,'revision','',0), -(934,1,'2025-06-17 09:45:51','2025-06-17 07:45:51','','Hadou stud earrings','','inherit','closed','closed','','hadou-bop-1','','','2025-06-17 09:46:12','2025-06-17 07:46:12','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP-1.jpg',0,'attachment','image/jpeg',0), -(935,1,'2025-06-17 09:57:48','2025-06-17 07:57:48','','Kara textured hoops silver','','inherit','closed','closed','','kara-cr-s','','','2025-06-17 09:58:04','2025-06-17 07:58:04','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s-1.jpg',0,'attachment','image/jpeg',0), -(936,1,'2025-06-17 10:18:41','2025-06-17 08:18:41','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-7','','','2025-06-17 10:20:11','2025-06-17 08:20:11','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00650.jpg',0,'attachment','image/jpeg',0), -(937,1,'2025-06-17 10:20:05','2025-06-17 08:20:05','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-8','','','2025-06-17 10:20:28','2025-06-17 08:20:28','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00655.jpg',0,'attachment','image/jpeg',0), -(938,1,'2025-06-17 10:22:41','2025-06-17 08:22:41','','Kara textured hoops gold plated','','inherit','closed','closed','','kara-cr-g','','','2025-06-17 10:22:58','2025-06-17 08:22:58','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g-1.jpg',0,'attachment','image/jpeg',0), -(939,1,'2025-06-17 10:27:02','2025-06-17 08:27:02','','Kara ear cuff gold plated','','inherit','closed','closed','','kara-ec-g','','','2025-06-17 10:27:19','2025-06-17 08:27:19','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-g.jpg',0,'attachment','image/jpeg',0), -(940,1,'2025-06-17 10:28:05','2025-06-17 08:28:05','','Kara ear cuff silver','','inherit','closed','closed','','kara-ec-s','','','2025-06-17 10:28:36','2025-06-17 08:28:36','',435,'https://haikuatelier.com/app/uploads/2024/10/KARA-EC-s.jpg',0,'attachment','image/jpeg',0), -(941,1,'2025-06-20 19:22:20','2025-06-20 17:22:20','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Ring silver','','publish','closed','closed','','uteki-ring-silver','','','2025-06-20 19:22:20','2025-06-20 17:22:20','',0,'https://haikuatelier.com/?post_type=product&p=941',0,'product','',0), -(943,1,'2025-06-18 19:31:49','2025-06-18 17:31:49','','Uteki ring in silver','','inherit','closed','closed','','sony-dsc-13','','','2025-06-18 19:32:06','2025-06-18 17:32:06','',941,'https://haikuatelier.com/app/uploads/2025/06/DSC00671.jpg',0,'attachment','image/jpeg',0), -(944,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-50','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=944',1,'product_variation','',0), -(945,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-52','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=945',2,'product_variation','',0), -(946,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-54','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=946',3,'product_variation','',0), -(947,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-56','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=947',4,'product_variation','',0), -(948,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-58','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=948',5,'product_variation','',0), -(949,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-60','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=949',6,'product_variation','',0), -(950,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-62','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=950',7,'product_variation','',0), -(951,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-64','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=951',8,'product_variation','',0), -(952,1,'2025-06-18 22:16:56','2025-06-18 20:16:56','','Uteki ring in silver','','inherit','closed','closed','','uteki-b-s-2','','','2025-06-20 19:02:08','2025-06-20 17:02:08','',941,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-B-s-1.jpg',0,'attachment','image/jpeg',0), -(953,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in gold plated sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\r\n\r\n','Uteki Ring gold plated','','publish','closed','closed','','uteki-ring-gold-plated','','','2025-06-20 19:21:04','2025-06-20 17:21:04','',0,'https://haikuatelier.com/?post_type=product&p=953',0,'product','',0), -(954,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-65','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=954',1,'product_variation','',0), -(955,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-66','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=955',2,'product_variation','',0), -(956,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-67','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=956',3,'product_variation','',0), -(957,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-68','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=957',4,'product_variation','',0), -(958,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-69','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=958',5,'product_variation','',0), -(959,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-70','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=959',6,'product_variation','',0), -(960,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-71','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=960',7,'product_variation','',0), -(961,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-72','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=961',8,'product_variation','',0), -(962,1,'2025-06-18 22:20:23','2025-06-18 20:20:23','','Uteki ring in gold plated','','inherit','closed','closed','','uteki-b-g','','','2025-06-18 22:22:37','2025-06-18 20:22:37','',953,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-B-g.jpg',0,'attachment','image/jpeg',0), -(963,1,'2025-06-18 22:23:24','2025-06-18 20:23:24','','Uteki ring in gold plated','','inherit','closed','closed','','sony-dsc-14','','','2025-06-18 22:23:44','2025-06-18 20:23:44','',953,'https://haikuatelier.com/app/uploads/2025/06/DSC00670.jpg',0,'attachment','image/jpeg',0), -(964,1,'2025-06-18 22:33:23','2025-06-18 20:33:23','BOROBORO: the sound of something crumbling \n\nLong asymmetrical earrings with oval shapes made of gold plated silver.\n
    \n
  • wire diameter 12mm
  • \n
  • height 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings gold plated','','inherit','closed','closed','','213-autosave-v1','','','2025-06-18 22:33:23','2025-06-18 20:33:23','',213,'https://haikuatelier.com/?p=964',0,'revision','',0), -(965,1,'2025-06-18 22:35:38','2025-06-18 20:35:38','','BoroBoro asymmetrical earrings gold plated','','inherit','closed','closed','','boroboro-bo2-g','','','2025-06-18 22:36:05','2025-06-18 20:36:05','',213,'https://haikuatelier.com/app/uploads/2024/10/BOROBORO-BO2-g.jpg',0,'attachment','image/jpeg',0), -(966,1,'2025-06-18 22:37:22','2025-06-18 20:37:22','','BoroBoro asymmetrical earrings gold plated','','inherit','closed','closed','','boroboro-bo2-s','','','2025-06-18 22:37:52','2025-06-18 20:37:52','',183,'https://haikuatelier.com/app/uploads/2024/10/BOROBORO-BO2-s.jpg',0,'attachment','image/jpeg',0), -(967,1,'2025-06-18 22:38:10','2025-06-18 20:38:10','BOROBORO: the sound of something crumbling \n\nLong asymmetrical earrings with oval shapes made of sterling silver.\n
    \n
  • wire diameter 12mm
  • \n
  • height 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','inherit','closed','closed','','183-autosave-v1','','','2025-06-18 22:38:10','2025-06-18 20:38:10','',183,'https://haikuatelier.com/?p=967',0,'revision','',0), -(968,1,'2025-06-18 22:43:11','2025-06-18 20:43:11','','Piasu ring in silver','','inherit','closed','closed','','piasu-b-s','','','2025-06-18 22:43:41','2025-06-18 20:43:41','',123,'https://haikuatelier.com/app/uploads/2024/09/PIASU-B-s.jpg',0,'attachment','image/jpeg',0), -(969,1,'2025-06-18 22:47:21','2025-06-18 20:47:21','','Tanemaki necklace mixing chains and pearls','','inherit','closed','closed','','sony-dsc-5','','','2025-06-18 22:48:05','2025-06-18 20:48:05','',271,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-C-1.jpg',0,'attachment','image/jpeg',0), -(970,1,'2025-06-18 22:47:53','2025-06-18 20:47:53','TANEMAKI : seeding\n\nA necklace composed of a fluid center element with dark grey fresh water pearls on one side, and a mix of sterling silver and gold plated chains on the other side.\n
    \n
  • length 50cm to 55cm
  • \n
  • center element caliber 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Tanemaki Necklace','','inherit','closed','closed','','271-autosave-v1','','','2025-06-18 22:47:53','2025-06-18 20:47:53','',271,'https://haikuatelier.com/?p=970',0,'revision','',0), -(971,1,'2025-06-19 16:19:33','2025-06-19 14:19:33','BOROBORO: the sound of something crumbling\n\nMinimalist sterling silver ring composed of a thick round band and a movable tiger\'s eye bead.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring silver','','inherit','closed','closed','','625-autosave-v1','','','2025-06-19 16:19:33','2025-06-19 14:19:33','',625,'https://haikuatelier.com/?p=971',0,'revision','',0), -(972,1,'2025-06-19 16:19:34','2025-06-19 14:19:34','BOROBORO: the sound of something crumbling\n\nMinimalist gold plated ring composed of a thick round band and a movable green aventurine bead.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring gold plated','','inherit','closed','closed','','613-autosave-v1','','','2025-06-19 16:19:34','2025-06-19 14:19:34','',613,'https://haikuatelier.com/?p=972',0,'revision','',0), -(975,1,'2025-06-19 16:20:01','2025-06-19 14:20:01','HATTARI: bluff\n\nA bangle bracelet composed of a wide asymmetrical band in sterling silver, and a round wire in gold plated silver crossing it.\n
    \n
  • adjustable
  • \n
  • band width 2cm and wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Hattari Cuff','','inherit','closed','closed','','610-autosave-v1','','','2025-06-19 16:20:01','2025-06-19 14:20:01','',610,'https://haikuatelier.com/?p=975',0,'revision','',0), -(976,1,'2025-06-19 16:20:02','2025-06-19 14:20:02','KARA: hull, shell\n\nSmall textured gold plated silver hoops.\n
    \n
  • 1cm diameter
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','inherit','closed','closed','','545-autosave-v1','','','2025-06-19 16:20:02','2025-06-19 14:20:02','',545,'https://haikuatelier.com/?p=976',0,'revision','',0), -(977,1,'2025-06-19 16:20:10','2025-06-19 14:20:10','KARA: hull, shell\n\nTextured ear cuff in sterling gold plated silver.\n
    \n
  • width 0,5cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','inherit','closed','closed','','447-autosave-v1','','','2025-06-19 16:20:10','2025-06-19 14:20:10','',447,'https://haikuatelier.com/?p=977',0,'revision','',0), -(978,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','MUGURA: vine\n\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\n
    \n
  • wire thickness 2mm
  • \n
  • total diametre 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops gold plated','','inherit','closed','closed','','398-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',398,'https://haikuatelier.com/?p=978',0,'revision','',0), -(979,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','MUGURA: vine\n\nMinimalist hoop earrings with thin ends going up on the lobes. In sterling silver.\n
    \n
  • wire thickness 2mm
  • \n
  • total diameter 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops silver','','inherit','closed','closed','','393-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',393,'https://haikuatelier.com/?p=979',0,'revision','',0), -(980,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','ROKKU: pebble\n\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\n
    \n
  • total chain length 50cm
  • \n
  • pendant height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','inherit','closed','closed','','385-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',385,'https://haikuatelier.com/?p=980',0,'revision','',0), -(981,1,'2025-06-20 12:13:00','2025-06-20 10:13:00','','','','draft','closed','closed','','','','','2025-06-20 12:13:00','2025-06-20 10:13:00','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=981',0,'shop_order_placehold','',0), -(982,1,'2025-06-20 18:59:01','2025-06-20 16:59:01','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. Made in sterling silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace silver','','publish','closed','closed','','uteki-necklace-silver','','','2025-06-20 19:25:14','2025-06-20 17:25:14','',0,'https://haikuatelier.com/?post_type=product&p=982',0,'product','',0), -(991,1,'2025-06-20 19:00:59','2025-06-20 17:00:59','','Uteki necklace in silver','','inherit','closed','closed','','uteki-c-s','','','2025-06-20 19:02:09','2025-06-20 17:02:09','',982,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-s.jpg',0,'attachment','image/jpeg',0), -(992,1,'2025-06-20 19:05:42','2025-06-20 17:05:42','','Uteki necklaces','','inherit','closed','closed','','dsc00689','','','2025-06-20 19:06:07','2025-06-20 17:06:07','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00689.jpg',0,'attachment','image/jpeg',0), -(993,1,'2025-06-20 19:06:23','2025-06-20 17:06:23','','Uteki necklace in sterling silver','','inherit','closed','closed','','sony-dsc-10','','','2025-06-20 19:10:44','2025-06-20 17:10:44','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00684.jpg',0,'attachment','image/jpeg',0), -(994,1,'2025-06-20 19:07:53','2025-06-20 17:07:53','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. In gold plated silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace gold plated','','publish','closed','closed','','uteki-necklace-gold-plated','','','2025-06-20 19:24:13','2025-06-20 17:24:13','',0,'https://haikuatelier.com/?post_type=product&p=994',0,'product','',0), -(995,1,'2025-06-20 19:08:41','2025-06-20 17:08:41','','Uteki necklace gold plated','','inherit','closed','closed','','uteki-c-g','','','2025-06-20 19:09:10','2025-06-20 17:09:10','',994,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-g.jpg',0,'attachment','image/jpeg',0), -(996,1,'2025-06-20 19:09:52','2025-06-20 17:09:52','','Uteki necklace in gold plated silver','','inherit','closed','closed','','sony-dsc-19','','','2025-06-20 19:10:52','2025-06-20 17:10:52','',994,'https://haikuatelier.com/app/uploads/2025/06/DSC00699.jpg',0,'attachment','image/jpeg',0), -(997,1,'2025-06-21 11:54:31','2025-06-21 09:54:31','','','','draft','closed','closed','','','','','2025-06-21 11:54:31','2025-06-21 09:54:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=997',0,'shop_order_placehold','',1), -(998,1,'2025-06-21 14:43:50','2025-06-21 12:43:50','','','','draft','closed','closed','','','','','2025-06-21 14:43:50','2025-06-21 12:43:50','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=998',0,'shop_order_placehold','',0), -(999,1,'2025-06-21 14:54:52','2025-06-21 12:54:52','','','','draft','closed','closed','','','','','2025-06-21 14:54:52','2025-06-21 12:54:52','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=999',0,'shop_order_placehold','',0), -(1000,1,'2025-06-21 14:58:23','2025-06-21 12:58:23','','','','draft','closed','closed','','','','','2025-06-21 14:58:23','2025-06-21 12:58:23','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1000',0,'shop_order_placehold','',0); -/*!40000 ALTER TABLE `haikuwp_posts` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_term_relationships` --- - -DROP TABLE IF EXISTS `haikuwp_term_relationships`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_term_relationships` ( - `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_order` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`object_id`,`term_taxonomy_id`), - KEY `term_taxonomy_id` (`term_taxonomy_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_term_relationships` --- - -LOCK TABLES `haikuwp_term_relationships` WRITE; -/*!40000 ALTER TABLE `haikuwp_term_relationships` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_term_relationships` VALUES -(1,1,0), -(1,17,0), -(1,18,0), -(13,16,0), -(13,23,0), -(14,16,0), -(14,24,0), -(15,16,0), -(15,25,0), -(16,16,0), -(16,26,0), -(17,16,0), -(17,27,0), -(18,16,0), -(18,28,0), -(19,16,0), -(19,29,0), -(72,4,0), -(72,31,0), -(72,36,0), -(72,37,0), -(72,38,0), -(72,39,0), -(72,40,0), -(72,41,0), -(72,42,0), -(72,43,0), -(72,44,0), -(102,4,0), -(102,31,0), -(102,37,0), -(102,38,0), -(102,39,0), -(102,40,0), -(102,41,0), -(102,42,0), -(102,43,0), -(102,44,0), -(102,51,0), -(113,4,0), -(113,31,0), -(113,37,0), -(113,38,0), -(113,39,0), -(113,40,0), -(113,41,0), -(113,42,0), -(113,43,0), -(113,44,0), -(113,51,0), -(123,4,0), -(123,31,0), -(123,37,0), -(123,38,0), -(123,39,0), -(123,40,0), -(123,41,0), -(123,42,0), -(123,43,0), -(123,44,0), -(123,56,0), -(133,4,0), -(133,31,0), -(133,37,0), -(133,38,0), -(133,39,0), -(133,40,0), -(133,41,0), -(133,42,0), -(133,43,0), -(133,44,0), -(133,52,0), -(144,4,0), -(144,31,0), -(144,37,0), -(144,38,0), -(144,39,0), -(144,40,0), -(144,41,0), -(144,42,0), -(144,43,0), -(144,44,0), -(144,53,0), -(155,4,0), -(155,31,0), -(155,37,0), -(155,38,0), -(155,39,0), -(155,40,0), -(155,41,0), -(155,42,0), -(155,43,0), -(155,44,0), -(155,53,0), -(168,4,0), -(168,31,0), -(168,48,0), -(168,49,0), -(168,54,0), -(183,4,0), -(183,30,0), -(183,45,0), -(183,55,0), -(183,71,0), -(183,72,0), -(202,4,0), -(202,30,0), -(202,45,0), -(202,56,0), -(202,77,0), -(202,78,0), -(213,4,0), -(213,30,0), -(213,45,0), -(213,55,0), -(213,71,0), -(213,72,0), -(240,4,0), -(240,33,0), -(240,51,0), -(240,58,0), -(240,59,0), -(246,4,0), -(246,33,0), -(246,51,0), -(246,58,0), -(246,59,0), -(251,2,0), -(251,33,0), -(251,60,0), -(258,2,0), -(258,33,0), -(258,61,0), -(261,2,0), -(261,33,0), -(261,61,0), -(263,2,0), -(263,32,0), -(263,51,0), -(268,2,0), -(268,32,0), -(268,56,0), -(271,2,0), -(271,32,0), -(271,60,0), -(274,2,0), -(274,32,0), -(274,61,0), -(285,4,0), -(285,30,0), -(285,45,0), -(285,50,0), -(285,77,0), -(285,78,0), -(288,4,0), -(288,30,0), -(288,45,0), -(288,50,0), -(288,77,0), -(288,78,0), -(306,4,0), -(306,30,0), -(306,45,0), -(306,57,0), -(306,62,0), -(306,64,0), -(312,4,0), -(312,30,0), -(312,45,0), -(312,57,0), -(312,62,0), -(312,64,0), -(318,2,0), -(318,30,0), -(318,61,0), -(325,2,0), -(325,30,0), -(325,36,0), -(328,2,0), -(328,30,0), -(328,36,0), -(338,2,0), -(338,15,0), -(338,56,0), -(342,4,0), -(342,30,0), -(342,62,0), -(342,63,0), -(342,64,0), -(342,65,0), -(342,76,0), -(385,4,0), -(385,32,0), -(385,48,0), -(385,54,0), -(385,68,0), -(385,69,0), -(393,2,0), -(393,30,0), -(393,45,0), -(393,66,0), -(393,67,0), -(398,2,0), -(398,30,0), -(398,45,0), -(398,66,0), -(398,67,0), -(430,4,0), -(430,30,0), -(430,48,0), -(430,49,0), -(430,54,0), -(430,68,0), -(433,4,0), -(433,30,0), -(433,48,0), -(433,49,0), -(433,54,0), -(433,68,0), -(435,2,0), -(435,30,0), -(435,52,0), -(447,2,0), -(447,30,0), -(447,52,0), -(490,4,0), -(490,30,0), -(490,36,0), -(490,45,0), -(490,77,0), -(490,78,0), -(496,2,0), -(496,30,0), -(496,65,0), -(515,2,0), -(515,30,0), -(515,48,0), -(515,55,0), -(515,73,0), -(521,4,0), -(521,30,0), -(521,48,0), -(521,55,0), -(521,79,0), -(535,4,0), -(535,15,0), -(535,55,0), -(535,74,0), -(535,75,0), -(545,4,0), -(545,30,0), -(545,45,0), -(545,52,0), -(545,66,0), -(554,4,0), -(554,30,0), -(554,45,0), -(554,52,0), -(554,66,0), -(610,2,0), -(610,33,0), -(610,50,0), -(613,4,0), -(613,31,0), -(613,37,0), -(613,38,0), -(613,39,0), -(613,40,0), -(613,41,0), -(613,42,0), -(613,43,0), -(613,44,0), -(613,55,0), -(625,4,0), -(625,31,0), -(625,37,0), -(625,38,0), -(625,39,0), -(625,40,0), -(625,41,0), -(625,42,0), -(625,43,0), -(625,44,0), -(625,55,0), -(766,4,0), -(766,30,0), -(766,45,0), -(766,61,0), -(766,62,0), -(766,63,0), -(941,4,0), -(941,31,0), -(941,37,0), -(941,38,0), -(941,39,0), -(941,40,0), -(941,41,0), -(941,42,0), -(941,43,0), -(941,44,0), -(941,80,0), -(941,81,0), -(953,4,0), -(953,31,0), -(953,37,0), -(953,38,0), -(953,39,0), -(953,40,0), -(953,41,0), -(953,42,0), -(953,43,0), -(953,44,0), -(953,80,0), -(982,2,0), -(982,32,0), -(982,37,0), -(982,38,0), -(982,39,0), -(982,40,0), -(982,41,0), -(982,42,0), -(982,43,0), -(982,44,0), -(982,80,0), -(994,2,0), -(994,32,0), -(994,37,0), -(994,38,0), -(994,39,0), -(994,40,0), -(994,41,0), -(994,42,0), -(994,43,0), -(994,44,0), -(994,80,0); -/*!40000 ALTER TABLE `haikuwp_term_relationships` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_term_taxonomy` --- - -DROP TABLE IF EXISTS `haikuwp_term_taxonomy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_term_taxonomy` ( - `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `taxonomy` varchar(32) NOT NULL DEFAULT '', - `description` longtext NOT NULL, - `parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_taxonomy_id`), - UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), - KEY `taxonomy` (`taxonomy`) -) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_term_taxonomy` --- - -LOCK TABLES `haikuwp_term_taxonomy` WRITE; -/*!40000 ALTER TABLE `haikuwp_term_taxonomy` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_term_taxonomy` VALUES -(1,1,'category','',0,1), -(2,2,'product_type','',0,20), -(3,3,'product_type','',0,0), -(4,4,'product_type','',0,25), -(5,5,'product_type','',0,0), -(6,6,'product_visibility','',0,0), -(7,7,'product_visibility','',0,0), -(8,8,'product_visibility','',0,0), -(9,9,'product_visibility','',0,0), -(10,10,'product_visibility','',0,0), -(11,11,'product_visibility','',0,0), -(12,12,'product_visibility','',0,0), -(13,13,'product_visibility','',0,0), -(14,14,'product_visibility','',0,0), -(15,15,'product_cat','',0,1), -(16,16,'language','a:3:{s:6:\"locale\";s:5:\"en_GB\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"gb\";}',0,7), -(17,17,'term_language','',0,1), -(21,21,'category','',0,0), -(30,30,'product_cat','',0,22), -(31,31,'product_cat','',0,10), -(32,32,'product_cat','',0,7), -(33,33,'product_cat','',0,5), -(36,36,'collection','',0,4), -(37,37,'pa_size','',0,11), -(38,38,'pa_size','',0,11), -(39,39,'pa_size','',0,11), -(40,40,'pa_size','',0,11), -(41,41,'pa_size','',0,11), -(42,42,'pa_size','',0,11), -(43,43,'pa_size','',0,11), -(44,44,'pa_size','',0,11), -(45,45,'pa_side','',0,13), -(48,48,'pa_stone','',0,4), -(49,49,'pa_stone','',0,1), -(50,50,'collection','',0,3), -(51,51,'collection','',0,4), -(52,52,'collection','',0,5), -(53,53,'collection','',0,0), -(54,54,'collection','',0,2), -(55,55,'collection','',0,6), -(56,56,'collection','',0,4), -(57,57,'collection','',0,2), -(58,58,'pa_size','',0,1), -(59,59,'pa_size','',0,1), -(60,60,'collection','',0,2), -(61,61,'collection','',0,5), -(62,62,'pa_side','',0,4), -(63,63,'pa_side','',0,2), -(64,64,'pa_side','',0,3), -(65,65,'collection','',0,2), -(66,66,'pa_side','',0,4), -(67,67,'collection','',0,2), -(68,68,'pa_stone','',0,1), -(69,69,'pa_stone','',0,1), -(70,70,'pa_stone','',0,0), -(71,71,'pa_side','',0,2), -(72,72,'pa_side','',0,2), -(73,73,'pa_stone','',0,1), -(74,74,'pa_stone','',0,0), -(75,75,'pa_stone','',0,0), -(76,76,'pa_side','',0,1), -(77,77,'pa_side','',0,4), -(78,78,'pa_side','',0,4), -(79,79,'pa_stone','',0,1), -(80,80,'collection','',0,4), -(81,81,'product_tag','',0,1); -/*!40000 ALTER TABLE `haikuwp_term_taxonomy` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_termmeta` --- - -DROP TABLE IF EXISTS `haikuwp_termmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_termmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `term_id` (`term_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_termmeta` --- - -LOCK TABLES `haikuwp_termmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_termmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_termmeta` VALUES -(1,16,'_pll_strings_translations','a:2:{i:0;a:2:{i:0;s:5:\"Y-m-d\";i:1;s:5:\"Y-m-d\";}i:1;a:2:{i:0;s:3:\"H:i\";i:1;s:3:\"H:i\";}}'), -(3,15,'display_type',''), -(4,15,'thumbnail_id','0'), -(5,30,'order','1'), -(6,30,'display_type',''), -(7,30,'thumbnail_id','0'), -(8,31,'order','2'), -(9,31,'display_type',''), -(10,31,'thumbnail_id','0'), -(11,32,'order','3'), -(12,32,'display_type',''), -(13,32,'thumbnail_id','0'), -(14,33,'order','4'), -(15,33,'display_type',''), -(16,33,'thumbnail_id','0'), -(20,15,'order','5'), -(21,30,'product_count_product_cat','22'), -(22,31,'product_count_product_cat','10'), -(23,32,'product_count_product_cat','7'), -(24,33,'product_count_product_cat','5'), -(25,15,'product_count_product_cat','1'), -(28,37,'order','0'), -(29,38,'order','0'), -(30,39,'order','0'), -(31,40,'order','0'), -(32,41,'order','0'), -(33,42,'order','0'), -(34,43,'order','0'), -(35,44,'order','0'), -(36,45,'order','0'), -(39,48,'order','0'), -(40,49,'order','0'), -(41,58,'order','0'), -(42,59,'order','0'), -(43,62,'order','0'), -(44,63,'order','0'), -(45,64,'order','0'), -(46,66,'order','0'), -(47,68,'order','0'), -(48,69,'order','0'), -(49,70,'order','0'), -(50,71,'order','0'), -(51,72,'order','0'), -(52,73,'order','0'), -(53,74,'order','0'), -(54,75,'order','0'), -(55,76,'order','0'), -(56,77,'order','0'), -(57,78,'order','0'), -(58,79,'order','0'), -(59,81,'product_count_product_tag','1'); -/*!40000 ALTER TABLE `haikuwp_termmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_terms` --- - -DROP TABLE IF EXISTS `haikuwp_terms`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_terms` ( - `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - `term_group` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_id`), - KEY `slug` (`slug`(191)), - KEY `name` (`name`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_terms` --- - -LOCK TABLES `haikuwp_terms` WRITE; -/*!40000 ALTER TABLE `haikuwp_terms` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_terms` VALUES -(1,'Non classé','non-classe',0), -(2,'simple','simple',0), -(3,'grouped','grouped',0), -(4,'variable','variable',0), -(5,'external','external',0), -(6,'exclude-from-search','exclude-from-search',0), -(7,'exclude-from-catalog','exclude-from-catalog',0), -(8,'featured','featured',0), -(9,'outofstock','outofstock',0), -(10,'rated-1','rated-1',0), -(11,'rated-2','rated-2',0), -(12,'rated-3','rated-3',0), -(13,'rated-4','rated-4',0), -(14,'rated-5','rated-5',0), -(15,'Others','others',0), -(16,'English','en',0), -(17,'English','pll_en',0), -(21,'Uncategorized','uncategorized-fr',0), -(30,'Earrings','earrings',0), -(31,'Rings','rings',0), -(32,'Necklaces','necklaces',0), -(33,'Bracelets','bracelets',0), -(36,'Hadou','hadou',0), -(37,'50','50',0), -(38,'52','52',0), -(39,'54','54',0), -(40,'56','56',0), -(41,'58','58',0), -(42,'60','60',0), -(43,'62','62',0), -(44,'64','64',0), -(45,'pair','pair',0), -(48,'Tiger\'s Eye','tiger-eye',0), -(49,'Malachite','malachite',0), -(50,'Hattari','hattari',0), -(51,'Ikkan','ikkan',0), -(52,'Kara','kara',0), -(53,'Kishou','kishou',0), -(54,'Rokku','rokku',0), -(55,'BoroBoro','boroboro',0), -(56,'Piasu','piasu',0), -(57,'Tamanori','tamanori',0), -(58,'Size 1','size-1',0), -(59,'Size 2','size-2',0), -(60,'Tanemaki','tanemaki',0), -(61,'Fuyou','fuyou',0), -(62,'long','long',0), -(63,'medium','medium',0), -(64,'short','short',0), -(65,'Kagun','kagun',0), -(66,'one earring','one',0), -(67,'Mugura','mugura',0), -(68,'Lapis Lazuli','lapis-lazuli',0), -(69,'Green Jaspe','green-jaspe',0), -(70,'Hawk\'s Eye','hawk-eye',0), -(71,'one element earring','one-element-side',0), -(72,'two elements earring','two-elements-side',0), -(73,'Green Aventurine','green-aventurine',0), -(74,'Crystal','crystal',0), -(75,'Jade','jade',0), -(76,'all','all',0), -(77,'left side','left-side',0), -(78,'right side','right-side',0), -(79,'Honey Calcite','honey-calcite',0), -(80,'Uteki','uteki',0), -(81,'Uteki','uteki',0); -/*!40000 ALTER TABLE `haikuwp_terms` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_usermeta` --- - -DROP TABLE IF EXISTS `haikuwp_usermeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_usermeta` ( - `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`umeta_id`), - KEY `user_id` (`user_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_usermeta` --- - -LOCK TABLES `haikuwp_usermeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_usermeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_usermeta` VALUES -(1,1,'nickname','gcch'), -(2,1,'first_name',''), -(3,1,'last_name',''), -(4,1,'description',''), -(5,1,'rich_editing','true'), -(6,1,'syntax_highlighting','true'), -(7,1,'comment_shortcuts','false'), -(8,1,'admin_color','blue'), -(9,1,'use_ssl','0'), -(10,1,'show_admin_bar_front','false'), -(11,1,'locale','en_GB'), -(12,1,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), -(13,1,'haikuwp_user_level','10'), -(14,1,'dismissed_wp_pointers',''), -(15,1,'show_welcome_panel','1'), -(17,1,'haikuwp_dashboard_quick_press_last_post_id','5'), -(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"77.109.115.0\";}'), -(19,1,'_woocommerce_tracks_anon_id','woo:d4XJVDeUWJmLLIBoynrGwlsO'), -(21,1,'last_update','1746806847'), -(22,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"customize-store\":1,\"products\":1}'), -(23,1,'wc_last_active','1750636800'), -(24,1,'meta-box-order_product','a:4:{s:25:\"carbon_fields_after_title\";s:0:\"\";s:4:\"side\";s:84:\"submitdiv,slugdiv,postimagediv,product_catdiv,tagsdiv-collection,tagsdiv-product_tag\";s:6:\"normal\";s:89:\"carbon_fields_container_products_details,postexcerpt,postcustom,woocommerce-product-data,\";s:8:\"advanced\";s:0:\"\";}'), -(25,1,'edit_page_per_page','20'), -(26,1,'haikuwp_user-settings','posts_list_mode=excerpt&libraryContent=browse&editor=html&hidetb=0'), -(27,1,'haikuwp_user-settings-time','1732442434'), -(30,1,'woocommerce_admin_variable_product_tour_shown','\"yes\"'), -(34,1,'billing_first_name',''), -(35,1,'billing_last_name',''), -(36,1,'billing_company',''), -(37,1,'billing_address_1',''), -(38,1,'billing_address_2',''), -(39,1,'billing_city',''), -(40,1,'billing_postcode',''), -(41,1,'billing_country',''), -(42,1,'billing_state',''), -(43,1,'billing_phone',''), -(44,1,'billing_email','g7c'), -(45,1,'shipping_first_name',''), -(46,1,'shipping_last_name',''), -(47,1,'shipping_company',''), -(48,1,'shipping_address_1',''), -(49,1,'shipping_address_2',''), -(50,1,'shipping_city',''), -(51,1,'shipping_postcode',''), -(52,1,'shipping_country',''), -(53,1,'shipping_state',''), -(54,1,'shipping_phone',''), -(57,1,'wc_marketplace_suggestions_dismissed_suggestions','a:4:{i:0;s:28:\"product-edit-name-your-price\";i:1;s:31:\"product-edit-min-max-quantities\";i:2;s:42:\"product-edit-woocommerce-one-page-checkout\";i:3;s:29:\"product-edit-variation-images\";}'), -(58,1,'closedpostboxes_product','a:1:{i:0;s:11:\"postexcerpt\";}'), -(59,1,'metaboxhidden_product','a:2:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";}'), -(61,1,'screen_layout_product','2'), -(63,1,'manageedit-productcolumnshidden','a:1:{i:0;s:8:\"featured\";}'), -(64,1,'edit_product_per_page','100'), -(68,1,'dismissed_uploads_directory_is_unprotected_notice','1'), -(69,1,'dismissed_update_notice','1'), -(81,2,'nickname','manon'), -(82,2,'first_name','Manon'), -(83,2,'last_name','DÉSIGNÈRE'), -(84,2,'description',''), -(85,2,'rich_editing','true'), -(86,2,'syntax_highlighting','true'), -(87,2,'comment_shortcuts','false'), -(88,2,'admin_color','fresh'), -(89,2,'use_ssl','0'), -(90,2,'show_admin_bar_front','true'), -(91,2,'locale','en_GB'), -(92,2,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), -(93,2,'haikuwp_user_level','10'), -(94,2,'dismissed_wp_pointers',''), -(95,2,'session_tokens','a:1:{s:64:\"1ad366a00acd8c673142409995104b04727c5eb911714d647d4d47faedf10564\";a:4:{s:10:\"expiration\";i:1730208242;s:2:\"ip\";s:13:\"81.164.20.154\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1728998642;}}'), -(96,2,'wc_last_active','1730160000'), -(98,2,'_woocommerce_tracks_anon_id','woo:tTnslNIiEvD9zC3nQTmFxTO7'), -(99,2,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'), -(102,2,'haikuwp_user-settings','editor=tinymce&libraryContent=browse'), -(103,2,'haikuwp_user-settings-time','1727711511'), -(104,2,'closedpostboxes_product','a:1:{i:0;s:19:\"tagsdiv-product_tag\";}'), -(105,2,'metaboxhidden_product','a:4:{i:0;s:40:\"carbon_fields_container_products_details\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";i:3;s:11:\"postexcerpt\";}'), -(106,2,'last_update','1728072417'), -(107,2,'woocommerce_admin_variable_product_tour_shown','yes'), -(110,1,'session_tokens','a:4:{s:64:\"7ce6c55b752fef3b23c8c7f9b55f7eb29c10d8d7fac9a010c4faf918995ee144\";a:4:{s:10:\"expiration\";i:1751013467;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0\";s:5:\"login\";i:1749803867;}s:64:\"7442ff0072852e0276a27979236f42bf0a9ae8f5b495655e919425e17ad2670b\";a:4:{s:10:\"expiration\";i:1751349593;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1750139993;}s:64:\"1178a94ed008f2f2c44a1f64bd7dd2e12a4be70db960411987316a493ba170e4\";a:4:{s:10:\"expiration\";i:1751623733;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0\";s:5:\"login\";i:1750414133;}s:64:\"ee6d517ed4be27bf6ee736832a6acb82c200df72a27f021c8a4c5b22756a6d4e\";a:4:{s:10:\"expiration\";i:1751895169;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0\";s:5:\"login\";i:1750685569;}}'), -(126,1,'woocommerce_admin_homepage_stats','{\"installJetpackDismissed\":true}'), -(128,1,'managewoocommerce_page_wc-orderscolumnshidden','a:0:{}'), -(129,1,'edit_shop_order_per_page','20'), -(132,1,'roc_dismissed_wc_pro_notice','1'), -(146,1,'closedpostboxes_woocommerce_page_wc-orders','a:1:{i:0;s:12:\"wms_meta_box\";}'), -(147,1,'metaboxhidden_woocommerce_page_wc-orders','a:0:{}'), -(155,1,'wp_mail_smtp_pro_banner_dismissed','1'), -(165,1,'_new_email','a:2:{s:4:\"hash\";s:32:\"bb75df9dea643dd96634d2474f715f58\";s:8:\"newemail\";s:17:\"g7colin@gmail.com\";}'), -(168,1,'closedpostboxes_dashboard','a:1:{i:0;s:32:\"wp_mail_smtp_reports_widget_lite\";}'), -(169,1,'metaboxhidden_dashboard','a:0:{}'), -(184,1,'roc_dismissed_pro_release_notice','1'), -(220,1,'woocommerce_admin_dashboard_chart_interval','month'), -(222,1,'meta-box-order_woocommerce_page_wc-orders','a:3:{s:4:\"side\";s:62:\"woocommerce-order-notes,woocommerce-order-actions,wms_meta_box\";s:6:\"normal\";s:87:\"woocommerce-order-data,woocommerce-order-items,woocommerce-order-downloads,order_custom\";s:8:\"advanced\";s:0:\"\";}'), -(237,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:2:{s:32:\"b38f02426820647e98661a84bdebf520\";a:11:{s:3:\"key\";s:32:\"b38f02426820647e98661a84bdebf520\";s:10:\"product_id\";i:625;s:12:\"variation_id\";i:630;s:9:\"variation\";a:1:{s:17:\"attribute_pa_size\";s:2:\"58\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"d0a6a0d675df86860b86732d58c0f82d\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:65;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:65;s:8:\"line_tax\";d:0;}s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";a:11:{s:3:\"key\";s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";s:10:\"product_id\";i:994;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";d:0;}}}'); -/*!40000 ALTER TABLE `haikuwp_usermeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_users` --- - -DROP TABLE IF EXISTS `haikuwp_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_users` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_login` varchar(60) NOT NULL DEFAULT '', - `user_pass` varchar(255) NOT NULL DEFAULT '', - `user_nicename` varchar(50) NOT NULL DEFAULT '', - `user_email` varchar(100) NOT NULL DEFAULT '', - `user_url` varchar(100) NOT NULL DEFAULT '', - `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `user_activation_key` varchar(255) NOT NULL DEFAULT '', - `user_status` int(11) NOT NULL DEFAULT 0, - `display_name` varchar(250) NOT NULL DEFAULT '', - PRIMARY KEY (`ID`), - KEY `user_login_key` (`user_login`), - KEY `user_nicename` (`user_nicename`), - KEY `user_email` (`user_email`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_users` --- - -LOCK TABLES `haikuwp_users` WRITE; -/*!40000 ALTER TABLE `haikuwp_users` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_users` VALUES -(1,'gcch','$wp$2y$10$WJwlILNX75DzDtQBsjcRJuFWaQFIgpzWWYKm0Qj0FsAfZt8kJRtiu','gcch','contact@gcch.fr','https://haikuatelier.fr.ddev.site/wp','2024-08-04 20:10:39','',0,'gcch'), -(2,'manon','$2y$10$PQ3e05y6ZdzN40jk.1DHBuQeRiN5nw9QA0pghx6/AeJJfhqv1AcRy','manon','haiku.atelier@gmail.com','https://haikuatelier.com','2024-09-25 06:10:56','',0,'Manon DÉSIGNÈRE'); -/*!40000 ALTER TABLE `haikuwp_users` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_admin_note_actions` --- - -DROP TABLE IF EXISTS `haikuwp_wc_admin_note_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_admin_note_actions` ( - `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `note_id` bigint(20) unsigned NOT NULL, - `name` varchar(255) NOT NULL, - `label` varchar(255) NOT NULL, - `query` longtext NOT NULL, - `status` varchar(255) NOT NULL, - `actioned_text` varchar(255) NOT NULL, - `nonce_action` varchar(255) DEFAULT NULL, - `nonce_name` varchar(255) DEFAULT NULL, - PRIMARY KEY (`action_id`), - KEY `note_id` (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=580 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_admin_note_actions` --- - -LOCK TABLES `haikuwp_wc_admin_note_actions` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_admin_note_actions` VALUES -(1,1,'notify-refund-returns-page','Edit page','https://haikuatelier.fr.ddev.site/wp/wp-admin/post.php?post=11&action=edit','actioned','',NULL,NULL), -(86,59,'connect','Connecter','?page=wc-addons§ion=helper','unactioned','',NULL,NULL), -(424,61,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL), -(428,4,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL), -(429,5,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL), -(430,6,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL), -(431,7,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL), -(432,8,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL), -(434,10,'update-wc-subscriptions-3-0-15','View latest version','https://haikuatelier.fr.ddev.site/wp/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL), -(435,11,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL), -(436,14,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), -(437,15,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), -(438,16,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(439,16,'dismiss','Dismiss','','actioned','',NULL,NULL), -(440,17,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(441,17,'dismiss','Dismiss','','actioned','',NULL,NULL), -(442,18,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(443,18,'dismiss','Dismiss','','actioned','',NULL,NULL), -(444,19,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(445,19,'dismiss','Dismiss','','actioned','',NULL,NULL), -(447,21,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), -(448,21,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL), -(449,22,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), -(450,22,'dismiss','Dismiss','','actioned','',NULL,NULL), -(452,24,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL), -(453,25,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(454,25,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), -(455,26,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(456,26,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), -(457,27,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL), -(458,28,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(459,28,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL), -(460,29,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL), -(461,29,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL), -(463,31,'extension-settings','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(464,31,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(465,32,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(466,32,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(467,33,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL), -(468,34,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), -(469,35,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(470,35,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL), -(471,36,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(472,36,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(473,37,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(474,37,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), -(475,38,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(476,38,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), -(477,39,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(478,39,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL), -(479,40,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(480,40,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL), -(481,41,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(482,41,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL), -(483,42,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(484,42,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(487,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(488,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL), -(489,45,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), -(490,45,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), -(491,46,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(492,46,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL), -(493,47,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL), -(494,48,'plugin-list','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(495,48,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL), -(496,49,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php?','unactioned','',NULL,NULL), -(497,49,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(498,50,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(499,51,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(501,53,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL), -(502,54,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php','unactioned','',NULL,NULL), -(503,54,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), -(504,55,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(505,55,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(509,62,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(510,63,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned','',NULL,NULL), -(511,64,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL), -(542,66,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(543,67,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(553,69,'browse','Browse','https://woocommerce.com/success-stories/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(554,70,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2024-11-26&before=2024-11-26','actioned','',NULL,NULL), -(555,71,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(568,72,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(578,65,'update-db_done','Thanks!','https://haikuatelier.com/wp/wp-admin/admin.php?page=wc-status&status=failed&tab=action-scheduler&s&bulk_action=Apply&paged=1&wc-hide-notice=update','actioned','woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'), -(579,73,'try-the-new-templates','Try the new templates','?page=wc-settings&tab=email&try-new-templates','actioned','',NULL,NULL); -/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_admin_notes` --- - -DROP TABLE IF EXISTS `haikuwp_wc_admin_notes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_admin_notes` ( - `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `type` varchar(20) NOT NULL, - `locale` varchar(20) NOT NULL, - `title` longtext NOT NULL, - `content` longtext NOT NULL, - `content_data` longtext DEFAULT NULL, - `status` varchar(200) NOT NULL, - `source` varchar(200) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_reminder` datetime DEFAULT NULL, - `is_snoozable` tinyint(1) NOT NULL DEFAULT 0, - `layout` varchar(20) NOT NULL DEFAULT '', - `image` varchar(200) DEFAULT NULL, - `is_deleted` tinyint(1) NOT NULL DEFAULT 0, - `is_read` tinyint(1) NOT NULL DEFAULT 0, - `icon` varchar(200) NOT NULL DEFAULT 'info', - PRIMARY KEY (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_admin_notes` --- - -LOCK TABLES `haikuwp_wc_admin_notes` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_admin_notes` VALUES -(1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','actioned','woocommerce-core','2024-08-05 13:12:38',NULL,0,'plain','',0,1,'info'), -(4,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(5,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.

Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with WooCommerce Shipping.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(6,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(7,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(8,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(10,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(11,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(14,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(15,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.

Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(16,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(17,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(18,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(19,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(21,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use PayPal Payments to accept PayPal.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(22,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(24,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(25,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(26,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(27,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(28,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(29,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(31,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(32,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(33,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(34,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(35,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(36,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(37,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(38,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(39,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(40,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(41,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(42,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(45,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(46,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(47,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(48,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(49,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(50,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(51,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(53,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(54,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(55,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(59,'wc-admin-wc-helper-connection','info','en_US','Se connecter à WooCommerce.com','Connectez-vous pour obtenir des notifications et des mises à jour importantes sur les produits.','{}','unactioned','woocommerce-admin','2024-08-05 13:13:55',NULL,0,'plain','',1,1,'info'), -(61,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics – wherever you are.','{}','unactioned','woocommerce-admin','2024-08-07 13:30:14',NULL,0,'plain','',1,1,'info'), -(62,'wc-admin-customizing-product-catalog','info','en_US','How to customise your product catalogue','You want your product catalogue and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2024-08-08 16:35:00',NULL,0,'plain','',1,1,'info'), -(63,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2024-08-10 13:35:49',NULL,0,'plain','',1,1,'info'), -(64,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the Settings and choose to stop sharing data. Read more about what data we collect.','{}','unactioned','woocommerce-admin','2024-08-12 15:54:19',NULL,0,'plain','',1,1,'info'), -(65,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2024-08-22 14:16:51',NULL,0,'plain','',0,1,'info'), -(66,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2024-10-31 13:30:48',NULL,0,'plain','',1,1,'info'), -(67,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2024-11-03 13:16:04',NULL,0,'plain','',1,1,'info'), -(69,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','{\"current_milestone\":10}','unactioned','woocommerce-admin','2024-11-21 16:12:57',NULL,0,'plain','',0,1,'info'), -(70,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, November 26th was your record day for sales! Net sales was € 1.525,00 beating the previous record of € 1.390,00 set on November 13th.','{\"old_record_date\":\"2024-11-13\",\"old_record_amt\":1390,\"new_record_date\":\"2024-11-26\",\"new_record_amt\":1525}','unactioned','woocommerce-admin','2024-11-27 13:20:42',NULL,0,'plain','',0,1,'info'), -(71,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2025-02-01 14:43:19',NULL,0,'plain','',0,1,'info'), -(72,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2025-05-02 13:13:21',NULL,0,'plain','',0,0,'info'), -(73,'wc-admin-email-improvements','info','en_US','Store emails have had an upgrade!','We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.','{}','unactioned','woocommerce-admin','2025-06-13 13:13:15',NULL,0,'plain','',0,0,'info'); -/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_category_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_category_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_category_lookup` ( - `category_tree_id` bigint(20) unsigned NOT NULL, - `category_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`category_tree_id`,`category_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_category_lookup` --- - -LOCK TABLES `haikuwp_wc_category_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_category_lookup` VALUES -(15,15), -(30,30), -(31,31), -(32,32), -(33,33); -/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_customer_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_customer_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_customer_lookup` ( - `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned DEFAULT NULL, - `username` varchar(60) NOT NULL DEFAULT '', - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `email` varchar(100) DEFAULT NULL, - `date_last_active` timestamp NULL DEFAULT NULL, - `date_registered` timestamp NULL DEFAULT NULL, - `country` char(2) NOT NULL DEFAULT '', - `postcode` varchar(20) NOT NULL DEFAULT '', - `city` varchar(100) NOT NULL DEFAULT '', - `state` varchar(100) NOT NULL DEFAULT '', - PRIMARY KEY (`customer_id`), - UNIQUE KEY `user_id` (`user_id`), - KEY `email` (`email`) -) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_customer_lookup` --- - -LOCK TABLES `haikuwp_wc_customer_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_customer_lookup` VALUES -(6,NULL,'','Charlotte','Gérard','charlottegerard7@gmail.com','2024-11-28 14:21:17',NULL,'BE','1200','Woluwe-Saint-Lambert','Bruxelles'), -(7,NULL,'','Roberto','Ruggeri NW Groupe','sofia.balducci99@gmail.com','2024-11-28 14:40:46',NULL,'FR','75007','Paris',''), -(8,NULL,'','Claudia','Van Vynckt - WIPLAW','claudia.vanvynckt@hotmail.fr','2024-11-29 08:05:49',NULL,'BE','1050','Bruxelles',''), -(9,NULL,'','Lucie','Leiner','lucie.leiner@gmail.com','2024-11-29 16:22:16',NULL,'BE','1630','Linkebeek',''), -(10,NULL,'','Claire','Maroufin','maroufin.claire@gmail.com','2024-12-02 09:05:43',NULL,'FR','94270','Le Kremlin Bicetre',''), -(11,NULL,'','Peggy','Luete','gilquinpeggy@gmail.com','2024-12-02 09:46:48',NULL,'FR','93360','Neuilly - Plaisance',''), -(12,NULL,'','Violette','Cubier','v.cubier@gmail.com','2024-12-02 15:33:11',NULL,'FR','92320','Chatillon',''), -(13,NULL,'','Elise','Colson','choploone@gmail.com','2024-12-03 16:03:18',NULL,'BE','4420','Saint-Nicolas','Liège'), -(14,NULL,'','Maren','Sigge','maren.sigge@gmail.com','2024-12-03 21:53:41',NULL,'BE','1160','Auderghem','Belgium'), -(15,NULL,'','Perrine','Vincent','perrinevincent90@gmail.com','2024-12-06 12:08:34',NULL,'BE','5150','Floreffe','Namur'), -(16,NULL,'','Julien','Martial','julien.martial@hotmail.com','2024-12-06 13:04:22',NULL,'BE','1150','Woluwe St Pierre',''), -(17,NULL,'','christine','Saquet Bossu','c.saquetbossu@orange.fr','2024-12-12 15:55:38',NULL,'FR','35660','Renac',''), -(18,NULL,'','Nathalie','Chabin','lili.chabin@gmail.com','2024-12-19 08:08:20',NULL,'CH','1046','Rueyres - Suisse','vaud'), -(19,NULL,'','Veronique','Marchand','vsmarchand24@gmail.com','2024-12-14 09:10:01',NULL,'FR','89000','AUXERRE',''), -(20,NULL,'','Antoine','Deroisy','antoine.der92@gmail.com','2024-12-16 08:16:07',NULL,'BE','1050','Bruxelles',''), -(21,NULL,'','Ella','Richard','ella_cherry@hotmail.fr','2024-12-17 07:40:04',NULL,'FR','93310','Le Pre Saint Gervais',''), -(22,NULL,'','Elsa','Dumontel','elsa.dumontel@gmail.com','2024-12-18 14:13:28',NULL,'FR','15130','Arpajon Sur Cere','France'), -(23,NULL,'','Magali','Jacob','melian.jacob@free.fr','2024-12-26 11:37:45',NULL,'FR','67800','Hœnheim',''), -(24,NULL,'','Camille','Lacroix','camillelacroix715@gmail.com','2024-12-30 17:59:22',NULL,'FR','93310','Le Pré St Gervais',''), -(25,NULL,'','Margot','BRISOUX','margot.brisoux@hotmail.fr','2025-01-03 08:04:01',NULL,'FR','75011','Paris',''), -(26,NULL,'','Marine','TIBERI','tiberi.marine@gmail.com','2025-01-09 11:01:26',NULL,'FR','31400','Toulouse',''), -(27,NULL,'','Alice','Tabernat','alicetabernat@yahoo.fr','2025-01-29 09:32:07',NULL,'FR','93100','Montreuil',''), -(28,NULL,'','Aïn-Establet','Manon','manon.ainest@gmail.com','2025-01-30 07:57:12',NULL,'FR','75020','Paris',''), -(29,NULL,'','de beauvais','nina','parisnoune@gmail.com','2025-02-21 18:32:16',NULL,'FR','75019','paris',''), -(30,NULL,'','Owen Andrew','O\'Neill','owenoneill2727@gmail.com','2025-02-23 16:08:07',NULL,'BE','1060','Saint-Gilles','Brussel'), -(31,NULL,'','Julie','Soulie','julie.soulie96@yahoo.fr','2025-02-26 11:51:16',NULL,'FR','75019','Paris','Ile de France'), -(32,NULL,'','Charles','Stoop','charles.stoop@gmail.com','2025-03-03 10:10:15',NULL,'BE','1170','Watermael-Boitsfort','Bruxelles'), -(33,NULL,'','Amélie','Graux','amelie.grx@gmail.com','2025-03-03 09:45:26',NULL,'FR','75020','Paris',''), -(34,NULL,'','Raphael','Kuder','raphael.kuderpro@gmail.com','2025-03-05 10:04:07',NULL,'FR','75020','Paris','IDF'), -(35,NULL,'','Eve marie','REDOUIN','evemarie.redouin@gmail.com','2025-03-23 20:39:51',NULL,'FR','91140','Villebon-sur-Yvette',''), -(36,NULL,'','Arnau','Oliver Antich','isoliverantich1@gmail.com','2025-04-08 09:44:22',NULL,'BE','1060','Saint-Gilles','Belgium'), -(37,NULL,'','Gauthier','COLIN HAAG','lol@mdr.fr','2025-05-05 07:14:57',NULL,'FR','57070','Metz',''), -(38,NULL,'','Jérôme','Laurent','crack_one@hotmail.fr','2025-05-09 07:49:40',NULL,'FR','10500','BRIENNE LE CHATEAU','Aube'), -(39,NULL,'','Anne sophie','Mabi','annesophiemabi@gmail.com','2025-05-09 17:56:28',NULL,'FR','93110','Rosny sous bois',''), -(40,NULL,'','Zafiria','Efstratiadi','zafiria.efstratiadi@hotmail.com','2025-06-04 09:13:31',NULL,'BE','1080','Bruxelles','Molenbeek-Saint-Jean'), -(41,NULL,'','Laurent','CAPELO','laurentpvcapelo@gmail.com','2025-06-05 05:44:45',NULL,'FR','92130','Issy-les-Moulineaux',''), -(42,NULL,'','','','','2025-06-20 08:13:00',NULL,'','','',''), -(43,NULL,'','','','','2025-06-21 07:54:31',NULL,'','','',''), -(44,NULL,'','','','','2025-06-21 10:43:50',NULL,'','','',''), -(45,NULL,'','','','','2025-06-21 10:54:52',NULL,'','','',''), -(46,NULL,'','','','','2025-06-21 10:58:23',NULL,'','','',''); -/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_download_log` --- - -DROP TABLE IF EXISTS `haikuwp_wc_download_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_download_log` ( - `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `timestamp` datetime NOT NULL, - `permission_id` bigint(20) unsigned NOT NULL, - `user_id` bigint(20) unsigned DEFAULT NULL, - `user_ip_address` varchar(100) DEFAULT '', - PRIMARY KEY (`download_log_id`), - KEY `permission_id` (`permission_id`), - KEY `timestamp` (`timestamp`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_download_log` --- - -LOCK TABLES `haikuwp_wc_download_log` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_download_log` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_download_log` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_addresses` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_addresses`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_addresses` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned NOT NULL, - `address_type` varchar(20) DEFAULT NULL, - `first_name` text DEFAULT NULL, - `last_name` text DEFAULT NULL, - `company` text DEFAULT NULL, - `address_1` text DEFAULT NULL, - `address_2` text DEFAULT NULL, - `city` text DEFAULT NULL, - `state` text DEFAULT NULL, - `postcode` text DEFAULT NULL, - `country` text DEFAULT NULL, - `email` varchar(320) DEFAULT NULL, - `phone` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`), - KEY `order_id` (`order_id`), - KEY `email` (`email`(191)), - KEY `phone` (`phone`), - FULLTEXT KEY `order_addresses_fts` (`first_name`,`last_name`,`company`,`address_1`,`address_2`,`city`,`state`,`postcode`,`country`,`email`,`phone`) -) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_addresses` --- - -LOCK TABLES `haikuwp_wc_order_addresses` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_addresses` VALUES -(93,861,'billing','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE','charlottegerard7@gmail.com','0498836916'), -(94,861,'shipping','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE',NULL,'0498836916'), -(95,862,'billing','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR','sofia.balducci99@gmail.com','+393470972182'), -(96,862,'shipping','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR',NULL,'+393470972182'), -(103,866,'billing','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE','claudia.vanvynckt@hotmail.fr','0478183560'), -(104,866,'shipping','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0478183560'), -(105,867,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE','lucie.leiner@gmail.com','+32489578514'), -(106,867,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE',NULL,'+32489578514'), -(107,868,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE','lucie.leiner@gmail.com','+32489578514'), -(108,868,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE',NULL,'+32489578514'), -(109,869,'billing','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR','maroufin.claire@gmail.com','+33681223295'), -(110,869,'shipping','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR',NULL,'+33681223295'), -(111,870,'billing','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR','gilquinpeggy@gmail.com','+33663293145'), -(112,870,'shipping','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR',NULL,'+33663293145'), -(113,871,'billing','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR','v.cubier@gmail.com','0616154243'), -(114,871,'shipping','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR',NULL,'0616154243'), -(115,872,'billing','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE','choploone@gmail.com','0498508266'), -(116,872,'shipping','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE',NULL,'0498508266'), -(117,873,'billing','Maren','Sigge',NULL,'Av. G. E. Lebon, 24, BP 3',NULL,'Auderghem','Belgium','1160','BE','maren.sigge@gmail.com','+32489439874'), -(118,873,'shipping','Viviane','Antoine',NULL,'Chaussée de Givet 33',NULL,'Mariembourg','Belgium','5660','BE',NULL,'+32489439874'), -(121,876,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(122,876,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(123,877,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(124,877,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(125,878,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(126,878,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(127,879,'billing','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE','julien.martial@hotmail.com','0472585911'), -(128,879,'shipping','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE',NULL,'0472585911'), -(129,880,'billing','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR','c.saquetbossu@orange.fr','0685532210'), -(130,880,'shipping','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR',NULL,'0685532210'), -(131,881,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH','lili.chabin@gmail.com','+41786229221'), -(132,881,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH',NULL,'+41786229221'), -(137,884,'billing','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR','vsmarchand24@gmail.com','+33612102273'), -(138,884,'shipping','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR',NULL,'+33612102273'), -(139,885,'billing','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE','antoine.der92@gmail.com','0474183450'), -(140,885,'shipping','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0474183450'), -(141,886,'billing','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR','ella_cherry@hotmail.fr','06 77 32 66 50'), -(142,886,'shipping','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR',NULL,'06 77 32 66 50'), -(143,887,'billing','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR','elsa.dumontel@gmail.com','0642985078'), -(144,887,'shipping','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR',NULL,'0642985078'), -(145,888,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH','lili.chabin@gmail.com','+41786229221'), -(146,888,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH',NULL,'+41786229221'), -(147,889,'billing','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR','melian.jacob@free.fr','0670745455'), -(148,889,'shipping','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR',NULL,'0670745455'), -(149,892,'billing','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR','camillelacroix715@gmail.com','0681659460'), -(150,892,'shipping','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR',NULL,'0681659460'), -(151,893,'billing','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), -(152,893,'shipping','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), -(153,894,'billing','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), -(154,894,'shipping','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), -(155,895,'billing','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR','tiberi.marine@gmail.com','+33602079136'), -(156,895,'shipping','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR',NULL,'+33602079136'), -(157,897,'billing','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR','alicetabernat@yahoo.fr','0770426206'), -(158,897,'shipping','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR',NULL,'0770426206'), -(159,898,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), -(160,898,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), -(161,899,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), -(162,899,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), -(163,900,'billing','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR','parisnoune@gmail.com','0670423158'), -(164,900,'shipping','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR',NULL,'0670423158'), -(165,901,'billing','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE','owenoneill2727@gmail.com','+353852179564'), -(166,901,'shipping','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE',NULL,'+353852179564'), -(167,902,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), -(168,902,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), -(169,903,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), -(170,903,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), -(171,904,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), -(172,904,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), -(173,905,'billing','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR','amelie.grx@gmail.com','0667102260'), -(174,905,'shipping','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR',NULL,'0667102260'), -(175,906,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), -(176,906,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), -(177,907,'billing','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR','raphael.kuderpro@gmail.com','0783260894'), -(178,907,'shipping','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR',NULL,'0783260894'), -(179,908,'billing','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR','evemarie.redouin@gmail.com','0642769155'), -(180,908,'shipping','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR',NULL,'0642769155'), -(181,909,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), -(182,909,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), -(183,910,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), -(184,910,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), -(185,911,'billing','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR','lol@mdr.fr','0603436016'), -(186,911,'shipping','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR',NULL,'0603436016'), -(187,912,'billing','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR','crack_one@hotmail.fr','+33695854956'), -(188,912,'shipping','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR',NULL,'+33695854956'), -(189,919,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(190,919,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(191,920,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(192,920,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(193,921,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(194,921,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(195,922,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(196,922,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(197,923,'billing','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE','zafiria.efstratiadi@hotmail.com','0474918430'), -(198,923,'shipping','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE',NULL,'0474918430'), -(199,924,'billing','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR','laurentpvcapelo@gmail.com','+33646234205'), -(200,924,'shipping','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR',NULL,'+33646234205'); -/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_coupon_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_coupon_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_coupon_lookup` ( - `order_id` bigint(20) unsigned NOT NULL, - `coupon_id` bigint(20) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `discount_amount` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_id`,`coupon_id`), - KEY `coupon_id` (`coupon_id`), - KEY `date_created` (`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_coupon_lookup` --- - -LOCK TABLES `haikuwp_wc_order_coupon_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_operational_data` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_operational_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_operational_data` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned DEFAULT NULL, - `created_via` varchar(100) DEFAULT NULL, - `woocommerce_version` varchar(20) DEFAULT NULL, - `prices_include_tax` tinyint(1) DEFAULT NULL, - `coupon_usages_are_counted` tinyint(1) DEFAULT NULL, - `download_permission_granted` tinyint(1) DEFAULT NULL, - `cart_hash` varchar(100) DEFAULT NULL, - `new_order_email_sent` tinyint(1) DEFAULT NULL, - `order_key` varchar(100) DEFAULT NULL, - `order_stock_reduced` tinyint(1) DEFAULT NULL, - `date_paid_gmt` datetime DEFAULT NULL, - `date_completed_gmt` datetime DEFAULT NULL, - `shipping_tax_amount` decimal(26,8) DEFAULT NULL, - `shipping_total_amount` decimal(26,8) DEFAULT NULL, - `discount_tax_amount` decimal(26,8) DEFAULT NULL, - `discount_total_amount` decimal(26,8) DEFAULT NULL, - `recorded_sales` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `order_id` (`order_id`), - KEY `order_key` (`order_key`) -) ENGINE=InnoDB AUTO_INCREMENT=708 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_operational_data` --- - -LOCK TABLES `haikuwp_wc_order_operational_data` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_operational_data` VALUES -(275,861,'rest-api','9.4.2',0,1,1,'',1,'wc_order_mIB56la8Hu9rh',0,'2024-11-28 17:00:31',NULL,0.00000000,300.00000000,0.00000000,0.00000000,1), -(278,862,'rest-api','9.4.2',0,1,1,'',1,'wc_order_g6qGGwFmCLhG4',1,'2024-11-28 15:42:54',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(315,866,'rest-api','9.4.2',0,1,1,'',1,'wc_order_GfVnri1zucEHV',1,'2024-11-29 09:07:39',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(324,867,'rest-api','9.4.2',0,0,0,'',0,'wc_order_Onpg5Ph1VT0kX',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(327,868,'rest-api','9.4.2',0,1,1,'',1,'wc_order_LbjBOTM6Pg4Y8',1,'2024-11-29 17:26:38',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(336,869,'rest-api','9.4.2',0,1,1,'',1,'wc_order_ZpJT7n8ezcpc5',1,'2024-12-02 10:06:46',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(345,870,'rest-api','9.4.2',0,0,0,'',0,'wc_order_QMiR6T3KaJtKv',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(348,871,'rest-api','9.4.2',0,1,1,'',1,'wc_order_14ze4V3I7fPgF',1,'2024-12-02 16:34:12',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(357,872,'rest-api','9.4.2',0,1,1,'',1,'wc_order_DpCz0MofHOMDQ',1,'2024-12-03 17:04:43',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(366,873,'rest-api','9.4.2',0,1,1,'',1,'wc_order_sAvbLtrCudWx8',1,'2024-12-03 22:55:58',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(381,876,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WLxB8y0RH3GN1',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(384,877,'rest-api','9.4.3',0,0,0,'',0,'wc_order_aW0gsIEvhmbBI',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(387,878,'rest-api','9.4.3',0,1,1,'',1,'wc_order_FErghd9o15Mhi',1,'2024-12-06 13:10:02','2024-12-12 22:07:33',0.00000000,0.00000000,0.00000000,0.00000000,1), -(396,879,'rest-api','9.4.3',0,1,1,'',1,'wc_order_uzC3Ve7jqfc8V',1,'2024-12-06 14:22:12','2024-12-12 21:43:42',0.00000000,0.00000000,0.00000000,0.00000000,1), -(405,880,'rest-api','9.4.3',0,1,1,'',1,'wc_order_HQOvW1OdAL776',1,'2024-12-12 16:59:06','2024-12-15 09:59:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(416,881,'rest-api','9.4.3',0,1,1,'',1,'wc_order_WWQmiUtXyzFol',1,'2024-12-13 08:39:25','2024-12-16 14:13:34',0.00000000,1200.00000000,0.00000000,0.00000000,1), -(431,884,'rest-api','9.4.3',0,1,1,'',1,'wc_order_E7TjpmjrlfgqK',1,'2024-12-14 10:10:27','2024-12-16 14:13:01',0.00000000,0.00000000,0.00000000,0.00000000,1), -(441,885,'rest-api','9.4.3',0,1,1,'',1,'wc_order_dRRIRApWpQVvv',1,'2024-12-16 09:17:25','2024-12-18 17:19:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(452,886,'rest-api','9.4.3',0,1,1,'',1,'wc_order_j7Ko64S7WIAGg',1,'2024-12-17 08:40:36','2024-12-18 17:16:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(461,887,'rest-api','9.4.3',0,1,1,'',1,'wc_order_cxY5Hd9F3yfSx',1,'2024-12-18 15:14:07','2024-12-31 11:59:52',0.00000000,0.00000000,0.00000000,0.00000000,1), -(472,888,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EWQEpfmuwjvdy',1,'2024-12-19 09:09:28','2024-12-20 18:55:34',0.00000000,12.00000000,0.00000000,0.00000000,1), -(482,889,'rest-api','9.4.3',0,1,1,'',1,'wc_order_C8HPkCjTn8qGF',1,'2024-12-26 12:41:16','2024-12-31 11:59:03',0.00000000,0.00000000,0.00000000,0.00000000,1), -(491,890,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(494,891,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(497,892,'rest-api','9.4.3',0,0,0,'',0,'wc_order_DSYDx6HTwefzB',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(502,893,'rest-api','9.4.3',0,0,0,'',0,'wc_order_8wGrIq5ASqfBl',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(505,894,'rest-api','9.4.3',0,1,1,'',1,'wc_order_BlQYC36BaeTyn',1,'2025-01-03 09:04:36','2025-01-07 14:56:35',0.00000000,3.00000000,0.00000000,0.00000000,1), -(515,895,'rest-api','9.4.3',0,1,1,'',1,'wc_order_2xSBNPp21uZ5r',1,'2025-01-09 12:03:17','2025-01-14 19:47:45',0.00000000,0.00000000,0.00000000,0.00000000,1), -(525,896,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(528,897,'rest-api','9.4.3',0,1,1,'',1,'wc_order_nvCeSzsnDrcfh',1,'2025-01-29 10:33:02','2025-02-03 17:36:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(537,898,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WV96AzBB6vqxe',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(540,899,'rest-api','9.4.3',0,1,1,'',1,'wc_order_y7Idk0wZ92Kf0',1,'2025-01-30 08:57:26','2025-02-03 17:37:02',0.00000000,3.00000000,0.00000000,0.00000000,1), -(551,900,'rest-api','9.4.3',0,0,0,'',0,'wc_order_vfYF53SLgxEsH',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(554,901,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EUV5aiBi07rzG',1,'2025-02-23 17:08:48',NULL,0.00000000,3.00000000,0.00000000,0.00000000,1), -(563,902,'rest-api','9.4.3',0,0,0,'',0,'wc_order_zGVBcZqGbnaUi',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(566,903,'rest-api','9.4.3',0,1,1,'',1,'wc_order_vAtkq8RMPMGTb',1,'2025-02-26 12:53:34','2025-03-01 08:14:27',0.00000000,0.00000000,0.00000000,0.00000000,1), -(576,904,'rest-api','9.4.3',0,0,0,'',0,'wc_order_ZDIVsBShe5GGn',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(579,905,'rest-api','9.4.3',0,1,1,'',1,'wc_order_LMPM4pRGwA2nd',1,'2025-03-03 10:46:58','2025-03-06 08:24:33',0.00000000,0.00000000,0.00000000,0.00000000,1), -(588,906,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hU6nJ5TqPP2wT',1,'2025-03-03 11:11:31','2025-03-06 08:25:36',0.00000000,0.00000000,0.00000000,0.00000000,1), -(597,907,'rest-api','9.4.3',0,1,1,'',1,'wc_order_DCBDWc0ZYTU0z',1,'2025-03-05 11:05:44','2025-03-18 09:40:39',0.00000000,0.00000000,0.00000000,0.00000000,1), -(609,908,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hRtZ57XslBZT7',1,'2025-03-23 21:41:40','2025-04-04 06:41:39',0.00000000,0.00000000,0.00000000,0.00000000,1), -(619,909,'rest-api','9.4.3',0,0,0,'',0,'wc_order_cFZg51NEJ46Uh',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(622,910,'rest-api','9.8.4',0,1,1,'',1,'wc_order_kXbYV8JWxxFPV',1,'2025-04-08 11:45:10','2025-05-11 13:35:32',0.00000000,3.00000000,0.00000000,0.00000000,1), -(631,911,'rest-api','9.8.2',0,0,0,'',0,'wc_order_CbFLxIXlsqY2F',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(634,912,'rest-api','9.8.5',0,1,1,'',1,'wc_order_ffo5RfplSyEWZ',1,'2025-05-09 09:50:57','2025-05-16 05:54:00',0.00000000,3.00000000,0.00000000,0.00000000,1), -(643,919,'rest-api','9.8.4',0,0,0,'',0,'wc_order_ztQMr09oE7jlP',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(646,920,'rest-api','9.8.4',0,0,0,'',0,'wc_order_F2CMSPdH6VVnz',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(649,921,'rest-api','9.8.5',0,1,1,'',1,'wc_order_SJg4VAI3wKTkp',1,'2025-05-09 19:57:36','2025-05-16 05:54:26',0.00000000,0.00000000,0.00000000,0.00000000,1), -(652,922,'rest-api','9.8.5',0,1,1,'',1,'wc_order_i4LpjO4IGhJql',1,'2025-05-16 05:54:37','2025-05-16 05:55:04',0.00000000,0.00000000,0.00000000,0.00000000,1), -(674,923,'rest-api','9.8.5',0,0,0,'',0,'wc_order_489IFs7nUiMpg',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(677,924,'rest-api','9.8.5',0,1,1,'',1,'wc_order_CtkYhNBPJqYg1',1,'2025-06-05 07:45:48','2025-06-09 10:59:56',0.00000000,0.00000000,0.00000000,0.00000000,1), -(687,981,'rest-api','9.9.4',0,0,0,'',0,'wc_order_72FNef8hhAh5j',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(690,997,'rest-api','9.9.4',0,1,1,'',1,'wc_order_PE3U54MIfW9x8',1,'2025-06-21 09:56:06',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(699,998,'rest-api','9.9.4',0,0,0,'',0,'wc_order_9B3ACYvBxZim9',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(702,999,'rest-api','9.9.4',0,0,0,'',0,'wc_order_x7s5iYaE0ZuAq',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(705,1000,'rest-api','9.9.4',0,0,0,'',0,'wc_order_wBk7uhHsT2ZUM',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0); -/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_product_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_product_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_product_lookup` ( - `order_item_id` bigint(20) unsigned NOT NULL, - `order_id` bigint(20) unsigned NOT NULL, - `product_id` bigint(20) unsigned NOT NULL, - `variation_id` bigint(20) unsigned NOT NULL, - `customer_id` bigint(20) unsigned DEFAULT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `product_qty` int(11) NOT NULL, - `product_net_revenue` double NOT NULL DEFAULT 0, - `product_gross_revenue` double NOT NULL DEFAULT 0, - `coupon_amount` double NOT NULL DEFAULT 0, - `tax_amount` double NOT NULL DEFAULT 0, - `shipping_amount` double NOT NULL DEFAULT 0, - `shipping_tax_amount` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_item_id`), - KEY `order_id` (`order_id`), - KEY `product_id` (`product_id`), - KEY `customer_id` (`customer_id`), - KEY `date_created` (`date_created`), - KEY `customer_product_date` (`customer_id`,`product_id`,`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_product_lookup` --- - -LOCK TABLES `haikuwp_wc_order_product_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_product_lookup` VALUES -(136,861,331,0,6,'2024-11-28 16:21:17',1,35,335,0,0,300,0), -(138,862,288,646,7,'2024-11-28 16:40:46',1,80,80,0,0,0,0), -(147,866,251,0,8,'2024-11-29 10:05:49',1,65,65,0,0,0,0), -(149,867,258,0,9,'2024-11-29 10:30:23',1,75,75,0,0,0,0), -(151,868,251,0,9,'2024-11-29 18:22:16',1,65,65,0,0,0,0), -(152,868,271,0,9,'2024-11-29 18:22:16',1,95,95,0,0,0,0), -(154,869,202,637,10,'2024-12-02 11:05:43',1,50,50,0,0,0,0), -(155,869,291,649,10,'2024-12-02 11:05:43',1,70,70,0,0,0,0), -(157,870,398,0,11,'2024-12-02 11:46:48',1,65,65,0,0,0,0), -(159,871,521,523,12,'2024-12-02 17:33:11',1,60,60,0,0,0,0), -(160,871,342,563,12,'2024-12-02 17:33:11',1,25,25,0,0,0,0), -(161,871,342,560,12,'2024-12-02 17:33:11',1,58,58,0,0,0,0), -(163,872,263,0,13,'2024-12-03 18:03:18',1,90,90,0,0,0,0), -(165,873,306,652,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), -(166,873,183,566,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), -(167,873,274,0,14,'2024-12-03 23:53:41',1,95,95,0,0,0,0), -(173,876,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), -(175,877,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), -(177,878,288,646,15,'2024-12-06 14:08:34',1,80,80,0,0,0,0), -(178,878,285,642,15,'2024-12-06 14:08:34',1,75,75,0,0,0,0), -(180,879,312,655,16,'2024-12-06 15:04:22',1,75,75,0,0,0,0), -(182,880,335,0,17,'2024-12-12 17:55:38',1,40,40,0,0,0,0), -(183,880,545,553,17,'2024-12-12 17:55:38',1,60,60,0,0,0,0), -(185,881,306,653,18,'2024-12-13 09:37:26',1,48,1248,0,0,1200,0), -(193,884,271,0,19,'2024-12-14 11:10:01',1,95,95,0,0,0,0), -(195,885,288,646,20,'2024-12-16 10:16:07',1,80,80,0,0,0,0), -(197,886,545,553,21,'2024-12-17 09:40:04',1,60,60,0,0,0,0), -(198,886,490,494,21,'2024-12-17 09:40:04',1,45,45,0,0,0,0), -(200,887,365,677,22,'2024-12-18 16:13:28',1,60,60,0,0,0,0), -(202,888,306,651,18,'2024-12-19 10:08:20',1,50,62,0,0,12,0), -(204,889,325,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), -(205,889,554,555,23,'2024-12-26 13:37:45',1,55,55,0,0,0,0), -(206,889,435,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), -(207,889,521,523,23,'2024-12-26 13:37:45',1,60,60,0,0,0,0), -(208,889,251,0,23,'2024-12-26 13:37:45',1,65,65,0,0,0,0), -(210,892,554,555,24,'2024-12-30 19:59:22',1,55,55,0,0,0,0), -(212,893,335,0,25,'2025-01-03 09:10:31',1,40,43,0,0,3,0), -(214,894,331,0,25,'2025-01-03 10:04:01',1,35,38,0,0,3,0), -(216,895,202,638,26,'2025-01-09 13:01:26',1,85,85,0,0,0,0), -(217,895,306,652,26,'2025-01-09 13:01:26',1,70,70,0,0,0,0), -(219,897,291,649,27,'2025-01-29 11:32:07',1,70,70,0,0,0,0), -(221,898,435,0,28,'2025-01-30 09:55:09',1,35,38,0,0,3,0), -(223,899,435,0,28,'2025-01-30 09:57:12',1,35,38,0,0,3,0), -(225,900,133,135,29,'2025-02-21 20:32:16',1,150,150,0,0,0,0), -(227,901,430,845,30,'2025-02-23 18:08:07',1,45,48,0,0,3,0), -(229,902,271,0,31,'2025-02-26 13:51:14',1,95,95,0,0,0,0), -(231,903,271,0,31,'2025-02-26 13:51:16',1,95,95,0,0,0,0), -(233,904,168,200,32,'2025-03-03 08:31:50',1,150,150,0,0,0,0), -(235,905,274,0,33,'2025-03-03 11:45:26',1,95,95,0,0,0,0), -(237,906,168,200,32,'2025-03-03 12:10:15',1,150,150,0,0,0,0), -(239,907,168,200,34,'2025-03-05 12:04:07',1,150,150,0,0,0,0), -(240,907,447,0,34,'2025-03-05 12:04:07',1,40,40,0,0,0,0), -(242,908,342,560,35,'2025-03-23 22:39:51',1,58,58,0,0,0,0), -(243,908,433,478,35,'2025-03-23 22:39:51',1,48,48,0,0,0,0), -(245,909,328,0,36,'2025-04-07 13:50:33',1,40,43,0,0,3,0), -(247,910,328,0,36,'2025-04-08 13:44:22',1,40,43,0,0,3,0), -(249,911,625,633,37,'2025-05-05 11:14:57',1,65,65,0,0,0,0), -(251,912,318,0,38,'2025-05-09 11:49:40',1,40,43,0,0,3,0), -(253,919,490,494,39,'2025-05-09 21:54:35',1,50,50,0,0,0,0), -(254,919,342,563,39,'2025-05-09 21:54:35',2,60,60,0,0,0,0), -(256,920,342,563,39,'2025-05-09 21:56:26',2,60,60,0,0,0,0), -(258,921,342,563,39,'2025-05-09 21:56:27',2,60,60,0,0,0,0), -(260,922,342,563,39,'2025-05-09 21:56:28',2,60,60,0,0,0,0), -(262,923,285,642,40,'2025-06-04 13:13:31',1,80,80,0,0,0,0), -(264,924,447,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), -(265,924,435,0,41,'2025-06-05 09:44:45',1,40,40,0,0,0,0), -(266,924,328,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), -(268,981,766,767,42,'2025-06-20 12:13:00',2,170,170,0,0,0,0), -(270,997,447,0,43,'2025-06-21 11:54:31',1,45,45,0,0,0,0), -(271,997,202,638,43,'2025-06-21 11:54:31',1,85,85,0,0,0,0), -(273,998,625,630,44,'2025-06-21 14:43:50',1,65,65,0,0,0,0), -(275,999,994,0,45,'2025-06-21 14:54:52',1,100,100,0,0,0,0), -(277,1000,625,630,46,'2025-06-21 14:58:23',1,65,65,0,0,0,0), -(278,1000,994,0,46,'2025-06-21 14:58:23',1,100,100,0,0,0,0); -/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_stats` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_stats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_stats` ( - `order_id` bigint(20) unsigned NOT NULL, - `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_paid` datetime DEFAULT '0000-00-00 00:00:00', - `date_completed` datetime DEFAULT '0000-00-00 00:00:00', - `num_items_sold` int(11) NOT NULL DEFAULT 0, - `total_sales` double NOT NULL DEFAULT 0, - `tax_total` double NOT NULL DEFAULT 0, - `shipping_total` double NOT NULL DEFAULT 0, - `net_total` double NOT NULL DEFAULT 0, - `returning_customer` tinyint(1) DEFAULT NULL, - `status` varchar(200) NOT NULL, - `customer_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`order_id`), - KEY `date_created` (`date_created`), - KEY `customer_id` (`customer_id`), - KEY `status` (`status`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_stats` --- - -LOCK TABLES `haikuwp_wc_order_stats` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_stats` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_stats` VALUES -(861,0,'2024-11-28 16:21:17','2024-11-28 15:21:17','2024-11-28 18:00:31',NULL,1,335,0,300,35,0,'wc-pending',6), -(862,0,'2024-11-28 16:40:46','2024-11-28 15:40:46','2024-11-28 16:42:54',NULL,1,80,0,0,80,0,'wc-processing',7), -(866,0,'2024-11-29 10:05:49','2024-11-29 09:05:49','2024-11-29 10:07:39',NULL,1,65,0,0,65,0,'wc-processing',8), -(867,0,'2024-11-29 10:30:23','2024-11-29 09:30:23',NULL,NULL,1,75,0,0,75,0,'wc-pending',9), -(868,0,'2024-11-29 18:22:16','2024-11-29 17:22:16','2024-11-29 18:26:38',NULL,2,160,0,0,160,0,'wc-processing',9), -(869,0,'2024-12-02 11:05:43','2024-12-02 10:05:43','2024-12-02 11:06:46',NULL,2,120,0,0,120,0,'wc-processing',10), -(870,0,'2024-12-02 11:46:48','2024-12-02 10:46:48',NULL,NULL,1,65,0,0,65,0,'wc-pending',11), -(871,0,'2024-12-02 17:33:11','2024-12-02 16:33:11','2024-12-02 17:34:12',NULL,3,143,0,0,143,0,'wc-processing',12), -(872,0,'2024-12-03 18:03:18','2024-12-03 17:03:18','2024-12-03 18:04:43',NULL,1,90,0,0,90,0,'wc-processing',13), -(873,0,'2024-12-03 23:53:41','2024-12-03 22:53:41','2024-12-03 23:55:58',NULL,3,235,0,0,235,0,'wc-processing',14), -(876,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), -(877,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), -(878,0,'2024-12-06 14:08:34','2024-12-06 13:08:34','2024-12-06 14:10:02','2024-12-12 23:07:33',2,155,0,0,155,0,'wc-completed',15), -(879,0,'2024-12-06 15:04:22','2024-12-06 14:04:22','2024-12-06 15:22:12','2024-12-12 22:43:42',1,75,0,0,75,0,'wc-completed',16), -(880,0,'2024-12-12 17:55:38','2024-12-12 16:55:38','2024-12-12 17:59:06','2024-12-15 10:59:40',2,100,0,0,100,0,'wc-refunded',17), -(881,0,'2024-12-13 09:37:26','2024-12-13 08:37:26','2024-12-13 09:39:25','2024-12-16 15:13:34',1,1248,0,1200,48,0,'wc-completed',18), -(884,0,'2024-12-14 11:10:01','2024-12-14 10:10:01','2024-12-14 11:10:27','2024-12-16 15:13:01',1,95,0,0,95,0,'wc-refunded',19), -(885,0,'2024-12-16 10:16:07','2024-12-16 09:16:07','2024-12-16 10:17:25','2024-12-18 18:19:19',1,80,0,0,80,0,'wc-completed',20), -(886,0,'2024-12-17 09:40:04','2024-12-17 08:40:04','2024-12-17 09:40:36','2024-12-18 18:16:40',2,105,0,0,105,0,'wc-completed',21), -(887,0,'2024-12-18 16:13:28','2024-12-18 15:13:28','2024-12-18 16:14:07','2024-12-31 12:59:52',1,60,0,0,60,0,'wc-completed',22), -(888,0,'2024-12-19 10:08:20','2024-12-19 09:08:20','2024-12-19 10:09:28','2024-12-20 19:55:34',1,62,0,12,50,1,'wc-completed',18), -(889,0,'2024-12-26 13:37:45','2024-12-26 12:37:45','2024-12-26 13:41:16','2024-12-31 12:59:03',5,250,0,0,250,0,'wc-completed',23), -(890,888,'2024-12-29 15:53:20','2024-12-29 14:53:20','2024-12-29 15:53:20','2024-12-29 15:53:20',0,-12,0,0,-12,NULL,'wc-completed',18), -(891,880,'2024-12-30 11:40:43','2024-12-30 10:40:43','2024-12-30 11:40:43','2024-12-30 11:40:43',0,-100,0,0,-100,NULL,'wc-refunded',17), -(892,0,'2024-12-30 19:59:22','2024-12-30 18:59:22',NULL,NULL,1,55,0,0,55,0,'wc-pending',24), -(893,0,'2025-01-03 09:10:31','2025-01-03 08:10:31',NULL,NULL,1,43,0,3,40,0,'wc-pending',25), -(894,0,'2025-01-03 10:04:01','2025-01-03 09:04:01','2025-01-03 10:04:36','2025-01-07 15:56:35',1,38,0,3,35,0,'wc-completed',25), -(895,0,'2025-01-09 13:01:26','2025-01-09 12:01:26','2025-01-09 13:03:17','2025-01-14 20:47:45',2,155,0,0,155,0,'wc-completed',26), -(896,884,'2025-01-23 22:51:50','2025-01-23 21:51:50','2025-01-23 22:51:50','2025-01-23 22:51:50',0,-95,0,0,-95,NULL,'wc-refunded',19), -(897,0,'2025-01-29 11:32:07','2025-01-29 10:32:07','2025-01-29 11:33:02','2025-02-03 18:36:19',1,70,0,0,70,0,'wc-completed',27), -(898,0,'2025-01-30 09:55:09','2025-01-30 08:55:09',NULL,NULL,1,38,0,3,35,0,'wc-pending',28), -(899,0,'2025-01-30 09:57:12','2025-01-30 08:57:12','2025-01-30 09:57:26','2025-02-03 18:37:02',1,38,0,3,35,0,'wc-completed',28), -(900,0,'2025-02-21 20:32:16','2025-02-21 19:32:16',NULL,NULL,1,150,0,0,150,0,'wc-pending',29), -(901,0,'2025-02-23 18:08:07','2025-02-23 17:08:07','2025-02-23 18:08:48',NULL,1,48,0,3,45,0,'wc-processing',30), -(902,0,'2025-02-26 13:51:14','2025-02-26 12:51:14',NULL,NULL,1,95,0,0,95,0,'wc-pending',31), -(903,0,'2025-02-26 13:51:16','2025-02-26 12:51:16','2025-02-26 13:53:34','2025-03-01 09:14:27',1,95,0,0,95,0,'wc-completed',31), -(904,0,'2025-03-03 08:31:50','2025-03-03 07:31:50',NULL,NULL,1,150,0,0,150,0,'wc-pending',32), -(905,0,'2025-03-03 11:45:26','2025-03-03 10:45:26','2025-03-03 11:46:58','2025-03-06 09:24:33',1,95,0,0,95,0,'wc-completed',33), -(906,0,'2025-03-03 12:10:15','2025-03-03 11:10:15','2025-03-03 12:11:31','2025-03-06 09:25:36',1,150,0,0,150,0,'wc-completed',32), -(907,0,'2025-03-05 12:04:07','2025-03-05 11:04:07','2025-03-05 12:05:44','2025-03-18 10:40:39',2,190,0,0,190,0,'wc-completed',34), -(908,0,'2025-03-23 22:39:51','2025-03-23 21:39:51','2025-03-23 22:41:40','2025-04-04 08:41:39',2,106,0,0,106,0,'wc-completed',35), -(909,0,'2025-04-07 13:50:33','2025-04-07 11:50:33',NULL,NULL,1,43,0,3,40,0,'wc-pending',36), -(910,0,'2025-04-08 13:44:22','2025-04-08 11:44:22','2025-04-08 13:45:10','2025-05-11 15:35:32',1,43,0,3,40,0,'wc-completed',36), -(911,0,'2025-05-05 11:14:57','2025-05-05 09:14:57',NULL,NULL,1,65,0,0,65,0,'wc-pending',37), -(912,0,'2025-05-09 11:49:40','2025-05-09 09:49:40','2025-05-09 11:50:57','2025-05-16 07:54:00',1,43,0,3,40,0,'wc-completed',38), -(919,0,'2025-05-09 21:54:35','2025-05-09 19:54:35',NULL,NULL,3,110,0,0,110,0,'wc-pending',39), -(920,0,'2025-05-09 21:56:26','2025-05-09 19:56:26',NULL,NULL,2,60,0,0,60,0,'wc-pending',39), -(921,0,'2025-05-09 21:56:27','2025-05-09 19:56:27','2025-05-09 21:57:36','2025-05-16 07:54:26',2,60,0,0,60,0,'wc-completed',39), -(922,0,'2025-05-09 21:56:28','2025-05-09 19:56:28','2025-05-16 07:54:37','2025-05-16 07:55:04',2,60,0,0,60,1,'wc-completed',39), -(923,0,'2025-06-04 13:13:31','2025-06-04 11:13:31',NULL,NULL,1,80,0,0,80,0,'wc-pending',40), -(924,0,'2025-06-05 09:44:45','2025-06-05 07:44:45','2025-06-05 09:45:48','2025-06-09 12:59:56',3,130,0,0,130,0,'wc-completed',41), -(981,0,'2025-06-20 12:13:00','2025-06-20 10:13:00',NULL,NULL,2,170,0,0,170,0,'wc-pending',42), -(997,0,'2025-06-21 11:54:31','2025-06-21 09:54:31','2025-06-21 11:56:06',NULL,2,130,0,0,130,0,'wc-processing',43), -(998,0,'2025-06-21 14:43:50','2025-06-21 12:43:50',NULL,NULL,1,65,0,0,65,0,'wc-pending',44), -(999,0,'2025-06-21 14:54:52','2025-06-21 12:54:52',NULL,NULL,1,100,0,0,100,0,'wc-pending',45), -(1000,0,'2025-06-21 14:58:23','2025-06-21 12:58:23',NULL,NULL,2,165,0,0,165,0,'wc-pending',46); -/*!40000 ALTER TABLE `haikuwp_wc_order_stats` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_tax_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_tax_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_tax_lookup` ( - `order_id` bigint(20) unsigned NOT NULL, - `tax_rate_id` bigint(20) unsigned NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `shipping_tax` double NOT NULL DEFAULT 0, - `order_tax` double NOT NULL DEFAULT 0, - `total_tax` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_id`,`tax_rate_id`), - KEY `tax_rate_id` (`tax_rate_id`), - KEY `date_created` (`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_tax_lookup` --- - -LOCK TABLES `haikuwp_wc_order_tax_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_orders` --- - -DROP TABLE IF EXISTS `haikuwp_wc_orders`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_orders` ( - `id` bigint(20) unsigned NOT NULL, - `status` varchar(20) DEFAULT NULL, - `currency` varchar(10) DEFAULT NULL, - `type` varchar(20) DEFAULT NULL, - `tax_amount` decimal(26,8) DEFAULT NULL, - `total_amount` decimal(26,8) DEFAULT NULL, - `customer_id` bigint(20) unsigned DEFAULT NULL, - `billing_email` varchar(320) DEFAULT NULL, - `date_created_gmt` datetime DEFAULT NULL, - `date_updated_gmt` datetime DEFAULT NULL, - `parent_order_id` bigint(20) unsigned DEFAULT NULL, - `payment_method` varchar(100) DEFAULT NULL, - `payment_method_title` text DEFAULT NULL, - `transaction_id` varchar(100) DEFAULT NULL, - `ip_address` varchar(100) DEFAULT NULL, - `user_agent` text DEFAULT NULL, - `customer_note` text DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `status` (`status`), - KEY `date_created` (`date_created_gmt`), - KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)), - KEY `billing_email` (`billing_email`(191)), - KEY `type_status_date` (`type`,`status`,`date_created_gmt`), - KEY `parent_order_id` (`parent_order_id`), - KEY `date_updated` (`date_updated_gmt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_orders` --- - -LOCK TABLES `haikuwp_wc_orders` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_orders` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_orders` VALUES -(861,'wc-pending','EUR','shop_order',0.00000000,335.00000000,0,'charlottegerard7@gmail.com','2024-11-28 15:21:17','2024-11-28 19:40:39',0,'','','','','',''), -(862,'wc-processing','EUR','shop_order',0.00000000,80.00000000,0,'sofia.balducci99@gmail.com','2024-11-28 15:40:46','2024-12-04 08:33:07',0,'','','cs_live_a1svQoVpQTAiSee2hdTTRsnPYQaQXDq7RNxaNg90PXi3YyGZtLHzO34Ci0','','',''), -(866,'wc-processing','EUR','shop_order',0.00000000,65.00000000,0,'claudia.vanvynckt@hotmail.fr','2024-11-29 09:05:49','2024-11-29 09:07:40',0,'','','cs_live_a1d08FUjZ9BRf9odbxjxgKnG6B1B6qh8sXCNcDnQ4iYPYGuJO0eDUYFPza','','',''), -(867,'wc-pending','EUR','shop_order',0.00000000,75.00000000,0,'lucie.leiner@gmail.com','2024-11-29 09:30:23','2024-11-29 09:30:23',0,'','','','','',''), -(868,'wc-processing','EUR','shop_order',0.00000000,160.00000000,0,'lucie.leiner@gmail.com','2024-11-29 17:22:16','2024-11-29 17:26:38',0,'','','cs_live_b1rl5EdRJzCtNzMlKISIV6pLx1QoXSQKMRMJLT0kSRouevb2zQ23nyaBQb','','',''), -(869,'wc-processing','EUR','shop_order',0.00000000,120.00000000,0,'maroufin.claire@gmail.com','2024-12-02 10:05:43','2024-12-02 10:06:46',0,'','','cs_live_b10JaBeyOWGNedl3gG765YEShS8lZHA9A4aKS95LgAKh6qZXQnCIVSljQS','','',''), -(870,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'gilquinpeggy@gmail.com','2024-12-02 10:46:48','2024-12-02 10:46:48',0,'','','','','',''), -(871,'wc-processing','EUR','shop_order',0.00000000,143.00000000,0,'v.cubier@gmail.com','2024-12-02 16:33:11','2024-12-02 16:34:13',0,'','','cs_live_b1NkHwimGQsZ4QkEAqe9CDnUr1DXp6W3PJtiypSTl7tbdlpNdixwfKayy5','','',''), -(872,'wc-processing','EUR','shop_order',0.00000000,90.00000000,0,'choploone@gmail.com','2024-12-03 17:03:18','2024-12-03 17:04:44',0,'','','cs_live_a1N24p77v8EyXK9ZJym9WKpN0L9d7nn8TKiG51ukP3wcHGOIEEO7JVRYkc','','',''), -(873,'wc-processing','EUR','shop_order',0.00000000,235.00000000,0,'maren.sigge@gmail.com','2024-12-03 22:53:41','2024-12-03 22:55:59',0,'','','cs_live_b1d2FCt4FYyGLsCPq20mViayd4OQXAn1eBfe3z3UOZQbCZk02byhZw8uRp','','',''), -(876,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:13',0,'','','','','',''), -(877,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:14',0,'','','','','',''), -(878,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:08:34','2024-12-15 09:35:41',0,'','','cs_live_a12SLRUpoI738BH0BJvY39tzXRBmbhmx4dty8MkdfmxlOrSNwqzi0LIs0w','','',''), -(879,'wc-completed','EUR','shop_order',0.00000000,75.00000000,0,'julien.martial@hotmail.com','2024-12-06 14:04:22','2024-12-12 21:48:29',0,'','','cs_live_a10cY6oxXXTqiNMNGXdIqBStIF4rxjTJ4nFAApF14ug4df1ubvsJBCkEnB','','',''), -(880,'wc-refunded','EUR','shop_order',0.00000000,100.00000000,0,'c.saquetbossu@orange.fr','2024-12-12 16:55:38','2024-12-30 10:40:50',0,'','','cs_live_b1rQKvEwBHzNanBG70EG9Xg1BMcfxjxlsIKvnNwLHSGcMeRRVFusIv82xu','','',''), -(881,'wc-completed','EUR','shop_order',0.00000000,1248.00000000,0,'lili.chabin@gmail.com','2024-12-13 08:37:26','2024-12-16 14:13:34',0,'','','cs_live_a1QOrbZvz7NPHCy1AONKDEPoNfNniuLqi8S8mO1So5xlfcxP3s7A8u1saJ','','',''), -(884,'wc-refunded','EUR','shop_order',0.00000000,95.00000000,0,'vsmarchand24@gmail.com','2024-12-14 10:10:01','2025-01-23 21:51:50',0,'','','cs_live_a1KhJ0JraBn277imcg61syatlwfwXUqRSgH0si1UywNXQnnaaPQUXCb6Ye','','',''), -(885,'wc-completed','EUR','shop_order',0.00000000,80.00000000,0,'antoine.der92@gmail.com','2024-12-16 09:16:07','2024-12-18 17:19:19',0,'','','cs_live_a15teMmPCgaffuRSOljLOuFl7R0GhHVDHuyCLh83Exs5EGs76RhR2Z6slN','','',''), -(886,'wc-completed','EUR','shop_order',0.00000000,105.00000000,0,'ella_cherry@hotmail.fr','2024-12-17 08:40:04','2024-12-18 17:16:40',0,'','','cs_live_b10gtoDEAZtugeUUybNRQU286vrPQm9SKRxovq17jyT5JSibTAZI8TyH9b','','',''), -(887,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'elsa.dumontel@gmail.com','2024-12-18 15:13:28','2024-12-31 11:59:52',0,'','','cs_live_a1kBdlYdcEX5glITE5cxLtkjEsemFaIVNJZDW641JlnkljMEjyrssTNJXo','','',''), -(888,'wc-completed','EUR','shop_order',0.00000000,62.00000000,0,'lili.chabin@gmail.com','2024-12-19 09:08:20','2024-12-29 14:53:29',0,'','','cs_live_a1ktP4tLyzgYY305YJGum3L8hu9N9qrPbOfeswgsBRyMSSge3yTL8atXEg','','',''), -(889,'wc-completed','EUR','shop_order',0.00000000,250.00000000,0,'melian.jacob@free.fr','2024-12-26 12:37:45','2024-12-31 11:59:03',0,'','','cs_live_b1sWkcR5ha10Ro3rgV3FqEQxvD40aB2mbqw6Plaq8I6nrBx1xYUPN6URYb','','',''), -(890,'wc-completed','EUR','shop_order_refund',0.00000000,-12.00000000,NULL,NULL,'2024-12-29 14:53:20','2024-12-29 14:53:20',888,NULL,NULL,NULL,NULL,NULL,NULL), -(891,'wc-completed','EUR','shop_order_refund',0.00000000,-100.00000000,NULL,NULL,'2024-12-30 10:40:43','2024-12-30 10:40:43',880,NULL,NULL,NULL,NULL,NULL,NULL), -(892,'wc-pending','EUR','shop_order',0.00000000,55.00000000,0,'camillelacroix715@gmail.com','2024-12-30 18:59:22','2024-12-30 18:59:22',0,'','','','','',''), -(893,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 08:10:31','2025-01-03 08:10:31',0,'','','','','',''), -(894,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 09:04:01','2025-01-07 14:56:35',0,'','','cs_live_a1bOBwoGtGQUtjrFiFgIaZqD3pvXjvB1bCVVa63MDqORXOtYmWf5qsFFCy','','',''), -(895,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'tiberi.marine@gmail.com','2025-01-09 12:01:26','2025-01-14 19:47:45',0,'','','cs_live_b1qXQzunVuNopx9KHrAAgcQpNKmmLwshMwKQgiK94CJpAC1peepjzzgw88','','',''), -(896,'wc-completed','EUR','shop_order_refund',0.00000000,-95.00000000,NULL,NULL,'2025-01-23 21:51:50','2025-01-23 21:51:50',884,NULL,NULL,NULL,NULL,NULL,NULL), -(897,'wc-completed','EUR','shop_order',0.00000000,70.00000000,0,'alicetabernat@yahoo.fr','2025-01-29 10:32:07','2025-02-03 17:36:19',0,'','','cs_live_a11g0bnfWPAfwbgPcGsp2nFjPkaTqz9TKjUKCgkotTDle31gqp2t5DIFXr','','',''), -(898,'wc-pending','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:55:09','2025-01-30 08:55:09',0,'','','','','',''), -(899,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:57:12','2025-02-03 17:37:02',0,'','','cs_live_a1QPvqbvcYzHtXWCvDchaoX8yKphpHA8aFUvZtEC5wxfw1C2SX0RI7XmOB','','',''), -(900,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'parisnoune@gmail.com','2025-02-21 19:32:16','2025-02-21 19:32:16',0,'','','','','',''), -(901,'wc-processing','EUR','shop_order',0.00000000,48.00000000,0,'owenoneill2727@gmail.com','2025-02-23 17:08:07','2025-02-23 17:08:49',0,'','','cs_live_a1GFHeWtsHUJuYz6QaJ9ys4MjurDGI6i43iKN9eG0SnFqknxjaMSLGJOez','','',''), -(902,'wc-pending','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:14','2025-02-26 12:51:15',0,'','','','','',''), -(903,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:16','2025-03-01 08:14:27',0,'','','cs_live_a1mFOyZPMm14pK57DdGIKZwTO4W8ZCatZvZWCNpF5xUC4ycLVAmKhDUrsA','','',''), -(904,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 07:31:50','2025-03-03 07:31:50',0,'','','','','',''), -(905,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'amelie.grx@gmail.com','2025-03-03 10:45:26','2025-03-06 08:24:33',0,'','','cs_live_a1aPByBFzbZyfbQTxL6nzu92j7iKkvl5if69zqaMEp5QJrQGPHjEimbMoK','','',''), -(906,'wc-completed','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 11:10:15','2025-03-06 08:25:36',0,'','','cs_live_a1LEJpJwearhfR2b7iPVKdUfymrbDp00VvSuR9qqkFdxuoo1TseDdGWSsj','','',''), -(907,'wc-completed','EUR','shop_order',0.00000000,190.00000000,0,'raphael.kuderpro@gmail.com','2025-03-05 11:04:07','2025-03-18 09:40:39',0,'','','cs_live_b11qrZzpZitWqhRsaz4pR9avf8eXD1nF5lEZ31cfuXZWYMn1ucJOUZL2tc','','',''), -(908,'wc-completed','EUR','shop_order',0.00000000,106.00000000,0,'evemarie.redouin@gmail.com','2025-03-23 21:39:51','2025-04-04 06:41:39',0,'','','cs_live_b1YqdwNaPbu9CWfGSQrpINirWmEMehRQzmYRJ3xJ0DCu8Tpmftcvyrx4My','','',''), -(909,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-07 11:50:33','2025-04-07 11:50:33',0,'','','','','',''), -(910,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-08 11:44:22','2025-05-11 13:35:32',0,'','','cs_live_a1M1AbVhpNayddsFHKmFfBx4whULHHouxQwRAvpuYm1sIXUlKfd0GItHWH','','',''), -(911,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'lol@mdr.fr','2025-05-05 09:14:57','2025-05-05 09:14:57',0,'','','','','',''), -(912,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'crack_one@hotmail.fr','2025-05-09 09:49:40','2025-05-16 05:54:00',0,'','','cs_live_a1H92o6VYyvx7aHJeAQmk1Pmd0IRjxqiuCRVy9CJKOHwNgUajseeOZV5GJ','','',''), -(919,'wc-pending','EUR','shop_order',0.00000000,110.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:54:35','2025-05-09 19:54:35',0,'','','','','',''), -(920,'wc-pending','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:26','2025-05-09 19:56:26',0,'','','','','',''), -(921,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:27','2025-05-16 05:54:26',0,'','','cs_live_a1BfsTQJFzp4sAD4M7ttoO0LVJLncUDjxVj0jfYnFYqfjvJfHKLu3aFhIm','','',''), -(922,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:28','2025-05-16 05:55:04',0,'','','','','',''), -(923,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'zafiria.efstratiadi@hotmail.com','2025-06-04 11:13:31','2025-06-04 11:13:31',0,'','','','','',''), -(924,'wc-completed','EUR','shop_order',0.00000000,130.00000000,0,'laurentpvcapelo@gmail.com','2025-06-05 07:44:45','2025-06-09 10:59:56',0,'','','cs_live_b1PVvGzhCZzxaRp4uSOYQcsRnC1RuZlyZoFqK0LZJQo2zkoU41vdXerJkw','','',''), -(981,'wc-pending','EUR','shop_order',0.00000000,170.00000000,0,NULL,'2025-06-20 10:13:00','2025-06-20 10:13:00',0,'','','','','',''), -(997,'wc-processing','EUR','shop_order',0.00000000,130.00000000,0,NULL,'2025-06-21 09:54:31','2025-06-21 09:56:07',0,'','','cs_live_b1sjjD9YUm2JJIRUEYnmIQVeqq5HJg4fA08WLC163mheZO7PdHRO2Po4qk','','',''), -(998,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,NULL,'2025-06-21 12:43:50','2025-06-21 12:43:51',0,'','','','','',''), -(999,'wc-pending','EUR','shop_order',0.00000000,100.00000000,0,NULL,'2025-06-21 12:54:52','2025-06-21 12:54:52',0,'','','','','',''), -(1000,'wc-pending','EUR','shop_order',0.00000000,165.00000000,0,NULL,'2025-06-21 12:58:23','2025-06-21 12:58:23',0,'','','','','',''); -/*!40000 ALTER TABLE `haikuwp_wc_orders` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_orders_meta` --- - -DROP TABLE IF EXISTS `haikuwp_wc_orders_meta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_orders_meta` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned DEFAULT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` text DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)), - KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82)) -) ENGINE=InnoDB AUTO_INCREMENT=399 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_orders_meta` --- - -LOCK TABLES `haikuwp_wc_orders_meta` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_orders_meta` VALUES -(190,861,'_billing_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE charlottegerard7@gmail.com 0498836916'), -(191,861,'_shipping_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE 0498836916'), -(192,862,'_billing_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR sofia.balducci99@gmail.com +393470972182'), -(193,862,'_shipping_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR +393470972182'), -(194,861,'_edit_lock','1732822840:1'), -(204,862,'_edit_lock','1733301301:1'), -(212,866,'_billing_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE claudia.vanvynckt@hotmail.fr 0478183560'), -(213,866,'_shipping_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE 0478183560'), -(214,867,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), -(215,867,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE +32489578514'), -(216,868,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), -(217,868,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE +32489578514'), -(218,866,'_edit_lock','1732990774:1'), -(219,868,'_edit_lock','1741777158:1'), -(220,869,'_billing_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR maroufin.claire@gmail.com +33681223295'), -(221,869,'_shipping_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR +33681223295'), -(222,870,'_billing_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR gilquinpeggy@gmail.com +33663293145'), -(223,870,'_shipping_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR +33663293145'), -(224,871,'_billing_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR v.cubier@gmail.com 0616154243'), -(225,871,'_shipping_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR 0616154243'), -(226,871,'_edit_lock','1733427652:1'), -(227,872,'_billing_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE choploone@gmail.com 0498508266'), -(228,872,'_shipping_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE 0498508266'), -(229,872,'_edit_lock','1733769475:1'), -(230,873,'_billing_address_index','Maren Sigge Av. G. E. Lebon, 24, BP 3 Auderghem Belgium 1160 BE maren.sigge@gmail.com +32489439874'), -(231,873,'_shipping_address_index','Viviane Antoine Chaussée de Givet 33 Mariembourg Belgium 5660 BE +32489439874'), -(232,869,'_edit_lock','1734160497:1'), -(233,873,'_edit_lock','1733386487:1'), -(239,876,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(240,876,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(241,877,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(242,877,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(243,878,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(244,878,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(245,879,'_billing_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE julien.martial@hotmail.com 0472585911'), -(246,879,'_shipping_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE 0472585911'), -(247,879,'_edit_lock','1734041227:1'), -(248,880,'_billing_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR c.saquetbossu@orange.fr 0685532210'), -(249,880,'_shipping_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR 0685532210'), -(250,879,'tracking_number','10622472'), -(251,878,'_edit_lock','1734256732:1'), -(252,878,'tracking_number','10622471'), -(253,881,'_billing_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH lili.chabin@gmail.com +41786229221'), -(254,881,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH +41786229221'), -(255,881,'_edit_lock','1734817565:1'), -(266,880,'_edit_lock','1740486386:1'), -(267,884,'_billing_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR vsmarchand24@gmail.com +33612102273'), -(268,884,'_shipping_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR +33612102273'), -(269,876,'_edit_lock','1734255312:1'), -(270,880,'tracking_number','10727218'), -(271,884,'_edit_lock','1738615854:1'), -(272,885,'_billing_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE antoine.der92@gmail.com 0474183450'), -(273,885,'_shipping_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE 0474183450'), -(274,884,'tracking_number','10776780'), -(275,881,'tracking_number',''), -(276,886,'_billing_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR ella_cherry@hotmail.fr 06 77 32 66 50'), -(277,886,'_shipping_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR 06 77 32 66 50'), -(278,886,'_edit_lock','1734542336:1'), -(279,887,'_billing_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR elsa.dumontel@gmail.com 0642985078'), -(280,887,'_shipping_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR 0642985078'), -(281,886,'tracking_number','10831148'), -(282,885,'_edit_lock','1734545250:1'), -(283,885,'tracking_number',''), -(284,887,'_edit_lock','1736762840:1'), -(285,888,'_billing_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH lili.chabin@gmail.com +41786229221'), -(286,888,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH +41786229221'), -(287,888,'_edit_lock','1735490132:1'), -(288,888,'tracking_number','RN600242900BE'), -(289,889,'_billing_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR melian.jacob@free.fr 0670745455'), -(290,889,'_shipping_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR 0670745455'), -(291,889,'_edit_lock','1735646345:1'), -(292,890,'_refund_amount','12.00'), -(293,890,'_refunded_by','1'), -(294,890,'_refunded_payment',''), -(295,890,'_refund_reason','Free shipping'), -(296,891,'_refund_amount','100.00'), -(297,891,'_refunded_by','1'), -(298,891,'_refunded_payment',''), -(299,891,'_refund_reason',''), -(300,892,'_billing_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR camillelacroix715@gmail.com 0681659460'), -(301,892,'_shipping_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR 0681659460'), -(302,889,'tracking_number','10996113'), -(303,887,'tracking_number','10851363'), -(304,893,'_billing_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), -(305,893,'_shipping_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), -(306,894,'_billing_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), -(307,894,'_shipping_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), -(308,894,'_edit_lock','1736261796:1'), -(309,894,'tracking_number','11114755'), -(310,895,'_billing_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR tiberi.marine@gmail.com +33602079136'), -(311,895,'_shipping_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR +33602079136'), -(312,895,'_edit_lock','1737668991:1'), -(313,895,'tracking_number','11206531'), -(314,896,'_refund_amount','95.00'), -(315,896,'_refunded_by','1'), -(316,896,'_refunded_payment',''), -(317,896,'_refund_reason',''), -(318,897,'_billing_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR alicetabernat@yahoo.fr 0770426206'), -(319,897,'_shipping_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR 0770426206'), -(320,898,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), -(321,898,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), -(322,899,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), -(323,899,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), -(324,897,'_edit_lock','1738604185:1'), -(325,899,'_edit_lock','1739726026:1'), -(326,897,'tracking_number','11516644'), -(327,899,'tracking_number','11516643'), -(328,900,'_billing_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR parisnoune@gmail.com 0670423158'), -(329,900,'_shipping_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR 0670423158'), -(330,901,'_billing_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE owenoneill2727@gmail.com +353852179564'), -(331,901,'_shipping_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE +353852179564'), -(332,901,'_edit_lock','1740762785:1'), -(333,902,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), -(334,902,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), -(335,903,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), -(336,903,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), -(337,903,'_edit_lock','1741249420:1'), -(338,903,'tracking_number','11864885'), -(339,904,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), -(340,904,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), -(341,905,'_billing_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR amelie.grx@gmail.com 0667102260'), -(342,905,'_shipping_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR 0667102260'), -(343,906,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), -(344,906,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), -(345,907,'_billing_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR raphael.kuderpro@gmail.com 0783260894'), -(346,907,'_shipping_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR 0783260894'), -(347,905,'_edit_lock','1741249495:1'), -(348,905,'tracking_number','11941129'), -(349,906,'_edit_lock','1741249538:1'), -(350,906,'tracking_number','11941130'), -(351,907,'_edit_lock','1743510857:1'), -(352,907,'tracking_number','12069441'), -(353,908,'_billing_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR evemarie.redouin@gmail.com 0642769155'), -(354,908,'_shipping_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR 0642769155'), -(355,908,'_edit_lock','1743748901:1'), -(356,908,'tracking_number','12337845'), -(357,909,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), -(358,909,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), -(359,910,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), -(360,910,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), -(361,911,'_billing_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR lol@mdr.fr 0603436016'), -(362,911,'_shipping_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR 0603436016'), -(363,912,'_billing_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR crack_one@hotmail.fr +33695854956'), -(364,912,'_shipping_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR +33695854956'), -(365,919,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(366,919,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(367,920,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(368,920,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(369,921,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(370,921,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(371,922,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(372,922,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(373,910,'_edit_lock','1746970534:1'), -(374,910,'tracking_number',''), -(375,921,'_edit_lock','1747374867:1'), -(376,912,'_edit_lock','1747374841:1'), -(377,912,'tracking_number','12910308'), -(378,921,'tracking_number','12910309'), -(379,923,'_billing_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE zafiria.efstratiadi@hotmail.com 0474918430'), -(380,923,'_shipping_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE 0474918430'), -(381,924,'_billing_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR laurentpvcapelo@gmail.com +33646234205'), -(382,924,'_shipping_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR +33646234205'), -(383,924,'_edit_lock','1750509714:1'), -(384,924,'tracking_number','13228029'), -(385,981,'_billing_address_index',' '), -(386,981,'_shipping_address_index',' '), -(387,997,'_billing_address_index',' '), -(388,997,'_shipping_address_index',' '), -(389,997,'_edit_lock','1750509804:1'), -(390,998,'_billing_address_index',' '), -(391,998,'_shipping_address_index',' '), -(392,998,'_edit_lock','1750514661:1'), -(393,999,'_billing_address_index',' '), -(394,999,'_shipping_address_index',' '), -(395,999,'_edit_lock','1750510551:1'), -(396,1000,'_billing_address_index',' '), -(397,1000,'_shipping_address_index',' '), -(398,1000,'_edit_lock','1750510720:1'); -/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_attributes_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_attributes_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_attributes_lookup` ( - `product_id` bigint(20) NOT NULL, - `product_or_parent_id` bigint(20) NOT NULL, - `taxonomy` varchar(32) NOT NULL, - `term_id` bigint(20) NOT NULL, - `is_variation_attribute` tinyint(1) NOT NULL, - `in_stock` tinyint(1) NOT NULL, - PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`), - KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_attributes_lookup` --- - -LOCK TABLES `haikuwp_wc_product_attributes_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_attributes_lookup` VALUES -(73,72,'pa_size',37,1,1), -(74,72,'pa_size',38,1,1), -(75,72,'pa_size',39,1,1), -(76,72,'pa_size',40,1,1), -(77,72,'pa_size',41,1,1), -(78,72,'pa_size',42,1,1), -(79,72,'pa_size',43,1,1), -(103,102,'pa_size',37,1,1), -(104,102,'pa_size',38,1,1), -(105,102,'pa_size',39,1,1), -(106,102,'pa_size',40,1,1), -(107,102,'pa_size',41,1,1), -(108,102,'pa_size',42,1,1), -(109,102,'pa_size',43,1,1), -(528,102,'pa_size',44,1,1), -(114,113,'pa_size',37,1,1), -(115,113,'pa_size',38,1,1), -(116,113,'pa_size',39,1,1), -(117,113,'pa_size',40,1,1), -(118,113,'pa_size',41,1,1), -(119,113,'pa_size',42,1,1), -(120,113,'pa_size',43,1,1), -(529,113,'pa_size',44,1,1), -(124,123,'pa_size',37,1,1), -(125,123,'pa_size',38,1,1), -(126,123,'pa_size',39,1,1), -(127,123,'pa_size',40,1,1), -(128,123,'pa_size',41,1,1), -(129,123,'pa_size',42,1,1), -(130,123,'pa_size',43,1,1), -(530,123,'pa_size',44,1,1), -(134,133,'pa_size',37,1,1), -(135,133,'pa_size',38,1,1), -(136,133,'pa_size',39,1,1), -(137,133,'pa_size',40,1,1), -(138,133,'pa_size',41,1,1), -(139,133,'pa_size',42,1,1), -(140,133,'pa_size',43,1,1), -(532,133,'pa_size',44,1,1), -(201,168,'pa_stone',48,1,1), -(200,168,'pa_stone',49,1,1), -(566,183,'pa_side',45,1,1), -(565,183,'pa_side',71,1,1), -(567,183,'pa_side',72,1,1), -(638,202,'pa_side',45,1,1), -(637,202,'pa_side',77,1,1), -(639,202,'pa_side',78,1,1), -(570,213,'pa_side',45,1,1), -(569,213,'pa_side',71,1,1), -(571,213,'pa_side',72,1,1), -(241,240,'pa_size',58,1,1), -(242,240,'pa_size',59,1,1), -(642,285,'pa_side',45,1,1), -(641,285,'pa_side',77,1,1), -(643,285,'pa_side',78,1,1), -(646,288,'pa_side',45,1,1), -(645,288,'pa_side',77,1,1), -(647,288,'pa_side',78,1,1), -(652,306,'pa_side',45,1,1), -(651,306,'pa_side',62,1,1), -(653,306,'pa_side',64,1,1), -(655,312,'pa_side',45,1,1), -(654,312,'pa_side',62,1,1), -(656,312,'pa_side',64,1,1), -(561,342,'pa_side',62,1,1), -(562,342,'pa_side',63,1,1), -(563,342,'pa_side',64,1,1), -(560,342,'pa_side',76,1,1), -(392,385,'pa_stone',48,1,1), -(391,385,'pa_stone',68,1,1), -(389,385,'pa_stone',69,1,1), -(393,393,'pa_side',45,0,1), -(393,393,'pa_side',66,0,1), -(398,398,'pa_side',45,0,1), -(398,398,'pa_side',66,0,1), -(494,490,'pa_side',45,1,1), -(493,490,'pa_side',77,1,1), -(495,490,'pa_side',78,1,1), -(515,515,'pa_stone',48,0,1), -(515,515,'pa_stone',73,0,1), -(523,521,'pa_stone',48,1,1), -(926,521,'pa_stone',79,1,1), -(553,545,'pa_side',45,1,1), -(552,545,'pa_side',66,1,1), -(555,554,'pa_side',45,1,1), -(556,554,'pa_side',66,1,1), -(614,613,'pa_size',37,1,1), -(615,613,'pa_size',38,1,1), -(616,613,'pa_size',39,1,1), -(617,613,'pa_size',40,1,1), -(618,613,'pa_size',41,1,1), -(619,613,'pa_size',42,1,1), -(620,613,'pa_size',43,1,1), -(624,613,'pa_size',44,1,1), -(626,625,'pa_size',37,1,1), -(627,625,'pa_size',38,1,1), -(628,625,'pa_size',39,1,1), -(629,625,'pa_size',40,1,1), -(630,625,'pa_size',41,1,1), -(631,625,'pa_size',42,1,1), -(632,625,'pa_size',43,1,1), -(633,625,'pa_size',44,1,1), -(767,766,'pa_side',45,1,1), -(768,766,'pa_side',62,1,1), -(775,766,'pa_side',63,1,1), -(944,941,'pa_size',37,1,1), -(945,941,'pa_size',38,1,1), -(946,941,'pa_size',39,1,1), -(947,941,'pa_size',40,1,1), -(948,941,'pa_size',41,1,1), -(949,941,'pa_size',42,1,1), -(950,941,'pa_size',43,1,1), -(951,941,'pa_size',44,1,1), -(954,953,'pa_size',37,1,1), -(955,953,'pa_size',38,1,1), -(956,953,'pa_size',39,1,1), -(957,953,'pa_size',40,1,1), -(958,953,'pa_size',41,1,1), -(959,953,'pa_size',42,1,1), -(960,953,'pa_size',43,1,1), -(961,953,'pa_size',44,1,1), -(982,982,'pa_size',37,0,1), -(982,982,'pa_size',38,0,1), -(982,982,'pa_size',39,0,1), -(982,982,'pa_size',40,0,1), -(982,982,'pa_size',41,0,1), -(982,982,'pa_size',42,0,1), -(982,982,'pa_size',43,0,1), -(982,982,'pa_size',44,0,1), -(994,994,'pa_size',37,0,1), -(994,994,'pa_size',38,0,1), -(994,994,'pa_size',39,0,1), -(994,994,'pa_size',40,0,1), -(994,994,'pa_size',41,0,1), -(994,994,'pa_size',42,0,1), -(994,994,'pa_size',43,0,1), -(994,994,'pa_size',44,0,1); -/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_download_directories` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_download_directories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_download_directories` ( - `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `url` varchar(256) NOT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`url_id`), - KEY `url` (`url`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_download_directories` --- - -LOCK TABLES `haikuwp_wc_product_download_directories` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_meta_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_meta_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_meta_lookup` ( - `product_id` bigint(20) NOT NULL, - `sku` varchar(100) DEFAULT '', - `virtual` tinyint(1) DEFAULT 0, - `downloadable` tinyint(1) DEFAULT 0, - `min_price` decimal(19,4) DEFAULT NULL, - `max_price` decimal(19,4) DEFAULT NULL, - `onsale` tinyint(1) DEFAULT 0, - `stock_quantity` double DEFAULT NULL, - `stock_status` varchar(100) DEFAULT 'instock', - `rating_count` bigint(20) DEFAULT 0, - `average_rating` decimal(3,2) DEFAULT 0.00, - `total_sales` bigint(20) DEFAULT 0, - `tax_status` varchar(100) DEFAULT 'taxable', - `tax_class` varchar(100) DEFAULT '', - `global_unique_id` varchar(100) DEFAULT '', - PRIMARY KEY (`product_id`), - KEY `virtual` (`virtual`), - KEY `downloadable` (`downloadable`), - KEY `stock_status` (`stock_status`), - KEY `stock_quantity` (`stock_quantity`), - KEY `onsale` (`onsale`), - KEY `min_max_price` (`min_price`,`max_price`), - KEY `sku` (`sku`(50)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_meta_lookup` --- - -LOCK TABLES `haikuwp_wc_product_meta_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_meta_lookup` VALUES -(20,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(22,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(23,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(25,NULL,0,0,20.0000,20.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(28,NULL,0,0,65.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(29,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(30,NULL,0,0,65.0000,65.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(35,NULL,0,0,62.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(36,NULL,0,0,68.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(37,NULL,0,0,62.0000,62.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(41,NULL,0,0,72.0000,72.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(50,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(56,NULL,0,0,35.0000,35.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(60,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(65,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(66,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(67,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(68,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(69,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(70,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(71,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(72,'HADOU-B',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(73,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(74,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(75,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(76,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(77,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(78,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(79,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(102,'HADOU-B-s',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(103,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(104,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(105,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(106,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(107,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(108,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(109,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(113,'HADOU-B-g',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(114,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(115,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(116,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(117,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(118,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(119,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(120,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(123,'PIASU-B',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(124,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(125,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(126,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(127,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(128,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(129,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(130,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(133,'KARA-B',0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(134,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(135,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(136,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(137,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(138,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(139,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(140,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(144,'Kishou-B-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(145,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(146,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(147,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(148,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(149,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(150,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(151,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(155,'Kishou-B-g',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(156,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(157,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(158,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(159,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(160,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(161,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(162,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(168,'Rokku-B',0,0,100.0000,110.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(183,'BOROBORO-BO2-s',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(200,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(201,NULL,0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(202,'PIASU-BO',0,0,50.0000,85.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(213,'BOROBORO-BO2-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(240,'IKKAN-BR-s',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(241,'IKKAN-BR-s-1',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(242,'IKKAN-BR-s-2',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(246,'IKKAN-BR-g',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(247,'IKKAN-BR-g-1',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(248,'IKKAN-BR-g-2',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(251,'TANEMAKI-BR',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(258,'FUYOU-BR-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(261,'FUYOU-BR-g',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(263,'IKKAN-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(268,'PIASU-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(271,'TANEMAKI-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(274,'FUYOU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(285,'HATTARI-CR1-s',0,0,55.0000,85.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(288,'HATTARI-CR1-g',0,0,60.0000,90.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(306,'TAMANORI-CR-s',0,0,48.0000,70.0000,0,NULL,'instock',0,0.00,4,'taxable','',NULL), -(312,'TAMANORI-CR-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(318,'FUYOU-CR',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(325,'HADOU-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(328,'HADOU-EC-g',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(338,'PIASU-BRC',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(342,'KAGUN-BOP',0,0,30.0000,55.0000,0,NULL,'instock',0,0.00,7,'taxable','',NULL), -(385,'ROKKU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(389,'ROKKU-C-jaspe',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(391,'ROKKU-C-lapis',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(392,'ROKKU-C-tiger',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(393,'MUGURA-CR-s',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(398,'MUGURA-CR-g',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(430,'ROKKU-CR-s',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(433,'ROKKU-CR-g',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(435,'KARA-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(447,'KARA-EC-s-1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(478,'ROKKU-CR-g-lapis',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(479,'ROKKU-CR-g-malachite',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(480,'ROKKU-CR-g-tiger',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(490,'HADOU-BOP',0,0,35.0000,50.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(493,'HADOU-BOP-left',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(494,'HADOU-BOP-pair',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(495,'HADOU-BOP-right',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(496,'MUGURA-CR1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(515,'BOROBORO-BO1-g',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(521,'BOROBORO-BO1-s',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(523,'BOROBORO-BO1-s-brown',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(528,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(529,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(530,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(532,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(533,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(534,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(535,'BOROBORO-BELT',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(540,'BOROBORO-BLT-crystal',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(541,'BOROBORO-BLT-jade',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(545,'KARA-CR1-g',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(552,'KARA-CR-g-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(553,'KARA-CR-g-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(554,'KARA-CR1-s',0,0,40.0000,65.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(555,'KARA-CR-s-pair',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(556,'KARA-CR-s-one',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(560,'MUGURA-BOP-all',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(561,'MUGURA-BOP-long',0,0,38.0000,38.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(562,'MUGURA-BOP-medium',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(563,'MUGURA-BOP-short',0,0,30.0000,30.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(565,'BOROBORO-BO2-s-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(566,'BOROBORO-BO2-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(567,'BOROBORO-BO2-s-two',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(569,'BOROBORO-BO2-g-one',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(570,'BOROBORO-BO2-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(571,'BOROBORO-BO2-g-two',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(610,'HATTARI-BR',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(613,'BOROBORO-B2-g',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(614,'BOROBORO-B2-g-50',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(615,'BOROBORO-B2-g-52',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(616,'BOROBORO-B2-g-54',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(617,'BOROBORO-B2-g-56',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(618,'BOROBORO-B2-g-58',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(619,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(620,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(624,'BOROBORO-B2-g-60',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(625,'BOROBORO-B2-s',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(626,'BOROBORO-B2-s-50',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(627,'BOROBORO-B2-s-52',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(628,'BOROBORO-B2-s-54',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(629,'BOROBORO-B2-s-56',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(630,'BOROBORO-B2-s-58',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(631,'BOROBORO-B2-s-60',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(632,NULL,0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(633,'BOROBORO-B2-s-64',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(637,'PIASU-BO-left',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(638,'PIASU-BO-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(639,'PIASU-BO-right',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(641,'HATTARI-CR1-s-left',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(642,'HATTARI-CR1-s-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(643,'HATTARI-CR1-s-right',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(645,'HATTARI-CR1-g-left',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(646,'HATTARI-CR1-g-pair',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(647,'HATTARI-CR1-g-right',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(651,'TAMANORI-CR-s-long',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(652,'TAMANORI-CR-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(653,'TAMANORI-CR-s-short',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(654,'TAMANORI-CR-g-long',0,0,52.0000,52.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(655,'TAMANORI-CR-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(656,'TAMANORI-CR-g-short',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(766,'FUYOU-BO-s',0,0,55.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(767,'FUYOU-BO-s-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(768,'FUYOU-BO-s-long',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(775,'FUYOU-BO-s-mid',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(787,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(790,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(791,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(792,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(793,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(794,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(795,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(796,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(798,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(799,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(800,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(801,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(802,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(803,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(804,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(805,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(806,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(807,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(808,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(809,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(810,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(811,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(812,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(813,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(814,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(815,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(845,'ROKKU-CR-s-lapis',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(846,'ROKKU-CR-s-malachite',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(847,'ROKKU-CR-s-tiger',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(926,'BOROBORO-BO1-s-honey',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(941,'UTEKI-B-s',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(944,'UTEKI-B-s-50',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(945,'UTEKI-B-s-52',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(946,'UTEKI-B-s-54',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(947,'UTEKI-B-s-56',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(948,'UTEKI-B-s-58',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(949,'UTEKI-B-s-60',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(950,'UTEKI-B-s-62',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(951,'UTEKI-B-s-64',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(953,'UTEKI-B-g',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(954,'UTEKI-B-s-50-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(955,'UTEKI-B-s-52-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(956,'UTEKI-B-s-54-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(957,'UTEKI-B-s-56-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(958,'UTEKI-B-s-58-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(959,'UTEKI-B-s-60-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(960,'UTEKI-B-s-62-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(961,'UTEKI-B-s-64-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(982,'UTEKI-C-s',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(994,'UTEKI-C-g',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''); -/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_rate_limits` --- - -DROP TABLE IF EXISTS `haikuwp_wc_rate_limits`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_rate_limits` ( - `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `rate_limit_key` varchar(200) NOT NULL, - `rate_limit_expiry` bigint(20) unsigned NOT NULL, - `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`rate_limit_id`), - UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_rate_limits` --- - -LOCK TABLES `haikuwp_wc_rate_limits` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_reserved_stock` --- - -DROP TABLE IF EXISTS `haikuwp_wc_reserved_stock`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_reserved_stock` ( - `order_id` bigint(20) NOT NULL, - `product_id` bigint(20) NOT NULL, - `stock_quantity` double NOT NULL DEFAULT 0, - `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`order_id`,`product_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_reserved_stock` --- - -LOCK TABLES `haikuwp_wc_reserved_stock` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_tax_rate_classes` --- - -DROP TABLE IF EXISTS `haikuwp_wc_tax_rate_classes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_tax_rate_classes` ( - `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - PRIMARY KEY (`tax_rate_class_id`), - UNIQUE KEY `slug` (`slug`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_tax_rate_classes` --- - -LOCK TABLES `haikuwp_wc_tax_rate_classes` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_tax_rate_classes` VALUES -(1,'Reduced rate','reduced-rate'), -(2,'Zero rate','zero-rate'); -/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_webhooks` --- - -DROP TABLE IF EXISTS `haikuwp_wc_webhooks`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_webhooks` ( - `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `status` varchar(200) NOT NULL, - `name` text NOT NULL, - `user_id` bigint(20) unsigned NOT NULL, - `delivery_url` text NOT NULL, - `secret` text NOT NULL, - `topic` varchar(200) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `api_version` smallint(4) NOT NULL, - `failure_count` smallint(10) NOT NULL DEFAULT 0, - `pending_delivery` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`webhook_id`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_webhooks` --- - -LOCK TABLES `haikuwp_wc_webhooks` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_webhooks` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_webhooks` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_api_keys` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_api_keys`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_api_keys` ( - `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL, - `description` varchar(200) DEFAULT NULL, - `permissions` varchar(10) NOT NULL, - `consumer_key` char(64) NOT NULL, - `consumer_secret` char(43) NOT NULL, - `nonces` longtext DEFAULT NULL, - `truncated_key` char(7) NOT NULL, - `last_access` datetime DEFAULT NULL, - PRIMARY KEY (`key_id`), - KEY `consumer_key` (`consumer_key`), - KEY `consumer_secret` (`consumer_secret`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_api_keys` --- - -LOCK TABLES `haikuwp_woocommerce_api_keys` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_api_keys` VALUES -(3,1,'lecture-clients','read_write','5d6090d73adb9034e3ece67a7e0394110a40dc8da3d59244bc4e916e8fd16533','cs_e213979ea3d1490b275dd75c8d53d05c82853119',NULL,'3606954','2025-06-23 14:53:14'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_attribute_taxonomies` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_attribute_taxonomies`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_attribute_taxonomies` ( - `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `attribute_name` varchar(200) NOT NULL, - `attribute_label` varchar(200) DEFAULT NULL, - `attribute_type` varchar(20) NOT NULL, - `attribute_orderby` varchar(20) NOT NULL, - `attribute_public` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`attribute_id`), - KEY `attribute_name` (`attribute_name`(20)) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_attribute_taxonomies` --- - -LOCK TABLES `haikuwp_woocommerce_attribute_taxonomies` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_attribute_taxonomies` VALUES -(1,'size','Size','select','menu_order',0), -(2,'side','Side','select','menu_order',0), -(3,'stone','Stone','select','name',0); -/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_downloadable_product_permissions` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_downloadable_product_permissions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_downloadable_product_permissions` ( - `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `download_id` varchar(36) NOT NULL, - `product_id` bigint(20) unsigned NOT NULL, - `order_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `order_key` varchar(200) NOT NULL, - `user_email` varchar(200) NOT NULL, - `user_id` bigint(20) unsigned DEFAULT NULL, - `downloads_remaining` varchar(9) DEFAULT NULL, - `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `access_expires` datetime DEFAULT NULL, - `download_count` bigint(20) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`permission_id`), - KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), - KEY `download_order_product` (`download_id`,`order_id`,`product_id`), - KEY `order_id` (`order_id`), - KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_downloadable_product_permissions` --- - -LOCK TABLES `haikuwp_woocommerce_downloadable_product_permissions` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_log` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_log` ( - `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `timestamp` datetime NOT NULL, - `level` smallint(4) NOT NULL, - `source` varchar(200) NOT NULL, - `message` longtext NOT NULL, - `context` longtext DEFAULT NULL, - PRIMARY KEY (`log_id`), - KEY `level` (`level`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_log` --- - -LOCK TABLES `haikuwp_woocommerce_log` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_log` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_log` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_order_itemmeta` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_order_itemmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_order_itemmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_item_id` bigint(20) unsigned NOT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `order_item_id` (`order_item_id`), - KEY `meta_key` (`meta_key`(32)) -) ENGINE=InnoDB AUTO_INCREMENT=2219 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_order_itemmeta` --- - -LOCK TABLES `haikuwp_woocommerce_order_itemmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_order_itemmeta` VALUES -(1111,136,'_product_id','331'), -(1112,136,'_variation_id','0'), -(1113,136,'_qty','1'), -(1114,136,'_tax_class',''), -(1115,136,'_line_subtotal','35'), -(1116,136,'_line_subtotal_tax','0'), -(1117,136,'_line_total','35'), -(1118,136,'_line_tax','0'), -(1119,136,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1120,137,'method_id','mondial_relay_point_relais'), -(1121,137,'instance_id',''), -(1122,137,'cost','300'), -(1123,137,'total_tax','0'), -(1124,137,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1125,138,'_product_id','288'), -(1126,138,'_variation_id','646'), -(1127,138,'_qty','1'), -(1128,138,'_tax_class',''), -(1129,138,'_line_subtotal','80'), -(1130,138,'_line_subtotal_tax','0'), -(1131,138,'_line_total','80'), -(1132,138,'_line_tax','0'), -(1133,138,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1134,138,'pa_side','pair'), -(1135,139,'method_id','mondial_relay_point_relais'), -(1136,139,'instance_id',''), -(1137,139,'cost','0'), -(1138,139,'total_tax','0'), -(1139,139,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1195,147,'_product_id','251'), -(1196,147,'_variation_id','0'), -(1197,147,'_qty','1'), -(1198,147,'_tax_class',''), -(1199,147,'_line_subtotal','65'), -(1200,147,'_line_subtotal_tax','0'), -(1201,147,'_line_total','65'), -(1202,147,'_line_tax','0'), -(1203,147,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1204,148,'method_id','mondial_relay_point_relais'), -(1205,148,'instance_id',''), -(1206,148,'cost','0'), -(1207,148,'total_tax','0'), -(1208,148,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1209,149,'_product_id','258'), -(1210,149,'_variation_id','0'), -(1211,149,'_qty','1'), -(1212,149,'_tax_class',''), -(1213,149,'_line_subtotal','75'), -(1214,149,'_line_subtotal_tax','0'), -(1215,149,'_line_total','75'), -(1216,149,'_line_tax','0'), -(1217,149,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1218,150,'method_id','mondial_relay_point_relais'), -(1219,150,'instance_id',''), -(1220,150,'cost','0'), -(1221,150,'total_tax','0'), -(1222,150,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1223,151,'_product_id','251'), -(1224,151,'_variation_id','0'), -(1225,151,'_qty','1'), -(1226,151,'_tax_class',''), -(1227,151,'_line_subtotal','65'), -(1228,151,'_line_subtotal_tax','0'), -(1229,151,'_line_total','65'), -(1230,151,'_line_tax','0'), -(1231,151,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1232,152,'_product_id','271'), -(1233,152,'_variation_id','0'), -(1234,152,'_qty','1'), -(1235,152,'_tax_class',''), -(1236,152,'_line_subtotal','95'), -(1237,152,'_line_subtotal_tax','0'), -(1238,152,'_line_total','95'), -(1239,152,'_line_tax','0'), -(1240,152,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1241,153,'method_id','mondial_relay_point_relais'), -(1242,153,'instance_id',''), -(1243,153,'cost','0'), -(1244,153,'total_tax','0'), -(1245,153,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1246,154,'_product_id','202'), -(1247,154,'_variation_id','637'), -(1248,154,'_qty','1'), -(1249,154,'_tax_class',''), -(1250,154,'_line_subtotal','50'), -(1251,154,'_line_subtotal_tax','0'), -(1252,154,'_line_total','50'), -(1253,154,'_line_tax','0'), -(1254,154,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1255,154,'pa_side','left-side'), -(1256,155,'_product_id','291'), -(1257,155,'_variation_id','649'), -(1258,155,'_qty','1'), -(1259,155,'_tax_class',''), -(1260,155,'_line_subtotal','70'), -(1261,155,'_line_subtotal_tax','0'), -(1262,155,'_line_total','70'), -(1263,155,'_line_tax','0'), -(1264,155,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1265,155,'pa_side','pair'), -(1266,156,'method_id','mondial_relay_point_relais'), -(1267,156,'instance_id',''), -(1268,156,'cost','0'), -(1269,156,'total_tax','0'), -(1270,156,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1271,157,'_product_id','398'), -(1272,157,'_variation_id','0'), -(1273,157,'_qty','1'), -(1274,157,'_tax_class',''), -(1275,157,'_line_subtotal','65'), -(1276,157,'_line_subtotal_tax','0'), -(1277,157,'_line_total','65'), -(1278,157,'_line_tax','0'), -(1279,157,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1280,158,'method_id','mondial_relay_point_relais'), -(1281,158,'instance_id',''), -(1282,158,'cost','0'), -(1283,158,'total_tax','0'), -(1284,158,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1285,159,'_product_id','521'), -(1286,159,'_variation_id','523'), -(1287,159,'_qty','1'), -(1288,159,'_tax_class',''), -(1289,159,'_line_subtotal','60'), -(1290,159,'_line_subtotal_tax','0'), -(1291,159,'_line_total','60'), -(1292,159,'_line_tax','0'), -(1293,159,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1294,159,'pa_stone','tiger-eye'), -(1295,160,'_product_id','342'), -(1296,160,'_variation_id','563'), -(1297,160,'_qty','1'), -(1298,160,'_tax_class',''), -(1299,160,'_line_subtotal','25'), -(1300,160,'_line_subtotal_tax','0'), -(1301,160,'_line_total','25'), -(1302,160,'_line_tax','0'), -(1303,160,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1304,160,'pa_side','short'), -(1305,161,'_product_id','342'), -(1306,161,'_variation_id','560'), -(1307,161,'_qty','1'), -(1308,161,'_tax_class',''), -(1309,161,'_line_subtotal','58'), -(1310,161,'_line_subtotal_tax','0'), -(1311,161,'_line_total','58'), -(1312,161,'_line_tax','0'), -(1313,161,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1314,161,'pa_side','all'), -(1315,162,'method_id','mondial_relay_point_relais'), -(1316,162,'instance_id',''), -(1317,162,'cost','0'), -(1318,162,'total_tax','0'), -(1319,162,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1320,163,'_product_id','263'), -(1321,163,'_variation_id','0'), -(1322,163,'_qty','1'), -(1323,163,'_tax_class',''), -(1324,163,'_line_subtotal','90'), -(1325,163,'_line_subtotal_tax','0'), -(1326,163,'_line_total','90'), -(1327,163,'_line_tax','0'), -(1328,163,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1329,164,'method_id','mondial_relay_point_relais'), -(1330,164,'instance_id',''), -(1331,164,'cost','0'), -(1332,164,'total_tax','0'), -(1333,164,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1334,165,'_product_id','306'), -(1335,165,'_variation_id','652'), -(1336,165,'_qty','1'), -(1337,165,'_tax_class',''), -(1338,165,'_line_subtotal','70'), -(1339,165,'_line_subtotal_tax','0'), -(1340,165,'_line_total','70'), -(1341,165,'_line_tax','0'), -(1342,165,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1343,165,'pa_side','pair'), -(1344,166,'_product_id','183'), -(1345,166,'_variation_id','566'), -(1346,166,'_qty','1'), -(1347,166,'_tax_class',''), -(1348,166,'_line_subtotal','70'), -(1349,166,'_line_subtotal_tax','0'), -(1350,166,'_line_total','70'), -(1351,166,'_line_tax','0'), -(1352,166,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1353,166,'pa_side','pair'), -(1354,167,'_product_id','274'), -(1355,167,'_variation_id','0'), -(1356,167,'_qty','1'), -(1357,167,'_tax_class',''), -(1358,167,'_line_subtotal','95'), -(1359,167,'_line_subtotal_tax','0'), -(1360,167,'_line_total','95'), -(1361,167,'_line_tax','0'), -(1362,167,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1363,168,'method_id','mondial_relay_point_relais'), -(1364,168,'instance_id',''), -(1365,168,'cost','0'), -(1366,168,'total_tax','0'), -(1367,168,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1396,173,'_product_id','288'), -(1397,173,'_variation_id','646'), -(1398,173,'_qty','1'), -(1399,173,'_tax_class',''), -(1400,173,'_line_subtotal','80'), -(1401,173,'_line_subtotal_tax','0'), -(1402,173,'_line_total','80'), -(1403,173,'_line_tax','0'), -(1404,173,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1405,173,'pa_side','pair'), -(1406,174,'method_id','mondial_relay_point_relais'), -(1407,174,'instance_id',''), -(1408,174,'cost','0'), -(1409,174,'total_tax','0'), -(1410,174,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1411,175,'_product_id','288'), -(1412,175,'_variation_id','646'), -(1413,175,'_qty','1'), -(1414,175,'_tax_class',''), -(1415,175,'_line_subtotal','80'), -(1416,175,'_line_subtotal_tax','0'), -(1417,175,'_line_total','80'), -(1418,175,'_line_tax','0'), -(1419,175,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1420,175,'pa_side','pair'), -(1421,176,'method_id','mondial_relay_point_relais'), -(1422,176,'instance_id',''), -(1423,176,'cost','0'), -(1424,176,'total_tax','0'), -(1425,176,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1426,177,'_product_id','288'), -(1427,177,'_variation_id','646'), -(1428,177,'_qty','1'), -(1429,177,'_tax_class',''), -(1430,177,'_line_subtotal','80'), -(1431,177,'_line_subtotal_tax','0'), -(1432,177,'_line_total','80'), -(1433,177,'_line_tax','0'), -(1434,177,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1435,177,'pa_side','pair'), -(1436,178,'_product_id','285'), -(1437,178,'_variation_id','642'), -(1438,178,'_qty','1'), -(1439,178,'_tax_class',''), -(1440,178,'_line_subtotal','75'), -(1441,178,'_line_subtotal_tax','0'), -(1442,178,'_line_total','75'), -(1443,178,'_line_tax','0'), -(1444,178,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1445,178,'pa_side','pair'), -(1446,179,'method_id','mondial_relay_point_relais'), -(1447,179,'instance_id',''), -(1448,179,'cost','0'), -(1449,179,'total_tax','0'), -(1450,179,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1451,180,'_product_id','312'), -(1452,180,'_variation_id','655'), -(1453,180,'_qty','1'), -(1454,180,'_tax_class',''), -(1455,180,'_line_subtotal','75'), -(1456,180,'_line_subtotal_tax','0'), -(1457,180,'_line_total','75'), -(1458,180,'_line_tax','0'), -(1459,180,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1460,180,'pa_side','pair'), -(1461,181,'method_id','mondial_relay_point_relais'), -(1462,181,'instance_id',''), -(1463,181,'cost','0'), -(1464,181,'total_tax','0'), -(1465,181,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1466,182,'_product_id','335'), -(1467,182,'_variation_id','0'), -(1468,182,'_qty','1'), -(1469,182,'_tax_class',''), -(1470,182,'_line_subtotal','40'), -(1471,182,'_line_subtotal_tax','0'), -(1472,182,'_line_total','40'), -(1473,182,'_line_tax','0'), -(1474,182,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1475,183,'_product_id','545'), -(1476,183,'_variation_id','553'), -(1477,183,'_qty','1'), -(1478,183,'_tax_class',''), -(1479,183,'_line_subtotal','60'), -(1480,183,'_line_subtotal_tax','0'), -(1481,183,'_line_total','60'), -(1482,183,'_line_tax','0'), -(1483,183,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1484,183,'pa_side','pair'), -(1485,184,'method_id','mondial_relay_point_relais'), -(1486,184,'instance_id',''), -(1487,184,'cost','0'), -(1488,184,'total_tax','0'), -(1489,184,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1490,185,'_product_id','306'), -(1491,185,'_variation_id','653'), -(1492,185,'_qty','1'), -(1493,185,'_tax_class',''), -(1494,185,'_line_subtotal','48'), -(1495,185,'_line_subtotal_tax','0'), -(1496,185,'_line_total','48'), -(1497,185,'_line_tax','0'), -(1498,185,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1499,185,'pa_side','short'), -(1500,186,'method_id','flat_rate'), -(1501,186,'instance_id',''), -(1502,186,'cost','1200'), -(1503,186,'total_tax','0'), -(1504,186,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1555,193,'_product_id','271'), -(1556,193,'_variation_id','0'), -(1557,193,'_qty','1'), -(1558,193,'_tax_class',''), -(1559,193,'_line_subtotal','95'), -(1560,193,'_line_subtotal_tax','0'), -(1561,193,'_line_total','95'), -(1562,193,'_line_tax','0'), -(1563,193,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1564,194,'method_id','mondial_relay_point_relais'), -(1565,194,'instance_id',''), -(1566,194,'cost','0'), -(1567,194,'total_tax','0'), -(1568,194,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1569,195,'_product_id','288'), -(1570,195,'_variation_id','646'), -(1571,195,'_qty','1'), -(1572,195,'_tax_class',''), -(1573,195,'_line_subtotal','80'), -(1574,195,'_line_subtotal_tax','0'), -(1575,195,'_line_total','80'), -(1576,195,'_line_tax','0'), -(1577,195,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1578,195,'pa_side','pair'), -(1579,196,'method_id','mondial_relay_point_relais'), -(1580,196,'instance_id',''), -(1581,196,'cost','0'), -(1582,196,'total_tax','0'), -(1583,196,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1584,197,'_product_id','545'), -(1585,197,'_variation_id','553'), -(1586,197,'_qty','1'), -(1587,197,'_tax_class',''), -(1588,197,'_line_subtotal','60'), -(1589,197,'_line_subtotal_tax','0'), -(1590,197,'_line_total','60'), -(1591,197,'_line_tax','0'), -(1592,197,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1593,197,'pa_side','pair'), -(1594,198,'_product_id','490'), -(1595,198,'_variation_id','494'), -(1596,198,'_qty','1'), -(1597,198,'_tax_class',''), -(1598,198,'_line_subtotal','45'), -(1599,198,'_line_subtotal_tax','0'), -(1600,198,'_line_total','45'), -(1601,198,'_line_tax','0'), -(1602,198,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1603,198,'pa_side','pair'), -(1604,199,'method_id','mondial_relay_point_relais'), -(1605,199,'instance_id',''), -(1606,199,'cost','0'), -(1607,199,'total_tax','0'), -(1608,199,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1609,200,'_product_id','365'), -(1610,200,'_variation_id','677'), -(1611,200,'_qty','1'), -(1612,200,'_tax_class',''), -(1613,200,'_line_subtotal','60'), -(1614,200,'_line_subtotal_tax','0'), -(1615,200,'_line_total','60'), -(1616,200,'_line_tax','0'), -(1617,200,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1618,200,'pa_side','pair'), -(1619,201,'method_id','mondial_relay_point_relais'), -(1620,201,'instance_id',''), -(1621,201,'cost','0'), -(1622,201,'total_tax','0'), -(1623,201,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1624,202,'_product_id','306'), -(1625,202,'_variation_id','651'), -(1626,202,'_qty','1'), -(1627,202,'_tax_class',''), -(1628,202,'_line_subtotal','50'), -(1629,202,'_line_subtotal_tax','0'), -(1630,202,'_line_total','50'), -(1631,202,'_line_tax','0'), -(1632,202,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1633,202,'pa_side','long'), -(1634,203,'method_id','flat_rate'), -(1635,203,'instance_id',''), -(1636,203,'cost','12'), -(1637,203,'total_tax','0'), -(1638,203,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1639,204,'_product_id','325'), -(1640,204,'_variation_id','0'), -(1641,204,'_qty','1'), -(1642,204,'_tax_class',''), -(1643,204,'_line_subtotal','35'), -(1644,204,'_line_subtotal_tax','0'), -(1645,204,'_line_total','35'), -(1646,204,'_line_tax','0'), -(1647,204,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1648,205,'_product_id','554'), -(1649,205,'_variation_id','555'), -(1650,205,'_qty','1'), -(1651,205,'_tax_class',''), -(1652,205,'_line_subtotal','55'), -(1653,205,'_line_subtotal_tax','0'), -(1654,205,'_line_total','55'), -(1655,205,'_line_tax','0'), -(1656,205,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1657,205,'pa_side','pair'), -(1658,206,'_product_id','435'), -(1659,206,'_variation_id','0'), -(1660,206,'_qty','1'), -(1661,206,'_tax_class',''), -(1662,206,'_line_subtotal','35'), -(1663,206,'_line_subtotal_tax','0'), -(1664,206,'_line_total','35'), -(1665,206,'_line_tax','0'), -(1666,206,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1667,207,'_product_id','521'), -(1668,207,'_variation_id','523'), -(1669,207,'_qty','1'), -(1670,207,'_tax_class',''), -(1671,207,'_line_subtotal','60'), -(1672,207,'_line_subtotal_tax','0'), -(1673,207,'_line_total','60'), -(1674,207,'_line_tax','0'), -(1675,207,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1676,207,'pa_stone','tiger-eye'), -(1677,208,'_product_id','251'), -(1678,208,'_variation_id','0'), -(1679,208,'_qty','1'), -(1680,208,'_tax_class',''), -(1681,208,'_line_subtotal','65'), -(1682,208,'_line_subtotal_tax','0'), -(1683,208,'_line_total','65'), -(1684,208,'_line_tax','0'), -(1685,208,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1686,209,'method_id','mondial_relay_point_relais'), -(1687,209,'instance_id',''), -(1688,209,'cost','0'), -(1689,209,'total_tax','0'), -(1690,209,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1691,210,'_product_id','554'), -(1692,210,'_variation_id','555'), -(1693,210,'_qty','1'), -(1694,210,'_tax_class',''), -(1695,210,'_line_subtotal','55'), -(1696,210,'_line_subtotal_tax','0'), -(1697,210,'_line_total','55'), -(1698,210,'_line_tax','0'), -(1699,210,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1700,210,'pa_side','pair'), -(1701,211,'method_id','mondial_relay_point_relais'), -(1702,211,'instance_id',''), -(1703,211,'cost','0'), -(1704,211,'total_tax','0'), -(1705,211,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1706,212,'_product_id','335'), -(1707,212,'_variation_id','0'), -(1708,212,'_qty','1'), -(1709,212,'_tax_class',''), -(1710,212,'_line_subtotal','40'), -(1711,212,'_line_subtotal_tax','0'), -(1712,212,'_line_total','40'), -(1713,212,'_line_tax','0'), -(1714,212,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1715,213,'method_id','mondial_relay_point_relais'), -(1716,213,'instance_id',''), -(1717,213,'cost','3'), -(1718,213,'total_tax','0'), -(1719,213,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1720,214,'_product_id','331'), -(1721,214,'_variation_id','0'), -(1722,214,'_qty','1'), -(1723,214,'_tax_class',''), -(1724,214,'_line_subtotal','35'), -(1725,214,'_line_subtotal_tax','0'), -(1726,214,'_line_total','35'), -(1727,214,'_line_tax','0'), -(1728,214,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1729,215,'method_id','mondial_relay_point_relais'), -(1730,215,'instance_id',''), -(1731,215,'cost','3'), -(1732,215,'total_tax','0'), -(1733,215,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1734,216,'_product_id','202'), -(1735,216,'_variation_id','638'), -(1736,216,'_qty','1'), -(1737,216,'_tax_class',''), -(1738,216,'_line_subtotal','85'), -(1739,216,'_line_subtotal_tax','0'), -(1740,216,'_line_total','85'), -(1741,216,'_line_tax','0'), -(1742,216,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1743,216,'pa_side','pair'), -(1744,217,'_product_id','306'), -(1745,217,'_variation_id','652'), -(1746,217,'_qty','1'), -(1747,217,'_tax_class',''), -(1748,217,'_line_subtotal','70'), -(1749,217,'_line_subtotal_tax','0'), -(1750,217,'_line_total','70'), -(1751,217,'_line_tax','0'), -(1752,217,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1753,217,'pa_side','pair'), -(1754,218,'method_id','mondial_relay_point_relais'), -(1755,218,'instance_id',''), -(1756,218,'cost','0'), -(1757,218,'total_tax','0'), -(1758,218,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1759,219,'_product_id','291'), -(1760,219,'_variation_id','649'), -(1761,219,'_qty','1'), -(1762,219,'_tax_class',''), -(1763,219,'_line_subtotal','70'), -(1764,219,'_line_subtotal_tax','0'), -(1765,219,'_line_total','70'), -(1766,219,'_line_tax','0'), -(1767,219,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1768,219,'pa_side','pair'), -(1769,220,'method_id','mondial_relay_point_relais'), -(1770,220,'instance_id',''), -(1771,220,'cost','0'), -(1772,220,'total_tax','0'), -(1773,220,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1774,221,'_product_id','435'), -(1775,221,'_variation_id','0'), -(1776,221,'_qty','1'), -(1777,221,'_tax_class',''), -(1778,221,'_line_subtotal','35'), -(1779,221,'_line_subtotal_tax','0'), -(1780,221,'_line_total','35'), -(1781,221,'_line_tax','0'), -(1782,221,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1783,222,'method_id','mondial_relay_point_relais'), -(1784,222,'instance_id',''), -(1785,222,'cost','3'), -(1786,222,'total_tax','0'), -(1787,222,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1788,223,'_product_id','435'), -(1789,223,'_variation_id','0'), -(1790,223,'_qty','1'), -(1791,223,'_tax_class',''), -(1792,223,'_line_subtotal','35'), -(1793,223,'_line_subtotal_tax','0'), -(1794,223,'_line_total','35'), -(1795,223,'_line_tax','0'), -(1796,223,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1797,224,'method_id','mondial_relay_point_relais'), -(1798,224,'instance_id',''), -(1799,224,'cost','3'), -(1800,224,'total_tax','0'), -(1801,224,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1802,225,'_product_id','133'), -(1803,225,'_variation_id','135'), -(1804,225,'_qty','1'), -(1805,225,'_tax_class',''), -(1806,225,'_line_subtotal','150'), -(1807,225,'_line_subtotal_tax','0'), -(1808,225,'_line_total','150'), -(1809,225,'_line_tax','0'), -(1810,225,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1811,225,'pa_size','52'), -(1812,226,'method_id','mondial_relay_point_relais'), -(1813,226,'instance_id',''), -(1814,226,'cost','0'), -(1815,226,'total_tax','0'), -(1816,226,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1817,227,'_product_id','430'), -(1818,227,'_variation_id','845'), -(1819,227,'_qty','1'), -(1820,227,'_tax_class',''), -(1821,227,'_line_subtotal','45'), -(1822,227,'_line_subtotal_tax','0'), -(1823,227,'_line_total','45'), -(1824,227,'_line_tax','0'), -(1825,227,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1826,227,'pa_stone','lapis-lazuli'), -(1827,228,'method_id','mondial_relay_point_relais'), -(1828,228,'instance_id',''), -(1829,228,'cost','3'), -(1830,228,'total_tax','0'), -(1831,228,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1832,229,'_product_id','271'), -(1833,229,'_variation_id','0'), -(1834,229,'_qty','1'), -(1835,229,'_tax_class',''), -(1836,229,'_line_subtotal','95'), -(1837,229,'_line_subtotal_tax','0'), -(1838,229,'_line_total','95'), -(1839,229,'_line_tax','0'), -(1840,229,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1841,230,'method_id','mondial_relay_point_relais'), -(1842,230,'instance_id',''), -(1843,230,'cost','0'), -(1844,230,'total_tax','0'), -(1845,230,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1846,231,'_product_id','271'), -(1847,231,'_variation_id','0'), -(1848,231,'_qty','1'), -(1849,231,'_tax_class',''), -(1850,231,'_line_subtotal','95'), -(1851,231,'_line_subtotal_tax','0'), -(1852,231,'_line_total','95'), -(1853,231,'_line_tax','0'), -(1854,231,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1855,232,'method_id','mondial_relay_point_relais'), -(1856,232,'instance_id',''), -(1857,232,'cost','0'), -(1858,232,'total_tax','0'), -(1859,232,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1860,233,'_product_id','168'), -(1861,233,'_variation_id','200'), -(1862,233,'_qty','1'), -(1863,233,'_tax_class',''), -(1864,233,'_line_subtotal','150'), -(1865,233,'_line_subtotal_tax','0'), -(1866,233,'_line_total','150'), -(1867,233,'_line_tax','0'), -(1868,233,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1869,233,'pa_stone','malachite'), -(1870,234,'method_id','mondial_relay_point_relais'), -(1871,234,'instance_id',''), -(1872,234,'cost','0'), -(1873,234,'total_tax','0'), -(1874,234,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1875,235,'_product_id','274'), -(1876,235,'_variation_id','0'), -(1877,235,'_qty','1'), -(1878,235,'_tax_class',''), -(1879,235,'_line_subtotal','95'), -(1880,235,'_line_subtotal_tax','0'), -(1881,235,'_line_total','95'), -(1882,235,'_line_tax','0'), -(1883,235,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1884,236,'method_id','mondial_relay_point_relais'), -(1885,236,'instance_id',''), -(1886,236,'cost','0'), -(1887,236,'total_tax','0'), -(1888,236,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1889,237,'_product_id','168'), -(1890,237,'_variation_id','200'), -(1891,237,'_qty','1'), -(1892,237,'_tax_class',''), -(1893,237,'_line_subtotal','150'), -(1894,237,'_line_subtotal_tax','0'), -(1895,237,'_line_total','150'), -(1896,237,'_line_tax','0'), -(1897,237,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1898,237,'pa_stone','malachite'), -(1899,238,'method_id','mondial_relay_point_relais'), -(1900,238,'instance_id',''), -(1901,238,'cost','0'), -(1902,238,'total_tax','0'), -(1903,238,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1904,239,'_product_id','168'), -(1905,239,'_variation_id','200'), -(1906,239,'_qty','1'), -(1907,239,'_tax_class',''), -(1908,239,'_line_subtotal','150'), -(1909,239,'_line_subtotal_tax','0'), -(1910,239,'_line_total','150'), -(1911,239,'_line_tax','0'), -(1912,239,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1913,239,'pa_stone','malachite'), -(1914,240,'_product_id','447'), -(1915,240,'_variation_id','0'), -(1916,240,'_qty','1'), -(1917,240,'_tax_class',''), -(1918,240,'_line_subtotal','40'), -(1919,240,'_line_subtotal_tax','0'), -(1920,240,'_line_total','40'), -(1921,240,'_line_tax','0'), -(1922,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1923,241,'method_id','mondial_relay_point_relais'), -(1924,241,'instance_id',''), -(1925,241,'cost','0'), -(1926,241,'total_tax','0'), -(1927,241,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1928,242,'_product_id','342'), -(1929,242,'_variation_id','560'), -(1930,242,'_qty','1'), -(1931,242,'_tax_class',''), -(1932,242,'_line_subtotal','58'), -(1933,242,'_line_subtotal_tax','0'), -(1934,242,'_line_total','58'), -(1935,242,'_line_tax','0'), -(1936,242,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1937,242,'pa_side','all'), -(1938,243,'_product_id','433'), -(1939,243,'_variation_id','478'), -(1940,243,'_qty','1'), -(1941,243,'_tax_class',''), -(1942,243,'_line_subtotal','48'), -(1943,243,'_line_subtotal_tax','0'), -(1944,243,'_line_total','48'), -(1945,243,'_line_tax','0'), -(1946,243,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1947,243,'pa_stone','lapis-lazuli'), -(1948,244,'method_id','mondial_relay_point_relais'), -(1949,244,'instance_id',''), -(1950,244,'cost','0'), -(1951,244,'total_tax','0'), -(1952,244,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1953,245,'_product_id','328'), -(1954,245,'_variation_id','0'), -(1955,245,'_qty','1'), -(1956,245,'_tax_class',''), -(1957,245,'_line_subtotal','40'), -(1958,245,'_line_subtotal_tax','0'), -(1959,245,'_line_total','40'), -(1960,245,'_line_tax','0'), -(1961,245,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1962,246,'method_id','mondial_relay_point_relais'), -(1963,246,'instance_id',''), -(1964,246,'cost','3'), -(1965,246,'total_tax','0'), -(1966,246,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1967,247,'_product_id','328'), -(1968,247,'_variation_id','0'), -(1969,247,'_qty','1'), -(1970,247,'_tax_class',''), -(1971,247,'_line_subtotal','40'), -(1972,247,'_line_subtotal_tax','0'), -(1973,247,'_line_total','40'), -(1974,247,'_line_tax','0'), -(1975,247,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1976,248,'method_id','mondial_relay_point_relais'), -(1977,248,'instance_id',''), -(1978,248,'cost','3'), -(1979,248,'total_tax','0'), -(1980,248,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1981,249,'_product_id','625'), -(1982,249,'_variation_id','633'), -(1983,249,'_qty','1'), -(1984,249,'_tax_class',''), -(1985,249,'_line_subtotal','65'), -(1986,249,'_line_subtotal_tax','0'), -(1987,249,'_line_total','65'), -(1988,249,'_line_tax','0'), -(1989,249,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1990,249,'pa_size','64'), -(1991,250,'method_id','mondial_relay_point_relais'), -(1992,250,'instance_id',''), -(1993,250,'cost','0'), -(1994,250,'total_tax','0'), -(1995,250,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1996,251,'_product_id','318'), -(1997,251,'_variation_id','0'), -(1998,251,'_qty','1'), -(1999,251,'_tax_class',''), -(2000,251,'_line_subtotal','40'), -(2001,251,'_line_subtotal_tax','0'), -(2002,251,'_line_total','40'), -(2003,251,'_line_tax','0'), -(2004,251,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2005,252,'method_id','mondial_relay_point_relais'), -(2006,252,'instance_id',''), -(2007,252,'cost','3'), -(2008,252,'total_tax','0'), -(2009,252,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2010,253,'_product_id','490'), -(2011,253,'_variation_id','494'), -(2012,253,'_qty','1'), -(2013,253,'_tax_class',''), -(2014,253,'_line_subtotal','50'), -(2015,253,'_line_subtotal_tax','0'), -(2016,253,'_line_total','50'), -(2017,253,'_line_tax','0'), -(2018,253,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2019,253,'pa_side','pair'), -(2020,254,'_product_id','342'), -(2021,254,'_variation_id','563'), -(2022,254,'_qty','2'), -(2023,254,'_tax_class',''), -(2024,254,'_line_subtotal','60'), -(2025,254,'_line_subtotal_tax','0'), -(2026,254,'_line_total','60'), -(2027,254,'_line_tax','0'), -(2028,254,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2029,254,'pa_side','short'), -(2030,255,'method_id','mondial_relay_point_relais'), -(2031,255,'instance_id',''), -(2032,255,'cost','0'), -(2033,255,'total_tax','0'), -(2034,255,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2035,256,'_product_id','342'), -(2036,256,'_variation_id','563'), -(2037,256,'_qty','2'), -(2038,256,'_tax_class',''), -(2039,256,'_line_subtotal','60'), -(2040,256,'_line_subtotal_tax','0'), -(2041,256,'_line_total','60'), -(2042,256,'_line_tax','0'), -(2043,256,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2044,256,'pa_side','short'), -(2045,257,'method_id','mondial_relay_point_relais'), -(2046,257,'instance_id',''), -(2047,257,'cost','0'), -(2048,257,'total_tax','0'), -(2049,257,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2050,258,'_product_id','342'), -(2051,258,'_variation_id','563'), -(2052,258,'_qty','2'), -(2053,258,'_tax_class',''), -(2054,258,'_line_subtotal','60'), -(2055,258,'_line_subtotal_tax','0'), -(2056,258,'_line_total','60'), -(2057,258,'_line_tax','0'), -(2058,258,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2059,258,'pa_side','short'), -(2060,259,'method_id','mondial_relay_point_relais'), -(2061,259,'instance_id',''), -(2062,259,'cost','0'), -(2063,259,'total_tax','0'), -(2064,259,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2065,260,'_product_id','342'), -(2066,260,'_variation_id','563'), -(2067,260,'_qty','2'), -(2068,260,'_tax_class',''), -(2069,260,'_line_subtotal','60'), -(2070,260,'_line_subtotal_tax','0'), -(2071,260,'_line_total','60'), -(2072,260,'_line_tax','0'), -(2073,260,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2074,260,'pa_side','short'), -(2075,261,'method_id','mondial_relay_point_relais'), -(2076,261,'instance_id',''), -(2077,261,'cost','0'), -(2078,261,'total_tax','0'), -(2079,261,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2080,262,'_product_id','285'), -(2081,262,'_variation_id','642'), -(2082,262,'_qty','1'), -(2083,262,'_tax_class',''), -(2084,262,'_line_subtotal','80'), -(2085,262,'_line_subtotal_tax','0'), -(2086,262,'_line_total','80'), -(2087,262,'_line_tax','0'), -(2088,262,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2089,262,'pa_side','pair'), -(2090,263,'method_id','mondial_relay_point_relais'), -(2091,263,'instance_id',''), -(2092,263,'cost','0'), -(2093,263,'total_tax','0'), -(2094,263,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2095,264,'_product_id','447'), -(2096,264,'_variation_id','0'), -(2097,264,'_qty','1'), -(2098,264,'_tax_class',''), -(2099,264,'_line_subtotal','45'), -(2100,264,'_line_subtotal_tax','0'), -(2101,264,'_line_total','45'), -(2102,264,'_line_tax','0'), -(2103,264,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2104,265,'_product_id','435'), -(2105,265,'_variation_id','0'), -(2106,265,'_qty','1'), -(2107,265,'_tax_class',''), -(2108,265,'_line_subtotal','40'), -(2109,265,'_line_subtotal_tax','0'), -(2110,265,'_line_total','40'), -(2111,265,'_line_tax','0'), -(2112,265,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2113,266,'_product_id','328'), -(2114,266,'_variation_id','0'), -(2115,266,'_qty','1'), -(2116,266,'_tax_class',''), -(2117,266,'_line_subtotal','45'), -(2118,266,'_line_subtotal_tax','0'), -(2119,266,'_line_total','45'), -(2120,266,'_line_tax','0'), -(2121,266,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2122,267,'method_id','mondial_relay_point_relais'), -(2123,267,'instance_id',''), -(2124,267,'cost','0'), -(2125,267,'total_tax','0'), -(2126,267,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2127,268,'_product_id','766'), -(2128,268,'_variation_id','767'), -(2129,268,'_qty','2'), -(2130,268,'_tax_class',''), -(2131,268,'_line_subtotal','170'), -(2132,268,'_line_subtotal_tax','0'), -(2133,268,'_line_total','170'), -(2134,268,'_line_tax','0'), -(2135,268,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2136,268,'pa_side','pair'), -(2137,269,'method_id','mondial_relay_point_relais'), -(2138,269,'instance_id',''), -(2139,269,'cost','0'), -(2140,269,'total_tax','0'), -(2141,269,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2142,270,'_product_id','447'), -(2143,270,'_variation_id','0'), -(2144,270,'_qty','1'), -(2145,270,'_tax_class',''), -(2146,270,'_line_subtotal','45'), -(2147,270,'_line_subtotal_tax','0'), -(2148,270,'_line_total','45'), -(2149,270,'_line_tax','0'), -(2150,270,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2151,271,'_product_id','202'), -(2152,271,'_variation_id','638'), -(2153,271,'_qty','1'), -(2154,271,'_tax_class',''), -(2155,271,'_line_subtotal','85'), -(2156,271,'_line_subtotal_tax','0'), -(2157,271,'_line_total','85'), -(2158,271,'_line_tax','0'), -(2159,271,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2160,271,'pa_side','pair'), -(2161,272,'method_id','mondial_relay_point_relais'), -(2162,272,'instance_id',''), -(2163,272,'cost','0'), -(2164,272,'total_tax','0'), -(2165,272,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2166,273,'_product_id','625'), -(2167,273,'_variation_id','630'), -(2168,273,'_qty','1'), -(2169,273,'_tax_class',''), -(2170,273,'_line_subtotal','65'), -(2171,273,'_line_subtotal_tax','0'), -(2172,273,'_line_total','65'), -(2173,273,'_line_tax','0'), -(2174,273,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2175,273,'pa_size','58'), -(2176,274,'method_id','mondial_relay_point_relais'), -(2177,274,'instance_id',''), -(2178,274,'cost','0'), -(2179,274,'total_tax','0'), -(2180,274,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2181,275,'_product_id','994'), -(2182,275,'_variation_id','0'), -(2183,275,'_qty','1'), -(2184,275,'_tax_class',''), -(2185,275,'_line_subtotal','100'), -(2186,275,'_line_subtotal_tax','0'), -(2187,275,'_line_total','100'), -(2188,275,'_line_tax','0'), -(2189,275,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2190,276,'method_id','mondial_relay_point_relais'), -(2191,276,'instance_id',''), -(2192,276,'cost','0'), -(2193,276,'total_tax','0'), -(2194,276,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2195,277,'_product_id','625'), -(2196,277,'_variation_id','630'), -(2197,277,'_qty','1'), -(2198,277,'_tax_class',''), -(2199,277,'_line_subtotal','65'), -(2200,277,'_line_subtotal_tax','0'), -(2201,277,'_line_total','65'), -(2202,277,'_line_tax','0'), -(2203,277,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2204,277,'pa_size','58'), -(2205,278,'_product_id','994'), -(2206,278,'_variation_id','0'), -(2207,278,'_qty','1'), -(2208,278,'_tax_class',''), -(2209,278,'_line_subtotal','100'), -(2210,278,'_line_subtotal_tax','0'), -(2211,278,'_line_total','100'), -(2212,278,'_line_tax','0'), -(2213,278,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2214,279,'method_id','mondial_relay_point_relais'), -(2215,279,'instance_id',''), -(2216,279,'cost','0'), -(2217,279,'total_tax','0'), -(2218,279,'taxes','a:1:{s:5:\"total\";a:0:{}}'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_order_items` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_order_items`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_order_items` ( - `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_item_name` text NOT NULL, - `order_item_type` varchar(200) NOT NULL DEFAULT '', - `order_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`order_item_id`), - KEY `order_id` (`order_id`) -) ENGINE=InnoDB AUTO_INCREMENT=280 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_order_items` --- - -LOCK TABLES `haikuwp_woocommerce_order_items` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_order_items` VALUES -(136,'Hattari Ear Cuff silver','line_item',861), -(137,'Mondial Relay - Point Relais','shipping',861), -(138,'Hattari Stacked Hoops gold plated - pair','line_item',862), -(139,'Mondial Relay - Point Relais (Free)','shipping',862), -(147,'Tanemaki Bracelet','line_item',866), -(148,'Mondial Relay - Point Relais (Free)','shipping',866), -(149,'Fuyou Bracelet silver','line_item',867), -(150,'Mondial Relay - Point Relais (Free)','shipping',867), -(151,'Tanemaki Bracelet','line_item',868), -(152,'Tanemaki Necklace','line_item',868), -(153,'Mondial Relay - Point Relais (Free)','shipping',868), -(154,'Piasu Earrings - left side','line_item',869), -(155,'Hattari Double Hoops - pair','line_item',869), -(156,'Mondial Relay - Point Relais (Free)','shipping',869), -(157,'Mugura Hoops gold plated','line_item',870), -(158,'Mondial Relay - Point Relais (Free)','shipping',870), -(159,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',871), -(160,'Kagun Trio Earrings - short','line_item',871), -(161,'Kagun Trio Earrings - all','line_item',871), -(162,'Mondial Relay - Point Relais (Free)','shipping',871), -(163,'Ikkan Necklace','line_item',872), -(164,'Mondial Relay - Point Relais (Free)','shipping',872), -(165,'Tamanori Hoops silver - pair','line_item',873), -(166,'BoroBoro Long Earrings silver - pair','line_item',873), -(167,'Fuyou Necklace','line_item',873), -(168,'Mondial Relay - Point Relais (Free)','shipping',873), -(173,'Hattari Stacked Hoops gold plated - pair','line_item',876), -(174,'Mondial Relay - Point Relais (Free)','shipping',876), -(175,'Hattari Stacked Hoops gold plated - pair','line_item',877), -(176,'Mondial Relay - Point Relais (Free)','shipping',877), -(177,'Hattari Stacked Hoops gold plated - pair','line_item',878), -(178,'Hattari Stacked Hoops silver - pair','line_item',878), -(179,'Mondial Relay - Point Relais (Free)','shipping',878), -(180,'Tamanori Hoops gold plated - pair','line_item',879), -(181,'Mondial Relay - Point Relais (Free)','shipping',879), -(182,'Hattari Ear Cuff gold plated','line_item',880), -(183,'Kara Hoops gold plated - pair','line_item',880), -(184,'Mondial Relay - Point Relais (Free)','shipping',880), -(185,'Tamanori Hoops silver - short','line_item',881), -(186,'UPS Standard','shipping',881), -(193,'Tanemaki Necklace','line_item',884), -(194,'Mondial Relay - Point Relais (Free)','shipping',884), -(195,'Hattari Stacked Hoops gold plated - pair','line_item',885), -(196,'Mondial Relay - Point Relais (Free)','shipping',885), -(197,'Kara Hoops gold plated - pair','line_item',886), -(198,'Hadou Stud Earrings - pair','line_item',886), -(199,'Mondial Relay - Point Relais (Free)','shipping',886), -(200,'Mugura Earrings silver - pair','line_item',887), -(201,'Mondial Relay - Point Relais (Free)','shipping',887), -(202,'Tamanori Hoops silver - long','line_item',888), -(203,'UPS Standard','shipping',888), -(204,'Hadou Ear Cuff silver','line_item',889), -(205,'Kara Hoops silver - pair','line_item',889), -(206,'Kara Ear Cuff silver','line_item',889), -(207,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',889), -(208,'Tanemaki Bracelet','line_item',889), -(209,'Mondial Relay - Point Relais (Free)','shipping',889), -(210,'Kara Hoops silver - pair','line_item',892), -(211,'Mondial Relay - Point Relais (Free)','shipping',892), -(212,'Hattari Ear Cuff gold plated','line_item',893), -(213,'Mondial Relay - Point Relais','shipping',893), -(214,'Hattari Ear Cuff silver','line_item',894), -(215,'Mondial Relay - Point Relais','shipping',894), -(216,'Piasu Earrings - pair','line_item',895), -(217,'Tamanori Hoops silver - pair','line_item',895), -(218,'Mondial Relay - Point Relais (Free)','shipping',895), -(219,'Hattari Double Hoops - pair','line_item',897), -(220,'Mondial Relay - Point Relais (Free)','shipping',897), -(221,'Kara Ear Cuff silver','line_item',898), -(222,'Mondial Relay - Point Relais','shipping',898), -(223,'Kara Ear Cuff silver','line_item',899), -(224,'Mondial Relay - Point Relais','shipping',899), -(225,'Kara Ring - 52','line_item',900), -(226,'Mondial Relay - Point Relais (Free)','shipping',900), -(227,'Rokku Hoop silver - Lapis Lazuli','line_item',901), -(228,'Mondial Relay - Point Relais','shipping',901), -(229,'Tanemaki Necklace','line_item',902), -(230,'Mondial Relay - Point Relais (Free)','shipping',902), -(231,'Tanemaki Necklace','line_item',903), -(232,'Mondial Relay - Point Relais (Free)','shipping',903), -(233,'Rokku Ring - Malachite','line_item',904), -(234,'Mondial Relay - Point Relais (Free)','shipping',904), -(235,'Fuyou Necklace','line_item',905), -(236,'Mondial Relay - Point Relais (Free)','shipping',905), -(237,'Rokku Ring - Malachite','line_item',906), -(238,'Mondial Relay - Point Relais (Free)','shipping',906), -(239,'Rokku Ring - Malachite','line_item',907), -(240,'Kara Ear Cuff gold plated','line_item',907), -(241,'Mondial Relay - Point Relais (Free)','shipping',907), -(242,'Kagun Trio Earrings - all','line_item',908), -(243,'Rokku Hoop gold plated - Lapis Lazuli','line_item',908), -(244,'Mondial Relay - Point Relais (Free)','shipping',908), -(245,'Hadou Ear Cuff gold plated','line_item',909), -(246,'Mondial Relay - Point Relais','shipping',909), -(247,'Hadou Ear Cuff gold plated','line_item',910), -(248,'Mondial Relay - Point Relais','shipping',910), -(249,'BoroBoro Bead Ring silver - 64','line_item',911), -(250,'Mondial Relay - Point Relais (Free)','shipping',911), -(251,'Fuyou Hoop','line_item',912), -(252,'Mondial Relay - Point Relais','shipping',912), -(253,'Hadou Stud Earrings - pair','line_item',919), -(254,'Kagun Trio Earrings - short','line_item',919), -(255,'Mondial Relay - Point Relais (Free)','shipping',919), -(256,'Kagun Trio Earrings - short','line_item',920), -(257,'Mondial Relay - Point Relais (Free)','shipping',920), -(258,'Kagun Trio Earrings - short','line_item',921), -(259,'Mondial Relay - Point Relais (Free)','shipping',921), -(260,'Kagun Trio Earrings - short','line_item',922), -(261,'Mondial Relay - Point Relais (Free)','shipping',922), -(262,'Hattari Stacked Hoops silver - pair','line_item',923), -(263,'Mondial Relay - Point Relais (Free)','shipping',923), -(264,'Kara Ear Cuff gold plated','line_item',924), -(265,'Kara Ear Cuff silver','line_item',924), -(266,'Hadou Ear Cuff gold plated','line_item',924), -(267,'Mondial Relay - Point Relais (Free)','shipping',924), -(268,'Fuyou Long Earrings silver - pair','line_item',981), -(269,'Mondial Relay - Point Relais (Free)','shipping',981), -(270,'Kara Ear Cuff gold plated','line_item',997), -(271,'Piasu Earrings - pair','line_item',997), -(272,'Mondial Relay - Point Relais (Free)','shipping',997), -(273,'BoroBoro Bead Ring silver - 58','line_item',998), -(274,'Mondial Relay - Point Relais (Free)','shipping',998), -(275,'Uteki Necklace gold plated','line_item',999), -(276,'Mondial Relay - Point Relais (Free)','shipping',999), -(277,'BoroBoro Bead Ring silver - 58','line_item',1000), -(278,'Uteki Necklace gold plated','line_item',1000), -(279,'Mondial Relay - Point Relais (Free)','shipping',1000); -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_payment_tokenmeta` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokenmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_payment_tokenmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `payment_token_id` bigint(20) unsigned NOT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `payment_token_id` (`payment_token_id`), - KEY `meta_key` (`meta_key`(32)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_payment_tokenmeta` --- - -LOCK TABLES `haikuwp_woocommerce_payment_tokenmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_payment_tokens` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokens`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_payment_tokens` ( - `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `gateway_id` varchar(200) NOT NULL, - `token` text NOT NULL, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `type` varchar(200) NOT NULL, - `is_default` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`token_id`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_payment_tokens` --- - -LOCK TABLES `haikuwp_woocommerce_payment_tokens` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_sessions` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_sessions` ( - `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `session_key` char(32) NOT NULL, - `session_value` longtext NOT NULL, - `session_expiry` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`session_id`), - UNIQUE KEY `session_key` (`session_key`) -) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_sessions` --- - -LOCK TABLES `haikuwp_woocommerce_sessions` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_sessions` VALUES -(9,'t_7ed18253b31cbddff790c14b45ce30','a:12:{s:4:\"cart\";N;s:11:\"cart_totals\";N;s:15:\"applied_coupons\";N;s:22:\"coupon_discount_totals\";N;s:26:\"coupon_discount_tax_totals\";N;s:21:\"removed_cart_contents\";N;s:22:\"shipping_for_package_0\";s:498:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_5a822a2058bdf80c23b62be962b5ea82\";s:5:\"rates\";a:1:{s:28:\"mondial_relay_point_relais:6\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:28:\"mondial_relay_point_relais:6\";s:9:\"method_id\";s:26:\"mondial_relay_point_relais\";s:11:\"instance_id\";i:6;s:5:\"label\";s:35:\"Mondial Relay - Point Relais (Free)\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:0:{}}}}\";s:25:\"previous_shipping_methods\";s:56:\"a:1:{i:0;a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";s:6:\"a:0:{}\";s:8:\"customer\";s:965:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:7:\"Raphael\";s:9:\"last_name\";s:5:\"Kuder\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:12:\"+33783260894\";s:5:\"email\";s:26:\"raphael.kuderpro@gmail.com\";s:7:\"address\";s:30:\"140 boulevard de Ménilmontant\";s:9:\"address_1\";s:30:\"140 boulevard de Ménilmontant\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:5:\"Paris\";s:5:\"state\";s:3:\"IDF\";s:8:\"postcode\";s:5:\"75020\";s:7:\"country\";s:2:\"FR\";s:19:\"shipping_first_name\";s:7:\"Raphael\";s:18:\"shipping_last_name\";s:5:\"Kuder\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:12:\"+33783260894\";s:16:\"shipping_address\";s:30:\"140 boulevard de Ménilmontant\";s:18:\"shipping_address_1\";s:30:\"140 boulevard de Ménilmontant\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:5:\"Paris\";s:14:\"shipping_state\";s:3:\"IDF\";s:17:\"shipping_postcode\";s:5:\"75020\";s:16:\"shipping_country\";s:2:\"FR\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";s:22:\"order_awaiting_payment\";N;}',1750672309), -(24,'t_04404cabdca97cd8422d93b2c36a4d','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:738:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1750683364), -(26,'t_45201e11cad4019041d1e35136a36c','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:738:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1750776055), -(27,'1','a:11:{s:4:\"cart\";s:854:\"a:2:{s:32:\"b38f02426820647e98661a84bdebf520\";a:11:{s:3:\"key\";s:32:\"b38f02426820647e98661a84bdebf520\";s:10:\"product_id\";i:625;s:12:\"variation_id\";i:630;s:9:\"variation\";a:1:{s:17:\"attribute_pa_size\";s:2:\"58\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"d0a6a0d675df86860b86732d58c0f82d\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:65;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:65;s:8:\"line_tax\";d:0;}s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";a:11:{s:3:\"key\";s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";s:10:\"product_id\";i:994;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";d:0;}}\";s:11:\"cart_totals\";s:396:\"a:15:{s:8:\"subtotal\";s:3:\"165\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:3:\"165\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"165.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:22:\"shipping_for_package_0\";s:498:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_de354a7511dddc8f7ad645333e2384ee\";s:5:\"rates\";a:1:{s:28:\"mondial_relay_point_relais:6\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:28:\"mondial_relay_point_relais:6\";s:9:\"method_id\";s:26:\"mondial_relay_point_relais\";s:11:\"instance_id\";i:6;s:5:\"label\";s:35:\"Mondial Relay - Point Relais (Free)\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:0:{}}}}\";s:25:\"previous_shipping_methods\";s:56:\"a:1:{i:0;a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}}\";s:23:\"chosen_shipping_methods\";s:46:\"a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:8:\"customer\";s:780:\"a:28:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2025-05-09T18:07:27+02:00\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1750858371); -/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zone_locations` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_locations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zone_locations` ( - `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `zone_id` bigint(20) unsigned NOT NULL, - `location_code` varchar(200) NOT NULL, - `location_type` varchar(40) NOT NULL, - PRIMARY KEY (`location_id`), - KEY `zone_id` (`zone_id`), - KEY `location_type_code` (`location_type`(10),`location_code`(20)) -) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zone_locations` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zone_locations` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zone_locations` VALUES -(1,1,'BE','country'), -(2,1,'FR','country'), -(103,3,'DE','country'), -(104,3,'AT','country'), -(105,3,'ES','country'), -(106,3,'IT','country'), -(107,3,'LU','country'), -(108,3,'NL','country'), -(109,3,'PL','country'), -(110,3,'PT','country'), -(111,2,'AX','country'), -(112,2,'AL','country'), -(113,2,'AD','country'), -(114,2,'BY','country'), -(115,2,'BA','country'), -(116,2,'BG','country'), -(117,2,'HR','country'), -(118,2,'CZ','country'), -(119,2,'DK','country'), -(120,2,'EE','country'), -(121,2,'FO','country'), -(122,2,'FI','country'), -(123,2,'GI','country'), -(124,2,'GR','country'), -(125,2,'HU','country'), -(126,2,'IS','country'), -(127,2,'IE','country'), -(128,2,'LV','country'), -(129,2,'LI','country'), -(130,2,'LT','country'), -(131,2,'MT','country'), -(132,2,'MD','country'), -(133,2,'MC','country'), -(134,2,'ME','country'), -(135,2,'MK','country'), -(136,2,'NO','country'), -(137,2,'RO','country'), -(138,2,'SM','country'), -(139,2,'RS','country'), -(140,2,'SK','country'), -(141,2,'SI','country'), -(142,2,'SJ','country'), -(143,2,'SE','country'), -(144,2,'CH','country'), -(145,2,'TR','country'), -(146,2,'UA','country'), -(147,2,'NA','continent'), -(148,2,'OC','continent'), -(149,2,'SA','continent'), -(150,2,'AF','continent'), -(151,2,'AM','country'), -(152,2,'BD','country'), -(153,2,'BT','country'), -(154,2,'BN','country'), -(155,2,'KH','country'), -(156,2,'CX','country'), -(157,2,'CC','country'), -(158,2,'CY','country'), -(159,2,'GE','country'), -(160,2,'HK','country'), -(161,2,'IN','country'), -(162,2,'ID','country'), -(163,2,'IR','country'), -(164,2,'IQ','country'), -(165,2,'JP','country'), -(166,2,'JO','country'), -(167,2,'KZ','country'), -(168,2,'KG','country'), -(169,2,'LA','country'), -(170,2,'LB','country'), -(171,2,'MO','country'), -(172,2,'MY','country'), -(173,2,'MV','country'), -(174,2,'MN','country'), -(175,2,'MM','country'), -(176,2,'NP','country'), -(177,2,'OM','country'), -(178,2,'PK','country'), -(179,2,'PS','country'), -(180,2,'PH','country'), -(181,2,'SG','country'), -(182,2,'KR','country'), -(183,2,'LK','country'), -(184,2,'SY','country'), -(185,2,'TW','country'), -(186,2,'TJ','country'), -(187,2,'TH','country'), -(188,2,'TL','country'), -(189,2,'TM','country'), -(190,2,'UZ','country'), -(191,2,'VN','country'), -(192,2,'YE','country'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zone_methods` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_methods`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zone_methods` ( - `zone_id` bigint(20) unsigned NOT NULL, - `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `method_id` varchar(200) NOT NULL, - `method_order` bigint(20) unsigned NOT NULL, - `is_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`instance_id`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zone_methods` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zone_methods` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zone_methods` VALUES -(2,4,'ups_standard',2,1), -(3,5,'mondial_relay_point_relais',1,1), -(1,6,'mondial_relay_point_relais',2,1), -(2,7,'flat_rate',3,1), -(2,8,'free_shipping',1,1); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zones` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zones` ( - `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `zone_name` varchar(200) NOT NULL, - `zone_order` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`zone_id`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zones` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zones` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zones` VALUES -(1,'Belgique et France',0), -(2,'Reste',2), -(3,'Pays Mondial Relay',1); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_tax_rate_locations` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rate_locations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_tax_rate_locations` ( - `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `location_code` varchar(200) NOT NULL, - `tax_rate_id` bigint(20) unsigned NOT NULL, - `location_type` varchar(40) NOT NULL, - PRIMARY KEY (`location_id`), - KEY `tax_rate_id` (`tax_rate_id`), - KEY `location_type_code` (`location_type`(10),`location_code`(20)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_tax_rate_locations` --- - -LOCK TABLES `haikuwp_woocommerce_tax_rate_locations` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_tax_rates` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rates`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_tax_rates` ( - `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `tax_rate_country` varchar(2) NOT NULL DEFAULT '', - `tax_rate_state` varchar(200) NOT NULL DEFAULT '', - `tax_rate` varchar(8) NOT NULL DEFAULT '', - `tax_rate_name` varchar(200) NOT NULL DEFAULT '', - `tax_rate_priority` bigint(20) unsigned NOT NULL, - `tax_rate_compound` int(1) NOT NULL DEFAULT 0, - `tax_rate_shipping` int(1) NOT NULL DEFAULT 1, - `tax_rate_order` bigint(20) unsigned NOT NULL, - `tax_rate_class` varchar(200) NOT NULL DEFAULT '', - PRIMARY KEY (`tax_rate_id`), - KEY `tax_rate_country` (`tax_rate_country`), - KEY `tax_rate_state` (`tax_rate_state`(2)), - KEY `tax_rate_class` (`tax_rate_class`(10)), - KEY `tax_rate_priority` (`tax_rate_priority`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_tax_rates` --- - -LOCK TABLES `haikuwp_woocommerce_tax_rates` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpmailsmtp_debug_events` --- - -DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_debug_events`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpmailsmtp_debug_events` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `content` text DEFAULT NULL, - `initiator` text DEFAULT NULL, - `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpmailsmtp_debug_events` --- - -LOCK TABLES `haikuwp_wpmailsmtp_debug_events` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpmailsmtp_debug_events` VALUES -(1,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:49:12'), -(2,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:49:47'), -(3,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:50:39'), -(4,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:18'), -(5,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:42'), -(6,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:54:25'), -(7,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:56:03'), -(8,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:57:48'), -(9,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:31'), -(10,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:50'), -(11,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:55'), -(12,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:00:42'), -(13,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:03:45'), -(14,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:04:09'), -(15,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:06:02'), -(16,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:07:04'), -(17,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:10:01'), -(18,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:14:28'), -(19,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:15:15'), -(20,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:15:34'), -(21,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:20:03'); -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpmailsmtp_tasks_meta` --- - -DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_tasks_meta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpmailsmtp_tasks_meta` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `action` varchar(255) NOT NULL, - `data` longtext NOT NULL, - `date` datetime NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpmailsmtp_tasks_meta` --- - -LOCK TABLES `haikuwp_wpmailsmtp_tasks_meta` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpmailsmtp_tasks_meta` VALUES -(1,'wp_mail_smtp_admin_notifications_update','W10=','2024-11-25 16:49:16'); -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpml_mails` --- - -DROP TABLE IF EXISTS `haikuwp_wpml_mails`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpml_mails` ( - `mail_id` int(11) NOT NULL AUTO_INCREMENT, - `timestamp` timestamp NOT NULL, - `host` varchar(200) NOT NULL DEFAULT '0', - `receiver` varchar(200) NOT NULL DEFAULT '0', - `subject` varchar(200) NOT NULL DEFAULT '0', - `message` text DEFAULT NULL, - `headers` text DEFAULT NULL, - `attachments` varchar(800) NOT NULL DEFAULT '0', - `error` varchar(400) DEFAULT '', - `plugin_version` varchar(200) NOT NULL DEFAULT '0', - PRIMARY KEY (`mail_id`), - FULLTEXT KEY `idx_message` (`message`) -) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpml_mails` --- - -LOCK TABLES `haikuwp_wpml_mails` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpml_mails` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpml_mails` VALUES -(84,'2024-12-12 16:59:06','217.182.132.198','haiku.atelier@gmail.com,\\n contact@gcch.fr','[Haiku Atelier]: New order #880','\n\n\n\n\n\n

You’ve received the following order from christine Saquet Bossu:

\n\n

\n [Order #880] (2024-12-12)

\n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ProductQuantityPrice
\n Hattari Ear Cuff gold plated (#HATTARI-EC-g) \n 1 \n  40,00
\n Kara Hoops gold plated - pair (#KARA-CR-g-pair)
  • \nSide:

    pair

    \n
\n 1 \n  60,00
Subtotal: 100,00
Shipping:Mondial Relay - Point Relais (Free)
Total: 100,00
\n
\n\n\n \n \n \n \n
\n

Billing address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
c.saquetbossu@orange.fr
\n
\n

Shipping address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
\n
\n

Congratulations on the sale.

\nProcess your orders on the go. Get the app.\n\n','Content-Type: text/html,\\nReply-to: christine Saquet Bossu ','',NULL,'1.13.1'); -/*!40000 ALTER TABLE `haikuwp_wpml_mails` ENABLE KEYS */; -UNLOCK TABLES; -commit; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */; - --- Dump completed on 2025-06-23 15:33:24 diff --git a/db/haiku_atelier-2025-11-03-b8ad85b.sql b/db/haiku_atelier-2025-11-03-b8ad85b.sql deleted file mode 100644 index 53d3440a..00000000 --- a/db/haiku_atelier-2025-11-03-b8ad85b.sql +++ /dev/null @@ -1,15660 +0,0 @@ -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19-11.8.3-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: haiku_atelier --- ------------------------------------------------------ --- Server version 11.8.3-MariaDB-0+deb13u1 from Debian - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */; - --- --- Table structure for table `haikuwp_actionscheduler_actions` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_actions` ( - `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `hook` varchar(191) NOT NULL, - `status` varchar(20) NOT NULL, - `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', - `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', - `priority` tinyint(3) unsigned NOT NULL DEFAULT 10, - `args` varchar(191) DEFAULT NULL, - `schedule` longtext DEFAULT NULL, - `group_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `attempts` int(11) NOT NULL DEFAULT 0, - `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', - `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', - `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `extended_args` varchar(8000) DEFAULT NULL, - PRIMARY KEY (`action_id`), - KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`), - KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`), - KEY `scheduled_date_gmt` (`scheduled_date_gmt`), - KEY `args` (`args`), - KEY `group_id` (`group_id`), - KEY `last_attempt_gmt` (`last_attempt_gmt`), - KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`), - KEY `claim_id_status_priority_scheduled_date_gmt` (`claim_id`,`status`,`priority`,`scheduled_date_gmt`), - KEY `status_last_attempt_gmt` (`status`,`last_attempt_gmt`), - KEY `status_claim_id` (`status`,`claim_id`) -) ENGINE=InnoDB AUTO_INCREMENT=5527 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_actions` --- - -LOCK TABLES `haikuwp_actionscheduler_actions` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_actions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_actionscheduler_actions` VALUES -(2516,'woocommerce_refresh_order_count_cache','failed','2025-06-18 18:50:55','2025-06-18 20:50:55',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750272655;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750272655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-18 18:51:12','2025-06-18 20:51:12',0,NULL), -(2616,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":183}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(2617,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":566}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(2619,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":565}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(2621,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":567}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(3248,'woocommerce_geoip_updater','failed','2025-09-23 07:13:56','2025-09-23 09:13:56',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758611636;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758611636;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-09-23 07:14:01','2025-09-23 09:14:01',230208,NULL), -(3744,'woocommerce_cleanup_logs','failed','2025-09-21 10:15:00','2025-09-21 12:15:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758449700;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758449700;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-21 10:15:00','2025-09-21 12:15:00',227446,NULL), -(3795,'woocommerce_cleanup_logs','failed','2025-09-22 10:15:00','2025-09-22 12:15:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758536100;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758536100;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-22 10:15:00','2025-09-22 12:15:00',228921,NULL), -(3832,'woocommerce_cleanup_logs','failed','2025-09-23 10:15:00','2025-09-23 12:15:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758622500;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758622500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-23 10:15:01','2025-09-23 12:15:01',230397,NULL), -(3862,'woocommerce_geoip_updater','failed','2025-10-08 07:14:01','2025-10-08 09:14:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759907641;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759907641;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-10-08 07:14:06','2025-10-08 09:14:06',252350,NULL), -(3873,'woocommerce_cleanup_logs','failed','2025-09-24 10:15:01','2025-09-24 12:15:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758708901;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758708901;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-24 10:15:01','2025-09-24 12:15:01',231872,NULL), -(3910,'woocommerce_cleanup_logs','failed','2025-09-25 10:15:01','2025-09-25 12:15:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758795301;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758795301;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-25 10:15:01','2025-09-25 12:15:01',233352,NULL), -(3954,'woocommerce_cleanup_logs','failed','2025-09-26 10:15:01','2025-09-26 12:15:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758881701;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758881701;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-26 10:15:02','2025-09-26 12:15:02',234826,NULL), -(3991,'woocommerce_cleanup_logs','failed','2025-09-27 10:15:02','2025-09-27 12:15:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758968102;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758968102;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-27 10:15:02','2025-09-27 12:15:02',236300,NULL), -(4028,'woocommerce_cleanup_logs','failed','2025-09-28 10:15:02','2025-09-28 12:15:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759054502;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759054502;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-28 10:15:02','2025-09-28 12:15:02',237782,NULL), -(4113,'woocommerce_cleanup_logs','failed','2025-09-29 10:15:02','2025-09-29 12:15:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759140902;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759140902;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-29 10:15:03','2025-09-29 12:15:03',239257,NULL), -(4150,'woocommerce_cleanup_logs','failed','2025-09-30 10:15:03','2025-09-30 12:15:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759227303;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759227303;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-30 10:15:03','2025-09-30 12:15:03',240732,NULL), -(4176,'wp_mail_smtp_summary_report_email','complete','2025-10-07 04:05:51','2025-10-07 06:05:51',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759809951;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759809951;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-10-07 04:06:06','2025-10-07 06:06:06',250684,NULL), -(4188,'woocommerce_cleanup_logs','failed','2025-10-01 10:15:03','2025-10-01 12:15:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759313703;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759313703;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-01 10:15:04','2025-10-01 12:15:04',242206,NULL), -(4225,'woocommerce_cleanup_logs','failed','2025-10-02 10:15:04','2025-10-02 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759400104;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759400104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-02 10:15:04','2025-10-02 12:15:04',243683,NULL), -(4264,'woocommerce_cleanup_logs','failed','2025-10-03 10:15:04','2025-10-03 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759486504;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759486504;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-03 10:15:04','2025-10-03 12:15:04',245158,NULL), -(4275,'woocommerce_cleanup_draft_orders','complete','2025-10-03 18:39:04','2025-10-03 20:39:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759516744;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759516744;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-03 18:39:04','2025-10-03 20:39:04',245672,NULL), -(4276,'wp_mail_smtp_admin_notifications_update','complete','2025-10-03 18:40:04','2025-10-03 20:40:04',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759516804;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759516804;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-03 18:40:04','2025-10-03 20:40:04',245674,NULL), -(4282,'woocommerce_scheduled_sales','complete','2025-10-03 22:03:04','2025-10-04 00:03:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759528984;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759528984;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-03 22:03:04','2025-10-04 00:03:04',245885,NULL), -(4293,'woocommerce_refresh_order_count_cache','complete','2025-10-03 19:15:04','2025-10-03 21:15:04',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759518904;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759518904;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-03 19:15:04','2025-10-03 21:15:04',245711,NULL), -(4294,'wc_admin_daily_wrapper','complete','2025-10-04 07:16:05','2025-10-04 09:16:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759562165;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759562165;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-04 07:16:05','2025-10-04 09:16:05',246450,NULL), -(4295,'woocommerce_cleanup_personal_data','complete','2025-10-04 07:19:04','2025-10-04 09:19:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759562344;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759562344;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-04 07:19:05','2025-10-04 09:19:05',246454,NULL), -(4297,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-04 07:19:04','2025-10-04 09:19:04',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759562344;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759562344;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-04 07:19:05','2025-10-04 09:19:05',246454,NULL), -(4301,'woocommerce_cleanup_logs','failed','2025-10-04 10:15:04','2025-10-04 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759572904;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759572904;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-04 10:15:05','2025-10-04 12:15:05',246635,NULL), -(4302,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-04 10:15:04','2025-10-04 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759572904;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759572904;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-04 10:15:05','2025-10-04 12:15:05',246635,NULL), -(4306,'woocommerce_cleanup_sessions','complete','2025-10-04 01:18:04','2025-10-04 03:18:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759540684;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759540684;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-04 01:18:05','2025-10-04 03:18:05',246084,NULL), -(4309,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 16:56:04','2025-10-03 18:56:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759510564;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759510564;}',11,1,'2025-10-03 16:56:04','2025-10-03 18:56:04',245567,NULL), -(4310,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 17:56:04','2025-10-03 19:56:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759514164;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759514164;}',11,1,'2025-10-03 17:56:04','2025-10-03 19:56:04',245628,NULL), -(4311,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 18:56:04','2025-10-03 20:56:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759517764;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759517764;}',11,1,'2025-10-03 18:56:04','2025-10-03 20:56:04',245691,NULL), -(4312,'woocommerce_cleanup_draft_orders','complete','2025-10-04 18:39:04','2025-10-04 20:39:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759603144;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759603144;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-04 18:39:05','2025-10-04 20:39:05',247149,NULL), -(4313,'wp_mail_smtp_admin_notifications_update','complete','2025-10-04 18:40:04','2025-10-04 20:40:04',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759603204;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759603204;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-04 18:40:05','2025-10-04 20:40:05',247151,NULL), -(4314,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 19:56:04','2025-10-03 21:56:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759521364;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759521364;}',11,1,'2025-10-03 19:56:04','2025-10-03 21:56:04',245755,NULL), -(4315,'woocommerce_refresh_order_count_cache','complete','2025-10-04 07:15:04','2025-10-04 09:15:04',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759562104;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759562104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-04 07:15:05','2025-10-04 09:15:05',246448,NULL), -(4316,'wc-admin_import_orders','complete','2025-10-03 19:50:01','2025-10-03 21:50:01',10,'[1480]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759521001;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759521001;}',4,1,'2025-10-03 19:50:08','2025-10-03 21:50:08',245748,NULL), -(4317,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 20:56:04','2025-10-03 22:56:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759524964;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759524964;}',11,1,'2025-10-03 20:57:05','2025-10-03 22:57:05',245817,NULL), -(4318,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 21:57:04','2025-10-03 23:57:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759528624;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759528624;}',11,1,'2025-10-03 21:57:05','2025-10-03 23:57:05',245878,NULL), -(4319,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 22:57:04','2025-10-04 00:57:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759532224;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759532224;}',11,1,'2025-10-03 22:57:05','2025-10-04 00:57:05',245940,NULL), -(4320,'woocommerce_scheduled_sales','complete','2025-10-04 22:03:04','2025-10-05 00:03:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759615384;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759615384;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-04 22:03:05','2025-10-05 00:03:05',247360,NULL), -(4321,'woocommerce_cancel_unpaid_orders','complete','2025-10-03 23:57:05','2025-10-04 01:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759535825;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759535825;}',11,1,'2025-10-03 23:57:05','2025-10-04 01:57:05',246001,NULL), -(4322,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 00:57:05','2025-10-04 02:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759539425;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759539425;}',11,1,'2025-10-04 00:57:05','2025-10-04 02:57:05',246062,NULL), -(4323,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 01:57:05','2025-10-04 03:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759543025;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759543025;}',11,1,'2025-10-04 01:57:05','2025-10-04 03:57:05',246124,NULL), -(4324,'woocommerce_cleanup_sessions','complete','2025-10-04 13:18:05','2025-10-04 15:18:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759583885;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759583885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-04 13:18:05','2025-10-04 15:18:05',246822,NULL), -(4325,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 02:57:05','2025-10-04 04:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759546625;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759546625;}',11,1,'2025-10-04 02:57:05','2025-10-04 04:57:05',246185,NULL), -(4326,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 03:57:05','2025-10-04 05:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759550225;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759550225;}',11,1,'2025-10-04 03:57:05','2025-10-04 05:57:05',246246,NULL), -(4327,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 04:57:05','2025-10-04 06:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759553825;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759553825;}',11,1,'2025-10-04 04:57:05','2025-10-04 06:57:05',246307,NULL), -(4328,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 05:57:05','2025-10-04 07:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759557425;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759557425;}',11,1,'2025-10-04 05:57:05','2025-10-04 07:57:05',246368,NULL), -(4329,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 06:57:05','2025-10-04 08:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759561025;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759561025;}',11,1,'2025-10-04 06:57:05','2025-10-04 08:57:05',246429,NULL), -(4330,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 07:57:05','2025-10-04 09:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759564625;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759564625;}',11,1,'2025-10-04 07:57:05','2025-10-04 09:57:05',246494,NULL), -(4331,'woocommerce_refresh_order_count_cache','complete','2025-10-04 19:15:05','2025-10-04 21:15:05',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759605305;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759605305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-04 19:15:05','2025-10-04 21:15:05',247188,NULL), -(4332,'wc_admin_daily_wrapper','complete','2025-10-05 07:16:05','2025-10-05 09:16:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759648565;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759648565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-05 07:16:05','2025-10-05 09:16:05',247925,NULL), -(4333,'woocommerce_cleanup_personal_data','complete','2025-10-05 07:19:05','2025-10-05 09:19:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759648745;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759648745;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-05 07:19:05','2025-10-05 09:19:05',247929,NULL), -(4334,'generate_category_lookup_table_wrapper','complete','2025-10-04 07:19:15','2025-10-04 09:19:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759562355;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759562355;}',11,1,'2025-10-04 07:20:05','2025-10-04 09:20:05',246456,NULL), -(4335,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-05 07:19:05','2025-10-05 09:19:05',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759648745;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759648745;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-05 07:19:05','2025-10-05 09:19:05',247929,NULL), -(4336,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 08:57:05','2025-10-04 10:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759568225;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759568225;}',11,1,'2025-10-04 08:57:05','2025-10-04 10:57:05',246555,NULL), -(4337,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 09:57:05','2025-10-04 11:57:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759571825;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759571825;}',11,1,'2025-10-04 09:57:45','2025-10-04 11:57:45',246617,NULL), -(4338,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 10:57:45','2025-10-04 12:57:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759575465;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759575465;}',11,1,'2025-10-04 10:58:05','2025-10-04 12:58:05',246679,NULL), -(4339,'woocommerce_cleanup_logs','failed','2025-10-05 10:15:05','2025-10-05 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759659305;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759659305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-05 10:15:05','2025-10-05 12:15:05',248110,NULL), -(4340,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-05 10:15:05','2025-10-05 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759659305;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759659305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-05 10:15:05','2025-10-05 12:15:05',248110,NULL), -(4341,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 11:58:05','2025-10-04 13:58:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759579085;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759579085;}',11,1,'2025-10-04 11:58:05','2025-10-04 13:58:05',246740,NULL), -(4342,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 12:58:05','2025-10-04 14:58:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759582685;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759582685;}',11,1,'2025-10-04 12:58:05','2025-10-04 14:58:05',246801,NULL), -(4343,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 13:58:05','2025-10-04 15:58:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759586285;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759586285;}',11,1,'2025-10-04 13:58:05','2025-10-04 15:58:05',246863,NULL), -(4344,'woocommerce_cleanup_sessions','complete','2025-10-05 01:18:05','2025-10-05 03:18:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759627085;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759627085;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-05 01:18:05','2025-10-05 03:18:05',247559,NULL), -(4345,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 14:58:05','2025-10-04 16:58:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759589885;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759589885;}',11,1,'2025-10-04 14:58:05','2025-10-04 16:58:05',246924,NULL), -(4346,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 15:58:05','2025-10-04 17:58:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759593485;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759593485;}',11,1,'2025-10-04 15:59:05','2025-10-04 17:59:05',246986,NULL), -(4347,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 16:59:05','2025-10-04 18:59:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759597145;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759597145;}',11,1,'2025-10-04 16:59:05','2025-10-04 18:59:05',247047,NULL), -(4348,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 17:59:05','2025-10-04 19:59:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759600745;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759600745;}',11,1,'2025-10-04 17:59:05','2025-10-04 19:59:05',247108,NULL), -(4349,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 18:59:05','2025-10-04 20:59:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759604345;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759604345;}',11,1,'2025-10-04 18:59:05','2025-10-04 20:59:05',247171,NULL), -(4350,'woocommerce_cleanup_draft_orders','complete','2025-10-05 18:39:05','2025-10-05 20:39:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759689545;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759689545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-05 18:39:05','2025-10-05 20:39:05',248624,NULL), -(4351,'wp_mail_smtp_admin_notifications_update','complete','2025-10-05 18:40:05','2025-10-05 20:40:05',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759689605;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759689605;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-05 18:40:05','2025-10-05 20:40:05',248626,NULL), -(4352,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 19:59:05','2025-10-04 21:59:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759607945;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759607945;}',11,1,'2025-10-04 20:00:05','2025-10-04 22:00:05',247234,NULL), -(4353,'woocommerce_refresh_order_count_cache','complete','2025-10-05 07:15:05','2025-10-05 09:15:05',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759648505;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759648505;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-05 07:15:05','2025-10-05 09:15:05',247923,NULL), -(4354,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 21:00:05','2025-10-04 23:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759611605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759611605;}',11,1,'2025-10-04 21:00:05','2025-10-04 23:00:05',247295,NULL), -(4355,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 22:00:05','2025-10-05 00:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759615205;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759615205;}',11,1,'2025-10-04 22:00:05','2025-10-05 00:00:05',247356,NULL), -(4356,'woocommerce_cancel_unpaid_orders','complete','2025-10-04 23:00:05','2025-10-05 01:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759618805;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759618805;}',11,1,'2025-10-04 23:00:05','2025-10-05 01:00:05',247418,NULL), -(4357,'woocommerce_scheduled_sales','complete','2025-10-05 22:03:05','2025-10-06 00:03:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759701785;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759701785;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-05 22:03:05','2025-10-06 00:03:05',248835,NULL), -(4358,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 00:00:05','2025-10-05 02:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759622405;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759622405;}',11,1,'2025-10-05 00:00:05','2025-10-05 02:00:05',247479,NULL), -(4359,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 01:00:05','2025-10-05 03:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759626005;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759626005;}',11,1,'2025-10-05 01:00:05','2025-10-05 03:00:05',247540,NULL), -(4360,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 02:00:05','2025-10-05 04:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759629605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759629605;}',11,1,'2025-10-05 02:00:05','2025-10-05 04:00:05',247602,NULL), -(4361,'woocommerce_cleanup_sessions','complete','2025-10-05 13:18:05','2025-10-05 15:18:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759670285;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759670285;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-05 13:18:05','2025-10-05 15:18:05',248297,NULL), -(4362,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 03:00:05','2025-10-05 05:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759633205;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759633205;}',11,1,'2025-10-05 03:00:05','2025-10-05 05:00:05',247663,NULL), -(4363,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 04:00:05','2025-10-05 06:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759636805;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759636805;}',11,1,'2025-10-05 04:00:05','2025-10-05 06:00:05',247724,NULL), -(4364,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 05:00:05','2025-10-05 07:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759640405;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759640405;}',11,1,'2025-10-05 05:00:05','2025-10-05 07:00:05',247785,NULL), -(4365,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 06:00:05','2025-10-05 08:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759644005;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759644005;}',11,1,'2025-10-05 06:00:05','2025-10-05 08:00:05',247846,NULL), -(4366,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 07:00:05','2025-10-05 09:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759647605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759647605;}',11,1,'2025-10-05 07:00:05','2025-10-05 09:00:05',247907,NULL), -(4367,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 08:00:05','2025-10-05 10:00:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759651205;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759651205;}',11,1,'2025-10-05 08:01:05','2025-10-05 10:01:05',247973,NULL), -(4368,'woocommerce_refresh_order_count_cache','complete','2025-10-05 19:15:05','2025-10-05 21:15:05',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759691705;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759691705;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-05 19:15:05','2025-10-05 21:15:05',248663,NULL), -(4369,'wc_admin_daily_wrapper','complete','2025-10-06 07:16:05','2025-10-06 09:16:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759734965;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759734965;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-06 07:16:06','2025-10-06 09:16:06',249400,NULL), -(4370,'woocommerce_cleanup_personal_data','complete','2025-10-06 07:19:05','2025-10-06 09:19:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759735145;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759735145;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-06 07:19:05','2025-10-06 09:19:05',249404,NULL), -(4371,'generate_category_lookup_table_wrapper','complete','2025-10-05 07:19:15','2025-10-05 09:19:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759648755;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759648755;}',11,1,'2025-10-05 07:20:05','2025-10-05 09:20:05',247931,NULL), -(4372,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-06 07:19:05','2025-10-06 09:19:05',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759735145;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759735145;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-06 07:19:05','2025-10-06 09:19:05',249404,NULL), -(4373,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 09:01:05','2025-10-05 11:01:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759654865;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759654865;}',11,1,'2025-10-05 09:01:34','2025-10-05 11:01:34',248035,NULL), -(4374,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 10:01:34','2025-10-05 12:01:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759658494;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759658494;}',11,1,'2025-10-05 10:02:05','2025-10-05 12:02:05',248096,NULL), -(4375,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 11:02:05','2025-10-05 13:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759662125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759662125;}',11,1,'2025-10-05 11:02:05','2025-10-05 13:02:05',248158,NULL), -(4376,'woocommerce_cleanup_logs','failed','2025-10-06 10:15:05','2025-10-06 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759745705;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759745705;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-06 10:15:05','2025-10-06 12:15:05',249585,NULL), -(4377,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-06 10:15:05','2025-10-06 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759745705;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759745705;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-06 10:15:05','2025-10-06 12:15:05',249585,NULL), -(4378,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 12:02:05','2025-10-05 14:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759665725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759665725;}',11,1,'2025-10-05 12:02:05','2025-10-05 14:02:05',248219,NULL), -(4379,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 13:02:05','2025-10-05 15:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759669325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759669325;}',11,1,'2025-10-05 13:02:05','2025-10-05 15:02:05',248280,NULL), -(4380,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 14:02:05','2025-10-05 16:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759672925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759672925;}',11,1,'2025-10-05 14:02:05','2025-10-05 16:02:05',248342,NULL), -(4381,'woocommerce_cleanup_sessions','complete','2025-10-06 01:18:05','2025-10-06 03:18:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759713485;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759713485;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-06 01:18:05','2025-10-06 03:18:05',249034,NULL), -(4382,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 15:02:05','2025-10-05 17:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759676525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759676525;}',11,1,'2025-10-05 15:02:05','2025-10-05 17:02:05',248403,NULL), -(4383,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 16:02:05','2025-10-05 18:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759680125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759680125;}',11,1,'2025-10-05 16:02:05','2025-10-05 18:02:05',248464,NULL), -(4384,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 17:02:05','2025-10-05 19:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759683725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759683725;}',11,1,'2025-10-05 17:02:05','2025-10-05 19:02:05',248525,NULL), -(4385,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 18:02:05','2025-10-05 20:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759687325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759687325;}',11,1,'2025-10-05 18:02:05','2025-10-05 20:02:05',248586,NULL), -(4386,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 19:02:05','2025-10-05 21:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759690925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759690925;}',11,1,'2025-10-05 19:02:05','2025-10-05 21:02:05',248649,NULL), -(4387,'woocommerce_cleanup_draft_orders','complete','2025-10-06 18:39:05','2025-10-06 20:39:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759775945;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759775945;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-06 18:39:05','2025-10-06 20:39:05',250102,NULL), -(4388,'wp_mail_smtp_admin_notifications_update','complete','2025-10-06 18:40:05','2025-10-06 20:40:05',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759776005;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759776005;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-06 18:40:06','2025-10-06 20:40:06',250104,NULL), -(4389,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 20:02:05','2025-10-05 22:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759694525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759694525;}',11,1,'2025-10-05 20:02:05','2025-10-05 22:02:05',248711,NULL), -(4390,'woocommerce_refresh_order_count_cache','complete','2025-10-06 07:15:05','2025-10-06 09:15:05',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759734905;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759734905;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-06 07:15:05','2025-10-06 09:15:05',249398,NULL), -(4391,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 21:02:05','2025-10-05 23:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759698125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759698125;}',11,1,'2025-10-05 21:02:05','2025-10-05 23:02:05',248772,NULL), -(4392,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 22:02:05','2025-10-06 00:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759701725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759701725;}',11,1,'2025-10-05 22:02:05','2025-10-06 00:02:05',248833,NULL), -(4393,'woocommerce_cancel_unpaid_orders','complete','2025-10-05 23:02:05','2025-10-06 01:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759705325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759705325;}',11,1,'2025-10-05 23:02:05','2025-10-06 01:02:05',248895,NULL), -(4394,'woocommerce_scheduled_sales','complete','2025-10-06 22:03:05','2025-10-07 00:03:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759788185;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759788185;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-06 22:03:06','2025-10-07 00:03:06',250313,NULL), -(4395,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 00:02:05','2025-10-06 02:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759708925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759708925;}',11,1,'2025-10-06 00:02:05','2025-10-06 02:02:05',248956,NULL), -(4396,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 01:02:05','2025-10-06 03:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759712525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759712525;}',11,1,'2025-10-06 01:02:05','2025-10-06 03:02:05',249017,NULL), -(4397,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 02:02:05','2025-10-06 04:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759716125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759716125;}',11,1,'2025-10-06 02:02:05','2025-10-06 04:02:05',249079,NULL), -(4398,'woocommerce_cleanup_sessions','complete','2025-10-06 13:18:05','2025-10-06 15:18:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759756685;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759756685;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-06 13:18:05','2025-10-06 15:18:05',249775,NULL), -(4399,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 03:02:05','2025-10-06 05:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759719725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759719725;}',11,1,'2025-10-06 03:02:05','2025-10-06 05:02:05',249140,NULL), -(4400,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 04:02:05','2025-10-06 06:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759723325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759723325;}',11,1,'2025-10-06 04:02:05','2025-10-06 06:02:05',249201,NULL), -(4401,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 05:02:05','2025-10-06 07:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759726925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759726925;}',11,1,'2025-10-06 05:02:05','2025-10-06 07:02:05',249262,NULL), -(4402,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 06:02:05','2025-10-06 08:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759730525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759730525;}',11,1,'2025-10-06 06:02:05','2025-10-06 08:02:05',249323,NULL), -(4403,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 07:02:05','2025-10-06 09:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759734125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759734125;}',11,1,'2025-10-06 07:02:05','2025-10-06 09:02:05',249384,NULL), -(4404,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 08:02:05','2025-10-06 10:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759737725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759737725;}',11,1,'2025-10-06 08:02:05','2025-10-06 10:02:05',249449,NULL), -(4405,'woocommerce_refresh_order_count_cache','complete','2025-10-06 19:15:05','2025-10-06 21:15:05',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759778105;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759778105;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-06 19:15:05','2025-10-06 21:15:05',250141,NULL), -(4406,'wc_admin_daily_wrapper','complete','2025-10-07 07:16:06','2025-10-07 09:16:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759821366;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759821366;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-07 07:16:06','2025-10-07 09:16:06',250879,NULL), -(4407,'woocommerce_cleanup_personal_data','complete','2025-10-07 07:19:05','2025-10-07 09:19:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759821545;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759821545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-07 07:19:06','2025-10-07 09:19:06',250883,NULL), -(4408,'generate_category_lookup_table_wrapper','complete','2025-10-06 07:19:15','2025-10-06 09:19:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759735155;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759735155;}',11,1,'2025-10-06 07:20:05','2025-10-06 09:20:05',249406,NULL), -(4409,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-07 07:19:05','2025-10-07 09:19:05',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759821545;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759821545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-07 07:19:06','2025-10-07 09:19:06',250883,NULL), -(4410,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 09:02:05','2025-10-06 11:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759741325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759741325;}',11,1,'2025-10-06 09:02:05','2025-10-06 11:02:05',249510,NULL), -(4411,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 10:02:05','2025-10-06 12:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759744925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759744925;}',11,1,'2025-10-06 10:02:05','2025-10-06 12:02:05',249571,NULL), -(4412,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 11:02:05','2025-10-06 13:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759748525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759748525;}',11,1,'2025-10-06 11:02:05','2025-10-06 13:02:05',249633,NULL), -(4413,'woocommerce_cleanup_logs','failed','2025-10-07 10:15:05','2025-10-07 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759832105;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759832105;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-07 10:15:06','2025-10-07 12:15:06',251064,NULL), -(4414,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-07 10:15:05','2025-10-07 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759832105;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759832105;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-07 10:15:06','2025-10-07 12:15:06',251064,NULL), -(4415,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 12:02:05','2025-10-06 14:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759752125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759752125;}',11,1,'2025-10-06 12:02:05','2025-10-06 14:02:05',249694,NULL), -(4416,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 13:02:05','2025-10-06 15:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759755725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759755725;}',11,1,'2025-10-06 13:02:05','2025-10-06 15:02:05',249758,NULL), -(4417,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-06 12:39:34','2025-10-06 14:39:34',10,'[338,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759754374;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759754374;}',3,1,'2025-10-06 12:40:25','2025-10-06 14:40:25',249734,NULL), -(4418,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-06 12:46:03','2025-10-06 14:46:03',10,'[202,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759754763;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759754763;}',3,1,'2025-10-06 12:47:05','2025-10-06 14:47:05',249742,NULL), -(4419,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 14:02:05','2025-10-06 16:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759759325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759759325;}',11,1,'2025-10-06 14:02:05','2025-10-06 16:02:05',249820,NULL), -(4420,'woocommerce_cleanup_sessions','complete','2025-10-07 01:18:05','2025-10-07 03:18:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759799885;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759799885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-07 01:18:06','2025-10-07 03:18:06',250512,NULL), -(4421,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 15:02:05','2025-10-06 17:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759762925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759762925;}',11,1,'2025-10-06 15:02:05','2025-10-06 17:02:05',249881,NULL), -(4422,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 16:02:05','2025-10-06 18:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759766525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759766525;}',11,1,'2025-10-06 16:02:05','2025-10-06 18:02:05',249942,NULL), -(4423,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 17:02:05','2025-10-06 19:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759770125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759770125;}',11,1,'2025-10-06 17:02:05','2025-10-06 19:02:05',250003,NULL), -(4424,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 18:02:05','2025-10-06 20:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759773725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759773725;}',11,1,'2025-10-06 18:02:05','2025-10-06 20:02:05',250064,NULL), -(4425,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 19:02:05','2025-10-06 21:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759777325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759777325;}',11,1,'2025-10-06 19:02:05','2025-10-06 21:02:05',250127,NULL), -(4426,'woocommerce_cleanup_draft_orders','complete','2025-10-07 18:39:05','2025-10-07 20:39:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759862345;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759862345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-07 18:39:06','2025-10-07 20:39:06',251578,NULL), -(4427,'wp_mail_smtp_admin_notifications_update','complete','2025-10-07 18:40:06','2025-10-07 20:40:06',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759862406;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759862406;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-07 18:40:06','2025-10-07 20:40:06',251580,NULL), -(4428,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 20:02:05','2025-10-06 22:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759780925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759780925;}',11,1,'2025-10-06 20:02:05','2025-10-06 22:02:05',250189,NULL), -(4429,'woocommerce_refresh_order_count_cache','complete','2025-10-07 07:15:05','2025-10-07 09:15:05',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759821305;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759821305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-07 07:15:06','2025-10-07 09:15:06',250877,NULL), -(4430,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 21:02:05','2025-10-06 23:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759784525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759784525;}',11,1,'2025-10-06 21:02:06','2025-10-06 23:02:06',250250,NULL), -(4431,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 22:02:05','2025-10-07 00:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759788125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759788125;}',11,1,'2025-10-06 22:02:06','2025-10-07 00:02:06',250311,NULL), -(4432,'woocommerce_cancel_unpaid_orders','complete','2025-10-06 23:02:05','2025-10-07 01:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759791725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759791725;}',11,1,'2025-10-06 23:02:06','2025-10-07 01:02:06',250373,NULL), -(4433,'woocommerce_scheduled_sales','complete','2025-10-07 22:03:06','2025-10-08 00:03:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759874586;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759874586;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-07 22:03:06','2025-10-08 00:03:06',251788,NULL), -(4434,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 00:02:05','2025-10-07 02:02:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759795325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759795325;}',11,1,'2025-10-07 00:02:06','2025-10-07 02:02:06',250434,NULL), -(4435,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 01:02:06','2025-10-07 03:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759798926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759798926;}',11,1,'2025-10-07 01:02:06','2025-10-07 03:02:06',250495,NULL), -(4436,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 02:02:06','2025-10-07 04:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759802526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759802526;}',11,1,'2025-10-07 02:02:06','2025-10-07 04:02:06',250557,NULL), -(4437,'woocommerce_cleanup_sessions','complete','2025-10-07 13:18:06','2025-10-07 15:18:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759843086;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759843086;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-07 13:18:06','2025-10-07 15:18:06',251251,NULL), -(4438,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 03:02:06','2025-10-07 05:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759806126;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759806126;}',11,1,'2025-10-07 03:02:06','2025-10-07 05:02:06',250618,NULL), -(4439,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 04:02:06','2025-10-07 06:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759809726;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759809726;}',11,1,'2025-10-07 04:02:06','2025-10-07 06:02:06',250679,NULL), -(4440,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 05:02:06','2025-10-07 07:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759813326;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759813326;}',11,1,'2025-10-07 05:02:06','2025-10-07 07:02:06',250741,NULL), -(4441,'wp_mail_smtp_summary_report_email','complete','2025-10-14 04:06:06','2025-10-14 06:06:06',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760414766;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760414766;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-10-14 04:06:08','2025-10-14 06:06:08',261016,NULL), -(4442,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 06:02:06','2025-10-07 08:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759816926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759816926;}',11,1,'2025-10-07 06:02:06','2025-10-07 08:02:06',250802,NULL), -(4443,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 07:02:06','2025-10-07 09:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759820526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759820526;}',11,1,'2025-10-07 07:02:06','2025-10-07 09:02:06',250863,NULL), -(4444,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 08:02:06','2025-10-07 10:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759824126;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759824126;}',11,1,'2025-10-07 08:02:06','2025-10-07 10:02:06',250928,NULL), -(4445,'woocommerce_refresh_order_count_cache','complete','2025-10-07 19:15:06','2025-10-07 21:15:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759864506;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759864506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-07 19:15:06','2025-10-07 21:15:06',251617,NULL), -(4446,'wc_admin_daily_wrapper','complete','2025-10-08 07:16:06','2025-10-08 09:16:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759907766;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759907766;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-08 07:16:06','2025-10-08 09:16:06',252354,NULL), -(4447,'woocommerce_cleanup_personal_data','complete','2025-10-08 07:19:06','2025-10-08 09:19:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759907946;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759907946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-08 07:19:06','2025-10-08 09:19:06',252358,NULL), -(4448,'generate_category_lookup_table_wrapper','complete','2025-10-07 07:19:16','2025-10-07 09:19:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759821556;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759821556;}',11,1,'2025-10-07 07:20:06','2025-10-07 09:20:06',250885,NULL), -(4449,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-08 07:19:06','2025-10-08 09:19:06',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759907946;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759907946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-08 07:19:06','2025-10-08 09:19:06',252358,NULL), -(4450,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 09:02:06','2025-10-07 11:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759827726;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759827726;}',11,1,'2025-10-07 09:02:06','2025-10-07 11:02:06',250989,NULL), -(4451,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 10:02:06','2025-10-07 12:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759831326;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759831326;}',11,1,'2025-10-07 10:02:06','2025-10-07 12:02:06',251050,NULL), -(4452,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 11:02:06','2025-10-07 13:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759834926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759834926;}',11,1,'2025-10-07 11:02:06','2025-10-07 13:02:06',251112,NULL), -(4453,'woocommerce_cleanup_logs','failed','2025-10-08 10:15:06','2025-10-08 12:15:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759918506;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759918506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-08 10:15:31','2025-10-08 12:15:31',252540,NULL), -(4454,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-08 10:15:06','2025-10-08 12:15:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759918506;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759918506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-08 10:15:31','2025-10-08 12:15:31',252540,NULL), -(4455,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 12:02:06','2025-10-07 14:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759838526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759838526;}',11,1,'2025-10-07 12:02:06','2025-10-07 14:02:06',251173,NULL), -(4456,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 13:02:06','2025-10-07 15:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759842126;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759842126;}',11,1,'2025-10-07 13:02:06','2025-10-07 15:02:06',251234,NULL), -(4457,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 14:02:06','2025-10-07 16:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759845726;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759845726;}',11,1,'2025-10-07 14:02:06','2025-10-07 16:02:06',251296,NULL), -(4458,'woocommerce_cleanup_sessions','complete','2025-10-08 01:18:06','2025-10-08 03:18:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759886286;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759886286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-08 01:18:06','2025-10-08 03:18:06',251987,NULL), -(4459,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 15:02:06','2025-10-07 17:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759849326;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759849326;}',11,1,'2025-10-07 15:02:06','2025-10-07 17:02:06',251357,NULL), -(4460,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 16:02:06','2025-10-07 18:02:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759852926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759852926;}',11,1,'2025-10-07 16:02:30','2025-10-07 18:02:30',251419,NULL), -(4461,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 17:02:30','2025-10-07 19:02:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759856550;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759856550;}',11,1,'2025-10-07 17:03:06','2025-10-07 19:03:06',251480,NULL), -(4462,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 18:03:06','2025-10-07 20:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759860186;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759860186;}',11,1,'2025-10-07 18:03:06','2025-10-07 20:03:06',251541,NULL), -(4463,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 19:03:06','2025-10-07 21:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759863786;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759863786;}',11,1,'2025-10-07 19:03:06','2025-10-07 21:03:06',251604,NULL), -(4464,'woocommerce_cleanup_draft_orders','complete','2025-10-08 18:39:06','2025-10-08 20:39:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759948746;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759948746;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-08 18:39:06','2025-10-08 20:39:06',253053,NULL), -(4465,'wp_mail_smtp_admin_notifications_update','complete','2025-10-08 18:40:06','2025-10-08 20:40:06',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759948806;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759948806;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-08 18:40:06','2025-10-08 20:40:06',253055,NULL), -(4466,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 20:03:06','2025-10-07 22:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759867386;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759867386;}',11,1,'2025-10-07 20:03:06','2025-10-07 22:03:06',251666,NULL), -(4467,'woocommerce_refresh_order_count_cache','complete','2025-10-08 07:15:06','2025-10-08 09:15:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759907706;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759907706;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-08 07:15:06','2025-10-08 09:15:06',252352,NULL), -(4468,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 21:03:06','2025-10-07 23:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759870986;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759870986;}',11,1,'2025-10-07 21:03:06','2025-10-07 23:03:06',251727,NULL), -(4469,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 22:03:06','2025-10-08 00:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759874586;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759874586;}',11,1,'2025-10-07 22:03:06','2025-10-08 00:03:06',251788,NULL), -(4470,'woocommerce_scheduled_sales','complete','2025-10-08 22:03:06','2025-10-09 00:03:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759960986;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759960986;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-08 22:03:06','2025-10-09 00:03:06',253264,NULL), -(4471,'woocommerce_cancel_unpaid_orders','complete','2025-10-07 23:03:06','2025-10-08 01:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759878186;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759878186;}',11,1,'2025-10-07 23:03:06','2025-10-08 01:03:06',251849,NULL), -(4472,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 00:03:06','2025-10-08 02:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759881786;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759881786;}',11,1,'2025-10-08 00:03:06','2025-10-08 02:03:06',251910,NULL), -(4473,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 01:03:06','2025-10-08 03:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759885386;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759885386;}',11,1,'2025-10-08 01:03:06','2025-10-08 03:03:06',251971,NULL), -(4474,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 02:03:06','2025-10-08 04:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759888986;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759888986;}',11,1,'2025-10-08 02:03:06','2025-10-08 04:03:06',252033,NULL), -(4475,'woocommerce_cleanup_sessions','complete','2025-10-08 13:18:06','2025-10-08 15:18:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759929486;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759929486;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-08 13:18:06','2025-10-08 15:18:06',252726,NULL), -(4476,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 03:03:06','2025-10-08 05:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759892586;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759892586;}',11,1,'2025-10-08 03:03:06','2025-10-08 05:03:06',252094,NULL), -(4477,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 04:03:06','2025-10-08 06:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759896186;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759896186;}',11,1,'2025-10-08 04:03:06','2025-10-08 06:03:06',252155,NULL), -(4478,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 05:03:06','2025-10-08 07:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759899786;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759899786;}',11,1,'2025-10-08 05:03:06','2025-10-08 07:03:06',252216,NULL), -(4479,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 06:03:06','2025-10-08 08:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759903386;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759903386;}',11,1,'2025-10-08 06:03:06','2025-10-08 08:03:06',252277,NULL), -(4480,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 07:03:06','2025-10-08 09:03:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759906986;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759906986;}',11,1,'2025-10-08 07:04:06','2025-10-08 09:04:06',252339,NULL), -(4481,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 08:04:06','2025-10-08 10:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759910646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759910646;}',11,1,'2025-10-08 08:04:06','2025-10-08 10:04:06',252405,NULL), -(4482,'woocommerce_geoip_updater','failed','2025-10-23 07:14:06','2025-10-23 09:14:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761203646;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761203646;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-10-23 07:14:11','2025-10-23 09:14:11',274484,NULL), -(4483,'woocommerce_refresh_order_count_cache','complete','2025-10-08 19:15:06','2025-10-08 21:15:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759950906;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759950906;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-08 19:15:06','2025-10-08 21:15:06',253092,NULL), -(4484,'wc_admin_daily_wrapper','complete','2025-10-09 07:16:06','2025-10-09 09:16:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759994166;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759994166;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-09 07:16:07','2025-10-09 09:16:07',253830,NULL), -(4485,'woocommerce_cleanup_personal_data','complete','2025-10-09 07:19:06','2025-10-09 09:19:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759994346;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759994346;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-09 07:19:06','2025-10-09 09:19:06',253834,NULL), -(4486,'generate_category_lookup_table_wrapper','complete','2025-10-08 07:19:16','2025-10-08 09:19:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759907956;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759907956;}',11,1,'2025-10-08 07:20:06','2025-10-08 09:20:06',252360,NULL), -(4487,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-09 07:19:06','2025-10-09 09:19:06',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759994346;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759994346;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-09 07:19:06','2025-10-09 09:19:06',253834,NULL), -(4488,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 09:04:06','2025-10-08 11:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759914246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759914246;}',11,1,'2025-10-08 09:04:06','2025-10-08 11:04:06',252466,NULL), -(4489,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 10:04:06','2025-10-08 12:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759917846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759917846;}',11,1,'2025-10-08 10:04:06','2025-10-08 12:04:06',252527,NULL), -(4490,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 11:04:06','2025-10-08 13:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759921446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759921446;}',11,1,'2025-10-08 11:04:06','2025-10-08 13:04:06',252589,NULL), -(4491,'woocommerce_cleanup_logs','failed','2025-10-09 10:15:31','2025-10-09 12:15:31',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760004931;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760004931;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-09 10:16:06','2025-10-09 12:16:06',254016,NULL), -(4492,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-09 10:15:31','2025-10-09 12:15:31',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760004931;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760004931;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-09 10:16:06','2025-10-09 12:16:06',254016,NULL), -(4493,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 12:04:06','2025-10-08 14:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759925046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759925046;}',11,1,'2025-10-08 12:04:06','2025-10-08 14:04:06',252650,NULL), -(4494,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 13:04:06','2025-10-08 15:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759928646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759928646;}',11,1,'2025-10-08 13:04:06','2025-10-08 15:04:06',252711,NULL), -(4495,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 14:04:06','2025-10-08 16:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759932246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759932246;}',11,1,'2025-10-08 14:04:06','2025-10-08 16:04:06',252773,NULL), -(4496,'woocommerce_cleanup_sessions','complete','2025-10-09 01:18:06','2025-10-09 03:18:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759972686;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759972686;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-09 01:18:06','2025-10-09 03:18:06',253464,NULL), -(4497,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 15:04:06','2025-10-08 17:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759935846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759935846;}',11,1,'2025-10-08 15:04:06','2025-10-08 17:04:06',252834,NULL), -(4498,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 16:04:06','2025-10-08 18:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759939446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759939446;}',11,1,'2025-10-08 16:04:06','2025-10-08 18:04:06',252895,NULL), -(4499,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 17:04:06','2025-10-08 19:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759943046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759943046;}',11,1,'2025-10-08 17:04:06','2025-10-08 19:04:06',252956,NULL), -(4500,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 18:04:06','2025-10-08 20:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759946646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759946646;}',11,1,'2025-10-08 18:04:06','2025-10-08 20:04:06',253017,NULL), -(4501,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 19:04:06','2025-10-08 21:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759950246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759950246;}',11,1,'2025-10-08 19:04:06','2025-10-08 21:04:06',253080,NULL), -(4502,'woocommerce_cleanup_draft_orders','complete','2025-10-09 18:39:06','2025-10-09 20:39:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760035146;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760035146;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-09 18:39:06','2025-10-09 20:39:06',254529,NULL), -(4503,'wp_mail_smtp_admin_notifications_update','complete','2025-10-09 18:40:06','2025-10-09 20:40:06',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760035206;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760035206;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-09 18:40:06','2025-10-09 20:40:06',254531,NULL), -(4504,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 20:04:06','2025-10-08 22:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759953846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759953846;}',11,1,'2025-10-08 20:04:06','2025-10-08 22:04:06',253142,NULL), -(4505,'woocommerce_refresh_order_count_cache','complete','2025-10-09 07:15:06','2025-10-09 09:15:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759994106;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759994106;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-09 07:15:06','2025-10-09 09:15:06',253828,NULL), -(4506,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 21:04:06','2025-10-08 23:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759957446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759957446;}',11,1,'2025-10-08 21:04:06','2025-10-08 23:04:06',253204,NULL), -(4507,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[73,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4508,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[74,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4509,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[75,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4510,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[76,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4511,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[77,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4512,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[78,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4513,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[79,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4514,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-08 20:11:07','2025-10-08 22:11:07',10,'[72,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759954267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759954267;}',3,1,'2025-10-08 20:12:06','2025-10-08 22:12:06',253151,NULL), -(4515,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 22:04:06','2025-10-09 00:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759961046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759961046;}',11,1,'2025-10-08 22:04:06','2025-10-09 00:04:06',253266,NULL), -(4516,'woocommerce_scheduled_sales','complete','2025-10-09 22:03:06','2025-10-10 00:03:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760047386;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760047386;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-09 22:03:06','2025-10-10 00:03:06',254739,NULL), -(4517,'woocommerce_cancel_unpaid_orders','complete','2025-10-08 23:04:06','2025-10-09 01:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759964646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759964646;}',11,1,'2025-10-08 23:04:06','2025-10-09 01:04:06',253327,NULL), -(4518,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 00:04:06','2025-10-09 02:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759968246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759968246;}',11,1,'2025-10-09 00:04:06','2025-10-09 02:04:06',253388,NULL), -(4519,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 01:04:06','2025-10-09 03:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759971846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759971846;}',11,1,'2025-10-09 01:04:06','2025-10-09 03:04:06',253449,NULL), -(4520,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 02:04:06','2025-10-09 04:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759975446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759975446;}',11,1,'2025-10-09 02:04:06','2025-10-09 04:04:06',253511,NULL), -(4521,'woocommerce_cleanup_sessions','complete','2025-10-09 13:18:06','2025-10-09 15:18:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760015886;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760015886;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-09 13:18:06','2025-10-09 15:18:06',254202,NULL), -(4522,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 03:04:06','2025-10-09 05:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759979046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759979046;}',11,1,'2025-10-09 03:04:06','2025-10-09 05:04:06',253572,NULL), -(4523,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 04:04:06','2025-10-09 06:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759982646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759982646;}',11,1,'2025-10-09 04:04:06','2025-10-09 06:04:06',253633,NULL), -(4524,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 05:04:06','2025-10-09 07:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759986246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759986246;}',11,1,'2025-10-09 05:04:06','2025-10-09 07:04:06',253694,NULL), -(4525,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 06:04:06','2025-10-09 08:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759989846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759989846;}',11,1,'2025-10-09 06:04:06','2025-10-09 08:04:06',253755,NULL), -(4526,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 07:04:06','2025-10-09 09:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759993446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759993446;}',11,1,'2025-10-09 07:04:06','2025-10-09 09:04:06',253816,NULL), -(4527,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 08:04:06','2025-10-09 10:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759997046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759997046;}',11,1,'2025-10-09 08:04:06','2025-10-09 10:04:06',253881,NULL), -(4528,'woocommerce_refresh_order_count_cache','complete','2025-10-09 19:15:06','2025-10-09 21:15:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760037306;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760037306;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-09 19:15:06','2025-10-09 21:15:06',254568,NULL), -(4529,'wc_admin_daily_wrapper','complete','2025-10-10 07:16:07','2025-10-10 09:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760080567;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760080567;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-10 07:17:07','2025-10-10 09:17:07',255306,NULL), -(4530,'woocommerce_cleanup_personal_data','complete','2025-10-10 07:19:06','2025-10-10 09:19:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760080746;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760080746;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-10 07:19:07','2025-10-10 09:19:07',255309,NULL), -(4531,'generate_category_lookup_table_wrapper','complete','2025-10-09 07:19:16','2025-10-09 09:19:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1759994356;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1759994356;}',11,1,'2025-10-09 07:20:06','2025-10-09 09:20:06',253836,NULL), -(4532,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-10 07:19:06','2025-10-10 09:19:06',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760080746;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760080746;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-10 07:19:07','2025-10-10 09:19:07',255309,NULL), -(4533,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 09:04:06','2025-10-09 11:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760000646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760000646;}',11,1,'2025-10-09 09:04:06','2025-10-09 11:04:06',253942,NULL), -(4534,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 10:04:06','2025-10-09 12:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760004246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760004246;}',11,1,'2025-10-09 10:04:06','2025-10-09 12:04:06',254003,NULL), -(4535,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 11:04:06','2025-10-09 13:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760007846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760007846;}',11,1,'2025-10-09 11:04:06','2025-10-09 13:04:06',254065,NULL), -(4536,'woocommerce_cleanup_logs','failed','2025-10-10 10:16:06','2025-10-10 12:16:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760091366;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760091366;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-10 10:16:07','2025-10-10 12:16:07',255490,NULL), -(4537,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-10 10:16:06','2025-10-10 12:16:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760091366;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760091366;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-10 10:16:07','2025-10-10 12:16:07',255490,NULL), -(4538,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 12:04:06','2025-10-09 14:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760011446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760011446;}',11,1,'2025-10-09 12:04:06','2025-10-09 14:04:06',254126,NULL), -(4539,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 13:04:06','2025-10-09 15:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760015046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760015046;}',11,1,'2025-10-09 13:04:06','2025-10-09 15:04:06',254187,NULL), -(4540,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 14:04:06','2025-10-09 16:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760018646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760018646;}',11,1,'2025-10-09 14:04:06','2025-10-09 16:04:06',254249,NULL), -(4541,'woocommerce_cleanup_sessions','complete','2025-10-10 01:18:06','2025-10-10 03:18:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760059086;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760059086;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-10 01:18:07','2025-10-10 03:18:07',254939,NULL), -(4542,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 15:04:06','2025-10-09 17:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760022246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760022246;}',11,1,'2025-10-09 15:04:06','2025-10-09 17:04:06',254310,NULL), -(4543,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 16:04:06','2025-10-09 18:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760025846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760025846;}',11,1,'2025-10-09 16:04:06','2025-10-09 18:04:06',254371,NULL), -(4544,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 17:04:06','2025-10-09 19:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760029446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760029446;}',11,1,'2025-10-09 17:04:06','2025-10-09 19:04:06',254432,NULL), -(4545,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 18:04:06','2025-10-09 20:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760033046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760033046;}',11,1,'2025-10-09 18:04:06','2025-10-09 20:04:06',254493,NULL), -(4546,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 19:04:06','2025-10-09 21:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760036646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760036646;}',11,1,'2025-10-09 19:04:06','2025-10-09 21:04:06',254556,NULL), -(4547,'woocommerce_cleanup_draft_orders','complete','2025-10-10 18:39:06','2025-10-10 20:39:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760121546;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760121546;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-10 18:39:07','2025-10-10 20:39:07',256005,NULL), -(4548,'wp_mail_smtp_admin_notifications_update','complete','2025-10-10 18:40:06','2025-10-10 20:40:06',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760121606;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760121606;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-10 18:40:07','2025-10-10 20:40:07',256007,NULL), -(4549,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 20:04:06','2025-10-09 22:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760040246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760040246;}',11,1,'2025-10-09 20:04:06','2025-10-09 22:04:06',254618,NULL), -(4550,'woocommerce_refresh_order_count_cache','complete','2025-10-10 07:15:06','2025-10-10 09:15:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760080506;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760080506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-10 07:15:07','2025-10-10 09:15:07',255303,NULL), -(4551,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 21:04:06','2025-10-09 23:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760043846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760043846;}',11,1,'2025-10-09 21:04:06','2025-10-09 23:04:06',254679,NULL), -(4552,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 22:04:06','2025-10-10 00:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760047446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760047446;}',11,1,'2025-10-09 22:04:06','2025-10-10 00:04:06',254741,NULL), -(4553,'woocommerce_scheduled_sales','complete','2025-10-10 22:03:06','2025-10-11 00:03:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760133786;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760133786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-10 22:03:07','2025-10-11 00:03:07',256215,NULL), -(4554,'woocommerce_cancel_unpaid_orders','complete','2025-10-09 23:04:06','2025-10-10 01:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760051046;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760051046;}',11,1,'2025-10-09 23:04:07','2025-10-10 01:04:07',254802,NULL), -(4555,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 00:04:06','2025-10-10 02:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760054646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760054646;}',11,1,'2025-10-10 00:04:07','2025-10-10 02:04:07',254863,NULL), -(4556,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 01:04:06','2025-10-10 03:04:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760058246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760058246;}',11,1,'2025-10-10 01:04:07','2025-10-10 03:04:07',254924,NULL), -(4557,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 02:04:07','2025-10-10 04:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760061847;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760061847;}',11,1,'2025-10-10 02:04:07','2025-10-10 04:04:07',254986,NULL), -(4558,'woocommerce_cleanup_sessions','complete','2025-10-10 13:18:07','2025-10-10 15:18:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760102287;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760102287;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-10 13:18:07','2025-10-10 15:18:07',255676,NULL), -(4559,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 03:04:07','2025-10-10 05:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760065447;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760065447;}',11,1,'2025-10-10 03:04:07','2025-10-10 05:04:07',255047,NULL), -(4560,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 04:04:07','2025-10-10 06:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760069047;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760069047;}',11,1,'2025-10-10 04:04:07','2025-10-10 06:04:07',255108,NULL), -(4561,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 05:04:07','2025-10-10 07:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760072647;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760072647;}',11,1,'2025-10-10 05:04:07','2025-10-10 07:04:07',255169,NULL), -(4562,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 06:04:07','2025-10-10 08:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760076247;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760076247;}',11,1,'2025-10-10 06:04:07','2025-10-10 08:04:07',255230,NULL), -(4563,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 07:04:07','2025-10-10 09:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760079847;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760079847;}',11,1,'2025-10-10 07:04:07','2025-10-10 09:04:07',255291,NULL), -(4564,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 08:04:07','2025-10-10 10:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760083447;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760083447;}',11,1,'2025-10-10 08:04:07','2025-10-10 10:04:07',255356,NULL), -(4565,'woocommerce_refresh_order_count_cache','complete','2025-10-10 19:15:07','2025-10-10 21:15:07',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760123707;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760123707;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-10 19:15:07','2025-10-10 21:15:07',256044,NULL), -(4566,'wc_admin_daily_wrapper','complete','2025-10-11 07:17:07','2025-10-11 09:17:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760167027;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760167027;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-11 07:17:07','2025-10-11 09:17:07',256782,NULL), -(4567,'woocommerce_cleanup_personal_data','complete','2025-10-11 07:19:07','2025-10-11 09:19:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760167147;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760167147;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-11 07:19:07','2025-10-11 09:19:07',256785,NULL), -(4568,'generate_category_lookup_table_wrapper','complete','2025-10-10 07:19:17','2025-10-10 09:19:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760080757;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760080757;}',11,1,'2025-10-10 07:20:07','2025-10-10 09:20:07',255311,NULL), -(4569,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-11 07:19:07','2025-10-11 09:19:07',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760167147;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760167147;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-11 07:19:07','2025-10-11 09:19:07',256785,NULL), -(4570,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 09:04:07','2025-10-10 11:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760087047;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760087047;}',11,1,'2025-10-10 09:04:07','2025-10-10 11:04:07',255417,NULL), -(4571,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 10:04:07','2025-10-10 12:04:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760090647;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760090647;}',11,1,'2025-10-10 10:04:49','2025-10-10 12:04:49',255478,NULL), -(4572,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 11:04:49','2025-10-10 13:04:49',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760094289;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760094289;}',11,1,'2025-10-10 11:05:07','2025-10-10 13:05:07',255540,NULL), -(4573,'woocommerce_cleanup_logs','failed','2025-10-11 10:16:07','2025-10-11 12:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760177767;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760177767;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-11 10:16:07','2025-10-11 12:16:07',256967,NULL), -(4574,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-11 10:16:07','2025-10-11 12:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760177767;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760177767;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-11 10:16:07','2025-10-11 12:16:07',256967,NULL), -(4575,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 12:05:07','2025-10-10 14:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760097907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760097907;}',11,1,'2025-10-10 12:05:07','2025-10-10 14:05:07',255601,NULL), -(4576,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 13:05:07','2025-10-10 15:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760101507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760101507;}',11,1,'2025-10-10 13:05:07','2025-10-10 15:05:07',255662,NULL), -(4577,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 14:05:07','2025-10-10 16:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760105107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760105107;}',11,1,'2025-10-10 14:05:07','2025-10-10 16:05:07',255724,NULL), -(4578,'woocommerce_cleanup_sessions','complete','2025-10-11 01:18:07','2025-10-11 03:18:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760145487;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760145487;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-11 01:19:07','2025-10-11 03:19:07',256416,NULL), -(4579,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 15:05:07','2025-10-10 17:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760108707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760108707;}',11,1,'2025-10-10 15:05:07','2025-10-10 17:05:07',255785,NULL), -(4580,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 16:05:07','2025-10-10 18:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760112307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760112307;}',11,1,'2025-10-10 16:05:07','2025-10-10 18:05:07',255848,NULL), -(4581,'wc-admin_import_orders','complete','2025-10-10 15:55:27','2025-10-10 17:55:27',10,'[1486]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760111727;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760111727;}',4,1,'2025-10-10 15:55:44','2025-10-10 17:55:44',255837,NULL), -(4582,'wc-admin_import_orders','complete','2025-10-10 15:55:49','2025-10-10 17:55:49',10,'[1486]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760111749;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760111749;}',4,1,'2025-10-10 15:57:07','2025-10-10 17:57:07',255839,NULL), -(4583,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 17:05:07','2025-10-10 19:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760115907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760115907;}',11,1,'2025-10-10 17:05:07','2025-10-10 19:05:07',255909,NULL), -(4584,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 18:05:07','2025-10-10 20:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760119507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760119507;}',11,1,'2025-10-10 18:05:07','2025-10-10 20:05:07',255970,NULL), -(4585,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 19:05:07','2025-10-10 21:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760123107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760123107;}',11,1,'2025-10-10 19:05:07','2025-10-10 21:05:07',256033,NULL), -(4586,'woocommerce_cleanup_draft_orders','complete','2025-10-11 18:39:07','2025-10-11 20:39:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760207947;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760207947;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-11 18:39:07','2025-10-11 20:39:07',257481,NULL), -(4587,'wp_mail_smtp_admin_notifications_update','complete','2025-10-11 18:40:07','2025-10-11 20:40:07',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760208007;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760208007;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-11 18:40:07','2025-10-11 20:40:07',257483,NULL), -(4588,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 20:05:07','2025-10-10 22:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760126707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760126707;}',11,1,'2025-10-10 20:05:07','2025-10-10 22:05:07',256095,NULL), -(4589,'woocommerce_refresh_order_count_cache','complete','2025-10-11 07:15:07','2025-10-11 09:15:07',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760166907;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760166907;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-11 07:15:07','2025-10-11 09:15:07',256779,NULL), -(4590,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 21:05:07','2025-10-10 23:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760130307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760130307;}',11,1,'2025-10-10 21:05:07','2025-10-10 23:05:07',256156,NULL), -(4591,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 22:05:07','2025-10-11 00:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760133907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760133907;}',11,1,'2025-10-10 22:05:07','2025-10-11 00:05:07',256218,NULL), -(4592,'woocommerce_scheduled_sales','complete','2025-10-11 22:03:07','2025-10-12 00:03:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760220187;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760220187;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-11 22:03:07','2025-10-12 00:03:07',257691,NULL), -(4593,'woocommerce_cancel_unpaid_orders','complete','2025-10-10 23:05:07','2025-10-11 01:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760137507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760137507;}',11,1,'2025-10-10 23:05:07','2025-10-11 01:05:07',256279,NULL), -(4594,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 00:05:07','2025-10-11 02:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760141107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760141107;}',11,1,'2025-10-11 00:05:07','2025-10-11 02:05:07',256340,NULL), -(4595,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 01:05:07','2025-10-11 03:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760144707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760144707;}',11,1,'2025-10-11 01:05:07','2025-10-11 03:05:07',256401,NULL), -(4596,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 02:05:07','2025-10-11 04:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760148307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760148307;}',11,1,'2025-10-11 02:05:07','2025-10-11 04:05:07',256463,NULL), -(4597,'woocommerce_cleanup_sessions','complete','2025-10-11 13:19:07','2025-10-11 15:19:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760188747;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760188747;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-11 13:19:07','2025-10-11 15:19:07',257154,NULL), -(4598,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 03:05:07','2025-10-11 05:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760151907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760151907;}',11,1,'2025-10-11 03:05:07','2025-10-11 05:05:07',256524,NULL), -(4599,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 04:05:07','2025-10-11 06:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760155507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760155507;}',11,1,'2025-10-11 04:05:07','2025-10-11 06:05:07',256585,NULL), -(4600,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 05:05:07','2025-10-11 07:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760159107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760159107;}',11,1,'2025-10-11 05:05:07','2025-10-11 07:05:07',256646,NULL), -(4601,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 06:05:07','2025-10-11 08:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760162707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760162707;}',11,1,'2025-10-11 06:05:07','2025-10-11 08:05:07',256707,NULL), -(4602,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 07:05:07','2025-10-11 09:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760166307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760166307;}',11,1,'2025-10-11 07:05:07','2025-10-11 09:05:07',256768,NULL), -(4603,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 08:05:07','2025-10-11 10:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760169907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760169907;}',11,1,'2025-10-11 08:05:07','2025-10-11 10:05:07',256833,NULL), -(4604,'woocommerce_refresh_order_count_cache','complete','2025-10-11 19:15:07','2025-10-11 21:15:07',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760210107;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760210107;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-11 19:15:07','2025-10-11 21:15:07',257520,NULL), -(4605,'wc_admin_daily_wrapper','complete','2025-10-12 07:17:07','2025-10-12 09:17:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760253427;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760253427;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-12 07:17:08','2025-10-12 09:17:08',258258,NULL), -(4606,'woocommerce_cleanup_personal_data','complete','2025-10-12 07:19:07','2025-10-12 09:19:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760253547;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760253547;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-12 07:19:08','2025-10-12 09:19:08',258261,NULL), -(4607,'generate_category_lookup_table_wrapper','complete','2025-10-11 07:19:17','2025-10-11 09:19:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760167157;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760167157;}',11,1,'2025-10-11 07:20:07','2025-10-11 09:20:07',256787,NULL), -(4608,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-12 07:19:07','2025-10-12 09:19:07',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760253547;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760253547;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-12 07:19:08','2025-10-12 09:19:08',258261,NULL), -(4609,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 09:05:07','2025-10-11 11:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760173507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760173507;}',11,1,'2025-10-11 09:05:07','2025-10-11 11:05:07',256894,NULL), -(4610,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 10:05:07','2025-10-11 12:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760177107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760177107;}',11,1,'2025-10-11 10:05:07','2025-10-11 12:05:07',256955,NULL), -(4611,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 11:05:07','2025-10-11 13:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760180707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760180707;}',11,1,'2025-10-11 11:05:07','2025-10-11 13:05:07',257017,NULL), -(4612,'woocommerce_cleanup_logs','failed','2025-10-12 10:16:07','2025-10-12 12:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760264167;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760264167;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-12 10:17:07','2025-10-12 12:17:07',258444,NULL), -(4613,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-12 10:16:07','2025-10-12 12:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760264167;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760264167;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-12 10:17:07','2025-10-12 12:17:07',258444,NULL), -(4614,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 12:05:07','2025-10-11 14:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760184307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760184307;}',11,1,'2025-10-11 12:05:07','2025-10-11 14:05:07',257078,NULL), -(4615,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 13:05:07','2025-10-11 15:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760187907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760187907;}',11,1,'2025-10-11 13:05:07','2025-10-11 15:05:07',257139,NULL), -(4616,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 14:05:07','2025-10-11 16:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760191507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760191507;}',11,1,'2025-10-11 14:05:07','2025-10-11 16:05:07',257201,NULL), -(4617,'woocommerce_cleanup_sessions','complete','2025-10-12 01:19:07','2025-10-12 03:19:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760231947;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760231947;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-12 01:19:07','2025-10-12 03:19:07',257892,NULL), -(4618,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 15:05:07','2025-10-11 17:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760195107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760195107;}',11,1,'2025-10-11 15:05:07','2025-10-11 17:05:07',257262,NULL), -(4619,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 16:05:07','2025-10-11 18:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760198707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760198707;}',11,1,'2025-10-11 16:05:07','2025-10-11 18:05:07',257324,NULL), -(4620,'wc-admin_import_orders','complete','2025-10-11 15:06:44','2025-10-11 17:06:44',10,'[1487]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760195204;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760195204;}',4,1,'2025-10-11 15:08:07','2025-10-11 17:08:07',257266,NULL), -(4621,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 17:05:07','2025-10-11 19:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760202307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760202307;}',11,1,'2025-10-11 17:05:07','2025-10-11 19:05:07',257385,NULL), -(4622,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 18:05:07','2025-10-11 20:05:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760205907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760205907;}',11,1,'2025-10-11 18:06:07','2025-10-11 20:06:07',257447,NULL), -(4623,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 19:06:07','2025-10-11 21:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760209567;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760209567;}',11,1,'2025-10-11 19:06:07','2025-10-11 21:06:07',257510,NULL), -(4624,'woocommerce_cleanup_draft_orders','complete','2025-10-12 18:39:07','2025-10-12 20:39:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760294347;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760294347;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-12 18:39:08','2025-10-12 20:39:08',258958,NULL), -(4625,'wp_mail_smtp_admin_notifications_update','complete','2025-10-12 18:40:07','2025-10-12 20:40:07',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760294407;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760294407;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-12 18:40:08','2025-10-12 20:40:08',258960,NULL), -(4626,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 20:06:07','2025-10-11 22:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760213167;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760213167;}',11,1,'2025-10-11 20:06:07','2025-10-11 22:06:07',257572,NULL), -(4627,'woocommerce_refresh_order_count_cache','complete','2025-10-12 07:15:07','2025-10-12 09:15:07',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760253307;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760253307;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-12 07:15:07','2025-10-12 09:15:07',258255,NULL), -(4628,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 21:06:07','2025-10-11 23:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760216767;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760216767;}',11,1,'2025-10-11 21:06:07','2025-10-11 23:06:07',257633,NULL), -(4629,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 22:06:07','2025-10-12 00:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760220367;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760220367;}',11,1,'2025-10-11 22:06:07','2025-10-12 00:06:07',257695,NULL), -(4630,'woocommerce_scheduled_sales','complete','2025-10-12 22:03:07','2025-10-13 00:03:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760306587;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760306587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-12 22:03:08','2025-10-13 00:03:08',259170,NULL), -(4631,'woocommerce_cancel_unpaid_orders','complete','2025-10-11 23:06:07','2025-10-12 01:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760223967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760223967;}',11,1,'2025-10-11 23:06:07','2025-10-12 01:06:07',257756,NULL), -(4632,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 00:06:07','2025-10-12 02:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760227567;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760227567;}',11,1,'2025-10-12 00:06:07','2025-10-12 02:06:07',257817,NULL), -(4633,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 01:06:07','2025-10-12 03:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760231167;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760231167;}',11,1,'2025-10-12 01:06:07','2025-10-12 03:06:07',257878,NULL), -(4634,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 02:06:07','2025-10-12 04:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760234767;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760234767;}',11,1,'2025-10-12 02:06:07','2025-10-12 04:06:07',257940,NULL), -(4635,'woocommerce_cleanup_sessions','complete','2025-10-12 13:19:07','2025-10-12 15:19:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760275147;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760275147;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-12 13:19:07','2025-10-12 15:19:07',258630,NULL), -(4636,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 03:06:07','2025-10-12 05:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760238367;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760238367;}',11,1,'2025-10-12 03:06:07','2025-10-12 05:06:07',258001,NULL), -(4637,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 04:06:07','2025-10-12 06:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760241967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760241967;}',11,1,'2025-10-12 04:06:07','2025-10-12 06:06:07',258062,NULL), -(4638,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 05:06:07','2025-10-12 07:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760245567;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760245567;}',11,1,'2025-10-12 05:06:07','2025-10-12 07:06:07',258123,NULL), -(4639,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 06:06:07','2025-10-12 08:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760249167;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760249167;}',11,1,'2025-10-12 06:06:07','2025-10-12 08:06:07',258184,NULL), -(4640,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 07:06:07','2025-10-12 09:06:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760252767;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760252767;}',11,1,'2025-10-12 07:07:07','2025-10-12 09:07:07',258246,NULL), -(4641,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 08:07:07','2025-10-12 10:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760256427;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760256427;}',11,1,'2025-10-12 08:07:07','2025-10-12 10:07:07',258311,NULL), -(4642,'woocommerce_refresh_order_count_cache','complete','2025-10-12 19:15:07','2025-10-12 21:15:07',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760296507;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760296507;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-12 19:15:08','2025-10-12 21:15:08',258997,NULL), -(4643,'wc_admin_daily_wrapper','complete','2025-10-13 07:17:08','2025-10-13 09:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760339828;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760339828;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-13 07:17:08','2025-10-13 09:17:08',259737,NULL), -(4644,'woocommerce_cleanup_personal_data','complete','2025-10-13 07:19:08','2025-10-13 09:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760339948;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760339948;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-13 07:19:08','2025-10-13 09:19:08',259740,NULL), -(4645,'generate_category_lookup_table_wrapper','complete','2025-10-12 07:19:18','2025-10-12 09:19:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760253558;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760253558;}',11,1,'2025-10-12 07:20:07','2025-10-12 09:20:07',258263,NULL), -(4646,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-13 07:19:08','2025-10-13 09:19:08',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760339948;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760339948;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-13 07:19:08','2025-10-13 09:19:08',259740,NULL), -(4647,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 09:07:07','2025-10-12 11:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760260027;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760260027;}',11,1,'2025-10-12 09:07:07','2025-10-12 11:07:07',258372,NULL), -(4648,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 10:07:07','2025-10-12 12:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760263627;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760263627;}',11,1,'2025-10-12 10:07:07','2025-10-12 12:07:07',258433,NULL), -(4649,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 11:07:07','2025-10-12 13:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760267227;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760267227;}',11,1,'2025-10-12 11:07:07','2025-10-12 13:07:07',258495,NULL), -(4650,'woocommerce_cleanup_logs','failed','2025-10-13 10:17:07','2025-10-13 12:17:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760350627;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760350627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-13 10:17:08','2025-10-13 12:17:08',259923,NULL), -(4651,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-13 10:17:07','2025-10-13 12:17:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760350627;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760350627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-13 10:17:08','2025-10-13 12:17:08',259923,NULL), -(4652,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 12:07:07','2025-10-12 14:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760270827;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760270827;}',11,1,'2025-10-12 12:07:07','2025-10-12 14:07:07',258556,NULL), -(4653,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 13:07:07','2025-10-12 15:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760274427;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760274427;}',11,1,'2025-10-12 13:07:07','2025-10-12 15:07:07',258617,NULL), -(4654,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 14:07:07','2025-10-12 16:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760278027;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760278027;}',11,1,'2025-10-12 14:07:07','2025-10-12 16:07:07',258679,NULL), -(4655,'woocommerce_cleanup_sessions','complete','2025-10-13 01:19:07','2025-10-13 03:19:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760318347;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760318347;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-13 01:19:08','2025-10-13 03:19:08',259371,NULL), -(4656,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 15:07:07','2025-10-12 17:07:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760281627;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760281627;}',11,1,'2025-10-12 15:07:08','2025-10-12 17:07:08',258742,NULL), -(4657,'wc-admin_import_orders','complete','2025-10-12 14:50:11','2025-10-12 16:50:11',10,'[1488]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760280611;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760280611;}',4,1,'2025-10-12 14:50:28','2025-10-12 16:50:28',258724,NULL), -(4658,'wc-admin_import_orders','complete','2025-10-12 14:50:34','2025-10-12 16:50:34',10,'[1488]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760280634;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760280634;}',4,1,'2025-10-12 14:52:07','2025-10-12 16:52:07',258726,NULL), -(4659,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 16:07:08','2025-10-12 18:07:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760285228;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760285228;}',11,1,'2025-10-12 16:08:08','2025-10-12 18:08:08',258804,NULL), -(4660,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 17:08:07','2025-10-12 19:08:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760288887;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760288887;}',11,1,'2025-10-12 17:08:08','2025-10-12 19:08:08',258865,NULL), -(4661,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 18:08:08','2025-10-12 20:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760292488;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760292488;}',11,1,'2025-10-12 18:08:08','2025-10-12 20:08:08',258926,NULL), -(4662,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 19:08:08','2025-10-12 21:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760296088;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760296088;}',11,1,'2025-10-12 19:08:08','2025-10-12 21:08:08',258989,NULL), -(4663,'woocommerce_cleanup_draft_orders','complete','2025-10-13 18:39:08','2025-10-13 20:39:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760380748;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760380748;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-13 18:39:08','2025-10-13 20:39:08',260435,NULL), -(4664,'wp_mail_smtp_admin_notifications_update','complete','2025-10-13 18:40:08','2025-10-13 20:40:08',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760380808;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760380808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-13 18:40:08','2025-10-13 20:40:08',260437,NULL), -(4665,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 20:08:08','2025-10-12 22:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760299688;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760299688;}',11,1,'2025-10-12 20:08:08','2025-10-12 22:08:08',259051,NULL), -(4666,'woocommerce_refresh_order_count_cache','complete','2025-10-13 07:15:08','2025-10-13 09:15:08',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760339708;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760339708;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-13 07:15:08','2025-10-13 09:15:08',259734,NULL), -(4667,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 21:08:08','2025-10-12 23:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760303288;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760303288;}',11,1,'2025-10-12 21:08:08','2025-10-12 23:08:08',259114,NULL), -(4668,'wc-admin_import_orders','complete','2025-10-12 21:03:23','2025-10-12 23:03:23',10,'[1489]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760303003;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760303003;}',4,1,'2025-10-12 21:04:08','2025-10-12 23:04:08',259108,NULL), -(4669,'wc-admin_import_orders','complete','2025-10-12 21:04:31','2025-10-12 23:04:31',10,'[1489]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760303071;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760303071;}',4,1,'2025-10-12 21:05:08','2025-10-12 23:05:08',259110,NULL), -(4670,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 22:08:08','2025-10-13 00:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760306888;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760306888;}',11,1,'2025-10-12 22:08:08','2025-10-13 00:08:08',259176,NULL), -(4671,'woocommerce_scheduled_sales','complete','2025-10-13 22:03:08','2025-10-14 00:03:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760392988;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760392988;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-13 22:03:08','2025-10-14 00:03:08',260645,NULL), -(4672,'woocommerce_cancel_unpaid_orders','complete','2025-10-12 23:08:08','2025-10-13 01:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760310488;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760310488;}',11,1,'2025-10-12 23:08:08','2025-10-13 01:08:08',259237,NULL), -(4673,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 00:08:08','2025-10-13 02:08:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760314088;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760314088;}',11,1,'2025-10-13 00:08:30','2025-10-13 02:08:30',259299,NULL), -(4674,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 01:08:30','2025-10-13 03:08:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760317710;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760317710;}',11,1,'2025-10-13 01:09:08','2025-10-13 03:09:08',259360,NULL), -(4675,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 02:09:08','2025-10-13 04:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760321348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760321348;}',11,1,'2025-10-13 02:09:08','2025-10-13 04:09:08',259422,NULL), -(4676,'woocommerce_cleanup_sessions','complete','2025-10-13 13:19:08','2025-10-13 15:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760361548;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760361548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-13 13:19:08','2025-10-13 15:19:08',260109,NULL), -(4677,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 03:09:08','2025-10-13 05:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760324948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760324948;}',11,1,'2025-10-13 03:09:08','2025-10-13 05:09:08',259483,NULL), -(4678,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 04:09:08','2025-10-13 06:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760328548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760328548;}',11,1,'2025-10-13 04:09:08','2025-10-13 06:09:08',259544,NULL), -(4679,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 05:09:08','2025-10-13 07:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760332148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760332148;}',11,1,'2025-10-13 05:09:08','2025-10-13 07:09:08',259605,NULL), -(4680,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 06:09:08','2025-10-13 08:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760335748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760335748;}',11,1,'2025-10-13 06:09:08','2025-10-13 08:09:08',259666,NULL), -(4681,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 07:09:08','2025-10-13 09:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760339348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760339348;}',11,1,'2025-10-13 07:09:08','2025-10-13 09:09:08',259727,NULL), -(4682,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 08:09:08','2025-10-13 10:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760342948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760342948;}',11,1,'2025-10-13 08:09:08','2025-10-13 10:09:08',259792,NULL), -(4683,'woocommerce_refresh_order_count_cache','complete','2025-10-13 19:15:08','2025-10-13 21:15:08',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760382908;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760382908;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-13 19:15:08','2025-10-13 21:15:08',260474,NULL), -(4684,'wc_admin_daily_wrapper','complete','2025-10-14 07:17:08','2025-10-14 09:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760426228;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760426228;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-14 07:17:09','2025-10-14 09:17:09',261213,NULL), -(4685,'woocommerce_cleanup_personal_data','complete','2025-10-14 07:19:08','2025-10-14 09:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760426348;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760426348;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-14 07:19:08','2025-10-14 09:19:08',261216,NULL), -(4686,'generate_category_lookup_table_wrapper','complete','2025-10-13 07:19:18','2025-10-13 09:19:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760339958;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760339958;}',11,1,'2025-10-13 07:20:08','2025-10-13 09:20:08',259742,NULL), -(4687,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-14 07:19:08','2025-10-14 09:19:08',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760426348;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760426348;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-14 07:19:08','2025-10-14 09:19:08',261216,NULL), -(4688,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 09:09:08','2025-10-13 11:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760346548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760346548;}',11,1,'2025-10-13 09:09:08','2025-10-13 11:09:08',259853,NULL), -(4689,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 10:09:08','2025-10-13 12:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760350148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760350148;}',11,1,'2025-10-13 10:09:08','2025-10-13 12:09:08',259914,NULL), -(4690,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 11:09:08','2025-10-13 13:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760353748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760353748;}',11,1,'2025-10-13 11:09:08','2025-10-13 13:09:08',259976,NULL), -(4691,'woocommerce_cleanup_logs','failed','2025-10-14 10:17:08','2025-10-14 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760437028;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760437028;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-14 10:17:08','2025-10-14 12:17:08',261399,NULL), -(4692,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-14 10:17:08','2025-10-14 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760437028;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760437028;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-14 10:17:08','2025-10-14 12:17:08',261399,NULL), -(4693,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 12:09:08','2025-10-13 14:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760357348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760357348;}',11,1,'2025-10-13 12:09:08','2025-10-13 14:09:08',260037,NULL), -(4694,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 13:09:08','2025-10-13 15:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760360948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760360948;}',11,1,'2025-10-13 13:09:08','2025-10-13 15:09:08',260098,NULL), -(4695,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 14:09:08','2025-10-13 16:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760364548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760364548;}',11,1,'2025-10-13 14:09:08','2025-10-13 16:09:08',260160,NULL), -(4696,'woocommerce_cleanup_sessions','complete','2025-10-14 01:19:08','2025-10-14 03:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760404748;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760404748;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-14 01:19:08','2025-10-14 03:19:08',260846,NULL), -(4697,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 15:09:08','2025-10-13 17:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760368148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760368148;}',11,1,'2025-10-13 15:09:08','2025-10-13 17:09:08',260221,NULL), -(4698,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 16:09:08','2025-10-13 18:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760371748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760371748;}',11,1,'2025-10-13 16:09:08','2025-10-13 18:09:08',260282,NULL), -(4699,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 17:09:08','2025-10-13 19:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760375348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760375348;}',11,1,'2025-10-13 17:09:08','2025-10-13 19:09:08',260343,NULL), -(4700,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 18:09:08','2025-10-13 20:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760378948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760378948;}',11,1,'2025-10-13 18:09:08','2025-10-13 20:09:08',260404,NULL), -(4701,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 19:09:08','2025-10-13 21:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760382548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760382548;}',11,1,'2025-10-13 19:09:08','2025-10-13 21:09:08',260467,NULL), -(4702,'woocommerce_cleanup_draft_orders','complete','2025-10-14 18:39:08','2025-10-14 20:39:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760467148;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760467148;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-14 18:39:08','2025-10-14 20:39:08',261911,NULL), -(4703,'wp_mail_smtp_admin_notifications_update','complete','2025-10-14 18:40:08','2025-10-14 20:40:08',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760467208;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760467208;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-14 18:40:08','2025-10-14 20:40:08',261913,NULL), -(4704,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 20:09:08','2025-10-13 22:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760386148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760386148;}',11,1,'2025-10-13 20:09:08','2025-10-13 22:09:08',260529,NULL), -(4705,'woocommerce_refresh_order_count_cache','complete','2025-10-14 07:15:08','2025-10-14 09:15:08',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760426108;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760426108;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-14 07:15:08','2025-10-14 09:15:08',261210,NULL), -(4706,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 21:09:08','2025-10-13 23:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760389748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760389748;}',11,1,'2025-10-13 21:09:08','2025-10-13 23:09:08',260590,NULL), -(4707,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 22:09:08','2025-10-14 00:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760393348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760393348;}',11,1,'2025-10-13 22:09:08','2025-10-14 00:09:08',260652,NULL), -(4708,'woocommerce_scheduled_sales','complete','2025-10-14 22:03:08','2025-10-15 00:03:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760479388;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760479388;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-14 22:03:08','2025-10-15 00:03:08',262121,NULL), -(4709,'woocommerce_cancel_unpaid_orders','complete','2025-10-13 23:09:08','2025-10-14 01:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760396948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760396948;}',11,1,'2025-10-13 23:09:08','2025-10-14 01:09:08',260713,NULL), -(4710,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 00:09:08','2025-10-14 02:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760400548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760400548;}',11,1,'2025-10-14 00:09:08','2025-10-14 02:09:08',260774,NULL), -(4711,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 01:09:08','2025-10-14 03:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760404148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760404148;}',11,1,'2025-10-14 01:09:08','2025-10-14 03:09:08',260835,NULL), -(4712,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 02:09:08','2025-10-14 04:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760407748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760407748;}',11,1,'2025-10-14 02:09:08','2025-10-14 04:09:08',260897,NULL), -(4713,'woocommerce_cleanup_sessions','complete','2025-10-14 13:19:08','2025-10-14 15:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760447948;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760447948;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-14 13:19:08','2025-10-14 15:19:08',261585,NULL), -(4714,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 03:09:08','2025-10-14 05:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760411348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760411348;}',11,1,'2025-10-14 03:09:08','2025-10-14 05:09:08',260958,NULL), -(4715,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 04:09:08','2025-10-14 06:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760414948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760414948;}',11,1,'2025-10-14 04:09:08','2025-10-14 06:09:08',261020,NULL), -(4716,'wp_mail_smtp_summary_report_email','complete','2025-10-21 04:06:08','2025-10-21 06:06:08',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761019568;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761019568;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-10-21 04:06:10','2025-10-21 06:06:10',271344,NULL), -(4717,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 05:09:08','2025-10-14 07:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760418548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760418548;}',11,1,'2025-10-14 05:09:08','2025-10-14 07:09:08',261081,NULL), -(4718,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 06:09:08','2025-10-14 08:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760422148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760422148;}',11,1,'2025-10-14 06:09:08','2025-10-14 08:09:08',261142,NULL), -(4719,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 07:09:08','2025-10-14 09:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760425748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760425748;}',11,1,'2025-10-14 07:09:08','2025-10-14 09:09:08',261203,NULL), -(4720,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 08:09:08','2025-10-14 10:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760429348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760429348;}',11,1,'2025-10-14 08:09:08','2025-10-14 10:09:08',261268,NULL), -(4721,'woocommerce_refresh_order_count_cache','complete','2025-10-14 19:15:08','2025-10-14 21:15:08',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760469308;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760469308;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-14 19:15:08','2025-10-14 21:15:08',261950,NULL), -(4722,'wc_admin_daily_wrapper','complete','2025-10-15 07:17:09','2025-10-15 09:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760512629;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760512629;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-15 07:17:46','2025-10-15 09:17:46',262690,NULL), -(4723,'woocommerce_cleanup_personal_data','complete','2025-10-15 07:19:08','2025-10-15 09:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760512748;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760512748;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-15 07:19:30','2025-10-15 09:19:30',262693,NULL), -(4724,'generate_category_lookup_table_wrapper','complete','2025-10-14 07:19:18','2025-10-14 09:19:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760426358;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760426358;}',11,1,'2025-10-14 07:20:08','2025-10-14 09:20:08',261218,NULL), -(4725,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-15 07:19:08','2025-10-15 09:19:08',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760512748;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760512748;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-15 07:19:30','2025-10-15 09:19:30',262693,NULL), -(4726,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 09:09:08','2025-10-14 11:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760432948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760432948;}',11,1,'2025-10-14 09:09:08','2025-10-14 11:09:08',261329,NULL), -(4727,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 10:09:08','2025-10-14 12:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760436548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760436548;}',11,1,'2025-10-14 10:09:08','2025-10-14 12:09:08',261390,NULL), -(4728,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 11:09:08','2025-10-14 13:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760440148;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760440148;}',11,1,'2025-10-14 11:09:08','2025-10-14 13:09:08',261452,NULL), -(4729,'woocommerce_cleanup_logs','failed','2025-10-15 10:17:08','2025-10-15 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760523428;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760523428;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-15 10:17:08','2025-10-15 12:17:08',262876,NULL), -(4730,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-15 10:17:08','2025-10-15 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760523428;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760523428;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-15 10:17:08','2025-10-15 12:17:08',262876,NULL), -(4731,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 12:09:08','2025-10-14 14:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760443748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760443748;}',11,1,'2025-10-14 12:09:08','2025-10-14 14:09:08',261513,NULL), -(4732,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 13:09:08','2025-10-14 15:09:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760447348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760447348;}',11,1,'2025-10-14 13:09:36','2025-10-14 15:09:36',261575,NULL), -(4733,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 14:09:36','2025-10-14 16:09:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760450976;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760450976;}',11,1,'2025-10-14 14:10:08','2025-10-14 16:10:08',261637,NULL), -(4734,'woocommerce_cleanup_sessions','complete','2025-10-15 01:19:08','2025-10-15 03:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760491148;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760491148;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-15 01:19:08','2025-10-15 03:19:08',262322,NULL), -(4735,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 15:10:08','2025-10-14 17:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760454608;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760454608;}',11,1,'2025-10-14 15:10:08','2025-10-14 17:10:08',261698,NULL), -(4736,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 16:10:08','2025-10-14 18:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760458208;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760458208;}',11,1,'2025-10-14 16:10:08','2025-10-14 18:10:08',261759,NULL), -(4737,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 17:10:08','2025-10-14 19:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760461808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760461808;}',11,1,'2025-10-14 17:10:08','2025-10-14 19:10:08',261820,NULL), -(4738,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 18:10:08','2025-10-14 20:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760465408;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760465408;}',11,1,'2025-10-14 18:10:08','2025-10-14 20:10:08',261881,NULL), -(4739,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 19:10:08','2025-10-14 21:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760469008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760469008;}',11,1,'2025-10-14 19:10:08','2025-10-14 21:10:08',261944,NULL), -(4740,'woocommerce_cleanup_draft_orders','complete','2025-10-15 18:39:08','2025-10-15 20:39:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760553548;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760553548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-15 18:39:09','2025-10-15 20:39:09',263388,NULL), -(4741,'wp_mail_smtp_admin_notifications_update','complete','2025-10-15 18:40:08','2025-10-15 20:40:08',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760553608;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760553608;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-15 18:40:09','2025-10-15 20:40:09',263390,NULL), -(4742,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 20:10:08','2025-10-14 22:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760472608;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760472608;}',11,1,'2025-10-14 20:10:08','2025-10-14 22:10:08',262006,NULL), -(4743,'woocommerce_refresh_order_count_cache','complete','2025-10-15 07:15:08','2025-10-15 09:15:08',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760512508;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760512508;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-15 07:15:19','2025-10-15 09:15:19',262686,NULL), -(4744,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 21:10:08','2025-10-14 23:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760476208;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760476208;}',11,1,'2025-10-14 21:10:08','2025-10-14 23:10:08',262067,NULL), -(4745,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 22:10:08','2025-10-15 00:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760479808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760479808;}',11,1,'2025-10-14 22:10:08','2025-10-15 00:10:08',262129,NULL), -(4746,'woocommerce_scheduled_sales','complete','2025-10-15 22:03:08','2025-10-16 00:03:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760565788;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760565788;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-15 22:03:09','2025-10-16 00:03:09',263598,NULL), -(4747,'woocommerce_cancel_unpaid_orders','complete','2025-10-14 23:10:08','2025-10-15 01:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760483408;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760483408;}',11,1,'2025-10-14 23:10:08','2025-10-15 01:10:08',262190,NULL), -(4748,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 00:10:08','2025-10-15 02:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760487008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760487008;}',11,1,'2025-10-15 00:10:08','2025-10-15 02:10:08',262251,NULL), -(4749,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 01:10:08','2025-10-15 03:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760490608;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760490608;}',11,1,'2025-10-15 01:10:08','2025-10-15 03:10:08',262312,NULL), -(4750,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 02:10:08','2025-10-15 04:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760494208;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760494208;}',11,1,'2025-10-15 02:10:08','2025-10-15 04:10:08',262374,NULL), -(4751,'woocommerce_cleanup_sessions','complete','2025-10-15 13:19:08','2025-10-15 15:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760534348;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760534348;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-15 13:19:08','2025-10-15 15:19:08',263062,NULL), -(4752,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 03:10:08','2025-10-15 05:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760497808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760497808;}',11,1,'2025-10-15 03:10:08','2025-10-15 05:10:08',262435,NULL), -(4753,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 04:10:08','2025-10-15 06:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760501408;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760501408;}',11,1,'2025-10-15 04:10:08','2025-10-15 06:10:08',262496,NULL), -(4754,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 05:10:08','2025-10-15 07:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760505008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760505008;}',11,1,'2025-10-15 05:10:08','2025-10-15 07:10:08',262557,NULL), -(4755,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 06:10:08','2025-10-15 08:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760508608;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760508608;}',11,1,'2025-10-15 06:10:08','2025-10-15 08:10:08',262618,NULL), -(4756,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 07:10:08','2025-10-15 09:10:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760512208;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760512208;}',11,1,'2025-10-15 07:10:26','2025-10-15 09:10:26',262680,NULL), -(4757,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 08:10:26','2025-10-15 10:10:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760515826;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760515826;}',11,1,'2025-10-15 08:11:08','2025-10-15 10:11:08',262747,NULL), -(4758,'woocommerce_refresh_order_count_cache','complete','2025-10-15 19:15:19','2025-10-15 21:15:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760555719;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760555719;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-15 19:16:09','2025-10-15 21:16:09',263428,NULL), -(4759,'wc_admin_daily_wrapper','complete','2025-10-16 07:17:46','2025-10-16 09:17:46',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760599066;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760599066;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-16 07:18:09','2025-10-16 09:18:09',264166,NULL), -(4760,'woocommerce_cleanup_personal_data','complete','2025-10-16 07:19:30','2025-10-16 09:19:30',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760599170;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760599170;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-16 07:20:09','2025-10-16 09:20:09',264169,NULL), -(4761,'generate_category_lookup_table_wrapper','complete','2025-10-15 07:19:40','2025-10-15 09:19:40',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760512780;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760512780;}',11,1,'2025-10-15 07:20:00','2025-10-15 09:20:00',262695,NULL), -(4762,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-16 07:19:30','2025-10-16 09:19:30',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760599170;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760599170;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-16 07:20:09','2025-10-16 09:20:09',264169,NULL), -(4763,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 09:11:08','2025-10-15 11:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760519468;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760519468;}',11,1,'2025-10-15 09:11:08','2025-10-15 11:11:08',262808,NULL), -(4764,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 10:11:08','2025-10-15 12:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760523068;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760523068;}',11,1,'2025-10-15 10:11:08','2025-10-15 12:11:08',262869,NULL), -(4765,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 11:11:08','2025-10-15 13:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760526668;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760526668;}',11,1,'2025-10-15 11:11:08','2025-10-15 13:11:08',262931,NULL), -(4766,'woocommerce_cleanup_logs','failed','2025-10-16 10:17:08','2025-10-16 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760609828;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760609828;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-16 10:17:09','2025-10-16 12:17:09',264351,NULL), -(4767,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-16 10:17:08','2025-10-16 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760609828;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760609828;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-16 10:17:09','2025-10-16 12:17:09',264351,NULL), -(4768,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 12:11:08','2025-10-15 14:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760530268;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760530268;}',11,1,'2025-10-15 12:11:08','2025-10-15 14:11:08',262992,NULL), -(4769,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 13:11:08','2025-10-15 15:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760533868;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760533868;}',11,1,'2025-10-15 13:11:08','2025-10-15 15:11:08',263053,NULL), -(4770,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 14:11:08','2025-10-15 16:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760537468;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760537468;}',11,1,'2025-10-15 14:11:08','2025-10-15 16:11:08',263115,NULL), -(4771,'woocommerce_cleanup_sessions','complete','2025-10-16 01:19:08','2025-10-16 03:19:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760577548;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760577548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-16 01:19:09','2025-10-16 03:19:09',263799,NULL), -(4772,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 15:11:08','2025-10-15 17:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760541068;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760541068;}',11,1,'2025-10-15 15:11:08','2025-10-15 17:11:08',263176,NULL), -(4773,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 16:11:08','2025-10-15 18:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760544668;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760544668;}',11,1,'2025-10-15 16:11:08','2025-10-15 18:11:08',263237,NULL), -(4774,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 17:11:08','2025-10-15 19:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760548268;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760548268;}',11,1,'2025-10-15 17:11:09','2025-10-15 19:11:09',263298,NULL), -(4775,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 18:11:08','2025-10-15 20:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760551868;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760551868;}',11,1,'2025-10-15 18:11:09','2025-10-15 20:11:09',263359,NULL), -(4776,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 19:11:08','2025-10-15 21:11:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760555468;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760555468;}',11,1,'2025-10-15 19:11:09','2025-10-15 21:11:09',263422,NULL), -(4777,'woocommerce_cleanup_draft_orders','complete','2025-10-16 18:39:09','2025-10-16 20:39:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760639949;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760639949;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-16 18:39:09','2025-10-16 20:39:09',264865,NULL), -(4778,'wp_mail_smtp_admin_notifications_update','complete','2025-10-16 18:40:09','2025-10-16 20:40:09',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760640009;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760640009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-16 18:40:09','2025-10-16 20:40:09',264867,NULL), -(4779,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 20:11:09','2025-10-15 22:11:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760559069;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760559069;}',11,1,'2025-10-15 20:11:09','2025-10-15 22:11:09',263484,NULL), -(4780,'woocommerce_refresh_order_count_cache','complete','2025-10-16 07:16:09','2025-10-16 09:16:09',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760598969;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760598969;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-16 07:16:09','2025-10-16 09:16:09',264163,NULL), -(4781,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 21:11:09','2025-10-15 23:11:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760562669;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760562669;}',11,1,'2025-10-15 21:12:09','2025-10-15 23:12:09',263546,NULL), -(4782,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 22:12:09','2025-10-16 00:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760566329;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760566329;}',11,1,'2025-10-15 22:12:09','2025-10-16 00:12:09',263608,NULL), -(4783,'woocommerce_scheduled_sales','complete','2025-10-16 22:03:09','2025-10-17 00:03:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760652189;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760652189;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-16 22:03:09','2025-10-17 00:03:09',265075,NULL), -(4784,'woocommerce_cancel_unpaid_orders','complete','2025-10-15 23:12:09','2025-10-16 01:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760569929;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760569929;}',11,1,'2025-10-15 23:12:09','2025-10-16 01:12:09',263669,NULL), -(4785,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 00:12:09','2025-10-16 02:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760573529;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760573529;}',11,1,'2025-10-16 00:12:09','2025-10-16 02:12:09',263730,NULL), -(4786,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 01:12:09','2025-10-16 03:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760577129;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760577129;}',11,1,'2025-10-16 01:12:09','2025-10-16 03:12:09',263791,NULL), -(4787,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 02:12:09','2025-10-16 04:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760580729;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760580729;}',11,1,'2025-10-16 02:12:09','2025-10-16 04:12:09',263853,NULL), -(4788,'woocommerce_cleanup_sessions','complete','2025-10-16 13:19:09','2025-10-16 15:19:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760620749;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760620749;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-16 13:19:09','2025-10-16 15:19:09',264539,NULL), -(4789,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 03:12:09','2025-10-16 05:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760584329;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760584329;}',11,1,'2025-10-16 03:12:09','2025-10-16 05:12:09',263914,NULL), -(4790,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 04:12:09','2025-10-16 06:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760587929;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760587929;}',11,1,'2025-10-16 04:12:09','2025-10-16 06:12:09',263975,NULL), -(4791,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 05:12:09','2025-10-16 07:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760591529;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760591529;}',11,1,'2025-10-16 05:12:09','2025-10-16 07:12:09',264036,NULL), -(4792,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 06:12:09','2025-10-16 08:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760595129;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760595129;}',11,1,'2025-10-16 06:12:09','2025-10-16 08:12:09',264097,NULL), -(4793,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 07:12:09','2025-10-16 09:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760598729;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760598729;}',11,1,'2025-10-16 07:12:09','2025-10-16 09:12:09',264158,NULL), -(4794,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 08:12:09','2025-10-16 10:12:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760602329;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760602329;}',11,1,'2025-10-16 08:13:09','2025-10-16 10:13:09',264224,NULL), -(4795,'woocommerce_refresh_order_count_cache','complete','2025-10-16 19:16:09','2025-10-16 21:16:09',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760642169;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760642169;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-16 19:16:29','2025-10-16 21:16:29',264906,NULL), -(4796,'wc_admin_daily_wrapper','complete','2025-10-17 07:18:09','2025-10-17 09:18:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760685489;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760685489;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-17 07:18:09','2025-10-17 09:18:09',265643,NULL), -(4797,'woocommerce_cleanup_personal_data','complete','2025-10-17 07:20:09','2025-10-17 09:20:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760685609;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760685609;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-17 07:20:09','2025-10-17 09:20:09',265646,NULL), -(4798,'generate_category_lookup_table_wrapper','complete','2025-10-16 07:20:19','2025-10-16 09:20:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760599219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760599219;}',11,1,'2025-10-16 07:20:38','2025-10-16 09:20:38',264171,NULL), -(4799,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-17 07:20:09','2025-10-17 09:20:09',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760685609;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760685609;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-17 07:20:09','2025-10-17 09:20:09',265646,NULL), -(4800,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 09:13:09','2025-10-16 11:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760605989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760605989;}',11,1,'2025-10-16 09:13:09','2025-10-16 11:13:09',264285,NULL), -(4801,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 10:13:09','2025-10-16 12:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760609589;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760609589;}',11,1,'2025-10-16 10:13:09','2025-10-16 12:13:09',264346,NULL), -(4802,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 11:13:09','2025-10-16 13:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760613189;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760613189;}',11,1,'2025-10-16 11:13:09','2025-10-16 13:13:09',264410,NULL), -(4803,'woocommerce_cleanup_logs','failed','2025-10-17 10:17:09','2025-10-17 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760696229;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760696229;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-17 10:17:09','2025-10-17 12:17:09',265828,NULL), -(4804,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-17 10:17:09','2025-10-17 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760696229;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760696229;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-17 10:17:09','2025-10-17 12:17:09',265828,NULL), -(4805,'wc-admin_import_orders','complete','2025-10-16 11:01:55','2025-10-16 13:01:55',10,'[1489]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760612515;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760612515;}',4,1,'2025-10-16 11:02:28','2025-10-16 13:02:28',264398,NULL), -(4806,'wc-admin_import_orders','complete','2025-10-16 11:02:24','2025-10-16 13:02:24',10,'[1487]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760612544;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760612544;}',4,1,'2025-10-16 11:02:28','2025-10-16 13:02:28',264398,NULL), -(4807,'wc-admin_import_orders','complete','2025-10-16 11:02:45','2025-10-16 13:02:45',10,'[1486]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760612565;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760612565;}',4,1,'2025-10-16 11:04:09','2025-10-16 13:04:09',264400,NULL), -(4808,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 12:13:09','2025-10-16 14:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760616789;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760616789;}',11,1,'2025-10-16 12:13:09','2025-10-16 14:13:09',264471,NULL), -(4809,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 13:13:09','2025-10-16 15:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760620389;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760620389;}',11,1,'2025-10-16 13:13:09','2025-10-16 15:13:09',264532,NULL), -(4810,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 14:13:09','2025-10-16 16:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760623989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760623989;}',11,1,'2025-10-16 14:13:09','2025-10-16 16:13:09',264594,NULL), -(4811,'woocommerce_cleanup_sessions','complete','2025-10-17 01:19:09','2025-10-17 03:19:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760663949;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760663949;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-17 01:19:09','2025-10-17 03:19:09',265276,NULL), -(4812,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 15:13:09','2025-10-16 17:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760627589;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760627589;}',11,1,'2025-10-16 15:13:09','2025-10-16 17:13:09',264655,NULL), -(4813,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 16:13:09','2025-10-16 18:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760631189;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760631189;}',11,1,'2025-10-16 16:13:09','2025-10-16 18:13:09',264716,NULL), -(4814,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 17:13:09','2025-10-16 19:13:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760634789;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760634789;}',11,1,'2025-10-16 17:14:09','2025-10-16 19:14:09',264778,NULL), -(4815,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 18:14:09','2025-10-16 20:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760638449;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760638449;}',11,1,'2025-10-16 18:14:09','2025-10-16 20:14:09',264839,NULL), -(4816,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 19:14:09','2025-10-16 21:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760642049;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760642049;}',11,1,'2025-10-16 19:14:09','2025-10-16 21:14:09',264902,NULL), -(4817,'woocommerce_cleanup_draft_orders','complete','2025-10-17 18:39:09','2025-10-17 20:39:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760726349;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760726349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-17 18:39:09','2025-10-17 20:39:09',266340,NULL), -(4818,'wp_mail_smtp_admin_notifications_update','complete','2025-10-17 18:40:09','2025-10-17 20:40:09',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760726409;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760726409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-17 18:40:09','2025-10-17 20:40:09',266342,NULL), -(4819,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 20:14:09','2025-10-16 22:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760645649;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760645649;}',11,1,'2025-10-16 20:14:09','2025-10-16 22:14:09',264964,NULL), -(4820,'woocommerce_refresh_order_count_cache','complete','2025-10-17 07:16:29','2025-10-17 09:16:29',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760685389;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760685389;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-17 07:17:09','2025-10-17 09:17:09',265641,NULL), -(4821,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 21:14:09','2025-10-16 23:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760649249;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760649249;}',11,1,'2025-10-16 21:14:09','2025-10-16 23:14:09',265025,NULL), -(4822,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 22:14:09','2025-10-17 00:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760652849;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760652849;}',11,1,'2025-10-16 22:14:09','2025-10-17 00:14:09',265087,NULL), -(4823,'woocommerce_scheduled_sales','complete','2025-10-17 22:03:09','2025-10-18 00:03:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760738589;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760738589;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-17 22:03:09','2025-10-18 00:03:09',266550,NULL), -(4824,'woocommerce_cancel_unpaid_orders','complete','2025-10-16 23:14:09','2025-10-17 01:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760656449;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760656449;}',11,1,'2025-10-16 23:14:09','2025-10-17 01:14:09',265148,NULL), -(4825,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 00:14:09','2025-10-17 02:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760660049;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760660049;}',11,1,'2025-10-17 00:14:09','2025-10-17 02:14:09',265209,NULL), -(4826,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 01:14:09','2025-10-17 03:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760663649;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760663649;}',11,1,'2025-10-17 01:14:09','2025-10-17 03:14:09',265270,NULL), -(4827,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 02:14:09','2025-10-17 04:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760667249;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760667249;}',11,1,'2025-10-17 02:14:09','2025-10-17 04:14:09',265332,NULL), -(4828,'woocommerce_cleanup_sessions','complete','2025-10-17 13:19:09','2025-10-17 15:19:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760707149;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760707149;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-17 13:19:09','2025-10-17 15:19:09',266014,NULL), -(4829,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 03:14:09','2025-10-17 05:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760670849;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760670849;}',11,1,'2025-10-17 03:14:09','2025-10-17 05:14:09',265393,NULL), -(4830,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 04:14:09','2025-10-17 06:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760674449;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760674449;}',11,1,'2025-10-17 04:14:09','2025-10-17 06:14:09',265454,NULL), -(4831,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 05:14:09','2025-10-17 07:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760678049;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760678049;}',11,1,'2025-10-17 05:14:09','2025-10-17 07:14:09',265515,NULL), -(4832,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 06:14:09','2025-10-17 08:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760681649;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760681649;}',11,1,'2025-10-17 06:14:09','2025-10-17 08:14:09',265576,NULL), -(4833,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 07:14:09','2025-10-17 09:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760685249;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760685249;}',11,1,'2025-10-17 07:14:09','2025-10-17 09:14:09',265637,NULL), -(4834,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 08:14:09','2025-10-17 10:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760688849;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760688849;}',11,1,'2025-10-17 08:14:09','2025-10-17 10:14:09',265702,NULL), -(4835,'woocommerce_refresh_order_count_cache','complete','2025-10-17 19:17:09','2025-10-17 21:17:09',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760728629;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760728629;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-17 19:17:09','2025-10-17 21:17:09',266381,NULL), -(4836,'wc_admin_daily_wrapper','complete','2025-10-18 07:18:09','2025-10-18 09:18:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760771889;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760771889;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-18 07:18:10','2025-10-18 09:18:10',267117,NULL), -(4837,'woocommerce_cleanup_personal_data','complete','2025-10-18 07:20:09','2025-10-18 09:20:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760772009;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760772009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-18 07:20:09','2025-10-18 09:20:09',267120,NULL), -(4838,'generate_category_lookup_table_wrapper','complete','2025-10-17 07:20:19','2025-10-17 09:20:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760685619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760685619;}',11,1,'2025-10-17 07:21:09','2025-10-17 09:21:09',265648,NULL), -(4839,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-18 07:20:09','2025-10-18 09:20:09',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760772009;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760772009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-18 07:20:10','2025-10-18 09:20:10',267120,NULL), -(4840,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 09:14:09','2025-10-17 11:14:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760692449;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760692449;}',11,1,'2025-10-17 09:15:09','2025-10-17 11:15:09',265764,NULL), -(4841,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 10:15:09','2025-10-17 12:15:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760696109;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760696109;}',11,1,'2025-10-17 10:15:09','2025-10-17 12:15:09',265825,NULL), -(4842,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 11:15:09','2025-10-17 13:15:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760699709;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760699709;}',11,1,'2025-10-17 11:15:09','2025-10-17 13:15:09',265887,NULL), -(4843,'woocommerce_cleanup_logs','failed','2025-10-18 10:17:09','2025-10-18 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760782629;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760782629;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-18 10:17:09','2025-10-18 12:17:09',267301,NULL), -(4844,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-18 10:17:09','2025-10-18 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760782629;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760782629;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-18 10:17:09','2025-10-18 12:17:09',267301,NULL), -(4845,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 12:15:09','2025-10-17 14:15:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760703309;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760703309;}',11,1,'2025-10-17 12:15:09','2025-10-17 14:15:09',265948,NULL), -(4846,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 13:15:09','2025-10-17 15:15:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760706909;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760706909;}',11,1,'2025-10-17 13:15:09','2025-10-17 15:15:09',266009,NULL), -(4847,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 14:15:09','2025-10-17 16:15:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760710509;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760710509;}',11,1,'2025-10-17 14:15:31','2025-10-17 16:15:31',266072,NULL), -(4848,'woocommerce_cleanup_sessions','complete','2025-10-18 01:19:09','2025-10-18 03:19:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760750349;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760750349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-18 01:19:09','2025-10-18 03:19:09',266751,NULL), -(4849,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 15:15:31','2025-10-17 17:15:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760714131;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760714131;}',11,1,'2025-10-17 15:16:09','2025-10-17 17:16:09',266133,NULL), -(4850,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 16:16:09','2025-10-17 18:16:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760717769;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760717769;}',11,1,'2025-10-17 16:16:09','2025-10-17 18:16:09',266194,NULL), -(4851,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 17:16:09','2025-10-17 19:16:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760721369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760721369;}',11,1,'2025-10-17 17:16:09','2025-10-17 19:16:09',266255,NULL), -(4852,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 18:16:09','2025-10-17 20:16:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760724969;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760724969;}',11,1,'2025-10-17 18:16:09','2025-10-17 20:16:09',266316,NULL), -(4853,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 19:16:09','2025-10-17 21:16:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760728569;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760728569;}',11,1,'2025-10-17 19:16:09','2025-10-17 21:16:09',266379,NULL), -(4854,'woocommerce_cleanup_draft_orders','complete','2025-10-18 18:39:09','2025-10-18 20:39:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760812749;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760812749;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-18 18:39:10','2025-10-18 20:39:10',267815,NULL), -(4855,'wp_mail_smtp_admin_notifications_update','complete','2025-10-18 18:40:09','2025-10-18 20:40:09',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760812809;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760812809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-18 18:40:10','2025-10-18 20:40:10',267817,NULL), -(4856,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 20:16:09','2025-10-17 22:16:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760732169;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760732169;}',11,1,'2025-10-17 20:17:09','2025-10-17 22:17:09',266442,NULL), -(4857,'woocommerce_refresh_order_count_cache','complete','2025-10-18 07:17:09','2025-10-18 09:17:09',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760771829;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760771829;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-18 07:17:09','2025-10-18 09:17:09',267115,NULL), -(4858,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 21:17:09','2025-10-17 23:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760735829;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760735829;}',11,1,'2025-10-17 21:17:09','2025-10-17 23:17:09',266503,NULL), -(4859,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 22:17:09','2025-10-18 00:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760739429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760739429;}',11,1,'2025-10-17 22:17:09','2025-10-18 00:17:09',266565,NULL), -(4860,'woocommerce_scheduled_sales','complete','2025-10-18 22:03:09','2025-10-19 00:03:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760824989;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760824989;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-18 22:03:10','2025-10-19 00:03:10',268024,NULL), -(4861,'woocommerce_cancel_unpaid_orders','complete','2025-10-17 23:17:09','2025-10-18 01:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760743029;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760743029;}',11,1,'2025-10-17 23:17:09','2025-10-18 01:17:09',266626,NULL), -(4862,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 00:17:09','2025-10-18 02:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760746629;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760746629;}',11,1,'2025-10-18 00:17:09','2025-10-18 02:17:09',266687,NULL), -(4863,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 01:17:09','2025-10-18 03:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760750229;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760750229;}',11,1,'2025-10-18 01:17:09','2025-10-18 03:17:09',266748,NULL), -(4864,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 02:17:09','2025-10-18 04:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760753829;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760753829;}',11,1,'2025-10-18 02:17:09','2025-10-18 04:17:09',266810,NULL), -(4865,'woocommerce_cleanup_sessions','complete','2025-10-18 13:19:09','2025-10-18 15:19:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760793549;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760793549;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-18 13:20:09','2025-10-18 15:20:09',267488,NULL), -(4866,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 03:17:09','2025-10-18 05:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760757429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760757429;}',11,1,'2025-10-18 03:17:09','2025-10-18 05:17:09',266871,NULL), -(4867,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 04:17:09','2025-10-18 06:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760761029;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760761029;}',11,1,'2025-10-18 04:17:10','2025-10-18 06:17:10',266932,NULL), -(4868,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 05:17:09','2025-10-18 07:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760764629;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760764629;}',11,1,'2025-10-18 05:17:09','2025-10-18 07:17:09',266993,NULL), -(4869,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 06:17:09','2025-10-18 08:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760768229;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760768229;}',11,1,'2025-10-18 06:17:09','2025-10-18 08:17:09',267054,NULL), -(4870,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 07:17:09','2025-10-18 09:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760771829;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760771829;}',11,1,'2025-10-18 07:17:09','2025-10-18 09:17:09',267115,NULL), -(4871,'woocommerce_refresh_order_count_cache','complete','2025-10-18 19:17:09','2025-10-18 21:17:09',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760815029;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760815029;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-18 19:17:10','2025-10-18 21:17:10',267855,NULL), -(4872,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 08:17:09','2025-10-18 10:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760775429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760775429;}',11,1,'2025-10-18 08:17:09','2025-10-18 10:17:09',267179,NULL), -(4873,'wc_admin_daily_wrapper','complete','2025-10-19 07:18:10','2025-10-19 09:18:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760858290;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760858290;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-19 07:18:10','2025-10-19 09:18:10',268591,NULL), -(4874,'woocommerce_cleanup_personal_data','complete','2025-10-19 07:20:09','2025-10-19 09:20:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760858409;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760858409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-19 07:20:10','2025-10-19 09:20:10',268595,NULL), -(4875,'generate_category_lookup_table_wrapper','complete','2025-10-18 07:20:20','2025-10-18 09:20:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760772020;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760772020;}',11,1,'2025-10-18 07:21:09','2025-10-18 09:21:09',267122,NULL), -(4876,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-19 07:20:10','2025-10-19 09:20:10',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760858410;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760858410;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-19 07:20:10','2025-10-19 09:20:10',268595,NULL), -(4877,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 09:17:09','2025-10-18 11:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760779029;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760779029;}',11,1,'2025-10-18 09:17:09','2025-10-18 11:17:09',267240,NULL), -(4878,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 10:17:09','2025-10-18 12:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760782629;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760782629;}',11,1,'2025-10-18 10:17:09','2025-10-18 12:17:09',267301,NULL), -(4879,'woocommerce_cleanup_logs','failed','2025-10-19 10:17:09','2025-10-19 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760869029;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760869029;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-19 10:17:10','2025-10-19 12:17:10',268776,NULL), -(4880,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-19 10:17:09','2025-10-19 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760869029;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760869029;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-19 10:17:10','2025-10-19 12:17:10',268776,NULL), -(4881,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 11:17:09','2025-10-18 13:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760786229;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760786229;}',11,1,'2025-10-18 11:17:09','2025-10-18 13:17:09',267362,NULL), -(4882,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 12:17:09','2025-10-18 14:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760789829;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760789829;}',11,1,'2025-10-18 12:17:09','2025-10-18 14:17:09',267423,NULL), -(4883,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 13:17:09','2025-10-18 15:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760793429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760793429;}',11,1,'2025-10-18 13:17:10','2025-10-18 15:17:10',267484,NULL), -(4884,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 14:17:09','2025-10-18 16:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760797029;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760797029;}',11,1,'2025-10-18 14:17:10','2025-10-18 16:17:10',267548,NULL), -(4885,'woocommerce_cleanup_sessions','complete','2025-10-19 01:20:09','2025-10-19 03:20:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760836809;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760836809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-19 01:20:10','2025-10-19 03:20:10',268226,NULL), -(4886,'wc-admin_import_orders','complete','2025-10-18 13:34:31','2025-10-18 15:34:31',10,'[1490]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760794471;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760794471;}',4,1,'2025-10-18 13:36:10','2025-10-18 15:36:10',267505,NULL), -(4887,'wc-admin_import_orders','complete','2025-10-18 13:36:50','2025-10-18 15:36:50',10,'[1490]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760794610;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760794610;}',4,1,'2025-10-18 13:38:09','2025-10-18 15:38:09',267508,NULL), -(4888,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 15:17:09','2025-10-18 17:17:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760800629;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760800629;}',11,1,'2025-10-18 15:17:10','2025-10-18 17:17:10',267609,NULL), -(4889,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 16:17:10','2025-10-18 18:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760804230;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760804230;}',11,1,'2025-10-18 16:17:10','2025-10-18 18:17:10',267670,NULL), -(4890,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 17:17:10','2025-10-18 19:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760807830;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760807830;}',11,1,'2025-10-18 17:17:10','2025-10-18 19:17:10',267731,NULL), -(4891,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 18:17:10','2025-10-18 20:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760811430;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760811430;}',11,1,'2025-10-18 18:17:10','2025-10-18 20:17:10',267792,NULL), -(4892,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 19:17:10','2025-10-18 21:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760815030;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760815030;}',11,1,'2025-10-18 19:17:10','2025-10-18 21:17:10',267855,NULL), -(4893,'woocommerce_cleanup_draft_orders','complete','2025-10-19 18:39:10','2025-10-19 20:39:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760899150;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760899150;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-19 18:39:10','2025-10-19 20:39:10',269288,NULL), -(4894,'wp_mail_smtp_admin_notifications_update','complete','2025-10-19 18:40:10','2025-10-19 20:40:10',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760899210;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760899210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-19 18:40:10','2025-10-19 20:40:10',269290,NULL), -(4895,'woocommerce_refresh_order_count_cache','complete','2025-10-19 07:17:10','2025-10-19 09:17:10',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760858230;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760858230;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-19 07:17:10','2025-10-19 09:17:10',268589,NULL), -(4896,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 20:17:10','2025-10-18 22:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760818630;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760818630;}',11,1,'2025-10-18 20:17:10','2025-10-18 22:17:10',267916,NULL), -(4897,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 21:17:10','2025-10-18 23:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760822230;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760822230;}',11,1,'2025-10-18 21:17:10','2025-10-18 23:17:10',267977,NULL), -(4898,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 22:17:10','2025-10-19 00:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760825830;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760825830;}',11,1,'2025-10-18 22:17:10','2025-10-19 00:17:10',268039,NULL), -(4899,'woocommerce_scheduled_sales','complete','2025-10-19 22:03:10','2025-10-20 00:03:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760911390;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760911390;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-19 22:03:10','2025-10-20 00:03:10',269498,NULL), -(4900,'woocommerce_cancel_unpaid_orders','complete','2025-10-18 23:17:10','2025-10-19 01:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760829430;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760829430;}',11,1,'2025-10-18 23:17:10','2025-10-19 01:17:10',268100,NULL), -(4901,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 00:17:10','2025-10-19 02:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760833030;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760833030;}',11,1,'2025-10-19 00:17:10','2025-10-19 02:17:10',268161,NULL), -(4902,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 01:17:10','2025-10-19 03:17:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760836630;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760836630;}',11,1,'2025-10-19 01:18:10','2025-10-19 03:18:10',268223,NULL), -(4903,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 02:18:10','2025-10-19 04:18:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760840290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760840290;}',11,1,'2025-10-19 02:18:10','2025-10-19 04:18:10',268285,NULL), -(4904,'woocommerce_cleanup_sessions','complete','2025-10-19 13:20:10','2025-10-19 15:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760880010;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760880010;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-19 13:20:10','2025-10-19 15:20:10',268963,NULL), -(4905,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 03:18:10','2025-10-19 05:18:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760843890;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760843890;}',11,1,'2025-10-19 03:19:10','2025-10-19 05:19:10',268347,NULL), -(4906,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 04:19:10','2025-10-19 06:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760847550;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760847550;}',11,1,'2025-10-19 04:19:10','2025-10-19 06:19:10',268408,NULL), -(4907,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 05:19:10','2025-10-19 07:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760851150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760851150;}',11,1,'2025-10-19 05:19:10','2025-10-19 07:19:10',268469,NULL), -(4908,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 06:19:10','2025-10-19 08:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760854750;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760854750;}',11,1,'2025-10-19 06:19:10','2025-10-19 08:19:10',268530,NULL), -(4909,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 07:19:10','2025-10-19 09:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760858350;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760858350;}',11,1,'2025-10-19 07:19:10','2025-10-19 09:19:10',268593,NULL), -(4910,'woocommerce_refresh_order_count_cache','complete','2025-10-19 19:17:10','2025-10-19 21:17:10',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760901430;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760901430;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-19 19:17:10','2025-10-19 21:17:10',269328,NULL), -(4911,'wc_admin_daily_wrapper','complete','2025-10-20 07:18:10','2025-10-20 09:18:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760944690;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760944690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-20 07:18:11','2025-10-20 09:18:11',270065,NULL), -(4912,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 08:19:10','2025-10-19 10:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760861950;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760861950;}',11,1,'2025-10-19 08:19:10','2025-10-19 10:19:10',268656,NULL), -(4913,'woocommerce_cleanup_personal_data','complete','2025-10-20 07:20:10','2025-10-20 09:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760944810;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760944810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-20 07:20:10','2025-10-20 09:20:10',270068,NULL), -(4914,'generate_category_lookup_table_wrapper','complete','2025-10-19 07:20:20','2025-10-19 09:20:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760858420;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760858420;}',11,1,'2025-10-19 07:21:10','2025-10-19 09:21:10',268597,NULL), -(4915,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-20 07:20:10','2025-10-20 09:20:10',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760944810;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760944810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-20 07:20:10','2025-10-20 09:20:10',270068,NULL), -(4916,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 09:19:10','2025-10-19 11:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760865550;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760865550;}',11,1,'2025-10-19 09:19:10','2025-10-19 11:19:10',268717,NULL), -(4917,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 10:19:10','2025-10-19 12:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760869150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760869150;}',11,1,'2025-10-19 10:19:10','2025-10-19 12:19:10',268779,NULL), -(4918,'woocommerce_cleanup_logs','failed','2025-10-20 10:17:10','2025-10-20 12:17:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760955430;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760955430;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-20 10:17:10','2025-10-20 12:17:10',270250,NULL), -(4919,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-20 10:17:10','2025-10-20 12:17:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760955430;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760955430;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-20 10:17:10','2025-10-20 12:17:10',270250,NULL), -(4920,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 11:19:10','2025-10-19 13:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760872750;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760872750;}',11,1,'2025-10-19 11:19:10','2025-10-19 13:19:10',268840,NULL), -(4921,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 12:19:10','2025-10-19 14:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760876350;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760876350;}',11,1,'2025-10-19 12:19:10','2025-10-19 14:19:10',268901,NULL), -(4922,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 13:19:10','2025-10-19 15:19:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760879950;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760879950;}',11,1,'2025-10-19 13:20:10','2025-10-19 15:20:10',268963,NULL), -(4923,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 14:20:10','2025-10-19 16:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760883610;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760883610;}',11,1,'2025-10-19 14:20:10','2025-10-19 16:20:10',269024,NULL), -(4924,'woocommerce_cleanup_sessions','complete','2025-10-20 01:20:10','2025-10-20 03:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760923210;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760923210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-20 01:20:10','2025-10-20 03:20:10',269699,NULL), -(4925,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 15:20:10','2025-10-19 17:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760887210;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760887210;}',11,1,'2025-10-19 15:20:10','2025-10-19 17:20:10',269085,NULL), -(4926,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 16:20:10','2025-10-19 18:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760890810;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760890810;}',11,1,'2025-10-19 16:20:10','2025-10-19 18:20:10',269146,NULL), -(4927,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 17:20:10','2025-10-19 19:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760894410;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760894410;}',11,1,'2025-10-19 17:20:10','2025-10-19 19:20:10',269207,NULL), -(4928,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 18:20:10','2025-10-19 20:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760898010;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760898010;}',11,1,'2025-10-19 18:20:10','2025-10-19 20:20:10',269268,NULL), -(4929,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 19:20:10','2025-10-19 21:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760901610;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760901610;}',11,1,'2025-10-19 19:20:10','2025-10-19 21:20:10',269332,NULL), -(4930,'woocommerce_cleanup_draft_orders','complete','2025-10-20 18:39:10','2025-10-20 20:39:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760985550;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760985550;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-20 18:39:10','2025-10-20 20:39:10',270763,NULL), -(4931,'wp_mail_smtp_admin_notifications_update','complete','2025-10-20 18:40:10','2025-10-20 20:40:10',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760985610;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760985610;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-20 18:40:10','2025-10-20 20:40:10',270765,NULL), -(4932,'woocommerce_refresh_order_count_cache','complete','2025-10-20 07:17:10','2025-10-20 09:17:10',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760944630;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760944630;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-20 07:17:10','2025-10-20 09:17:10',270063,NULL), -(4933,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 20:20:10','2025-10-19 22:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760905210;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760905210;}',11,1,'2025-10-19 20:20:10','2025-10-19 22:20:10',269393,NULL), -(4934,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 21:20:10','2025-10-19 23:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760908810;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760908810;}',11,1,'2025-10-19 21:20:10','2025-10-19 23:20:10',269454,NULL), -(4935,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 22:20:10','2025-10-20 00:20:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760912410;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760912410;}',11,1,'2025-10-19 22:21:10','2025-10-20 00:21:10',269517,NULL), -(4936,'woocommerce_scheduled_sales','complete','2025-10-20 22:03:10','2025-10-21 00:03:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760997790;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760997790;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-20 22:03:10','2025-10-21 00:03:10',270973,NULL), -(4937,'woocommerce_cancel_unpaid_orders','complete','2025-10-19 23:21:10','2025-10-20 01:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760916070;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760916070;}',11,1,'2025-10-19 23:21:10','2025-10-20 01:21:10',269578,NULL), -(4938,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 00:21:10','2025-10-20 02:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760919670;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760919670;}',11,1,'2025-10-20 00:21:10','2025-10-20 02:21:10',269639,NULL), -(4939,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 01:21:10','2025-10-20 03:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760923270;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760923270;}',11,1,'2025-10-20 01:21:10','2025-10-20 03:21:10',269701,NULL), -(4940,'woocommerce_cleanup_sessions','complete','2025-10-20 13:20:10','2025-10-20 15:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760966410;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760966410;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-20 13:20:10','2025-10-20 15:20:10',270437,NULL), -(4941,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 02:21:10','2025-10-20 04:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760926870;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760926870;}',11,1,'2025-10-20 02:21:10','2025-10-20 04:21:10',269762,NULL), -(4942,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 03:21:10','2025-10-20 05:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760930470;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760930470;}',11,1,'2025-10-20 03:21:10','2025-10-20 05:21:10',269823,NULL), -(4943,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 04:21:10','2025-10-20 06:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760934070;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760934070;}',11,1,'2025-10-20 04:21:10','2025-10-20 06:21:10',269884,NULL), -(4944,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 05:21:10','2025-10-20 07:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760937670;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760937670;}',11,1,'2025-10-20 05:21:10','2025-10-20 07:21:10',269945,NULL), -(4945,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 06:21:10','2025-10-20 08:21:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760941270;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760941270;}',11,1,'2025-10-20 06:22:10','2025-10-20 08:22:10',270007,NULL), -(4946,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 07:22:10','2025-10-20 09:22:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760944930;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760944930;}',11,1,'2025-10-20 07:23:10','2025-10-20 09:23:10',270073,NULL), -(4947,'woocommerce_refresh_order_count_cache','complete','2025-10-20 19:17:10','2025-10-20 21:17:10',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760987830;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760987830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-20 19:18:10','2025-10-20 21:18:10',270804,NULL), -(4948,'wc_admin_daily_wrapper','complete','2025-10-21 07:18:11','2025-10-21 09:18:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761031091;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761031091;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-21 07:18:11','2025-10-21 09:18:11',271540,NULL), -(4949,'woocommerce_cleanup_personal_data','complete','2025-10-21 07:20:10','2025-10-21 09:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761031210;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761031210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-21 07:20:11','2025-10-21 09:20:11',271543,NULL), -(4950,'generate_category_lookup_table_wrapper','complete','2025-10-20 07:20:20','2025-10-20 09:20:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760944820;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760944820;}',11,1,'2025-10-20 07:21:10','2025-10-20 09:21:10',270070,NULL), -(4951,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-21 07:20:10','2025-10-21 09:20:10',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761031210;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761031210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-21 07:20:11','2025-10-21 09:20:11',271543,NULL), -(4952,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 08:23:10','2025-10-20 10:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760948590;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760948590;}',11,1,'2025-10-20 08:23:10','2025-10-20 10:23:10',270134,NULL), -(4953,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 09:23:10','2025-10-20 11:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760952190;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760952190;}',11,1,'2025-10-20 09:23:10','2025-10-20 11:23:10',270195,NULL), -(4954,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 10:23:10','2025-10-20 12:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760955790;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760955790;}',11,1,'2025-10-20 10:23:10','2025-10-20 12:23:10',270257,NULL), -(4955,'woocommerce_cleanup_logs','failed','2025-10-21 10:17:10','2025-10-21 12:17:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761041830;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761041830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-21 10:17:11','2025-10-21 12:17:11',271725,NULL), -(4956,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-21 10:17:10','2025-10-21 12:17:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761041830;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761041830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-21 10:17:11','2025-10-21 12:17:11',271725,NULL), -(4957,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 11:23:10','2025-10-20 13:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760959390;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760959390;}',11,1,'2025-10-20 11:23:10','2025-10-20 13:23:10',270318,NULL), -(4958,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 12:23:10','2025-10-20 14:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760962990;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760962990;}',11,1,'2025-10-20 12:23:10','2025-10-20 14:23:10',270379,NULL), -(4959,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 13:23:10','2025-10-20 15:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760966590;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760966590;}',11,1,'2025-10-20 13:23:10','2025-10-20 15:23:10',270441,NULL), -(4960,'woocommerce_cleanup_sessions','complete','2025-10-21 01:20:10','2025-10-21 03:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761009610;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761009610;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-21 01:20:10','2025-10-21 03:20:10',271174,NULL), -(4961,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 14:23:10','2025-10-20 16:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760970190;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760970190;}',11,1,'2025-10-20 14:23:10','2025-10-20 16:23:10',270502,NULL), -(4962,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 15:23:10','2025-10-20 17:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760973790;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760973790;}',11,1,'2025-10-20 15:23:10','2025-10-20 17:23:10',270563,NULL), -(4963,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 16:23:10','2025-10-20 18:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760977390;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760977390;}',11,1,'2025-10-20 16:23:10','2025-10-20 18:23:10',270624,NULL), -(4964,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 17:23:10','2025-10-20 19:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760980990;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760980990;}',11,1,'2025-10-20 17:23:10','2025-10-20 19:23:10',270685,NULL), -(4965,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 18:23:10','2025-10-20 20:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760984590;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760984590;}',11,1,'2025-10-20 18:23:10','2025-10-20 20:23:10',270746,NULL), -(4966,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 19:23:10','2025-10-20 21:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760988190;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760988190;}',11,1,'2025-10-20 19:23:10','2025-10-20 21:23:10',270810,NULL), -(4967,'woocommerce_cleanup_draft_orders','complete','2025-10-21 18:39:10','2025-10-21 20:39:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761071950;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761071950;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-21 18:39:11','2025-10-21 20:39:11',272238,NULL), -(4968,'wp_mail_smtp_admin_notifications_update','complete','2025-10-21 18:40:10','2025-10-21 20:40:10',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761072010;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761072010;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-21 18:40:11','2025-10-21 20:40:11',272240,NULL), -(4969,'woocommerce_refresh_order_count_cache','complete','2025-10-21 07:18:10','2025-10-21 09:18:10',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761031090;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761031090;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-21 07:18:11','2025-10-21 09:18:11',271540,NULL), -(4970,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 20:23:10','2025-10-20 22:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760991790;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760991790;}',11,1,'2025-10-20 20:23:10','2025-10-20 22:23:10',270871,NULL), -(4971,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 21:23:10','2025-10-20 23:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760995390;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760995390;}',11,1,'2025-10-20 21:24:10','2025-10-20 23:24:10',270933,NULL), -(4972,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 22:24:10','2025-10-21 00:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1760999050;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1760999050;}',11,1,'2025-10-20 22:24:10','2025-10-21 00:24:10',270995,NULL), -(4973,'woocommerce_scheduled_sales','complete','2025-10-21 22:03:10','2025-10-22 00:03:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761084190;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761084190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-21 22:03:11','2025-10-22 00:03:11',272448,NULL), -(4974,'woocommerce_cancel_unpaid_orders','complete','2025-10-20 23:24:10','2025-10-21 01:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761002650;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761002650;}',11,1,'2025-10-20 23:24:10','2025-10-21 01:24:10',271056,NULL), -(4975,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 00:24:10','2025-10-21 02:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761006250;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761006250;}',11,1,'2025-10-21 00:24:10','2025-10-21 02:24:10',271117,NULL), -(4976,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 01:24:10','2025-10-21 03:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761009850;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761009850;}',11,1,'2025-10-21 01:24:10','2025-10-21 03:24:10',271179,NULL), -(4977,'woocommerce_cleanup_sessions','complete','2025-10-21 13:20:10','2025-10-21 15:20:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761052810;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761052810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-21 13:20:11','2025-10-21 15:20:11',271912,NULL), -(4978,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 02:24:10','2025-10-21 04:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761013450;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761013450;}',11,1,'2025-10-21 02:24:10','2025-10-21 04:24:10',271240,NULL), -(4979,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 03:24:10','2025-10-21 05:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761017050;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761017050;}',11,1,'2025-10-21 03:24:10','2025-10-21 05:24:10',271301,NULL), -(4980,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 04:24:10','2025-10-21 06:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761020650;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761020650;}',11,1,'2025-10-21 04:24:10','2025-10-21 06:24:10',271363,NULL), -(4981,'wp_mail_smtp_summary_report_email','complete','2025-10-28 04:06:10','2025-10-28 05:06:10',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761624370;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761624370;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-10-28 04:07:13','2025-10-28 05:07:13',281671,NULL), -(4982,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 05:24:10','2025-10-21 07:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761024250;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761024250;}',11,1,'2025-10-21 05:24:11','2025-10-21 07:24:11',271424,NULL), -(4983,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 06:24:10','2025-10-21 08:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761027850;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761027850;}',11,1,'2025-10-21 06:24:11','2025-10-21 08:24:11',271485,NULL), -(4984,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 07:24:10','2025-10-21 09:24:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761031450;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761031450;}',11,1,'2025-10-21 07:24:11','2025-10-21 09:24:11',271549,NULL), -(4985,'woocommerce_refresh_order_count_cache','complete','2025-10-21 19:18:11','2025-10-21 21:18:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761074291;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761074291;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-21 19:18:11','2025-10-21 21:18:11',272279,NULL), -(4986,'wc_admin_daily_wrapper','complete','2025-10-22 07:18:11','2025-10-22 09:18:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761117491;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761117491;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-22 07:18:12','2025-10-22 09:18:12',273013,NULL), -(4987,'woocommerce_cleanup_personal_data','complete','2025-10-22 07:20:11','2025-10-22 09:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761117611;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761117611;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-22 07:20:11','2025-10-22 09:20:11',273016,NULL), -(4988,'generate_category_lookup_table_wrapper','complete','2025-10-21 07:20:21','2025-10-21 09:20:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761031221;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761031221;}',11,1,'2025-10-21 07:21:11','2025-10-21 09:21:11',271545,NULL), -(4989,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-22 07:20:11','2025-10-22 09:20:11',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761117611;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761117611;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-22 07:20:11','2025-10-22 09:20:11',273016,NULL), -(4990,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 08:24:11','2025-10-21 10:24:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761035051;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761035051;}',11,1,'2025-10-21 08:25:11','2025-10-21 10:25:11',271611,NULL), -(4991,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 09:25:11','2025-10-21 11:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761038711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761038711;}',11,1,'2025-10-21 09:25:11','2025-10-21 11:25:11',271672,NULL), -(4992,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 10:25:11','2025-10-21 12:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761042311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761042311;}',11,1,'2025-10-21 10:25:11','2025-10-21 12:25:11',271734,NULL), -(4993,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-22 10:17:11','2025-10-22 12:17:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761128231;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761128231;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-22 10:17:11','2025-10-22 12:17:11',273198,NULL), -(4994,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 11:25:11','2025-10-21 13:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761045911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761045911;}',11,1,'2025-10-21 11:25:11','2025-10-21 13:25:11',271795,NULL), -(4995,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 12:25:11','2025-10-21 14:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761049511;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761049511;}',11,1,'2025-10-21 12:25:11','2025-10-21 14:25:11',271856,NULL), -(4996,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 13:25:11','2025-10-21 15:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761053111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761053111;}',11,1,'2025-10-21 13:25:11','2025-10-21 15:25:11',271918,NULL), -(4997,'woocommerce_cleanup_sessions','complete','2025-10-22 01:20:11','2025-10-22 03:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761096011;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761096011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-22 01:20:11','2025-10-22 03:20:11',272649,NULL), -(4998,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 14:25:11','2025-10-21 16:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761056711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761056711;}',11,1,'2025-10-21 14:25:11','2025-10-21 16:25:11',271979,NULL), -(4999,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 15:25:11','2025-10-21 17:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761060311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761060311;}',11,1,'2025-10-21 15:25:11','2025-10-21 17:25:11',272040,NULL), -(5000,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 16:25:11','2025-10-21 18:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761063911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761063911;}',11,1,'2025-10-21 16:25:11','2025-10-21 18:25:11',272101,NULL), -(5001,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 17:25:11','2025-10-21 19:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761067511;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761067511;}',11,1,'2025-10-21 17:25:11','2025-10-21 19:25:11',272162,NULL), -(5002,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 18:25:11','2025-10-21 20:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761071111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761071111;}',11,1,'2025-10-21 18:25:11','2025-10-21 20:25:11',272223,NULL), -(5003,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 19:25:11','2025-10-21 21:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761074711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761074711;}',11,1,'2025-10-21 19:25:11','2025-10-21 21:25:11',272287,NULL), -(5004,'woocommerce_cleanup_draft_orders','complete','2025-10-22 18:39:11','2025-10-22 20:39:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761158351;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761158351;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-22 18:39:11','2025-10-22 20:39:11',273712,NULL), -(5005,'wp_mail_smtp_admin_notifications_update','complete','2025-10-22 18:40:11','2025-10-22 20:40:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761158411;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761158411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-22 18:40:11','2025-10-22 20:40:11',273714,NULL), -(5006,'woocommerce_refresh_order_count_cache','complete','2025-10-22 07:18:11','2025-10-22 09:18:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761117491;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761117491;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-22 07:18:12','2025-10-22 09:18:12',273013,NULL), -(5007,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 20:25:11','2025-10-21 22:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761078311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761078311;}',11,1,'2025-10-21 20:25:11','2025-10-21 22:25:11',272348,NULL), -(5008,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 21:25:11','2025-10-21 23:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761081911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761081911;}',11,1,'2025-10-21 21:25:11','2025-10-21 23:25:11',272409,NULL), -(5009,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 22:25:11','2025-10-22 00:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761085511;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761085511;}',11,1,'2025-10-21 22:25:11','2025-10-22 00:25:11',272471,NULL), -(5010,'woocommerce_scheduled_sales','complete','2025-10-22 22:03:11','2025-10-23 00:03:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761170591;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761170591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-22 22:03:11','2025-10-23 00:03:11',273922,NULL), -(5011,'woocommerce_cancel_unpaid_orders','complete','2025-10-21 23:25:11','2025-10-22 01:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761089111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761089111;}',11,1,'2025-10-21 23:25:11','2025-10-22 01:25:11',272532,NULL), -(5012,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 00:25:11','2025-10-22 02:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761092711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761092711;}',11,1,'2025-10-22 00:25:11','2025-10-22 02:25:11',272593,NULL), -(5013,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 01:25:11','2025-10-22 03:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761096311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761096311;}',11,1,'2025-10-22 01:25:11','2025-10-22 03:25:11',272655,NULL), -(5014,'woocommerce_cleanup_sessions','complete','2025-10-22 13:20:11','2025-10-22 15:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761139211;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761139211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-22 13:20:11','2025-10-22 15:20:11',273386,NULL), -(5015,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 02:25:11','2025-10-22 04:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761099911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761099911;}',11,1,'2025-10-22 02:25:11','2025-10-22 04:25:11',272716,NULL), -(5016,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 03:25:11','2025-10-22 05:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761103511;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761103511;}',11,1,'2025-10-22 03:25:11','2025-10-22 05:25:11',272777,NULL), -(5017,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 04:25:11','2025-10-22 06:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761107111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761107111;}',11,1,'2025-10-22 04:25:11','2025-10-22 06:25:11',272838,NULL), -(5018,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 05:25:11','2025-10-22 07:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761110711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761110711;}',11,1,'2025-10-22 05:25:11','2025-10-22 07:25:11',272899,NULL), -(5019,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 06:25:11','2025-10-22 08:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761114311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761114311;}',11,1,'2025-10-22 06:25:11','2025-10-22 08:25:11',272960,NULL), -(5020,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 07:25:11','2025-10-22 09:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761117911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761117911;}',11,1,'2025-10-22 07:25:11','2025-10-22 09:25:11',273023,NULL), -(5021,'wc_admin_daily_wrapper','complete','2025-10-23 07:18:12','2025-10-23 09:18:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761203892;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761203892;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-23 07:19:12','2025-10-23 09:19:12',274490,NULL), -(5022,'woocommerce_refresh_order_count_cache','complete','2025-10-22 19:18:12','2025-10-22 21:18:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761160692;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761160692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-22 19:19:11','2025-10-22 21:19:11',273754,NULL), -(5023,'woocommerce_cleanup_personal_data','complete','2025-10-23 07:20:11','2025-10-23 09:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761204011;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761204011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-23 07:20:11','2025-10-23 09:20:11',274492,NULL), -(5024,'woocommerce_cleanup_logs','failed','2025-10-22 10:20:11','2025-10-22 12:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761128411;s:18:\"\0*\0first_timestamp\";i:1761128411;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761128411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-22 10:20:11','2025-10-22 12:20:11',273202,NULL), -(5025,'generate_category_lookup_table_wrapper','complete','2025-10-22 07:20:21','2025-10-22 09:20:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761117621;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761117621;}',11,1,'2025-10-22 07:21:11','2025-10-22 09:21:11',273018,NULL), -(5026,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-23 07:20:11','2025-10-23 09:20:11',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761204011;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761204011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-23 07:20:11','2025-10-23 09:20:11',274492,NULL), -(5027,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 08:25:11','2025-10-22 10:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761121511;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761121511;}',11,1,'2025-10-22 08:25:11','2025-10-22 10:25:11',273084,NULL), -(5028,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 09:25:11','2025-10-22 11:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761125111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761125111;}',11,1,'2025-10-22 09:25:11','2025-10-22 11:25:11',273145,NULL), -(5029,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 10:25:11','2025-10-22 12:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761128711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761128711;}',11,1,'2025-10-22 10:25:11','2025-10-22 12:25:11',273208,NULL), -(5030,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-23 10:17:11','2025-10-23 12:17:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761214631;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761214631;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-23 10:17:11','2025-10-23 12:17:11',274674,NULL), -(5031,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 11:25:11','2025-10-22 13:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761132311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761132311;}',11,1,'2025-10-22 11:25:11','2025-10-22 13:25:11',273269,NULL), -(5032,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 12:25:11','2025-10-22 14:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761135911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761135911;}',11,1,'2025-10-22 12:25:11','2025-10-22 14:25:11',273330,NULL), -(5033,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 13:25:11','2025-10-22 15:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761139511;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761139511;}',11,1,'2025-10-22 13:25:11','2025-10-22 15:25:11',273392,NULL), -(5034,'woocommerce_cleanup_sessions','complete','2025-10-23 01:20:11','2025-10-23 03:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761182411;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761182411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-23 01:20:11','2025-10-23 03:20:11',274123,NULL), -(5035,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 14:25:11','2025-10-22 16:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761143111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761143111;}',11,1,'2025-10-22 14:25:11','2025-10-22 16:25:11',273453,NULL), -(5036,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 15:25:11','2025-10-22 17:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761146711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761146711;}',11,1,'2025-10-22 15:25:11','2025-10-22 17:25:11',273514,NULL), -(5037,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 16:25:11','2025-10-22 18:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761150311;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761150311;}',11,1,'2025-10-22 16:25:11','2025-10-22 18:25:11',273575,NULL), -(5038,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 17:25:11','2025-10-22 19:25:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761153911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761153911;}',11,1,'2025-10-22 17:26:11','2025-10-22 19:26:11',273637,NULL), -(5039,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 18:26:11','2025-10-22 20:26:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761157571;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761157571;}',11,1,'2025-10-22 18:26:11','2025-10-22 20:26:11',273698,NULL), -(5040,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 19:26:11','2025-10-22 21:26:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761161171;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761161171;}',11,1,'2025-10-22 19:26:11','2025-10-22 21:26:11',273762,NULL), -(5041,'woocommerce_cleanup_draft_orders','complete','2025-10-23 18:39:11','2025-10-23 20:39:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761244751;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761244751;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-23 18:39:11','2025-10-23 20:39:11',275188,NULL), -(5042,'wp_mail_smtp_admin_notifications_update','complete','2025-10-23 18:40:11','2025-10-23 20:40:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761244811;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761244811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-23 18:40:11','2025-10-23 20:40:11',275190,NULL), -(5043,'woocommerce_refresh_order_count_cache','complete','2025-10-23 07:19:11','2025-10-23 09:19:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761203951;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761203951;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-23 07:19:12','2025-10-23 09:19:12',274490,NULL), -(5044,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 20:26:11','2025-10-22 22:26:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761164771;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761164771;}',11,1,'2025-10-22 20:26:11','2025-10-22 22:26:11',273823,NULL), -(5045,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 21:26:11','2025-10-22 23:26:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761168371;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761168371;}',11,1,'2025-10-22 21:26:27','2025-10-22 23:26:27',273885,NULL), -(5046,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 22:26:27','2025-10-23 00:26:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761171987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761171987;}',11,1,'2025-10-22 22:27:11','2025-10-23 00:27:11',273947,NULL), -(5047,'woocommerce_scheduled_sales','complete','2025-10-23 22:03:11','2025-10-24 00:03:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761256991;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761256991;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-23 22:03:11','2025-10-24 00:03:11',275398,NULL), -(5048,'woocommerce_cancel_unpaid_orders','complete','2025-10-22 23:27:11','2025-10-23 01:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761175631;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761175631;}',11,1,'2025-10-22 23:27:11','2025-10-23 01:27:11',274008,NULL), -(5049,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 00:27:11','2025-10-23 02:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761179231;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761179231;}',11,1,'2025-10-23 00:27:11','2025-10-23 02:27:11',274069,NULL), -(5050,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 01:27:11','2025-10-23 03:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761182831;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761182831;}',11,1,'2025-10-23 01:27:11','2025-10-23 03:27:11',274131,NULL), -(5051,'woocommerce_cleanup_sessions','complete','2025-10-23 13:20:11','2025-10-23 15:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761225611;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761225611;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-23 13:20:11','2025-10-23 15:20:11',274862,NULL), -(5052,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 02:27:11','2025-10-23 04:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761186431;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761186431;}',11,1,'2025-10-23 02:27:11','2025-10-23 04:27:11',274192,NULL), -(5053,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 03:27:11','2025-10-23 05:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761190031;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761190031;}',11,1,'2025-10-23 03:27:11','2025-10-23 05:27:11',274253,NULL), -(5054,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 04:27:11','2025-10-23 06:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761193631;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761193631;}',11,1,'2025-10-23 04:27:11','2025-10-23 06:27:11',274314,NULL), -(5055,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 05:27:11','2025-10-23 07:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761197231;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761197231;}',11,1,'2025-10-23 05:27:11','2025-10-23 07:27:11',274375,NULL), -(5056,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 06:27:11','2025-10-23 08:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761200831;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761200831;}',11,1,'2025-10-23 06:27:11','2025-10-23 08:27:11',274436,NULL), -(5057,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 07:27:11','2025-10-23 09:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761204431;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761204431;}',11,1,'2025-10-23 07:27:11','2025-10-23 09:27:11',274501,NULL), -(5058,'woocommerce_geoip_updater','pending','2025-11-07 07:14:11','2025-11-07 08:14:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762499651;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762499651;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5059,'wc_admin_daily_wrapper','complete','2025-10-24 07:19:12','2025-10-24 09:19:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761290352;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761290352;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-24 07:20:12','2025-10-24 09:20:12',275967,NULL), -(5060,'woocommerce_refresh_order_count_cache','complete','2025-10-23 19:19:12','2025-10-23 21:19:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761247152;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761247152;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-23 19:20:11','2025-10-23 21:20:11',275231,NULL), -(5061,'woocommerce_cleanup_personal_data','complete','2025-10-24 07:20:11','2025-10-24 09:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761290411;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761290411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-24 07:20:12','2025-10-24 09:20:12',275967,NULL), -(5062,'woocommerce_cleanup_logs','failed','2025-10-23 10:20:11','2025-10-23 12:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761214811;s:18:\"\0*\0first_timestamp\";i:1761214811;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761214811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-23 10:20:11','2025-10-23 12:20:11',274678,NULL), -(5063,'generate_category_lookup_table_wrapper','complete','2025-10-23 07:20:21','2025-10-23 09:20:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761204021;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761204021;}',11,1,'2025-10-23 07:21:11','2025-10-23 09:21:11',274494,NULL), -(5064,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-24 07:20:11','2025-10-24 09:20:11',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761290411;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761290411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-24 07:20:12','2025-10-24 09:20:12',275967,NULL), -(5065,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 08:27:11','2025-10-23 10:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761208031;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761208031;}',11,1,'2025-10-23 08:27:11','2025-10-23 10:27:11',274562,NULL), -(5066,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 09:27:11','2025-10-23 11:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761211631;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761211631;}',11,1,'2025-10-23 09:27:11','2025-10-23 11:27:11',274623,NULL), -(5067,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 10:27:11','2025-10-23 12:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761215231;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761215231;}',11,1,'2025-10-23 10:27:11','2025-10-23 12:27:11',274686,NULL), -(5068,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-24 10:17:11','2025-10-24 12:17:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761301031;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761301031;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-24 10:17:12','2025-10-24 12:17:12',276149,NULL), -(5069,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 11:27:11','2025-10-23 13:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761218831;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761218831;}',11,1,'2025-10-23 11:27:11','2025-10-23 13:27:11',274747,NULL), -(5070,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 12:27:11','2025-10-23 14:27:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761222431;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761222431;}',11,1,'2025-10-23 12:27:32','2025-10-23 14:27:32',274809,NULL), -(5071,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 13:27:32','2025-10-23 15:27:32',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761226052;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761226052;}',11,1,'2025-10-23 13:28:11','2025-10-23 15:28:11',274871,NULL), -(5072,'woocommerce_cleanup_sessions','complete','2025-10-24 01:20:11','2025-10-24 03:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761268811;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761268811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-24 01:20:11','2025-10-24 03:20:11',275599,NULL), -(5073,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 14:28:11','2025-10-23 16:28:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761229691;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761229691;}',11,1,'2025-10-23 14:28:11','2025-10-23 16:28:11',274932,NULL), -(5074,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 15:28:11','2025-10-23 17:28:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761233291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761233291;}',11,1,'2025-10-23 15:28:11','2025-10-23 17:28:11',274993,NULL), -(5075,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 16:28:11','2025-10-23 18:28:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761236891;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761236891;}',11,1,'2025-10-23 16:28:11','2025-10-23 18:28:11',275054,NULL), -(5076,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 17:28:11','2025-10-23 19:28:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761240491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761240491;}',11,1,'2025-10-23 17:28:11','2025-10-23 19:28:11',275115,NULL), -(5077,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 18:28:11','2025-10-23 20:28:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761244091;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761244091;}',11,1,'2025-10-23 18:29:11','2025-10-23 20:29:11',275177,NULL), -(5078,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 19:29:11','2025-10-23 21:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761247751;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761247751;}',11,1,'2025-10-23 19:29:11','2025-10-23 21:29:11',275241,NULL), -(5079,'woocommerce_cleanup_draft_orders','complete','2025-10-24 18:39:11','2025-10-24 20:39:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761331151;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761331151;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-24 18:40:04','2025-10-24 20:40:04',276665,NULL), -(5080,'wp_mail_smtp_admin_notifications_update','complete','2025-10-24 18:40:11','2025-10-24 20:40:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761331211;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761331211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-24 18:40:53','2025-10-24 20:40:53',276667,NULL), -(5081,'woocommerce_refresh_order_count_cache','complete','2025-10-24 07:20:11','2025-10-24 09:20:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761290411;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761290411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-24 07:20:12','2025-10-24 09:20:12',275967,NULL), -(5082,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 20:29:11','2025-10-23 22:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761251351;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761251351;}',11,1,'2025-10-23 20:29:11','2025-10-23 22:29:11',275302,NULL), -(5083,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 21:29:11','2025-10-23 23:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761254951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761254951;}',11,1,'2025-10-23 21:29:11','2025-10-23 23:29:11',275363,NULL), -(5084,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 22:29:11','2025-10-24 00:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761258551;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761258551;}',11,1,'2025-10-23 22:29:11','2025-10-24 00:29:11',275425,NULL), -(5085,'woocommerce_scheduled_sales','complete','2025-10-24 22:03:11','2025-10-25 00:03:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761343391;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761343391;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-24 22:03:12','2025-10-25 00:03:12',276875,NULL), -(5086,'woocommerce_cancel_unpaid_orders','complete','2025-10-23 23:29:11','2025-10-24 01:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761262151;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761262151;}',11,1,'2025-10-23 23:29:11','2025-10-24 01:29:11',275486,NULL), -(5087,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 00:29:11','2025-10-24 02:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761265751;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761265751;}',11,1,'2025-10-24 00:29:11','2025-10-24 02:29:11',275547,NULL), -(5088,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 01:29:11','2025-10-24 03:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761269351;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761269351;}',11,1,'2025-10-24 01:29:11','2025-10-24 03:29:11',275609,NULL), -(5089,'woocommerce_cleanup_sessions','complete','2025-10-24 13:20:11','2025-10-24 15:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761312011;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761312011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-24 13:20:12','2025-10-24 15:20:12',276337,NULL), -(5090,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 02:29:11','2025-10-24 04:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761272951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761272951;}',11,1,'2025-10-24 02:29:11','2025-10-24 04:29:11',275670,NULL), -(5091,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 03:29:11','2025-10-24 05:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761276551;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761276551;}',11,1,'2025-10-24 03:29:11','2025-10-24 05:29:11',275731,NULL), -(5092,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 04:29:11','2025-10-24 06:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761280151;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761280151;}',11,1,'2025-10-24 04:29:11','2025-10-24 06:29:11',275792,NULL), -(5093,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 05:29:11','2025-10-24 07:29:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761283751;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761283751;}',11,1,'2025-10-24 05:30:12','2025-10-24 07:30:12',275854,NULL), -(5094,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 06:30:11','2025-10-24 08:30:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761287411;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761287411;}',11,1,'2025-10-24 06:30:12','2025-10-24 08:30:12',275915,NULL), -(5095,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 07:30:11','2025-10-24 09:30:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761291011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761291011;}',11,1,'2025-10-24 07:30:12','2025-10-24 09:30:12',275979,NULL), -(5096,'wc-admin_import_orders','complete','2025-10-24 06:59:51','2025-10-24 08:59:51',10,'[1488]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761289191;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761289191;}',4,1,'2025-10-24 07:00:34','2025-10-24 09:00:34',275947,NULL), -(5097,'wc_admin_daily_wrapper','complete','2025-10-25 07:20:12','2025-10-25 09:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761376812;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761376812;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-25 07:20:12','2025-10-25 09:20:12',277443,NULL), -(5098,'woocommerce_cleanup_personal_data','complete','2025-10-25 07:20:12','2025-10-25 09:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761376812;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761376812;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-25 07:20:12','2025-10-25 09:20:12',277443,NULL), -(5099,'woocommerce_refresh_order_count_cache','complete','2025-10-24 19:20:12','2025-10-24 21:20:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761333612;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761333612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-24 19:21:12','2025-10-24 21:21:12',276708,NULL), -(5100,'woocommerce_cleanup_logs','failed','2025-10-24 10:20:12','2025-10-24 12:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761301212;s:18:\"\0*\0first_timestamp\";i:1761301212;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761301212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-24 10:21:12','2025-10-24 12:21:12',276154,NULL), -(5101,'generate_category_lookup_table_wrapper','complete','2025-10-24 07:20:22','2025-10-24 09:20:22',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761290422;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761290422;}',11,1,'2025-10-24 07:21:12','2025-10-24 09:21:12',275969,NULL), -(5102,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-25 07:20:12','2025-10-25 09:20:12',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761376812;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761376812;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-25 07:20:12','2025-10-25 09:20:12',277443,NULL), -(5103,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 08:30:12','2025-10-24 10:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761294612;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761294612;}',11,1,'2025-10-24 08:30:12','2025-10-24 10:30:12',276040,NULL), -(5104,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 09:30:12','2025-10-24 11:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761298212;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761298212;}',11,1,'2025-10-24 09:30:12','2025-10-24 11:30:12',276101,NULL), -(5105,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 10:30:12','2025-10-24 12:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761301812;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761301812;}',11,1,'2025-10-24 10:30:12','2025-10-24 12:30:12',276164,NULL), -(5106,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-25 10:17:12','2025-10-25 12:17:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761387432;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761387432;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-25 10:17:12','2025-10-25 12:17:12',277625,NULL), -(5107,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 11:30:12','2025-10-24 13:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761305412;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761305412;}',11,1,'2025-10-24 11:30:12','2025-10-24 13:30:12',276225,NULL), -(5108,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 12:30:12','2025-10-24 14:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761309012;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761309012;}',11,1,'2025-10-24 12:30:12','2025-10-24 14:30:12',276286,NULL), -(5109,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 13:30:12','2025-10-24 15:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761312612;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761312612;}',11,1,'2025-10-24 13:30:12','2025-10-24 15:30:12',276348,NULL), -(5110,'woocommerce_cleanup_sessions','complete','2025-10-25 01:20:12','2025-10-25 03:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761355212;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761355212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-25 01:20:12','2025-10-25 03:20:12',277076,NULL), -(5111,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 14:30:12','2025-10-24 16:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761316212;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761316212;}',11,1,'2025-10-24 14:30:12','2025-10-24 16:30:12',276409,NULL), -(5112,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 15:30:12','2025-10-24 17:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761319812;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761319812;}',11,1,'2025-10-24 15:30:12','2025-10-24 17:30:12',276470,NULL), -(5113,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 16:30:12','2025-10-24 18:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761323412;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761323412;}',11,1,'2025-10-24 16:30:12','2025-10-24 18:30:12',276531,NULL), -(5114,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 17:30:12','2025-10-24 19:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761327012;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761327012;}',11,1,'2025-10-24 17:30:12','2025-10-24 19:30:12',276592,NULL), -(5115,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 18:30:12','2025-10-24 20:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761330612;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761330612;}',11,1,'2025-10-24 18:30:12','2025-10-24 20:30:12',276654,NULL), -(5116,'wc-admin_import_orders','complete','2025-10-24 17:36:08','2025-10-24 19:36:08',10,'[1490]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761327368;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761327368;}',4,1,'2025-10-24 17:37:12','2025-10-24 19:37:12',276600,NULL), -(5117,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 19:30:12','2025-10-24 21:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761334212;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761334212;}',11,1,'2025-10-24 19:30:12','2025-10-24 21:30:12',276718,NULL), -(5118,'woocommerce_cleanup_draft_orders','complete','2025-10-25 18:40:04','2025-10-25 20:40:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761417604;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761417604;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-25 18:40:12','2025-10-25 20:40:12',278140,NULL), -(5119,'wp_mail_smtp_admin_notifications_update','complete','2025-10-25 18:40:53','2025-10-25 20:40:53',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761417653;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761417653;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-25 18:41:12','2025-10-25 20:41:12',278142,NULL), -(5120,'woocommerce_refresh_order_count_cache','complete','2025-10-25 07:21:12','2025-10-25 09:21:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761376872;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761376872;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-25 07:21:12','2025-10-25 09:21:12',277445,NULL), -(5121,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 20:30:12','2025-10-24 22:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761337812;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761337812;}',11,1,'2025-10-24 20:30:12','2025-10-24 22:30:12',276780,NULL), -(5122,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-24 20:11:13','2025-10-24 22:11:13',10,'[271,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761336673;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761336673;}',3,1,'2025-10-24 20:12:12','2025-10-24 22:12:12',276761,NULL), -(5123,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 21:30:12','2025-10-24 23:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761341412;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761341412;}',11,1,'2025-10-24 21:30:12','2025-10-24 23:30:12',276841,NULL), -(5124,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 22:30:12','2025-10-25 00:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761345012;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761345012;}',11,1,'2025-10-24 22:30:12','2025-10-25 00:30:12',276903,NULL), -(5125,'woocommerce_scheduled_sales','complete','2025-10-25 22:03:12','2025-10-26 00:03:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761429792;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761429792;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-25 22:03:12','2025-10-26 00:03:12',278349,NULL), -(5126,'woocommerce_cancel_unpaid_orders','complete','2025-10-24 23:30:12','2025-10-25 01:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761348612;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761348612;}',11,1,'2025-10-24 23:30:12','2025-10-25 01:30:12',276964,NULL), -(5127,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 00:30:12','2025-10-25 02:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761352212;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761352212;}',11,1,'2025-10-25 00:30:12','2025-10-25 02:30:12',277025,NULL), -(5128,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 01:30:12','2025-10-25 03:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761355812;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761355812;}',11,1,'2025-10-25 01:30:12','2025-10-25 03:30:12',277087,NULL), -(5129,'woocommerce_cleanup_sessions','complete','2025-10-25 13:20:12','2025-10-25 15:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761398412;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761398412;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-25 13:20:12','2025-10-25 15:20:12',277813,NULL), -(5130,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 02:30:12','2025-10-25 04:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761359412;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761359412;}',11,1,'2025-10-25 02:30:12','2025-10-25 04:30:12',277148,NULL), -(5131,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 03:30:12','2025-10-25 05:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761363012;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761363012;}',11,1,'2025-10-25 03:30:12','2025-10-25 05:30:12',277209,NULL), -(5132,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 04:30:12','2025-10-25 06:30:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761366612;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761366612;}',11,1,'2025-10-25 04:30:36','2025-10-25 06:30:36',277271,NULL), -(5133,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 05:30:36','2025-10-25 07:30:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761370236;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761370236;}',11,1,'2025-10-25 05:31:12','2025-10-25 07:31:12',277332,NULL), -(5134,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 06:31:12','2025-10-25 08:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761373872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761373872;}',11,1,'2025-10-25 06:31:12','2025-10-25 08:31:12',277393,NULL), -(5135,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 07:31:12','2025-10-25 09:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761377472;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761377472;}',11,1,'2025-10-25 07:31:12','2025-10-25 09:31:12',277456,NULL), -(5136,'wc_admin_daily_wrapper','complete','2025-10-26 07:20:12','2025-10-26 08:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761463212;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761463212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-26 07:20:12','2025-10-26 08:20:12',278917,NULL), -(5137,'woocommerce_cleanup_personal_data','complete','2025-10-26 07:20:12','2025-10-26 08:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761463212;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761463212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-26 07:20:12','2025-10-26 08:20:12',278917,NULL), -(5138,'woocommerce_cleanup_logs','failed','2025-10-25 10:20:12','2025-10-25 12:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761387612;s:18:\"\0*\0first_timestamp\";i:1761387612;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761387612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-25 10:20:12','2025-10-25 12:20:12',277629,NULL), -(5139,'generate_category_lookup_table_wrapper','complete','2025-10-25 07:20:22','2025-10-25 09:20:22',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761376822;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761376822;}',11,1,'2025-10-25 07:21:12','2025-10-25 09:21:12',277445,NULL), -(5140,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-26 07:20:12','2025-10-26 08:20:12',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761463212;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761463212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-26 07:20:12','2025-10-26 08:20:12',278917,NULL), -(5141,'woocommerce_refresh_order_count_cache','complete','2025-10-25 19:21:12','2025-10-25 21:21:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761420072;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761420072;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-25 19:22:12','2025-10-25 21:22:12',278184,NULL), -(5142,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 08:31:12','2025-10-25 10:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761381072;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761381072;}',11,1,'2025-10-25 08:31:12','2025-10-25 10:31:12',277517,NULL), -(5143,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 09:31:12','2025-10-25 11:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761384672;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761384672;}',11,1,'2025-10-25 09:31:12','2025-10-25 11:31:12',277578,NULL), -(5144,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 10:31:12','2025-10-25 12:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761388272;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761388272;}',11,1,'2025-10-25 10:31:12','2025-10-25 12:31:12',277641,NULL), -(5145,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-26 10:17:12','2025-10-26 11:17:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761473832;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761473832;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-26 10:17:12','2025-10-26 11:17:12',279100,NULL), -(5146,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 11:31:12','2025-10-25 13:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761391872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761391872;}',11,1,'2025-10-25 11:31:12','2025-10-25 13:31:12',277702,NULL), -(5147,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 12:31:12','2025-10-25 14:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761395472;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761395472;}',11,1,'2025-10-25 12:31:12','2025-10-25 14:31:12',277763,NULL), -(5148,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 13:31:12','2025-10-25 15:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761399072;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761399072;}',11,1,'2025-10-25 13:31:12','2025-10-25 15:31:12',277825,NULL), -(5149,'woocommerce_cleanup_sessions','complete','2025-10-26 01:20:12','2025-10-26 02:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761441612;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761441612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-26 01:20:12','2025-10-26 02:20:12',278550,NULL), -(5150,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 14:31:12','2025-10-25 16:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761402672;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761402672;}',11,1,'2025-10-25 14:31:12','2025-10-25 16:31:12',277886,NULL), -(5151,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 15:31:12','2025-10-25 17:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761406272;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761406272;}',11,1,'2025-10-25 15:31:12','2025-10-25 17:31:12',277947,NULL), -(5152,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 16:31:12','2025-10-25 18:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761409872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761409872;}',11,1,'2025-10-25 16:31:12','2025-10-25 18:31:12',278008,NULL), -(5153,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 17:31:12','2025-10-25 19:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761413472;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761413472;}',11,1,'2025-10-25 17:31:12','2025-10-25 19:31:12',278069,NULL), -(5154,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 18:31:12','2025-10-25 20:31:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761417072;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761417072;}',11,1,'2025-10-25 18:31:40','2025-10-25 20:31:40',278131,NULL), -(5155,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 19:31:39','2025-10-25 21:31:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761420699;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761420699;}',11,1,'2025-10-25 19:32:12','2025-10-25 21:32:12',278195,NULL), -(5156,'woocommerce_cleanup_draft_orders','complete','2025-10-26 18:40:12','2025-10-26 19:40:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761504012;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761504012;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-26 18:40:12','2025-10-26 19:40:12',279615,NULL), -(5157,'wp_mail_smtp_admin_notifications_update','complete','2025-10-26 18:41:12','2025-10-26 19:41:12',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761504072;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761504072;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-26 18:42:12','2025-10-26 19:42:12',279618,NULL), -(5158,'woocommerce_refresh_order_count_cache','complete','2025-10-26 07:22:12','2025-10-26 08:22:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761463332;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761463332;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-26 07:22:12','2025-10-26 08:22:12',278921,NULL), -(5159,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 20:32:12','2025-10-25 22:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761424332;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761424332;}',11,1,'2025-10-25 20:32:12','2025-10-25 22:32:12',278256,NULL), -(5160,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 21:32:12','2025-10-25 23:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761427932;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761427932;}',11,1,'2025-10-25 21:32:12','2025-10-25 23:32:12',278317,NULL), -(5161,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 22:32:12','2025-10-26 00:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761431532;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761431532;}',11,1,'2025-10-25 22:32:12','2025-10-26 00:32:12',278379,NULL), -(5162,'woocommerce_scheduled_sales','complete','2025-10-26 22:03:12','2025-10-26 23:03:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761516192;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761516192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-26 22:03:12','2025-10-26 23:03:12',279824,NULL), -(5163,'woocommerce_cancel_unpaid_orders','complete','2025-10-25 23:32:12','2025-10-26 01:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761435132;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761435132;}',11,1,'2025-10-25 23:32:12','2025-10-26 01:32:12',278440,NULL), -(5164,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 00:32:12','2025-10-26 02:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761438732;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761438732;}',11,1,'2025-10-26 00:32:12','2025-10-26 02:32:12',278501,NULL), -(5165,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 01:32:12','2025-10-26 02:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761442332;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761442332;}',11,1,'2025-10-26 01:32:12','2025-10-26 02:32:12',278563,NULL), -(5166,'woocommerce_cleanup_sessions','complete','2025-10-26 13:20:12','2025-10-26 14:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761484812;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761484812;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-26 13:20:12','2025-10-26 14:20:12',279288,NULL), -(5167,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 02:32:12','2025-10-26 03:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761445932;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761445932;}',11,1,'2025-10-26 02:32:12','2025-10-26 03:32:12',278624,NULL), -(5168,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 03:32:12','2025-10-26 04:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761449532;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761449532;}',11,1,'2025-10-26 03:32:12','2025-10-26 04:32:12',278685,NULL), -(5169,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 04:32:12','2025-10-26 05:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761453132;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761453132;}',11,1,'2025-10-26 04:32:12','2025-10-26 05:32:12',278746,NULL), -(5170,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 05:32:12','2025-10-26 06:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761456732;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761456732;}',11,1,'2025-10-26 05:32:12','2025-10-26 06:32:12',278807,NULL), -(5171,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 06:32:12','2025-10-26 07:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761460332;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761460332;}',11,1,'2025-10-26 06:32:12','2025-10-26 07:32:12',278868,NULL), -(5172,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 07:32:12','2025-10-26 08:32:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761463932;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761463932;}',11,1,'2025-10-26 07:33:12','2025-10-26 08:33:12',278933,NULL), -(5173,'wc_admin_daily_wrapper','complete','2025-10-27 07:20:12','2025-10-27 08:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761549612;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761549612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-27 07:20:13','2025-10-27 08:20:13',280392,NULL), -(5174,'woocommerce_cleanup_personal_data','complete','2025-10-27 07:20:12','2025-10-27 08:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761549612;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761549612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-27 07:20:13','2025-10-27 08:20:13',280392,NULL), -(5175,'woocommerce_cleanup_logs','failed','2025-10-26 10:20:12','2025-10-26 11:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761474012;s:18:\"\0*\0first_timestamp\";i:1761474012;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761474012;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-26 10:20:12','2025-10-26 11:20:12',279104,NULL), -(5176,'generate_category_lookup_table_wrapper','complete','2025-10-26 07:20:22','2025-10-26 08:20:22',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761463222;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761463222;}',11,1,'2025-10-26 07:21:12','2025-10-26 08:21:12',278919,NULL), -(5177,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-27 07:20:12','2025-10-27 08:20:12',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761549612;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761549612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-27 07:20:13','2025-10-27 08:20:13',280392,NULL), -(5178,'woocommerce_refresh_order_count_cache','complete','2025-10-26 19:22:12','2025-10-26 20:22:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761506532;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761506532;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-26 19:22:12','2025-10-26 20:22:12',279659,NULL), -(5179,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 08:33:12','2025-10-26 09:33:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761467592;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761467592;}',11,1,'2025-10-26 08:33:12','2025-10-26 09:33:12',278994,NULL), -(5180,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 09:33:12','2025-10-26 10:33:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761471192;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761471192;}',11,1,'2025-10-26 09:33:12','2025-10-26 10:33:12',279055,NULL), -(5181,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 10:33:12','2025-10-26 11:33:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761474792;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761474792;}',11,1,'2025-10-26 10:33:12','2025-10-26 11:33:12',279118,NULL), -(5182,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-27 10:17:12','2025-10-27 11:17:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761560232;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761560232;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-27 10:17:13','2025-10-27 11:17:13',280575,NULL), -(5183,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 11:33:12','2025-10-26 12:33:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761478392;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761478392;}',11,1,'2025-10-26 11:33:50','2025-10-26 12:33:50',279180,NULL), -(5184,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 12:33:50','2025-10-26 13:33:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761482030;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761482030;}',11,1,'2025-10-26 12:34:12','2025-10-26 13:34:12',279241,NULL), -(5185,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 13:34:12','2025-10-26 14:34:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761485652;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761485652;}',11,1,'2025-10-26 13:34:12','2025-10-26 14:34:12',279303,NULL), -(5186,'woocommerce_cleanup_sessions','complete','2025-10-27 01:20:12','2025-10-27 02:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761528012;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761528012;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-27 01:20:12','2025-10-27 02:20:12',280025,NULL), -(5187,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 14:34:12','2025-10-26 15:34:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761489252;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761489252;}',11,1,'2025-10-26 14:34:12','2025-10-26 15:34:12',279364,NULL), -(5188,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 15:34:12','2025-10-26 16:34:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761492852;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761492852;}',11,1,'2025-10-26 15:34:12','2025-10-26 16:34:12',279425,NULL), -(5189,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 16:34:12','2025-10-26 17:34:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761496452;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761496452;}',11,1,'2025-10-26 16:34:12','2025-10-26 17:34:12',279486,NULL), -(5190,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 17:34:12','2025-10-26 18:34:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761500052;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761500052;}',11,1,'2025-10-26 17:35:12','2025-10-26 18:35:12',279548,NULL), -(5191,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 18:35:12','2025-10-26 19:35:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761503712;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761503712;}',11,1,'2025-10-26 18:35:12','2025-10-26 19:35:12',279609,NULL), -(5192,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 19:35:12','2025-10-26 20:35:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761507312;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761507312;}',11,1,'2025-10-26 19:35:13','2025-10-26 20:35:13',279673,NULL), -(5193,'woocommerce_cleanup_draft_orders','complete','2025-10-27 18:40:12','2025-10-27 19:40:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761590412;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761590412;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-27 18:40:56','2025-10-27 19:40:56',281090,NULL), -(5194,'wp_mail_smtp_admin_notifications_update','complete','2025-10-27 18:42:12','2025-10-27 19:42:12',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761590532;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761590532;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-27 18:42:13','2025-10-27 19:42:13',281092,NULL), -(5195,'woocommerce_refresh_order_count_cache','complete','2025-10-27 07:22:12','2025-10-27 08:22:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761549732;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761549732;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-27 07:22:13','2025-10-27 08:22:13',280396,NULL), -(5196,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 20:35:12','2025-10-26 21:35:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761510912;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761510912;}',11,1,'2025-10-26 20:36:12','2025-10-26 21:36:12',279735,NULL), -(5197,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 21:36:12','2025-10-26 22:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761514572;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761514572;}',11,1,'2025-10-26 21:36:12','2025-10-26 22:36:12',279796,NULL), -(5198,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 22:36:12','2025-10-26 23:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761518172;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761518172;}',11,1,'2025-10-26 22:36:12','2025-10-26 23:36:12',279858,NULL), -(5199,'woocommerce_scheduled_sales','complete','2025-10-27 22:03:12','2025-10-27 23:03:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761602592;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761602592;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-27 22:03:13','2025-10-27 23:03:13',281299,NULL), -(5200,'woocommerce_cancel_unpaid_orders','complete','2025-10-26 23:36:12','2025-10-27 00:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761521772;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761521772;}',11,1,'2025-10-26 23:36:12','2025-10-27 00:36:12',279919,NULL), -(5201,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 00:36:12','2025-10-27 01:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761525372;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761525372;}',11,1,'2025-10-27 00:36:12','2025-10-27 01:36:12',279980,NULL), -(5202,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 01:36:12','2025-10-27 02:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761528972;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761528972;}',11,1,'2025-10-27 01:36:13','2025-10-27 02:36:13',280042,NULL), -(5203,'woocommerce_cleanup_sessions','complete','2025-10-27 13:20:12','2025-10-27 14:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761571212;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761571212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-27 13:20:13','2025-10-27 14:20:13',280763,NULL), -(5204,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 02:36:12','2025-10-27 03:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761532572;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761532572;}',11,1,'2025-10-27 02:36:12','2025-10-27 03:36:12',280103,NULL), -(5205,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 03:36:12','2025-10-27 04:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761536172;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761536172;}',11,1,'2025-10-27 03:36:12','2025-10-27 04:36:12',280164,NULL), -(5206,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 04:36:12','2025-10-27 05:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761539772;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761539772;}',11,1,'2025-10-27 04:36:12','2025-10-27 05:36:12',280225,NULL), -(5207,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 05:36:12','2025-10-27 06:36:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761543372;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761543372;}',11,1,'2025-10-27 05:37:13','2025-10-27 06:37:13',280287,NULL), -(5208,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 06:37:12','2025-10-27 07:37:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761547032;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761547032;}',11,1,'2025-10-27 06:38:13','2025-10-27 07:38:13',280349,NULL), -(5209,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 07:38:12','2025-10-27 08:38:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761550692;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761550692;}',11,1,'2025-10-27 07:38:13','2025-10-27 08:38:13',280413,NULL), -(5210,'wc_admin_daily_wrapper','complete','2025-10-28 07:20:13','2025-10-28 08:20:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761636013;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761636013;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-28 07:20:35','2025-10-28 08:20:35',281869,NULL), -(5211,'woocommerce_cleanup_personal_data','complete','2025-10-28 07:20:13','2025-10-28 08:20:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761636013;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761636013;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-28 07:20:35','2025-10-28 08:20:35',281869,NULL), -(5212,'woocommerce_cleanup_logs','failed','2025-10-27 10:20:13','2025-10-27 11:20:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761560413;s:18:\"\0*\0first_timestamp\";i:1761560413;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761560413;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-27 10:20:13','2025-10-27 11:20:13',280579,NULL), -(5213,'generate_category_lookup_table_wrapper','complete','2025-10-27 07:20:23','2025-10-27 08:20:23',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761549623;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761549623;}',11,1,'2025-10-27 07:21:13','2025-10-27 08:21:13',280394,NULL), -(5214,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-28 07:20:13','2025-10-28 08:20:13',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761636013;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761636013;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-28 07:20:35','2025-10-28 08:20:35',281869,NULL), -(5215,'woocommerce_refresh_order_count_cache','complete','2025-10-27 19:22:13','2025-10-27 20:22:13',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761592933;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761592933;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-27 19:22:13','2025-10-27 20:22:13',281133,NULL), -(5216,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 08:38:13','2025-10-27 09:38:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761554293;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761554293;}',11,1,'2025-10-27 08:39:13','2025-10-27 09:39:13',280475,NULL), -(5217,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 09:39:13','2025-10-27 10:39:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761557953;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761557953;}',11,1,'2025-10-27 09:39:13','2025-10-27 10:39:13',280536,NULL), -(5218,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 10:39:13','2025-10-27 11:39:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761561553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761561553;}',11,1,'2025-10-27 10:39:13','2025-10-27 11:39:13',280599,NULL), -(5219,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-28 10:17:13','2025-10-28 11:17:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761646633;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761646633;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-28 10:18:13','2025-10-28 11:18:13',282051,NULL), -(5220,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 11:39:13','2025-10-27 12:39:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761565153;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761565153;}',11,1,'2025-10-27 11:39:13','2025-10-27 12:39:13',280660,NULL), -(5221,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 12:39:13','2025-10-27 13:39:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761568753;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761568753;}',11,1,'2025-10-27 12:40:13','2025-10-27 13:40:13',280722,NULL), -(5222,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 13:40:13','2025-10-27 14:40:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761572413;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761572413;}',11,1,'2025-10-27 13:40:13','2025-10-27 14:40:13',280784,NULL), -(5223,'woocommerce_cleanup_sessions','complete','2025-10-28 01:20:13','2025-10-28 02:20:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761614413;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761614413;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-28 01:21:13','2025-10-28 02:21:13',281501,NULL), -(5224,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 14:40:13','2025-10-27 15:40:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761576013;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761576013;}',11,1,'2025-10-27 14:40:13','2025-10-27 15:40:13',280845,NULL), -(5225,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 15:40:13','2025-10-27 16:40:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761579613;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761579613;}',11,1,'2025-10-27 15:40:13','2025-10-27 16:40:13',280906,NULL), -(5226,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 16:40:13','2025-10-27 17:40:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761583213;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761583213;}',11,1,'2025-10-27 16:40:13','2025-10-27 17:40:13',280967,NULL), -(5227,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 17:40:13','2025-10-27 18:40:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761586813;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761586813;}',11,1,'2025-10-27 17:40:13','2025-10-27 18:40:13',281028,NULL), -(5228,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 18:40:13','2025-10-27 19:40:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761590413;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761590413;}',11,1,'2025-10-27 18:40:56','2025-10-27 19:40:56',281090,NULL), -(5229,'woocommerce_cleanup_draft_orders','complete','2025-10-28 18:40:56','2025-10-28 19:40:56',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761676856;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761676856;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-28 18:42:13','2025-10-28 19:42:13',282566,NULL), -(5230,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 19:40:56','2025-10-27 20:40:56',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761594056;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761594056;}',11,1,'2025-10-27 19:41:01','2025-10-27 20:41:01',281153,NULL), -(5231,'wp_mail_smtp_admin_notifications_update','complete','2025-10-28 18:42:13','2025-10-28 19:42:13',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761676933;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761676933;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-28 18:42:13','2025-10-28 19:42:13',282566,NULL), -(5232,'woocommerce_refresh_order_count_cache','complete','2025-10-28 07:22:13','2025-10-28 08:22:13',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761636133;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761636133;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-28 07:22:13','2025-10-28 08:22:13',281871,NULL), -(5233,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 20:41:01','2025-10-27 21:41:01',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761597661;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761597661;}',11,1,'2025-10-27 20:41:13','2025-10-27 21:41:13',281215,NULL), -(5234,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1459,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5235,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1460,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5236,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1461,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5237,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1462,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5238,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1463,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5239,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1464,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5240,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1465,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5241,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:15','2025-10-27 21:11:15',10,'[1466,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595875;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5242,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[1458,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5243,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[530,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5244,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[124,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5245,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[125,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5246,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[126,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5247,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[127,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5248,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[128,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5249,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[129,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5250,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[130,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5251,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-27 20:11:16','2025-10-27 21:11:16',10,'[123,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761595876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761595876;}',3,1,'2025-10-27 20:12:13','2025-10-27 21:12:13',281185,NULL), -(5252,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 21:41:13','2025-10-27 22:41:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761601273;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761601273;}',11,1,'2025-10-27 21:41:13','2025-10-27 22:41:13',281276,NULL), -(5253,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 22:41:13','2025-10-27 23:41:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761604873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761604873;}',11,1,'2025-10-27 22:41:46','2025-10-27 23:41:46',281339,NULL), -(5254,'woocommerce_scheduled_sales','complete','2025-10-28 22:03:13','2025-10-28 23:03:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761688993;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761688993;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-28 22:03:13','2025-10-28 23:03:13',282772,NULL), -(5255,'woocommerce_cancel_unpaid_orders','complete','2025-10-27 23:41:46','2025-10-28 00:41:46',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761608506;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761608506;}',11,1,'2025-10-27 23:42:13','2025-10-28 00:42:13',281400,NULL), -(5256,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 00:42:13','2025-10-28 01:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761612133;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761612133;}',11,1,'2025-10-28 00:42:13','2025-10-28 01:42:13',281461,NULL), -(5257,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 01:42:13','2025-10-28 02:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761615733;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761615733;}',11,1,'2025-10-28 01:42:13','2025-10-28 02:42:13',281523,NULL), -(5258,'woocommerce_cleanup_sessions','complete','2025-10-28 13:21:13','2025-10-28 14:21:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761657673;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761657673;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-28 13:21:13','2025-10-28 14:21:13',282239,NULL), -(5259,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 02:42:13','2025-10-28 03:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761619333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761619333;}',11,1,'2025-10-28 02:42:13','2025-10-28 03:42:13',281584,NULL), -(5260,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 03:42:13','2025-10-28 04:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761622933;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761622933;}',11,1,'2025-10-28 03:42:13','2025-10-28 04:42:13',281645,NULL), -(5261,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 04:42:13','2025-10-28 05:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761626533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761626533;}',11,1,'2025-10-28 04:42:13','2025-10-28 05:42:13',281707,NULL), -(5262,'wp_mail_smtp_summary_report_email','pending','2025-11-04 04:07:13','2025-11-04 05:07:13',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762229233;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762229233;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5263,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 05:42:13','2025-10-28 06:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761630133;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761630133;}',11,1,'2025-10-28 05:42:13','2025-10-28 06:42:13',281768,NULL), -(5264,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 06:42:13','2025-10-28 07:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761633733;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761633733;}',11,1,'2025-10-28 06:42:13','2025-10-28 07:42:13',281829,NULL), -(5265,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 07:42:13','2025-10-28 08:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761637333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761637333;}',11,1,'2025-10-28 07:42:13','2025-10-28 08:42:13',281892,NULL), -(5266,'wc_admin_daily_wrapper','complete','2025-10-29 07:20:35','2025-10-29 08:20:35',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761722435;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761722435;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-29 07:21:14','2025-10-29 08:21:14',283341,NULL), -(5267,'woocommerce_cleanup_personal_data','complete','2025-10-29 07:20:35','2025-10-29 08:20:35',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761722435;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761722435;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-29 07:21:14','2025-10-29 08:21:14',283341,NULL), -(5268,'woocommerce_cleanup_logs','failed','2025-10-28 10:20:35','2025-10-28 11:20:35',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761646835;s:18:\"\0*\0first_timestamp\";i:1761646835;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761646835;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-28 10:21:13','2025-10-28 11:21:13',282055,NULL), -(5269,'generate_category_lookup_table_wrapper','complete','2025-10-28 07:20:45','2025-10-28 08:20:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761636045;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761636045;}',11,1,'2025-10-28 07:22:13','2025-10-28 08:22:13',281871,NULL), -(5270,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-29 07:20:35','2025-10-29 08:20:35',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761722435;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761722435;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-29 07:21:14','2025-10-29 08:21:14',283341,NULL), -(5271,'woocommerce_refresh_order_count_cache','complete','2025-10-28 19:22:13','2025-10-28 20:22:13',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761679333;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761679333;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-28 19:22:13','2025-10-28 20:22:13',282607,NULL), -(5272,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 08:42:13','2025-10-28 09:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761640933;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761640933;}',11,1,'2025-10-28 08:42:13','2025-10-28 09:42:13',281953,NULL), -(5273,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 09:42:13','2025-10-28 10:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761644533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761644533;}',11,1,'2025-10-28 09:42:13','2025-10-28 10:42:13',282014,NULL), -(5274,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 10:42:13','2025-10-28 11:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761648133;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761648133;}',11,1,'2025-10-28 10:42:13','2025-10-28 11:42:13',282077,NULL), -(5275,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-29 10:18:13','2025-10-29 11:18:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761733093;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761733093;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-29 10:18:22','2025-10-29 11:18:22',283534,NULL), -(5276,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 11:42:13','2025-10-28 12:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761651733;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761651733;}',11,1,'2025-10-28 11:42:13','2025-10-28 12:42:13',282138,NULL), -(5277,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 12:42:13','2025-10-28 13:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761655333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761655333;}',11,1,'2025-10-28 12:42:13','2025-10-28 13:42:13',282199,NULL), -(5278,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 13:42:13','2025-10-28 14:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761658933;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761658933;}',11,1,'2025-10-28 13:42:13','2025-10-28 14:42:13',282261,NULL), -(5279,'woocommerce_cleanup_sessions','complete','2025-10-29 01:21:13','2025-10-29 02:21:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761700873;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761700873;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-29 01:21:13','2025-10-29 02:21:13',282974,NULL), -(5280,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 14:42:13','2025-10-28 15:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761662533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761662533;}',11,1,'2025-10-28 14:42:13','2025-10-28 15:42:13',282322,NULL), -(5281,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 15:42:13','2025-10-28 16:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761666133;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761666133;}',11,1,'2025-10-28 15:42:13','2025-10-28 16:42:13',282383,NULL), -(5282,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 16:42:13','2025-10-28 17:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761669733;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761669733;}',11,1,'2025-10-28 16:42:13','2025-10-28 17:42:13',282444,NULL), -(5283,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 17:42:13','2025-10-28 18:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761673333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761673333;}',11,1,'2025-10-28 17:42:13','2025-10-28 18:42:13',282505,NULL), -(5284,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 18:42:13','2025-10-28 19:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761676933;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761676933;}',11,1,'2025-10-28 18:42:13','2025-10-28 19:42:13',282566,NULL), -(5285,'woocommerce_cleanup_draft_orders','complete','2025-10-29 18:42:13','2025-10-29 19:42:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761763333;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761763333;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-29 18:42:13','2025-10-29 19:42:13',284049,NULL), -(5286,'wp_mail_smtp_admin_notifications_update','complete','2025-10-29 18:42:13','2025-10-29 19:42:13',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761763333;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761763333;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-29 18:42:13','2025-10-29 19:42:13',284049,NULL), -(5287,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 19:42:13','2025-10-28 20:42:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761680533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761680533;}',11,1,'2025-10-28 19:43:13','2025-10-28 20:43:13',282629,NULL), -(5288,'woocommerce_refresh_order_count_cache','complete','2025-10-29 07:22:13','2025-10-29 08:22:13',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761722533;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761722533;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-29 07:22:13','2025-10-29 08:22:13',283343,NULL), -(5289,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 20:43:13','2025-10-28 21:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761684193;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761684193;}',11,1,'2025-10-28 20:43:13','2025-10-28 21:43:13',282690,NULL), -(5290,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 21:43:13','2025-10-28 22:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761687793;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761687793;}',11,1,'2025-10-28 21:43:13','2025-10-28 22:43:13',282751,NULL), -(5291,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 22:43:13','2025-10-28 23:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761691393;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761691393;}',11,1,'2025-10-28 22:43:13','2025-10-28 23:43:13',282813,NULL), -(5292,'woocommerce_scheduled_sales','complete','2025-10-29 22:03:13','2025-10-29 23:03:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761775393;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761775393;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-29 22:03:13','2025-10-29 23:03:13',284256,NULL), -(5293,'woocommerce_cancel_unpaid_orders','complete','2025-10-28 23:43:13','2025-10-29 00:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761694993;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761694993;}',11,1,'2025-10-28 23:43:13','2025-10-29 00:43:13',282874,NULL), -(5294,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 00:43:13','2025-10-29 01:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761698593;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761698593;}',11,1,'2025-10-29 00:43:13','2025-10-29 01:43:13',282935,NULL), -(5295,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 01:43:13','2025-10-29 02:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761702193;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761702193;}',11,1,'2025-10-29 01:43:13','2025-10-29 02:43:13',282997,NULL), -(5296,'woocommerce_cleanup_sessions','complete','2025-10-29 13:21:13','2025-10-29 14:21:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761744073;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761744073;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-29 13:21:13','2025-10-29 14:21:13',283722,NULL), -(5297,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 02:43:13','2025-10-29 03:43:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761705793;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761705793;}',11,1,'2025-10-29 02:44:13','2025-10-29 03:44:13',283059,NULL), -(5298,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 03:44:13','2025-10-29 04:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761709453;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761709453;}',11,1,'2025-10-29 03:44:13','2025-10-29 04:44:13',283120,NULL), -(5299,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 04:44:13','2025-10-29 05:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761713053;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761713053;}',11,1,'2025-10-29 04:44:13','2025-10-29 05:44:13',283181,NULL), -(5300,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 05:44:13','2025-10-29 06:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761716653;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761716653;}',11,1,'2025-10-29 05:44:13','2025-10-29 06:44:13',283242,NULL), -(5301,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 06:44:13','2025-10-29 07:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761720253;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761720253;}',11,1,'2025-10-29 06:44:13','2025-10-29 07:44:13',283303,NULL), -(5302,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 07:44:13','2025-10-29 08:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761723853;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761723853;}',11,1,'2025-10-29 07:44:13','2025-10-29 08:44:13',283366,NULL), -(5303,'wc_admin_daily_wrapper','complete','2025-10-30 07:21:14','2025-10-30 08:21:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761808874;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761808874;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-30 07:21:39','2025-10-30 08:21:39',284826,NULL), -(5304,'woocommerce_cleanup_personal_data','complete','2025-10-30 07:21:14','2025-10-30 08:21:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761808874;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761808874;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-30 07:21:39','2025-10-30 08:21:39',284826,NULL), -(5305,'woocommerce_cleanup_logs','complete','2025-10-29 10:21:14','2025-10-29 11:21:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761733274;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761733274;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-29 10:21:32','2025-10-29 11:21:32',283539,NULL), -(5306,'generate_category_lookup_table_wrapper','complete','2025-10-29 07:21:24','2025-10-29 08:21:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761722484;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761722484;}',11,1,'2025-10-29 07:22:13','2025-10-29 08:22:13',283343,NULL), -(5307,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-30 07:21:14','2025-10-30 08:21:14',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761808874;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761808874;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-30 07:21:39','2025-10-30 08:21:39',284826,NULL), -(5308,'woocommerce_refresh_order_count_cache','complete','2025-10-29 19:22:13','2025-10-29 20:22:13',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761765733;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761765733;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-29 19:23:13','2025-10-29 20:23:13',284092,NULL), -(5309,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 08:44:13','2025-10-29 09:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727453;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727453;}',11,1,'2025-10-29 08:44:13','2025-10-29 09:44:13',283431,NULL), -(5310,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:30:54','2025-10-29 09:30:54',10,'[610,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761726654;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761726654;}',3,1,'2025-10-29 08:31:26','2025-10-29 09:31:26',283415,NULL), -(5311,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:32:32','2025-10-29 09:32:32',10,'[625,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761726752;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761726752;}',3,1,'2025-10-29 08:32:50','2025-10-29 09:32:50',283418,NULL), -(5312,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:38:36','2025-10-29 09:38:36',10,'[1444,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727116;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727116;}',3,1,'2025-10-29 08:39:37','2025-10-29 09:39:37',283426,NULL), -(5313,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 09:44:13','2025-10-29 10:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761731053;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761731053;}',11,1,'2025-10-29 09:44:31','2025-10-29 10:44:31',283499,NULL), -(5314,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:51:44','2025-10-29 09:51:44',10,'[610,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727904;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727904;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5315,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:06','2025-10-29 09:52:06',10,'[560,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727926;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5316,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:06','2025-10-29 09:52:06',10,'[561,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727926;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5317,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:06','2025-10-29 09:52:06',10,'[562,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727926;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5318,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:06','2025-10-29 09:52:06',10,'[563,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727926;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5319,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:06','2025-10-29 09:52:06',10,'[342,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727926;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5320,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:15','2025-10-29 09:52:15',10,'[338,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727935;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727935;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5321,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:23','2025-10-29 09:52:23',10,'[328,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727943;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727943;}',3,1,'2025-10-29 08:52:26','2025-10-29 09:52:26',283441,NULL), -(5322,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:34','2025-10-29 09:52:34',10,'[325,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727954;}',3,1,'2025-10-29 08:52:47','2025-10-29 09:52:47',283443,NULL), -(5323,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 08:52:59','2025-10-29 09:52:59',10,'[251,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761727979;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761727979;}',3,1,'2025-10-29 08:53:42','2025-10-29 09:53:42',283445,NULL), -(5324,'action_scheduler/migration_hook','complete','2025-10-29 09:15:33','2025-10-29 10:15:33',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761729333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761729333;}',1,1,'2025-10-29 09:15:45','2025-10-29 10:15:45',283468,NULL), -(5325,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-10-29 09:26:13','2025-10-29 10:26:13',10,'[1491,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761729973;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761729973;}',3,1,'2025-10-29 09:26:26','2025-10-29 10:26:26',283480,NULL), -(5326,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 10:44:31','2025-10-29 11:44:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761734671;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761734671;}',11,1,'2025-10-29 10:44:33','2025-10-29 11:44:33',283563,NULL), -(5327,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-30 10:18:22','2025-10-30 11:18:22',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761819502;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761819502;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-30 10:19:14','2025-10-30 11:19:14',285008,NULL), -(5328,'woocommerce_cleanup_logs','complete','2025-10-30 10:21:32','2025-10-30 11:21:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761819692;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761819692;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-30 10:22:14','2025-10-30 11:22:14',285012,NULL), -(5329,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 11:44:33','2025-10-29 12:44:33',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761738273;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761738273;}',11,1,'2025-10-29 11:45:13','2025-10-29 12:45:13',283624,NULL), -(5330,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 12:45:13','2025-10-29 13:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761741913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761741913;}',11,1,'2025-10-29 12:45:13','2025-10-29 13:45:13',283685,NULL), -(5331,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 13:45:13','2025-10-29 14:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761745513;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761745513;}',11,1,'2025-10-29 13:45:13','2025-10-29 14:45:13',283747,NULL), -(5332,'woocommerce_cleanup_sessions','complete','2025-10-30 01:21:13','2025-10-30 02:21:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761787273;s:18:\"\0*\0first_timestamp\";i:1757337175;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761787273;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-30 01:21:13','2025-10-30 02:21:13',284458,NULL), -(5333,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 14:45:13','2025-10-29 15:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761749113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761749113;}',11,1,'2025-10-29 14:45:13','2025-10-29 15:45:13',283808,NULL), -(5334,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 15:45:13','2025-10-29 16:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761752713;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761752713;}',11,1,'2025-10-29 15:45:13','2025-10-29 16:45:13',283869,NULL), -(5335,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 16:45:13','2025-10-29 17:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761756313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761756313;}',11,1,'2025-10-29 16:45:13','2025-10-29 17:45:13',283930,NULL), -(5336,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 17:45:13','2025-10-29 18:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761759913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761759913;}',11,1,'2025-10-29 17:45:13','2025-10-29 18:45:13',283991,NULL), -(5337,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 18:45:13','2025-10-29 19:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761763513;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761763513;}',11,1,'2025-10-29 18:45:13','2025-10-29 19:45:13',284053,NULL), -(5338,'woocommerce_cleanup_draft_orders','complete','2025-10-30 18:42:13','2025-10-30 19:42:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761849733;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761849733;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-30 18:42:14','2025-10-30 19:42:14',285521,NULL), -(5339,'wp_mail_smtp_admin_notifications_update','complete','2025-10-30 18:42:13','2025-10-30 19:42:13',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761849733;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761849733;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-30 18:42:14','2025-10-30 19:42:14',285521,NULL), -(5340,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 19:45:13','2025-10-29 20:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761767113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761767113;}',11,1,'2025-10-29 19:45:13','2025-10-29 20:45:13',284115,NULL), -(5341,'woocommerce_refresh_order_count_cache','complete','2025-10-30 07:23:13','2025-10-30 08:23:13',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761808993;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761808993;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-30 07:23:14','2025-10-30 08:23:14',284828,NULL), -(5342,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 20:45:13','2025-10-29 21:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761770713;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761770713;}',11,1,'2025-10-29 20:45:13','2025-10-29 21:45:13',284176,NULL), -(5343,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 21:45:13','2025-10-29 22:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761774313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761774313;}',11,1,'2025-10-29 21:45:13','2025-10-29 22:45:13',284237,NULL), -(5344,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 22:45:13','2025-10-29 23:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761777913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761777913;}',11,1,'2025-10-29 22:45:13','2025-10-29 23:45:13',284299,NULL), -(5345,'woocommerce_scheduled_sales','complete','2025-10-30 22:03:13','2025-10-30 23:03:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761861793;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761861793;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-30 22:03:14','2025-10-30 23:03:14',285728,NULL), -(5346,'woocommerce_cancel_unpaid_orders','complete','2025-10-29 23:45:13','2025-10-30 00:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761781513;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761781513;}',11,1,'2025-10-29 23:45:13','2025-10-30 00:45:13',284360,NULL), -(5347,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 00:45:13','2025-10-30 01:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761785113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761785113;}',11,1,'2025-10-30 00:45:13','2025-10-30 01:45:13',284421,NULL), -(5348,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 01:45:13','2025-10-30 02:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761788713;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761788713;}',11,1,'2025-10-30 01:45:13','2025-10-30 02:45:13',284483,NULL), -(5350,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 02:45:13','2025-10-30 03:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761792313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761792313;}',11,1,'2025-10-30 02:45:13','2025-10-30 03:45:13',284544,NULL), -(5351,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 03:45:13','2025-10-30 04:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761795913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761795913;}',11,1,'2025-10-30 03:45:13','2025-10-30 04:45:13',284605,NULL), -(5352,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 04:45:13','2025-10-30 05:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761799513;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761799513;}',11,1,'2025-10-30 04:45:13','2025-10-30 05:45:13',284666,NULL), -(5353,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 05:45:13','2025-10-30 06:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761803113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761803113;}',11,1,'2025-10-30 05:45:13','2025-10-30 06:45:13',284727,NULL), -(5354,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 06:45:13','2025-10-30 07:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761806713;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761806713;}',11,1,'2025-10-30 06:46:14','2025-10-30 07:46:14',284789,NULL), -(5355,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 07:46:13','2025-10-30 08:46:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761810373;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761810373;}',11,1,'2025-10-30 07:46:14','2025-10-30 08:46:14',284852,NULL), -(5356,'wc_admin_daily_wrapper','complete','2025-10-31 07:21:39','2025-10-31 08:21:39',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761895299;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761895299;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-31 07:22:14','2025-10-31 08:22:14',286298,NULL), -(5357,'woocommerce_cleanup_personal_data','complete','2025-10-31 07:21:39','2025-10-31 08:21:39',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761895299;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761895299;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-31 07:22:14','2025-10-31 08:22:14',286298,NULL), -(5358,'woocommerce_cleanup_sessions','complete','2025-10-31 05:00:00','2025-10-31 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761886800;s:18:\"\0*\0first_timestamp\";i:1761886800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761886800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-10-31 05:00:14','2025-10-31 06:00:14',286153,NULL), -(5359,'generate_category_lookup_table_wrapper','complete','2025-10-30 07:21:49','2025-10-30 08:21:49',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761808909;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761808909;}',11,1,'2025-10-30 07:23:14','2025-10-30 08:23:14',284828,NULL), -(5360,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-10-31 07:21:39','2025-10-31 08:21:39',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761895299;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761895299;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-10-31 07:22:14','2025-10-31 08:22:14',286298,NULL), -(5361,'woocommerce_refresh_order_count_cache','complete','2025-10-30 19:23:14','2025-10-30 20:23:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761852194;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761852194;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-30 19:23:14','2025-10-30 20:23:14',285564,NULL), -(5362,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 08:46:14','2025-10-30 09:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761813974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761813974;}',11,1,'2025-10-30 08:46:14','2025-10-30 09:46:14',284913,NULL), -(5363,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 09:46:14','2025-10-30 10:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761817574;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761817574;}',11,1,'2025-10-30 09:46:14','2025-10-30 10:46:14',284974,NULL), -(5364,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 10:46:14','2025-10-30 11:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761821174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761821174;}',11,1,'2025-10-30 10:46:14','2025-10-30 11:46:14',285037,NULL), -(5365,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-10-31 10:19:14','2025-10-31 11:19:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761905954;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761905954;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-31 10:19:14','2025-10-31 11:19:14',286480,NULL), -(5366,'woocommerce_cleanup_logs','complete','2025-10-31 10:22:14','2025-10-31 11:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761906134;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761906134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-31 10:22:14','2025-10-31 11:22:14',286484,NULL), -(5367,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 11:46:14','2025-10-30 12:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761824774;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761824774;}',11,1,'2025-10-30 11:46:14','2025-10-30 12:46:14',285098,NULL), -(5368,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 12:46:14','2025-10-30 13:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761828374;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761828374;}',11,1,'2025-10-30 12:46:14','2025-10-30 13:46:14',285159,NULL), -(5369,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 13:46:14','2025-10-30 14:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761831974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761831974;}',11,1,'2025-10-30 13:46:14','2025-10-30 14:46:14',285220,NULL), -(5370,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 14:46:14','2025-10-30 15:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761835574;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761835574;}',11,1,'2025-10-30 14:46:14','2025-10-30 15:46:14',285281,NULL), -(5371,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 15:46:14','2025-10-30 16:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761839174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761839174;}',11,1,'2025-10-30 15:46:14','2025-10-30 16:46:14',285342,NULL), -(5372,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 16:46:14','2025-10-30 17:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761842774;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761842774;}',11,1,'2025-10-30 16:46:14','2025-10-30 17:46:14',285403,NULL), -(5373,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 17:46:14','2025-10-30 18:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761846374;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761846374;}',11,1,'2025-10-30 17:46:14','2025-10-30 18:46:14',285464,NULL), -(5374,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 18:46:14','2025-10-30 19:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761849974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761849974;}',11,1,'2025-10-30 18:46:14','2025-10-30 19:46:14',285526,NULL), -(5375,'woocommerce_cleanup_draft_orders','complete','2025-10-31 18:42:14','2025-10-31 19:42:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761936134;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761936134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-10-31 18:42:14','2025-10-31 19:42:14',286993,NULL), -(5376,'wp_mail_smtp_admin_notifications_update','complete','2025-10-31 18:42:14','2025-10-31 19:42:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761936134;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761936134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-10-31 18:42:14','2025-10-31 19:42:14',286993,NULL), -(5377,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 19:46:14','2025-10-30 20:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761853574;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761853574;}',11,1,'2025-10-30 19:46:14','2025-10-30 20:46:14',285588,NULL), -(5378,'woocommerce_refresh_order_count_cache','complete','2025-10-31 07:23:14','2025-10-31 08:23:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761895394;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761895394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-31 07:23:14','2025-10-31 08:23:14',286300,NULL), -(5379,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 20:46:14','2025-10-30 21:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761857174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761857174;}',11,1,'2025-10-30 20:46:14','2025-10-30 21:46:14',285649,NULL), -(5380,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 21:46:14','2025-10-30 22:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761860774;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761860774;}',11,1,'2025-10-30 21:46:14','2025-10-30 22:46:14',285710,NULL), -(5381,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 22:46:14','2025-10-30 23:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761864374;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761864374;}',11,1,'2025-10-30 22:46:14','2025-10-30 23:46:14',285772,NULL), -(5382,'woocommerce_scheduled_sales','complete','2025-10-31 22:03:14','2025-10-31 23:03:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761948194;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761948194;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-31 22:03:14','2025-10-31 23:03:14',287200,NULL), -(5383,'woocommerce_cancel_unpaid_orders','complete','2025-10-30 23:46:14','2025-10-31 00:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761867974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761867974;}',11,1,'2025-10-30 23:46:14','2025-10-31 00:46:14',285833,NULL), -(5384,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 00:46:14','2025-10-31 01:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761871574;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761871574;}',11,1,'2025-10-31 00:46:14','2025-10-31 01:46:14',285894,NULL), -(5385,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 01:46:14','2025-10-31 02:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761875174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761875174;}',11,1,'2025-10-31 01:46:14','2025-10-31 02:46:14',285955,NULL), -(5386,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 02:46:14','2025-10-31 03:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761878774;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761878774;}',11,1,'2025-10-31 02:46:14','2025-10-31 03:46:14',286016,NULL), -(5387,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 03:46:14','2025-10-31 04:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761882374;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761882374;}',11,1,'2025-10-31 03:46:14','2025-10-31 04:46:14',286077,NULL), -(5388,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 04:46:14','2025-10-31 05:46:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761885974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761885974;}',11,1,'2025-10-31 04:47:14','2025-10-31 05:47:14',286139,NULL), -(5389,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 05:47:14','2025-10-31 06:47:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761889634;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761889634;}',11,1,'2025-10-31 05:47:28','2025-10-31 06:47:28',286202,NULL), -(5391,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 06:47:28','2025-10-31 07:47:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761893248;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761893248;}',11,1,'2025-10-31 06:48:14','2025-10-31 07:48:14',286263,NULL), -(5392,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 07:48:14','2025-10-31 08:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761896894;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761896894;}',11,1,'2025-10-31 07:48:14','2025-10-31 08:48:14',286326,NULL), -(5393,'wc_admin_daily_wrapper','complete','2025-11-01 07:22:14','2025-11-01 08:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761981734;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761981734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-01 07:22:14','2025-11-01 08:22:14',287769,NULL), -(5394,'woocommerce_cleanup_personal_data','complete','2025-11-01 07:22:14','2025-11-01 08:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761981734;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761981734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-01 07:22:14','2025-11-01 08:22:14',287769,NULL), -(5395,'woocommerce_cleanup_sessions','complete','2025-11-01 05:00:00','2025-11-01 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761973200;s:18:\"\0*\0first_timestamp\";i:1761973200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761973200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-01 05:00:14','2025-11-01 06:00:14',287625,NULL), -(5396,'generate_category_lookup_table_wrapper','complete','2025-10-31 07:22:24','2025-10-31 08:22:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761895344;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761895344;}',11,1,'2025-10-31 07:23:14','2025-10-31 08:23:14',286300,NULL), -(5397,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-01 07:22:14','2025-11-01 08:22:14',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761981734;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761981734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-01 07:22:14','2025-11-01 08:22:14',287769,NULL), -(5398,'woocommerce_refresh_order_count_cache','complete','2025-10-31 19:23:14','2025-10-31 20:23:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761938594;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761938594;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-10-31 19:23:14','2025-10-31 20:23:14',287036,NULL), -(5399,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 08:48:14','2025-10-31 09:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761900494;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761900494;}',11,1,'2025-10-31 08:48:14','2025-10-31 09:48:14',286387,NULL), -(5400,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 09:48:14','2025-10-31 10:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761904094;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761904094;}',11,1,'2025-10-31 09:48:14','2025-10-31 10:48:14',286448,NULL), -(5401,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 10:48:14','2025-10-31 11:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761907694;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761907694;}',11,1,'2025-10-31 10:48:14','2025-10-31 11:48:14',286511,NULL), -(5402,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-01 10:19:14','2025-11-01 11:19:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761992354;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761992354;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-01 10:20:14','2025-11-01 11:20:14',287952,NULL), -(5403,'woocommerce_cleanup_logs','complete','2025-11-01 10:22:14','2025-11-01 11:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761992534;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761992534;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-01 10:22:14','2025-11-01 11:22:14',287955,NULL), -(5404,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 11:48:14','2025-10-31 12:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761911294;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761911294;}',11,1,'2025-10-31 11:48:14','2025-10-31 12:48:14',286572,NULL), -(5405,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 12:48:14','2025-10-31 13:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761914894;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761914894;}',11,1,'2025-10-31 12:48:14','2025-10-31 13:48:14',286633,NULL), -(5406,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 13:48:14','2025-10-31 14:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761918494;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761918494;}',11,1,'2025-10-31 13:48:14','2025-10-31 14:48:14',286694,NULL), -(5407,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 14:48:14','2025-10-31 15:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761922094;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761922094;}',11,1,'2025-10-31 14:48:14','2025-10-31 15:48:14',286755,NULL), -(5408,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 15:48:14','2025-10-31 16:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761925694;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761925694;}',11,1,'2025-10-31 15:48:14','2025-10-31 16:48:14',286816,NULL), -(5409,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 16:48:14','2025-10-31 17:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761929294;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761929294;}',11,1,'2025-10-31 16:48:14','2025-10-31 17:48:14',286877,NULL), -(5410,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 17:48:14','2025-10-31 18:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761932894;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761932894;}',11,1,'2025-10-31 17:48:14','2025-10-31 18:48:14',286938,NULL), -(5411,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 18:48:14','2025-10-31 19:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761936494;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761936494;}',11,1,'2025-10-31 18:48:14','2025-10-31 19:48:14',287000,NULL), -(5412,'woocommerce_cleanup_draft_orders','complete','2025-11-01 18:42:14','2025-11-01 19:42:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762022534;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762022534;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-01 18:42:14','2025-11-01 19:42:14',288464,NULL), -(5413,'wp_mail_smtp_admin_notifications_update','complete','2025-11-01 18:42:14','2025-11-01 19:42:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762022534;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762022534;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-01 18:42:14','2025-11-01 19:42:14',288464,NULL), -(5414,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 19:48:14','2025-10-31 20:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761940094;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761940094;}',11,1,'2025-10-31 19:48:14','2025-10-31 20:48:14',287062,NULL), -(5415,'woocommerce_refresh_order_count_cache','complete','2025-11-01 07:23:14','2025-11-01 08:23:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761981794;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761981794;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-01 07:23:14','2025-11-01 08:23:14',287771,NULL), -(5416,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 20:48:14','2025-10-31 21:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761943694;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761943694;}',11,1,'2025-10-31 20:48:14','2025-10-31 21:48:14',287123,NULL), -(5417,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 21:48:14','2025-10-31 22:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761947294;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761947294;}',11,1,'2025-10-31 21:48:14','2025-10-31 22:48:14',287184,NULL), -(5418,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 22:48:14','2025-10-31 23:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761950894;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761950894;}',11,1,'2025-10-31 22:48:14','2025-10-31 23:48:14',287246,NULL), -(5419,'woocommerce_scheduled_sales','complete','2025-11-01 22:03:14','2025-11-01 23:03:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762034594;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762034594;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-01 22:03:15','2025-11-01 23:03:15',288671,NULL), -(5420,'woocommerce_cancel_unpaid_orders','complete','2025-10-31 23:48:14','2025-11-01 00:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761954494;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761954494;}',11,1,'2025-10-31 23:48:14','2025-11-01 00:48:14',287307,NULL), -(5421,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 00:48:14','2025-11-01 01:48:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761958094;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761958094;}',11,1,'2025-11-01 00:49:14','2025-11-01 01:49:14',287369,NULL), -(5422,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 01:49:14','2025-11-01 02:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761961754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761961754;}',11,1,'2025-11-01 01:49:14','2025-11-01 02:49:14',287430,NULL), -(5423,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 02:49:14','2025-11-01 03:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761965354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761965354;}',11,1,'2025-11-01 02:49:14','2025-11-01 03:49:14',287491,NULL), -(5424,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 03:49:14','2025-11-01 04:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761968954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761968954;}',11,1,'2025-11-01 03:49:14','2025-11-01 04:49:14',287552,NULL), -(5425,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 04:49:14','2025-11-01 05:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761972554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761972554;}',11,1,'2025-11-01 04:49:14','2025-11-01 05:49:14',287613,NULL), -(5426,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 05:49:14','2025-11-01 06:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761976154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761976154;}',11,1,'2025-11-01 05:49:14','2025-11-01 06:49:14',287674,NULL), -(5428,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 06:49:14','2025-11-01 07:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761979754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761979754;}',11,1,'2025-11-01 06:49:14','2025-11-01 07:49:14',287735,NULL), -(5429,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 07:49:14','2025-11-01 08:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761983354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761983354;}',11,1,'2025-11-01 07:49:14','2025-11-01 08:49:14',287798,NULL), -(5430,'wc_admin_daily_wrapper','complete','2025-11-02 07:22:14','2025-11-02 08:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762068134;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762068134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-02 07:22:15','2025-11-02 08:22:15',289241,NULL), -(5431,'woocommerce_cleanup_personal_data','complete','2025-11-02 07:22:14','2025-11-02 08:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762068134;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762068134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-02 07:22:15','2025-11-02 08:22:15',289241,NULL), -(5432,'woocommerce_cleanup_sessions','complete','2025-11-02 05:00:00','2025-11-02 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762059600;s:18:\"\0*\0first_timestamp\";i:1762059600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762059600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-02 05:00:14','2025-11-02 06:00:14',289096,NULL), -(5433,'generate_category_lookup_table_wrapper','complete','2025-11-01 07:22:24','2025-11-01 08:22:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761981744;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761981744;}',11,1,'2025-11-01 07:23:14','2025-11-01 08:23:14',287771,NULL), -(5434,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-02 07:22:14','2025-11-02 08:22:14',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762068134;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762068134;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-02 07:22:15','2025-11-02 08:22:15',289241,NULL), -(5435,'woocommerce_refresh_order_count_cache','complete','2025-11-01 19:23:14','2025-11-01 20:23:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762024994;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762024994;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-01 19:23:14','2025-11-01 20:23:14',288507,NULL), -(5436,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 08:49:14','2025-11-01 09:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761986954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761986954;}',11,1,'2025-11-01 08:49:14','2025-11-01 09:49:14',287859,NULL), -(5437,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 09:49:14','2025-11-01 10:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761990554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761990554;}',11,1,'2025-11-01 09:49:14','2025-11-01 10:49:14',287920,NULL), -(5438,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 10:49:14','2025-11-01 11:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761994154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761994154;}',11,1,'2025-11-01 10:49:14','2025-11-01 11:49:14',287983,NULL), -(5439,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-02 10:20:14','2025-11-02 11:20:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762078814;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762078814;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-02 10:21:15','2025-11-02 11:21:15',289425,NULL), -(5440,'woocommerce_cleanup_logs','complete','2025-11-02 10:22:14','2025-11-02 11:22:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762078934;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762078934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-02 10:22:15','2025-11-02 11:22:15',289427,NULL), -(5441,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 11:49:14','2025-11-01 12:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1761997754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1761997754;}',11,1,'2025-11-01 11:49:14','2025-11-01 12:49:14',288044,NULL), -(5442,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 12:49:14','2025-11-01 13:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762001354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762001354;}',11,1,'2025-11-01 12:49:14','2025-11-01 13:49:14',288105,NULL), -(5443,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 13:49:14','2025-11-01 14:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762004954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762004954;}',11,1,'2025-11-01 13:49:14','2025-11-01 14:49:14',288166,NULL), -(5444,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 14:49:14','2025-11-01 15:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762008554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762008554;}',11,1,'2025-11-01 14:49:14','2025-11-01 15:49:14',288227,NULL), -(5445,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 15:49:14','2025-11-01 16:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762012154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762012154;}',11,1,'2025-11-01 15:49:14','2025-11-01 16:49:14',288288,NULL), -(5446,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 16:49:14','2025-11-01 17:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762015754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762015754;}',11,1,'2025-11-01 16:49:14','2025-11-01 17:49:14',288349,NULL), -(5447,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 17:49:14','2025-11-01 18:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762019354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762019354;}',11,1,'2025-11-01 17:49:14','2025-11-01 18:49:14',288410,NULL), -(5448,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 18:49:14','2025-11-01 19:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762022954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762022954;}',11,1,'2025-11-01 18:49:14','2025-11-01 19:49:14',288472,NULL), -(5449,'woocommerce_cleanup_draft_orders','complete','2025-11-02 18:42:14','2025-11-02 19:42:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762108934;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762108934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-02 18:42:14','2025-11-02 19:42:14',289936,NULL), -(5450,'wp_mail_smtp_admin_notifications_update','complete','2025-11-02 18:42:14','2025-11-02 19:42:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762108934;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762108934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-02 18:42:14','2025-11-02 19:42:14',289936,NULL), -(5451,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 19:49:14','2025-11-01 20:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762026554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762026554;}',11,1,'2025-11-01 19:49:14','2025-11-01 20:49:14',288534,NULL), -(5452,'woocommerce_refresh_order_count_cache','complete','2025-11-02 07:23:14','2025-11-02 08:23:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762068194;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762068194;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-02 07:23:15','2025-11-02 08:23:15',289243,NULL), -(5453,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 20:49:14','2025-11-01 21:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762030154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762030154;}',11,1,'2025-11-01 20:49:14','2025-11-01 21:49:14',288595,NULL), -(5454,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 21:49:14','2025-11-01 22:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762033754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762033754;}',11,1,'2025-11-01 21:49:14','2025-11-01 22:49:14',288656,NULL), -(5455,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 22:49:14','2025-11-01 23:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762037354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762037354;}',11,1,'2025-11-01 22:49:14','2025-11-01 23:49:14',288718,NULL), -(5456,'woocommerce_scheduled_sales','complete','2025-11-02 22:03:15','2025-11-02 23:03:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762120995;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762120995;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-02 22:03:15','2025-11-02 23:03:15',290145,NULL), -(5457,'woocommerce_cancel_unpaid_orders','complete','2025-11-01 23:49:14','2025-11-02 00:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762040954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762040954;}',11,1,'2025-11-01 23:49:14','2025-11-02 00:49:14',288779,NULL), -(5458,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 00:49:14','2025-11-02 01:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762044554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762044554;}',11,1,'2025-11-02 00:49:14','2025-11-02 01:49:14',288840,NULL), -(5459,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 01:49:14','2025-11-02 02:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762048154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762048154;}',11,1,'2025-11-02 01:49:14','2025-11-02 02:49:14',288901,NULL), -(5460,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 02:49:14','2025-11-02 03:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762051754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762051754;}',11,1,'2025-11-02 02:49:14','2025-11-02 03:49:14',288962,NULL), -(5461,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 03:49:14','2025-11-02 04:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762055354;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762055354;}',11,1,'2025-11-02 03:49:14','2025-11-02 04:49:14',289023,NULL), -(5462,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 04:49:14','2025-11-02 05:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762058954;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762058954;}',11,1,'2025-11-02 04:49:15','2025-11-02 05:49:15',289084,NULL), -(5463,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 05:49:14','2025-11-02 06:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762062554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762062554;}',11,1,'2025-11-02 05:49:15','2025-11-02 06:49:15',289146,NULL), -(5465,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 06:49:14','2025-11-02 07:49:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762066154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762066154;}',11,1,'2025-11-02 06:49:15','2025-11-02 07:49:15',289207,NULL), -(5466,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 07:49:15','2025-11-02 08:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762069755;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762069755;}',11,1,'2025-11-02 07:49:15','2025-11-02 08:49:15',289270,NULL), -(5467,'wc_admin_daily_wrapper','complete','2025-11-03 07:22:15','2025-11-03 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154535;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 07:22:15','2025-11-03 08:22:15',290715,NULL), -(5468,'woocommerce_cleanup_personal_data','complete','2025-11-03 07:22:15','2025-11-03 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154535;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 07:22:15','2025-11-03 08:22:15',290715,NULL), -(5469,'woocommerce_cleanup_sessions','complete','2025-11-03 05:00:00','2025-11-03 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762146000;s:18:\"\0*\0first_timestamp\";i:1762146000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762146000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-03 05:00:15','2025-11-03 06:00:15',290570,NULL), -(5470,'generate_category_lookup_table_wrapper','complete','2025-11-02 07:22:25','2025-11-02 08:22:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762068145;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762068145;}',11,1,'2025-11-02 07:23:15','2025-11-02 08:23:15',289243,NULL), -(5471,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-03 07:22:15','2025-11-03 08:22:15',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154535;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-03 07:22:15','2025-11-03 08:22:15',290715,NULL), -(5472,'woocommerce_refresh_order_count_cache','complete','2025-11-02 19:23:15','2025-11-02 20:23:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762111395;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762111395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-02 19:24:15','2025-11-02 20:24:15',289980,NULL), -(5473,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 08:49:15','2025-11-02 09:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762073355;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762073355;}',11,1,'2025-11-02 08:49:15','2025-11-02 09:49:15',289331,NULL), -(5474,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 09:49:15','2025-11-02 10:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762076955;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762076955;}',11,1,'2025-11-02 09:49:15','2025-11-02 10:49:15',289392,NULL), -(5475,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 10:49:15','2025-11-02 11:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762080555;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762080555;}',11,1,'2025-11-02 10:49:15','2025-11-02 11:49:15',289455,NULL), -(5476,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-03 10:21:15','2025-11-03 11:21:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762165275;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762165275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 10:21:15','2025-11-03 11:21:15',290902,NULL), -(5477,'woocommerce_cleanup_logs','complete','2025-11-03 10:22:15','2025-11-03 11:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762165335;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762165335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 10:23:15','2025-11-03 11:23:15',290905,NULL), -(5478,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 11:49:15','2025-11-02 12:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762084155;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762084155;}',11,1,'2025-11-02 11:49:15','2025-11-02 12:49:15',289516,NULL), -(5479,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 12:49:15','2025-11-02 13:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762087755;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762087755;}',11,1,'2025-11-02 12:49:27','2025-11-02 13:49:27',289578,NULL), -(5480,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 13:49:27','2025-11-02 14:49:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762091367;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762091367;}',11,1,'2025-11-02 13:50:15','2025-11-02 14:50:15',289639,NULL), -(5481,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 14:50:15','2025-11-02 15:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762095015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762095015;}',11,1,'2025-11-02 14:50:15','2025-11-02 15:50:15',289700,NULL), -(5482,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 15:50:15','2025-11-02 16:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762098615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762098615;}',11,1,'2025-11-02 15:50:15','2025-11-02 16:50:15',289761,NULL), -(5483,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 16:50:15','2025-11-02 17:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762102215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762102215;}',11,1,'2025-11-02 16:50:15','2025-11-02 17:50:15',289822,NULL), -(5484,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 17:50:15','2025-11-02 18:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762105815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762105815;}',11,1,'2025-11-02 17:50:15','2025-11-02 18:50:15',289883,NULL), -(5485,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 18:50:15','2025-11-02 19:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762109415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762109415;}',11,1,'2025-11-02 18:50:15','2025-11-02 19:50:15',289945,NULL), -(5486,'woocommerce_cleanup_draft_orders','pending','2025-11-03 18:42:14','2025-11-03 19:42:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762195334;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762195334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5487,'wp_mail_smtp_admin_notifications_update','pending','2025-11-03 18:42:14','2025-11-03 19:42:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762195334;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762195334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5488,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 19:50:15','2025-11-02 20:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762113015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762113015;}',11,1,'2025-11-02 19:50:15','2025-11-02 20:50:15',290009,NULL), -(5489,'woocommerce_refresh_order_count_cache','complete','2025-11-03 07:24:15','2025-11-03 08:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154655;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-03 07:24:15','2025-11-03 08:24:15',290719,NULL), -(5490,'wc-admin_import_orders','complete','2025-11-02 19:39:07','2025-11-02 20:39:07',10,'[1496]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762112347;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762112347;}',4,1,'2025-11-02 19:40:07','2025-11-02 20:40:07',289997,NULL), -(5491,'wc-admin_import_orders','complete','2025-11-02 19:40:12','2025-11-02 20:40:12',10,'[1496]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762112412;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762112412;}',4,1,'2025-11-02 19:41:15','2025-11-02 20:41:15',289999,NULL), -(5492,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 20:50:15','2025-11-02 21:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762116615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762116615;}',11,1,'2025-11-02 20:50:15','2025-11-02 21:50:15',290070,NULL), -(5493,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 21:50:15','2025-11-02 22:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762120215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762120215;}',11,1,'2025-11-02 21:50:15','2025-11-02 22:50:15',290131,NULL), -(5494,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 22:50:15','2025-11-02 23:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762123815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762123815;}',11,1,'2025-11-02 22:50:15','2025-11-02 23:50:15',290193,NULL), -(5495,'woocommerce_scheduled_sales','pending','2025-11-03 22:03:15','2025-11-03 23:03:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762207395;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762207395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5496,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 23:50:15','2025-11-03 00:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762127415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762127415;}',11,1,'2025-11-02 23:50:15','2025-11-03 00:50:15',290254,NULL), -(5497,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 00:50:15','2025-11-03 01:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762131015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762131015;}',11,1,'2025-11-03 00:50:15','2025-11-03 01:50:15',290315,NULL), -(5498,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 01:50:15','2025-11-03 02:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762134615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762134615;}',11,1,'2025-11-03 01:50:15','2025-11-03 02:50:15',290376,NULL), -(5499,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 02:50:15','2025-11-03 03:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762138215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762138215;}',11,1,'2025-11-03 02:50:15','2025-11-03 03:50:15',290437,NULL), -(5500,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 03:50:15','2025-11-03 04:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762141815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762141815;}',11,1,'2025-11-03 03:50:15','2025-11-03 04:50:15',290498,NULL), -(5501,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 04:50:15','2025-11-03 05:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762145415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762145415;}',11,1,'2025-11-03 04:50:15','2025-11-03 05:50:15',290559,NULL), -(5502,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 05:50:15','2025-11-03 06:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762149015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762149015;}',11,1,'2025-11-03 05:50:15','2025-11-03 06:50:15',290621,NULL), -(5504,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 06:50:15','2025-11-03 07:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762152615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762152615;}',11,1,'2025-11-03 06:50:15','2025-11-03 07:50:15',290682,NULL), -(5505,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 07:50:15','2025-11-03 08:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762156215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762156215;}',11,1,'2025-11-03 07:50:15','2025-11-03 08:50:15',290746,NULL), -(5506,'wc_admin_daily_wrapper','pending','2025-11-04 07:22:15','2025-11-04 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762240935;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762240935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5507,'woocommerce_cleanup_personal_data','pending','2025-11-04 07:22:15','2025-11-04 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762240935;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762240935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5508,'woocommerce_cleanup_sessions','pending','2025-11-04 05:00:00','2025-11-04 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762232400;s:18:\"\0*\0first_timestamp\";i:1762232400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762232400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5509,'generate_category_lookup_table_wrapper','complete','2025-11-03 07:22:25','2025-11-03 08:22:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762154545;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762154545;}',11,1,'2025-11-03 07:23:10','2025-11-03 08:23:10',290717,NULL), -(5510,'action_scheduler_run_recurring_actions_schedule_hook','pending','2025-11-04 07:22:15','2025-11-04 08:22:15',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762240935;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762240935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5511,'woocommerce_refresh_order_count_cache','pending','2025-11-03 19:24:15','2025-11-03 20:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762197855;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762197855;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5512,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 08:50:15','2025-11-03 09:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762159815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762159815;}',11,1,'2025-11-03 08:50:15','2025-11-03 09:50:15',290807,NULL), -(5513,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 09:50:15','2025-11-03 10:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762163415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762163415;}',11,1,'2025-11-03 09:50:15','2025-11-03 10:50:15',290870,NULL), -(5514,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-03 09:26:25','2025-11-03 10:26:25',10,'[1467,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762161985;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762161985;}',3,1,'2025-11-03 09:26:26','2025-11-03 10:26:26',290845,NULL), -(5515,'woocommerce_run_update_callback','complete','2025-11-03 09:34:05','2025-11-03 10:34:05',10,'{\"update_callback\":\"wc_update_1020_add_old_refunded_order_items_to_product_lookup_table\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762162445;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762162445;}',3,1,'2025-11-03 09:34:42','2025-11-03 10:34:42',290854,NULL), -(5516,'woocommerce_run_update_callback','complete','2025-11-03 09:34:06','2025-11-03 10:34:06',10,'{\"update_callback\":\"wc_update_1030_add_comments_date_type_index\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762162446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762162446;}',3,1,'2025-11-03 09:34:42','2025-11-03 10:34:42',290854,NULL), -(5517,'woocommerce_update_db_to_current_version','complete','2025-11-03 09:34:07','2025-11-03 10:34:07',10,'{\"version\":\"10.3.4\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762162447;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762162447;}',3,1,'2025-11-03 09:34:42','2025-11-03 10:34:42',290854,NULL), -(5518,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 10:50:15','2025-11-03 11:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762167015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762167015;}',11,1,'2025-11-03 10:50:15','2025-11-03 11:50:15',290933,NULL), -(5519,'woocommerce_cleanup_rate_limits_wrapper','pending','2025-11-04 10:21:15','2025-11-04 11:21:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762251675;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762251675;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5520,'woocommerce_cleanup_logs','pending','2025-11-04 10:23:15','2025-11-04 11:23:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762251795;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762251795;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(5521,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 11:50:15','2025-11-03 12:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762170615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762170615;}',11,1,'2025-11-03 11:50:15','2025-11-03 12:50:15',290994,NULL), -(5522,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 12:50:15','2025-11-03 13:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762174215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762174215;}',11,1,'2025-11-03 12:51:15','2025-11-03 13:51:15',291056,NULL), -(5523,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 13:51:15','2025-11-03 14:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762177875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762177875;}',11,1,'2025-11-03 13:51:15','2025-11-03 14:51:15',291117,NULL), -(5524,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 14:51:15','2025-11-03 15:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762181475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762181475;}',11,1,'2025-11-03 14:51:15','2025-11-03 15:51:15',291178,NULL), -(5525,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 15:51:15','2025-11-03 16:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762185075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762185075;}',11,1,'2025-11-03 15:51:15','2025-11-03 16:51:15',291239,NULL), -(5526,'woocommerce_cancel_unpaid_orders','pending','2025-11-03 16:51:15','2025-11-03 17:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762188675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762188675;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL); -/*!40000 ALTER TABLE `haikuwp_actionscheduler_actions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_actionscheduler_claims` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_claims`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_claims` ( - `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`claim_id`), - KEY `date_created_gmt` (`date_created_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=291261 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_claims` --- - -LOCK TABLES `haikuwp_actionscheduler_claims` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_claims` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_claims` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_actionscheduler_groups` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_groups` ( - `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `slug` varchar(255) NOT NULL, - PRIMARY KEY (`group_id`), - KEY `slug` (`slug`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_groups` --- - -LOCK TABLES `haikuwp_actionscheduler_groups` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_groups` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_actionscheduler_groups` VALUES -(1,'action-scheduler-migration'), -(2,''), -(3,'woocommerce-db-updates'), -(4,'wc-admin-data'), -(5,'wc_update_product_default_cat'), -(6,'wp_mail_smtp'), -(7,'wc_update_product_lookup_tables'), -(8,'wc_delete_related_product_transients_group'), -(9,'count'), -(10,'ActionScheduler'), -(11,'woocommerce'); -/*!40000 ALTER TABLE `haikuwp_actionscheduler_groups` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_actionscheduler_logs` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_logs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_logs` ( - `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `action_id` bigint(20) unsigned NOT NULL, - `message` text NOT NULL, - `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', - `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`log_id`), - KEY `action_id` (`action_id`), - KEY `log_date_gmt` (`log_date_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=16537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_logs` --- - -LOCK TABLES `haikuwp_actionscheduler_logs` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_logs` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_actionscheduler_logs` VALUES -(7521,2516,'action created','2025-06-18 06:50:55','2025-06-18 08:50:55'), -(7639,2516,'action started via WP Cron','2025-06-18 18:51:12','2025-06-18 20:51:12'), -(7640,2516,'action failed via WP Cron: Scheduled action for woocommerce_refresh_order_count_cache will not be executed as no callbacks are registered.','2025-06-18 18:51:12','2025-06-18 20:51:12'), -(7819,2616,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7820,2617,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7822,2619,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7824,2621,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7827,2616,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7828,2616,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7829,2617,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7830,2617,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7831,2619,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7832,2619,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7833,2621,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7834,2621,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(9699,3248,'action created','2025-09-08 07:13:56','2025-09-08 09:13:56'), -(11187,3744,'action created','2025-09-20 10:15:00','2025-09-20 12:15:00'), -(11338,3744,'action started via WP Cron','2025-09-21 10:15:00','2025-09-21 12:15:00'), -(11339,3744,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-21 10:15:00','2025-09-21 12:15:00'), -(11340,3795,'action created','2025-09-21 10:15:00','2025-09-21 12:15:00'), -(11449,3795,'action started via WP Cron','2025-09-22 10:15:00','2025-09-22 12:15:00'), -(11450,3795,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-22 10:15:00','2025-09-22 12:15:00'), -(11451,3832,'action created','2025-09-22 10:15:00','2025-09-22 12:15:00'), -(11539,3248,'action started via WP Cron','2025-09-23 07:14:01','2025-09-23 09:14:01'), -(11540,3248,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-23 07:14:01','2025-09-23 09:14:01'), -(11541,3862,'action created','2025-09-23 07:14:01','2025-09-23 09:14:01'), -(11572,3832,'action started via WP Cron','2025-09-23 10:15:01','2025-09-23 12:15:01'), -(11573,3832,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-23 10:15:01','2025-09-23 12:15:01'), -(11574,3873,'action created','2025-09-23 10:15:01','2025-09-23 12:15:01'), -(11683,3873,'action started via WP Cron','2025-09-24 10:15:01','2025-09-24 12:15:01'), -(11684,3873,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-24 10:15:01','2025-09-24 12:15:01'), -(11685,3910,'action created','2025-09-24 10:15:01','2025-09-24 12:15:01'), -(11815,3910,'action started via WP Cron','2025-09-25 10:15:01','2025-09-25 12:15:01'), -(11816,3910,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-25 10:15:01','2025-09-25 12:15:01'), -(11817,3954,'action created','2025-09-25 10:15:01','2025-09-25 12:15:01'), -(11926,3954,'action started via WP Cron','2025-09-26 10:15:02','2025-09-26 12:15:02'), -(11927,3954,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-26 10:15:02','2025-09-26 12:15:02'), -(11928,3991,'action created','2025-09-26 10:15:02','2025-09-26 12:15:02'), -(12037,3991,'action started via WP Cron','2025-09-27 10:15:02','2025-09-27 12:15:02'), -(12038,3991,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-27 10:15:02','2025-09-27 12:15:02'), -(12039,4028,'action created','2025-09-27 10:15:02','2025-09-27 12:15:02'), -(12292,4028,'action started via WP Cron','2025-09-28 10:15:02','2025-09-28 12:15:02'), -(12293,4028,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-28 10:15:02','2025-09-28 12:15:02'), -(12294,4113,'action created','2025-09-28 10:15:02','2025-09-28 12:15:02'), -(12403,4113,'action started via WP Cron','2025-09-29 10:15:03','2025-09-29 12:15:03'), -(12404,4113,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-29 10:15:03','2025-09-29 12:15:03'), -(12405,4150,'action created','2025-09-29 10:15:03','2025-09-29 12:15:03'), -(12483,4176,'action created','2025-09-30 04:05:51','2025-09-30 06:05:51'), -(12517,4150,'action started via WP Cron','2025-09-30 10:15:03','2025-09-30 12:15:03'), -(12518,4150,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-30 10:15:03','2025-09-30 12:15:03'), -(12519,4188,'action created','2025-09-30 10:15:03','2025-09-30 12:15:03'), -(12628,4188,'action started via WP Cron','2025-10-01 10:15:04','2025-10-01 12:15:04'), -(12629,4188,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-01 10:15:04','2025-10-01 12:15:04'), -(12630,4225,'action created','2025-10-01 10:15:04','2025-10-01 12:15:04'), -(12745,4225,'action started via WP Cron','2025-10-02 10:15:04','2025-10-02 12:15:04'), -(12746,4225,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-02 10:15:04','2025-10-02 12:15:04'), -(12747,4264,'action created','2025-10-02 10:15:04','2025-10-02 12:15:04'), -(12780,4275,'action created','2025-10-02 18:39:04','2025-10-02 20:39:04'), -(12783,4276,'action created','2025-10-02 18:40:04','2025-10-02 20:40:04'), -(12801,4282,'action created','2025-10-02 22:03:04','2025-10-03 00:03:04'), -(12834,4293,'action created','2025-10-03 07:15:04','2025-10-03 09:15:04'), -(12837,4294,'action created','2025-10-03 07:16:05','2025-10-03 09:16:05'), -(12840,4295,'action created','2025-10-03 07:19:04','2025-10-03 09:19:04'), -(12844,4297,'action created','2025-10-03 07:19:04','2025-10-03 09:19:04'), -(12856,4264,'action started via WP Cron','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12857,4264,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12858,4301,'action created','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12861,4302,'action created','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12873,4306,'action created','2025-10-03 13:18:04','2025-10-03 15:18:04'), -(12881,4309,'action created','2025-10-03 15:56:04','2025-10-03 17:56:04'), -(12883,4309,'action started via WP Cron','2025-10-03 16:56:04','2025-10-03 18:56:04'), -(12884,4310,'action created','2025-10-03 16:56:04','2025-10-03 18:56:04'), -(12885,4309,'action complete via WP Cron','2025-10-03 16:56:04','2025-10-03 18:56:04'), -(12886,4310,'action started via WP Cron','2025-10-03 17:56:04','2025-10-03 19:56:04'), -(12887,4311,'action created','2025-10-03 17:56:04','2025-10-03 19:56:04'), -(12888,4310,'action complete via WP Cron','2025-10-03 17:56:04','2025-10-03 19:56:04'), -(12889,4275,'action started via WP Cron','2025-10-03 18:39:04','2025-10-03 20:39:04'), -(12890,4275,'action complete via WP Cron','2025-10-03 18:39:04','2025-10-03 20:39:04'), -(12891,4312,'action created','2025-10-03 18:39:04','2025-10-03 20:39:04'), -(12892,4276,'action started via WP Cron','2025-10-03 18:40:04','2025-10-03 20:40:04'), -(12893,4276,'action complete via WP Cron','2025-10-03 18:40:04','2025-10-03 20:40:04'), -(12894,4313,'action created','2025-10-03 18:40:04','2025-10-03 20:40:04'), -(12895,4311,'action started via WP Cron','2025-10-03 18:56:04','2025-10-03 20:56:04'), -(12896,4314,'action created','2025-10-03 18:56:04','2025-10-03 20:56:04'), -(12897,4311,'action complete via WP Cron','2025-10-03 18:56:04','2025-10-03 20:56:04'), -(12898,4293,'action started via WP Cron','2025-10-03 19:15:04','2025-10-03 21:15:04'), -(12899,4293,'action complete via WP Cron','2025-10-03 19:15:04','2025-10-03 21:15:04'), -(12900,4315,'action created','2025-10-03 19:15:04','2025-10-03 21:15:04'), -(12901,4316,'action created','2025-10-03 19:49:56','2025-10-03 21:49:56'), -(12902,4316,'action started via Async Request','2025-10-03 19:50:08','2025-10-03 21:50:08'), -(12903,4316,'action complete via Async Request','2025-10-03 19:50:08','2025-10-03 21:50:08'), -(12904,4314,'action started via WP Cron','2025-10-03 19:56:04','2025-10-03 21:56:04'), -(12905,4317,'action created','2025-10-03 19:56:04','2025-10-03 21:56:04'), -(12906,4314,'action complete via WP Cron','2025-10-03 19:56:04','2025-10-03 21:56:04'), -(12907,4317,'action started via WP Cron','2025-10-03 20:57:04','2025-10-03 22:57:04'), -(12908,4318,'action created','2025-10-03 20:57:04','2025-10-03 22:57:04'), -(12909,4317,'action complete via WP Cron','2025-10-03 20:57:05','2025-10-03 22:57:05'), -(12910,4318,'action started via WP Cron','2025-10-03 21:57:04','2025-10-03 23:57:04'), -(12911,4319,'action created','2025-10-03 21:57:04','2025-10-03 23:57:04'), -(12912,4318,'action complete via WP Cron','2025-10-03 21:57:05','2025-10-03 23:57:05'), -(12913,4282,'action started via WP Cron','2025-10-03 22:03:04','2025-10-04 00:03:04'), -(12914,4282,'action complete via WP Cron','2025-10-03 22:03:04','2025-10-04 00:03:04'), -(12915,4320,'action created','2025-10-03 22:03:04','2025-10-04 00:03:04'), -(12916,4319,'action started via WP Cron','2025-10-03 22:57:05','2025-10-04 00:57:05'), -(12917,4321,'action created','2025-10-03 22:57:05','2025-10-04 00:57:05'), -(12918,4319,'action complete via WP Cron','2025-10-03 22:57:05','2025-10-04 00:57:05'), -(12919,4321,'action started via WP Cron','2025-10-03 23:57:05','2025-10-04 01:57:05'), -(12920,4322,'action created','2025-10-03 23:57:05','2025-10-04 01:57:05'), -(12921,4321,'action complete via WP Cron','2025-10-03 23:57:05','2025-10-04 01:57:05'), -(12922,4322,'action started via WP Cron','2025-10-04 00:57:05','2025-10-04 02:57:05'), -(12923,4323,'action created','2025-10-04 00:57:05','2025-10-04 02:57:05'), -(12924,4322,'action complete via WP Cron','2025-10-04 00:57:05','2025-10-04 02:57:05'), -(12925,4306,'action started via WP Cron','2025-10-04 01:18:05','2025-10-04 03:18:05'), -(12926,4306,'action complete via WP Cron','2025-10-04 01:18:05','2025-10-04 03:18:05'), -(12927,4324,'action created','2025-10-04 01:18:05','2025-10-04 03:18:05'), -(12928,4323,'action started via WP Cron','2025-10-04 01:57:05','2025-10-04 03:57:05'), -(12929,4325,'action created','2025-10-04 01:57:05','2025-10-04 03:57:05'), -(12930,4323,'action complete via WP Cron','2025-10-04 01:57:05','2025-10-04 03:57:05'), -(12931,4325,'action started via WP Cron','2025-10-04 02:57:05','2025-10-04 04:57:05'), -(12932,4326,'action created','2025-10-04 02:57:05','2025-10-04 04:57:05'), -(12933,4325,'action complete via WP Cron','2025-10-04 02:57:05','2025-10-04 04:57:05'), -(12934,4326,'action started via WP Cron','2025-10-04 03:57:05','2025-10-04 05:57:05'), -(12935,4327,'action created','2025-10-04 03:57:05','2025-10-04 05:57:05'), -(12936,4326,'action complete via WP Cron','2025-10-04 03:57:05','2025-10-04 05:57:05'), -(12937,4327,'action started via WP Cron','2025-10-04 04:57:05','2025-10-04 06:57:05'), -(12938,4328,'action created','2025-10-04 04:57:05','2025-10-04 06:57:05'), -(12939,4327,'action complete via WP Cron','2025-10-04 04:57:05','2025-10-04 06:57:05'), -(12940,4328,'action started via WP Cron','2025-10-04 05:57:05','2025-10-04 07:57:05'), -(12941,4329,'action created','2025-10-04 05:57:05','2025-10-04 07:57:05'), -(12942,4328,'action complete via WP Cron','2025-10-04 05:57:05','2025-10-04 07:57:05'), -(12943,4329,'action started via WP Cron','2025-10-04 06:57:05','2025-10-04 08:57:05'), -(12944,4330,'action created','2025-10-04 06:57:05','2025-10-04 08:57:05'), -(12945,4329,'action complete via WP Cron','2025-10-04 06:57:05','2025-10-04 08:57:05'), -(12946,4315,'action started via WP Cron','2025-10-04 07:15:05','2025-10-04 09:15:05'), -(12947,4315,'action complete via WP Cron','2025-10-04 07:15:05','2025-10-04 09:15:05'), -(12948,4331,'action created','2025-10-04 07:15:05','2025-10-04 09:15:05'), -(12949,4294,'action started via WP Cron','2025-10-04 07:16:05','2025-10-04 09:16:05'), -(12950,4294,'action complete via WP Cron','2025-10-04 07:16:05','2025-10-04 09:16:05'), -(12951,4332,'action created','2025-10-04 07:16:05','2025-10-04 09:16:05'), -(12952,4295,'action started via WP Cron','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12953,4295,'action complete via WP Cron','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12954,4333,'action created','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12955,4297,'action started via WP Cron','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12956,4334,'action created','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12957,4297,'action complete via WP Cron','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12958,4335,'action created','2025-10-04 07:19:05','2025-10-04 09:19:05'), -(12959,4334,'action started via WP Cron','2025-10-04 07:20:05','2025-10-04 09:20:05'), -(12960,4334,'action complete via WP Cron','2025-10-04 07:20:05','2025-10-04 09:20:05'), -(12961,4330,'action started via WP Cron','2025-10-04 07:57:05','2025-10-04 09:57:05'), -(12962,4336,'action created','2025-10-04 07:57:05','2025-10-04 09:57:05'), -(12963,4330,'action complete via WP Cron','2025-10-04 07:57:05','2025-10-04 09:57:05'), -(12964,4336,'action started via WP Cron','2025-10-04 08:57:05','2025-10-04 10:57:05'), -(12965,4337,'action created','2025-10-04 08:57:05','2025-10-04 10:57:05'), -(12966,4336,'action complete via WP Cron','2025-10-04 08:57:05','2025-10-04 10:57:05'), -(12967,4337,'action started via WP Cron','2025-10-04 09:57:45','2025-10-04 11:57:45'), -(12968,4338,'action created','2025-10-04 09:57:45','2025-10-04 11:57:45'), -(12969,4337,'action complete via WP Cron','2025-10-04 09:57:45','2025-10-04 11:57:45'), -(12970,4301,'action started via WP Cron','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12971,4301,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12972,4339,'action created','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12973,4302,'action started via WP Cron','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12974,4302,'action complete via WP Cron','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12975,4340,'action created','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12976,4338,'action started via WP Cron','2025-10-04 10:58:05','2025-10-04 12:58:05'), -(12977,4341,'action created','2025-10-04 10:58:05','2025-10-04 12:58:05'), -(12978,4338,'action complete via WP Cron','2025-10-04 10:58:05','2025-10-04 12:58:05'), -(12979,4341,'action started via WP Cron','2025-10-04 11:58:05','2025-10-04 13:58:05'), -(12980,4342,'action created','2025-10-04 11:58:05','2025-10-04 13:58:05'), -(12981,4341,'action complete via WP Cron','2025-10-04 11:58:05','2025-10-04 13:58:05'), -(12982,4342,'action started via WP Cron','2025-10-04 12:58:05','2025-10-04 14:58:05'), -(12983,4343,'action created','2025-10-04 12:58:05','2025-10-04 14:58:05'), -(12984,4342,'action complete via WP Cron','2025-10-04 12:58:05','2025-10-04 14:58:05'), -(12985,4324,'action started via WP Cron','2025-10-04 13:18:05','2025-10-04 15:18:05'), -(12986,4324,'action complete via WP Cron','2025-10-04 13:18:05','2025-10-04 15:18:05'), -(12987,4344,'action created','2025-10-04 13:18:05','2025-10-04 15:18:05'), -(12988,4343,'action started via WP Cron','2025-10-04 13:58:05','2025-10-04 15:58:05'), -(12989,4345,'action created','2025-10-04 13:58:05','2025-10-04 15:58:05'), -(12990,4343,'action complete via WP Cron','2025-10-04 13:58:05','2025-10-04 15:58:05'), -(12991,4345,'action started via WP Cron','2025-10-04 14:58:05','2025-10-04 16:58:05'), -(12992,4346,'action created','2025-10-04 14:58:05','2025-10-04 16:58:05'), -(12993,4345,'action complete via WP Cron','2025-10-04 14:58:05','2025-10-04 16:58:05'), -(12994,4346,'action started via WP Cron','2025-10-04 15:59:05','2025-10-04 17:59:05'), -(12995,4347,'action created','2025-10-04 15:59:05','2025-10-04 17:59:05'), -(12996,4346,'action complete via WP Cron','2025-10-04 15:59:05','2025-10-04 17:59:05'), -(12997,4347,'action started via WP Cron','2025-10-04 16:59:05','2025-10-04 18:59:05'), -(12998,4348,'action created','2025-10-04 16:59:05','2025-10-04 18:59:05'), -(12999,4347,'action complete via WP Cron','2025-10-04 16:59:05','2025-10-04 18:59:05'), -(13000,4348,'action started via WP Cron','2025-10-04 17:59:05','2025-10-04 19:59:05'), -(13001,4349,'action created','2025-10-04 17:59:05','2025-10-04 19:59:05'), -(13002,4348,'action complete via WP Cron','2025-10-04 17:59:05','2025-10-04 19:59:05'), -(13003,4312,'action started via WP Cron','2025-10-04 18:39:05','2025-10-04 20:39:05'), -(13004,4312,'action complete via WP Cron','2025-10-04 18:39:05','2025-10-04 20:39:05'), -(13005,4350,'action created','2025-10-04 18:39:05','2025-10-04 20:39:05'), -(13006,4313,'action started via WP Cron','2025-10-04 18:40:05','2025-10-04 20:40:05'), -(13007,4313,'action complete via WP Cron','2025-10-04 18:40:05','2025-10-04 20:40:05'), -(13008,4351,'action created','2025-10-04 18:40:05','2025-10-04 20:40:05'), -(13009,4349,'action started via WP Cron','2025-10-04 18:59:05','2025-10-04 20:59:05'), -(13010,4352,'action created','2025-10-04 18:59:05','2025-10-04 20:59:05'), -(13011,4349,'action complete via WP Cron','2025-10-04 18:59:05','2025-10-04 20:59:05'), -(13012,4331,'action started via WP Cron','2025-10-04 19:15:05','2025-10-04 21:15:05'), -(13013,4331,'action complete via WP Cron','2025-10-04 19:15:05','2025-10-04 21:15:05'), -(13014,4353,'action created','2025-10-04 19:15:05','2025-10-04 21:15:05'), -(13015,4352,'action started via WP Cron','2025-10-04 20:00:05','2025-10-04 22:00:05'), -(13016,4354,'action created','2025-10-04 20:00:05','2025-10-04 22:00:05'), -(13017,4352,'action complete via WP Cron','2025-10-04 20:00:05','2025-10-04 22:00:05'), -(13018,4354,'action started via WP Cron','2025-10-04 21:00:05','2025-10-04 23:00:05'), -(13019,4355,'action created','2025-10-04 21:00:05','2025-10-04 23:00:05'), -(13020,4354,'action complete via WP Cron','2025-10-04 21:00:05','2025-10-04 23:00:05'), -(13021,4355,'action started via WP Cron','2025-10-04 22:00:05','2025-10-05 00:00:05'), -(13022,4356,'action created','2025-10-04 22:00:05','2025-10-05 00:00:05'), -(13023,4355,'action complete via WP Cron','2025-10-04 22:00:05','2025-10-05 00:00:05'), -(13024,4320,'action started via WP Cron','2025-10-04 22:03:05','2025-10-05 00:03:05'), -(13025,4320,'action complete via WP Cron','2025-10-04 22:03:05','2025-10-05 00:03:05'), -(13026,4357,'action created','2025-10-04 22:03:05','2025-10-05 00:03:05'), -(13027,4356,'action started via WP Cron','2025-10-04 23:00:05','2025-10-05 01:00:05'), -(13028,4358,'action created','2025-10-04 23:00:05','2025-10-05 01:00:05'), -(13029,4356,'action complete via WP Cron','2025-10-04 23:00:05','2025-10-05 01:00:05'), -(13030,4358,'action started via WP Cron','2025-10-05 00:00:05','2025-10-05 02:00:05'), -(13031,4359,'action created','2025-10-05 00:00:05','2025-10-05 02:00:05'), -(13032,4358,'action complete via WP Cron','2025-10-05 00:00:05','2025-10-05 02:00:05'), -(13033,4359,'action started via WP Cron','2025-10-05 01:00:05','2025-10-05 03:00:05'), -(13034,4360,'action created','2025-10-05 01:00:05','2025-10-05 03:00:05'), -(13035,4359,'action complete via WP Cron','2025-10-05 01:00:05','2025-10-05 03:00:05'), -(13036,4344,'action started via WP Cron','2025-10-05 01:18:05','2025-10-05 03:18:05'), -(13037,4344,'action complete via WP Cron','2025-10-05 01:18:05','2025-10-05 03:18:05'), -(13038,4361,'action created','2025-10-05 01:18:05','2025-10-05 03:18:05'), -(13039,4360,'action started via WP Cron','2025-10-05 02:00:05','2025-10-05 04:00:05'), -(13040,4362,'action created','2025-10-05 02:00:05','2025-10-05 04:00:05'), -(13041,4360,'action complete via WP Cron','2025-10-05 02:00:05','2025-10-05 04:00:05'), -(13042,4362,'action started via WP Cron','2025-10-05 03:00:05','2025-10-05 05:00:05'), -(13043,4363,'action created','2025-10-05 03:00:05','2025-10-05 05:00:05'), -(13044,4362,'action complete via WP Cron','2025-10-05 03:00:05','2025-10-05 05:00:05'), -(13045,4363,'action started via WP Cron','2025-10-05 04:00:05','2025-10-05 06:00:05'), -(13046,4364,'action created','2025-10-05 04:00:05','2025-10-05 06:00:05'), -(13047,4363,'action complete via WP Cron','2025-10-05 04:00:05','2025-10-05 06:00:05'), -(13048,4364,'action started via WP Cron','2025-10-05 05:00:05','2025-10-05 07:00:05'), -(13049,4365,'action created','2025-10-05 05:00:05','2025-10-05 07:00:05'), -(13050,4364,'action complete via WP Cron','2025-10-05 05:00:05','2025-10-05 07:00:05'), -(13051,4365,'action started via WP Cron','2025-10-05 06:00:05','2025-10-05 08:00:05'), -(13052,4366,'action created','2025-10-05 06:00:05','2025-10-05 08:00:05'), -(13053,4365,'action complete via WP Cron','2025-10-05 06:00:05','2025-10-05 08:00:05'), -(13054,4366,'action started via WP Cron','2025-10-05 07:00:05','2025-10-05 09:00:05'), -(13055,4367,'action created','2025-10-05 07:00:05','2025-10-05 09:00:05'), -(13056,4366,'action complete via WP Cron','2025-10-05 07:00:05','2025-10-05 09:00:05'), -(13057,4353,'action started via WP Cron','2025-10-05 07:15:05','2025-10-05 09:15:05'), -(13058,4353,'action complete via WP Cron','2025-10-05 07:15:05','2025-10-05 09:15:05'), -(13059,4368,'action created','2025-10-05 07:15:05','2025-10-05 09:15:05'), -(13060,4332,'action started via WP Cron','2025-10-05 07:16:05','2025-10-05 09:16:05'), -(13061,4332,'action complete via WP Cron','2025-10-05 07:16:05','2025-10-05 09:16:05'), -(13062,4369,'action created','2025-10-05 07:16:05','2025-10-05 09:16:05'), -(13063,4333,'action started via WP Cron','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13064,4333,'action complete via WP Cron','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13065,4370,'action created','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13066,4335,'action started via WP Cron','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13067,4371,'action created','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13068,4335,'action complete via WP Cron','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13069,4372,'action created','2025-10-05 07:19:05','2025-10-05 09:19:05'), -(13070,4371,'action started via WP Cron','2025-10-05 07:20:05','2025-10-05 09:20:05'), -(13071,4371,'action complete via WP Cron','2025-10-05 07:20:05','2025-10-05 09:20:05'), -(13072,4367,'action started via WP Cron','2025-10-05 08:01:05','2025-10-05 10:01:05'), -(13073,4373,'action created','2025-10-05 08:01:05','2025-10-05 10:01:05'), -(13074,4367,'action complete via WP Cron','2025-10-05 08:01:05','2025-10-05 10:01:05'), -(13075,4373,'action started via WP Cron','2025-10-05 09:01:34','2025-10-05 11:01:34'), -(13076,4374,'action created','2025-10-05 09:01:34','2025-10-05 11:01:34'), -(13077,4373,'action complete via WP Cron','2025-10-05 09:01:34','2025-10-05 11:01:34'), -(13078,4374,'action started via WP Cron','2025-10-05 10:02:05','2025-10-05 12:02:05'), -(13079,4375,'action created','2025-10-05 10:02:05','2025-10-05 12:02:05'), -(13080,4374,'action complete via WP Cron','2025-10-05 10:02:05','2025-10-05 12:02:05'), -(13081,4339,'action started via WP Cron','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13082,4339,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13083,4376,'action created','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13084,4340,'action started via WP Cron','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13085,4340,'action complete via WP Cron','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13086,4377,'action created','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13087,4375,'action started via WP Cron','2025-10-05 11:02:05','2025-10-05 13:02:05'), -(13088,4378,'action created','2025-10-05 11:02:05','2025-10-05 13:02:05'), -(13089,4375,'action complete via WP Cron','2025-10-05 11:02:05','2025-10-05 13:02:05'), -(13090,4378,'action started via WP Cron','2025-10-05 12:02:05','2025-10-05 14:02:05'), -(13091,4379,'action created','2025-10-05 12:02:05','2025-10-05 14:02:05'), -(13092,4378,'action complete via WP Cron','2025-10-05 12:02:05','2025-10-05 14:02:05'), -(13093,4379,'action started via WP Cron','2025-10-05 13:02:05','2025-10-05 15:02:05'), -(13094,4380,'action created','2025-10-05 13:02:05','2025-10-05 15:02:05'), -(13095,4379,'action complete via WP Cron','2025-10-05 13:02:05','2025-10-05 15:02:05'), -(13096,4361,'action started via WP Cron','2025-10-05 13:18:05','2025-10-05 15:18:05'), -(13097,4361,'action complete via WP Cron','2025-10-05 13:18:05','2025-10-05 15:18:05'), -(13098,4381,'action created','2025-10-05 13:18:05','2025-10-05 15:18:05'), -(13099,4380,'action started via WP Cron','2025-10-05 14:02:05','2025-10-05 16:02:05'), -(13100,4382,'action created','2025-10-05 14:02:05','2025-10-05 16:02:05'), -(13101,4380,'action complete via WP Cron','2025-10-05 14:02:05','2025-10-05 16:02:05'), -(13102,4382,'action started via WP Cron','2025-10-05 15:02:05','2025-10-05 17:02:05'), -(13103,4383,'action created','2025-10-05 15:02:05','2025-10-05 17:02:05'), -(13104,4382,'action complete via WP Cron','2025-10-05 15:02:05','2025-10-05 17:02:05'), -(13105,4383,'action started via WP Cron','2025-10-05 16:02:05','2025-10-05 18:02:05'), -(13106,4384,'action created','2025-10-05 16:02:05','2025-10-05 18:02:05'), -(13107,4383,'action complete via WP Cron','2025-10-05 16:02:05','2025-10-05 18:02:05'), -(13108,4384,'action started via WP Cron','2025-10-05 17:02:05','2025-10-05 19:02:05'), -(13109,4385,'action created','2025-10-05 17:02:05','2025-10-05 19:02:05'), -(13110,4384,'action complete via WP Cron','2025-10-05 17:02:05','2025-10-05 19:02:05'), -(13111,4385,'action started via WP Cron','2025-10-05 18:02:05','2025-10-05 20:02:05'), -(13112,4386,'action created','2025-10-05 18:02:05','2025-10-05 20:02:05'), -(13113,4385,'action complete via WP Cron','2025-10-05 18:02:05','2025-10-05 20:02:05'), -(13114,4350,'action started via WP Cron','2025-10-05 18:39:05','2025-10-05 20:39:05'), -(13115,4350,'action complete via WP Cron','2025-10-05 18:39:05','2025-10-05 20:39:05'), -(13116,4387,'action created','2025-10-05 18:39:05','2025-10-05 20:39:05'), -(13117,4351,'action started via WP Cron','2025-10-05 18:40:05','2025-10-05 20:40:05'), -(13118,4351,'action complete via WP Cron','2025-10-05 18:40:05','2025-10-05 20:40:05'), -(13119,4388,'action created','2025-10-05 18:40:05','2025-10-05 20:40:05'), -(13120,4386,'action started via WP Cron','2025-10-05 19:02:05','2025-10-05 21:02:05'), -(13121,4389,'action created','2025-10-05 19:02:05','2025-10-05 21:02:05'), -(13122,4386,'action complete via WP Cron','2025-10-05 19:02:05','2025-10-05 21:02:05'), -(13123,4368,'action started via WP Cron','2025-10-05 19:15:05','2025-10-05 21:15:05'), -(13124,4368,'action complete via WP Cron','2025-10-05 19:15:05','2025-10-05 21:15:05'), -(13125,4390,'action created','2025-10-05 19:15:05','2025-10-05 21:15:05'), -(13126,4389,'action started via WP Cron','2025-10-05 20:02:05','2025-10-05 22:02:05'), -(13127,4391,'action created','2025-10-05 20:02:05','2025-10-05 22:02:05'), -(13128,4389,'action complete via WP Cron','2025-10-05 20:02:05','2025-10-05 22:02:05'), -(13129,4391,'action started via WP Cron','2025-10-05 21:02:05','2025-10-05 23:02:05'), -(13130,4392,'action created','2025-10-05 21:02:05','2025-10-05 23:02:05'), -(13131,4391,'action complete via WP Cron','2025-10-05 21:02:05','2025-10-05 23:02:05'), -(13132,4392,'action started via WP Cron','2025-10-05 22:02:05','2025-10-06 00:02:05'), -(13133,4393,'action created','2025-10-05 22:02:05','2025-10-06 00:02:05'), -(13134,4392,'action complete via WP Cron','2025-10-05 22:02:05','2025-10-06 00:02:05'), -(13135,4357,'action started via WP Cron','2025-10-05 22:03:05','2025-10-06 00:03:05'), -(13136,4357,'action complete via WP Cron','2025-10-05 22:03:05','2025-10-06 00:03:05'), -(13137,4394,'action created','2025-10-05 22:03:05','2025-10-06 00:03:05'), -(13138,4393,'action started via WP Cron','2025-10-05 23:02:05','2025-10-06 01:02:05'), -(13139,4395,'action created','2025-10-05 23:02:05','2025-10-06 01:02:05'), -(13140,4393,'action complete via WP Cron','2025-10-05 23:02:05','2025-10-06 01:02:05'), -(13141,4395,'action started via WP Cron','2025-10-06 00:02:05','2025-10-06 02:02:05'), -(13142,4396,'action created','2025-10-06 00:02:05','2025-10-06 02:02:05'), -(13143,4395,'action complete via WP Cron','2025-10-06 00:02:05','2025-10-06 02:02:05'), -(13144,4396,'action started via WP Cron','2025-10-06 01:02:05','2025-10-06 03:02:05'), -(13145,4397,'action created','2025-10-06 01:02:05','2025-10-06 03:02:05'), -(13146,4396,'action complete via WP Cron','2025-10-06 01:02:05','2025-10-06 03:02:05'), -(13147,4381,'action started via WP Cron','2025-10-06 01:18:05','2025-10-06 03:18:05'), -(13148,4381,'action complete via WP Cron','2025-10-06 01:18:05','2025-10-06 03:18:05'), -(13149,4398,'action created','2025-10-06 01:18:05','2025-10-06 03:18:05'), -(13150,4397,'action started via WP Cron','2025-10-06 02:02:05','2025-10-06 04:02:05'), -(13151,4399,'action created','2025-10-06 02:02:05','2025-10-06 04:02:05'), -(13152,4397,'action complete via WP Cron','2025-10-06 02:02:05','2025-10-06 04:02:05'), -(13153,4399,'action started via WP Cron','2025-10-06 03:02:05','2025-10-06 05:02:05'), -(13154,4400,'action created','2025-10-06 03:02:05','2025-10-06 05:02:05'), -(13155,4399,'action complete via WP Cron','2025-10-06 03:02:05','2025-10-06 05:02:05'), -(13156,4400,'action started via WP Cron','2025-10-06 04:02:05','2025-10-06 06:02:05'), -(13157,4401,'action created','2025-10-06 04:02:05','2025-10-06 06:02:05'), -(13158,4400,'action complete via WP Cron','2025-10-06 04:02:05','2025-10-06 06:02:05'), -(13159,4401,'action started via WP Cron','2025-10-06 05:02:05','2025-10-06 07:02:05'), -(13160,4402,'action created','2025-10-06 05:02:05','2025-10-06 07:02:05'), -(13161,4401,'action complete via WP Cron','2025-10-06 05:02:05','2025-10-06 07:02:05'), -(13162,4402,'action started via WP Cron','2025-10-06 06:02:05','2025-10-06 08:02:05'), -(13163,4403,'action created','2025-10-06 06:02:05','2025-10-06 08:02:05'), -(13164,4402,'action complete via WP Cron','2025-10-06 06:02:05','2025-10-06 08:02:05'), -(13165,4403,'action started via WP Cron','2025-10-06 07:02:05','2025-10-06 09:02:05'), -(13166,4404,'action created','2025-10-06 07:02:05','2025-10-06 09:02:05'), -(13167,4403,'action complete via WP Cron','2025-10-06 07:02:05','2025-10-06 09:02:05'), -(13168,4390,'action started via WP Cron','2025-10-06 07:15:05','2025-10-06 09:15:05'), -(13169,4390,'action complete via WP Cron','2025-10-06 07:15:05','2025-10-06 09:15:05'), -(13170,4405,'action created','2025-10-06 07:15:05','2025-10-06 09:15:05'), -(13171,4369,'action started via WP Cron','2025-10-06 07:16:05','2025-10-06 09:16:05'), -(13172,4369,'action complete via WP Cron','2025-10-06 07:16:06','2025-10-06 09:16:06'), -(13173,4406,'action created','2025-10-06 07:16:06','2025-10-06 09:16:06'), -(13174,4370,'action started via WP Cron','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13175,4370,'action complete via WP Cron','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13176,4407,'action created','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13177,4372,'action started via WP Cron','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13178,4408,'action created','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13179,4372,'action complete via WP Cron','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13180,4409,'action created','2025-10-06 07:19:05','2025-10-06 09:19:05'), -(13181,4408,'action started via WP Cron','2025-10-06 07:20:05','2025-10-06 09:20:05'), -(13182,4408,'action complete via WP Cron','2025-10-06 07:20:05','2025-10-06 09:20:05'), -(13183,4404,'action started via WP Cron','2025-10-06 08:02:05','2025-10-06 10:02:05'), -(13184,4410,'action created','2025-10-06 08:02:05','2025-10-06 10:02:05'), -(13185,4404,'action complete via WP Cron','2025-10-06 08:02:05','2025-10-06 10:02:05'), -(13186,4410,'action started via WP Cron','2025-10-06 09:02:05','2025-10-06 11:02:05'), -(13187,4411,'action created','2025-10-06 09:02:05','2025-10-06 11:02:05'), -(13188,4410,'action complete via WP Cron','2025-10-06 09:02:05','2025-10-06 11:02:05'), -(13189,4411,'action started via WP Cron','2025-10-06 10:02:05','2025-10-06 12:02:05'), -(13190,4412,'action created','2025-10-06 10:02:05','2025-10-06 12:02:05'), -(13191,4411,'action complete via WP Cron','2025-10-06 10:02:05','2025-10-06 12:02:05'), -(13192,4376,'action started via WP Cron','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13193,4376,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13194,4413,'action created','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13195,4377,'action started via WP Cron','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13196,4377,'action complete via WP Cron','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13197,4414,'action created','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13198,4412,'action started via WP Cron','2025-10-06 11:02:05','2025-10-06 13:02:05'), -(13199,4415,'action created','2025-10-06 11:02:05','2025-10-06 13:02:05'), -(13200,4412,'action complete via WP Cron','2025-10-06 11:02:05','2025-10-06 13:02:05'), -(13201,4415,'action started via WP Cron','2025-10-06 12:02:05','2025-10-06 14:02:05'), -(13202,4416,'action created','2025-10-06 12:02:05','2025-10-06 14:02:05'), -(13203,4415,'action complete via WP Cron','2025-10-06 12:02:05','2025-10-06 14:02:05'), -(13204,4417,'action created','2025-10-06 12:39:33','2025-10-06 14:39:33'), -(13205,4417,'action started via Async Request','2025-10-06 12:40:25','2025-10-06 14:40:25'), -(13206,4417,'action complete via Async Request','2025-10-06 12:40:25','2025-10-06 14:40:25'), -(13207,4418,'action created','2025-10-06 12:46:02','2025-10-06 14:46:02'), -(13208,4418,'action started via WP Cron','2025-10-06 12:47:05','2025-10-06 14:47:05'), -(13209,4418,'action complete via WP Cron','2025-10-06 12:47:05','2025-10-06 14:47:05'), -(13210,4416,'action started via WP Cron','2025-10-06 13:02:05','2025-10-06 15:02:05'), -(13211,4419,'action created','2025-10-06 13:02:05','2025-10-06 15:02:05'), -(13212,4416,'action complete via WP Cron','2025-10-06 13:02:05','2025-10-06 15:02:05'), -(13213,4398,'action started via WP Cron','2025-10-06 13:18:05','2025-10-06 15:18:05'), -(13214,4398,'action complete via WP Cron','2025-10-06 13:18:05','2025-10-06 15:18:05'), -(13215,4420,'action created','2025-10-06 13:18:05','2025-10-06 15:18:05'), -(13216,4419,'action started via WP Cron','2025-10-06 14:02:05','2025-10-06 16:02:05'), -(13217,4421,'action created','2025-10-06 14:02:05','2025-10-06 16:02:05'), -(13218,4419,'action complete via WP Cron','2025-10-06 14:02:05','2025-10-06 16:02:05'), -(13219,4421,'action started via WP Cron','2025-10-06 15:02:05','2025-10-06 17:02:05'), -(13220,4422,'action created','2025-10-06 15:02:05','2025-10-06 17:02:05'), -(13221,4421,'action complete via WP Cron','2025-10-06 15:02:05','2025-10-06 17:02:05'), -(13222,4422,'action started via WP Cron','2025-10-06 16:02:05','2025-10-06 18:02:05'), -(13223,4423,'action created','2025-10-06 16:02:05','2025-10-06 18:02:05'), -(13224,4422,'action complete via WP Cron','2025-10-06 16:02:05','2025-10-06 18:02:05'), -(13225,4423,'action started via WP Cron','2025-10-06 17:02:05','2025-10-06 19:02:05'), -(13226,4424,'action created','2025-10-06 17:02:05','2025-10-06 19:02:05'), -(13227,4423,'action complete via WP Cron','2025-10-06 17:02:05','2025-10-06 19:02:05'), -(13228,4424,'action started via WP Cron','2025-10-06 18:02:05','2025-10-06 20:02:05'), -(13229,4425,'action created','2025-10-06 18:02:05','2025-10-06 20:02:05'), -(13230,4424,'action complete via WP Cron','2025-10-06 18:02:05','2025-10-06 20:02:05'), -(13231,4387,'action started via WP Cron','2025-10-06 18:39:05','2025-10-06 20:39:05'), -(13232,4387,'action complete via WP Cron','2025-10-06 18:39:05','2025-10-06 20:39:05'), -(13233,4426,'action created','2025-10-06 18:39:05','2025-10-06 20:39:05'), -(13234,4388,'action started via WP Cron','2025-10-06 18:40:05','2025-10-06 20:40:05'), -(13235,4388,'action complete via WP Cron','2025-10-06 18:40:06','2025-10-06 20:40:06'), -(13236,4427,'action created','2025-10-06 18:40:06','2025-10-06 20:40:06'), -(13237,4425,'action started via WP Cron','2025-10-06 19:02:05','2025-10-06 21:02:05'), -(13238,4428,'action created','2025-10-06 19:02:05','2025-10-06 21:02:05'), -(13239,4425,'action complete via WP Cron','2025-10-06 19:02:05','2025-10-06 21:02:05'), -(13240,4405,'action started via WP Cron','2025-10-06 19:15:05','2025-10-06 21:15:05'), -(13241,4405,'action complete via WP Cron','2025-10-06 19:15:05','2025-10-06 21:15:05'), -(13242,4429,'action created','2025-10-06 19:15:05','2025-10-06 21:15:05'), -(13243,4428,'action started via WP Cron','2025-10-06 20:02:05','2025-10-06 22:02:05'), -(13244,4430,'action created','2025-10-06 20:02:05','2025-10-06 22:02:05'), -(13245,4428,'action complete via WP Cron','2025-10-06 20:02:05','2025-10-06 22:02:05'), -(13246,4430,'action started via WP Cron','2025-10-06 21:02:05','2025-10-06 23:02:05'), -(13247,4431,'action created','2025-10-06 21:02:05','2025-10-06 23:02:05'), -(13248,4430,'action complete via WP Cron','2025-10-06 21:02:06','2025-10-06 23:02:06'), -(13249,4431,'action started via WP Cron','2025-10-06 22:02:05','2025-10-07 00:02:05'), -(13250,4432,'action created','2025-10-06 22:02:05','2025-10-07 00:02:05'), -(13251,4431,'action complete via WP Cron','2025-10-06 22:02:06','2025-10-07 00:02:06'), -(13252,4394,'action started via WP Cron','2025-10-06 22:03:06','2025-10-07 00:03:06'), -(13253,4394,'action complete via WP Cron','2025-10-06 22:03:06','2025-10-07 00:03:06'), -(13254,4433,'action created','2025-10-06 22:03:06','2025-10-07 00:03:06'), -(13255,4432,'action started via WP Cron','2025-10-06 23:02:05','2025-10-07 01:02:05'), -(13256,4434,'action created','2025-10-06 23:02:05','2025-10-07 01:02:05'), -(13257,4432,'action complete via WP Cron','2025-10-06 23:02:06','2025-10-07 01:02:06'), -(13258,4434,'action started via WP Cron','2025-10-07 00:02:06','2025-10-07 02:02:06'), -(13259,4435,'action created','2025-10-07 00:02:06','2025-10-07 02:02:06'), -(13260,4434,'action complete via WP Cron','2025-10-07 00:02:06','2025-10-07 02:02:06'), -(13261,4435,'action started via WP Cron','2025-10-07 01:02:06','2025-10-07 03:02:06'), -(13262,4436,'action created','2025-10-07 01:02:06','2025-10-07 03:02:06'), -(13263,4435,'action complete via WP Cron','2025-10-07 01:02:06','2025-10-07 03:02:06'), -(13264,4420,'action started via WP Cron','2025-10-07 01:18:06','2025-10-07 03:18:06'), -(13265,4420,'action complete via WP Cron','2025-10-07 01:18:06','2025-10-07 03:18:06'), -(13266,4437,'action created','2025-10-07 01:18:06','2025-10-07 03:18:06'), -(13267,4436,'action started via WP Cron','2025-10-07 02:02:06','2025-10-07 04:02:06'), -(13268,4438,'action created','2025-10-07 02:02:06','2025-10-07 04:02:06'), -(13269,4436,'action complete via WP Cron','2025-10-07 02:02:06','2025-10-07 04:02:06'), -(13270,4438,'action started via WP Cron','2025-10-07 03:02:06','2025-10-07 05:02:06'), -(13271,4439,'action created','2025-10-07 03:02:06','2025-10-07 05:02:06'), -(13272,4438,'action complete via WP Cron','2025-10-07 03:02:06','2025-10-07 05:02:06'), -(13273,4439,'action started via WP Cron','2025-10-07 04:02:06','2025-10-07 06:02:06'), -(13274,4440,'action created','2025-10-07 04:02:06','2025-10-07 06:02:06'), -(13275,4439,'action complete via WP Cron','2025-10-07 04:02:06','2025-10-07 06:02:06'), -(13276,4176,'action started via WP Cron','2025-10-07 04:06:06','2025-10-07 06:06:06'), -(13277,4176,'action complete via WP Cron','2025-10-07 04:06:06','2025-10-07 06:06:06'), -(13278,4441,'action created','2025-10-07 04:06:06','2025-10-07 06:06:06'), -(13279,4440,'action started via WP Cron','2025-10-07 05:02:06','2025-10-07 07:02:06'), -(13280,4442,'action created','2025-10-07 05:02:06','2025-10-07 07:02:06'), -(13281,4440,'action complete via WP Cron','2025-10-07 05:02:06','2025-10-07 07:02:06'), -(13282,4442,'action started via WP Cron','2025-10-07 06:02:06','2025-10-07 08:02:06'), -(13283,4443,'action created','2025-10-07 06:02:06','2025-10-07 08:02:06'), -(13284,4442,'action complete via WP Cron','2025-10-07 06:02:06','2025-10-07 08:02:06'), -(13285,4443,'action started via WP Cron','2025-10-07 07:02:06','2025-10-07 09:02:06'), -(13286,4444,'action created','2025-10-07 07:02:06','2025-10-07 09:02:06'), -(13287,4443,'action complete via WP Cron','2025-10-07 07:02:06','2025-10-07 09:02:06'), -(13288,4429,'action started via WP Cron','2025-10-07 07:15:06','2025-10-07 09:15:06'), -(13289,4429,'action complete via WP Cron','2025-10-07 07:15:06','2025-10-07 09:15:06'), -(13290,4445,'action created','2025-10-07 07:15:06','2025-10-07 09:15:06'), -(13291,4406,'action started via WP Cron','2025-10-07 07:16:06','2025-10-07 09:16:06'), -(13292,4406,'action complete via WP Cron','2025-10-07 07:16:06','2025-10-07 09:16:06'), -(13293,4446,'action created','2025-10-07 07:16:06','2025-10-07 09:16:06'), -(13294,4407,'action started via WP Cron','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13295,4407,'action complete via WP Cron','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13296,4447,'action created','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13297,4409,'action started via WP Cron','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13298,4448,'action created','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13299,4409,'action complete via WP Cron','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13300,4449,'action created','2025-10-07 07:19:06','2025-10-07 09:19:06'), -(13301,4448,'action started via WP Cron','2025-10-07 07:20:06','2025-10-07 09:20:06'), -(13302,4448,'action complete via WP Cron','2025-10-07 07:20:06','2025-10-07 09:20:06'), -(13303,4444,'action started via WP Cron','2025-10-07 08:02:06','2025-10-07 10:02:06'), -(13304,4450,'action created','2025-10-07 08:02:06','2025-10-07 10:02:06'), -(13305,4444,'action complete via WP Cron','2025-10-07 08:02:06','2025-10-07 10:02:06'), -(13306,4450,'action started via WP Cron','2025-10-07 09:02:06','2025-10-07 11:02:06'), -(13307,4451,'action created','2025-10-07 09:02:06','2025-10-07 11:02:06'), -(13308,4450,'action complete via WP Cron','2025-10-07 09:02:06','2025-10-07 11:02:06'), -(13309,4451,'action started via WP Cron','2025-10-07 10:02:06','2025-10-07 12:02:06'), -(13310,4452,'action created','2025-10-07 10:02:06','2025-10-07 12:02:06'), -(13311,4451,'action complete via WP Cron','2025-10-07 10:02:06','2025-10-07 12:02:06'), -(13312,4413,'action started via WP Cron','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13313,4413,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13314,4453,'action created','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13315,4414,'action started via WP Cron','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13316,4414,'action complete via WP Cron','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13317,4454,'action created','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13318,4452,'action started via WP Cron','2025-10-07 11:02:06','2025-10-07 13:02:06'), -(13319,4455,'action created','2025-10-07 11:02:06','2025-10-07 13:02:06'), -(13320,4452,'action complete via WP Cron','2025-10-07 11:02:06','2025-10-07 13:02:06'), -(13321,4455,'action started via WP Cron','2025-10-07 12:02:06','2025-10-07 14:02:06'), -(13322,4456,'action created','2025-10-07 12:02:06','2025-10-07 14:02:06'), -(13323,4455,'action complete via WP Cron','2025-10-07 12:02:06','2025-10-07 14:02:06'), -(13324,4456,'action started via WP Cron','2025-10-07 13:02:06','2025-10-07 15:02:06'), -(13325,4457,'action created','2025-10-07 13:02:06','2025-10-07 15:02:06'), -(13326,4456,'action complete via WP Cron','2025-10-07 13:02:06','2025-10-07 15:02:06'), -(13327,4437,'action started via WP Cron','2025-10-07 13:18:06','2025-10-07 15:18:06'), -(13328,4437,'action complete via WP Cron','2025-10-07 13:18:06','2025-10-07 15:18:06'), -(13329,4458,'action created','2025-10-07 13:18:06','2025-10-07 15:18:06'), -(13330,4457,'action started via WP Cron','2025-10-07 14:02:06','2025-10-07 16:02:06'), -(13331,4459,'action created','2025-10-07 14:02:06','2025-10-07 16:02:06'), -(13332,4457,'action complete via WP Cron','2025-10-07 14:02:06','2025-10-07 16:02:06'), -(13333,4459,'action started via WP Cron','2025-10-07 15:02:06','2025-10-07 17:02:06'), -(13334,4460,'action created','2025-10-07 15:02:06','2025-10-07 17:02:06'), -(13335,4459,'action complete via WP Cron','2025-10-07 15:02:06','2025-10-07 17:02:06'), -(13336,4460,'action started via WP Cron','2025-10-07 16:02:30','2025-10-07 18:02:30'), -(13337,4461,'action created','2025-10-07 16:02:30','2025-10-07 18:02:30'), -(13338,4460,'action complete via WP Cron','2025-10-07 16:02:30','2025-10-07 18:02:30'), -(13339,4461,'action started via WP Cron','2025-10-07 17:03:06','2025-10-07 19:03:06'), -(13340,4462,'action created','2025-10-07 17:03:06','2025-10-07 19:03:06'), -(13341,4461,'action complete via WP Cron','2025-10-07 17:03:06','2025-10-07 19:03:06'), -(13342,4462,'action started via WP Cron','2025-10-07 18:03:06','2025-10-07 20:03:06'), -(13343,4463,'action created','2025-10-07 18:03:06','2025-10-07 20:03:06'), -(13344,4462,'action complete via WP Cron','2025-10-07 18:03:06','2025-10-07 20:03:06'), -(13345,4426,'action started via WP Cron','2025-10-07 18:39:06','2025-10-07 20:39:06'), -(13346,4426,'action complete via WP Cron','2025-10-07 18:39:06','2025-10-07 20:39:06'), -(13347,4464,'action created','2025-10-07 18:39:06','2025-10-07 20:39:06'), -(13348,4427,'action started via WP Cron','2025-10-07 18:40:06','2025-10-07 20:40:06'), -(13349,4427,'action complete via WP Cron','2025-10-07 18:40:06','2025-10-07 20:40:06'), -(13350,4465,'action created','2025-10-07 18:40:06','2025-10-07 20:40:06'), -(13351,4463,'action started via WP Cron','2025-10-07 19:03:06','2025-10-07 21:03:06'), -(13352,4466,'action created','2025-10-07 19:03:06','2025-10-07 21:03:06'), -(13353,4463,'action complete via WP Cron','2025-10-07 19:03:06','2025-10-07 21:03:06'), -(13354,4445,'action started via WP Cron','2025-10-07 19:15:06','2025-10-07 21:15:06'), -(13355,4445,'action complete via WP Cron','2025-10-07 19:15:06','2025-10-07 21:15:06'), -(13356,4467,'action created','2025-10-07 19:15:06','2025-10-07 21:15:06'), -(13357,4466,'action started via WP Cron','2025-10-07 20:03:06','2025-10-07 22:03:06'), -(13358,4468,'action created','2025-10-07 20:03:06','2025-10-07 22:03:06'), -(13359,4466,'action complete via WP Cron','2025-10-07 20:03:06','2025-10-07 22:03:06'), -(13360,4468,'action started via WP Cron','2025-10-07 21:03:06','2025-10-07 23:03:06'), -(13361,4469,'action created','2025-10-07 21:03:06','2025-10-07 23:03:06'), -(13362,4468,'action complete via WP Cron','2025-10-07 21:03:06','2025-10-07 23:03:06'), -(13363,4433,'action started via WP Cron','2025-10-07 22:03:06','2025-10-08 00:03:06'), -(13364,4433,'action complete via WP Cron','2025-10-07 22:03:06','2025-10-08 00:03:06'), -(13365,4470,'action created','2025-10-07 22:03:06','2025-10-08 00:03:06'), -(13366,4469,'action started via WP Cron','2025-10-07 22:03:06','2025-10-08 00:03:06'), -(13367,4471,'action created','2025-10-07 22:03:06','2025-10-08 00:03:06'), -(13368,4469,'action complete via WP Cron','2025-10-07 22:03:06','2025-10-08 00:03:06'), -(13369,4471,'action started via WP Cron','2025-10-07 23:03:06','2025-10-08 01:03:06'), -(13370,4472,'action created','2025-10-07 23:03:06','2025-10-08 01:03:06'), -(13371,4471,'action complete via WP Cron','2025-10-07 23:03:06','2025-10-08 01:03:06'), -(13372,4472,'action started via WP Cron','2025-10-08 00:03:06','2025-10-08 02:03:06'), -(13373,4473,'action created','2025-10-08 00:03:06','2025-10-08 02:03:06'), -(13374,4472,'action complete via WP Cron','2025-10-08 00:03:06','2025-10-08 02:03:06'), -(13375,4473,'action started via WP Cron','2025-10-08 01:03:06','2025-10-08 03:03:06'), -(13376,4474,'action created','2025-10-08 01:03:06','2025-10-08 03:03:06'), -(13377,4473,'action complete via WP Cron','2025-10-08 01:03:06','2025-10-08 03:03:06'), -(13378,4458,'action started via WP Cron','2025-10-08 01:18:06','2025-10-08 03:18:06'), -(13379,4458,'action complete via WP Cron','2025-10-08 01:18:06','2025-10-08 03:18:06'), -(13380,4475,'action created','2025-10-08 01:18:06','2025-10-08 03:18:06'), -(13381,4474,'action started via WP Cron','2025-10-08 02:03:06','2025-10-08 04:03:06'), -(13382,4476,'action created','2025-10-08 02:03:06','2025-10-08 04:03:06'), -(13383,4474,'action complete via WP Cron','2025-10-08 02:03:06','2025-10-08 04:03:06'), -(13384,4476,'action started via WP Cron','2025-10-08 03:03:06','2025-10-08 05:03:06'), -(13385,4477,'action created','2025-10-08 03:03:06','2025-10-08 05:03:06'), -(13386,4476,'action complete via WP Cron','2025-10-08 03:03:06','2025-10-08 05:03:06'), -(13387,4477,'action started via WP Cron','2025-10-08 04:03:06','2025-10-08 06:03:06'), -(13388,4478,'action created','2025-10-08 04:03:06','2025-10-08 06:03:06'), -(13389,4477,'action complete via WP Cron','2025-10-08 04:03:06','2025-10-08 06:03:06'), -(13390,4478,'action started via WP Cron','2025-10-08 05:03:06','2025-10-08 07:03:06'), -(13391,4479,'action created','2025-10-08 05:03:06','2025-10-08 07:03:06'), -(13392,4478,'action complete via WP Cron','2025-10-08 05:03:06','2025-10-08 07:03:06'), -(13393,4479,'action started via WP Cron','2025-10-08 06:03:06','2025-10-08 08:03:06'), -(13394,4480,'action created','2025-10-08 06:03:06','2025-10-08 08:03:06'), -(13395,4479,'action complete via WP Cron','2025-10-08 06:03:06','2025-10-08 08:03:06'), -(13396,4480,'action started via WP Cron','2025-10-08 07:04:06','2025-10-08 09:04:06'), -(13397,4481,'action created','2025-10-08 07:04:06','2025-10-08 09:04:06'), -(13398,4480,'action complete via WP Cron','2025-10-08 07:04:06','2025-10-08 09:04:06'), -(13399,3862,'action started via WP Cron','2025-10-08 07:14:06','2025-10-08 09:14:06'), -(13400,3862,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-08 07:14:06','2025-10-08 09:14:06'), -(13401,4482,'action created','2025-10-08 07:14:06','2025-10-08 09:14:06'), -(13402,4467,'action started via WP Cron','2025-10-08 07:15:06','2025-10-08 09:15:06'), -(13403,4467,'action complete via WP Cron','2025-10-08 07:15:06','2025-10-08 09:15:06'), -(13404,4483,'action created','2025-10-08 07:15:06','2025-10-08 09:15:06'), -(13405,4446,'action started via WP Cron','2025-10-08 07:16:06','2025-10-08 09:16:06'), -(13406,4446,'action complete via WP Cron','2025-10-08 07:16:06','2025-10-08 09:16:06'), -(13407,4484,'action created','2025-10-08 07:16:06','2025-10-08 09:16:06'), -(13408,4447,'action started via WP Cron','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13409,4447,'action complete via WP Cron','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13410,4485,'action created','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13411,4449,'action started via WP Cron','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13412,4486,'action created','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13413,4449,'action complete via WP Cron','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13414,4487,'action created','2025-10-08 07:19:06','2025-10-08 09:19:06'), -(13415,4486,'action started via WP Cron','2025-10-08 07:20:06','2025-10-08 09:20:06'), -(13416,4486,'action complete via WP Cron','2025-10-08 07:20:06','2025-10-08 09:20:06'), -(13417,4481,'action started via WP Cron','2025-10-08 08:04:06','2025-10-08 10:04:06'), -(13418,4488,'action created','2025-10-08 08:04:06','2025-10-08 10:04:06'), -(13419,4481,'action complete via WP Cron','2025-10-08 08:04:06','2025-10-08 10:04:06'), -(13420,4488,'action started via WP Cron','2025-10-08 09:04:06','2025-10-08 11:04:06'), -(13421,4489,'action created','2025-10-08 09:04:06','2025-10-08 11:04:06'), -(13422,4488,'action complete via WP Cron','2025-10-08 09:04:06','2025-10-08 11:04:06'), -(13423,4489,'action started via WP Cron','2025-10-08 10:04:06','2025-10-08 12:04:06'), -(13424,4490,'action created','2025-10-08 10:04:06','2025-10-08 12:04:06'), -(13425,4489,'action complete via WP Cron','2025-10-08 10:04:06','2025-10-08 12:04:06'), -(13426,4453,'action started via WP Cron','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13427,4453,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13428,4491,'action created','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13429,4454,'action started via WP Cron','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13430,4454,'action complete via WP Cron','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13431,4492,'action created','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13432,4490,'action started via WP Cron','2025-10-08 11:04:06','2025-10-08 13:04:06'), -(13433,4493,'action created','2025-10-08 11:04:06','2025-10-08 13:04:06'), -(13434,4490,'action complete via WP Cron','2025-10-08 11:04:06','2025-10-08 13:04:06'), -(13435,4493,'action started via WP Cron','2025-10-08 12:04:06','2025-10-08 14:04:06'), -(13436,4494,'action created','2025-10-08 12:04:06','2025-10-08 14:04:06'), -(13437,4493,'action complete via WP Cron','2025-10-08 12:04:06','2025-10-08 14:04:06'), -(13438,4494,'action started via WP Cron','2025-10-08 13:04:06','2025-10-08 15:04:06'), -(13439,4495,'action created','2025-10-08 13:04:06','2025-10-08 15:04:06'), -(13440,4494,'action complete via WP Cron','2025-10-08 13:04:06','2025-10-08 15:04:06'), -(13441,4475,'action started via WP Cron','2025-10-08 13:18:06','2025-10-08 15:18:06'), -(13442,4475,'action complete via WP Cron','2025-10-08 13:18:06','2025-10-08 15:18:06'), -(13443,4496,'action created','2025-10-08 13:18:06','2025-10-08 15:18:06'), -(13444,4495,'action started via WP Cron','2025-10-08 14:04:06','2025-10-08 16:04:06'), -(13445,4497,'action created','2025-10-08 14:04:06','2025-10-08 16:04:06'), -(13446,4495,'action complete via WP Cron','2025-10-08 14:04:06','2025-10-08 16:04:06'), -(13447,4497,'action started via WP Cron','2025-10-08 15:04:06','2025-10-08 17:04:06'), -(13448,4498,'action created','2025-10-08 15:04:06','2025-10-08 17:04:06'), -(13449,4497,'action complete via WP Cron','2025-10-08 15:04:06','2025-10-08 17:04:06'), -(13450,4498,'action started via WP Cron','2025-10-08 16:04:06','2025-10-08 18:04:06'), -(13451,4499,'action created','2025-10-08 16:04:06','2025-10-08 18:04:06'), -(13452,4498,'action complete via WP Cron','2025-10-08 16:04:06','2025-10-08 18:04:06'), -(13453,4499,'action started via WP Cron','2025-10-08 17:04:06','2025-10-08 19:04:06'), -(13454,4500,'action created','2025-10-08 17:04:06','2025-10-08 19:04:06'), -(13455,4499,'action complete via WP Cron','2025-10-08 17:04:06','2025-10-08 19:04:06'), -(13456,4500,'action started via WP Cron','2025-10-08 18:04:06','2025-10-08 20:04:06'), -(13457,4501,'action created','2025-10-08 18:04:06','2025-10-08 20:04:06'), -(13458,4500,'action complete via WP Cron','2025-10-08 18:04:06','2025-10-08 20:04:06'), -(13459,4464,'action started via WP Cron','2025-10-08 18:39:06','2025-10-08 20:39:06'), -(13460,4464,'action complete via WP Cron','2025-10-08 18:39:06','2025-10-08 20:39:06'), -(13461,4502,'action created','2025-10-08 18:39:06','2025-10-08 20:39:06'), -(13462,4465,'action started via WP Cron','2025-10-08 18:40:06','2025-10-08 20:40:06'), -(13463,4465,'action complete via WP Cron','2025-10-08 18:40:06','2025-10-08 20:40:06'), -(13464,4503,'action created','2025-10-08 18:40:06','2025-10-08 20:40:06'), -(13465,4501,'action started via WP Cron','2025-10-08 19:04:06','2025-10-08 21:04:06'), -(13466,4504,'action created','2025-10-08 19:04:06','2025-10-08 21:04:06'), -(13467,4501,'action complete via WP Cron','2025-10-08 19:04:06','2025-10-08 21:04:06'), -(13468,4483,'action started via WP Cron','2025-10-08 19:15:06','2025-10-08 21:15:06'), -(13469,4483,'action complete via WP Cron','2025-10-08 19:15:06','2025-10-08 21:15:06'), -(13470,4505,'action created','2025-10-08 19:15:06','2025-10-08 21:15:06'), -(13471,4504,'action started via WP Cron','2025-10-08 20:04:06','2025-10-08 22:04:06'), -(13472,4506,'action created','2025-10-08 20:04:06','2025-10-08 22:04:06'), -(13473,4504,'action complete via WP Cron','2025-10-08 20:04:06','2025-10-08 22:04:06'), -(13474,4507,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13475,4508,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13476,4509,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13477,4510,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13478,4511,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13479,4512,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13480,4513,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13481,4514,'action created','2025-10-08 20:11:06','2025-10-08 22:11:06'), -(13482,4507,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13483,4507,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13484,4508,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13485,4508,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13486,4509,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13487,4509,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13488,4510,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13489,4510,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13490,4511,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13491,4511,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13492,4512,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13493,4512,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13494,4513,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13495,4513,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13496,4514,'action started via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13497,4514,'action complete via WP Cron','2025-10-08 20:12:06','2025-10-08 22:12:06'), -(13498,4506,'action started via WP Cron','2025-10-08 21:04:06','2025-10-08 23:04:06'), -(13499,4515,'action created','2025-10-08 21:04:06','2025-10-08 23:04:06'), -(13500,4506,'action complete via WP Cron','2025-10-08 21:04:06','2025-10-08 23:04:06'), -(13501,4470,'action started via WP Cron','2025-10-08 22:03:06','2025-10-09 00:03:06'), -(13502,4470,'action complete via WP Cron','2025-10-08 22:03:06','2025-10-09 00:03:06'), -(13503,4516,'action created','2025-10-08 22:03:06','2025-10-09 00:03:06'), -(13504,4515,'action started via WP Cron','2025-10-08 22:04:06','2025-10-09 00:04:06'), -(13505,4517,'action created','2025-10-08 22:04:06','2025-10-09 00:04:06'), -(13506,4515,'action complete via WP Cron','2025-10-08 22:04:06','2025-10-09 00:04:06'), -(13507,4517,'action started via WP Cron','2025-10-08 23:04:06','2025-10-09 01:04:06'), -(13508,4518,'action created','2025-10-08 23:04:06','2025-10-09 01:04:06'), -(13509,4517,'action complete via WP Cron','2025-10-08 23:04:06','2025-10-09 01:04:06'), -(13510,4518,'action started via WP Cron','2025-10-09 00:04:06','2025-10-09 02:04:06'), -(13511,4519,'action created','2025-10-09 00:04:06','2025-10-09 02:04:06'), -(13512,4518,'action complete via WP Cron','2025-10-09 00:04:06','2025-10-09 02:04:06'), -(13513,4519,'action started via WP Cron','2025-10-09 01:04:06','2025-10-09 03:04:06'), -(13514,4520,'action created','2025-10-09 01:04:06','2025-10-09 03:04:06'), -(13515,4519,'action complete via WP Cron','2025-10-09 01:04:06','2025-10-09 03:04:06'), -(13516,4496,'action started via WP Cron','2025-10-09 01:18:06','2025-10-09 03:18:06'), -(13517,4496,'action complete via WP Cron','2025-10-09 01:18:06','2025-10-09 03:18:06'), -(13518,4521,'action created','2025-10-09 01:18:06','2025-10-09 03:18:06'), -(13519,4520,'action started via WP Cron','2025-10-09 02:04:06','2025-10-09 04:04:06'), -(13520,4522,'action created','2025-10-09 02:04:06','2025-10-09 04:04:06'), -(13521,4520,'action complete via WP Cron','2025-10-09 02:04:06','2025-10-09 04:04:06'), -(13522,4522,'action started via WP Cron','2025-10-09 03:04:06','2025-10-09 05:04:06'), -(13523,4523,'action created','2025-10-09 03:04:06','2025-10-09 05:04:06'), -(13524,4522,'action complete via WP Cron','2025-10-09 03:04:06','2025-10-09 05:04:06'), -(13525,4523,'action started via WP Cron','2025-10-09 04:04:06','2025-10-09 06:04:06'), -(13526,4524,'action created','2025-10-09 04:04:06','2025-10-09 06:04:06'), -(13527,4523,'action complete via WP Cron','2025-10-09 04:04:06','2025-10-09 06:04:06'), -(13528,4524,'action started via WP Cron','2025-10-09 05:04:06','2025-10-09 07:04:06'), -(13529,4525,'action created','2025-10-09 05:04:06','2025-10-09 07:04:06'), -(13530,4524,'action complete via WP Cron','2025-10-09 05:04:06','2025-10-09 07:04:06'), -(13531,4525,'action started via WP Cron','2025-10-09 06:04:06','2025-10-09 08:04:06'), -(13532,4526,'action created','2025-10-09 06:04:06','2025-10-09 08:04:06'), -(13533,4525,'action complete via WP Cron','2025-10-09 06:04:06','2025-10-09 08:04:06'), -(13534,4526,'action started via WP Cron','2025-10-09 07:04:06','2025-10-09 09:04:06'), -(13535,4527,'action created','2025-10-09 07:04:06','2025-10-09 09:04:06'), -(13536,4526,'action complete via WP Cron','2025-10-09 07:04:06','2025-10-09 09:04:06'), -(13537,4505,'action started via WP Cron','2025-10-09 07:15:06','2025-10-09 09:15:06'), -(13538,4505,'action complete via WP Cron','2025-10-09 07:15:06','2025-10-09 09:15:06'), -(13539,4528,'action created','2025-10-09 07:15:06','2025-10-09 09:15:06'), -(13540,4484,'action started via WP Cron','2025-10-09 07:16:06','2025-10-09 09:16:06'), -(13541,4484,'action complete via WP Cron','2025-10-09 07:16:07','2025-10-09 09:16:07'), -(13542,4529,'action created','2025-10-09 07:16:07','2025-10-09 09:16:07'), -(13543,4485,'action started via WP Cron','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13544,4485,'action complete via WP Cron','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13545,4530,'action created','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13546,4487,'action started via WP Cron','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13547,4531,'action created','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13548,4487,'action complete via WP Cron','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13549,4532,'action created','2025-10-09 07:19:06','2025-10-09 09:19:06'), -(13550,4531,'action started via WP Cron','2025-10-09 07:20:06','2025-10-09 09:20:06'), -(13551,4531,'action complete via WP Cron','2025-10-09 07:20:06','2025-10-09 09:20:06'), -(13552,4527,'action started via WP Cron','2025-10-09 08:04:06','2025-10-09 10:04:06'), -(13553,4533,'action created','2025-10-09 08:04:06','2025-10-09 10:04:06'), -(13554,4527,'action complete via WP Cron','2025-10-09 08:04:06','2025-10-09 10:04:06'), -(13555,4533,'action started via WP Cron','2025-10-09 09:04:06','2025-10-09 11:04:06'), -(13556,4534,'action created','2025-10-09 09:04:06','2025-10-09 11:04:06'), -(13557,4533,'action complete via WP Cron','2025-10-09 09:04:06','2025-10-09 11:04:06'), -(13558,4534,'action started via WP Cron','2025-10-09 10:04:06','2025-10-09 12:04:06'), -(13559,4535,'action created','2025-10-09 10:04:06','2025-10-09 12:04:06'), -(13560,4534,'action complete via WP Cron','2025-10-09 10:04:06','2025-10-09 12:04:06'), -(13561,4491,'action started via WP Cron','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13562,4491,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13563,4536,'action created','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13564,4492,'action started via WP Cron','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13565,4492,'action complete via WP Cron','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13566,4537,'action created','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13567,4535,'action started via WP Cron','2025-10-09 11:04:06','2025-10-09 13:04:06'), -(13568,4538,'action created','2025-10-09 11:04:06','2025-10-09 13:04:06'), -(13569,4535,'action complete via WP Cron','2025-10-09 11:04:06','2025-10-09 13:04:06'), -(13570,4538,'action started via WP Cron','2025-10-09 12:04:06','2025-10-09 14:04:06'), -(13571,4539,'action created','2025-10-09 12:04:06','2025-10-09 14:04:06'), -(13572,4538,'action complete via WP Cron','2025-10-09 12:04:06','2025-10-09 14:04:06'), -(13573,4539,'action started via WP Cron','2025-10-09 13:04:06','2025-10-09 15:04:06'), -(13574,4540,'action created','2025-10-09 13:04:06','2025-10-09 15:04:06'), -(13575,4539,'action complete via WP Cron','2025-10-09 13:04:06','2025-10-09 15:04:06'), -(13576,4521,'action started via WP Cron','2025-10-09 13:18:06','2025-10-09 15:18:06'), -(13577,4521,'action complete via WP Cron','2025-10-09 13:18:06','2025-10-09 15:18:06'), -(13578,4541,'action created','2025-10-09 13:18:06','2025-10-09 15:18:06'), -(13579,4540,'action started via WP Cron','2025-10-09 14:04:06','2025-10-09 16:04:06'), -(13580,4542,'action created','2025-10-09 14:04:06','2025-10-09 16:04:06'), -(13581,4540,'action complete via WP Cron','2025-10-09 14:04:06','2025-10-09 16:04:06'), -(13582,4542,'action started via WP Cron','2025-10-09 15:04:06','2025-10-09 17:04:06'), -(13583,4543,'action created','2025-10-09 15:04:06','2025-10-09 17:04:06'), -(13584,4542,'action complete via WP Cron','2025-10-09 15:04:06','2025-10-09 17:04:06'), -(13585,4543,'action started via WP Cron','2025-10-09 16:04:06','2025-10-09 18:04:06'), -(13586,4544,'action created','2025-10-09 16:04:06','2025-10-09 18:04:06'), -(13587,4543,'action complete via WP Cron','2025-10-09 16:04:06','2025-10-09 18:04:06'), -(13588,4544,'action started via WP Cron','2025-10-09 17:04:06','2025-10-09 19:04:06'), -(13589,4545,'action created','2025-10-09 17:04:06','2025-10-09 19:04:06'), -(13590,4544,'action complete via WP Cron','2025-10-09 17:04:06','2025-10-09 19:04:06'), -(13591,4545,'action started via WP Cron','2025-10-09 18:04:06','2025-10-09 20:04:06'), -(13592,4546,'action created','2025-10-09 18:04:06','2025-10-09 20:04:06'), -(13593,4545,'action complete via WP Cron','2025-10-09 18:04:06','2025-10-09 20:04:06'), -(13594,4502,'action started via WP Cron','2025-10-09 18:39:06','2025-10-09 20:39:06'), -(13595,4502,'action complete via WP Cron','2025-10-09 18:39:06','2025-10-09 20:39:06'), -(13596,4547,'action created','2025-10-09 18:39:06','2025-10-09 20:39:06'), -(13597,4503,'action started via WP Cron','2025-10-09 18:40:06','2025-10-09 20:40:06'), -(13598,4503,'action complete via WP Cron','2025-10-09 18:40:06','2025-10-09 20:40:06'), -(13599,4548,'action created','2025-10-09 18:40:06','2025-10-09 20:40:06'), -(13600,4546,'action started via WP Cron','2025-10-09 19:04:06','2025-10-09 21:04:06'), -(13601,4549,'action created','2025-10-09 19:04:06','2025-10-09 21:04:06'), -(13602,4546,'action complete via WP Cron','2025-10-09 19:04:06','2025-10-09 21:04:06'), -(13603,4528,'action started via WP Cron','2025-10-09 19:15:06','2025-10-09 21:15:06'), -(13604,4528,'action complete via WP Cron','2025-10-09 19:15:06','2025-10-09 21:15:06'), -(13605,4550,'action created','2025-10-09 19:15:06','2025-10-09 21:15:06'), -(13606,4549,'action started via WP Cron','2025-10-09 20:04:06','2025-10-09 22:04:06'), -(13607,4551,'action created','2025-10-09 20:04:06','2025-10-09 22:04:06'), -(13608,4549,'action complete via WP Cron','2025-10-09 20:04:06','2025-10-09 22:04:06'), -(13609,4551,'action started via WP Cron','2025-10-09 21:04:06','2025-10-09 23:04:06'), -(13610,4552,'action created','2025-10-09 21:04:06','2025-10-09 23:04:06'), -(13611,4551,'action complete via WP Cron','2025-10-09 21:04:06','2025-10-09 23:04:06'), -(13612,4516,'action started via WP Cron','2025-10-09 22:03:06','2025-10-10 00:03:06'), -(13613,4516,'action complete via WP Cron','2025-10-09 22:03:06','2025-10-10 00:03:06'), -(13614,4553,'action created','2025-10-09 22:03:06','2025-10-10 00:03:06'), -(13615,4552,'action started via WP Cron','2025-10-09 22:04:06','2025-10-10 00:04:06'), -(13616,4554,'action created','2025-10-09 22:04:06','2025-10-10 00:04:06'), -(13617,4552,'action complete via WP Cron','2025-10-09 22:04:06','2025-10-10 00:04:06'), -(13618,4554,'action started via WP Cron','2025-10-09 23:04:06','2025-10-10 01:04:06'), -(13619,4555,'action created','2025-10-09 23:04:06','2025-10-10 01:04:06'), -(13620,4554,'action complete via WP Cron','2025-10-09 23:04:07','2025-10-10 01:04:07'), -(13621,4555,'action started via WP Cron','2025-10-10 00:04:06','2025-10-10 02:04:06'), -(13622,4556,'action created','2025-10-10 00:04:06','2025-10-10 02:04:06'), -(13623,4555,'action complete via WP Cron','2025-10-10 00:04:07','2025-10-10 02:04:07'), -(13624,4556,'action started via WP Cron','2025-10-10 01:04:07','2025-10-10 03:04:07'), -(13625,4557,'action created','2025-10-10 01:04:07','2025-10-10 03:04:07'), -(13626,4556,'action complete via WP Cron','2025-10-10 01:04:07','2025-10-10 03:04:07'), -(13627,4541,'action started via WP Cron','2025-10-10 01:18:07','2025-10-10 03:18:07'), -(13628,4541,'action complete via WP Cron','2025-10-10 01:18:07','2025-10-10 03:18:07'), -(13629,4558,'action created','2025-10-10 01:18:07','2025-10-10 03:18:07'), -(13630,4557,'action started via WP Cron','2025-10-10 02:04:07','2025-10-10 04:04:07'), -(13631,4559,'action created','2025-10-10 02:04:07','2025-10-10 04:04:07'), -(13632,4557,'action complete via WP Cron','2025-10-10 02:04:07','2025-10-10 04:04:07'), -(13633,4559,'action started via WP Cron','2025-10-10 03:04:07','2025-10-10 05:04:07'), -(13634,4560,'action created','2025-10-10 03:04:07','2025-10-10 05:04:07'), -(13635,4559,'action complete via WP Cron','2025-10-10 03:04:07','2025-10-10 05:04:07'), -(13636,4560,'action started via WP Cron','2025-10-10 04:04:07','2025-10-10 06:04:07'), -(13637,4561,'action created','2025-10-10 04:04:07','2025-10-10 06:04:07'), -(13638,4560,'action complete via WP Cron','2025-10-10 04:04:07','2025-10-10 06:04:07'), -(13639,4561,'action started via WP Cron','2025-10-10 05:04:07','2025-10-10 07:04:07'), -(13640,4562,'action created','2025-10-10 05:04:07','2025-10-10 07:04:07'), -(13641,4561,'action complete via WP Cron','2025-10-10 05:04:07','2025-10-10 07:04:07'), -(13642,4562,'action started via WP Cron','2025-10-10 06:04:07','2025-10-10 08:04:07'), -(13643,4563,'action created','2025-10-10 06:04:07','2025-10-10 08:04:07'), -(13644,4562,'action complete via WP Cron','2025-10-10 06:04:07','2025-10-10 08:04:07'), -(13645,4563,'action started via WP Cron','2025-10-10 07:04:07','2025-10-10 09:04:07'), -(13646,4564,'action created','2025-10-10 07:04:07','2025-10-10 09:04:07'), -(13647,4563,'action complete via WP Cron','2025-10-10 07:04:07','2025-10-10 09:04:07'), -(13648,4550,'action started via WP Cron','2025-10-10 07:15:07','2025-10-10 09:15:07'), -(13649,4550,'action complete via WP Cron','2025-10-10 07:15:07','2025-10-10 09:15:07'), -(13650,4565,'action created','2025-10-10 07:15:07','2025-10-10 09:15:07'), -(13651,4529,'action started via WP Cron','2025-10-10 07:17:07','2025-10-10 09:17:07'), -(13652,4529,'action complete via WP Cron','2025-10-10 07:17:07','2025-10-10 09:17:07'), -(13653,4566,'action created','2025-10-10 07:17:07','2025-10-10 09:17:07'), -(13654,4530,'action started via WP Cron','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13655,4530,'action complete via WP Cron','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13656,4567,'action created','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13657,4532,'action started via WP Cron','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13658,4568,'action created','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13659,4532,'action complete via WP Cron','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13660,4569,'action created','2025-10-10 07:19:07','2025-10-10 09:19:07'), -(13661,4568,'action started via WP Cron','2025-10-10 07:20:07','2025-10-10 09:20:07'), -(13662,4568,'action complete via WP Cron','2025-10-10 07:20:07','2025-10-10 09:20:07'), -(13663,4564,'action started via WP Cron','2025-10-10 08:04:07','2025-10-10 10:04:07'), -(13664,4570,'action created','2025-10-10 08:04:07','2025-10-10 10:04:07'), -(13665,4564,'action complete via WP Cron','2025-10-10 08:04:07','2025-10-10 10:04:07'), -(13666,4570,'action started via WP Cron','2025-10-10 09:04:07','2025-10-10 11:04:07'), -(13667,4571,'action created','2025-10-10 09:04:07','2025-10-10 11:04:07'), -(13668,4570,'action complete via WP Cron','2025-10-10 09:04:07','2025-10-10 11:04:07'), -(13669,4571,'action started via WP Cron','2025-10-10 10:04:49','2025-10-10 12:04:49'), -(13670,4572,'action created','2025-10-10 10:04:49','2025-10-10 12:04:49'), -(13671,4571,'action complete via WP Cron','2025-10-10 10:04:49','2025-10-10 12:04:49'), -(13672,4536,'action started via WP Cron','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13673,4536,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13674,4573,'action created','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13675,4537,'action started via WP Cron','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13676,4537,'action complete via WP Cron','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13677,4574,'action created','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13678,4572,'action started via WP Cron','2025-10-10 11:05:07','2025-10-10 13:05:07'), -(13679,4575,'action created','2025-10-10 11:05:07','2025-10-10 13:05:07'), -(13680,4572,'action complete via WP Cron','2025-10-10 11:05:07','2025-10-10 13:05:07'), -(13681,4575,'action started via WP Cron','2025-10-10 12:05:07','2025-10-10 14:05:07'), -(13682,4576,'action created','2025-10-10 12:05:07','2025-10-10 14:05:07'), -(13683,4575,'action complete via WP Cron','2025-10-10 12:05:07','2025-10-10 14:05:07'), -(13684,4576,'action started via WP Cron','2025-10-10 13:05:07','2025-10-10 15:05:07'), -(13685,4577,'action created','2025-10-10 13:05:07','2025-10-10 15:05:07'), -(13686,4576,'action complete via WP Cron','2025-10-10 13:05:07','2025-10-10 15:05:07'), -(13687,4558,'action started via WP Cron','2025-10-10 13:18:07','2025-10-10 15:18:07'), -(13688,4558,'action complete via WP Cron','2025-10-10 13:18:07','2025-10-10 15:18:07'), -(13689,4578,'action created','2025-10-10 13:18:07','2025-10-10 15:18:07'), -(13690,4577,'action started via WP Cron','2025-10-10 14:05:07','2025-10-10 16:05:07'), -(13691,4579,'action created','2025-10-10 14:05:07','2025-10-10 16:05:07'), -(13692,4577,'action complete via WP Cron','2025-10-10 14:05:07','2025-10-10 16:05:07'), -(13693,4579,'action started via WP Cron','2025-10-10 15:05:07','2025-10-10 17:05:07'), -(13694,4580,'action created','2025-10-10 15:05:07','2025-10-10 17:05:07'), -(13695,4579,'action complete via WP Cron','2025-10-10 15:05:07','2025-10-10 17:05:07'), -(13696,4581,'action created','2025-10-10 15:55:22','2025-10-10 17:55:22'), -(13697,4581,'action started via WP Cron','2025-10-10 15:55:44','2025-10-10 17:55:44'), -(13698,4581,'action complete via WP Cron','2025-10-10 15:55:44','2025-10-10 17:55:44'), -(13699,4582,'action created','2025-10-10 15:55:44','2025-10-10 17:55:44'), -(13700,4582,'action started via WP Cron','2025-10-10 15:57:07','2025-10-10 17:57:07'), -(13701,4582,'action complete via WP Cron','2025-10-10 15:57:07','2025-10-10 17:57:07'), -(13702,4580,'action started via WP Cron','2025-10-10 16:05:07','2025-10-10 18:05:07'), -(13703,4583,'action created','2025-10-10 16:05:07','2025-10-10 18:05:07'), -(13704,4580,'action complete via WP Cron','2025-10-10 16:05:07','2025-10-10 18:05:07'), -(13705,4583,'action started via WP Cron','2025-10-10 17:05:07','2025-10-10 19:05:07'), -(13706,4584,'action created','2025-10-10 17:05:07','2025-10-10 19:05:07'), -(13707,4583,'action complete via WP Cron','2025-10-10 17:05:07','2025-10-10 19:05:07'), -(13708,4584,'action started via WP Cron','2025-10-10 18:05:07','2025-10-10 20:05:07'), -(13709,4585,'action created','2025-10-10 18:05:07','2025-10-10 20:05:07'), -(13710,4584,'action complete via WP Cron','2025-10-10 18:05:07','2025-10-10 20:05:07'), -(13711,4547,'action started via WP Cron','2025-10-10 18:39:07','2025-10-10 20:39:07'), -(13712,4547,'action complete via WP Cron','2025-10-10 18:39:07','2025-10-10 20:39:07'), -(13713,4586,'action created','2025-10-10 18:39:07','2025-10-10 20:39:07'), -(13714,4548,'action started via WP Cron','2025-10-10 18:40:07','2025-10-10 20:40:07'), -(13715,4548,'action complete via WP Cron','2025-10-10 18:40:07','2025-10-10 20:40:07'), -(13716,4587,'action created','2025-10-10 18:40:07','2025-10-10 20:40:07'), -(13717,4585,'action started via WP Cron','2025-10-10 19:05:07','2025-10-10 21:05:07'), -(13718,4588,'action created','2025-10-10 19:05:07','2025-10-10 21:05:07'), -(13719,4585,'action complete via WP Cron','2025-10-10 19:05:07','2025-10-10 21:05:07'), -(13720,4565,'action started via WP Cron','2025-10-10 19:15:07','2025-10-10 21:15:07'), -(13721,4565,'action complete via WP Cron','2025-10-10 19:15:07','2025-10-10 21:15:07'), -(13722,4589,'action created','2025-10-10 19:15:07','2025-10-10 21:15:07'), -(13723,4588,'action started via WP Cron','2025-10-10 20:05:07','2025-10-10 22:05:07'), -(13724,4590,'action created','2025-10-10 20:05:07','2025-10-10 22:05:07'), -(13725,4588,'action complete via WP Cron','2025-10-10 20:05:07','2025-10-10 22:05:07'), -(13726,4590,'action started via WP Cron','2025-10-10 21:05:07','2025-10-10 23:05:07'), -(13727,4591,'action created','2025-10-10 21:05:07','2025-10-10 23:05:07'), -(13728,4590,'action complete via WP Cron','2025-10-10 21:05:07','2025-10-10 23:05:07'), -(13729,4553,'action started via WP Cron','2025-10-10 22:03:07','2025-10-11 00:03:07'), -(13730,4553,'action complete via WP Cron','2025-10-10 22:03:07','2025-10-11 00:03:07'), -(13731,4592,'action created','2025-10-10 22:03:07','2025-10-11 00:03:07'), -(13732,4591,'action started via WP Cron','2025-10-10 22:05:07','2025-10-11 00:05:07'), -(13733,4593,'action created','2025-10-10 22:05:07','2025-10-11 00:05:07'), -(13734,4591,'action complete via WP Cron','2025-10-10 22:05:07','2025-10-11 00:05:07'), -(13735,4593,'action started via WP Cron','2025-10-10 23:05:07','2025-10-11 01:05:07'), -(13736,4594,'action created','2025-10-10 23:05:07','2025-10-11 01:05:07'), -(13737,4593,'action complete via WP Cron','2025-10-10 23:05:07','2025-10-11 01:05:07'), -(13738,4594,'action started via WP Cron','2025-10-11 00:05:07','2025-10-11 02:05:07'), -(13739,4595,'action created','2025-10-11 00:05:07','2025-10-11 02:05:07'), -(13740,4594,'action complete via WP Cron','2025-10-11 00:05:07','2025-10-11 02:05:07'), -(13741,4595,'action started via WP Cron','2025-10-11 01:05:07','2025-10-11 03:05:07'), -(13742,4596,'action created','2025-10-11 01:05:07','2025-10-11 03:05:07'), -(13743,4595,'action complete via WP Cron','2025-10-11 01:05:07','2025-10-11 03:05:07'), -(13744,4578,'action started via WP Cron','2025-10-11 01:19:07','2025-10-11 03:19:07'), -(13745,4578,'action complete via WP Cron','2025-10-11 01:19:07','2025-10-11 03:19:07'), -(13746,4597,'action created','2025-10-11 01:19:07','2025-10-11 03:19:07'), -(13747,4596,'action started via WP Cron','2025-10-11 02:05:07','2025-10-11 04:05:07'), -(13748,4598,'action created','2025-10-11 02:05:07','2025-10-11 04:05:07'), -(13749,4596,'action complete via WP Cron','2025-10-11 02:05:07','2025-10-11 04:05:07'), -(13750,4598,'action started via WP Cron','2025-10-11 03:05:07','2025-10-11 05:05:07'), -(13751,4599,'action created','2025-10-11 03:05:07','2025-10-11 05:05:07'), -(13752,4598,'action complete via WP Cron','2025-10-11 03:05:07','2025-10-11 05:05:07'), -(13753,4599,'action started via WP Cron','2025-10-11 04:05:07','2025-10-11 06:05:07'), -(13754,4600,'action created','2025-10-11 04:05:07','2025-10-11 06:05:07'), -(13755,4599,'action complete via WP Cron','2025-10-11 04:05:07','2025-10-11 06:05:07'), -(13756,4600,'action started via WP Cron','2025-10-11 05:05:07','2025-10-11 07:05:07'), -(13757,4601,'action created','2025-10-11 05:05:07','2025-10-11 07:05:07'), -(13758,4600,'action complete via WP Cron','2025-10-11 05:05:07','2025-10-11 07:05:07'), -(13759,4601,'action started via WP Cron','2025-10-11 06:05:07','2025-10-11 08:05:07'), -(13760,4602,'action created','2025-10-11 06:05:07','2025-10-11 08:05:07'), -(13761,4601,'action complete via WP Cron','2025-10-11 06:05:07','2025-10-11 08:05:07'), -(13762,4602,'action started via WP Cron','2025-10-11 07:05:07','2025-10-11 09:05:07'), -(13763,4603,'action created','2025-10-11 07:05:07','2025-10-11 09:05:07'), -(13764,4602,'action complete via WP Cron','2025-10-11 07:05:07','2025-10-11 09:05:07'), -(13765,4589,'action started via WP Cron','2025-10-11 07:15:07','2025-10-11 09:15:07'), -(13766,4589,'action complete via WP Cron','2025-10-11 07:15:07','2025-10-11 09:15:07'), -(13767,4604,'action created','2025-10-11 07:15:07','2025-10-11 09:15:07'), -(13768,4566,'action started via WP Cron','2025-10-11 07:17:07','2025-10-11 09:17:07'), -(13769,4566,'action complete via WP Cron','2025-10-11 07:17:07','2025-10-11 09:17:07'), -(13770,4605,'action created','2025-10-11 07:17:07','2025-10-11 09:17:07'), -(13771,4567,'action started via WP Cron','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13772,4567,'action complete via WP Cron','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13773,4606,'action created','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13774,4569,'action started via WP Cron','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13775,4607,'action created','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13776,4569,'action complete via WP Cron','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13777,4608,'action created','2025-10-11 07:19:07','2025-10-11 09:19:07'), -(13778,4607,'action started via WP Cron','2025-10-11 07:20:07','2025-10-11 09:20:07'), -(13779,4607,'action complete via WP Cron','2025-10-11 07:20:07','2025-10-11 09:20:07'), -(13780,4603,'action started via WP Cron','2025-10-11 08:05:07','2025-10-11 10:05:07'), -(13781,4609,'action created','2025-10-11 08:05:07','2025-10-11 10:05:07'), -(13782,4603,'action complete via WP Cron','2025-10-11 08:05:07','2025-10-11 10:05:07'), -(13783,4609,'action started via WP Cron','2025-10-11 09:05:07','2025-10-11 11:05:07'), -(13784,4610,'action created','2025-10-11 09:05:07','2025-10-11 11:05:07'), -(13785,4609,'action complete via WP Cron','2025-10-11 09:05:07','2025-10-11 11:05:07'), -(13786,4610,'action started via WP Cron','2025-10-11 10:05:07','2025-10-11 12:05:07'), -(13787,4611,'action created','2025-10-11 10:05:07','2025-10-11 12:05:07'), -(13788,4610,'action complete via WP Cron','2025-10-11 10:05:07','2025-10-11 12:05:07'), -(13789,4573,'action started via WP Cron','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13790,4573,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13791,4612,'action created','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13792,4574,'action started via WP Cron','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13793,4574,'action complete via WP Cron','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13794,4613,'action created','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13795,4611,'action started via WP Cron','2025-10-11 11:05:07','2025-10-11 13:05:07'), -(13796,4614,'action created','2025-10-11 11:05:07','2025-10-11 13:05:07'), -(13797,4611,'action complete via WP Cron','2025-10-11 11:05:07','2025-10-11 13:05:07'), -(13798,4614,'action started via WP Cron','2025-10-11 12:05:07','2025-10-11 14:05:07'), -(13799,4615,'action created','2025-10-11 12:05:07','2025-10-11 14:05:07'), -(13800,4614,'action complete via WP Cron','2025-10-11 12:05:07','2025-10-11 14:05:07'), -(13801,4615,'action started via WP Cron','2025-10-11 13:05:07','2025-10-11 15:05:07'), -(13802,4616,'action created','2025-10-11 13:05:07','2025-10-11 15:05:07'), -(13803,4615,'action complete via WP Cron','2025-10-11 13:05:07','2025-10-11 15:05:07'), -(13804,4597,'action started via WP Cron','2025-10-11 13:19:07','2025-10-11 15:19:07'), -(13805,4597,'action complete via WP Cron','2025-10-11 13:19:07','2025-10-11 15:19:07'), -(13806,4617,'action created','2025-10-11 13:19:07','2025-10-11 15:19:07'), -(13807,4616,'action started via WP Cron','2025-10-11 14:05:07','2025-10-11 16:05:07'), -(13808,4618,'action created','2025-10-11 14:05:07','2025-10-11 16:05:07'), -(13809,4616,'action complete via WP Cron','2025-10-11 14:05:07','2025-10-11 16:05:07'), -(13810,4618,'action started via WP Cron','2025-10-11 15:05:07','2025-10-11 17:05:07'), -(13811,4619,'action created','2025-10-11 15:05:07','2025-10-11 17:05:07'), -(13812,4618,'action complete via WP Cron','2025-10-11 15:05:07','2025-10-11 17:05:07'), -(13813,4620,'action created','2025-10-11 15:06:39','2025-10-11 17:06:39'), -(13814,4620,'action started via WP Cron','2025-10-11 15:08:07','2025-10-11 17:08:07'), -(13815,4620,'action complete via WP Cron','2025-10-11 15:08:07','2025-10-11 17:08:07'), -(13816,4619,'action started via WP Cron','2025-10-11 16:05:07','2025-10-11 18:05:07'), -(13817,4621,'action created','2025-10-11 16:05:07','2025-10-11 18:05:07'), -(13818,4619,'action complete via WP Cron','2025-10-11 16:05:07','2025-10-11 18:05:07'), -(13819,4621,'action started via WP Cron','2025-10-11 17:05:07','2025-10-11 19:05:07'), -(13820,4622,'action created','2025-10-11 17:05:07','2025-10-11 19:05:07'), -(13821,4621,'action complete via WP Cron','2025-10-11 17:05:07','2025-10-11 19:05:07'), -(13822,4622,'action started via WP Cron','2025-10-11 18:06:07','2025-10-11 20:06:07'), -(13823,4623,'action created','2025-10-11 18:06:07','2025-10-11 20:06:07'), -(13824,4622,'action complete via WP Cron','2025-10-11 18:06:07','2025-10-11 20:06:07'), -(13825,4586,'action started via WP Cron','2025-10-11 18:39:07','2025-10-11 20:39:07'), -(13826,4586,'action complete via WP Cron','2025-10-11 18:39:07','2025-10-11 20:39:07'), -(13827,4624,'action created','2025-10-11 18:39:07','2025-10-11 20:39:07'), -(13828,4587,'action started via WP Cron','2025-10-11 18:40:07','2025-10-11 20:40:07'), -(13829,4587,'action complete via WP Cron','2025-10-11 18:40:07','2025-10-11 20:40:07'), -(13830,4625,'action created','2025-10-11 18:40:07','2025-10-11 20:40:07'), -(13831,4623,'action started via WP Cron','2025-10-11 19:06:07','2025-10-11 21:06:07'), -(13832,4626,'action created','2025-10-11 19:06:07','2025-10-11 21:06:07'), -(13833,4623,'action complete via WP Cron','2025-10-11 19:06:07','2025-10-11 21:06:07'), -(13834,4604,'action started via WP Cron','2025-10-11 19:15:07','2025-10-11 21:15:07'), -(13835,4604,'action complete via WP Cron','2025-10-11 19:15:07','2025-10-11 21:15:07'), -(13836,4627,'action created','2025-10-11 19:15:07','2025-10-11 21:15:07'), -(13837,4626,'action started via WP Cron','2025-10-11 20:06:07','2025-10-11 22:06:07'), -(13838,4628,'action created','2025-10-11 20:06:07','2025-10-11 22:06:07'), -(13839,4626,'action complete via WP Cron','2025-10-11 20:06:07','2025-10-11 22:06:07'), -(13840,4628,'action started via WP Cron','2025-10-11 21:06:07','2025-10-11 23:06:07'), -(13841,4629,'action created','2025-10-11 21:06:07','2025-10-11 23:06:07'), -(13842,4628,'action complete via WP Cron','2025-10-11 21:06:07','2025-10-11 23:06:07'), -(13843,4592,'action started via WP Cron','2025-10-11 22:03:07','2025-10-12 00:03:07'), -(13844,4592,'action complete via WP Cron','2025-10-11 22:03:07','2025-10-12 00:03:07'), -(13845,4630,'action created','2025-10-11 22:03:07','2025-10-12 00:03:07'), -(13846,4629,'action started via WP Cron','2025-10-11 22:06:07','2025-10-12 00:06:07'), -(13847,4631,'action created','2025-10-11 22:06:07','2025-10-12 00:06:07'), -(13848,4629,'action complete via WP Cron','2025-10-11 22:06:07','2025-10-12 00:06:07'), -(13849,4631,'action started via WP Cron','2025-10-11 23:06:07','2025-10-12 01:06:07'), -(13850,4632,'action created','2025-10-11 23:06:07','2025-10-12 01:06:07'), -(13851,4631,'action complete via WP Cron','2025-10-11 23:06:07','2025-10-12 01:06:07'), -(13852,4632,'action started via WP Cron','2025-10-12 00:06:07','2025-10-12 02:06:07'), -(13853,4633,'action created','2025-10-12 00:06:07','2025-10-12 02:06:07'), -(13854,4632,'action complete via WP Cron','2025-10-12 00:06:07','2025-10-12 02:06:07'), -(13855,4633,'action started via WP Cron','2025-10-12 01:06:07','2025-10-12 03:06:07'), -(13856,4634,'action created','2025-10-12 01:06:07','2025-10-12 03:06:07'), -(13857,4633,'action complete via WP Cron','2025-10-12 01:06:07','2025-10-12 03:06:07'), -(13858,4617,'action started via WP Cron','2025-10-12 01:19:07','2025-10-12 03:19:07'), -(13859,4617,'action complete via WP Cron','2025-10-12 01:19:07','2025-10-12 03:19:07'), -(13860,4635,'action created','2025-10-12 01:19:07','2025-10-12 03:19:07'), -(13861,4634,'action started via WP Cron','2025-10-12 02:06:07','2025-10-12 04:06:07'), -(13862,4636,'action created','2025-10-12 02:06:07','2025-10-12 04:06:07'), -(13863,4634,'action complete via WP Cron','2025-10-12 02:06:07','2025-10-12 04:06:07'), -(13864,4636,'action started via WP Cron','2025-10-12 03:06:07','2025-10-12 05:06:07'), -(13865,4637,'action created','2025-10-12 03:06:07','2025-10-12 05:06:07'), -(13866,4636,'action complete via WP Cron','2025-10-12 03:06:07','2025-10-12 05:06:07'), -(13867,4637,'action started via WP Cron','2025-10-12 04:06:07','2025-10-12 06:06:07'), -(13868,4638,'action created','2025-10-12 04:06:07','2025-10-12 06:06:07'), -(13869,4637,'action complete via WP Cron','2025-10-12 04:06:07','2025-10-12 06:06:07'), -(13870,4638,'action started via WP Cron','2025-10-12 05:06:07','2025-10-12 07:06:07'), -(13871,4639,'action created','2025-10-12 05:06:07','2025-10-12 07:06:07'), -(13872,4638,'action complete via WP Cron','2025-10-12 05:06:07','2025-10-12 07:06:07'), -(13873,4639,'action started via WP Cron','2025-10-12 06:06:07','2025-10-12 08:06:07'), -(13874,4640,'action created','2025-10-12 06:06:07','2025-10-12 08:06:07'), -(13875,4639,'action complete via WP Cron','2025-10-12 06:06:07','2025-10-12 08:06:07'), -(13876,4640,'action started via WP Cron','2025-10-12 07:07:07','2025-10-12 09:07:07'), -(13877,4641,'action created','2025-10-12 07:07:07','2025-10-12 09:07:07'), -(13878,4640,'action complete via WP Cron','2025-10-12 07:07:07','2025-10-12 09:07:07'), -(13879,4627,'action started via WP Cron','2025-10-12 07:15:07','2025-10-12 09:15:07'), -(13880,4627,'action complete via WP Cron','2025-10-12 07:15:07','2025-10-12 09:15:07'), -(13881,4642,'action created','2025-10-12 07:15:07','2025-10-12 09:15:07'), -(13882,4605,'action started via WP Cron','2025-10-12 07:17:07','2025-10-12 09:17:07'), -(13883,4605,'action complete via WP Cron','2025-10-12 07:17:08','2025-10-12 09:17:08'), -(13884,4643,'action created','2025-10-12 07:17:08','2025-10-12 09:17:08'), -(13885,4606,'action started via WP Cron','2025-10-12 07:19:07','2025-10-12 09:19:07'), -(13886,4606,'action complete via WP Cron','2025-10-12 07:19:08','2025-10-12 09:19:08'), -(13887,4644,'action created','2025-10-12 07:19:08','2025-10-12 09:19:08'), -(13888,4608,'action started via WP Cron','2025-10-12 07:19:08','2025-10-12 09:19:08'), -(13889,4645,'action created','2025-10-12 07:19:08','2025-10-12 09:19:08'), -(13890,4608,'action complete via WP Cron','2025-10-12 07:19:08','2025-10-12 09:19:08'), -(13891,4646,'action created','2025-10-12 07:19:08','2025-10-12 09:19:08'), -(13892,4645,'action started via WP Cron','2025-10-12 07:20:07','2025-10-12 09:20:07'), -(13893,4645,'action complete via WP Cron','2025-10-12 07:20:07','2025-10-12 09:20:07'), -(13894,4641,'action started via WP Cron','2025-10-12 08:07:07','2025-10-12 10:07:07'), -(13895,4647,'action created','2025-10-12 08:07:07','2025-10-12 10:07:07'), -(13896,4641,'action complete via WP Cron','2025-10-12 08:07:07','2025-10-12 10:07:07'), -(13897,4647,'action started via WP Cron','2025-10-12 09:07:07','2025-10-12 11:07:07'), -(13898,4648,'action created','2025-10-12 09:07:07','2025-10-12 11:07:07'), -(13899,4647,'action complete via WP Cron','2025-10-12 09:07:07','2025-10-12 11:07:07'), -(13900,4648,'action started via WP Cron','2025-10-12 10:07:07','2025-10-12 12:07:07'), -(13901,4649,'action created','2025-10-12 10:07:07','2025-10-12 12:07:07'), -(13902,4648,'action complete via WP Cron','2025-10-12 10:07:07','2025-10-12 12:07:07'), -(13903,4612,'action started via WP Cron','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13904,4612,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13905,4650,'action created','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13906,4613,'action started via WP Cron','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13907,4613,'action complete via WP Cron','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13908,4651,'action created','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13909,4649,'action started via WP Cron','2025-10-12 11:07:07','2025-10-12 13:07:07'), -(13910,4652,'action created','2025-10-12 11:07:07','2025-10-12 13:07:07'), -(13911,4649,'action complete via WP Cron','2025-10-12 11:07:07','2025-10-12 13:07:07'), -(13912,4652,'action started via WP Cron','2025-10-12 12:07:07','2025-10-12 14:07:07'), -(13913,4653,'action created','2025-10-12 12:07:07','2025-10-12 14:07:07'), -(13914,4652,'action complete via WP Cron','2025-10-12 12:07:07','2025-10-12 14:07:07'), -(13915,4653,'action started via WP Cron','2025-10-12 13:07:07','2025-10-12 15:07:07'), -(13916,4654,'action created','2025-10-12 13:07:07','2025-10-12 15:07:07'), -(13917,4653,'action complete via WP Cron','2025-10-12 13:07:07','2025-10-12 15:07:07'), -(13918,4635,'action started via WP Cron','2025-10-12 13:19:07','2025-10-12 15:19:07'), -(13919,4635,'action complete via WP Cron','2025-10-12 13:19:07','2025-10-12 15:19:07'), -(13920,4655,'action created','2025-10-12 13:19:07','2025-10-12 15:19:07'), -(13921,4654,'action started via WP Cron','2025-10-12 14:07:07','2025-10-12 16:07:07'), -(13922,4656,'action created','2025-10-12 14:07:07','2025-10-12 16:07:07'), -(13923,4654,'action complete via WP Cron','2025-10-12 14:07:07','2025-10-12 16:07:07'), -(13924,4657,'action created','2025-10-12 14:50:06','2025-10-12 16:50:06'), -(13925,4657,'action started via WP Cron','2025-10-12 14:50:28','2025-10-12 16:50:28'), -(13926,4657,'action complete via WP Cron','2025-10-12 14:50:28','2025-10-12 16:50:28'), -(13927,4658,'action created','2025-10-12 14:50:29','2025-10-12 16:50:29'), -(13928,4658,'action started via WP Cron','2025-10-12 14:52:07','2025-10-12 16:52:07'), -(13929,4658,'action complete via WP Cron','2025-10-12 14:52:07','2025-10-12 16:52:07'), -(13930,4656,'action started via WP Cron','2025-10-12 15:07:08','2025-10-12 17:07:08'), -(13931,4659,'action created','2025-10-12 15:07:08','2025-10-12 17:07:08'), -(13932,4656,'action complete via WP Cron','2025-10-12 15:07:08','2025-10-12 17:07:08'), -(13933,4659,'action started via WP Cron','2025-10-12 16:08:07','2025-10-12 18:08:07'), -(13934,4660,'action created','2025-10-12 16:08:07','2025-10-12 18:08:07'), -(13935,4659,'action complete via WP Cron','2025-10-12 16:08:07','2025-10-12 18:08:07'), -(13936,4660,'action started via WP Cron','2025-10-12 17:08:08','2025-10-12 19:08:08'), -(13937,4661,'action created','2025-10-12 17:08:08','2025-10-12 19:08:08'), -(13938,4660,'action complete via WP Cron','2025-10-12 17:08:08','2025-10-12 19:08:08'), -(13939,4661,'action started via WP Cron','2025-10-12 18:08:08','2025-10-12 20:08:08'), -(13940,4662,'action created','2025-10-12 18:08:08','2025-10-12 20:08:08'), -(13941,4661,'action complete via WP Cron','2025-10-12 18:08:08','2025-10-12 20:08:08'), -(13942,4624,'action started via WP Cron','2025-10-12 18:39:08','2025-10-12 20:39:08'), -(13943,4624,'action complete via WP Cron','2025-10-12 18:39:08','2025-10-12 20:39:08'), -(13944,4663,'action created','2025-10-12 18:39:08','2025-10-12 20:39:08'), -(13945,4625,'action started via WP Cron','2025-10-12 18:40:08','2025-10-12 20:40:08'), -(13946,4625,'action complete via WP Cron','2025-10-12 18:40:08','2025-10-12 20:40:08'), -(13947,4664,'action created','2025-10-12 18:40:08','2025-10-12 20:40:08'), -(13948,4662,'action started via WP Cron','2025-10-12 19:08:08','2025-10-12 21:08:08'), -(13949,4665,'action created','2025-10-12 19:08:08','2025-10-12 21:08:08'), -(13950,4662,'action complete via WP Cron','2025-10-12 19:08:08','2025-10-12 21:08:08'), -(13951,4642,'action started via WP Cron','2025-10-12 19:15:08','2025-10-12 21:15:08'), -(13952,4642,'action complete via WP Cron','2025-10-12 19:15:08','2025-10-12 21:15:08'), -(13953,4666,'action created','2025-10-12 19:15:08','2025-10-12 21:15:08'), -(13954,4665,'action started via WP Cron','2025-10-12 20:08:08','2025-10-12 22:08:08'), -(13955,4667,'action created','2025-10-12 20:08:08','2025-10-12 22:08:08'), -(13956,4665,'action complete via WP Cron','2025-10-12 20:08:08','2025-10-12 22:08:08'), -(13957,4668,'action created','2025-10-12 21:03:18','2025-10-12 23:03:18'), -(13958,4668,'action started via WP Cron','2025-10-12 21:04:08','2025-10-12 23:04:08'), -(13959,4668,'action complete via WP Cron','2025-10-12 21:04:08','2025-10-12 23:04:08'), -(13960,4669,'action created','2025-10-12 21:04:26','2025-10-12 23:04:26'), -(13961,4669,'action started via WP Cron','2025-10-12 21:05:08','2025-10-12 23:05:08'), -(13962,4669,'action complete via WP Cron','2025-10-12 21:05:08','2025-10-12 23:05:08'), -(13963,4667,'action started via WP Cron','2025-10-12 21:08:08','2025-10-12 23:08:08'), -(13964,4670,'action created','2025-10-12 21:08:08','2025-10-12 23:08:08'), -(13965,4667,'action complete via WP Cron','2025-10-12 21:08:08','2025-10-12 23:08:08'), -(13966,4630,'action started via WP Cron','2025-10-12 22:03:08','2025-10-13 00:03:08'), -(13967,4630,'action complete via WP Cron','2025-10-12 22:03:08','2025-10-13 00:03:08'), -(13968,4671,'action created','2025-10-12 22:03:08','2025-10-13 00:03:08'), -(13969,4670,'action started via WP Cron','2025-10-12 22:08:08','2025-10-13 00:08:08'), -(13970,4672,'action created','2025-10-12 22:08:08','2025-10-13 00:08:08'), -(13971,4670,'action complete via WP Cron','2025-10-12 22:08:08','2025-10-13 00:08:08'), -(13972,4672,'action started via WP Cron','2025-10-12 23:08:08','2025-10-13 01:08:08'), -(13973,4673,'action created','2025-10-12 23:08:08','2025-10-13 01:08:08'), -(13974,4672,'action complete via WP Cron','2025-10-12 23:08:08','2025-10-13 01:08:08'), -(13975,4673,'action started via WP Cron','2025-10-13 00:08:30','2025-10-13 02:08:30'), -(13976,4674,'action created','2025-10-13 00:08:30','2025-10-13 02:08:30'), -(13977,4673,'action complete via WP Cron','2025-10-13 00:08:30','2025-10-13 02:08:30'), -(13978,4674,'action started via WP Cron','2025-10-13 01:09:08','2025-10-13 03:09:08'), -(13979,4675,'action created','2025-10-13 01:09:08','2025-10-13 03:09:08'), -(13980,4674,'action complete via WP Cron','2025-10-13 01:09:08','2025-10-13 03:09:08'), -(13981,4655,'action started via WP Cron','2025-10-13 01:19:08','2025-10-13 03:19:08'), -(13982,4655,'action complete via WP Cron','2025-10-13 01:19:08','2025-10-13 03:19:08'), -(13983,4676,'action created','2025-10-13 01:19:08','2025-10-13 03:19:08'), -(13984,4675,'action started via WP Cron','2025-10-13 02:09:08','2025-10-13 04:09:08'), -(13985,4677,'action created','2025-10-13 02:09:08','2025-10-13 04:09:08'), -(13986,4675,'action complete via WP Cron','2025-10-13 02:09:08','2025-10-13 04:09:08'), -(13987,4677,'action started via WP Cron','2025-10-13 03:09:08','2025-10-13 05:09:08'), -(13988,4678,'action created','2025-10-13 03:09:08','2025-10-13 05:09:08'), -(13989,4677,'action complete via WP Cron','2025-10-13 03:09:08','2025-10-13 05:09:08'), -(13990,4678,'action started via WP Cron','2025-10-13 04:09:08','2025-10-13 06:09:08'), -(13991,4679,'action created','2025-10-13 04:09:08','2025-10-13 06:09:08'), -(13992,4678,'action complete via WP Cron','2025-10-13 04:09:08','2025-10-13 06:09:08'), -(13993,4679,'action started via WP Cron','2025-10-13 05:09:08','2025-10-13 07:09:08'), -(13994,4680,'action created','2025-10-13 05:09:08','2025-10-13 07:09:08'), -(13995,4679,'action complete via WP Cron','2025-10-13 05:09:08','2025-10-13 07:09:08'), -(13996,4680,'action started via WP Cron','2025-10-13 06:09:08','2025-10-13 08:09:08'), -(13997,4681,'action created','2025-10-13 06:09:08','2025-10-13 08:09:08'), -(13998,4680,'action complete via WP Cron','2025-10-13 06:09:08','2025-10-13 08:09:08'), -(13999,4681,'action started via WP Cron','2025-10-13 07:09:08','2025-10-13 09:09:08'), -(14000,4682,'action created','2025-10-13 07:09:08','2025-10-13 09:09:08'), -(14001,4681,'action complete via WP Cron','2025-10-13 07:09:08','2025-10-13 09:09:08'), -(14002,4666,'action started via WP Cron','2025-10-13 07:15:08','2025-10-13 09:15:08'), -(14003,4666,'action complete via WP Cron','2025-10-13 07:15:08','2025-10-13 09:15:08'), -(14004,4683,'action created','2025-10-13 07:15:08','2025-10-13 09:15:08'), -(14005,4643,'action started via WP Cron','2025-10-13 07:17:08','2025-10-13 09:17:08'), -(14006,4643,'action complete via WP Cron','2025-10-13 07:17:08','2025-10-13 09:17:08'), -(14007,4684,'action created','2025-10-13 07:17:08','2025-10-13 09:17:08'), -(14008,4644,'action started via WP Cron','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14009,4644,'action complete via WP Cron','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14010,4685,'action created','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14011,4646,'action started via WP Cron','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14012,4686,'action created','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14013,4646,'action complete via WP Cron','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14014,4687,'action created','2025-10-13 07:19:08','2025-10-13 09:19:08'), -(14015,4686,'action started via WP Cron','2025-10-13 07:20:08','2025-10-13 09:20:08'), -(14016,4686,'action complete via WP Cron','2025-10-13 07:20:08','2025-10-13 09:20:08'), -(14017,4682,'action started via WP Cron','2025-10-13 08:09:08','2025-10-13 10:09:08'), -(14018,4688,'action created','2025-10-13 08:09:08','2025-10-13 10:09:08'), -(14019,4682,'action complete via WP Cron','2025-10-13 08:09:08','2025-10-13 10:09:08'), -(14020,4688,'action started via WP Cron','2025-10-13 09:09:08','2025-10-13 11:09:08'), -(14021,4689,'action created','2025-10-13 09:09:08','2025-10-13 11:09:08'), -(14022,4688,'action complete via WP Cron','2025-10-13 09:09:08','2025-10-13 11:09:08'), -(14023,4689,'action started via WP Cron','2025-10-13 10:09:08','2025-10-13 12:09:08'), -(14024,4690,'action created','2025-10-13 10:09:08','2025-10-13 12:09:08'), -(14025,4689,'action complete via WP Cron','2025-10-13 10:09:08','2025-10-13 12:09:08'), -(14026,4650,'action started via WP Cron','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14027,4650,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14028,4691,'action created','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14029,4651,'action started via WP Cron','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14030,4651,'action complete via WP Cron','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14031,4692,'action created','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14032,4690,'action started via WP Cron','2025-10-13 11:09:08','2025-10-13 13:09:08'), -(14033,4693,'action created','2025-10-13 11:09:08','2025-10-13 13:09:08'), -(14034,4690,'action complete via WP Cron','2025-10-13 11:09:08','2025-10-13 13:09:08'), -(14035,4693,'action started via WP Cron','2025-10-13 12:09:08','2025-10-13 14:09:08'), -(14036,4694,'action created','2025-10-13 12:09:08','2025-10-13 14:09:08'), -(14037,4693,'action complete via WP Cron','2025-10-13 12:09:08','2025-10-13 14:09:08'), -(14038,4694,'action started via WP Cron','2025-10-13 13:09:08','2025-10-13 15:09:08'), -(14039,4695,'action created','2025-10-13 13:09:08','2025-10-13 15:09:08'), -(14040,4694,'action complete via WP Cron','2025-10-13 13:09:08','2025-10-13 15:09:08'), -(14041,4676,'action started via WP Cron','2025-10-13 13:19:08','2025-10-13 15:19:08'), -(14042,4676,'action complete via WP Cron','2025-10-13 13:19:08','2025-10-13 15:19:08'), -(14043,4696,'action created','2025-10-13 13:19:08','2025-10-13 15:19:08'), -(14044,4695,'action started via WP Cron','2025-10-13 14:09:08','2025-10-13 16:09:08'), -(14045,4697,'action created','2025-10-13 14:09:08','2025-10-13 16:09:08'), -(14046,4695,'action complete via WP Cron','2025-10-13 14:09:08','2025-10-13 16:09:08'), -(14047,4697,'action started via WP Cron','2025-10-13 15:09:08','2025-10-13 17:09:08'), -(14048,4698,'action created','2025-10-13 15:09:08','2025-10-13 17:09:08'), -(14049,4697,'action complete via WP Cron','2025-10-13 15:09:08','2025-10-13 17:09:08'), -(14050,4698,'action started via WP Cron','2025-10-13 16:09:08','2025-10-13 18:09:08'), -(14051,4699,'action created','2025-10-13 16:09:08','2025-10-13 18:09:08'), -(14052,4698,'action complete via WP Cron','2025-10-13 16:09:08','2025-10-13 18:09:08'), -(14053,4699,'action started via WP Cron','2025-10-13 17:09:08','2025-10-13 19:09:08'), -(14054,4700,'action created','2025-10-13 17:09:08','2025-10-13 19:09:08'), -(14055,4699,'action complete via WP Cron','2025-10-13 17:09:08','2025-10-13 19:09:08'), -(14056,4700,'action started via WP Cron','2025-10-13 18:09:08','2025-10-13 20:09:08'), -(14057,4701,'action created','2025-10-13 18:09:08','2025-10-13 20:09:08'), -(14058,4700,'action complete via WP Cron','2025-10-13 18:09:08','2025-10-13 20:09:08'), -(14059,4663,'action started via WP Cron','2025-10-13 18:39:08','2025-10-13 20:39:08'), -(14060,4663,'action complete via WP Cron','2025-10-13 18:39:08','2025-10-13 20:39:08'), -(14061,4702,'action created','2025-10-13 18:39:08','2025-10-13 20:39:08'), -(14062,4664,'action started via WP Cron','2025-10-13 18:40:08','2025-10-13 20:40:08'), -(14063,4664,'action complete via WP Cron','2025-10-13 18:40:08','2025-10-13 20:40:08'), -(14064,4703,'action created','2025-10-13 18:40:08','2025-10-13 20:40:08'), -(14065,4701,'action started via WP Cron','2025-10-13 19:09:08','2025-10-13 21:09:08'), -(14066,4704,'action created','2025-10-13 19:09:08','2025-10-13 21:09:08'), -(14067,4701,'action complete via WP Cron','2025-10-13 19:09:08','2025-10-13 21:09:08'), -(14068,4683,'action started via WP Cron','2025-10-13 19:15:08','2025-10-13 21:15:08'), -(14069,4683,'action complete via WP Cron','2025-10-13 19:15:08','2025-10-13 21:15:08'), -(14070,4705,'action created','2025-10-13 19:15:08','2025-10-13 21:15:08'), -(14071,4704,'action started via WP Cron','2025-10-13 20:09:08','2025-10-13 22:09:08'), -(14072,4706,'action created','2025-10-13 20:09:08','2025-10-13 22:09:08'), -(14073,4704,'action complete via WP Cron','2025-10-13 20:09:08','2025-10-13 22:09:08'), -(14074,4706,'action started via WP Cron','2025-10-13 21:09:08','2025-10-13 23:09:08'), -(14075,4707,'action created','2025-10-13 21:09:08','2025-10-13 23:09:08'), -(14076,4706,'action complete via WP Cron','2025-10-13 21:09:08','2025-10-13 23:09:08'), -(14077,4671,'action started via WP Cron','2025-10-13 22:03:08','2025-10-14 00:03:08'), -(14078,4671,'action complete via WP Cron','2025-10-13 22:03:08','2025-10-14 00:03:08'), -(14079,4708,'action created','2025-10-13 22:03:08','2025-10-14 00:03:08'), -(14080,4707,'action started via WP Cron','2025-10-13 22:09:08','2025-10-14 00:09:08'), -(14081,4709,'action created','2025-10-13 22:09:08','2025-10-14 00:09:08'), -(14082,4707,'action complete via WP Cron','2025-10-13 22:09:08','2025-10-14 00:09:08'), -(14083,4709,'action started via WP Cron','2025-10-13 23:09:08','2025-10-14 01:09:08'), -(14084,4710,'action created','2025-10-13 23:09:08','2025-10-14 01:09:08'), -(14085,4709,'action complete via WP Cron','2025-10-13 23:09:08','2025-10-14 01:09:08'), -(14086,4710,'action started via WP Cron','2025-10-14 00:09:08','2025-10-14 02:09:08'), -(14087,4711,'action created','2025-10-14 00:09:08','2025-10-14 02:09:08'), -(14088,4710,'action complete via WP Cron','2025-10-14 00:09:08','2025-10-14 02:09:08'), -(14089,4711,'action started via WP Cron','2025-10-14 01:09:08','2025-10-14 03:09:08'), -(14090,4712,'action created','2025-10-14 01:09:08','2025-10-14 03:09:08'), -(14091,4711,'action complete via WP Cron','2025-10-14 01:09:08','2025-10-14 03:09:08'), -(14092,4696,'action started via WP Cron','2025-10-14 01:19:08','2025-10-14 03:19:08'), -(14093,4696,'action complete via WP Cron','2025-10-14 01:19:08','2025-10-14 03:19:08'), -(14094,4713,'action created','2025-10-14 01:19:08','2025-10-14 03:19:08'), -(14095,4712,'action started via WP Cron','2025-10-14 02:09:08','2025-10-14 04:09:08'), -(14096,4714,'action created','2025-10-14 02:09:08','2025-10-14 04:09:08'), -(14097,4712,'action complete via WP Cron','2025-10-14 02:09:08','2025-10-14 04:09:08'), -(14098,4714,'action started via WP Cron','2025-10-14 03:09:08','2025-10-14 05:09:08'), -(14099,4715,'action created','2025-10-14 03:09:08','2025-10-14 05:09:08'), -(14100,4714,'action complete via WP Cron','2025-10-14 03:09:08','2025-10-14 05:09:08'), -(14101,4441,'action started via WP Cron','2025-10-14 04:06:08','2025-10-14 06:06:08'), -(14102,4441,'action complete via WP Cron','2025-10-14 04:06:08','2025-10-14 06:06:08'), -(14103,4716,'action created','2025-10-14 04:06:08','2025-10-14 06:06:08'), -(14104,4715,'action started via WP Cron','2025-10-14 04:09:08','2025-10-14 06:09:08'), -(14105,4717,'action created','2025-10-14 04:09:08','2025-10-14 06:09:08'), -(14106,4715,'action complete via WP Cron','2025-10-14 04:09:08','2025-10-14 06:09:08'), -(14107,4717,'action started via WP Cron','2025-10-14 05:09:08','2025-10-14 07:09:08'), -(14108,4718,'action created','2025-10-14 05:09:08','2025-10-14 07:09:08'), -(14109,4717,'action complete via WP Cron','2025-10-14 05:09:08','2025-10-14 07:09:08'), -(14110,4718,'action started via WP Cron','2025-10-14 06:09:08','2025-10-14 08:09:08'), -(14111,4719,'action created','2025-10-14 06:09:08','2025-10-14 08:09:08'), -(14112,4718,'action complete via WP Cron','2025-10-14 06:09:08','2025-10-14 08:09:08'), -(14113,4719,'action started via WP Cron','2025-10-14 07:09:08','2025-10-14 09:09:08'), -(14114,4720,'action created','2025-10-14 07:09:08','2025-10-14 09:09:08'), -(14115,4719,'action complete via WP Cron','2025-10-14 07:09:08','2025-10-14 09:09:08'), -(14116,4705,'action started via WP Cron','2025-10-14 07:15:08','2025-10-14 09:15:08'), -(14117,4705,'action complete via WP Cron','2025-10-14 07:15:08','2025-10-14 09:15:08'), -(14118,4721,'action created','2025-10-14 07:15:08','2025-10-14 09:15:08'), -(14119,4684,'action started via WP Cron','2025-10-14 07:17:08','2025-10-14 09:17:08'), -(14120,4684,'action complete via WP Cron','2025-10-14 07:17:09','2025-10-14 09:17:09'), -(14121,4722,'action created','2025-10-14 07:17:09','2025-10-14 09:17:09'), -(14122,4685,'action started via WP Cron','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14123,4685,'action complete via WP Cron','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14124,4723,'action created','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14125,4687,'action started via WP Cron','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14126,4724,'action created','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14127,4687,'action complete via WP Cron','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14128,4725,'action created','2025-10-14 07:19:08','2025-10-14 09:19:08'), -(14129,4724,'action started via WP Cron','2025-10-14 07:20:08','2025-10-14 09:20:08'), -(14130,4724,'action complete via WP Cron','2025-10-14 07:20:08','2025-10-14 09:20:08'), -(14131,4720,'action started via WP Cron','2025-10-14 08:09:08','2025-10-14 10:09:08'), -(14132,4726,'action created','2025-10-14 08:09:08','2025-10-14 10:09:08'), -(14133,4720,'action complete via WP Cron','2025-10-14 08:09:08','2025-10-14 10:09:08'), -(14134,4726,'action started via WP Cron','2025-10-14 09:09:08','2025-10-14 11:09:08'), -(14135,4727,'action created','2025-10-14 09:09:08','2025-10-14 11:09:08'), -(14136,4726,'action complete via WP Cron','2025-10-14 09:09:08','2025-10-14 11:09:08'), -(14137,4727,'action started via WP Cron','2025-10-14 10:09:08','2025-10-14 12:09:08'), -(14138,4728,'action created','2025-10-14 10:09:08','2025-10-14 12:09:08'), -(14139,4727,'action complete via WP Cron','2025-10-14 10:09:08','2025-10-14 12:09:08'), -(14140,4691,'action started via WP Cron','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14141,4691,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14142,4729,'action created','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14143,4692,'action started via WP Cron','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14144,4692,'action complete via WP Cron','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14145,4730,'action created','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14146,4728,'action started via WP Cron','2025-10-14 11:09:08','2025-10-14 13:09:08'), -(14147,4731,'action created','2025-10-14 11:09:08','2025-10-14 13:09:08'), -(14148,4728,'action complete via WP Cron','2025-10-14 11:09:08','2025-10-14 13:09:08'), -(14149,4731,'action started via WP Cron','2025-10-14 12:09:08','2025-10-14 14:09:08'), -(14150,4732,'action created','2025-10-14 12:09:08','2025-10-14 14:09:08'), -(14151,4731,'action complete via WP Cron','2025-10-14 12:09:08','2025-10-14 14:09:08'), -(14152,4732,'action started via WP Cron','2025-10-14 13:09:36','2025-10-14 15:09:36'), -(14153,4733,'action created','2025-10-14 13:09:36','2025-10-14 15:09:36'), -(14154,4732,'action complete via WP Cron','2025-10-14 13:09:36','2025-10-14 15:09:36'), -(14155,4713,'action started via WP Cron','2025-10-14 13:19:08','2025-10-14 15:19:08'), -(14156,4713,'action complete via WP Cron','2025-10-14 13:19:08','2025-10-14 15:19:08'), -(14157,4734,'action created','2025-10-14 13:19:08','2025-10-14 15:19:08'), -(14158,4733,'action started via WP Cron','2025-10-14 14:10:08','2025-10-14 16:10:08'), -(14159,4735,'action created','2025-10-14 14:10:08','2025-10-14 16:10:08'), -(14160,4733,'action complete via WP Cron','2025-10-14 14:10:08','2025-10-14 16:10:08'), -(14161,4735,'action started via WP Cron','2025-10-14 15:10:08','2025-10-14 17:10:08'), -(14162,4736,'action created','2025-10-14 15:10:08','2025-10-14 17:10:08'), -(14163,4735,'action complete via WP Cron','2025-10-14 15:10:08','2025-10-14 17:10:08'), -(14164,4736,'action started via WP Cron','2025-10-14 16:10:08','2025-10-14 18:10:08'), -(14165,4737,'action created','2025-10-14 16:10:08','2025-10-14 18:10:08'), -(14166,4736,'action complete via WP Cron','2025-10-14 16:10:08','2025-10-14 18:10:08'), -(14167,4737,'action started via WP Cron','2025-10-14 17:10:08','2025-10-14 19:10:08'), -(14168,4738,'action created','2025-10-14 17:10:08','2025-10-14 19:10:08'), -(14169,4737,'action complete via WP Cron','2025-10-14 17:10:08','2025-10-14 19:10:08'), -(14170,4738,'action started via WP Cron','2025-10-14 18:10:08','2025-10-14 20:10:08'), -(14171,4739,'action created','2025-10-14 18:10:08','2025-10-14 20:10:08'), -(14172,4738,'action complete via WP Cron','2025-10-14 18:10:08','2025-10-14 20:10:08'), -(14173,4702,'action started via WP Cron','2025-10-14 18:39:08','2025-10-14 20:39:08'), -(14174,4702,'action complete via WP Cron','2025-10-14 18:39:08','2025-10-14 20:39:08'), -(14175,4740,'action created','2025-10-14 18:39:08','2025-10-14 20:39:08'), -(14176,4703,'action started via WP Cron','2025-10-14 18:40:08','2025-10-14 20:40:08'), -(14177,4703,'action complete via WP Cron','2025-10-14 18:40:08','2025-10-14 20:40:08'), -(14178,4741,'action created','2025-10-14 18:40:08','2025-10-14 20:40:08'), -(14179,4739,'action started via WP Cron','2025-10-14 19:10:08','2025-10-14 21:10:08'), -(14180,4742,'action created','2025-10-14 19:10:08','2025-10-14 21:10:08'), -(14181,4739,'action complete via WP Cron','2025-10-14 19:10:08','2025-10-14 21:10:08'), -(14182,4721,'action started via WP Cron','2025-10-14 19:15:08','2025-10-14 21:15:08'), -(14183,4721,'action complete via WP Cron','2025-10-14 19:15:08','2025-10-14 21:15:08'), -(14184,4743,'action created','2025-10-14 19:15:08','2025-10-14 21:15:08'), -(14185,4742,'action started via WP Cron','2025-10-14 20:10:08','2025-10-14 22:10:08'), -(14186,4744,'action created','2025-10-14 20:10:08','2025-10-14 22:10:08'), -(14187,4742,'action complete via WP Cron','2025-10-14 20:10:08','2025-10-14 22:10:08'), -(14188,4744,'action started via WP Cron','2025-10-14 21:10:08','2025-10-14 23:10:08'), -(14189,4745,'action created','2025-10-14 21:10:08','2025-10-14 23:10:08'), -(14190,4744,'action complete via WP Cron','2025-10-14 21:10:08','2025-10-14 23:10:08'), -(14191,4708,'action started via WP Cron','2025-10-14 22:03:08','2025-10-15 00:03:08'), -(14192,4708,'action complete via WP Cron','2025-10-14 22:03:08','2025-10-15 00:03:08'), -(14193,4746,'action created','2025-10-14 22:03:08','2025-10-15 00:03:08'), -(14194,4745,'action started via WP Cron','2025-10-14 22:10:08','2025-10-15 00:10:08'), -(14195,4747,'action created','2025-10-14 22:10:08','2025-10-15 00:10:08'), -(14196,4745,'action complete via WP Cron','2025-10-14 22:10:08','2025-10-15 00:10:08'), -(14197,4747,'action started via WP Cron','2025-10-14 23:10:08','2025-10-15 01:10:08'), -(14198,4748,'action created','2025-10-14 23:10:08','2025-10-15 01:10:08'), -(14199,4747,'action complete via WP Cron','2025-10-14 23:10:08','2025-10-15 01:10:08'), -(14200,4748,'action started via WP Cron','2025-10-15 00:10:08','2025-10-15 02:10:08'), -(14201,4749,'action created','2025-10-15 00:10:08','2025-10-15 02:10:08'), -(14202,4748,'action complete via WP Cron','2025-10-15 00:10:08','2025-10-15 02:10:08'), -(14203,4749,'action started via WP Cron','2025-10-15 01:10:08','2025-10-15 03:10:08'), -(14204,4750,'action created','2025-10-15 01:10:08','2025-10-15 03:10:08'), -(14205,4749,'action complete via WP Cron','2025-10-15 01:10:08','2025-10-15 03:10:08'), -(14206,4734,'action started via WP Cron','2025-10-15 01:19:08','2025-10-15 03:19:08'), -(14207,4734,'action complete via WP Cron','2025-10-15 01:19:08','2025-10-15 03:19:08'), -(14208,4751,'action created','2025-10-15 01:19:08','2025-10-15 03:19:08'), -(14209,4750,'action started via WP Cron','2025-10-15 02:10:08','2025-10-15 04:10:08'), -(14210,4752,'action created','2025-10-15 02:10:08','2025-10-15 04:10:08'), -(14211,4750,'action complete via WP Cron','2025-10-15 02:10:08','2025-10-15 04:10:08'), -(14212,4752,'action started via WP Cron','2025-10-15 03:10:08','2025-10-15 05:10:08'), -(14213,4753,'action created','2025-10-15 03:10:08','2025-10-15 05:10:08'), -(14214,4752,'action complete via WP Cron','2025-10-15 03:10:08','2025-10-15 05:10:08'), -(14215,4753,'action started via WP Cron','2025-10-15 04:10:08','2025-10-15 06:10:08'), -(14216,4754,'action created','2025-10-15 04:10:08','2025-10-15 06:10:08'), -(14217,4753,'action complete via WP Cron','2025-10-15 04:10:08','2025-10-15 06:10:08'), -(14218,4754,'action started via WP Cron','2025-10-15 05:10:08','2025-10-15 07:10:08'), -(14219,4755,'action created','2025-10-15 05:10:08','2025-10-15 07:10:08'), -(14220,4754,'action complete via WP Cron','2025-10-15 05:10:08','2025-10-15 07:10:08'), -(14221,4755,'action started via WP Cron','2025-10-15 06:10:08','2025-10-15 08:10:08'), -(14222,4756,'action created','2025-10-15 06:10:08','2025-10-15 08:10:08'), -(14223,4755,'action complete via WP Cron','2025-10-15 06:10:08','2025-10-15 08:10:08'), -(14224,4756,'action started via WP Cron','2025-10-15 07:10:26','2025-10-15 09:10:26'), -(14225,4757,'action created','2025-10-15 07:10:26','2025-10-15 09:10:26'), -(14226,4756,'action complete via WP Cron','2025-10-15 07:10:26','2025-10-15 09:10:26'), -(14227,4743,'action started via Async Request','2025-10-15 07:15:19','2025-10-15 09:15:19'), -(14228,4743,'action complete via Async Request','2025-10-15 07:15:19','2025-10-15 09:15:19'), -(14229,4758,'action created','2025-10-15 07:15:19','2025-10-15 09:15:19'), -(14230,4722,'action started via WP Cron','2025-10-15 07:17:46','2025-10-15 09:17:46'), -(14231,4722,'action complete via WP Cron','2025-10-15 07:17:46','2025-10-15 09:17:46'), -(14232,4759,'action created','2025-10-15 07:17:46','2025-10-15 09:17:46'), -(14233,4723,'action started via WP Cron','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14234,4723,'action complete via WP Cron','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14235,4760,'action created','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14236,4725,'action started via WP Cron','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14237,4761,'action created','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14238,4725,'action complete via WP Cron','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14239,4762,'action created','2025-10-15 07:19:30','2025-10-15 09:19:30'), -(14240,4761,'action started via Async Request','2025-10-15 07:20:00','2025-10-15 09:20:00'), -(14241,4761,'action complete via Async Request','2025-10-15 07:20:00','2025-10-15 09:20:00'), -(14242,4757,'action started via WP Cron','2025-10-15 08:11:08','2025-10-15 10:11:08'), -(14243,4763,'action created','2025-10-15 08:11:08','2025-10-15 10:11:08'), -(14244,4757,'action complete via WP Cron','2025-10-15 08:11:08','2025-10-15 10:11:08'), -(14245,4763,'action started via WP Cron','2025-10-15 09:11:08','2025-10-15 11:11:08'), -(14246,4764,'action created','2025-10-15 09:11:08','2025-10-15 11:11:08'), -(14247,4763,'action complete via WP Cron','2025-10-15 09:11:08','2025-10-15 11:11:08'), -(14248,4764,'action started via WP Cron','2025-10-15 10:11:08','2025-10-15 12:11:08'), -(14249,4765,'action created','2025-10-15 10:11:08','2025-10-15 12:11:08'), -(14250,4764,'action complete via WP Cron','2025-10-15 10:11:08','2025-10-15 12:11:08'), -(14251,4729,'action started via WP Cron','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14252,4729,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14253,4766,'action created','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14254,4730,'action started via WP Cron','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14255,4730,'action complete via WP Cron','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14256,4767,'action created','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14257,4765,'action started via WP Cron','2025-10-15 11:11:08','2025-10-15 13:11:08'), -(14258,4768,'action created','2025-10-15 11:11:08','2025-10-15 13:11:08'), -(14259,4765,'action complete via WP Cron','2025-10-15 11:11:08','2025-10-15 13:11:08'), -(14260,4768,'action started via WP Cron','2025-10-15 12:11:08','2025-10-15 14:11:08'), -(14261,4769,'action created','2025-10-15 12:11:08','2025-10-15 14:11:08'), -(14262,4768,'action complete via WP Cron','2025-10-15 12:11:08','2025-10-15 14:11:08'), -(14263,4769,'action started via WP Cron','2025-10-15 13:11:08','2025-10-15 15:11:08'), -(14264,4770,'action created','2025-10-15 13:11:08','2025-10-15 15:11:08'), -(14265,4769,'action complete via WP Cron','2025-10-15 13:11:08','2025-10-15 15:11:08'), -(14266,4751,'action started via WP Cron','2025-10-15 13:19:08','2025-10-15 15:19:08'), -(14267,4751,'action complete via WP Cron','2025-10-15 13:19:08','2025-10-15 15:19:08'), -(14268,4771,'action created','2025-10-15 13:19:08','2025-10-15 15:19:08'), -(14269,4770,'action started via WP Cron','2025-10-15 14:11:08','2025-10-15 16:11:08'), -(14270,4772,'action created','2025-10-15 14:11:08','2025-10-15 16:11:08'), -(14271,4770,'action complete via WP Cron','2025-10-15 14:11:08','2025-10-15 16:11:08'), -(14272,4772,'action started via WP Cron','2025-10-15 15:11:08','2025-10-15 17:11:08'), -(14273,4773,'action created','2025-10-15 15:11:08','2025-10-15 17:11:08'), -(14274,4772,'action complete via WP Cron','2025-10-15 15:11:08','2025-10-15 17:11:08'), -(14275,4773,'action started via WP Cron','2025-10-15 16:11:08','2025-10-15 18:11:08'), -(14276,4774,'action created','2025-10-15 16:11:08','2025-10-15 18:11:08'), -(14277,4773,'action complete via WP Cron','2025-10-15 16:11:08','2025-10-15 18:11:08'), -(14278,4774,'action started via WP Cron','2025-10-15 17:11:08','2025-10-15 19:11:08'), -(14279,4775,'action created','2025-10-15 17:11:08','2025-10-15 19:11:08'), -(14280,4774,'action complete via WP Cron','2025-10-15 17:11:09','2025-10-15 19:11:09'), -(14281,4775,'action started via WP Cron','2025-10-15 18:11:08','2025-10-15 20:11:08'), -(14282,4776,'action created','2025-10-15 18:11:08','2025-10-15 20:11:08'), -(14283,4775,'action complete via WP Cron','2025-10-15 18:11:09','2025-10-15 20:11:09'), -(14284,4740,'action started via WP Cron','2025-10-15 18:39:09','2025-10-15 20:39:09'), -(14285,4740,'action complete via WP Cron','2025-10-15 18:39:09','2025-10-15 20:39:09'), -(14286,4777,'action created','2025-10-15 18:39:09','2025-10-15 20:39:09'), -(14287,4741,'action started via WP Cron','2025-10-15 18:40:08','2025-10-15 20:40:08'), -(14288,4741,'action complete via WP Cron','2025-10-15 18:40:09','2025-10-15 20:40:09'), -(14289,4778,'action created','2025-10-15 18:40:09','2025-10-15 20:40:09'), -(14290,4776,'action started via WP Cron','2025-10-15 19:11:09','2025-10-15 21:11:09'), -(14291,4779,'action created','2025-10-15 19:11:09','2025-10-15 21:11:09'), -(14292,4776,'action complete via WP Cron','2025-10-15 19:11:09','2025-10-15 21:11:09'), -(14293,4758,'action started via WP Cron','2025-10-15 19:16:09','2025-10-15 21:16:09'), -(14294,4758,'action complete via WP Cron','2025-10-15 19:16:09','2025-10-15 21:16:09'), -(14295,4780,'action created','2025-10-15 19:16:09','2025-10-15 21:16:09'), -(14296,4779,'action started via WP Cron','2025-10-15 20:11:09','2025-10-15 22:11:09'), -(14297,4781,'action created','2025-10-15 20:11:09','2025-10-15 22:11:09'), -(14298,4779,'action complete via WP Cron','2025-10-15 20:11:09','2025-10-15 22:11:09'), -(14299,4781,'action started via WP Cron','2025-10-15 21:12:09','2025-10-15 23:12:09'), -(14300,4782,'action created','2025-10-15 21:12:09','2025-10-15 23:12:09'), -(14301,4781,'action complete via WP Cron','2025-10-15 21:12:09','2025-10-15 23:12:09'), -(14302,4746,'action started via WP Cron','2025-10-15 22:03:09','2025-10-16 00:03:09'), -(14303,4746,'action complete via WP Cron','2025-10-15 22:03:09','2025-10-16 00:03:09'), -(14304,4783,'action created','2025-10-15 22:03:09','2025-10-16 00:03:09'), -(14305,4782,'action started via WP Cron','2025-10-15 22:12:09','2025-10-16 00:12:09'), -(14306,4784,'action created','2025-10-15 22:12:09','2025-10-16 00:12:09'), -(14307,4782,'action complete via WP Cron','2025-10-15 22:12:09','2025-10-16 00:12:09'), -(14308,4784,'action started via WP Cron','2025-10-15 23:12:09','2025-10-16 01:12:09'), -(14309,4785,'action created','2025-10-15 23:12:09','2025-10-16 01:12:09'), -(14310,4784,'action complete via WP Cron','2025-10-15 23:12:09','2025-10-16 01:12:09'), -(14311,4785,'action started via WP Cron','2025-10-16 00:12:09','2025-10-16 02:12:09'), -(14312,4786,'action created','2025-10-16 00:12:09','2025-10-16 02:12:09'), -(14313,4785,'action complete via WP Cron','2025-10-16 00:12:09','2025-10-16 02:12:09'), -(14314,4786,'action started via WP Cron','2025-10-16 01:12:09','2025-10-16 03:12:09'), -(14315,4787,'action created','2025-10-16 01:12:09','2025-10-16 03:12:09'), -(14316,4786,'action complete via WP Cron','2025-10-16 01:12:09','2025-10-16 03:12:09'), -(14317,4771,'action started via WP Cron','2025-10-16 01:19:09','2025-10-16 03:19:09'), -(14318,4771,'action complete via WP Cron','2025-10-16 01:19:09','2025-10-16 03:19:09'), -(14319,4788,'action created','2025-10-16 01:19:09','2025-10-16 03:19:09'), -(14320,4787,'action started via WP Cron','2025-10-16 02:12:09','2025-10-16 04:12:09'), -(14321,4789,'action created','2025-10-16 02:12:09','2025-10-16 04:12:09'), -(14322,4787,'action complete via WP Cron','2025-10-16 02:12:09','2025-10-16 04:12:09'), -(14323,4789,'action started via WP Cron','2025-10-16 03:12:09','2025-10-16 05:12:09'), -(14324,4790,'action created','2025-10-16 03:12:09','2025-10-16 05:12:09'), -(14325,4789,'action complete via WP Cron','2025-10-16 03:12:09','2025-10-16 05:12:09'), -(14326,4790,'action started via WP Cron','2025-10-16 04:12:09','2025-10-16 06:12:09'), -(14327,4791,'action created','2025-10-16 04:12:09','2025-10-16 06:12:09'), -(14328,4790,'action complete via WP Cron','2025-10-16 04:12:09','2025-10-16 06:12:09'), -(14329,4791,'action started via WP Cron','2025-10-16 05:12:09','2025-10-16 07:12:09'), -(14330,4792,'action created','2025-10-16 05:12:09','2025-10-16 07:12:09'), -(14331,4791,'action complete via WP Cron','2025-10-16 05:12:09','2025-10-16 07:12:09'), -(14332,4792,'action started via WP Cron','2025-10-16 06:12:09','2025-10-16 08:12:09'), -(14333,4793,'action created','2025-10-16 06:12:09','2025-10-16 08:12:09'), -(14334,4792,'action complete via WP Cron','2025-10-16 06:12:09','2025-10-16 08:12:09'), -(14335,4793,'action started via WP Cron','2025-10-16 07:12:09','2025-10-16 09:12:09'), -(14336,4794,'action created','2025-10-16 07:12:09','2025-10-16 09:12:09'), -(14337,4793,'action complete via WP Cron','2025-10-16 07:12:09','2025-10-16 09:12:09'), -(14338,4780,'action started via WP Cron','2025-10-16 07:16:09','2025-10-16 09:16:09'), -(14339,4780,'action complete via WP Cron','2025-10-16 07:16:09','2025-10-16 09:16:09'), -(14340,4795,'action created','2025-10-16 07:16:09','2025-10-16 09:16:09'), -(14341,4759,'action started via WP Cron','2025-10-16 07:18:09','2025-10-16 09:18:09'), -(14342,4759,'action complete via WP Cron','2025-10-16 07:18:09','2025-10-16 09:18:09'), -(14343,4796,'action created','2025-10-16 07:18:09','2025-10-16 09:18:09'), -(14344,4760,'action started via WP Cron','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14345,4760,'action complete via WP Cron','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14346,4797,'action created','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14347,4762,'action started via WP Cron','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14348,4798,'action created','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14349,4762,'action complete via WP Cron','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14350,4799,'action created','2025-10-16 07:20:09','2025-10-16 09:20:09'), -(14351,4798,'action started via WP Cron','2025-10-16 07:20:38','2025-10-16 09:20:38'), -(14352,4798,'action complete via WP Cron','2025-10-16 07:20:38','2025-10-16 09:20:38'), -(14353,4794,'action started via WP Cron','2025-10-16 08:13:09','2025-10-16 10:13:09'), -(14354,4800,'action created','2025-10-16 08:13:09','2025-10-16 10:13:09'), -(14355,4794,'action complete via WP Cron','2025-10-16 08:13:09','2025-10-16 10:13:09'), -(14356,4800,'action started via WP Cron','2025-10-16 09:13:09','2025-10-16 11:13:09'), -(14357,4801,'action created','2025-10-16 09:13:09','2025-10-16 11:13:09'), -(14358,4800,'action complete via WP Cron','2025-10-16 09:13:09','2025-10-16 11:13:09'), -(14359,4801,'action started via WP Cron','2025-10-16 10:13:09','2025-10-16 12:13:09'), -(14360,4802,'action created','2025-10-16 10:13:09','2025-10-16 12:13:09'), -(14361,4801,'action complete via WP Cron','2025-10-16 10:13:09','2025-10-16 12:13:09'), -(14362,4766,'action started via WP Cron','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14363,4766,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14364,4803,'action created','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14365,4767,'action started via WP Cron','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14366,4767,'action complete via WP Cron','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14367,4804,'action created','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14368,4805,'action created','2025-10-16 11:01:50','2025-10-16 13:01:50'), -(14369,4806,'action created','2025-10-16 11:02:19','2025-10-16 13:02:19'), -(14370,4805,'action started via WP Cron','2025-10-16 11:02:28','2025-10-16 13:02:28'), -(14371,4805,'action complete via WP Cron','2025-10-16 11:02:28','2025-10-16 13:02:28'), -(14372,4806,'action started via WP Cron','2025-10-16 11:02:28','2025-10-16 13:02:28'), -(14373,4806,'action complete via WP Cron','2025-10-16 11:02:28','2025-10-16 13:02:28'), -(14374,4807,'action created','2025-10-16 11:02:40','2025-10-16 13:02:40'), -(14375,4807,'action started via WP Cron','2025-10-16 11:04:09','2025-10-16 13:04:09'), -(14376,4807,'action complete via WP Cron','2025-10-16 11:04:09','2025-10-16 13:04:09'), -(14377,4802,'action started via WP Cron','2025-10-16 11:13:09','2025-10-16 13:13:09'), -(14378,4808,'action created','2025-10-16 11:13:09','2025-10-16 13:13:09'), -(14379,4802,'action complete via WP Cron','2025-10-16 11:13:09','2025-10-16 13:13:09'), -(14380,4808,'action started via WP Cron','2025-10-16 12:13:09','2025-10-16 14:13:09'), -(14381,4809,'action created','2025-10-16 12:13:09','2025-10-16 14:13:09'), -(14382,4808,'action complete via WP Cron','2025-10-16 12:13:09','2025-10-16 14:13:09'), -(14383,4809,'action started via WP Cron','2025-10-16 13:13:09','2025-10-16 15:13:09'), -(14384,4810,'action created','2025-10-16 13:13:09','2025-10-16 15:13:09'), -(14385,4809,'action complete via WP Cron','2025-10-16 13:13:09','2025-10-16 15:13:09'), -(14386,4788,'action started via WP Cron','2025-10-16 13:19:09','2025-10-16 15:19:09'), -(14387,4788,'action complete via WP Cron','2025-10-16 13:19:09','2025-10-16 15:19:09'), -(14388,4811,'action created','2025-10-16 13:19:09','2025-10-16 15:19:09'), -(14389,4810,'action started via WP Cron','2025-10-16 14:13:09','2025-10-16 16:13:09'), -(14390,4812,'action created','2025-10-16 14:13:09','2025-10-16 16:13:09'), -(14391,4810,'action complete via WP Cron','2025-10-16 14:13:09','2025-10-16 16:13:09'), -(14392,4812,'action started via WP Cron','2025-10-16 15:13:09','2025-10-16 17:13:09'), -(14393,4813,'action created','2025-10-16 15:13:09','2025-10-16 17:13:09'), -(14394,4812,'action complete via WP Cron','2025-10-16 15:13:09','2025-10-16 17:13:09'), -(14395,4813,'action started via WP Cron','2025-10-16 16:13:09','2025-10-16 18:13:09'), -(14396,4814,'action created','2025-10-16 16:13:09','2025-10-16 18:13:09'), -(14397,4813,'action complete via WP Cron','2025-10-16 16:13:09','2025-10-16 18:13:09'), -(14398,4814,'action started via WP Cron','2025-10-16 17:14:09','2025-10-16 19:14:09'), -(14399,4815,'action created','2025-10-16 17:14:09','2025-10-16 19:14:09'), -(14400,4814,'action complete via WP Cron','2025-10-16 17:14:09','2025-10-16 19:14:09'), -(14401,4815,'action started via WP Cron','2025-10-16 18:14:09','2025-10-16 20:14:09'), -(14402,4816,'action created','2025-10-16 18:14:09','2025-10-16 20:14:09'), -(14403,4815,'action complete via WP Cron','2025-10-16 18:14:09','2025-10-16 20:14:09'), -(14404,4777,'action started via WP Cron','2025-10-16 18:39:09','2025-10-16 20:39:09'), -(14405,4777,'action complete via WP Cron','2025-10-16 18:39:09','2025-10-16 20:39:09'), -(14406,4817,'action created','2025-10-16 18:39:09','2025-10-16 20:39:09'), -(14407,4778,'action started via WP Cron','2025-10-16 18:40:09','2025-10-16 20:40:09'), -(14408,4778,'action complete via WP Cron','2025-10-16 18:40:09','2025-10-16 20:40:09'), -(14409,4818,'action created','2025-10-16 18:40:09','2025-10-16 20:40:09'), -(14410,4816,'action started via WP Cron','2025-10-16 19:14:09','2025-10-16 21:14:09'), -(14411,4819,'action created','2025-10-16 19:14:09','2025-10-16 21:14:09'), -(14412,4816,'action complete via WP Cron','2025-10-16 19:14:09','2025-10-16 21:14:09'), -(14413,4795,'action started via WP Cron','2025-10-16 19:16:29','2025-10-16 21:16:29'), -(14414,4795,'action complete via WP Cron','2025-10-16 19:16:29','2025-10-16 21:16:29'), -(14415,4820,'action created','2025-10-16 19:16:29','2025-10-16 21:16:29'), -(14416,4819,'action started via WP Cron','2025-10-16 20:14:09','2025-10-16 22:14:09'), -(14417,4821,'action created','2025-10-16 20:14:09','2025-10-16 22:14:09'), -(14418,4819,'action complete via WP Cron','2025-10-16 20:14:09','2025-10-16 22:14:09'), -(14419,4821,'action started via WP Cron','2025-10-16 21:14:09','2025-10-16 23:14:09'), -(14420,4822,'action created','2025-10-16 21:14:09','2025-10-16 23:14:09'), -(14421,4821,'action complete via WP Cron','2025-10-16 21:14:09','2025-10-16 23:14:09'), -(14422,4783,'action started via WP Cron','2025-10-16 22:03:09','2025-10-17 00:03:09'), -(14423,4783,'action complete via WP Cron','2025-10-16 22:03:09','2025-10-17 00:03:09'), -(14424,4823,'action created','2025-10-16 22:03:09','2025-10-17 00:03:09'), -(14425,4822,'action started via WP Cron','2025-10-16 22:14:09','2025-10-17 00:14:09'), -(14426,4824,'action created','2025-10-16 22:14:09','2025-10-17 00:14:09'), -(14427,4822,'action complete via WP Cron','2025-10-16 22:14:09','2025-10-17 00:14:09'), -(14428,4824,'action started via WP Cron','2025-10-16 23:14:09','2025-10-17 01:14:09'), -(14429,4825,'action created','2025-10-16 23:14:09','2025-10-17 01:14:09'), -(14430,4824,'action complete via WP Cron','2025-10-16 23:14:09','2025-10-17 01:14:09'), -(14431,4825,'action started via WP Cron','2025-10-17 00:14:09','2025-10-17 02:14:09'), -(14432,4826,'action created','2025-10-17 00:14:09','2025-10-17 02:14:09'), -(14433,4825,'action complete via WP Cron','2025-10-17 00:14:09','2025-10-17 02:14:09'), -(14434,4826,'action started via WP Cron','2025-10-17 01:14:09','2025-10-17 03:14:09'), -(14435,4827,'action created','2025-10-17 01:14:09','2025-10-17 03:14:09'), -(14436,4826,'action complete via WP Cron','2025-10-17 01:14:09','2025-10-17 03:14:09'), -(14437,4811,'action started via WP Cron','2025-10-17 01:19:09','2025-10-17 03:19:09'), -(14438,4811,'action complete via WP Cron','2025-10-17 01:19:09','2025-10-17 03:19:09'), -(14439,4828,'action created','2025-10-17 01:19:09','2025-10-17 03:19:09'), -(14440,4827,'action started via WP Cron','2025-10-17 02:14:09','2025-10-17 04:14:09'), -(14441,4829,'action created','2025-10-17 02:14:09','2025-10-17 04:14:09'), -(14442,4827,'action complete via WP Cron','2025-10-17 02:14:09','2025-10-17 04:14:09'), -(14443,4829,'action started via WP Cron','2025-10-17 03:14:09','2025-10-17 05:14:09'), -(14444,4830,'action created','2025-10-17 03:14:09','2025-10-17 05:14:09'), -(14445,4829,'action complete via WP Cron','2025-10-17 03:14:09','2025-10-17 05:14:09'), -(14446,4830,'action started via WP Cron','2025-10-17 04:14:09','2025-10-17 06:14:09'), -(14447,4831,'action created','2025-10-17 04:14:09','2025-10-17 06:14:09'), -(14448,4830,'action complete via WP Cron','2025-10-17 04:14:09','2025-10-17 06:14:09'), -(14449,4831,'action started via WP Cron','2025-10-17 05:14:09','2025-10-17 07:14:09'), -(14450,4832,'action created','2025-10-17 05:14:09','2025-10-17 07:14:09'), -(14451,4831,'action complete via WP Cron','2025-10-17 05:14:09','2025-10-17 07:14:09'), -(14452,4832,'action started via WP Cron','2025-10-17 06:14:09','2025-10-17 08:14:09'), -(14453,4833,'action created','2025-10-17 06:14:09','2025-10-17 08:14:09'), -(14454,4832,'action complete via WP Cron','2025-10-17 06:14:09','2025-10-17 08:14:09'), -(14455,4833,'action started via WP Cron','2025-10-17 07:14:09','2025-10-17 09:14:09'), -(14456,4834,'action created','2025-10-17 07:14:09','2025-10-17 09:14:09'), -(14457,4833,'action complete via WP Cron','2025-10-17 07:14:09','2025-10-17 09:14:09'), -(14458,4820,'action started via WP Cron','2025-10-17 07:17:09','2025-10-17 09:17:09'), -(14459,4820,'action complete via WP Cron','2025-10-17 07:17:09','2025-10-17 09:17:09'), -(14460,4835,'action created','2025-10-17 07:17:09','2025-10-17 09:17:09'), -(14461,4796,'action started via WP Cron','2025-10-17 07:18:09','2025-10-17 09:18:09'), -(14462,4796,'action complete via WP Cron','2025-10-17 07:18:09','2025-10-17 09:18:09'), -(14463,4836,'action created','2025-10-17 07:18:09','2025-10-17 09:18:09'), -(14464,4797,'action started via WP Cron','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14465,4797,'action complete via WP Cron','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14466,4837,'action created','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14467,4799,'action started via WP Cron','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14468,4838,'action created','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14469,4799,'action complete via WP Cron','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14470,4839,'action created','2025-10-17 07:20:09','2025-10-17 09:20:09'), -(14471,4838,'action started via WP Cron','2025-10-17 07:21:09','2025-10-17 09:21:09'), -(14472,4838,'action complete via WP Cron','2025-10-17 07:21:09','2025-10-17 09:21:09'), -(14473,4834,'action started via WP Cron','2025-10-17 08:14:09','2025-10-17 10:14:09'), -(14474,4840,'action created','2025-10-17 08:14:09','2025-10-17 10:14:09'), -(14475,4834,'action complete via WP Cron','2025-10-17 08:14:09','2025-10-17 10:14:09'), -(14476,4840,'action started via WP Cron','2025-10-17 09:15:09','2025-10-17 11:15:09'), -(14477,4841,'action created','2025-10-17 09:15:09','2025-10-17 11:15:09'), -(14478,4840,'action complete via WP Cron','2025-10-17 09:15:09','2025-10-17 11:15:09'), -(14479,4841,'action started via WP Cron','2025-10-17 10:15:09','2025-10-17 12:15:09'), -(14480,4842,'action created','2025-10-17 10:15:09','2025-10-17 12:15:09'), -(14481,4841,'action complete via WP Cron','2025-10-17 10:15:09','2025-10-17 12:15:09'), -(14482,4803,'action started via WP Cron','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14483,4803,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14484,4843,'action created','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14485,4804,'action started via WP Cron','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14486,4804,'action complete via WP Cron','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14487,4844,'action created','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14488,4842,'action started via WP Cron','2025-10-17 11:15:09','2025-10-17 13:15:09'), -(14489,4845,'action created','2025-10-17 11:15:09','2025-10-17 13:15:09'), -(14490,4842,'action complete via WP Cron','2025-10-17 11:15:09','2025-10-17 13:15:09'), -(14491,4845,'action started via WP Cron','2025-10-17 12:15:09','2025-10-17 14:15:09'), -(14492,4846,'action created','2025-10-17 12:15:09','2025-10-17 14:15:09'), -(14493,4845,'action complete via WP Cron','2025-10-17 12:15:09','2025-10-17 14:15:09'), -(14494,4846,'action started via WP Cron','2025-10-17 13:15:09','2025-10-17 15:15:09'), -(14495,4847,'action created','2025-10-17 13:15:09','2025-10-17 15:15:09'), -(14496,4846,'action complete via WP Cron','2025-10-17 13:15:09','2025-10-17 15:15:09'), -(14497,4828,'action started via WP Cron','2025-10-17 13:19:09','2025-10-17 15:19:09'), -(14498,4828,'action complete via WP Cron','2025-10-17 13:19:09','2025-10-17 15:19:09'), -(14499,4848,'action created','2025-10-17 13:19:09','2025-10-17 15:19:09'), -(14500,4847,'action started via WP Cron','2025-10-17 14:15:31','2025-10-17 16:15:31'), -(14501,4849,'action created','2025-10-17 14:15:31','2025-10-17 16:15:31'), -(14502,4847,'action complete via WP Cron','2025-10-17 14:15:31','2025-10-17 16:15:31'), -(14503,4849,'action started via WP Cron','2025-10-17 15:16:09','2025-10-17 17:16:09'), -(14504,4850,'action created','2025-10-17 15:16:09','2025-10-17 17:16:09'), -(14505,4849,'action complete via WP Cron','2025-10-17 15:16:09','2025-10-17 17:16:09'), -(14506,4850,'action started via WP Cron','2025-10-17 16:16:09','2025-10-17 18:16:09'), -(14507,4851,'action created','2025-10-17 16:16:09','2025-10-17 18:16:09'), -(14508,4850,'action complete via WP Cron','2025-10-17 16:16:09','2025-10-17 18:16:09'), -(14509,4851,'action started via WP Cron','2025-10-17 17:16:09','2025-10-17 19:16:09'), -(14510,4852,'action created','2025-10-17 17:16:09','2025-10-17 19:16:09'), -(14511,4851,'action complete via WP Cron','2025-10-17 17:16:09','2025-10-17 19:16:09'), -(14512,4852,'action started via WP Cron','2025-10-17 18:16:09','2025-10-17 20:16:09'), -(14513,4853,'action created','2025-10-17 18:16:09','2025-10-17 20:16:09'), -(14514,4852,'action complete via WP Cron','2025-10-17 18:16:09','2025-10-17 20:16:09'), -(14515,4817,'action started via WP Cron','2025-10-17 18:39:09','2025-10-17 20:39:09'), -(14516,4817,'action complete via WP Cron','2025-10-17 18:39:09','2025-10-17 20:39:09'), -(14517,4854,'action created','2025-10-17 18:39:09','2025-10-17 20:39:09'), -(14518,4818,'action started via WP Cron','2025-10-17 18:40:09','2025-10-17 20:40:09'), -(14519,4818,'action complete via WP Cron','2025-10-17 18:40:09','2025-10-17 20:40:09'), -(14520,4855,'action created','2025-10-17 18:40:09','2025-10-17 20:40:09'), -(14521,4853,'action started via WP Cron','2025-10-17 19:16:09','2025-10-17 21:16:09'), -(14522,4856,'action created','2025-10-17 19:16:09','2025-10-17 21:16:09'), -(14523,4853,'action complete via WP Cron','2025-10-17 19:16:09','2025-10-17 21:16:09'), -(14524,4835,'action started via WP Cron','2025-10-17 19:17:09','2025-10-17 21:17:09'), -(14525,4835,'action complete via WP Cron','2025-10-17 19:17:09','2025-10-17 21:17:09'), -(14526,4857,'action created','2025-10-17 19:17:09','2025-10-17 21:17:09'), -(14527,4856,'action started via WP Cron','2025-10-17 20:17:09','2025-10-17 22:17:09'), -(14528,4858,'action created','2025-10-17 20:17:09','2025-10-17 22:17:09'), -(14529,4856,'action complete via WP Cron','2025-10-17 20:17:09','2025-10-17 22:17:09'), -(14530,4858,'action started via WP Cron','2025-10-17 21:17:09','2025-10-17 23:17:09'), -(14531,4859,'action created','2025-10-17 21:17:09','2025-10-17 23:17:09'), -(14532,4858,'action complete via WP Cron','2025-10-17 21:17:09','2025-10-17 23:17:09'), -(14533,4823,'action started via WP Cron','2025-10-17 22:03:09','2025-10-18 00:03:09'), -(14534,4823,'action complete via WP Cron','2025-10-17 22:03:09','2025-10-18 00:03:09'), -(14535,4860,'action created','2025-10-17 22:03:09','2025-10-18 00:03:09'), -(14536,4859,'action started via WP Cron','2025-10-17 22:17:09','2025-10-18 00:17:09'), -(14537,4861,'action created','2025-10-17 22:17:09','2025-10-18 00:17:09'), -(14538,4859,'action complete via WP Cron','2025-10-17 22:17:09','2025-10-18 00:17:09'), -(14539,4861,'action started via WP Cron','2025-10-17 23:17:09','2025-10-18 01:17:09'), -(14540,4862,'action created','2025-10-17 23:17:09','2025-10-18 01:17:09'), -(14541,4861,'action complete via WP Cron','2025-10-17 23:17:09','2025-10-18 01:17:09'), -(14542,4862,'action started via WP Cron','2025-10-18 00:17:09','2025-10-18 02:17:09'), -(14543,4863,'action created','2025-10-18 00:17:09','2025-10-18 02:17:09'), -(14544,4862,'action complete via WP Cron','2025-10-18 00:17:09','2025-10-18 02:17:09'), -(14545,4863,'action started via WP Cron','2025-10-18 01:17:09','2025-10-18 03:17:09'), -(14546,4864,'action created','2025-10-18 01:17:09','2025-10-18 03:17:09'), -(14547,4863,'action complete via WP Cron','2025-10-18 01:17:09','2025-10-18 03:17:09'), -(14548,4848,'action started via WP Cron','2025-10-18 01:19:09','2025-10-18 03:19:09'), -(14549,4848,'action complete via WP Cron','2025-10-18 01:19:09','2025-10-18 03:19:09'), -(14550,4865,'action created','2025-10-18 01:19:09','2025-10-18 03:19:09'), -(14551,4864,'action started via WP Cron','2025-10-18 02:17:09','2025-10-18 04:17:09'), -(14552,4866,'action created','2025-10-18 02:17:09','2025-10-18 04:17:09'), -(14553,4864,'action complete via WP Cron','2025-10-18 02:17:09','2025-10-18 04:17:09'), -(14554,4866,'action started via WP Cron','2025-10-18 03:17:09','2025-10-18 05:17:09'), -(14555,4867,'action created','2025-10-18 03:17:09','2025-10-18 05:17:09'), -(14556,4866,'action complete via WP Cron','2025-10-18 03:17:09','2025-10-18 05:17:09'), -(14557,4867,'action started via WP Cron','2025-10-18 04:17:09','2025-10-18 06:17:09'), -(14558,4868,'action created','2025-10-18 04:17:09','2025-10-18 06:17:09'), -(14559,4867,'action complete via WP Cron','2025-10-18 04:17:10','2025-10-18 06:17:10'), -(14560,4868,'action started via WP Cron','2025-10-18 05:17:09','2025-10-18 07:17:09'), -(14561,4869,'action created','2025-10-18 05:17:09','2025-10-18 07:17:09'), -(14562,4868,'action complete via WP Cron','2025-10-18 05:17:09','2025-10-18 07:17:09'), -(14563,4869,'action started via WP Cron','2025-10-18 06:17:09','2025-10-18 08:17:09'), -(14564,4870,'action created','2025-10-18 06:17:09','2025-10-18 08:17:09'), -(14565,4869,'action complete via WP Cron','2025-10-18 06:17:09','2025-10-18 08:17:09'), -(14566,4857,'action started via WP Cron','2025-10-18 07:17:09','2025-10-18 09:17:09'), -(14567,4857,'action complete via WP Cron','2025-10-18 07:17:09','2025-10-18 09:17:09'), -(14568,4871,'action created','2025-10-18 07:17:09','2025-10-18 09:17:09'), -(14569,4870,'action started via WP Cron','2025-10-18 07:17:09','2025-10-18 09:17:09'), -(14570,4872,'action created','2025-10-18 07:17:09','2025-10-18 09:17:09'), -(14571,4870,'action complete via WP Cron','2025-10-18 07:17:09','2025-10-18 09:17:09'), -(14572,4836,'action started via WP Cron','2025-10-18 07:18:09','2025-10-18 09:18:09'), -(14573,4836,'action complete via WP Cron','2025-10-18 07:18:10','2025-10-18 09:18:10'), -(14574,4873,'action created','2025-10-18 07:18:10','2025-10-18 09:18:10'), -(14575,4837,'action started via WP Cron','2025-10-18 07:20:09','2025-10-18 09:20:09'), -(14576,4837,'action complete via WP Cron','2025-10-18 07:20:09','2025-10-18 09:20:09'), -(14577,4874,'action created','2025-10-18 07:20:09','2025-10-18 09:20:09'), -(14578,4839,'action started via WP Cron','2025-10-18 07:20:09','2025-10-18 09:20:09'), -(14579,4875,'action created','2025-10-18 07:20:10','2025-10-18 09:20:10'), -(14580,4839,'action complete via WP Cron','2025-10-18 07:20:10','2025-10-18 09:20:10'), -(14581,4876,'action created','2025-10-18 07:20:10','2025-10-18 09:20:10'), -(14582,4875,'action started via WP Cron','2025-10-18 07:21:09','2025-10-18 09:21:09'), -(14583,4875,'action complete via WP Cron','2025-10-18 07:21:09','2025-10-18 09:21:09'), -(14584,4872,'action started via WP Cron','2025-10-18 08:17:09','2025-10-18 10:17:09'), -(14585,4877,'action created','2025-10-18 08:17:09','2025-10-18 10:17:09'), -(14586,4872,'action complete via WP Cron','2025-10-18 08:17:09','2025-10-18 10:17:09'), -(14587,4877,'action started via WP Cron','2025-10-18 09:17:09','2025-10-18 11:17:09'), -(14588,4878,'action created','2025-10-18 09:17:09','2025-10-18 11:17:09'), -(14589,4877,'action complete via WP Cron','2025-10-18 09:17:09','2025-10-18 11:17:09'), -(14590,4843,'action started via WP Cron','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14591,4843,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14592,4879,'action created','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14593,4844,'action started via WP Cron','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14594,4844,'action complete via WP Cron','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14595,4880,'action created','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14596,4878,'action started via WP Cron','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14597,4881,'action created','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14598,4878,'action complete via WP Cron','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14599,4881,'action started via WP Cron','2025-10-18 11:17:09','2025-10-18 13:17:09'), -(14600,4882,'action created','2025-10-18 11:17:09','2025-10-18 13:17:09'), -(14601,4881,'action complete via WP Cron','2025-10-18 11:17:09','2025-10-18 13:17:09'), -(14602,4882,'action started via WP Cron','2025-10-18 12:17:09','2025-10-18 14:17:09'), -(14603,4883,'action created','2025-10-18 12:17:09','2025-10-18 14:17:09'), -(14604,4882,'action complete via WP Cron','2025-10-18 12:17:09','2025-10-18 14:17:09'), -(14605,4883,'action started via WP Cron','2025-10-18 13:17:09','2025-10-18 15:17:09'), -(14606,4884,'action created','2025-10-18 13:17:09','2025-10-18 15:17:09'), -(14607,4883,'action complete via WP Cron','2025-10-18 13:17:10','2025-10-18 15:17:10'), -(14608,4865,'action started via WP Cron','2025-10-18 13:20:09','2025-10-18 15:20:09'), -(14609,4865,'action complete via WP Cron','2025-10-18 13:20:09','2025-10-18 15:20:09'), -(14610,4885,'action created','2025-10-18 13:20:09','2025-10-18 15:20:09'), -(14611,4886,'action created','2025-10-18 13:34:26','2025-10-18 15:34:26'), -(14612,4886,'action started via WP Cron','2025-10-18 13:36:09','2025-10-18 15:36:09'), -(14613,4886,'action complete via WP Cron','2025-10-18 13:36:10','2025-10-18 15:36:10'), -(14614,4887,'action created','2025-10-18 13:36:45','2025-10-18 15:36:45'), -(14615,4887,'action started via WP Cron','2025-10-18 13:38:09','2025-10-18 15:38:09'), -(14616,4887,'action complete via WP Cron','2025-10-18 13:38:09','2025-10-18 15:38:09'), -(14617,4884,'action started via WP Cron','2025-10-18 14:17:09','2025-10-18 16:17:09'), -(14618,4888,'action created','2025-10-18 14:17:09','2025-10-18 16:17:09'), -(14619,4884,'action complete via WP Cron','2025-10-18 14:17:10','2025-10-18 16:17:10'), -(14620,4888,'action started via WP Cron','2025-10-18 15:17:10','2025-10-18 17:17:10'), -(14621,4889,'action created','2025-10-18 15:17:10','2025-10-18 17:17:10'), -(14622,4888,'action complete via WP Cron','2025-10-18 15:17:10','2025-10-18 17:17:10'), -(14623,4889,'action started via WP Cron','2025-10-18 16:17:10','2025-10-18 18:17:10'), -(14624,4890,'action created','2025-10-18 16:17:10','2025-10-18 18:17:10'), -(14625,4889,'action complete via WP Cron','2025-10-18 16:17:10','2025-10-18 18:17:10'), -(14626,4890,'action started via WP Cron','2025-10-18 17:17:10','2025-10-18 19:17:10'), -(14627,4891,'action created','2025-10-18 17:17:10','2025-10-18 19:17:10'), -(14628,4890,'action complete via WP Cron','2025-10-18 17:17:10','2025-10-18 19:17:10'), -(14629,4891,'action started via WP Cron','2025-10-18 18:17:10','2025-10-18 20:17:10'), -(14630,4892,'action created','2025-10-18 18:17:10','2025-10-18 20:17:10'), -(14631,4891,'action complete via WP Cron','2025-10-18 18:17:10','2025-10-18 20:17:10'), -(14632,4854,'action started via WP Cron','2025-10-18 18:39:10','2025-10-18 20:39:10'), -(14633,4854,'action complete via WP Cron','2025-10-18 18:39:10','2025-10-18 20:39:10'), -(14634,4893,'action created','2025-10-18 18:39:10','2025-10-18 20:39:10'), -(14635,4855,'action started via WP Cron','2025-10-18 18:40:10','2025-10-18 20:40:10'), -(14636,4855,'action complete via WP Cron','2025-10-18 18:40:10','2025-10-18 20:40:10'), -(14637,4894,'action created','2025-10-18 18:40:10','2025-10-18 20:40:10'), -(14638,4871,'action started via WP Cron','2025-10-18 19:17:10','2025-10-18 21:17:10'), -(14639,4871,'action complete via WP Cron','2025-10-18 19:17:10','2025-10-18 21:17:10'), -(14640,4895,'action created','2025-10-18 19:17:10','2025-10-18 21:17:10'), -(14641,4892,'action started via WP Cron','2025-10-18 19:17:10','2025-10-18 21:17:10'), -(14642,4896,'action created','2025-10-18 19:17:10','2025-10-18 21:17:10'), -(14643,4892,'action complete via WP Cron','2025-10-18 19:17:10','2025-10-18 21:17:10'), -(14644,4896,'action started via WP Cron','2025-10-18 20:17:10','2025-10-18 22:17:10'), -(14645,4897,'action created','2025-10-18 20:17:10','2025-10-18 22:17:10'), -(14646,4896,'action complete via WP Cron','2025-10-18 20:17:10','2025-10-18 22:17:10'), -(14647,4897,'action started via WP Cron','2025-10-18 21:17:10','2025-10-18 23:17:10'), -(14648,4898,'action created','2025-10-18 21:17:10','2025-10-18 23:17:10'), -(14649,4897,'action complete via WP Cron','2025-10-18 21:17:10','2025-10-18 23:17:10'), -(14650,4860,'action started via WP Cron','2025-10-18 22:03:10','2025-10-19 00:03:10'), -(14651,4860,'action complete via WP Cron','2025-10-18 22:03:10','2025-10-19 00:03:10'), -(14652,4899,'action created','2025-10-18 22:03:10','2025-10-19 00:03:10'), -(14653,4898,'action started via WP Cron','2025-10-18 22:17:10','2025-10-19 00:17:10'), -(14654,4900,'action created','2025-10-18 22:17:10','2025-10-19 00:17:10'), -(14655,4898,'action complete via WP Cron','2025-10-18 22:17:10','2025-10-19 00:17:10'), -(14656,4900,'action started via WP Cron','2025-10-18 23:17:10','2025-10-19 01:17:10'), -(14657,4901,'action created','2025-10-18 23:17:10','2025-10-19 01:17:10'), -(14658,4900,'action complete via WP Cron','2025-10-18 23:17:10','2025-10-19 01:17:10'), -(14659,4901,'action started via WP Cron','2025-10-19 00:17:10','2025-10-19 02:17:10'), -(14660,4902,'action created','2025-10-19 00:17:10','2025-10-19 02:17:10'), -(14661,4901,'action complete via WP Cron','2025-10-19 00:17:10','2025-10-19 02:17:10'), -(14662,4902,'action started via WP Cron','2025-10-19 01:18:10','2025-10-19 03:18:10'), -(14663,4903,'action created','2025-10-19 01:18:10','2025-10-19 03:18:10'), -(14664,4902,'action complete via WP Cron','2025-10-19 01:18:10','2025-10-19 03:18:10'), -(14665,4885,'action started via WP Cron','2025-10-19 01:20:10','2025-10-19 03:20:10'), -(14666,4885,'action complete via WP Cron','2025-10-19 01:20:10','2025-10-19 03:20:10'), -(14667,4904,'action created','2025-10-19 01:20:10','2025-10-19 03:20:10'), -(14668,4903,'action started via WP Cron','2025-10-19 02:18:10','2025-10-19 04:18:10'), -(14669,4905,'action created','2025-10-19 02:18:10','2025-10-19 04:18:10'), -(14670,4903,'action complete via WP Cron','2025-10-19 02:18:10','2025-10-19 04:18:10'), -(14671,4905,'action started via WP Cron','2025-10-19 03:19:10','2025-10-19 05:19:10'), -(14672,4906,'action created','2025-10-19 03:19:10','2025-10-19 05:19:10'), -(14673,4905,'action complete via WP Cron','2025-10-19 03:19:10','2025-10-19 05:19:10'), -(14674,4906,'action started via WP Cron','2025-10-19 04:19:10','2025-10-19 06:19:10'), -(14675,4907,'action created','2025-10-19 04:19:10','2025-10-19 06:19:10'), -(14676,4906,'action complete via WP Cron','2025-10-19 04:19:10','2025-10-19 06:19:10'), -(14677,4907,'action started via WP Cron','2025-10-19 05:19:10','2025-10-19 07:19:10'), -(14678,4908,'action created','2025-10-19 05:19:10','2025-10-19 07:19:10'), -(14679,4907,'action complete via WP Cron','2025-10-19 05:19:10','2025-10-19 07:19:10'), -(14680,4908,'action started via WP Cron','2025-10-19 06:19:10','2025-10-19 08:19:10'), -(14681,4909,'action created','2025-10-19 06:19:10','2025-10-19 08:19:10'), -(14682,4908,'action complete via WP Cron','2025-10-19 06:19:10','2025-10-19 08:19:10'), -(14683,4895,'action started via WP Cron','2025-10-19 07:17:10','2025-10-19 09:17:10'), -(14684,4895,'action complete via WP Cron','2025-10-19 07:17:10','2025-10-19 09:17:10'), -(14685,4910,'action created','2025-10-19 07:17:10','2025-10-19 09:17:10'), -(14686,4873,'action started via WP Cron','2025-10-19 07:18:10','2025-10-19 09:18:10'), -(14687,4873,'action complete via WP Cron','2025-10-19 07:18:10','2025-10-19 09:18:10'), -(14688,4911,'action created','2025-10-19 07:18:10','2025-10-19 09:18:10'), -(14689,4909,'action started via WP Cron','2025-10-19 07:19:10','2025-10-19 09:19:10'), -(14690,4912,'action created','2025-10-19 07:19:10','2025-10-19 09:19:10'), -(14691,4909,'action complete via WP Cron','2025-10-19 07:19:10','2025-10-19 09:19:10'), -(14692,4874,'action started via WP Cron','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14693,4874,'action complete via WP Cron','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14694,4913,'action created','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14695,4876,'action started via WP Cron','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14696,4914,'action created','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14697,4876,'action complete via WP Cron','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14698,4915,'action created','2025-10-19 07:20:10','2025-10-19 09:20:10'), -(14699,4914,'action started via WP Cron','2025-10-19 07:21:10','2025-10-19 09:21:10'), -(14700,4914,'action complete via WP Cron','2025-10-19 07:21:10','2025-10-19 09:21:10'), -(14701,4912,'action started via WP Cron','2025-10-19 08:19:10','2025-10-19 10:19:10'), -(14702,4916,'action created','2025-10-19 08:19:10','2025-10-19 10:19:10'), -(14703,4912,'action complete via WP Cron','2025-10-19 08:19:10','2025-10-19 10:19:10'), -(14704,4916,'action started via WP Cron','2025-10-19 09:19:10','2025-10-19 11:19:10'), -(14705,4917,'action created','2025-10-19 09:19:10','2025-10-19 11:19:10'), -(14706,4916,'action complete via WP Cron','2025-10-19 09:19:10','2025-10-19 11:19:10'), -(14707,4879,'action started via WP Cron','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14708,4879,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14709,4918,'action created','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14710,4880,'action started via WP Cron','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14711,4880,'action complete via WP Cron','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14712,4919,'action created','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14713,4917,'action started via WP Cron','2025-10-19 10:19:10','2025-10-19 12:19:10'), -(14714,4920,'action created','2025-10-19 10:19:10','2025-10-19 12:19:10'), -(14715,4917,'action complete via WP Cron','2025-10-19 10:19:10','2025-10-19 12:19:10'), -(14716,4920,'action started via WP Cron','2025-10-19 11:19:10','2025-10-19 13:19:10'), -(14717,4921,'action created','2025-10-19 11:19:10','2025-10-19 13:19:10'), -(14718,4920,'action complete via WP Cron','2025-10-19 11:19:10','2025-10-19 13:19:10'), -(14719,4921,'action started via WP Cron','2025-10-19 12:19:10','2025-10-19 14:19:10'), -(14720,4922,'action created','2025-10-19 12:19:10','2025-10-19 14:19:10'), -(14721,4921,'action complete via WP Cron','2025-10-19 12:19:10','2025-10-19 14:19:10'), -(14722,4922,'action started via WP Cron','2025-10-19 13:20:10','2025-10-19 15:20:10'), -(14723,4923,'action created','2025-10-19 13:20:10','2025-10-19 15:20:10'), -(14724,4922,'action complete via WP Cron','2025-10-19 13:20:10','2025-10-19 15:20:10'), -(14725,4904,'action started via WP Cron','2025-10-19 13:20:10','2025-10-19 15:20:10'), -(14726,4904,'action complete via WP Cron','2025-10-19 13:20:10','2025-10-19 15:20:10'), -(14727,4924,'action created','2025-10-19 13:20:10','2025-10-19 15:20:10'), -(14728,4923,'action started via WP Cron','2025-10-19 14:20:10','2025-10-19 16:20:10'), -(14729,4925,'action created','2025-10-19 14:20:10','2025-10-19 16:20:10'), -(14730,4923,'action complete via WP Cron','2025-10-19 14:20:10','2025-10-19 16:20:10'), -(14731,4925,'action started via WP Cron','2025-10-19 15:20:10','2025-10-19 17:20:10'), -(14732,4926,'action created','2025-10-19 15:20:10','2025-10-19 17:20:10'), -(14733,4925,'action complete via WP Cron','2025-10-19 15:20:10','2025-10-19 17:20:10'), -(14734,4926,'action started via WP Cron','2025-10-19 16:20:10','2025-10-19 18:20:10'), -(14735,4927,'action created','2025-10-19 16:20:10','2025-10-19 18:20:10'), -(14736,4926,'action complete via WP Cron','2025-10-19 16:20:10','2025-10-19 18:20:10'), -(14737,4927,'action started via WP Cron','2025-10-19 17:20:10','2025-10-19 19:20:10'), -(14738,4928,'action created','2025-10-19 17:20:10','2025-10-19 19:20:10'), -(14739,4927,'action complete via WP Cron','2025-10-19 17:20:10','2025-10-19 19:20:10'), -(14740,4928,'action started via WP Cron','2025-10-19 18:20:10','2025-10-19 20:20:10'), -(14741,4929,'action created','2025-10-19 18:20:10','2025-10-19 20:20:10'), -(14742,4928,'action complete via WP Cron','2025-10-19 18:20:10','2025-10-19 20:20:10'), -(14743,4893,'action started via WP Cron','2025-10-19 18:39:10','2025-10-19 20:39:10'), -(14744,4893,'action complete via WP Cron','2025-10-19 18:39:10','2025-10-19 20:39:10'), -(14745,4930,'action created','2025-10-19 18:39:10','2025-10-19 20:39:10'), -(14746,4894,'action started via WP Cron','2025-10-19 18:40:10','2025-10-19 20:40:10'), -(14747,4894,'action complete via WP Cron','2025-10-19 18:40:10','2025-10-19 20:40:10'), -(14748,4931,'action created','2025-10-19 18:40:10','2025-10-19 20:40:10'), -(14749,4910,'action started via WP Cron','2025-10-19 19:17:10','2025-10-19 21:17:10'), -(14750,4910,'action complete via WP Cron','2025-10-19 19:17:10','2025-10-19 21:17:10'), -(14751,4932,'action created','2025-10-19 19:17:10','2025-10-19 21:17:10'), -(14752,4929,'action started via WP Cron','2025-10-19 19:20:10','2025-10-19 21:20:10'), -(14753,4933,'action created','2025-10-19 19:20:10','2025-10-19 21:20:10'), -(14754,4929,'action complete via WP Cron','2025-10-19 19:20:10','2025-10-19 21:20:10'), -(14755,4933,'action started via WP Cron','2025-10-19 20:20:10','2025-10-19 22:20:10'), -(14756,4934,'action created','2025-10-19 20:20:10','2025-10-19 22:20:10'), -(14757,4933,'action complete via WP Cron','2025-10-19 20:20:10','2025-10-19 22:20:10'), -(14758,4934,'action started via WP Cron','2025-10-19 21:20:10','2025-10-19 23:20:10'), -(14759,4935,'action created','2025-10-19 21:20:10','2025-10-19 23:20:10'), -(14760,4934,'action complete via WP Cron','2025-10-19 21:20:10','2025-10-19 23:20:10'), -(14761,4899,'action started via WP Cron','2025-10-19 22:03:10','2025-10-20 00:03:10'), -(14762,4899,'action complete via WP Cron','2025-10-19 22:03:10','2025-10-20 00:03:10'), -(14763,4936,'action created','2025-10-19 22:03:10','2025-10-20 00:03:10'), -(14764,4935,'action started via WP Cron','2025-10-19 22:21:10','2025-10-20 00:21:10'), -(14765,4937,'action created','2025-10-19 22:21:10','2025-10-20 00:21:10'), -(14766,4935,'action complete via WP Cron','2025-10-19 22:21:10','2025-10-20 00:21:10'), -(14767,4937,'action started via WP Cron','2025-10-19 23:21:10','2025-10-20 01:21:10'), -(14768,4938,'action created','2025-10-19 23:21:10','2025-10-20 01:21:10'), -(14769,4937,'action complete via WP Cron','2025-10-19 23:21:10','2025-10-20 01:21:10'), -(14770,4938,'action started via WP Cron','2025-10-20 00:21:10','2025-10-20 02:21:10'), -(14771,4939,'action created','2025-10-20 00:21:10','2025-10-20 02:21:10'), -(14772,4938,'action complete via WP Cron','2025-10-20 00:21:10','2025-10-20 02:21:10'), -(14773,4924,'action started via WP Cron','2025-10-20 01:20:10','2025-10-20 03:20:10'), -(14774,4924,'action complete via WP Cron','2025-10-20 01:20:10','2025-10-20 03:20:10'), -(14775,4940,'action created','2025-10-20 01:20:10','2025-10-20 03:20:10'), -(14776,4939,'action started via WP Cron','2025-10-20 01:21:10','2025-10-20 03:21:10'), -(14777,4941,'action created','2025-10-20 01:21:10','2025-10-20 03:21:10'), -(14778,4939,'action complete via WP Cron','2025-10-20 01:21:10','2025-10-20 03:21:10'), -(14779,4941,'action started via WP Cron','2025-10-20 02:21:10','2025-10-20 04:21:10'), -(14780,4942,'action created','2025-10-20 02:21:10','2025-10-20 04:21:10'), -(14781,4941,'action complete via WP Cron','2025-10-20 02:21:10','2025-10-20 04:21:10'), -(14782,4942,'action started via WP Cron','2025-10-20 03:21:10','2025-10-20 05:21:10'), -(14783,4943,'action created','2025-10-20 03:21:10','2025-10-20 05:21:10'), -(14784,4942,'action complete via WP Cron','2025-10-20 03:21:10','2025-10-20 05:21:10'), -(14785,4943,'action started via WP Cron','2025-10-20 04:21:10','2025-10-20 06:21:10'), -(14786,4944,'action created','2025-10-20 04:21:10','2025-10-20 06:21:10'), -(14787,4943,'action complete via WP Cron','2025-10-20 04:21:10','2025-10-20 06:21:10'), -(14788,4944,'action started via WP Cron','2025-10-20 05:21:10','2025-10-20 07:21:10'), -(14789,4945,'action created','2025-10-20 05:21:10','2025-10-20 07:21:10'), -(14790,4944,'action complete via WP Cron','2025-10-20 05:21:10','2025-10-20 07:21:10'), -(14791,4945,'action started via WP Cron','2025-10-20 06:22:10','2025-10-20 08:22:10'), -(14792,4946,'action created','2025-10-20 06:22:10','2025-10-20 08:22:10'), -(14793,4945,'action complete via WP Cron','2025-10-20 06:22:10','2025-10-20 08:22:10'), -(14794,4932,'action started via WP Cron','2025-10-20 07:17:10','2025-10-20 09:17:10'), -(14795,4932,'action complete via WP Cron','2025-10-20 07:17:10','2025-10-20 09:17:10'), -(14796,4947,'action created','2025-10-20 07:17:10','2025-10-20 09:17:10'), -(14797,4911,'action started via WP Cron','2025-10-20 07:18:10','2025-10-20 09:18:10'), -(14798,4911,'action complete via WP Cron','2025-10-20 07:18:11','2025-10-20 09:18:11'), -(14799,4948,'action created','2025-10-20 07:18:11','2025-10-20 09:18:11'), -(14800,4913,'action started via WP Cron','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14801,4913,'action complete via WP Cron','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14802,4949,'action created','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14803,4915,'action started via WP Cron','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14804,4950,'action created','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14805,4915,'action complete via WP Cron','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14806,4951,'action created','2025-10-20 07:20:10','2025-10-20 09:20:10'), -(14807,4950,'action started via WP Cron','2025-10-20 07:21:10','2025-10-20 09:21:10'), -(14808,4950,'action complete via WP Cron','2025-10-20 07:21:10','2025-10-20 09:21:10'), -(14809,4946,'action started via WP Cron','2025-10-20 07:23:10','2025-10-20 09:23:10'), -(14810,4952,'action created','2025-10-20 07:23:10','2025-10-20 09:23:10'), -(14811,4946,'action complete via WP Cron','2025-10-20 07:23:10','2025-10-20 09:23:10'), -(14812,4952,'action started via WP Cron','2025-10-20 08:23:10','2025-10-20 10:23:10'), -(14813,4953,'action created','2025-10-20 08:23:10','2025-10-20 10:23:10'), -(14814,4952,'action complete via WP Cron','2025-10-20 08:23:10','2025-10-20 10:23:10'), -(14815,4953,'action started via WP Cron','2025-10-20 09:23:10','2025-10-20 11:23:10'), -(14816,4954,'action created','2025-10-20 09:23:10','2025-10-20 11:23:10'), -(14817,4953,'action complete via WP Cron','2025-10-20 09:23:10','2025-10-20 11:23:10'), -(14818,4918,'action started via WP Cron','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14819,4918,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14820,4955,'action created','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14821,4919,'action started via WP Cron','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14822,4919,'action complete via WP Cron','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14823,4956,'action created','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14824,4954,'action started via WP Cron','2025-10-20 10:23:10','2025-10-20 12:23:10'), -(14825,4957,'action created','2025-10-20 10:23:10','2025-10-20 12:23:10'), -(14826,4954,'action complete via WP Cron','2025-10-20 10:23:10','2025-10-20 12:23:10'), -(14827,4957,'action started via WP Cron','2025-10-20 11:23:10','2025-10-20 13:23:10'), -(14828,4958,'action created','2025-10-20 11:23:10','2025-10-20 13:23:10'), -(14829,4957,'action complete via WP Cron','2025-10-20 11:23:10','2025-10-20 13:23:10'), -(14830,4958,'action started via WP Cron','2025-10-20 12:23:10','2025-10-20 14:23:10'), -(14831,4959,'action created','2025-10-20 12:23:10','2025-10-20 14:23:10'), -(14832,4958,'action complete via WP Cron','2025-10-20 12:23:10','2025-10-20 14:23:10'), -(14833,4940,'action started via WP Cron','2025-10-20 13:20:10','2025-10-20 15:20:10'), -(14834,4940,'action complete via WP Cron','2025-10-20 13:20:10','2025-10-20 15:20:10'), -(14835,4960,'action created','2025-10-20 13:20:10','2025-10-20 15:20:10'), -(14836,4959,'action started via WP Cron','2025-10-20 13:23:10','2025-10-20 15:23:10'), -(14837,4961,'action created','2025-10-20 13:23:10','2025-10-20 15:23:10'), -(14838,4959,'action complete via WP Cron','2025-10-20 13:23:10','2025-10-20 15:23:10'), -(14839,4961,'action started via WP Cron','2025-10-20 14:23:10','2025-10-20 16:23:10'), -(14840,4962,'action created','2025-10-20 14:23:10','2025-10-20 16:23:10'), -(14841,4961,'action complete via WP Cron','2025-10-20 14:23:10','2025-10-20 16:23:10'), -(14842,4962,'action started via WP Cron','2025-10-20 15:23:10','2025-10-20 17:23:10'), -(14843,4963,'action created','2025-10-20 15:23:10','2025-10-20 17:23:10'), -(14844,4962,'action complete via WP Cron','2025-10-20 15:23:10','2025-10-20 17:23:10'), -(14845,4963,'action started via WP Cron','2025-10-20 16:23:10','2025-10-20 18:23:10'), -(14846,4964,'action created','2025-10-20 16:23:10','2025-10-20 18:23:10'), -(14847,4963,'action complete via WP Cron','2025-10-20 16:23:10','2025-10-20 18:23:10'), -(14848,4964,'action started via WP Cron','2025-10-20 17:23:10','2025-10-20 19:23:10'), -(14849,4965,'action created','2025-10-20 17:23:10','2025-10-20 19:23:10'), -(14850,4964,'action complete via WP Cron','2025-10-20 17:23:10','2025-10-20 19:23:10'), -(14851,4965,'action started via WP Cron','2025-10-20 18:23:10','2025-10-20 20:23:10'), -(14852,4966,'action created','2025-10-20 18:23:10','2025-10-20 20:23:10'), -(14853,4965,'action complete via WP Cron','2025-10-20 18:23:10','2025-10-20 20:23:10'), -(14854,4930,'action started via WP Cron','2025-10-20 18:39:10','2025-10-20 20:39:10'), -(14855,4930,'action complete via WP Cron','2025-10-20 18:39:10','2025-10-20 20:39:10'), -(14856,4967,'action created','2025-10-20 18:39:10','2025-10-20 20:39:10'), -(14857,4931,'action started via WP Cron','2025-10-20 18:40:10','2025-10-20 20:40:10'), -(14858,4931,'action complete via WP Cron','2025-10-20 18:40:10','2025-10-20 20:40:10'), -(14859,4968,'action created','2025-10-20 18:40:10','2025-10-20 20:40:10'), -(14860,4947,'action started via WP Cron','2025-10-20 19:18:10','2025-10-20 21:18:10'), -(14861,4947,'action complete via WP Cron','2025-10-20 19:18:10','2025-10-20 21:18:10'), -(14862,4969,'action created','2025-10-20 19:18:10','2025-10-20 21:18:10'), -(14863,4966,'action started via WP Cron','2025-10-20 19:23:10','2025-10-20 21:23:10'), -(14864,4970,'action created','2025-10-20 19:23:10','2025-10-20 21:23:10'), -(14865,4966,'action complete via WP Cron','2025-10-20 19:23:10','2025-10-20 21:23:10'), -(14866,4970,'action started via WP Cron','2025-10-20 20:23:10','2025-10-20 22:23:10'), -(14867,4971,'action created','2025-10-20 20:23:10','2025-10-20 22:23:10'), -(14868,4970,'action complete via WP Cron','2025-10-20 20:23:10','2025-10-20 22:23:10'), -(14869,4971,'action started via WP Cron','2025-10-20 21:24:10','2025-10-20 23:24:10'), -(14870,4972,'action created','2025-10-20 21:24:10','2025-10-20 23:24:10'), -(14871,4971,'action complete via WP Cron','2025-10-20 21:24:10','2025-10-20 23:24:10'), -(14872,4936,'action started via WP Cron','2025-10-20 22:03:10','2025-10-21 00:03:10'), -(14873,4936,'action complete via WP Cron','2025-10-20 22:03:10','2025-10-21 00:03:10'), -(14874,4973,'action created','2025-10-20 22:03:10','2025-10-21 00:03:10'), -(14875,4972,'action started via WP Cron','2025-10-20 22:24:10','2025-10-21 00:24:10'), -(14876,4974,'action created','2025-10-20 22:24:10','2025-10-21 00:24:10'), -(14877,4972,'action complete via WP Cron','2025-10-20 22:24:10','2025-10-21 00:24:10'), -(14878,4974,'action started via WP Cron','2025-10-20 23:24:10','2025-10-21 01:24:10'), -(14879,4975,'action created','2025-10-20 23:24:10','2025-10-21 01:24:10'), -(14880,4974,'action complete via WP Cron','2025-10-20 23:24:10','2025-10-21 01:24:10'), -(14881,4975,'action started via WP Cron','2025-10-21 00:24:10','2025-10-21 02:24:10'), -(14882,4976,'action created','2025-10-21 00:24:10','2025-10-21 02:24:10'), -(14883,4975,'action complete via WP Cron','2025-10-21 00:24:10','2025-10-21 02:24:10'), -(14884,4960,'action started via WP Cron','2025-10-21 01:20:10','2025-10-21 03:20:10'), -(14885,4960,'action complete via WP Cron','2025-10-21 01:20:10','2025-10-21 03:20:10'), -(14886,4977,'action created','2025-10-21 01:20:10','2025-10-21 03:20:10'), -(14887,4976,'action started via WP Cron','2025-10-21 01:24:10','2025-10-21 03:24:10'), -(14888,4978,'action created','2025-10-21 01:24:10','2025-10-21 03:24:10'), -(14889,4976,'action complete via WP Cron','2025-10-21 01:24:10','2025-10-21 03:24:10'), -(14890,4978,'action started via WP Cron','2025-10-21 02:24:10','2025-10-21 04:24:10'), -(14891,4979,'action created','2025-10-21 02:24:10','2025-10-21 04:24:10'), -(14892,4978,'action complete via WP Cron','2025-10-21 02:24:10','2025-10-21 04:24:10'), -(14893,4979,'action started via WP Cron','2025-10-21 03:24:10','2025-10-21 05:24:10'), -(14894,4980,'action created','2025-10-21 03:24:10','2025-10-21 05:24:10'), -(14895,4979,'action complete via WP Cron','2025-10-21 03:24:10','2025-10-21 05:24:10'), -(14896,4716,'action started via WP Cron','2025-10-21 04:06:10','2025-10-21 06:06:10'), -(14897,4716,'action complete via WP Cron','2025-10-21 04:06:10','2025-10-21 06:06:10'), -(14898,4981,'action created','2025-10-21 04:06:10','2025-10-21 06:06:10'), -(14899,4980,'action started via WP Cron','2025-10-21 04:24:10','2025-10-21 06:24:10'), -(14900,4982,'action created','2025-10-21 04:24:10','2025-10-21 06:24:10'), -(14901,4980,'action complete via WP Cron','2025-10-21 04:24:10','2025-10-21 06:24:10'), -(14902,4982,'action started via WP Cron','2025-10-21 05:24:10','2025-10-21 07:24:10'), -(14903,4983,'action created','2025-10-21 05:24:10','2025-10-21 07:24:10'), -(14904,4982,'action complete via WP Cron','2025-10-21 05:24:11','2025-10-21 07:24:11'), -(14905,4983,'action started via WP Cron','2025-10-21 06:24:10','2025-10-21 08:24:10'), -(14906,4984,'action created','2025-10-21 06:24:10','2025-10-21 08:24:10'), -(14907,4983,'action complete via WP Cron','2025-10-21 06:24:11','2025-10-21 08:24:11'), -(14908,4969,'action started via WP Cron','2025-10-21 07:18:11','2025-10-21 09:18:11'), -(14909,4969,'action complete via WP Cron','2025-10-21 07:18:11','2025-10-21 09:18:11'), -(14910,4985,'action created','2025-10-21 07:18:11','2025-10-21 09:18:11'), -(14911,4948,'action started via WP Cron','2025-10-21 07:18:11','2025-10-21 09:18:11'), -(14912,4948,'action complete via WP Cron','2025-10-21 07:18:11','2025-10-21 09:18:11'), -(14913,4986,'action created','2025-10-21 07:18:11','2025-10-21 09:18:11'), -(14914,4949,'action started via WP Cron','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14915,4949,'action complete via WP Cron','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14916,4987,'action created','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14917,4951,'action started via WP Cron','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14918,4988,'action created','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14919,4951,'action complete via WP Cron','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14920,4989,'action created','2025-10-21 07:20:11','2025-10-21 09:20:11'), -(14921,4988,'action started via WP Cron','2025-10-21 07:21:11','2025-10-21 09:21:11'), -(14922,4988,'action complete via WP Cron','2025-10-21 07:21:11','2025-10-21 09:21:11'), -(14923,4984,'action started via WP Cron','2025-10-21 07:24:11','2025-10-21 09:24:11'), -(14924,4990,'action created','2025-10-21 07:24:11','2025-10-21 09:24:11'), -(14925,4984,'action complete via WP Cron','2025-10-21 07:24:11','2025-10-21 09:24:11'), -(14926,4990,'action started via WP Cron','2025-10-21 08:25:11','2025-10-21 10:25:11'), -(14927,4991,'action created','2025-10-21 08:25:11','2025-10-21 10:25:11'), -(14928,4990,'action complete via WP Cron','2025-10-21 08:25:11','2025-10-21 10:25:11'), -(14929,4991,'action started via WP Cron','2025-10-21 09:25:11','2025-10-21 11:25:11'), -(14930,4992,'action created','2025-10-21 09:25:11','2025-10-21 11:25:11'), -(14931,4991,'action complete via WP Cron','2025-10-21 09:25:11','2025-10-21 11:25:11'), -(14932,4955,'action started via WP Cron','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14933,4955,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14934,4955,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14935,4956,'action started via WP Cron','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14936,4956,'action complete via WP Cron','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14937,4993,'action created','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14938,4992,'action started via WP Cron','2025-10-21 10:25:11','2025-10-21 12:25:11'), -(14939,4994,'action created','2025-10-21 10:25:11','2025-10-21 12:25:11'), -(14940,4992,'action complete via WP Cron','2025-10-21 10:25:11','2025-10-21 12:25:11'), -(14941,4994,'action started via WP Cron','2025-10-21 11:25:11','2025-10-21 13:25:11'), -(14942,4995,'action created','2025-10-21 11:25:11','2025-10-21 13:25:11'), -(14943,4994,'action complete via WP Cron','2025-10-21 11:25:11','2025-10-21 13:25:11'), -(14944,4995,'action started via WP Cron','2025-10-21 12:25:11','2025-10-21 14:25:11'), -(14945,4996,'action created','2025-10-21 12:25:11','2025-10-21 14:25:11'), -(14946,4995,'action complete via WP Cron','2025-10-21 12:25:11','2025-10-21 14:25:11'), -(14947,4977,'action started via WP Cron','2025-10-21 13:20:11','2025-10-21 15:20:11'), -(14948,4977,'action complete via WP Cron','2025-10-21 13:20:11','2025-10-21 15:20:11'), -(14949,4997,'action created','2025-10-21 13:20:11','2025-10-21 15:20:11'), -(14950,4996,'action started via WP Cron','2025-10-21 13:25:11','2025-10-21 15:25:11'), -(14951,4998,'action created','2025-10-21 13:25:11','2025-10-21 15:25:11'), -(14952,4996,'action complete via WP Cron','2025-10-21 13:25:11','2025-10-21 15:25:11'), -(14953,4998,'action started via WP Cron','2025-10-21 14:25:11','2025-10-21 16:25:11'), -(14954,4999,'action created','2025-10-21 14:25:11','2025-10-21 16:25:11'), -(14955,4998,'action complete via WP Cron','2025-10-21 14:25:11','2025-10-21 16:25:11'), -(14956,4999,'action started via WP Cron','2025-10-21 15:25:11','2025-10-21 17:25:11'), -(14957,5000,'action created','2025-10-21 15:25:11','2025-10-21 17:25:11'), -(14958,4999,'action complete via WP Cron','2025-10-21 15:25:11','2025-10-21 17:25:11'), -(14959,5000,'action started via WP Cron','2025-10-21 16:25:11','2025-10-21 18:25:11'), -(14960,5001,'action created','2025-10-21 16:25:11','2025-10-21 18:25:11'), -(14961,5000,'action complete via WP Cron','2025-10-21 16:25:11','2025-10-21 18:25:11'), -(14962,5001,'action started via WP Cron','2025-10-21 17:25:11','2025-10-21 19:25:11'), -(14963,5002,'action created','2025-10-21 17:25:11','2025-10-21 19:25:11'), -(14964,5001,'action complete via WP Cron','2025-10-21 17:25:11','2025-10-21 19:25:11'), -(14965,5002,'action started via WP Cron','2025-10-21 18:25:11','2025-10-21 20:25:11'), -(14966,5003,'action created','2025-10-21 18:25:11','2025-10-21 20:25:11'), -(14967,5002,'action complete via WP Cron','2025-10-21 18:25:11','2025-10-21 20:25:11'), -(14968,4967,'action started via WP Cron','2025-10-21 18:39:11','2025-10-21 20:39:11'), -(14969,4967,'action complete via WP Cron','2025-10-21 18:39:11','2025-10-21 20:39:11'), -(14970,5004,'action created','2025-10-21 18:39:11','2025-10-21 20:39:11'), -(14971,4968,'action started via WP Cron','2025-10-21 18:40:11','2025-10-21 20:40:11'), -(14972,4968,'action complete via WP Cron','2025-10-21 18:40:11','2025-10-21 20:40:11'), -(14973,5005,'action created','2025-10-21 18:40:11','2025-10-21 20:40:11'), -(14974,4985,'action started via WP Cron','2025-10-21 19:18:11','2025-10-21 21:18:11'), -(14975,4985,'action complete via WP Cron','2025-10-21 19:18:11','2025-10-21 21:18:11'), -(14976,5006,'action created','2025-10-21 19:18:11','2025-10-21 21:18:11'), -(14977,5003,'action started via WP Cron','2025-10-21 19:25:11','2025-10-21 21:25:11'), -(14978,5007,'action created','2025-10-21 19:25:11','2025-10-21 21:25:11'), -(14979,5003,'action complete via WP Cron','2025-10-21 19:25:11','2025-10-21 21:25:11'), -(14980,5007,'action started via WP Cron','2025-10-21 20:25:11','2025-10-21 22:25:11'), -(14981,5008,'action created','2025-10-21 20:25:11','2025-10-21 22:25:11'), -(14982,5007,'action complete via WP Cron','2025-10-21 20:25:11','2025-10-21 22:25:11'), -(14983,5008,'action started via WP Cron','2025-10-21 21:25:11','2025-10-21 23:25:11'), -(14984,5009,'action created','2025-10-21 21:25:11','2025-10-21 23:25:11'), -(14985,5008,'action complete via WP Cron','2025-10-21 21:25:11','2025-10-21 23:25:11'), -(14986,4973,'action started via WP Cron','2025-10-21 22:03:11','2025-10-22 00:03:11'), -(14987,4973,'action complete via WP Cron','2025-10-21 22:03:11','2025-10-22 00:03:11'), -(14988,5010,'action created','2025-10-21 22:03:11','2025-10-22 00:03:11'), -(14989,5009,'action started via WP Cron','2025-10-21 22:25:11','2025-10-22 00:25:11'), -(14990,5011,'action created','2025-10-21 22:25:11','2025-10-22 00:25:11'), -(14991,5009,'action complete via WP Cron','2025-10-21 22:25:11','2025-10-22 00:25:11'), -(14992,5011,'action started via WP Cron','2025-10-21 23:25:11','2025-10-22 01:25:11'), -(14993,5012,'action created','2025-10-21 23:25:11','2025-10-22 01:25:11'), -(14994,5011,'action complete via WP Cron','2025-10-21 23:25:11','2025-10-22 01:25:11'), -(14995,5012,'action started via WP Cron','2025-10-22 00:25:11','2025-10-22 02:25:11'), -(14996,5013,'action created','2025-10-22 00:25:11','2025-10-22 02:25:11'), -(14997,5012,'action complete via WP Cron','2025-10-22 00:25:11','2025-10-22 02:25:11'), -(14998,4997,'action started via WP Cron','2025-10-22 01:20:11','2025-10-22 03:20:11'), -(14999,4997,'action complete via WP Cron','2025-10-22 01:20:11','2025-10-22 03:20:11'), -(15000,5014,'action created','2025-10-22 01:20:11','2025-10-22 03:20:11'), -(15001,5013,'action started via WP Cron','2025-10-22 01:25:11','2025-10-22 03:25:11'), -(15002,5015,'action created','2025-10-22 01:25:11','2025-10-22 03:25:11'), -(15003,5013,'action complete via WP Cron','2025-10-22 01:25:11','2025-10-22 03:25:11'), -(15004,5015,'action started via WP Cron','2025-10-22 02:25:11','2025-10-22 04:25:11'), -(15005,5016,'action created','2025-10-22 02:25:11','2025-10-22 04:25:11'), -(15006,5015,'action complete via WP Cron','2025-10-22 02:25:11','2025-10-22 04:25:11'), -(15007,5016,'action started via WP Cron','2025-10-22 03:25:11','2025-10-22 05:25:11'), -(15008,5017,'action created','2025-10-22 03:25:11','2025-10-22 05:25:11'), -(15009,5016,'action complete via WP Cron','2025-10-22 03:25:11','2025-10-22 05:25:11'), -(15010,5017,'action started via WP Cron','2025-10-22 04:25:11','2025-10-22 06:25:11'), -(15011,5018,'action created','2025-10-22 04:25:11','2025-10-22 06:25:11'), -(15012,5017,'action complete via WP Cron','2025-10-22 04:25:11','2025-10-22 06:25:11'), -(15013,5018,'action started via WP Cron','2025-10-22 05:25:11','2025-10-22 07:25:11'), -(15014,5019,'action created','2025-10-22 05:25:11','2025-10-22 07:25:11'), -(15015,5018,'action complete via WP Cron','2025-10-22 05:25:11','2025-10-22 07:25:11'), -(15016,5019,'action started via WP Cron','2025-10-22 06:25:11','2025-10-22 08:25:11'), -(15017,5020,'action created','2025-10-22 06:25:11','2025-10-22 08:25:11'), -(15018,5019,'action complete via WP Cron','2025-10-22 06:25:11','2025-10-22 08:25:11'), -(15019,4986,'action started via WP Cron','2025-10-22 07:18:11','2025-10-22 09:18:11'), -(15020,4986,'action complete via WP Cron','2025-10-22 07:18:12','2025-10-22 09:18:12'), -(15021,5021,'action created','2025-10-22 07:18:12','2025-10-22 09:18:12'), -(15022,5006,'action started via WP Cron','2025-10-22 07:18:12','2025-10-22 09:18:12'), -(15023,5006,'action complete via WP Cron','2025-10-22 07:18:12','2025-10-22 09:18:12'), -(15024,5022,'action created','2025-10-22 07:18:12','2025-10-22 09:18:12'), -(15025,4987,'action started via WP Cron','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15026,4987,'action complete via WP Cron','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15027,5023,'action created','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15028,4989,'action started via WP Cron','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15029,5024,'action created','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15030,5025,'action created','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15031,4989,'action complete via WP Cron','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15032,5026,'action created','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15033,5025,'action started via WP Cron','2025-10-22 07:21:11','2025-10-22 09:21:11'), -(15034,5025,'action complete via WP Cron','2025-10-22 07:21:11','2025-10-22 09:21:11'), -(15035,5020,'action started via WP Cron','2025-10-22 07:25:11','2025-10-22 09:25:11'), -(15036,5027,'action created','2025-10-22 07:25:11','2025-10-22 09:25:11'), -(15037,5020,'action complete via WP Cron','2025-10-22 07:25:11','2025-10-22 09:25:11'), -(15038,5027,'action started via WP Cron','2025-10-22 08:25:11','2025-10-22 10:25:11'), -(15039,5028,'action created','2025-10-22 08:25:11','2025-10-22 10:25:11'), -(15040,5027,'action complete via WP Cron','2025-10-22 08:25:11','2025-10-22 10:25:11'), -(15041,5028,'action started via WP Cron','2025-10-22 09:25:11','2025-10-22 11:25:11'), -(15042,5029,'action created','2025-10-22 09:25:11','2025-10-22 11:25:11'), -(15043,5028,'action complete via WP Cron','2025-10-22 09:25:11','2025-10-22 11:25:11'), -(15044,4993,'action started via WP Cron','2025-10-22 10:17:11','2025-10-22 12:17:11'), -(15045,4993,'action complete via WP Cron','2025-10-22 10:17:11','2025-10-22 12:17:11'), -(15046,5030,'action created','2025-10-22 10:17:11','2025-10-22 12:17:11'), -(15047,5024,'action started via WP Cron','2025-10-22 10:20:11','2025-10-22 12:20:11'), -(15048,5024,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-22 10:20:11','2025-10-22 12:20:11'), -(15049,5024,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-22 10:20:11','2025-10-22 12:20:11'), -(15050,5029,'action started via WP Cron','2025-10-22 10:25:11','2025-10-22 12:25:11'), -(15051,5031,'action created','2025-10-22 10:25:11','2025-10-22 12:25:11'), -(15052,5029,'action complete via WP Cron','2025-10-22 10:25:11','2025-10-22 12:25:11'), -(15053,5031,'action started via WP Cron','2025-10-22 11:25:11','2025-10-22 13:25:11'), -(15054,5032,'action created','2025-10-22 11:25:11','2025-10-22 13:25:11'), -(15055,5031,'action complete via WP Cron','2025-10-22 11:25:11','2025-10-22 13:25:11'), -(15056,5032,'action started via WP Cron','2025-10-22 12:25:11','2025-10-22 14:25:11'), -(15057,5033,'action created','2025-10-22 12:25:11','2025-10-22 14:25:11'), -(15058,5032,'action complete via WP Cron','2025-10-22 12:25:11','2025-10-22 14:25:11'), -(15059,5014,'action started via WP Cron','2025-10-22 13:20:11','2025-10-22 15:20:11'), -(15060,5014,'action complete via WP Cron','2025-10-22 13:20:11','2025-10-22 15:20:11'), -(15061,5034,'action created','2025-10-22 13:20:11','2025-10-22 15:20:11'), -(15062,5033,'action started via WP Cron','2025-10-22 13:25:11','2025-10-22 15:25:11'), -(15063,5035,'action created','2025-10-22 13:25:11','2025-10-22 15:25:11'), -(15064,5033,'action complete via WP Cron','2025-10-22 13:25:11','2025-10-22 15:25:11'), -(15065,5035,'action started via WP Cron','2025-10-22 14:25:11','2025-10-22 16:25:11'), -(15066,5036,'action created','2025-10-22 14:25:11','2025-10-22 16:25:11'), -(15067,5035,'action complete via WP Cron','2025-10-22 14:25:11','2025-10-22 16:25:11'), -(15068,5036,'action started via WP Cron','2025-10-22 15:25:11','2025-10-22 17:25:11'), -(15069,5037,'action created','2025-10-22 15:25:11','2025-10-22 17:25:11'), -(15070,5036,'action complete via WP Cron','2025-10-22 15:25:11','2025-10-22 17:25:11'), -(15071,5037,'action started via WP Cron','2025-10-22 16:25:11','2025-10-22 18:25:11'), -(15072,5038,'action created','2025-10-22 16:25:11','2025-10-22 18:25:11'), -(15073,5037,'action complete via WP Cron','2025-10-22 16:25:11','2025-10-22 18:25:11'), -(15074,5038,'action started via WP Cron','2025-10-22 17:26:11','2025-10-22 19:26:11'), -(15075,5039,'action created','2025-10-22 17:26:11','2025-10-22 19:26:11'), -(15076,5038,'action complete via WP Cron','2025-10-22 17:26:11','2025-10-22 19:26:11'), -(15077,5039,'action started via WP Cron','2025-10-22 18:26:11','2025-10-22 20:26:11'), -(15078,5040,'action created','2025-10-22 18:26:11','2025-10-22 20:26:11'), -(15079,5039,'action complete via WP Cron','2025-10-22 18:26:11','2025-10-22 20:26:11'), -(15080,5004,'action started via WP Cron','2025-10-22 18:39:11','2025-10-22 20:39:11'), -(15081,5004,'action complete via WP Cron','2025-10-22 18:39:11','2025-10-22 20:39:11'), -(15082,5041,'action created','2025-10-22 18:39:11','2025-10-22 20:39:11'), -(15083,5005,'action started via WP Cron','2025-10-22 18:40:11','2025-10-22 20:40:11'), -(15084,5005,'action complete via WP Cron','2025-10-22 18:40:11','2025-10-22 20:40:11'), -(15085,5042,'action created','2025-10-22 18:40:11','2025-10-22 20:40:11'), -(15086,5022,'action started via WP Cron','2025-10-22 19:19:11','2025-10-22 21:19:11'), -(15087,5022,'action complete via WP Cron','2025-10-22 19:19:11','2025-10-22 21:19:11'), -(15088,5043,'action created','2025-10-22 19:19:11','2025-10-22 21:19:11'), -(15089,5040,'action started via WP Cron','2025-10-22 19:26:11','2025-10-22 21:26:11'), -(15090,5044,'action created','2025-10-22 19:26:11','2025-10-22 21:26:11'), -(15091,5040,'action complete via WP Cron','2025-10-22 19:26:11','2025-10-22 21:26:11'), -(15092,5044,'action started via WP Cron','2025-10-22 20:26:11','2025-10-22 22:26:11'), -(15093,5045,'action created','2025-10-22 20:26:11','2025-10-22 22:26:11'), -(15094,5044,'action complete via WP Cron','2025-10-22 20:26:11','2025-10-22 22:26:11'), -(15095,5045,'action started via WP Cron','2025-10-22 21:26:27','2025-10-22 23:26:27'), -(15096,5046,'action created','2025-10-22 21:26:27','2025-10-22 23:26:27'), -(15097,5045,'action complete via WP Cron','2025-10-22 21:26:27','2025-10-22 23:26:27'), -(15098,5010,'action started via WP Cron','2025-10-22 22:03:11','2025-10-23 00:03:11'), -(15099,5010,'action complete via WP Cron','2025-10-22 22:03:11','2025-10-23 00:03:11'), -(15100,5047,'action created','2025-10-22 22:03:11','2025-10-23 00:03:11'), -(15101,5046,'action started via WP Cron','2025-10-22 22:27:11','2025-10-23 00:27:11'), -(15102,5048,'action created','2025-10-22 22:27:11','2025-10-23 00:27:11'), -(15103,5046,'action complete via WP Cron','2025-10-22 22:27:11','2025-10-23 00:27:11'), -(15104,5048,'action started via WP Cron','2025-10-22 23:27:11','2025-10-23 01:27:11'), -(15105,5049,'action created','2025-10-22 23:27:11','2025-10-23 01:27:11'), -(15106,5048,'action complete via WP Cron','2025-10-22 23:27:11','2025-10-23 01:27:11'), -(15107,5049,'action started via WP Cron','2025-10-23 00:27:11','2025-10-23 02:27:11'), -(15108,5050,'action created','2025-10-23 00:27:11','2025-10-23 02:27:11'), -(15109,5049,'action complete via WP Cron','2025-10-23 00:27:11','2025-10-23 02:27:11'), -(15110,5034,'action started via WP Cron','2025-10-23 01:20:11','2025-10-23 03:20:11'), -(15111,5034,'action complete via WP Cron','2025-10-23 01:20:11','2025-10-23 03:20:11'), -(15112,5051,'action created','2025-10-23 01:20:11','2025-10-23 03:20:11'), -(15113,5050,'action started via WP Cron','2025-10-23 01:27:11','2025-10-23 03:27:11'), -(15114,5052,'action created','2025-10-23 01:27:11','2025-10-23 03:27:11'), -(15115,5050,'action complete via WP Cron','2025-10-23 01:27:11','2025-10-23 03:27:11'), -(15116,5052,'action started via WP Cron','2025-10-23 02:27:11','2025-10-23 04:27:11'), -(15117,5053,'action created','2025-10-23 02:27:11','2025-10-23 04:27:11'), -(15118,5052,'action complete via WP Cron','2025-10-23 02:27:11','2025-10-23 04:27:11'), -(15119,5053,'action started via WP Cron','2025-10-23 03:27:11','2025-10-23 05:27:11'), -(15120,5054,'action created','2025-10-23 03:27:11','2025-10-23 05:27:11'), -(15121,5053,'action complete via WP Cron','2025-10-23 03:27:11','2025-10-23 05:27:11'), -(15122,5054,'action started via WP Cron','2025-10-23 04:27:11','2025-10-23 06:27:11'), -(15123,5055,'action created','2025-10-23 04:27:11','2025-10-23 06:27:11'), -(15124,5054,'action complete via WP Cron','2025-10-23 04:27:11','2025-10-23 06:27:11'), -(15125,5055,'action started via WP Cron','2025-10-23 05:27:11','2025-10-23 07:27:11'), -(15126,5056,'action created','2025-10-23 05:27:11','2025-10-23 07:27:11'), -(15127,5055,'action complete via WP Cron','2025-10-23 05:27:11','2025-10-23 07:27:11'), -(15128,5056,'action started via WP Cron','2025-10-23 06:27:11','2025-10-23 08:27:11'), -(15129,5057,'action created','2025-10-23 06:27:11','2025-10-23 08:27:11'), -(15130,5056,'action complete via WP Cron','2025-10-23 06:27:11','2025-10-23 08:27:11'), -(15131,4482,'action started via WP Cron','2025-10-23 07:14:11','2025-10-23 09:14:11'), -(15132,4482,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-23 07:14:11','2025-10-23 09:14:11'), -(15133,5058,'action created','2025-10-23 07:14:11','2025-10-23 09:14:11'), -(15134,5021,'action started via WP Cron','2025-10-23 07:19:11','2025-10-23 09:19:11'), -(15135,5021,'action complete via WP Cron','2025-10-23 07:19:12','2025-10-23 09:19:12'), -(15136,5059,'action created','2025-10-23 07:19:12','2025-10-23 09:19:12'), -(15137,5043,'action started via WP Cron','2025-10-23 07:19:12','2025-10-23 09:19:12'), -(15138,5043,'action complete via WP Cron','2025-10-23 07:19:12','2025-10-23 09:19:12'), -(15139,5060,'action created','2025-10-23 07:19:12','2025-10-23 09:19:12'), -(15140,5023,'action started via WP Cron','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15141,5023,'action complete via WP Cron','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15142,5061,'action created','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15143,5026,'action started via WP Cron','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15144,5062,'action created','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15145,5063,'action created','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15146,5026,'action complete via WP Cron','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15147,5064,'action created','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15148,5063,'action started via WP Cron','2025-10-23 07:21:11','2025-10-23 09:21:11'), -(15149,5063,'action complete via WP Cron','2025-10-23 07:21:11','2025-10-23 09:21:11'), -(15150,5057,'action started via WP Cron','2025-10-23 07:27:11','2025-10-23 09:27:11'), -(15151,5065,'action created','2025-10-23 07:27:11','2025-10-23 09:27:11'), -(15152,5057,'action complete via WP Cron','2025-10-23 07:27:11','2025-10-23 09:27:11'), -(15153,5065,'action started via WP Cron','2025-10-23 08:27:11','2025-10-23 10:27:11'), -(15154,5066,'action created','2025-10-23 08:27:11','2025-10-23 10:27:11'), -(15155,5065,'action complete via WP Cron','2025-10-23 08:27:11','2025-10-23 10:27:11'), -(15156,5066,'action started via WP Cron','2025-10-23 09:27:11','2025-10-23 11:27:11'), -(15157,5067,'action created','2025-10-23 09:27:11','2025-10-23 11:27:11'), -(15158,5066,'action complete via WP Cron','2025-10-23 09:27:11','2025-10-23 11:27:11'), -(15159,5030,'action started via WP Cron','2025-10-23 10:17:11','2025-10-23 12:17:11'), -(15160,5030,'action complete via WP Cron','2025-10-23 10:17:11','2025-10-23 12:17:11'), -(15161,5068,'action created','2025-10-23 10:17:11','2025-10-23 12:17:11'), -(15162,5062,'action started via WP Cron','2025-10-23 10:20:11','2025-10-23 12:20:11'), -(15163,5062,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-23 10:20:11','2025-10-23 12:20:11'), -(15164,5062,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-23 10:20:11','2025-10-23 12:20:11'), -(15165,5067,'action started via WP Cron','2025-10-23 10:27:11','2025-10-23 12:27:11'), -(15166,5069,'action created','2025-10-23 10:27:11','2025-10-23 12:27:11'), -(15167,5067,'action complete via WP Cron','2025-10-23 10:27:11','2025-10-23 12:27:11'), -(15168,5069,'action started via WP Cron','2025-10-23 11:27:11','2025-10-23 13:27:11'), -(15169,5070,'action created','2025-10-23 11:27:11','2025-10-23 13:27:11'), -(15170,5069,'action complete via WP Cron','2025-10-23 11:27:11','2025-10-23 13:27:11'), -(15171,5070,'action started via WP Cron','2025-10-23 12:27:32','2025-10-23 14:27:32'), -(15172,5071,'action created','2025-10-23 12:27:32','2025-10-23 14:27:32'), -(15173,5070,'action complete via WP Cron','2025-10-23 12:27:32','2025-10-23 14:27:32'), -(15174,5051,'action started via WP Cron','2025-10-23 13:20:11','2025-10-23 15:20:11'), -(15175,5051,'action complete via WP Cron','2025-10-23 13:20:11','2025-10-23 15:20:11'), -(15176,5072,'action created','2025-10-23 13:20:11','2025-10-23 15:20:11'), -(15177,5071,'action started via WP Cron','2025-10-23 13:28:11','2025-10-23 15:28:11'), -(15178,5073,'action created','2025-10-23 13:28:11','2025-10-23 15:28:11'), -(15179,5071,'action complete via WP Cron','2025-10-23 13:28:11','2025-10-23 15:28:11'), -(15180,5073,'action started via WP Cron','2025-10-23 14:28:11','2025-10-23 16:28:11'), -(15181,5074,'action created','2025-10-23 14:28:11','2025-10-23 16:28:11'), -(15182,5073,'action complete via WP Cron','2025-10-23 14:28:11','2025-10-23 16:28:11'), -(15183,5074,'action started via WP Cron','2025-10-23 15:28:11','2025-10-23 17:28:11'), -(15184,5075,'action created','2025-10-23 15:28:11','2025-10-23 17:28:11'), -(15185,5074,'action complete via WP Cron','2025-10-23 15:28:11','2025-10-23 17:28:11'), -(15186,5075,'action started via WP Cron','2025-10-23 16:28:11','2025-10-23 18:28:11'), -(15187,5076,'action created','2025-10-23 16:28:11','2025-10-23 18:28:11'), -(15188,5075,'action complete via WP Cron','2025-10-23 16:28:11','2025-10-23 18:28:11'), -(15189,5076,'action started via WP Cron','2025-10-23 17:28:11','2025-10-23 19:28:11'), -(15190,5077,'action created','2025-10-23 17:28:11','2025-10-23 19:28:11'), -(15191,5076,'action complete via WP Cron','2025-10-23 17:28:11','2025-10-23 19:28:11'), -(15192,5077,'action started via WP Cron','2025-10-23 18:29:11','2025-10-23 20:29:11'), -(15193,5078,'action created','2025-10-23 18:29:11','2025-10-23 20:29:11'), -(15194,5077,'action complete via WP Cron','2025-10-23 18:29:11','2025-10-23 20:29:11'), -(15195,5041,'action started via WP Cron','2025-10-23 18:39:11','2025-10-23 20:39:11'), -(15196,5041,'action complete via WP Cron','2025-10-23 18:39:11','2025-10-23 20:39:11'), -(15197,5079,'action created','2025-10-23 18:39:11','2025-10-23 20:39:11'), -(15198,5042,'action started via WP Cron','2025-10-23 18:40:11','2025-10-23 20:40:11'), -(15199,5042,'action complete via WP Cron','2025-10-23 18:40:11','2025-10-23 20:40:11'), -(15200,5080,'action created','2025-10-23 18:40:11','2025-10-23 20:40:11'), -(15201,5060,'action started via WP Cron','2025-10-23 19:20:11','2025-10-23 21:20:11'), -(15202,5060,'action complete via WP Cron','2025-10-23 19:20:11','2025-10-23 21:20:11'), -(15203,5081,'action created','2025-10-23 19:20:11','2025-10-23 21:20:11'), -(15204,5078,'action started via WP Cron','2025-10-23 19:29:11','2025-10-23 21:29:11'), -(15205,5082,'action created','2025-10-23 19:29:11','2025-10-23 21:29:11'), -(15206,5078,'action complete via WP Cron','2025-10-23 19:29:11','2025-10-23 21:29:11'), -(15207,5082,'action started via WP Cron','2025-10-23 20:29:11','2025-10-23 22:29:11'), -(15208,5083,'action created','2025-10-23 20:29:11','2025-10-23 22:29:11'), -(15209,5082,'action complete via WP Cron','2025-10-23 20:29:11','2025-10-23 22:29:11'), -(15210,5083,'action started via WP Cron','2025-10-23 21:29:11','2025-10-23 23:29:11'), -(15211,5084,'action created','2025-10-23 21:29:11','2025-10-23 23:29:11'), -(15212,5083,'action complete via WP Cron','2025-10-23 21:29:11','2025-10-23 23:29:11'), -(15213,5047,'action started via WP Cron','2025-10-23 22:03:11','2025-10-24 00:03:11'), -(15214,5047,'action complete via WP Cron','2025-10-23 22:03:11','2025-10-24 00:03:11'), -(15215,5085,'action created','2025-10-23 22:03:11','2025-10-24 00:03:11'), -(15216,5084,'action started via WP Cron','2025-10-23 22:29:11','2025-10-24 00:29:11'), -(15217,5086,'action created','2025-10-23 22:29:11','2025-10-24 00:29:11'), -(15218,5084,'action complete via WP Cron','2025-10-23 22:29:11','2025-10-24 00:29:11'), -(15219,5086,'action started via WP Cron','2025-10-23 23:29:11','2025-10-24 01:29:11'), -(15220,5087,'action created','2025-10-23 23:29:11','2025-10-24 01:29:11'), -(15221,5086,'action complete via WP Cron','2025-10-23 23:29:11','2025-10-24 01:29:11'), -(15222,5087,'action started via WP Cron','2025-10-24 00:29:11','2025-10-24 02:29:11'), -(15223,5088,'action created','2025-10-24 00:29:11','2025-10-24 02:29:11'), -(15224,5087,'action complete via WP Cron','2025-10-24 00:29:11','2025-10-24 02:29:11'), -(15225,5072,'action started via WP Cron','2025-10-24 01:20:11','2025-10-24 03:20:11'), -(15226,5072,'action complete via WP Cron','2025-10-24 01:20:11','2025-10-24 03:20:11'), -(15227,5089,'action created','2025-10-24 01:20:11','2025-10-24 03:20:11'), -(15228,5088,'action started via WP Cron','2025-10-24 01:29:11','2025-10-24 03:29:11'), -(15229,5090,'action created','2025-10-24 01:29:11','2025-10-24 03:29:11'), -(15230,5088,'action complete via WP Cron','2025-10-24 01:29:11','2025-10-24 03:29:11'), -(15231,5090,'action started via WP Cron','2025-10-24 02:29:11','2025-10-24 04:29:11'), -(15232,5091,'action created','2025-10-24 02:29:11','2025-10-24 04:29:11'), -(15233,5090,'action complete via WP Cron','2025-10-24 02:29:11','2025-10-24 04:29:11'), -(15234,5091,'action started via WP Cron','2025-10-24 03:29:11','2025-10-24 05:29:11'), -(15235,5092,'action created','2025-10-24 03:29:11','2025-10-24 05:29:11'), -(15236,5091,'action complete via WP Cron','2025-10-24 03:29:11','2025-10-24 05:29:11'), -(15237,5092,'action started via WP Cron','2025-10-24 04:29:11','2025-10-24 06:29:11'), -(15238,5093,'action created','2025-10-24 04:29:11','2025-10-24 06:29:11'), -(15239,5092,'action complete via WP Cron','2025-10-24 04:29:11','2025-10-24 06:29:11'), -(15240,5093,'action started via WP Cron','2025-10-24 05:30:11','2025-10-24 07:30:11'), -(15241,5094,'action created','2025-10-24 05:30:11','2025-10-24 07:30:11'), -(15242,5093,'action complete via WP Cron','2025-10-24 05:30:12','2025-10-24 07:30:12'), -(15243,5094,'action started via WP Cron','2025-10-24 06:30:11','2025-10-24 08:30:11'), -(15244,5095,'action created','2025-10-24 06:30:11','2025-10-24 08:30:11'), -(15245,5094,'action complete via WP Cron','2025-10-24 06:30:12','2025-10-24 08:30:12'), -(15246,5096,'action created','2025-10-24 06:59:46','2025-10-24 08:59:46'), -(15247,5096,'action started via WP Cron','2025-10-24 07:00:34','2025-10-24 09:00:34'), -(15248,5096,'action complete via WP Cron','2025-10-24 07:00:34','2025-10-24 09:00:34'), -(15249,5059,'action started via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15250,5059,'action complete via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15251,5097,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15252,5061,'action started via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15253,5061,'action complete via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15254,5098,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15255,5081,'action started via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15256,5081,'action complete via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15257,5099,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15258,5064,'action started via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15259,5100,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15260,5101,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15261,5064,'action complete via WP Cron','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15262,5102,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15263,5101,'action started via WP Cron','2025-10-24 07:21:12','2025-10-24 09:21:12'), -(15264,5101,'action complete via WP Cron','2025-10-24 07:21:12','2025-10-24 09:21:12'), -(15265,5095,'action started via WP Cron','2025-10-24 07:30:12','2025-10-24 09:30:12'), -(15266,5103,'action created','2025-10-24 07:30:12','2025-10-24 09:30:12'), -(15267,5095,'action complete via WP Cron','2025-10-24 07:30:12','2025-10-24 09:30:12'), -(15268,5103,'action started via WP Cron','2025-10-24 08:30:12','2025-10-24 10:30:12'), -(15269,5104,'action created','2025-10-24 08:30:12','2025-10-24 10:30:12'), -(15270,5103,'action complete via WP Cron','2025-10-24 08:30:12','2025-10-24 10:30:12'), -(15271,5104,'action started via WP Cron','2025-10-24 09:30:12','2025-10-24 11:30:12'), -(15272,5105,'action created','2025-10-24 09:30:12','2025-10-24 11:30:12'), -(15273,5104,'action complete via WP Cron','2025-10-24 09:30:12','2025-10-24 11:30:12'), -(15274,5068,'action started via WP Cron','2025-10-24 10:17:12','2025-10-24 12:17:12'), -(15275,5068,'action complete via WP Cron','2025-10-24 10:17:12','2025-10-24 12:17:12'), -(15276,5106,'action created','2025-10-24 10:17:12','2025-10-24 12:17:12'), -(15277,5100,'action started via WP Cron','2025-10-24 10:21:12','2025-10-24 12:21:12'), -(15278,5100,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-24 10:21:12','2025-10-24 12:21:12'), -(15279,5100,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-24 10:21:12','2025-10-24 12:21:12'), -(15280,5105,'action started via WP Cron','2025-10-24 10:30:12','2025-10-24 12:30:12'), -(15281,5107,'action created','2025-10-24 10:30:12','2025-10-24 12:30:12'), -(15282,5105,'action complete via WP Cron','2025-10-24 10:30:12','2025-10-24 12:30:12'), -(15283,5107,'action started via WP Cron','2025-10-24 11:30:12','2025-10-24 13:30:12'), -(15284,5108,'action created','2025-10-24 11:30:12','2025-10-24 13:30:12'), -(15285,5107,'action complete via WP Cron','2025-10-24 11:30:12','2025-10-24 13:30:12'), -(15286,5108,'action started via WP Cron','2025-10-24 12:30:12','2025-10-24 14:30:12'), -(15287,5109,'action created','2025-10-24 12:30:12','2025-10-24 14:30:12'), -(15288,5108,'action complete via WP Cron','2025-10-24 12:30:12','2025-10-24 14:30:12'), -(15289,5089,'action started via WP Cron','2025-10-24 13:20:12','2025-10-24 15:20:12'), -(15290,5089,'action complete via WP Cron','2025-10-24 13:20:12','2025-10-24 15:20:12'), -(15291,5110,'action created','2025-10-24 13:20:12','2025-10-24 15:20:12'), -(15292,5109,'action started via WP Cron','2025-10-24 13:30:12','2025-10-24 15:30:12'), -(15293,5111,'action created','2025-10-24 13:30:12','2025-10-24 15:30:12'), -(15294,5109,'action complete via WP Cron','2025-10-24 13:30:12','2025-10-24 15:30:12'), -(15295,5111,'action started via WP Cron','2025-10-24 14:30:12','2025-10-24 16:30:12'), -(15296,5112,'action created','2025-10-24 14:30:12','2025-10-24 16:30:12'), -(15297,5111,'action complete via WP Cron','2025-10-24 14:30:12','2025-10-24 16:30:12'), -(15298,5112,'action started via WP Cron','2025-10-24 15:30:12','2025-10-24 17:30:12'), -(15299,5113,'action created','2025-10-24 15:30:12','2025-10-24 17:30:12'), -(15300,5112,'action complete via WP Cron','2025-10-24 15:30:12','2025-10-24 17:30:12'), -(15301,5113,'action started via WP Cron','2025-10-24 16:30:12','2025-10-24 18:30:12'), -(15302,5114,'action created','2025-10-24 16:30:12','2025-10-24 18:30:12'), -(15303,5113,'action complete via WP Cron','2025-10-24 16:30:12','2025-10-24 18:30:12'), -(15304,5114,'action started via WP Cron','2025-10-24 17:30:12','2025-10-24 19:30:12'), -(15305,5115,'action created','2025-10-24 17:30:12','2025-10-24 19:30:12'), -(15306,5114,'action complete via WP Cron','2025-10-24 17:30:12','2025-10-24 19:30:12'), -(15307,5116,'action created','2025-10-24 17:36:03','2025-10-24 19:36:03'), -(15308,5116,'action started via WP Cron','2025-10-24 17:37:12','2025-10-24 19:37:12'), -(15309,5116,'action complete via WP Cron','2025-10-24 17:37:12','2025-10-24 19:37:12'), -(15310,5115,'action started via WP Cron','2025-10-24 18:30:12','2025-10-24 20:30:12'), -(15311,5117,'action created','2025-10-24 18:30:12','2025-10-24 20:30:12'), -(15312,5115,'action complete via WP Cron','2025-10-24 18:30:12','2025-10-24 20:30:12'), -(15313,5079,'action started via WP Cron','2025-10-24 18:40:04','2025-10-24 20:40:04'), -(15314,5079,'action complete via WP Cron','2025-10-24 18:40:04','2025-10-24 20:40:04'), -(15315,5118,'action created','2025-10-24 18:40:04','2025-10-24 20:40:04'), -(15316,5080,'action started via WP Cron','2025-10-24 18:40:52','2025-10-24 20:40:52'), -(15317,5080,'action complete via WP Cron','2025-10-24 18:40:53','2025-10-24 20:40:53'), -(15318,5119,'action created','2025-10-24 18:40:53','2025-10-24 20:40:53'), -(15319,5099,'action started via WP Cron','2025-10-24 19:21:12','2025-10-24 21:21:12'), -(15320,5099,'action complete via WP Cron','2025-10-24 19:21:12','2025-10-24 21:21:12'), -(15321,5120,'action created','2025-10-24 19:21:12','2025-10-24 21:21:12'), -(15322,5117,'action started via WP Cron','2025-10-24 19:30:12','2025-10-24 21:30:12'), -(15323,5121,'action created','2025-10-24 19:30:12','2025-10-24 21:30:12'), -(15324,5117,'action complete via WP Cron','2025-10-24 19:30:12','2025-10-24 21:30:12'), -(15325,5122,'action created','2025-10-24 20:11:12','2025-10-24 22:11:12'), -(15326,5122,'action started via WP Cron','2025-10-24 20:12:12','2025-10-24 22:12:12'), -(15327,5122,'action complete via WP Cron','2025-10-24 20:12:12','2025-10-24 22:12:12'), -(15328,5121,'action started via WP Cron','2025-10-24 20:30:12','2025-10-24 22:30:12'), -(15329,5123,'action created','2025-10-24 20:30:12','2025-10-24 22:30:12'), -(15330,5121,'action complete via WP Cron','2025-10-24 20:30:12','2025-10-24 22:30:12'), -(15331,5123,'action started via WP Cron','2025-10-24 21:30:12','2025-10-24 23:30:12'), -(15332,5124,'action created','2025-10-24 21:30:12','2025-10-24 23:30:12'), -(15333,5123,'action complete via WP Cron','2025-10-24 21:30:12','2025-10-24 23:30:12'), -(15334,5085,'action started via WP Cron','2025-10-24 22:03:12','2025-10-25 00:03:12'), -(15335,5085,'action complete via WP Cron','2025-10-24 22:03:12','2025-10-25 00:03:12'), -(15336,5125,'action created','2025-10-24 22:03:12','2025-10-25 00:03:12'), -(15337,5124,'action started via WP Cron','2025-10-24 22:30:12','2025-10-25 00:30:12'), -(15338,5126,'action created','2025-10-24 22:30:12','2025-10-25 00:30:12'), -(15339,5124,'action complete via WP Cron','2025-10-24 22:30:12','2025-10-25 00:30:12'), -(15340,5126,'action started via WP Cron','2025-10-24 23:30:12','2025-10-25 01:30:12'), -(15341,5127,'action created','2025-10-24 23:30:12','2025-10-25 01:30:12'), -(15342,5126,'action complete via WP Cron','2025-10-24 23:30:12','2025-10-25 01:30:12'), -(15343,5127,'action started via WP Cron','2025-10-25 00:30:12','2025-10-25 02:30:12'), -(15344,5128,'action created','2025-10-25 00:30:12','2025-10-25 02:30:12'), -(15345,5127,'action complete via WP Cron','2025-10-25 00:30:12','2025-10-25 02:30:12'), -(15346,5110,'action started via WP Cron','2025-10-25 01:20:12','2025-10-25 03:20:12'), -(15347,5110,'action complete via WP Cron','2025-10-25 01:20:12','2025-10-25 03:20:12'), -(15348,5129,'action created','2025-10-25 01:20:12','2025-10-25 03:20:12'), -(15349,5128,'action started via WP Cron','2025-10-25 01:30:12','2025-10-25 03:30:12'), -(15350,5130,'action created','2025-10-25 01:30:12','2025-10-25 03:30:12'), -(15351,5128,'action complete via WP Cron','2025-10-25 01:30:12','2025-10-25 03:30:12'), -(15352,5130,'action started via WP Cron','2025-10-25 02:30:12','2025-10-25 04:30:12'), -(15353,5131,'action created','2025-10-25 02:30:12','2025-10-25 04:30:12'), -(15354,5130,'action complete via WP Cron','2025-10-25 02:30:12','2025-10-25 04:30:12'), -(15355,5131,'action started via WP Cron','2025-10-25 03:30:12','2025-10-25 05:30:12'), -(15356,5132,'action created','2025-10-25 03:30:12','2025-10-25 05:30:12'), -(15357,5131,'action complete via WP Cron','2025-10-25 03:30:12','2025-10-25 05:30:12'), -(15358,5132,'action started via WP Cron','2025-10-25 04:30:36','2025-10-25 06:30:36'), -(15359,5133,'action created','2025-10-25 04:30:36','2025-10-25 06:30:36'), -(15360,5132,'action complete via WP Cron','2025-10-25 04:30:36','2025-10-25 06:30:36'), -(15361,5133,'action started via WP Cron','2025-10-25 05:31:12','2025-10-25 07:31:12'), -(15362,5134,'action created','2025-10-25 05:31:12','2025-10-25 07:31:12'), -(15363,5133,'action complete via WP Cron','2025-10-25 05:31:12','2025-10-25 07:31:12'), -(15364,5134,'action started via WP Cron','2025-10-25 06:31:12','2025-10-25 08:31:12'), -(15365,5135,'action created','2025-10-25 06:31:12','2025-10-25 08:31:12'), -(15366,5134,'action complete via WP Cron','2025-10-25 06:31:12','2025-10-25 08:31:12'), -(15367,5097,'action started via WP Cron','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15368,5097,'action complete via WP Cron','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15369,5136,'action created','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15370,5098,'action started via WP Cron','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15371,5098,'action complete via WP Cron','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15372,5137,'action created','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15373,5102,'action started via WP Cron','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15374,5138,'action created','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15375,5139,'action created','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15376,5102,'action complete via WP Cron','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15377,5140,'action created','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15378,5139,'action started via WP Cron','2025-10-25 07:21:12','2025-10-25 09:21:12'), -(15379,5139,'action complete via WP Cron','2025-10-25 07:21:12','2025-10-25 09:21:12'), -(15380,5120,'action started via WP Cron','2025-10-25 07:21:12','2025-10-25 09:21:12'), -(15381,5120,'action complete via WP Cron','2025-10-25 07:21:12','2025-10-25 09:21:12'), -(15382,5141,'action created','2025-10-25 07:21:12','2025-10-25 09:21:12'), -(15383,5135,'action started via WP Cron','2025-10-25 07:31:12','2025-10-25 09:31:12'), -(15384,5142,'action created','2025-10-25 07:31:12','2025-10-25 09:31:12'), -(15385,5135,'action complete via WP Cron','2025-10-25 07:31:12','2025-10-25 09:31:12'), -(15386,5142,'action started via WP Cron','2025-10-25 08:31:12','2025-10-25 10:31:12'), -(15387,5143,'action created','2025-10-25 08:31:12','2025-10-25 10:31:12'), -(15388,5142,'action complete via WP Cron','2025-10-25 08:31:12','2025-10-25 10:31:12'), -(15389,5143,'action started via WP Cron','2025-10-25 09:31:12','2025-10-25 11:31:12'), -(15390,5144,'action created','2025-10-25 09:31:12','2025-10-25 11:31:12'), -(15391,5143,'action complete via WP Cron','2025-10-25 09:31:12','2025-10-25 11:31:12'), -(15392,5106,'action started via WP Cron','2025-10-25 10:17:12','2025-10-25 12:17:12'), -(15393,5106,'action complete via WP Cron','2025-10-25 10:17:12','2025-10-25 12:17:12'), -(15394,5145,'action created','2025-10-25 10:17:12','2025-10-25 12:17:12'), -(15395,5138,'action started via WP Cron','2025-10-25 10:20:12','2025-10-25 12:20:12'), -(15396,5138,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-25 10:20:12','2025-10-25 12:20:12'), -(15397,5138,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-25 10:20:12','2025-10-25 12:20:12'), -(15398,5144,'action started via WP Cron','2025-10-25 10:31:12','2025-10-25 12:31:12'), -(15399,5146,'action created','2025-10-25 10:31:12','2025-10-25 12:31:12'), -(15400,5144,'action complete via WP Cron','2025-10-25 10:31:12','2025-10-25 12:31:12'), -(15401,5146,'action started via WP Cron','2025-10-25 11:31:12','2025-10-25 13:31:12'), -(15402,5147,'action created','2025-10-25 11:31:12','2025-10-25 13:31:12'), -(15403,5146,'action complete via WP Cron','2025-10-25 11:31:12','2025-10-25 13:31:12'), -(15404,5147,'action started via WP Cron','2025-10-25 12:31:12','2025-10-25 14:31:12'), -(15405,5148,'action created','2025-10-25 12:31:12','2025-10-25 14:31:12'), -(15406,5147,'action complete via WP Cron','2025-10-25 12:31:12','2025-10-25 14:31:12'), -(15407,5129,'action started via WP Cron','2025-10-25 13:20:12','2025-10-25 15:20:12'), -(15408,5129,'action complete via WP Cron','2025-10-25 13:20:12','2025-10-25 15:20:12'), -(15409,5149,'action created','2025-10-25 13:20:12','2025-10-25 15:20:12'), -(15410,5148,'action started via WP Cron','2025-10-25 13:31:12','2025-10-25 15:31:12'), -(15411,5150,'action created','2025-10-25 13:31:12','2025-10-25 15:31:12'), -(15412,5148,'action complete via WP Cron','2025-10-25 13:31:12','2025-10-25 15:31:12'), -(15413,5150,'action started via WP Cron','2025-10-25 14:31:12','2025-10-25 16:31:12'), -(15414,5151,'action created','2025-10-25 14:31:12','2025-10-25 16:31:12'), -(15415,5150,'action complete via WP Cron','2025-10-25 14:31:12','2025-10-25 16:31:12'), -(15416,5151,'action started via WP Cron','2025-10-25 15:31:12','2025-10-25 17:31:12'), -(15417,5152,'action created','2025-10-25 15:31:12','2025-10-25 17:31:12'), -(15418,5151,'action complete via WP Cron','2025-10-25 15:31:12','2025-10-25 17:31:12'), -(15419,5152,'action started via WP Cron','2025-10-25 16:31:12','2025-10-25 18:31:12'), -(15420,5153,'action created','2025-10-25 16:31:12','2025-10-25 18:31:12'), -(15421,5152,'action complete via WP Cron','2025-10-25 16:31:12','2025-10-25 18:31:12'), -(15422,5153,'action started via WP Cron','2025-10-25 17:31:12','2025-10-25 19:31:12'), -(15423,5154,'action created','2025-10-25 17:31:12','2025-10-25 19:31:12'), -(15424,5153,'action complete via WP Cron','2025-10-25 17:31:12','2025-10-25 19:31:12'), -(15425,5154,'action started via WP Cron','2025-10-25 18:31:39','2025-10-25 20:31:39'), -(15426,5155,'action created','2025-10-25 18:31:39','2025-10-25 20:31:39'), -(15427,5154,'action complete via WP Cron','2025-10-25 18:31:40','2025-10-25 20:31:40'), -(15428,5118,'action started via WP Cron','2025-10-25 18:40:12','2025-10-25 20:40:12'), -(15429,5118,'action complete via WP Cron','2025-10-25 18:40:12','2025-10-25 20:40:12'), -(15430,5156,'action created','2025-10-25 18:40:12','2025-10-25 20:40:12'), -(15431,5119,'action started via WP Cron','2025-10-25 18:41:12','2025-10-25 20:41:12'), -(15432,5119,'action complete via WP Cron','2025-10-25 18:41:12','2025-10-25 20:41:12'), -(15433,5157,'action created','2025-10-25 18:41:12','2025-10-25 20:41:12'), -(15434,5141,'action started via WP Cron','2025-10-25 19:22:12','2025-10-25 21:22:12'), -(15435,5141,'action complete via WP Cron','2025-10-25 19:22:12','2025-10-25 21:22:12'), -(15436,5158,'action created','2025-10-25 19:22:12','2025-10-25 21:22:12'), -(15437,5155,'action started via WP Cron','2025-10-25 19:32:12','2025-10-25 21:32:12'), -(15438,5159,'action created','2025-10-25 19:32:12','2025-10-25 21:32:12'), -(15439,5155,'action complete via WP Cron','2025-10-25 19:32:12','2025-10-25 21:32:12'), -(15440,5159,'action started via WP Cron','2025-10-25 20:32:12','2025-10-25 22:32:12'), -(15441,5160,'action created','2025-10-25 20:32:12','2025-10-25 22:32:12'), -(15442,5159,'action complete via WP Cron','2025-10-25 20:32:12','2025-10-25 22:32:12'), -(15443,5160,'action started via WP Cron','2025-10-25 21:32:12','2025-10-25 23:32:12'), -(15444,5161,'action created','2025-10-25 21:32:12','2025-10-25 23:32:12'), -(15445,5160,'action complete via WP Cron','2025-10-25 21:32:12','2025-10-25 23:32:12'), -(15446,5125,'action started via WP Cron','2025-10-25 22:03:12','2025-10-26 00:03:12'), -(15447,5125,'action complete via WP Cron','2025-10-25 22:03:12','2025-10-26 00:03:12'), -(15448,5162,'action created','2025-10-25 22:03:12','2025-10-26 00:03:12'), -(15449,5161,'action started via WP Cron','2025-10-25 22:32:12','2025-10-26 00:32:12'), -(15450,5163,'action created','2025-10-25 22:32:12','2025-10-26 00:32:12'), -(15451,5161,'action complete via WP Cron','2025-10-25 22:32:12','2025-10-26 00:32:12'), -(15452,5163,'action started via WP Cron','2025-10-25 23:32:12','2025-10-26 01:32:12'), -(15453,5164,'action created','2025-10-25 23:32:12','2025-10-26 01:32:12'), -(15454,5163,'action complete via WP Cron','2025-10-25 23:32:12','2025-10-26 01:32:12'), -(15455,5164,'action started via WP Cron','2025-10-26 00:32:12','2025-10-26 02:32:12'), -(15456,5165,'action created','2025-10-26 00:32:12','2025-10-26 02:32:12'), -(15457,5164,'action complete via WP Cron','2025-10-26 00:32:12','2025-10-26 02:32:12'), -(15458,5149,'action started via WP Cron','2025-10-26 01:20:12','2025-10-26 02:20:12'), -(15459,5149,'action complete via WP Cron','2025-10-26 01:20:12','2025-10-26 02:20:12'), -(15460,5166,'action created','2025-10-26 01:20:12','2025-10-26 02:20:12'), -(15461,5165,'action started via WP Cron','2025-10-26 01:32:12','2025-10-26 02:32:12'), -(15462,5167,'action created','2025-10-26 01:32:12','2025-10-26 02:32:12'), -(15463,5165,'action complete via WP Cron','2025-10-26 01:32:12','2025-10-26 02:32:12'), -(15464,5167,'action started via WP Cron','2025-10-26 02:32:12','2025-10-26 03:32:12'), -(15465,5168,'action created','2025-10-26 02:32:12','2025-10-26 03:32:12'), -(15466,5167,'action complete via WP Cron','2025-10-26 02:32:12','2025-10-26 03:32:12'), -(15467,5168,'action started via WP Cron','2025-10-26 03:32:12','2025-10-26 04:32:12'), -(15468,5169,'action created','2025-10-26 03:32:12','2025-10-26 04:32:12'), -(15469,5168,'action complete via WP Cron','2025-10-26 03:32:12','2025-10-26 04:32:12'), -(15470,5169,'action started via WP Cron','2025-10-26 04:32:12','2025-10-26 05:32:12'), -(15471,5170,'action created','2025-10-26 04:32:12','2025-10-26 05:32:12'), -(15472,5169,'action complete via WP Cron','2025-10-26 04:32:12','2025-10-26 05:32:12'), -(15473,5170,'action started via WP Cron','2025-10-26 05:32:12','2025-10-26 06:32:12'), -(15474,5171,'action created','2025-10-26 05:32:12','2025-10-26 06:32:12'), -(15475,5170,'action complete via WP Cron','2025-10-26 05:32:12','2025-10-26 06:32:12'), -(15476,5171,'action started via WP Cron','2025-10-26 06:32:12','2025-10-26 07:32:12'), -(15477,5172,'action created','2025-10-26 06:32:12','2025-10-26 07:32:12'), -(15478,5171,'action complete via WP Cron','2025-10-26 06:32:12','2025-10-26 07:32:12'), -(15479,5136,'action started via WP Cron','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15480,5136,'action complete via WP Cron','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15481,5173,'action created','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15482,5137,'action started via WP Cron','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15483,5137,'action complete via WP Cron','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15484,5174,'action created','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15485,5140,'action started via WP Cron','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15486,5175,'action created','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15487,5176,'action created','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15488,5140,'action complete via WP Cron','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15489,5177,'action created','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15490,5176,'action started via WP Cron','2025-10-26 07:21:12','2025-10-26 08:21:12'), -(15491,5176,'action complete via WP Cron','2025-10-26 07:21:12','2025-10-26 08:21:12'), -(15492,5158,'action started via WP Cron','2025-10-26 07:22:12','2025-10-26 08:22:12'), -(15493,5158,'action complete via WP Cron','2025-10-26 07:22:12','2025-10-26 08:22:12'), -(15494,5178,'action created','2025-10-26 07:22:12','2025-10-26 08:22:12'), -(15495,5172,'action started via WP Cron','2025-10-26 07:33:12','2025-10-26 08:33:12'), -(15496,5179,'action created','2025-10-26 07:33:12','2025-10-26 08:33:12'), -(15497,5172,'action complete via WP Cron','2025-10-26 07:33:12','2025-10-26 08:33:12'), -(15498,5179,'action started via WP Cron','2025-10-26 08:33:12','2025-10-26 09:33:12'), -(15499,5180,'action created','2025-10-26 08:33:12','2025-10-26 09:33:12'), -(15500,5179,'action complete via WP Cron','2025-10-26 08:33:12','2025-10-26 09:33:12'), -(15501,5180,'action started via WP Cron','2025-10-26 09:33:12','2025-10-26 10:33:12'), -(15502,5181,'action created','2025-10-26 09:33:12','2025-10-26 10:33:12'), -(15503,5180,'action complete via WP Cron','2025-10-26 09:33:12','2025-10-26 10:33:12'), -(15504,5145,'action started via WP Cron','2025-10-26 10:17:12','2025-10-26 11:17:12'), -(15505,5145,'action complete via WP Cron','2025-10-26 10:17:12','2025-10-26 11:17:12'), -(15506,5182,'action created','2025-10-26 10:17:12','2025-10-26 11:17:12'), -(15507,5175,'action started via WP Cron','2025-10-26 10:20:12','2025-10-26 11:20:12'), -(15508,5175,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-26 10:20:12','2025-10-26 11:20:12'), -(15509,5175,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-26 10:20:12','2025-10-26 11:20:12'), -(15510,5181,'action started via WP Cron','2025-10-26 10:33:12','2025-10-26 11:33:12'), -(15511,5183,'action created','2025-10-26 10:33:12','2025-10-26 11:33:12'), -(15512,5181,'action complete via WP Cron','2025-10-26 10:33:12','2025-10-26 11:33:12'), -(15513,5183,'action started via WP Cron','2025-10-26 11:33:50','2025-10-26 12:33:50'), -(15514,5184,'action created','2025-10-26 11:33:50','2025-10-26 12:33:50'), -(15515,5183,'action complete via WP Cron','2025-10-26 11:33:50','2025-10-26 12:33:50'), -(15516,5184,'action started via WP Cron','2025-10-26 12:34:12','2025-10-26 13:34:12'), -(15517,5185,'action created','2025-10-26 12:34:12','2025-10-26 13:34:12'), -(15518,5184,'action complete via WP Cron','2025-10-26 12:34:12','2025-10-26 13:34:12'), -(15519,5166,'action started via WP Cron','2025-10-26 13:20:12','2025-10-26 14:20:12'), -(15520,5166,'action complete via WP Cron','2025-10-26 13:20:12','2025-10-26 14:20:12'), -(15521,5186,'action created','2025-10-26 13:20:12','2025-10-26 14:20:12'), -(15522,5185,'action started via WP Cron','2025-10-26 13:34:12','2025-10-26 14:34:12'), -(15523,5187,'action created','2025-10-26 13:34:12','2025-10-26 14:34:12'), -(15524,5185,'action complete via WP Cron','2025-10-26 13:34:12','2025-10-26 14:34:12'), -(15525,5187,'action started via WP Cron','2025-10-26 14:34:12','2025-10-26 15:34:12'), -(15526,5188,'action created','2025-10-26 14:34:12','2025-10-26 15:34:12'), -(15527,5187,'action complete via WP Cron','2025-10-26 14:34:12','2025-10-26 15:34:12'), -(15528,5188,'action started via WP Cron','2025-10-26 15:34:12','2025-10-26 16:34:12'), -(15529,5189,'action created','2025-10-26 15:34:12','2025-10-26 16:34:12'), -(15530,5188,'action complete via WP Cron','2025-10-26 15:34:12','2025-10-26 16:34:12'), -(15531,5189,'action started via WP Cron','2025-10-26 16:34:12','2025-10-26 17:34:12'), -(15532,5190,'action created','2025-10-26 16:34:12','2025-10-26 17:34:12'), -(15533,5189,'action complete via WP Cron','2025-10-26 16:34:12','2025-10-26 17:34:12'), -(15534,5190,'action started via WP Cron','2025-10-26 17:35:12','2025-10-26 18:35:12'), -(15535,5191,'action created','2025-10-26 17:35:12','2025-10-26 18:35:12'), -(15536,5190,'action complete via WP Cron','2025-10-26 17:35:12','2025-10-26 18:35:12'), -(15537,5191,'action started via WP Cron','2025-10-26 18:35:12','2025-10-26 19:35:12'), -(15538,5192,'action created','2025-10-26 18:35:12','2025-10-26 19:35:12'), -(15539,5191,'action complete via WP Cron','2025-10-26 18:35:12','2025-10-26 19:35:12'), -(15540,5156,'action started via WP Cron','2025-10-26 18:40:12','2025-10-26 19:40:12'), -(15541,5156,'action complete via WP Cron','2025-10-26 18:40:12','2025-10-26 19:40:12'), -(15542,5193,'action created','2025-10-26 18:40:12','2025-10-26 19:40:12'), -(15543,5157,'action started via WP Cron','2025-10-26 18:42:12','2025-10-26 19:42:12'), -(15544,5157,'action complete via WP Cron','2025-10-26 18:42:12','2025-10-26 19:42:12'), -(15545,5194,'action created','2025-10-26 18:42:12','2025-10-26 19:42:12'), -(15546,5178,'action started via WP Cron','2025-10-26 19:22:12','2025-10-26 20:22:12'), -(15547,5178,'action complete via WP Cron','2025-10-26 19:22:12','2025-10-26 20:22:12'), -(15548,5195,'action created','2025-10-26 19:22:12','2025-10-26 20:22:12'), -(15549,5192,'action started via WP Cron','2025-10-26 19:35:12','2025-10-26 20:35:12'), -(15550,5196,'action created','2025-10-26 19:35:12','2025-10-26 20:35:12'), -(15551,5192,'action complete via WP Cron','2025-10-26 19:35:13','2025-10-26 20:35:13'), -(15552,5196,'action started via WP Cron','2025-10-26 20:36:12','2025-10-26 21:36:12'), -(15553,5197,'action created','2025-10-26 20:36:12','2025-10-26 21:36:12'), -(15554,5196,'action complete via WP Cron','2025-10-26 20:36:12','2025-10-26 21:36:12'), -(15555,5197,'action started via WP Cron','2025-10-26 21:36:12','2025-10-26 22:36:12'), -(15556,5198,'action created','2025-10-26 21:36:12','2025-10-26 22:36:12'), -(15557,5197,'action complete via WP Cron','2025-10-26 21:36:12','2025-10-26 22:36:12'), -(15558,5162,'action started via WP Cron','2025-10-26 22:03:12','2025-10-26 23:03:12'), -(15559,5162,'action complete via WP Cron','2025-10-26 22:03:12','2025-10-26 23:03:12'), -(15560,5199,'action created','2025-10-26 22:03:12','2025-10-26 23:03:12'), -(15561,5198,'action started via WP Cron','2025-10-26 22:36:12','2025-10-26 23:36:12'), -(15562,5200,'action created','2025-10-26 22:36:12','2025-10-26 23:36:12'), -(15563,5198,'action complete via WP Cron','2025-10-26 22:36:12','2025-10-26 23:36:12'), -(15564,5200,'action started via WP Cron','2025-10-26 23:36:12','2025-10-27 00:36:12'), -(15565,5201,'action created','2025-10-26 23:36:12','2025-10-27 00:36:12'), -(15566,5200,'action complete via WP Cron','2025-10-26 23:36:12','2025-10-27 00:36:12'), -(15567,5201,'action started via WP Cron','2025-10-27 00:36:12','2025-10-27 01:36:12'), -(15568,5202,'action created','2025-10-27 00:36:12','2025-10-27 01:36:12'), -(15569,5201,'action complete via WP Cron','2025-10-27 00:36:12','2025-10-27 01:36:12'), -(15570,5186,'action started via WP Cron','2025-10-27 01:20:12','2025-10-27 02:20:12'), -(15571,5186,'action complete via WP Cron','2025-10-27 01:20:12','2025-10-27 02:20:12'), -(15572,5203,'action created','2025-10-27 01:20:12','2025-10-27 02:20:12'), -(15573,5202,'action started via WP Cron','2025-10-27 01:36:12','2025-10-27 02:36:12'), -(15574,5204,'action created','2025-10-27 01:36:12','2025-10-27 02:36:12'), -(15575,5202,'action complete via WP Cron','2025-10-27 01:36:13','2025-10-27 02:36:13'), -(15576,5204,'action started via WP Cron','2025-10-27 02:36:12','2025-10-27 03:36:12'), -(15577,5205,'action created','2025-10-27 02:36:12','2025-10-27 03:36:12'), -(15578,5204,'action complete via WP Cron','2025-10-27 02:36:12','2025-10-27 03:36:12'), -(15579,5205,'action started via WP Cron','2025-10-27 03:36:12','2025-10-27 04:36:12'), -(15580,5206,'action created','2025-10-27 03:36:12','2025-10-27 04:36:12'), -(15581,5205,'action complete via WP Cron','2025-10-27 03:36:12','2025-10-27 04:36:12'), -(15582,5206,'action started via WP Cron','2025-10-27 04:36:12','2025-10-27 05:36:12'), -(15583,5207,'action created','2025-10-27 04:36:12','2025-10-27 05:36:12'), -(15584,5206,'action complete via WP Cron','2025-10-27 04:36:12','2025-10-27 05:36:12'), -(15585,5207,'action started via WP Cron','2025-10-27 05:37:12','2025-10-27 06:37:12'), -(15586,5208,'action created','2025-10-27 05:37:12','2025-10-27 06:37:12'), -(15587,5207,'action complete via WP Cron','2025-10-27 05:37:13','2025-10-27 06:37:13'), -(15588,5208,'action started via WP Cron','2025-10-27 06:38:12','2025-10-27 07:38:12'), -(15589,5209,'action created','2025-10-27 06:38:12','2025-10-27 07:38:12'), -(15590,5208,'action complete via WP Cron','2025-10-27 06:38:13','2025-10-27 07:38:13'), -(15591,5173,'action started via WP Cron','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15592,5173,'action complete via WP Cron','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15593,5210,'action created','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15594,5174,'action started via WP Cron','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15595,5174,'action complete via WP Cron','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15596,5211,'action created','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15597,5177,'action started via WP Cron','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15598,5212,'action created','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15599,5213,'action created','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15600,5177,'action complete via WP Cron','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15601,5214,'action created','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15602,5213,'action started via WP Cron','2025-10-27 07:21:12','2025-10-27 08:21:12'), -(15603,5213,'action complete via WP Cron','2025-10-27 07:21:13','2025-10-27 08:21:13'), -(15604,5195,'action started via WP Cron','2025-10-27 07:22:13','2025-10-27 08:22:13'), -(15605,5195,'action complete via WP Cron','2025-10-27 07:22:13','2025-10-27 08:22:13'), -(15606,5215,'action created','2025-10-27 07:22:13','2025-10-27 08:22:13'), -(15607,5209,'action started via WP Cron','2025-10-27 07:38:13','2025-10-27 08:38:13'), -(15608,5216,'action created','2025-10-27 07:38:13','2025-10-27 08:38:13'), -(15609,5209,'action complete via WP Cron','2025-10-27 07:38:13','2025-10-27 08:38:13'), -(15610,5216,'action started via WP Cron','2025-10-27 08:39:13','2025-10-27 09:39:13'), -(15611,5217,'action created','2025-10-27 08:39:13','2025-10-27 09:39:13'), -(15612,5216,'action complete via WP Cron','2025-10-27 08:39:13','2025-10-27 09:39:13'), -(15613,5217,'action started via WP Cron','2025-10-27 09:39:13','2025-10-27 10:39:13'), -(15614,5218,'action created','2025-10-27 09:39:13','2025-10-27 10:39:13'), -(15615,5217,'action complete via WP Cron','2025-10-27 09:39:13','2025-10-27 10:39:13'), -(15616,5182,'action started via WP Cron','2025-10-27 10:17:13','2025-10-27 11:17:13'), -(15617,5182,'action complete via WP Cron','2025-10-27 10:17:13','2025-10-27 11:17:13'), -(15618,5219,'action created','2025-10-27 10:17:13','2025-10-27 11:17:13'), -(15619,5212,'action started via WP Cron','2025-10-27 10:20:13','2025-10-27 11:20:13'), -(15620,5212,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-27 10:20:13','2025-10-27 11:20:13'), -(15621,5212,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-27 10:20:13','2025-10-27 11:20:13'), -(15622,5218,'action started via WP Cron','2025-10-27 10:39:13','2025-10-27 11:39:13'), -(15623,5220,'action created','2025-10-27 10:39:13','2025-10-27 11:39:13'), -(15624,5218,'action complete via WP Cron','2025-10-27 10:39:13','2025-10-27 11:39:13'), -(15625,5220,'action started via WP Cron','2025-10-27 11:39:13','2025-10-27 12:39:13'), -(15626,5221,'action created','2025-10-27 11:39:13','2025-10-27 12:39:13'), -(15627,5220,'action complete via WP Cron','2025-10-27 11:39:13','2025-10-27 12:39:13'), -(15628,5221,'action started via WP Cron','2025-10-27 12:40:13','2025-10-27 13:40:13'), -(15629,5222,'action created','2025-10-27 12:40:13','2025-10-27 13:40:13'), -(15630,5221,'action complete via WP Cron','2025-10-27 12:40:13','2025-10-27 13:40:13'), -(15631,5203,'action started via WP Cron','2025-10-27 13:20:13','2025-10-27 14:20:13'), -(15632,5203,'action complete via WP Cron','2025-10-27 13:20:13','2025-10-27 14:20:13'), -(15633,5223,'action created','2025-10-27 13:20:13','2025-10-27 14:20:13'), -(15634,5222,'action started via WP Cron','2025-10-27 13:40:13','2025-10-27 14:40:13'), -(15635,5224,'action created','2025-10-27 13:40:13','2025-10-27 14:40:13'), -(15636,5222,'action complete via WP Cron','2025-10-27 13:40:13','2025-10-27 14:40:13'), -(15637,5224,'action started via WP Cron','2025-10-27 14:40:13','2025-10-27 15:40:13'), -(15638,5225,'action created','2025-10-27 14:40:13','2025-10-27 15:40:13'), -(15639,5224,'action complete via WP Cron','2025-10-27 14:40:13','2025-10-27 15:40:13'), -(15640,5225,'action started via WP Cron','2025-10-27 15:40:13','2025-10-27 16:40:13'), -(15641,5226,'action created','2025-10-27 15:40:13','2025-10-27 16:40:13'), -(15642,5225,'action complete via WP Cron','2025-10-27 15:40:13','2025-10-27 16:40:13'), -(15643,5226,'action started via WP Cron','2025-10-27 16:40:13','2025-10-27 17:40:13'), -(15644,5227,'action created','2025-10-27 16:40:13','2025-10-27 17:40:13'), -(15645,5226,'action complete via WP Cron','2025-10-27 16:40:13','2025-10-27 17:40:13'), -(15646,5227,'action started via WP Cron','2025-10-27 17:40:13','2025-10-27 18:40:13'), -(15647,5228,'action created','2025-10-27 17:40:13','2025-10-27 18:40:13'), -(15648,5227,'action complete via WP Cron','2025-10-27 17:40:13','2025-10-27 18:40:13'), -(15649,5193,'action started via WP Cron','2025-10-27 18:40:56','2025-10-27 19:40:56'), -(15650,5193,'action complete via WP Cron','2025-10-27 18:40:56','2025-10-27 19:40:56'), -(15651,5229,'action created','2025-10-27 18:40:56','2025-10-27 19:40:56'), -(15652,5228,'action started via WP Cron','2025-10-27 18:40:56','2025-10-27 19:40:56'), -(15653,5230,'action created','2025-10-27 18:40:56','2025-10-27 19:40:56'), -(15654,5228,'action complete via WP Cron','2025-10-27 18:40:56','2025-10-27 19:40:56'), -(15655,5194,'action started via WP Cron','2025-10-27 18:42:13','2025-10-27 19:42:13'), -(15656,5194,'action complete via WP Cron','2025-10-27 18:42:13','2025-10-27 19:42:13'), -(15657,5231,'action created','2025-10-27 18:42:13','2025-10-27 19:42:13'), -(15658,5215,'action started via WP Cron','2025-10-27 19:22:13','2025-10-27 20:22:13'), -(15659,5215,'action complete via WP Cron','2025-10-27 19:22:13','2025-10-27 20:22:13'), -(15660,5232,'action created','2025-10-27 19:22:13','2025-10-27 20:22:13'), -(15661,5230,'action started via WP Cron','2025-10-27 19:41:01','2025-10-27 20:41:01'), -(15662,5233,'action created','2025-10-27 19:41:01','2025-10-27 20:41:01'), -(15663,5230,'action complete via WP Cron','2025-10-27 19:41:01','2025-10-27 20:41:01'), -(15664,5234,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15665,5235,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15666,5236,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15667,5237,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15668,5238,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15669,5239,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15670,5240,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15671,5241,'action created','2025-10-27 20:11:14','2025-10-27 21:11:14'), -(15672,5242,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15673,5243,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15674,5244,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15675,5245,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15676,5246,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15677,5247,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15678,5248,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15679,5249,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15680,5250,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15681,5251,'action created','2025-10-27 20:11:15','2025-10-27 21:11:15'), -(15682,5234,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15683,5234,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15684,5235,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15685,5235,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15686,5236,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15687,5236,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15688,5237,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15689,5237,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15690,5238,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15691,5238,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15692,5239,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15693,5239,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15694,5240,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15695,5240,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15696,5241,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15697,5241,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15698,5242,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15699,5242,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15700,5243,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15701,5243,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15702,5244,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15703,5244,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15704,5245,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15705,5245,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15706,5246,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15707,5246,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15708,5247,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15709,5247,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15710,5248,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15711,5248,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15712,5249,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15713,5249,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15714,5250,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15715,5250,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15716,5251,'action started via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15717,5251,'action complete via WP Cron','2025-10-27 20:12:13','2025-10-27 21:12:13'), -(15718,5233,'action started via WP Cron','2025-10-27 20:41:13','2025-10-27 21:41:13'), -(15719,5252,'action created','2025-10-27 20:41:13','2025-10-27 21:41:13'), -(15720,5233,'action complete via WP Cron','2025-10-27 20:41:13','2025-10-27 21:41:13'), -(15721,5252,'action started via WP Cron','2025-10-27 21:41:13','2025-10-27 22:41:13'), -(15722,5253,'action created','2025-10-27 21:41:13','2025-10-27 22:41:13'), -(15723,5252,'action complete via WP Cron','2025-10-27 21:41:13','2025-10-27 22:41:13'), -(15724,5199,'action started via WP Cron','2025-10-27 22:03:13','2025-10-27 23:03:13'), -(15725,5199,'action complete via WP Cron','2025-10-27 22:03:13','2025-10-27 23:03:13'), -(15726,5254,'action created','2025-10-27 22:03:13','2025-10-27 23:03:13'), -(15727,5253,'action started via WP Cron','2025-10-27 22:41:46','2025-10-27 23:41:46'), -(15728,5255,'action created','2025-10-27 22:41:46','2025-10-27 23:41:46'), -(15729,5253,'action complete via WP Cron','2025-10-27 22:41:46','2025-10-27 23:41:46'), -(15730,5255,'action started via WP Cron','2025-10-27 23:42:13','2025-10-28 00:42:13'), -(15731,5256,'action created','2025-10-27 23:42:13','2025-10-28 00:42:13'), -(15732,5255,'action complete via WP Cron','2025-10-27 23:42:13','2025-10-28 00:42:13'), -(15733,5256,'action started via WP Cron','2025-10-28 00:42:13','2025-10-28 01:42:13'), -(15734,5257,'action created','2025-10-28 00:42:13','2025-10-28 01:42:13'), -(15735,5256,'action complete via WP Cron','2025-10-28 00:42:13','2025-10-28 01:42:13'), -(15736,5223,'action started via WP Cron','2025-10-28 01:21:13','2025-10-28 02:21:13'), -(15737,5223,'action complete via WP Cron','2025-10-28 01:21:13','2025-10-28 02:21:13'), -(15738,5258,'action created','2025-10-28 01:21:13','2025-10-28 02:21:13'), -(15739,5257,'action started via WP Cron','2025-10-28 01:42:13','2025-10-28 02:42:13'), -(15740,5259,'action created','2025-10-28 01:42:13','2025-10-28 02:42:13'), -(15741,5257,'action complete via WP Cron','2025-10-28 01:42:13','2025-10-28 02:42:13'), -(15742,5259,'action started via WP Cron','2025-10-28 02:42:13','2025-10-28 03:42:13'), -(15743,5260,'action created','2025-10-28 02:42:13','2025-10-28 03:42:13'), -(15744,5259,'action complete via WP Cron','2025-10-28 02:42:13','2025-10-28 03:42:13'), -(15745,5260,'action started via WP Cron','2025-10-28 03:42:13','2025-10-28 04:42:13'), -(15746,5261,'action created','2025-10-28 03:42:13','2025-10-28 04:42:13'), -(15747,5260,'action complete via WP Cron','2025-10-28 03:42:13','2025-10-28 04:42:13'), -(15748,4981,'action started via WP Cron','2025-10-28 04:07:13','2025-10-28 05:07:13'), -(15749,4981,'action complete via WP Cron','2025-10-28 04:07:13','2025-10-28 05:07:13'), -(15750,5262,'action created','2025-10-28 04:07:13','2025-10-28 05:07:13'), -(15751,5261,'action started via WP Cron','2025-10-28 04:42:13','2025-10-28 05:42:13'), -(15752,5263,'action created','2025-10-28 04:42:13','2025-10-28 05:42:13'), -(15753,5261,'action complete via WP Cron','2025-10-28 04:42:13','2025-10-28 05:42:13'), -(15754,5263,'action started via WP Cron','2025-10-28 05:42:13','2025-10-28 06:42:13'), -(15755,5264,'action created','2025-10-28 05:42:13','2025-10-28 06:42:13'), -(15756,5263,'action complete via WP Cron','2025-10-28 05:42:13','2025-10-28 06:42:13'), -(15757,5264,'action started via WP Cron','2025-10-28 06:42:13','2025-10-28 07:42:13'), -(15758,5265,'action created','2025-10-28 06:42:13','2025-10-28 07:42:13'), -(15759,5264,'action complete via WP Cron','2025-10-28 06:42:13','2025-10-28 07:42:13'), -(15760,5210,'action started via WP Cron','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15761,5210,'action complete via WP Cron','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15762,5266,'action created','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15763,5211,'action started via WP Cron','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15764,5211,'action complete via WP Cron','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15765,5267,'action created','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15766,5214,'action started via WP Cron','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15767,5268,'action created','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15768,5269,'action created','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15769,5214,'action complete via WP Cron','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15770,5270,'action created','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15771,5269,'action started via WP Cron','2025-10-28 07:22:13','2025-10-28 08:22:13'), -(15772,5269,'action complete via WP Cron','2025-10-28 07:22:13','2025-10-28 08:22:13'), -(15773,5232,'action started via WP Cron','2025-10-28 07:22:13','2025-10-28 08:22:13'), -(15774,5232,'action complete via WP Cron','2025-10-28 07:22:13','2025-10-28 08:22:13'), -(15775,5271,'action created','2025-10-28 07:22:13','2025-10-28 08:22:13'), -(15776,5265,'action started via WP Cron','2025-10-28 07:42:13','2025-10-28 08:42:13'), -(15777,5272,'action created','2025-10-28 07:42:13','2025-10-28 08:42:13'), -(15778,5265,'action complete via WP Cron','2025-10-28 07:42:13','2025-10-28 08:42:13'), -(15779,5272,'action started via WP Cron','2025-10-28 08:42:13','2025-10-28 09:42:13'), -(15780,5273,'action created','2025-10-28 08:42:13','2025-10-28 09:42:13'), -(15781,5272,'action complete via WP Cron','2025-10-28 08:42:13','2025-10-28 09:42:13'), -(15782,5273,'action started via WP Cron','2025-10-28 09:42:13','2025-10-28 10:42:13'), -(15783,5274,'action created','2025-10-28 09:42:13','2025-10-28 10:42:13'), -(15784,5273,'action complete via WP Cron','2025-10-28 09:42:13','2025-10-28 10:42:13'), -(15785,5219,'action started via WP Cron','2025-10-28 10:18:13','2025-10-28 11:18:13'), -(15786,5219,'action complete via WP Cron','2025-10-28 10:18:13','2025-10-28 11:18:13'), -(15787,5275,'action created','2025-10-28 10:18:13','2025-10-28 11:18:13'), -(15788,5268,'action started via WP Cron','2025-10-28 10:21:13','2025-10-28 11:21:13'), -(15789,5268,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-28 10:21:13','2025-10-28 11:21:13'), -(15790,5268,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-28 10:21:13','2025-10-28 11:21:13'), -(15791,5274,'action started via WP Cron','2025-10-28 10:42:13','2025-10-28 11:42:13'), -(15792,5276,'action created','2025-10-28 10:42:13','2025-10-28 11:42:13'), -(15793,5274,'action complete via WP Cron','2025-10-28 10:42:13','2025-10-28 11:42:13'), -(15794,5276,'action started via WP Cron','2025-10-28 11:42:13','2025-10-28 12:42:13'), -(15795,5277,'action created','2025-10-28 11:42:13','2025-10-28 12:42:13'), -(15796,5276,'action complete via WP Cron','2025-10-28 11:42:13','2025-10-28 12:42:13'), -(15797,5277,'action started via WP Cron','2025-10-28 12:42:13','2025-10-28 13:42:13'), -(15798,5278,'action created','2025-10-28 12:42:13','2025-10-28 13:42:13'), -(15799,5277,'action complete via WP Cron','2025-10-28 12:42:13','2025-10-28 13:42:13'), -(15800,5258,'action started via WP Cron','2025-10-28 13:21:13','2025-10-28 14:21:13'), -(15801,5258,'action complete via WP Cron','2025-10-28 13:21:13','2025-10-28 14:21:13'), -(15802,5279,'action created','2025-10-28 13:21:13','2025-10-28 14:21:13'), -(15803,5278,'action started via WP Cron','2025-10-28 13:42:13','2025-10-28 14:42:13'), -(15804,5280,'action created','2025-10-28 13:42:13','2025-10-28 14:42:13'), -(15805,5278,'action complete via WP Cron','2025-10-28 13:42:13','2025-10-28 14:42:13'), -(15806,5280,'action started via WP Cron','2025-10-28 14:42:13','2025-10-28 15:42:13'), -(15807,5281,'action created','2025-10-28 14:42:13','2025-10-28 15:42:13'), -(15808,5280,'action complete via WP Cron','2025-10-28 14:42:13','2025-10-28 15:42:13'), -(15809,5281,'action started via WP Cron','2025-10-28 15:42:13','2025-10-28 16:42:13'), -(15810,5282,'action created','2025-10-28 15:42:13','2025-10-28 16:42:13'), -(15811,5281,'action complete via WP Cron','2025-10-28 15:42:13','2025-10-28 16:42:13'), -(15812,5282,'action started via WP Cron','2025-10-28 16:42:13','2025-10-28 17:42:13'), -(15813,5283,'action created','2025-10-28 16:42:13','2025-10-28 17:42:13'), -(15814,5282,'action complete via WP Cron','2025-10-28 16:42:13','2025-10-28 17:42:13'), -(15815,5283,'action started via WP Cron','2025-10-28 17:42:13','2025-10-28 18:42:13'), -(15816,5284,'action created','2025-10-28 17:42:13','2025-10-28 18:42:13'), -(15817,5283,'action complete via WP Cron','2025-10-28 17:42:13','2025-10-28 18:42:13'), -(15818,5229,'action started via WP Cron','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15819,5229,'action complete via WP Cron','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15820,5285,'action created','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15821,5231,'action started via WP Cron','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15822,5231,'action complete via WP Cron','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15823,5286,'action created','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15824,5284,'action started via WP Cron','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15825,5287,'action created','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15826,5284,'action complete via WP Cron','2025-10-28 18:42:13','2025-10-28 19:42:13'), -(15827,5271,'action started via WP Cron','2025-10-28 19:22:13','2025-10-28 20:22:13'), -(15828,5271,'action complete via WP Cron','2025-10-28 19:22:13','2025-10-28 20:22:13'), -(15829,5288,'action created','2025-10-28 19:22:13','2025-10-28 20:22:13'), -(15830,5287,'action started via WP Cron','2025-10-28 19:43:13','2025-10-28 20:43:13'), -(15831,5289,'action created','2025-10-28 19:43:13','2025-10-28 20:43:13'), -(15832,5287,'action complete via WP Cron','2025-10-28 19:43:13','2025-10-28 20:43:13'), -(15833,5289,'action started via WP Cron','2025-10-28 20:43:13','2025-10-28 21:43:13'), -(15834,5290,'action created','2025-10-28 20:43:13','2025-10-28 21:43:13'), -(15835,5289,'action complete via WP Cron','2025-10-28 20:43:13','2025-10-28 21:43:13'), -(15836,5290,'action started via WP Cron','2025-10-28 21:43:13','2025-10-28 22:43:13'), -(15837,5291,'action created','2025-10-28 21:43:13','2025-10-28 22:43:13'), -(15838,5290,'action complete via WP Cron','2025-10-28 21:43:13','2025-10-28 22:43:13'), -(15839,5254,'action started via WP Cron','2025-10-28 22:03:13','2025-10-28 23:03:13'), -(15840,5254,'action complete via WP Cron','2025-10-28 22:03:13','2025-10-28 23:03:13'), -(15841,5292,'action created','2025-10-28 22:03:13','2025-10-28 23:03:13'), -(15842,5291,'action started via WP Cron','2025-10-28 22:43:13','2025-10-28 23:43:13'), -(15843,5293,'action created','2025-10-28 22:43:13','2025-10-28 23:43:13'), -(15844,5291,'action complete via WP Cron','2025-10-28 22:43:13','2025-10-28 23:43:13'), -(15845,5293,'action started via WP Cron','2025-10-28 23:43:13','2025-10-29 00:43:13'), -(15846,5294,'action created','2025-10-28 23:43:13','2025-10-29 00:43:13'), -(15847,5293,'action complete via WP Cron','2025-10-28 23:43:13','2025-10-29 00:43:13'), -(15848,5294,'action started via WP Cron','2025-10-29 00:43:13','2025-10-29 01:43:13'), -(15849,5295,'action created','2025-10-29 00:43:13','2025-10-29 01:43:13'), -(15850,5294,'action complete via WP Cron','2025-10-29 00:43:13','2025-10-29 01:43:13'), -(15851,5279,'action started via WP Cron','2025-10-29 01:21:13','2025-10-29 02:21:13'), -(15852,5279,'action complete via WP Cron','2025-10-29 01:21:13','2025-10-29 02:21:13'), -(15853,5296,'action created','2025-10-29 01:21:13','2025-10-29 02:21:13'), -(15854,5295,'action started via WP Cron','2025-10-29 01:43:13','2025-10-29 02:43:13'), -(15855,5297,'action created','2025-10-29 01:43:13','2025-10-29 02:43:13'), -(15856,5295,'action complete via WP Cron','2025-10-29 01:43:13','2025-10-29 02:43:13'), -(15857,5297,'action started via WP Cron','2025-10-29 02:44:13','2025-10-29 03:44:13'), -(15858,5298,'action created','2025-10-29 02:44:13','2025-10-29 03:44:13'), -(15859,5297,'action complete via WP Cron','2025-10-29 02:44:13','2025-10-29 03:44:13'), -(15860,5298,'action started via WP Cron','2025-10-29 03:44:13','2025-10-29 04:44:13'), -(15861,5299,'action created','2025-10-29 03:44:13','2025-10-29 04:44:13'), -(15862,5298,'action complete via WP Cron','2025-10-29 03:44:13','2025-10-29 04:44:13'), -(15863,5299,'action started via WP Cron','2025-10-29 04:44:13','2025-10-29 05:44:13'), -(15864,5300,'action created','2025-10-29 04:44:13','2025-10-29 05:44:13'), -(15865,5299,'action complete via WP Cron','2025-10-29 04:44:13','2025-10-29 05:44:13'), -(15866,5300,'action started via WP Cron','2025-10-29 05:44:13','2025-10-29 06:44:13'), -(15867,5301,'action created','2025-10-29 05:44:13','2025-10-29 06:44:13'), -(15868,5300,'action complete via WP Cron','2025-10-29 05:44:13','2025-10-29 06:44:13'), -(15869,5301,'action started via WP Cron','2025-10-29 06:44:13','2025-10-29 07:44:13'), -(15870,5302,'action created','2025-10-29 06:44:13','2025-10-29 07:44:13'), -(15871,5301,'action complete via WP Cron','2025-10-29 06:44:13','2025-10-29 07:44:13'), -(15872,5266,'action started via WP Cron','2025-10-29 07:21:13','2025-10-29 08:21:13'), -(15873,5266,'action complete via WP Cron','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15874,5303,'action created','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15875,5267,'action started via WP Cron','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15876,5267,'action complete via WP Cron','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15877,5304,'action created','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15878,5270,'action started via WP Cron','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15879,5305,'action created','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15880,5306,'action created','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15881,5270,'action complete via WP Cron','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15882,5307,'action created','2025-10-29 07:21:14','2025-10-29 08:21:14'), -(15883,5306,'action started via WP Cron','2025-10-29 07:22:13','2025-10-29 08:22:13'), -(15884,5306,'action complete via WP Cron','2025-10-29 07:22:13','2025-10-29 08:22:13'), -(15885,5288,'action started via WP Cron','2025-10-29 07:22:13','2025-10-29 08:22:13'), -(15886,5288,'action complete via WP Cron','2025-10-29 07:22:13','2025-10-29 08:22:13'), -(15887,5308,'action created','2025-10-29 07:22:13','2025-10-29 08:22:13'), -(15888,5302,'action started via WP Cron','2025-10-29 07:44:13','2025-10-29 08:44:13'), -(15889,5309,'action created','2025-10-29 07:44:13','2025-10-29 08:44:13'), -(15890,5302,'action complete via WP Cron','2025-10-29 07:44:13','2025-10-29 08:44:13'), -(15891,5310,'action created','2025-10-29 08:30:53','2025-10-29 09:30:53'), -(15892,5310,'action started via WP Cron','2025-10-29 08:31:26','2025-10-29 09:31:26'), -(15893,5310,'action complete via WP Cron','2025-10-29 08:31:26','2025-10-29 09:31:26'), -(15894,5311,'action created','2025-10-29 08:32:31','2025-10-29 09:32:31'), -(15895,5311,'action started via Async Request','2025-10-29 08:32:50','2025-10-29 09:32:50'), -(15896,5311,'action complete via Async Request','2025-10-29 08:32:50','2025-10-29 09:32:50'), -(15897,5312,'action created','2025-10-29 08:38:35','2025-10-29 09:38:35'), -(15898,5312,'action started via WP Cron','2025-10-29 08:39:37','2025-10-29 09:39:37'), -(15899,5312,'action complete via WP Cron','2025-10-29 08:39:37','2025-10-29 09:39:37'), -(15900,5309,'action started via WP Cron','2025-10-29 08:44:13','2025-10-29 09:44:13'), -(15901,5313,'action created','2025-10-29 08:44:13','2025-10-29 09:44:13'), -(15902,5309,'action complete via WP Cron','2025-10-29 08:44:13','2025-10-29 09:44:13'), -(15903,5314,'action created','2025-10-29 08:51:43','2025-10-29 09:51:43'), -(15904,5315,'action created','2025-10-29 08:52:05','2025-10-29 09:52:05'), -(15905,5316,'action created','2025-10-29 08:52:05','2025-10-29 09:52:05'), -(15906,5317,'action created','2025-10-29 08:52:05','2025-10-29 09:52:05'), -(15907,5318,'action created','2025-10-29 08:52:05','2025-10-29 09:52:05'), -(15908,5319,'action created','2025-10-29 08:52:05','2025-10-29 09:52:05'), -(15909,5320,'action created','2025-10-29 08:52:14','2025-10-29 09:52:14'), -(15910,5321,'action created','2025-10-29 08:52:22','2025-10-29 09:52:22'), -(15911,5314,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15912,5314,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15913,5315,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15914,5315,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15915,5316,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15916,5316,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15917,5317,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15918,5317,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15919,5318,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15920,5318,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15921,5319,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15922,5319,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15923,5320,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15924,5320,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15925,5321,'action started via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15926,5321,'action complete via WP Cron','2025-10-29 08:52:26','2025-10-29 09:52:26'), -(15927,5322,'action created','2025-10-29 08:52:33','2025-10-29 09:52:33'), -(15928,5322,'action started via Async Request','2025-10-29 08:52:47','2025-10-29 09:52:47'), -(15929,5322,'action complete via Async Request','2025-10-29 08:52:47','2025-10-29 09:52:47'), -(15930,5323,'action created','2025-10-29 08:52:58','2025-10-29 09:52:58'), -(15931,5323,'action started via WP Cron','2025-10-29 08:53:42','2025-10-29 09:53:42'), -(15932,5323,'action complete via WP Cron','2025-10-29 08:53:42','2025-10-29 09:53:42'), -(15933,5324,'action created','2025-10-29 09:14:33','2025-10-29 10:14:33'), -(15934,5324,'action started via WP Cron','2025-10-29 09:15:45','2025-10-29 10:15:45'), -(15935,5324,'action complete via WP Cron','2025-10-29 09:15:45','2025-10-29 10:15:45'), -(15936,5325,'action created','2025-10-29 09:26:12','2025-10-29 10:26:12'), -(15937,5325,'action started via WP Cron','2025-10-29 09:26:26','2025-10-29 10:26:26'), -(15938,5325,'action complete via WP Cron','2025-10-29 09:26:26','2025-10-29 10:26:26'), -(15939,5313,'action started via WP Cron','2025-10-29 09:44:31','2025-10-29 10:44:31'), -(15940,5326,'action created','2025-10-29 09:44:31','2025-10-29 10:44:31'), -(15941,5313,'action complete via WP Cron','2025-10-29 09:44:31','2025-10-29 10:44:31'), -(15942,5275,'action started via Async Request','2025-10-29 10:18:22','2025-10-29 11:18:22'), -(15943,5275,'action complete via Async Request','2025-10-29 10:18:22','2025-10-29 11:18:22'), -(15944,5327,'action created','2025-10-29 10:18:22','2025-10-29 11:18:22'), -(15945,5305,'action started via WP Cron','2025-10-29 10:21:32','2025-10-29 11:21:32'), -(15946,5305,'action complete via WP Cron','2025-10-29 10:21:32','2025-10-29 11:21:32'), -(15947,5328,'action created','2025-10-29 10:21:32','2025-10-29 11:21:32'), -(15948,5326,'action started via WP Cron','2025-10-29 10:44:33','2025-10-29 11:44:33'), -(15949,5329,'action created','2025-10-29 10:44:33','2025-10-29 11:44:33'), -(15950,5326,'action complete via WP Cron','2025-10-29 10:44:33','2025-10-29 11:44:33'), -(15951,5329,'action started via WP Cron','2025-10-29 11:45:13','2025-10-29 12:45:13'), -(15952,5330,'action created','2025-10-29 11:45:13','2025-10-29 12:45:13'), -(15953,5329,'action complete via WP Cron','2025-10-29 11:45:13','2025-10-29 12:45:13'), -(15954,5330,'action started via WP Cron','2025-10-29 12:45:13','2025-10-29 13:45:13'), -(15955,5331,'action created','2025-10-29 12:45:13','2025-10-29 13:45:13'), -(15956,5330,'action complete via WP Cron','2025-10-29 12:45:13','2025-10-29 13:45:13'), -(15957,5296,'action started via WP Cron','2025-10-29 13:21:13','2025-10-29 14:21:13'), -(15958,5296,'action complete via WP Cron','2025-10-29 13:21:13','2025-10-29 14:21:13'), -(15959,5332,'action created','2025-10-29 13:21:13','2025-10-29 14:21:13'), -(15960,5331,'action started via WP Cron','2025-10-29 13:45:13','2025-10-29 14:45:13'), -(15961,5333,'action created','2025-10-29 13:45:13','2025-10-29 14:45:13'), -(15962,5331,'action complete via WP Cron','2025-10-29 13:45:13','2025-10-29 14:45:13'), -(15963,5333,'action started via WP Cron','2025-10-29 14:45:13','2025-10-29 15:45:13'), -(15964,5334,'action created','2025-10-29 14:45:13','2025-10-29 15:45:13'), -(15965,5333,'action complete via WP Cron','2025-10-29 14:45:13','2025-10-29 15:45:13'), -(15966,5334,'action started via WP Cron','2025-10-29 15:45:13','2025-10-29 16:45:13'), -(15967,5335,'action created','2025-10-29 15:45:13','2025-10-29 16:45:13'), -(15968,5334,'action complete via WP Cron','2025-10-29 15:45:13','2025-10-29 16:45:13'), -(15969,5335,'action started via WP Cron','2025-10-29 16:45:13','2025-10-29 17:45:13'), -(15970,5336,'action created','2025-10-29 16:45:13','2025-10-29 17:45:13'), -(15971,5335,'action complete via WP Cron','2025-10-29 16:45:13','2025-10-29 17:45:13'), -(15972,5336,'action started via WP Cron','2025-10-29 17:45:13','2025-10-29 18:45:13'), -(15973,5337,'action created','2025-10-29 17:45:13','2025-10-29 18:45:13'), -(15974,5336,'action complete via WP Cron','2025-10-29 17:45:13','2025-10-29 18:45:13'), -(15975,5285,'action started via WP Cron','2025-10-29 18:42:13','2025-10-29 19:42:13'), -(15976,5285,'action complete via WP Cron','2025-10-29 18:42:13','2025-10-29 19:42:13'), -(15977,5338,'action created','2025-10-29 18:42:13','2025-10-29 19:42:13'), -(15978,5286,'action started via WP Cron','2025-10-29 18:42:13','2025-10-29 19:42:13'), -(15979,5286,'action complete via WP Cron','2025-10-29 18:42:13','2025-10-29 19:42:13'), -(15980,5339,'action created','2025-10-29 18:42:13','2025-10-29 19:42:13'), -(15981,5337,'action started via WP Cron','2025-10-29 18:45:13','2025-10-29 19:45:13'), -(15982,5340,'action created','2025-10-29 18:45:13','2025-10-29 19:45:13'), -(15983,5337,'action complete via WP Cron','2025-10-29 18:45:13','2025-10-29 19:45:13'), -(15984,5308,'action started via WP Cron','2025-10-29 19:23:13','2025-10-29 20:23:13'), -(15985,5308,'action complete via WP Cron','2025-10-29 19:23:13','2025-10-29 20:23:13'), -(15986,5341,'action created','2025-10-29 19:23:13','2025-10-29 20:23:13'), -(15987,5340,'action started via WP Cron','2025-10-29 19:45:13','2025-10-29 20:45:13'), -(15988,5342,'action created','2025-10-29 19:45:13','2025-10-29 20:45:13'), -(15989,5340,'action complete via WP Cron','2025-10-29 19:45:13','2025-10-29 20:45:13'), -(15990,5342,'action started via WP Cron','2025-10-29 20:45:13','2025-10-29 21:45:13'), -(15991,5343,'action created','2025-10-29 20:45:13','2025-10-29 21:45:13'), -(15992,5342,'action complete via WP Cron','2025-10-29 20:45:13','2025-10-29 21:45:13'), -(15993,5343,'action started via WP Cron','2025-10-29 21:45:13','2025-10-29 22:45:13'), -(15994,5344,'action created','2025-10-29 21:45:13','2025-10-29 22:45:13'), -(15995,5343,'action complete via WP Cron','2025-10-29 21:45:13','2025-10-29 22:45:13'), -(15996,5292,'action started via WP Cron','2025-10-29 22:03:13','2025-10-29 23:03:13'), -(15997,5292,'action complete via WP Cron','2025-10-29 22:03:13','2025-10-29 23:03:13'), -(15998,5345,'action created','2025-10-29 22:03:13','2025-10-29 23:03:13'), -(15999,5344,'action started via WP Cron','2025-10-29 22:45:13','2025-10-29 23:45:13'), -(16000,5346,'action created','2025-10-29 22:45:13','2025-10-29 23:45:13'), -(16001,5344,'action complete via WP Cron','2025-10-29 22:45:13','2025-10-29 23:45:13'), -(16002,5346,'action started via WP Cron','2025-10-29 23:45:13','2025-10-30 00:45:13'), -(16003,5347,'action created','2025-10-29 23:45:13','2025-10-30 00:45:13'), -(16004,5346,'action complete via WP Cron','2025-10-29 23:45:13','2025-10-30 00:45:13'), -(16005,5347,'action started via WP Cron','2025-10-30 00:45:13','2025-10-30 01:45:13'), -(16006,5348,'action created','2025-10-30 00:45:13','2025-10-30 01:45:13'), -(16007,5347,'action complete via WP Cron','2025-10-30 00:45:13','2025-10-30 01:45:13'), -(16008,5332,'action started via WP Cron','2025-10-30 01:21:13','2025-10-30 02:21:13'), -(16009,5332,'action complete via WP Cron','2025-10-30 01:21:13','2025-10-30 02:21:13'), -(16011,5348,'action started via WP Cron','2025-10-30 01:45:13','2025-10-30 02:45:13'), -(16012,5350,'action created','2025-10-30 01:45:13','2025-10-30 02:45:13'), -(16013,5348,'action complete via WP Cron','2025-10-30 01:45:13','2025-10-30 02:45:13'), -(16014,5350,'action started via WP Cron','2025-10-30 02:45:13','2025-10-30 03:45:13'), -(16015,5351,'action created','2025-10-30 02:45:13','2025-10-30 03:45:13'), -(16016,5350,'action complete via WP Cron','2025-10-30 02:45:13','2025-10-30 03:45:13'), -(16017,5351,'action started via WP Cron','2025-10-30 03:45:13','2025-10-30 04:45:13'), -(16018,5352,'action created','2025-10-30 03:45:13','2025-10-30 04:45:13'), -(16019,5351,'action complete via WP Cron','2025-10-30 03:45:13','2025-10-30 04:45:13'), -(16020,5352,'action started via WP Cron','2025-10-30 04:45:13','2025-10-30 05:45:13'), -(16021,5353,'action created','2025-10-30 04:45:13','2025-10-30 05:45:13'), -(16022,5352,'action complete via WP Cron','2025-10-30 04:45:13','2025-10-30 05:45:13'), -(16023,5353,'action started via WP Cron','2025-10-30 05:45:13','2025-10-30 06:45:13'), -(16024,5354,'action created','2025-10-30 05:45:13','2025-10-30 06:45:13'), -(16025,5353,'action complete via WP Cron','2025-10-30 05:45:13','2025-10-30 06:45:13'), -(16026,5354,'action started via WP Cron','2025-10-30 06:46:13','2025-10-30 07:46:13'), -(16027,5355,'action created','2025-10-30 06:46:13','2025-10-30 07:46:13'), -(16028,5354,'action complete via WP Cron','2025-10-30 06:46:14','2025-10-30 07:46:14'), -(16029,5303,'action started via WP Cron','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16030,5303,'action complete via WP Cron','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16031,5356,'action created','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16032,5304,'action started via WP Cron','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16033,5304,'action complete via WP Cron','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16034,5357,'action created','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16035,5307,'action started via WP Cron','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16037,5358,'action created','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16038,5359,'action created','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16039,5307,'action complete via WP Cron','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16040,5360,'action created','2025-10-30 07:21:39','2025-10-30 08:21:39'), -(16041,5359,'action started via WP Cron','2025-10-30 07:23:14','2025-10-30 08:23:14'), -(16042,5359,'action complete via WP Cron','2025-10-30 07:23:14','2025-10-30 08:23:14'), -(16043,5341,'action started via WP Cron','2025-10-30 07:23:14','2025-10-30 08:23:14'), -(16044,5341,'action complete via WP Cron','2025-10-30 07:23:14','2025-10-30 08:23:14'), -(16045,5361,'action created','2025-10-30 07:23:14','2025-10-30 08:23:14'), -(16046,5355,'action started via WP Cron','2025-10-30 07:46:14','2025-10-30 08:46:14'), -(16047,5362,'action created','2025-10-30 07:46:14','2025-10-30 08:46:14'), -(16048,5355,'action complete via WP Cron','2025-10-30 07:46:14','2025-10-30 08:46:14'), -(16049,5362,'action started via WP Cron','2025-10-30 08:46:14','2025-10-30 09:46:14'), -(16050,5363,'action created','2025-10-30 08:46:14','2025-10-30 09:46:14'), -(16051,5362,'action complete via WP Cron','2025-10-30 08:46:14','2025-10-30 09:46:14'), -(16052,5363,'action started via WP Cron','2025-10-30 09:46:14','2025-10-30 10:46:14'), -(16053,5364,'action created','2025-10-30 09:46:14','2025-10-30 10:46:14'), -(16054,5363,'action complete via WP Cron','2025-10-30 09:46:14','2025-10-30 10:46:14'), -(16055,5327,'action started via WP Cron','2025-10-30 10:19:14','2025-10-30 11:19:14'), -(16056,5327,'action complete via WP Cron','2025-10-30 10:19:14','2025-10-30 11:19:14'), -(16057,5365,'action created','2025-10-30 10:19:14','2025-10-30 11:19:14'), -(16058,5328,'action started via WP Cron','2025-10-30 10:22:14','2025-10-30 11:22:14'), -(16059,5328,'action complete via WP Cron','2025-10-30 10:22:14','2025-10-30 11:22:14'), -(16060,5366,'action created','2025-10-30 10:22:14','2025-10-30 11:22:14'), -(16061,5364,'action started via WP Cron','2025-10-30 10:46:14','2025-10-30 11:46:14'), -(16062,5367,'action created','2025-10-30 10:46:14','2025-10-30 11:46:14'), -(16063,5364,'action complete via WP Cron','2025-10-30 10:46:14','2025-10-30 11:46:14'), -(16064,5367,'action started via WP Cron','2025-10-30 11:46:14','2025-10-30 12:46:14'), -(16065,5368,'action created','2025-10-30 11:46:14','2025-10-30 12:46:14'), -(16066,5367,'action complete via WP Cron','2025-10-30 11:46:14','2025-10-30 12:46:14'), -(16067,5368,'action started via WP Cron','2025-10-30 12:46:14','2025-10-30 13:46:14'), -(16068,5369,'action created','2025-10-30 12:46:14','2025-10-30 13:46:14'), -(16069,5368,'action complete via WP Cron','2025-10-30 12:46:14','2025-10-30 13:46:14'), -(16070,5369,'action started via WP Cron','2025-10-30 13:46:14','2025-10-30 14:46:14'), -(16071,5370,'action created','2025-10-30 13:46:14','2025-10-30 14:46:14'), -(16072,5369,'action complete via WP Cron','2025-10-30 13:46:14','2025-10-30 14:46:14'), -(16073,5370,'action started via WP Cron','2025-10-30 14:46:14','2025-10-30 15:46:14'), -(16074,5371,'action created','2025-10-30 14:46:14','2025-10-30 15:46:14'), -(16075,5370,'action complete via WP Cron','2025-10-30 14:46:14','2025-10-30 15:46:14'), -(16076,5371,'action started via WP Cron','2025-10-30 15:46:14','2025-10-30 16:46:14'), -(16077,5372,'action created','2025-10-30 15:46:14','2025-10-30 16:46:14'), -(16078,5371,'action complete via WP Cron','2025-10-30 15:46:14','2025-10-30 16:46:14'), -(16079,5372,'action started via WP Cron','2025-10-30 16:46:14','2025-10-30 17:46:14'), -(16080,5373,'action created','2025-10-30 16:46:14','2025-10-30 17:46:14'), -(16081,5372,'action complete via WP Cron','2025-10-30 16:46:14','2025-10-30 17:46:14'), -(16082,5373,'action started via WP Cron','2025-10-30 17:46:14','2025-10-30 18:46:14'), -(16083,5374,'action created','2025-10-30 17:46:14','2025-10-30 18:46:14'), -(16084,5373,'action complete via WP Cron','2025-10-30 17:46:14','2025-10-30 18:46:14'), -(16085,5338,'action started via WP Cron','2025-10-30 18:42:14','2025-10-30 19:42:14'), -(16086,5338,'action complete via WP Cron','2025-10-30 18:42:14','2025-10-30 19:42:14'), -(16087,5375,'action created','2025-10-30 18:42:14','2025-10-30 19:42:14'), -(16088,5339,'action started via WP Cron','2025-10-30 18:42:14','2025-10-30 19:42:14'), -(16089,5339,'action complete via WP Cron','2025-10-30 18:42:14','2025-10-30 19:42:14'), -(16090,5376,'action created','2025-10-30 18:42:14','2025-10-30 19:42:14'), -(16091,5374,'action started via WP Cron','2025-10-30 18:46:14','2025-10-30 19:46:14'), -(16092,5377,'action created','2025-10-30 18:46:14','2025-10-30 19:46:14'), -(16093,5374,'action complete via WP Cron','2025-10-30 18:46:14','2025-10-30 19:46:14'), -(16094,5361,'action started via WP Cron','2025-10-30 19:23:14','2025-10-30 20:23:14'), -(16095,5361,'action complete via WP Cron','2025-10-30 19:23:14','2025-10-30 20:23:14'), -(16096,5378,'action created','2025-10-30 19:23:14','2025-10-30 20:23:14'), -(16097,5377,'action started via WP Cron','2025-10-30 19:46:14','2025-10-30 20:46:14'), -(16098,5379,'action created','2025-10-30 19:46:14','2025-10-30 20:46:14'), -(16099,5377,'action complete via WP Cron','2025-10-30 19:46:14','2025-10-30 20:46:14'), -(16100,5379,'action started via WP Cron','2025-10-30 20:46:14','2025-10-30 21:46:14'), -(16101,5380,'action created','2025-10-30 20:46:14','2025-10-30 21:46:14'), -(16102,5379,'action complete via WP Cron','2025-10-30 20:46:14','2025-10-30 21:46:14'), -(16103,5380,'action started via WP Cron','2025-10-30 21:46:14','2025-10-30 22:46:14'), -(16104,5381,'action created','2025-10-30 21:46:14','2025-10-30 22:46:14'), -(16105,5380,'action complete via WP Cron','2025-10-30 21:46:14','2025-10-30 22:46:14'), -(16106,5345,'action started via WP Cron','2025-10-30 22:03:14','2025-10-30 23:03:14'), -(16107,5345,'action complete via WP Cron','2025-10-30 22:03:14','2025-10-30 23:03:14'), -(16108,5382,'action created','2025-10-30 22:03:14','2025-10-30 23:03:14'), -(16109,5381,'action started via WP Cron','2025-10-30 22:46:14','2025-10-30 23:46:14'), -(16110,5383,'action created','2025-10-30 22:46:14','2025-10-30 23:46:14'), -(16111,5381,'action complete via WP Cron','2025-10-30 22:46:14','2025-10-30 23:46:14'), -(16112,5383,'action started via WP Cron','2025-10-30 23:46:14','2025-10-31 00:46:14'), -(16113,5384,'action created','2025-10-30 23:46:14','2025-10-31 00:46:14'), -(16114,5383,'action complete via WP Cron','2025-10-30 23:46:14','2025-10-31 00:46:14'), -(16115,5384,'action started via WP Cron','2025-10-31 00:46:14','2025-10-31 01:46:14'), -(16116,5385,'action created','2025-10-31 00:46:14','2025-10-31 01:46:14'), -(16117,5384,'action complete via WP Cron','2025-10-31 00:46:14','2025-10-31 01:46:14'), -(16118,5385,'action started via WP Cron','2025-10-31 01:46:14','2025-10-31 02:46:14'), -(16119,5386,'action created','2025-10-31 01:46:14','2025-10-31 02:46:14'), -(16120,5385,'action complete via WP Cron','2025-10-31 01:46:14','2025-10-31 02:46:14'), -(16121,5386,'action started via WP Cron','2025-10-31 02:46:14','2025-10-31 03:46:14'), -(16122,5387,'action created','2025-10-31 02:46:14','2025-10-31 03:46:14'), -(16123,5386,'action complete via WP Cron','2025-10-31 02:46:14','2025-10-31 03:46:14'), -(16124,5387,'action started via WP Cron','2025-10-31 03:46:14','2025-10-31 04:46:14'), -(16125,5388,'action created','2025-10-31 03:46:14','2025-10-31 04:46:14'), -(16126,5387,'action complete via WP Cron','2025-10-31 03:46:14','2025-10-31 04:46:14'), -(16127,5388,'action started via WP Cron','2025-10-31 04:47:14','2025-10-31 05:47:14'), -(16128,5389,'action created','2025-10-31 04:47:14','2025-10-31 05:47:14'), -(16129,5388,'action complete via WP Cron','2025-10-31 04:47:14','2025-10-31 05:47:14'), -(16130,5358,'action started via WP Cron','2025-10-31 05:00:14','2025-10-31 06:00:14'), -(16131,5358,'action complete via WP Cron','2025-10-31 05:00:14','2025-10-31 06:00:14'), -(16133,5389,'action started via WP Cron','2025-10-31 05:47:28','2025-10-31 06:47:28'), -(16134,5391,'action created','2025-10-31 05:47:28','2025-10-31 06:47:28'), -(16135,5389,'action complete via WP Cron','2025-10-31 05:47:28','2025-10-31 06:47:28'), -(16136,5391,'action started via WP Cron','2025-10-31 06:48:14','2025-10-31 07:48:14'), -(16137,5392,'action created','2025-10-31 06:48:14','2025-10-31 07:48:14'), -(16138,5391,'action complete via WP Cron','2025-10-31 06:48:14','2025-10-31 07:48:14'), -(16139,5356,'action started via WP Cron','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16140,5356,'action complete via WP Cron','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16141,5393,'action created','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16142,5357,'action started via WP Cron','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16143,5357,'action complete via WP Cron','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16144,5394,'action created','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16145,5360,'action started via WP Cron','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16147,5395,'action created','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16148,5396,'action created','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16149,5360,'action complete via WP Cron','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16150,5397,'action created','2025-10-31 07:22:14','2025-10-31 08:22:14'), -(16151,5396,'action started via WP Cron','2025-10-31 07:23:14','2025-10-31 08:23:14'), -(16152,5396,'action complete via WP Cron','2025-10-31 07:23:14','2025-10-31 08:23:14'), -(16153,5378,'action started via WP Cron','2025-10-31 07:23:14','2025-10-31 08:23:14'), -(16154,5378,'action complete via WP Cron','2025-10-31 07:23:14','2025-10-31 08:23:14'), -(16155,5398,'action created','2025-10-31 07:23:14','2025-10-31 08:23:14'), -(16156,5392,'action started via WP Cron','2025-10-31 07:48:14','2025-10-31 08:48:14'), -(16157,5399,'action created','2025-10-31 07:48:14','2025-10-31 08:48:14'), -(16158,5392,'action complete via WP Cron','2025-10-31 07:48:14','2025-10-31 08:48:14'), -(16159,5399,'action started via WP Cron','2025-10-31 08:48:14','2025-10-31 09:48:14'), -(16160,5400,'action created','2025-10-31 08:48:14','2025-10-31 09:48:14'), -(16161,5399,'action complete via WP Cron','2025-10-31 08:48:14','2025-10-31 09:48:14'), -(16162,5400,'action started via WP Cron','2025-10-31 09:48:14','2025-10-31 10:48:14'), -(16163,5401,'action created','2025-10-31 09:48:14','2025-10-31 10:48:14'), -(16164,5400,'action complete via WP Cron','2025-10-31 09:48:14','2025-10-31 10:48:14'), -(16165,5365,'action started via WP Cron','2025-10-31 10:19:14','2025-10-31 11:19:14'), -(16166,5365,'action complete via WP Cron','2025-10-31 10:19:14','2025-10-31 11:19:14'), -(16167,5402,'action created','2025-10-31 10:19:14','2025-10-31 11:19:14'), -(16168,5366,'action started via WP Cron','2025-10-31 10:22:14','2025-10-31 11:22:14'), -(16169,5366,'action complete via WP Cron','2025-10-31 10:22:14','2025-10-31 11:22:14'), -(16170,5403,'action created','2025-10-31 10:22:14','2025-10-31 11:22:14'), -(16171,5401,'action started via WP Cron','2025-10-31 10:48:14','2025-10-31 11:48:14'), -(16172,5404,'action created','2025-10-31 10:48:14','2025-10-31 11:48:14'), -(16173,5401,'action complete via WP Cron','2025-10-31 10:48:14','2025-10-31 11:48:14'), -(16174,5404,'action started via WP Cron','2025-10-31 11:48:14','2025-10-31 12:48:14'), -(16175,5405,'action created','2025-10-31 11:48:14','2025-10-31 12:48:14'), -(16176,5404,'action complete via WP Cron','2025-10-31 11:48:14','2025-10-31 12:48:14'), -(16177,5405,'action started via WP Cron','2025-10-31 12:48:14','2025-10-31 13:48:14'), -(16178,5406,'action created','2025-10-31 12:48:14','2025-10-31 13:48:14'), -(16179,5405,'action complete via WP Cron','2025-10-31 12:48:14','2025-10-31 13:48:14'), -(16180,5406,'action started via WP Cron','2025-10-31 13:48:14','2025-10-31 14:48:14'), -(16181,5407,'action created','2025-10-31 13:48:14','2025-10-31 14:48:14'), -(16182,5406,'action complete via WP Cron','2025-10-31 13:48:14','2025-10-31 14:48:14'), -(16183,5407,'action started via WP Cron','2025-10-31 14:48:14','2025-10-31 15:48:14'), -(16184,5408,'action created','2025-10-31 14:48:14','2025-10-31 15:48:14'), -(16185,5407,'action complete via WP Cron','2025-10-31 14:48:14','2025-10-31 15:48:14'), -(16186,5408,'action started via WP Cron','2025-10-31 15:48:14','2025-10-31 16:48:14'), -(16187,5409,'action created','2025-10-31 15:48:14','2025-10-31 16:48:14'), -(16188,5408,'action complete via WP Cron','2025-10-31 15:48:14','2025-10-31 16:48:14'), -(16189,5409,'action started via WP Cron','2025-10-31 16:48:14','2025-10-31 17:48:14'), -(16190,5410,'action created','2025-10-31 16:48:14','2025-10-31 17:48:14'), -(16191,5409,'action complete via WP Cron','2025-10-31 16:48:14','2025-10-31 17:48:14'), -(16192,5410,'action started via WP Cron','2025-10-31 17:48:14','2025-10-31 18:48:14'), -(16193,5411,'action created','2025-10-31 17:48:14','2025-10-31 18:48:14'), -(16194,5410,'action complete via WP Cron','2025-10-31 17:48:14','2025-10-31 18:48:14'), -(16195,5375,'action started via WP Cron','2025-10-31 18:42:14','2025-10-31 19:42:14'), -(16196,5375,'action complete via WP Cron','2025-10-31 18:42:14','2025-10-31 19:42:14'), -(16197,5412,'action created','2025-10-31 18:42:14','2025-10-31 19:42:14'), -(16198,5376,'action started via WP Cron','2025-10-31 18:42:14','2025-10-31 19:42:14'), -(16199,5376,'action complete via WP Cron','2025-10-31 18:42:14','2025-10-31 19:42:14'), -(16200,5413,'action created','2025-10-31 18:42:14','2025-10-31 19:42:14'), -(16201,5411,'action started via WP Cron','2025-10-31 18:48:14','2025-10-31 19:48:14'), -(16202,5414,'action created','2025-10-31 18:48:14','2025-10-31 19:48:14'), -(16203,5411,'action complete via WP Cron','2025-10-31 18:48:14','2025-10-31 19:48:14'), -(16204,5398,'action started via WP Cron','2025-10-31 19:23:14','2025-10-31 20:23:14'), -(16205,5398,'action complete via WP Cron','2025-10-31 19:23:14','2025-10-31 20:23:14'), -(16206,5415,'action created','2025-10-31 19:23:14','2025-10-31 20:23:14'), -(16207,5414,'action started via WP Cron','2025-10-31 19:48:14','2025-10-31 20:48:14'), -(16208,5416,'action created','2025-10-31 19:48:14','2025-10-31 20:48:14'), -(16209,5414,'action complete via WP Cron','2025-10-31 19:48:14','2025-10-31 20:48:14'), -(16210,5416,'action started via WP Cron','2025-10-31 20:48:14','2025-10-31 21:48:14'), -(16211,5417,'action created','2025-10-31 20:48:14','2025-10-31 21:48:14'), -(16212,5416,'action complete via WP Cron','2025-10-31 20:48:14','2025-10-31 21:48:14'), -(16213,5417,'action started via WP Cron','2025-10-31 21:48:14','2025-10-31 22:48:14'), -(16214,5418,'action created','2025-10-31 21:48:14','2025-10-31 22:48:14'), -(16215,5417,'action complete via WP Cron','2025-10-31 21:48:14','2025-10-31 22:48:14'), -(16216,5382,'action started via WP Cron','2025-10-31 22:03:14','2025-10-31 23:03:14'), -(16217,5382,'action complete via WP Cron','2025-10-31 22:03:14','2025-10-31 23:03:14'), -(16218,5419,'action created','2025-10-31 22:03:14','2025-10-31 23:03:14'), -(16219,5418,'action started via WP Cron','2025-10-31 22:48:14','2025-10-31 23:48:14'), -(16220,5420,'action created','2025-10-31 22:48:14','2025-10-31 23:48:14'), -(16221,5418,'action complete via WP Cron','2025-10-31 22:48:14','2025-10-31 23:48:14'), -(16222,5420,'action started via WP Cron','2025-10-31 23:48:14','2025-11-01 00:48:14'), -(16223,5421,'action created','2025-10-31 23:48:14','2025-11-01 00:48:14'), -(16224,5420,'action complete via WP Cron','2025-10-31 23:48:14','2025-11-01 00:48:14'), -(16225,5421,'action started via WP Cron','2025-11-01 00:49:14','2025-11-01 01:49:14'), -(16226,5422,'action created','2025-11-01 00:49:14','2025-11-01 01:49:14'), -(16227,5421,'action complete via WP Cron','2025-11-01 00:49:14','2025-11-01 01:49:14'), -(16228,5422,'action started via WP Cron','2025-11-01 01:49:14','2025-11-01 02:49:14'), -(16229,5423,'action created','2025-11-01 01:49:14','2025-11-01 02:49:14'), -(16230,5422,'action complete via WP Cron','2025-11-01 01:49:14','2025-11-01 02:49:14'), -(16231,5423,'action started via WP Cron','2025-11-01 02:49:14','2025-11-01 03:49:14'), -(16232,5424,'action created','2025-11-01 02:49:14','2025-11-01 03:49:14'), -(16233,5423,'action complete via WP Cron','2025-11-01 02:49:14','2025-11-01 03:49:14'), -(16234,5424,'action started via WP Cron','2025-11-01 03:49:14','2025-11-01 04:49:14'), -(16235,5425,'action created','2025-11-01 03:49:14','2025-11-01 04:49:14'), -(16236,5424,'action complete via WP Cron','2025-11-01 03:49:14','2025-11-01 04:49:14'), -(16237,5425,'action started via WP Cron','2025-11-01 04:49:14','2025-11-01 05:49:14'), -(16238,5426,'action created','2025-11-01 04:49:14','2025-11-01 05:49:14'), -(16239,5425,'action complete via WP Cron','2025-11-01 04:49:14','2025-11-01 05:49:14'), -(16240,5395,'action started via WP Cron','2025-11-01 05:00:14','2025-11-01 06:00:14'), -(16241,5395,'action complete via WP Cron','2025-11-01 05:00:14','2025-11-01 06:00:14'), -(16243,5426,'action started via WP Cron','2025-11-01 05:49:14','2025-11-01 06:49:14'), -(16244,5428,'action created','2025-11-01 05:49:14','2025-11-01 06:49:14'), -(16245,5426,'action complete via WP Cron','2025-11-01 05:49:14','2025-11-01 06:49:14'), -(16246,5428,'action started via WP Cron','2025-11-01 06:49:14','2025-11-01 07:49:14'), -(16247,5429,'action created','2025-11-01 06:49:14','2025-11-01 07:49:14'), -(16248,5428,'action complete via WP Cron','2025-11-01 06:49:14','2025-11-01 07:49:14'), -(16249,5393,'action started via WP Cron','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16250,5393,'action complete via WP Cron','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16251,5430,'action created','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16252,5394,'action started via WP Cron','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16253,5394,'action complete via WP Cron','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16254,5431,'action created','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16255,5397,'action started via WP Cron','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16257,5432,'action created','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16258,5433,'action created','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16259,5397,'action complete via WP Cron','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16260,5434,'action created','2025-11-01 07:22:14','2025-11-01 08:22:14'), -(16261,5433,'action started via WP Cron','2025-11-01 07:23:14','2025-11-01 08:23:14'), -(16262,5433,'action complete via WP Cron','2025-11-01 07:23:14','2025-11-01 08:23:14'), -(16263,5415,'action started via WP Cron','2025-11-01 07:23:14','2025-11-01 08:23:14'), -(16264,5415,'action complete via WP Cron','2025-11-01 07:23:14','2025-11-01 08:23:14'), -(16265,5435,'action created','2025-11-01 07:23:14','2025-11-01 08:23:14'), -(16266,5429,'action started via WP Cron','2025-11-01 07:49:14','2025-11-01 08:49:14'), -(16267,5436,'action created','2025-11-01 07:49:14','2025-11-01 08:49:14'), -(16268,5429,'action complete via WP Cron','2025-11-01 07:49:14','2025-11-01 08:49:14'), -(16269,5436,'action started via WP Cron','2025-11-01 08:49:14','2025-11-01 09:49:14'), -(16270,5437,'action created','2025-11-01 08:49:14','2025-11-01 09:49:14'), -(16271,5436,'action complete via WP Cron','2025-11-01 08:49:14','2025-11-01 09:49:14'), -(16272,5437,'action started via WP Cron','2025-11-01 09:49:14','2025-11-01 10:49:14'), -(16273,5438,'action created','2025-11-01 09:49:14','2025-11-01 10:49:14'), -(16274,5437,'action complete via WP Cron','2025-11-01 09:49:14','2025-11-01 10:49:14'), -(16275,5402,'action started via WP Cron','2025-11-01 10:20:14','2025-11-01 11:20:14'), -(16276,5402,'action complete via WP Cron','2025-11-01 10:20:14','2025-11-01 11:20:14'), -(16277,5439,'action created','2025-11-01 10:20:14','2025-11-01 11:20:14'), -(16278,5403,'action started via WP Cron','2025-11-01 10:22:14','2025-11-01 11:22:14'), -(16279,5403,'action complete via WP Cron','2025-11-01 10:22:14','2025-11-01 11:22:14'), -(16280,5440,'action created','2025-11-01 10:22:14','2025-11-01 11:22:14'), -(16281,5438,'action started via WP Cron','2025-11-01 10:49:14','2025-11-01 11:49:14'), -(16282,5441,'action created','2025-11-01 10:49:14','2025-11-01 11:49:14'), -(16283,5438,'action complete via WP Cron','2025-11-01 10:49:14','2025-11-01 11:49:14'), -(16284,5441,'action started via WP Cron','2025-11-01 11:49:14','2025-11-01 12:49:14'), -(16285,5442,'action created','2025-11-01 11:49:14','2025-11-01 12:49:14'), -(16286,5441,'action complete via WP Cron','2025-11-01 11:49:14','2025-11-01 12:49:14'), -(16287,5442,'action started via WP Cron','2025-11-01 12:49:14','2025-11-01 13:49:14'), -(16288,5443,'action created','2025-11-01 12:49:14','2025-11-01 13:49:14'), -(16289,5442,'action complete via WP Cron','2025-11-01 12:49:14','2025-11-01 13:49:14'), -(16290,5443,'action started via WP Cron','2025-11-01 13:49:14','2025-11-01 14:49:14'), -(16291,5444,'action created','2025-11-01 13:49:14','2025-11-01 14:49:14'), -(16292,5443,'action complete via WP Cron','2025-11-01 13:49:14','2025-11-01 14:49:14'), -(16293,5444,'action started via WP Cron','2025-11-01 14:49:14','2025-11-01 15:49:14'), -(16294,5445,'action created','2025-11-01 14:49:14','2025-11-01 15:49:14'), -(16295,5444,'action complete via WP Cron','2025-11-01 14:49:14','2025-11-01 15:49:14'), -(16296,5445,'action started via WP Cron','2025-11-01 15:49:14','2025-11-01 16:49:14'), -(16297,5446,'action created','2025-11-01 15:49:14','2025-11-01 16:49:14'), -(16298,5445,'action complete via WP Cron','2025-11-01 15:49:14','2025-11-01 16:49:14'), -(16299,5446,'action started via WP Cron','2025-11-01 16:49:14','2025-11-01 17:49:14'), -(16300,5447,'action created','2025-11-01 16:49:14','2025-11-01 17:49:14'), -(16301,5446,'action complete via WP Cron','2025-11-01 16:49:14','2025-11-01 17:49:14'), -(16302,5447,'action started via WP Cron','2025-11-01 17:49:14','2025-11-01 18:49:14'), -(16303,5448,'action created','2025-11-01 17:49:14','2025-11-01 18:49:14'), -(16304,5447,'action complete via WP Cron','2025-11-01 17:49:14','2025-11-01 18:49:14'), -(16305,5412,'action started via WP Cron','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16306,5412,'action complete via WP Cron','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16307,5449,'action created','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16308,5413,'action started via WP Cron','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16309,5413,'action complete via WP Cron','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16310,5450,'action created','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16311,5448,'action started via WP Cron','2025-11-01 18:49:14','2025-11-01 19:49:14'), -(16312,5451,'action created','2025-11-01 18:49:14','2025-11-01 19:49:14'), -(16313,5448,'action complete via WP Cron','2025-11-01 18:49:14','2025-11-01 19:49:14'), -(16314,5435,'action started via WP Cron','2025-11-01 19:23:14','2025-11-01 20:23:14'), -(16315,5435,'action complete via WP Cron','2025-11-01 19:23:14','2025-11-01 20:23:14'), -(16316,5452,'action created','2025-11-01 19:23:14','2025-11-01 20:23:14'), -(16317,5451,'action started via WP Cron','2025-11-01 19:49:14','2025-11-01 20:49:14'), -(16318,5453,'action created','2025-11-01 19:49:14','2025-11-01 20:49:14'), -(16319,5451,'action complete via WP Cron','2025-11-01 19:49:14','2025-11-01 20:49:14'), -(16320,5453,'action started via WP Cron','2025-11-01 20:49:14','2025-11-01 21:49:14'), -(16321,5454,'action created','2025-11-01 20:49:14','2025-11-01 21:49:14'), -(16322,5453,'action complete via WP Cron','2025-11-01 20:49:14','2025-11-01 21:49:14'), -(16323,5454,'action started via WP Cron','2025-11-01 21:49:14','2025-11-01 22:49:14'), -(16324,5455,'action created','2025-11-01 21:49:14','2025-11-01 22:49:14'), -(16325,5454,'action complete via WP Cron','2025-11-01 21:49:14','2025-11-01 22:49:14'), -(16326,5419,'action started via WP Cron','2025-11-01 22:03:15','2025-11-01 23:03:15'), -(16327,5419,'action complete via WP Cron','2025-11-01 22:03:15','2025-11-01 23:03:15'), -(16328,5456,'action created','2025-11-01 22:03:15','2025-11-01 23:03:15'), -(16329,5455,'action started via WP Cron','2025-11-01 22:49:14','2025-11-01 23:49:14'), -(16330,5457,'action created','2025-11-01 22:49:14','2025-11-01 23:49:14'), -(16331,5455,'action complete via WP Cron','2025-11-01 22:49:14','2025-11-01 23:49:14'), -(16332,5457,'action started via WP Cron','2025-11-01 23:49:14','2025-11-02 00:49:14'), -(16333,5458,'action created','2025-11-01 23:49:14','2025-11-02 00:49:14'), -(16334,5457,'action complete via WP Cron','2025-11-01 23:49:14','2025-11-02 00:49:14'), -(16335,5458,'action started via WP Cron','2025-11-02 00:49:14','2025-11-02 01:49:14'), -(16336,5459,'action created','2025-11-02 00:49:14','2025-11-02 01:49:14'), -(16337,5458,'action complete via WP Cron','2025-11-02 00:49:14','2025-11-02 01:49:14'), -(16338,5459,'action started via WP Cron','2025-11-02 01:49:14','2025-11-02 02:49:14'), -(16339,5460,'action created','2025-11-02 01:49:14','2025-11-02 02:49:14'), -(16340,5459,'action complete via WP Cron','2025-11-02 01:49:14','2025-11-02 02:49:14'), -(16341,5460,'action started via WP Cron','2025-11-02 02:49:14','2025-11-02 03:49:14'), -(16342,5461,'action created','2025-11-02 02:49:14','2025-11-02 03:49:14'), -(16343,5460,'action complete via WP Cron','2025-11-02 02:49:14','2025-11-02 03:49:14'), -(16344,5461,'action started via WP Cron','2025-11-02 03:49:14','2025-11-02 04:49:14'), -(16345,5462,'action created','2025-11-02 03:49:14','2025-11-02 04:49:14'), -(16346,5461,'action complete via WP Cron','2025-11-02 03:49:14','2025-11-02 04:49:14'), -(16347,5462,'action started via WP Cron','2025-11-02 04:49:14','2025-11-02 05:49:14'), -(16348,5463,'action created','2025-11-02 04:49:14','2025-11-02 05:49:14'), -(16349,5462,'action complete via WP Cron','2025-11-02 04:49:15','2025-11-02 05:49:15'), -(16350,5432,'action started via WP Cron','2025-11-02 05:00:14','2025-11-02 06:00:14'), -(16351,5432,'action complete via WP Cron','2025-11-02 05:00:14','2025-11-02 06:00:14'), -(16353,5463,'action started via WP Cron','2025-11-02 05:49:14','2025-11-02 06:49:14'), -(16354,5465,'action created','2025-11-02 05:49:14','2025-11-02 06:49:14'), -(16355,5463,'action complete via WP Cron','2025-11-02 05:49:15','2025-11-02 06:49:15'), -(16356,5465,'action started via WP Cron','2025-11-02 06:49:15','2025-11-02 07:49:15'), -(16357,5466,'action created','2025-11-02 06:49:15','2025-11-02 07:49:15'), -(16358,5465,'action complete via WP Cron','2025-11-02 06:49:15','2025-11-02 07:49:15'), -(16359,5430,'action started via WP Cron','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16360,5430,'action complete via WP Cron','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16361,5467,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16362,5431,'action started via WP Cron','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16363,5431,'action complete via WP Cron','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16364,5468,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16365,5434,'action started via WP Cron','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16367,5469,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16368,5470,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16369,5434,'action complete via WP Cron','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16370,5471,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16371,5470,'action started via WP Cron','2025-11-02 07:23:15','2025-11-02 08:23:15'), -(16372,5470,'action complete via WP Cron','2025-11-02 07:23:15','2025-11-02 08:23:15'), -(16373,5452,'action started via WP Cron','2025-11-02 07:23:15','2025-11-02 08:23:15'), -(16374,5452,'action complete via WP Cron','2025-11-02 07:23:15','2025-11-02 08:23:15'), -(16375,5472,'action created','2025-11-02 07:23:15','2025-11-02 08:23:15'), -(16376,5466,'action started via WP Cron','2025-11-02 07:49:15','2025-11-02 08:49:15'), -(16377,5473,'action created','2025-11-02 07:49:15','2025-11-02 08:49:15'), -(16378,5466,'action complete via WP Cron','2025-11-02 07:49:15','2025-11-02 08:49:15'), -(16379,5473,'action started via WP Cron','2025-11-02 08:49:15','2025-11-02 09:49:15'), -(16380,5474,'action created','2025-11-02 08:49:15','2025-11-02 09:49:15'), -(16381,5473,'action complete via WP Cron','2025-11-02 08:49:15','2025-11-02 09:49:15'), -(16382,5474,'action started via WP Cron','2025-11-02 09:49:15','2025-11-02 10:49:15'), -(16383,5475,'action created','2025-11-02 09:49:15','2025-11-02 10:49:15'), -(16384,5474,'action complete via WP Cron','2025-11-02 09:49:15','2025-11-02 10:49:15'), -(16385,5439,'action started via WP Cron','2025-11-02 10:21:15','2025-11-02 11:21:15'), -(16386,5439,'action complete via WP Cron','2025-11-02 10:21:15','2025-11-02 11:21:15'), -(16387,5476,'action created','2025-11-02 10:21:15','2025-11-02 11:21:15'), -(16388,5440,'action started via WP Cron','2025-11-02 10:22:15','2025-11-02 11:22:15'), -(16389,5440,'action complete via WP Cron','2025-11-02 10:22:15','2025-11-02 11:22:15'), -(16390,5477,'action created','2025-11-02 10:22:15','2025-11-02 11:22:15'), -(16391,5475,'action started via WP Cron','2025-11-02 10:49:15','2025-11-02 11:49:15'), -(16392,5478,'action created','2025-11-02 10:49:15','2025-11-02 11:49:15'), -(16393,5475,'action complete via WP Cron','2025-11-02 10:49:15','2025-11-02 11:49:15'), -(16394,5478,'action started via WP Cron','2025-11-02 11:49:15','2025-11-02 12:49:15'), -(16395,5479,'action created','2025-11-02 11:49:15','2025-11-02 12:49:15'), -(16396,5478,'action complete via WP Cron','2025-11-02 11:49:15','2025-11-02 12:49:15'), -(16397,5479,'action started via WP Cron','2025-11-02 12:49:27','2025-11-02 13:49:27'), -(16398,5480,'action created','2025-11-02 12:49:27','2025-11-02 13:49:27'), -(16399,5479,'action complete via WP Cron','2025-11-02 12:49:27','2025-11-02 13:49:27'), -(16400,5480,'action started via WP Cron','2025-11-02 13:50:15','2025-11-02 14:50:15'), -(16401,5481,'action created','2025-11-02 13:50:15','2025-11-02 14:50:15'), -(16402,5480,'action complete via WP Cron','2025-11-02 13:50:15','2025-11-02 14:50:15'), -(16403,5481,'action started via WP Cron','2025-11-02 14:50:15','2025-11-02 15:50:15'), -(16404,5482,'action created','2025-11-02 14:50:15','2025-11-02 15:50:15'), -(16405,5481,'action complete via WP Cron','2025-11-02 14:50:15','2025-11-02 15:50:15'), -(16406,5482,'action started via WP Cron','2025-11-02 15:50:15','2025-11-02 16:50:15'), -(16407,5483,'action created','2025-11-02 15:50:15','2025-11-02 16:50:15'), -(16408,5482,'action complete via WP Cron','2025-11-02 15:50:15','2025-11-02 16:50:15'), -(16409,5483,'action started via WP Cron','2025-11-02 16:50:15','2025-11-02 17:50:15'), -(16410,5484,'action created','2025-11-02 16:50:15','2025-11-02 17:50:15'), -(16411,5483,'action complete via WP Cron','2025-11-02 16:50:15','2025-11-02 17:50:15'), -(16412,5484,'action started via WP Cron','2025-11-02 17:50:15','2025-11-02 18:50:15'), -(16413,5485,'action created','2025-11-02 17:50:15','2025-11-02 18:50:15'), -(16414,5484,'action complete via WP Cron','2025-11-02 17:50:15','2025-11-02 18:50:15'), -(16415,5449,'action started via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16416,5449,'action complete via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16417,5486,'action created','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16418,5450,'action started via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16419,5450,'action complete via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16420,5487,'action created','2025-11-02 18:42:15','2025-11-02 19:42:15'), -(16421,5485,'action started via WP Cron','2025-11-02 18:50:15','2025-11-02 19:50:15'), -(16422,5488,'action created','2025-11-02 18:50:15','2025-11-02 19:50:15'), -(16423,5485,'action complete via WP Cron','2025-11-02 18:50:15','2025-11-02 19:50:15'), -(16424,5472,'action started via WP Cron','2025-11-02 19:24:15','2025-11-02 20:24:15'), -(16425,5472,'action complete via WP Cron','2025-11-02 19:24:15','2025-11-02 20:24:15'), -(16426,5489,'action created','2025-11-02 19:24:15','2025-11-02 20:24:15'), -(16427,5490,'action created','2025-11-02 19:39:02','2025-11-02 20:39:02'), -(16428,5490,'action started via WP Cron','2025-11-02 19:40:07','2025-11-02 20:40:07'), -(16429,5490,'action complete via WP Cron','2025-11-02 19:40:07','2025-11-02 20:40:07'), -(16430,5491,'action created','2025-11-02 19:40:07','2025-11-02 20:40:07'), -(16431,5491,'action started via WP Cron','2025-11-02 19:41:15','2025-11-02 20:41:15'), -(16432,5491,'action complete via WP Cron','2025-11-02 19:41:15','2025-11-02 20:41:15'), -(16433,5488,'action started via WP Cron','2025-11-02 19:50:15','2025-11-02 20:50:15'), -(16434,5492,'action created','2025-11-02 19:50:15','2025-11-02 20:50:15'), -(16435,5488,'action complete via WP Cron','2025-11-02 19:50:15','2025-11-02 20:50:15'), -(16436,5492,'action started via WP Cron','2025-11-02 20:50:15','2025-11-02 21:50:15'), -(16437,5493,'action created','2025-11-02 20:50:15','2025-11-02 21:50:15'), -(16438,5492,'action complete via WP Cron','2025-11-02 20:50:15','2025-11-02 21:50:15'), -(16439,5493,'action started via WP Cron','2025-11-02 21:50:15','2025-11-02 22:50:15'), -(16440,5494,'action created','2025-11-02 21:50:15','2025-11-02 22:50:15'), -(16441,5493,'action complete via WP Cron','2025-11-02 21:50:15','2025-11-02 22:50:15'), -(16442,5456,'action started via WP Cron','2025-11-02 22:03:15','2025-11-02 23:03:15'), -(16443,5456,'action complete via WP Cron','2025-11-02 22:03:15','2025-11-02 23:03:15'), -(16444,5495,'action created','2025-11-02 22:03:15','2025-11-02 23:03:15'), -(16445,5494,'action started via WP Cron','2025-11-02 22:50:15','2025-11-02 23:50:15'), -(16446,5496,'action created','2025-11-02 22:50:15','2025-11-02 23:50:15'), -(16447,5494,'action complete via WP Cron','2025-11-02 22:50:15','2025-11-02 23:50:15'), -(16448,5496,'action started via WP Cron','2025-11-02 23:50:15','2025-11-03 00:50:15'), -(16449,5497,'action created','2025-11-02 23:50:15','2025-11-03 00:50:15'), -(16450,5496,'action complete via WP Cron','2025-11-02 23:50:15','2025-11-03 00:50:15'), -(16451,5497,'action started via WP Cron','2025-11-03 00:50:15','2025-11-03 01:50:15'), -(16452,5498,'action created','2025-11-03 00:50:15','2025-11-03 01:50:15'), -(16453,5497,'action complete via WP Cron','2025-11-03 00:50:15','2025-11-03 01:50:15'), -(16454,5498,'action started via WP Cron','2025-11-03 01:50:15','2025-11-03 02:50:15'), -(16455,5499,'action created','2025-11-03 01:50:15','2025-11-03 02:50:15'), -(16456,5498,'action complete via WP Cron','2025-11-03 01:50:15','2025-11-03 02:50:15'), -(16457,5499,'action started via WP Cron','2025-11-03 02:50:15','2025-11-03 03:50:15'), -(16458,5500,'action created','2025-11-03 02:50:15','2025-11-03 03:50:15'), -(16459,5499,'action complete via WP Cron','2025-11-03 02:50:15','2025-11-03 03:50:15'), -(16460,5500,'action started via WP Cron','2025-11-03 03:50:15','2025-11-03 04:50:15'), -(16461,5501,'action created','2025-11-03 03:50:15','2025-11-03 04:50:15'), -(16462,5500,'action complete via WP Cron','2025-11-03 03:50:15','2025-11-03 04:50:15'), -(16463,5501,'action started via WP Cron','2025-11-03 04:50:15','2025-11-03 05:50:15'), -(16464,5502,'action created','2025-11-03 04:50:15','2025-11-03 05:50:15'), -(16465,5501,'action complete via WP Cron','2025-11-03 04:50:15','2025-11-03 05:50:15'), -(16466,5469,'action started via WP Cron','2025-11-03 05:00:15','2025-11-03 06:00:15'), -(16467,5469,'action complete via WP Cron','2025-11-03 05:00:15','2025-11-03 06:00:15'), -(16469,5502,'action started via WP Cron','2025-11-03 05:50:15','2025-11-03 06:50:15'), -(16470,5504,'action created','2025-11-03 05:50:15','2025-11-03 06:50:15'), -(16471,5502,'action complete via WP Cron','2025-11-03 05:50:15','2025-11-03 06:50:15'), -(16472,5504,'action started via WP Cron','2025-11-03 06:50:15','2025-11-03 07:50:15'), -(16473,5505,'action created','2025-11-03 06:50:15','2025-11-03 07:50:15'), -(16474,5504,'action complete via WP Cron','2025-11-03 06:50:15','2025-11-03 07:50:15'), -(16475,5467,'action started via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16476,5467,'action complete via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16477,5506,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16478,5468,'action started via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16479,5468,'action complete via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16480,5507,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16481,5471,'action started via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16483,5508,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16484,5509,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16485,5471,'action complete via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16486,5510,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16487,5509,'action started via WP Cron','2025-11-03 07:23:10','2025-11-03 08:23:10'), -(16488,5509,'action complete via WP Cron','2025-11-03 07:23:10','2025-11-03 08:23:10'), -(16489,5489,'action started via WP Cron','2025-11-03 07:24:15','2025-11-03 08:24:15'), -(16490,5489,'action complete via WP Cron','2025-11-03 07:24:15','2025-11-03 08:24:15'), -(16491,5511,'action created','2025-11-03 07:24:15','2025-11-03 08:24:15'), -(16492,5505,'action started via WP Cron','2025-11-03 07:50:15','2025-11-03 08:50:15'), -(16493,5512,'action created','2025-11-03 07:50:15','2025-11-03 08:50:15'), -(16494,5505,'action complete via WP Cron','2025-11-03 07:50:15','2025-11-03 08:50:15'), -(16495,5512,'action started via WP Cron','2025-11-03 08:50:15','2025-11-03 09:50:15'), -(16496,5513,'action created','2025-11-03 08:50:15','2025-11-03 09:50:15'), -(16497,5512,'action complete via WP Cron','2025-11-03 08:50:15','2025-11-03 09:50:15'), -(16498,5514,'action created','2025-11-03 09:26:24','2025-11-03 10:26:24'), -(16499,5514,'action started via WP Cron','2025-11-03 09:26:26','2025-11-03 10:26:26'), -(16500,5514,'action complete via WP Cron','2025-11-03 09:26:26','2025-11-03 10:26:26'), -(16501,5515,'action created','2025-11-03 09:34:05','2025-11-03 10:34:05'), -(16502,5516,'action created','2025-11-03 09:34:05','2025-11-03 10:34:05'), -(16503,5517,'action created','2025-11-03 09:34:05','2025-11-03 10:34:05'), -(16504,5515,'action started via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16505,5515,'action complete via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16506,5516,'action started via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16507,5516,'action complete via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16508,5517,'action started via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16509,5517,'action complete via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16510,5513,'action started via WP Cron','2025-11-03 09:50:15','2025-11-03 10:50:15'), -(16511,5518,'action created','2025-11-03 09:50:15','2025-11-03 10:50:15'), -(16512,5513,'action complete via WP Cron','2025-11-03 09:50:15','2025-11-03 10:50:15'), -(16513,5476,'action started via WP Cron','2025-11-03 10:21:15','2025-11-03 11:21:15'), -(16514,5476,'action complete via WP Cron','2025-11-03 10:21:15','2025-11-03 11:21:15'), -(16515,5519,'action created','2025-11-03 10:21:15','2025-11-03 11:21:15'), -(16516,5477,'action started via WP Cron','2025-11-03 10:23:15','2025-11-03 11:23:15'), -(16517,5477,'action complete via WP Cron','2025-11-03 10:23:15','2025-11-03 11:23:15'), -(16518,5520,'action created','2025-11-03 10:23:15','2025-11-03 11:23:15'), -(16519,5518,'action started via WP Cron','2025-11-03 10:50:15','2025-11-03 11:50:15'), -(16520,5521,'action created','2025-11-03 10:50:15','2025-11-03 11:50:15'), -(16521,5518,'action complete via WP Cron','2025-11-03 10:50:15','2025-11-03 11:50:15'), -(16522,5521,'action started via WP Cron','2025-11-03 11:50:15','2025-11-03 12:50:15'), -(16523,5522,'action created','2025-11-03 11:50:15','2025-11-03 12:50:15'), -(16524,5521,'action complete via WP Cron','2025-11-03 11:50:15','2025-11-03 12:50:15'), -(16525,5522,'action started via WP Cron','2025-11-03 12:51:15','2025-11-03 13:51:15'), -(16526,5523,'action created','2025-11-03 12:51:15','2025-11-03 13:51:15'), -(16527,5522,'action complete via WP Cron','2025-11-03 12:51:15','2025-11-03 13:51:15'), -(16528,5523,'action started via WP Cron','2025-11-03 13:51:15','2025-11-03 14:51:15'), -(16529,5524,'action created','2025-11-03 13:51:15','2025-11-03 14:51:15'), -(16530,5523,'action complete via WP Cron','2025-11-03 13:51:15','2025-11-03 14:51:15'), -(16531,5524,'action started via WP Cron','2025-11-03 14:51:15','2025-11-03 15:51:15'), -(16532,5525,'action created','2025-11-03 14:51:15','2025-11-03 15:51:15'), -(16533,5524,'action complete via WP Cron','2025-11-03 14:51:15','2025-11-03 15:51:15'), -(16534,5525,'action started via WP Cron','2025-11-03 15:51:15','2025-11-03 16:51:15'), -(16535,5526,'action created','2025-11-03 15:51:15','2025-11-03 16:51:15'), -(16536,5525,'action complete via WP Cron','2025-11-03 15:51:15','2025-11-03 16:51:15'); -/*!40000 ALTER TABLE `haikuwp_actionscheduler_logs` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_commentmeta` --- - -DROP TABLE IF EXISTS `haikuwp_commentmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_commentmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `comment_id` (`comment_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_commentmeta` --- - -LOCK TABLES `haikuwp_commentmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_commentmeta` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_commentmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_comments` --- - -DROP TABLE IF EXISTS `haikuwp_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_comments` ( - `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, - `comment_author` tinytext NOT NULL, - `comment_author_email` varchar(100) NOT NULL DEFAULT '', - `comment_author_url` varchar(200) NOT NULL DEFAULT '', - `comment_author_IP` varchar(100) NOT NULL DEFAULT '', - `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `comment_content` text NOT NULL, - `comment_karma` int(11) NOT NULL DEFAULT 0, - `comment_approved` varchar(20) NOT NULL DEFAULT '1', - `comment_agent` varchar(255) NOT NULL DEFAULT '', - `comment_type` varchar(20) NOT NULL DEFAULT 'comment', - `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`comment_ID`), - KEY `comment_post_ID` (`comment_post_ID`), - KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), - KEY `comment_date_gmt` (`comment_date_gmt`), - KEY `comment_parent` (`comment_parent`), - KEY `comment_author_email` (`comment_author_email`(10)), - KEY `woo_idx_comment_type` (`comment_type`), - KEY `woo_idx_comment_date_type` (`comment_date_gmt`,`comment_type`,`comment_approved`,`comment_post_ID`) -) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_comments` --- - -LOCK TABLES `haikuwp_comments` WRITE; -/*!40000 ALTER TABLE `haikuwp_comments` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_comments` VALUES -(1,1,'Un commentateur ou commentatrice WordPress','wapuu@wordpress.example','https://fr.wordpress.org/','','2024-08-04 22:10:39','2024-08-04 20:10:39','Bonjour, ceci est un commentaire.\nPour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\nLes avatars des personnes qui commentent arrivent depuis Gravatar.',0,'1','','comment',0,0), -(2,543,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 09:48:32','2024-11-13 08:48:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(3,544,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 12:45:12','2024-11-13 11:45:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(4,609,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 18:17:59','2024-11-13 17:17:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(5,640,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 19:43:49','2024-11-13 18:43:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(6,657,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-14 11:55:59','2024-11-14 10:55:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(7,678,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-16 19:45:11','2024-11-16 18:45:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(8,687,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 10:44:59','2024-11-17 09:44:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(9,701,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:10:45','2024-11-17 10:10:45','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(10,706,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:23:11','2024-11-17 10:23:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(11,777,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 17:12:14','2024-11-21 16:12:14','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(12,782,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 23:23:47','2024-11-21 22:23:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(13,784,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 15:12:26','2024-11-22 14:12:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(14,785,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 18:37:30','2024-11-22 17:37:30','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(15,786,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 19:24:28','2024-11-22 18:24:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(16,838,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 08:58:17','2024-11-25 07:58:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(17,850,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 12:20:02','2024-11-25 11:20:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(18,854,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 18:18:15','2024-11-25 17:18:15','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(19,862,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 16:42:54','2024-11-28 15:42:54','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(20,861,'gcch','contact@gcch.fr','','','2024-11-28 18:00:31','2024-11-28 17:00:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(21,863,'gcch','contact@gcch.fr','','','2024-11-28 18:14:12','2024-11-28 17:14:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(22,863,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 20:33:49','2024-11-28 19:33:49','Order status changed from trash to Processing.',0,'1','WooCommerce','order_note',0,0), -(23,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), -(24,863,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), -(25,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:39','2024-11-28 19:40:39','Order status changed from On hold to Pending payment.',0,'1','WooCommerce','order_note',0,0), -(26,866,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 10:07:40','2024-11-29 09:07:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(27,868,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 18:26:38','2024-11-29 17:26:38','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(28,869,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 11:06:46','2024-12-02 10:06:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(29,871,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 17:34:12','2024-12-02 16:34:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(30,872,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 18:04:43','2024-12-03 17:04:43','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(31,873,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 23:55:58','2024-12-03 22:55:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(32,875,'gcch','contact@gcch.fr','','','2024-12-04 00:15:44','2024-12-03 23:15:44','Coupon applied: "zzzzzz".',0,'1','WooCommerce','order_note',0,0), -(33,878,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 14:10:02','2024-12-06 13:10:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(34,879,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 15:22:12','2024-12-06 14:22:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(35,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-12 17:59:06','2024-12-12 16:59:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(36,879,'gcch','contact@gcch.fr','','','2024-12-12 22:43:43','2024-12-12 21:43:43','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(37,878,'gcch','contact@gcch.fr','','','2024-12-12 23:07:34','2024-12-12 22:07:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(38,881,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-13 09:39:25','2024-12-13 08:39:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(39,884,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-14 11:10:27','2024-12-14 10:10:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(40,878,'gcch','contact@gcch.fr','','','2024-12-15 10:35:42','2024-12-15 09:35:42','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0), -(41,880,'gcch','contact@gcch.fr','','','2024-12-15 10:59:40','2024-12-15 09:59:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(42,885,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-16 10:17:25','2024-12-16 09:17:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(43,884,'gcch','contact@gcch.fr','','','2024-12-16 15:13:02','2024-12-16 14:13:02','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(44,881,'gcch','contact@gcch.fr','','','2024-12-16 15:13:35','2024-12-16 14:13:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(45,886,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-17 09:40:36','2024-12-17 08:40:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(46,887,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-18 16:14:07','2024-12-18 15:14:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(47,886,'gcch','contact@gcch.fr','','','2024-12-18 18:16:41','2024-12-18 17:16:41','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(48,885,'gcch','contact@gcch.fr','','','2024-12-18 18:19:20','2024-12-18 17:19:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(49,888,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-19 10:09:28','2024-12-19 09:09:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(50,888,'gcch','contact@gcch.fr','','','2024-12-20 19:55:35','2024-12-20 18:55:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(51,889,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-26 13:41:16','2024-12-26 12:41:16','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(52,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-30 11:40:43','2024-12-30 10:40:43','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), -(53,889,'gcch','contact@gcch.fr','','','2024-12-31 12:59:04','2024-12-31 11:59:04','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(54,887,'gcch','contact@gcch.fr','','','2024-12-31 12:59:53','2024-12-31 11:59:53','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(55,894,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-03 10:04:36','2025-01-03 09:04:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(56,894,'gcch','contact@gcch.fr','','','2025-01-07 15:56:35','2025-01-07 14:56:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(57,895,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-09 13:03:17','2025-01-09 12:03:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(58,895,'gcch','contact@gcch.fr','','','2025-01-14 20:47:46','2025-01-14 19:47:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(59,884,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-23 22:51:50','2025-01-23 21:51:50','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), -(60,897,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-29 11:33:02','2025-01-29 10:33:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(61,899,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-30 09:57:27','2025-01-30 08:57:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(62,897,'gcch','contact@gcch.fr','','','2025-02-03 18:36:20','2025-02-03 17:36:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(63,899,'gcch','contact@gcch.fr','','','2025-02-03 18:37:03','2025-02-03 17:37:03','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(64,901,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-23 18:08:48','2025-02-23 17:08:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(65,903,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-26 13:53:34','2025-02-26 12:53:34','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(66,903,'gcch','contact@gcch.fr','','','2025-03-01 09:14:28','2025-03-01 08:14:28','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(67,905,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 11:46:58','2025-03-03 10:46:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(68,906,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 12:11:31','2025-03-03 11:11:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(69,907,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-05 12:05:44','2025-03-05 11:05:44','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(70,905,'gcch','contact@gcch.fr','','','2025-03-06 09:24:34','2025-03-06 08:24:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(71,906,'gcch','contact@gcch.fr','','','2025-03-06 09:25:37','2025-03-06 08:25:37','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(72,907,'gcch','contact@gcch.fr','','','2025-03-18 10:40:40','2025-03-18 09:40:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(73,908,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-23 22:41:40','2025-03-23 21:41:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(74,908,'gcch','contact@gcch.fr','','','2025-04-04 08:41:40','2025-04-04 06:41:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(75,910,'WooCommerce','woocommerce@haikuatelier.com','','','2025-04-08 13:45:10','2025-04-08 11:45:10','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(76,912,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 11:50:58','2025-05-09 09:50:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(77,921,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 21:57:36','2025-05-09 19:57:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(78,910,'gcch','contact@gcch.fr','','','2025-05-11 15:35:33','2025-05-11 13:35:33','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(79,912,'gcch','contact@gcch.fr','','','2025-05-16 07:54:01','2025-05-16 05:54:01','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(80,921,'gcch','contact@gcch.fr','','','2025-05-16 07:54:27','2025-05-16 05:54:27','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(81,922,'gcch','contact@gcch.fr','','','2025-05-16 07:54:37','2025-05-16 05:54:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(82,922,'gcch','contact@gcch.fr','','','2025-05-16 07:55:05','2025-05-16 05:55:05','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(83,924,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-05 09:45:48','2025-06-05 07:45:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(84,924,'gcch','contact@gcch.fr','','','2025-06-09 12:59:57','2025-06-09 10:59:57','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(85,997,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-21 11:56:06','2025-06-21 09:56:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(86,997,'gcch','contact@gcch.fr','','','2025-06-28 16:32:24','2025-06-28 14:32:24','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(87,1013,'WooCommerce','woocommerce@haikuatelier.com','','','2025-07-14 14:39:22','2025-07-14 12:39:22','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(88,1013,'gcch','contact@gcch.fr','','','2025-07-16 10:59:10','2025-07-16 08:59:10','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(89,1443,'WooCommerce','woocommerce@haikuatelier.com','','','2025-09-17 20:13:41','2025-09-17 18:13:41','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(90,1443,'gcch','contact@gcch.fr','','','2025-09-23 11:29:46','2025-09-23 09:29:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(91,1480,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-02 06:41:49','2025-10-02 04:41:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(92,1480,'gcch','contact@gcch.fr','','','2025-10-03 21:49:57','2025-10-03 19:49:57','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(93,1486,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-10 17:55:44','2025-10-10 15:55:44','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(94,1487,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-11 17:07:01','2025-10-11 15:07:01','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(95,1488,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-12 16:50:29','2025-10-12 14:50:29','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(96,1489,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-12 23:04:26','2025-10-12 21:04:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(97,1489,'gcch','contact@gcch.fr','','','2025-10-16 13:01:51','2025-10-16 11:01:51','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(98,1487,'gcch','contact@gcch.fr','','','2025-10-16 13:02:20','2025-10-16 11:02:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(99,1486,'gcch','contact@gcch.fr','','','2025-10-16 13:02:41','2025-10-16 11:02:41','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(100,1490,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-18 15:36:45','2025-10-18 13:36:45','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(101,1488,'gcch','contact@gcch.fr','','','2025-10-24 08:59:47','2025-10-24 06:59:47','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(102,1490,'gcch','contact@gcch.fr','','','2025-10-24 19:36:03','2025-10-24 17:36:03','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(103,1496,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-02 20:40:07','2025-11-02 19:40:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0); -/*!40000 ALTER TABLE `haikuwp_comments` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_links` --- - -DROP TABLE IF EXISTS `haikuwp_links`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_links` ( - `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `link_url` varchar(255) NOT NULL DEFAULT '', - `link_name` varchar(255) NOT NULL DEFAULT '', - `link_image` varchar(255) NOT NULL DEFAULT '', - `link_target` varchar(25) NOT NULL DEFAULT '', - `link_description` varchar(255) NOT NULL DEFAULT '', - `link_visible` varchar(20) NOT NULL DEFAULT 'Y', - `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, - `link_rating` int(11) NOT NULL DEFAULT 0, - `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `link_rel` varchar(255) NOT NULL DEFAULT '', - `link_notes` mediumtext NOT NULL, - `link_rss` varchar(255) NOT NULL DEFAULT '', - PRIMARY KEY (`link_id`), - KEY `link_visible` (`link_visible`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_links` --- - -LOCK TABLES `haikuwp_links` WRITE; -/*!40000 ALTER TABLE `haikuwp_links` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_links` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_mclean_refs` --- - -DROP TABLE IF EXISTS `haikuwp_mclean_refs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_mclean_refs` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `mediaId` bigint(20) DEFAULT NULL, - `mediaUrl` tinytext DEFAULT NULL, - `originType` tinytext NOT NULL, - `parentId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_mclean_refs` --- - -LOCK TABLES `haikuwp_mclean_refs` WRITE; -/*!40000 ALTER TABLE `haikuwp_mclean_refs` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_mclean_refs` VALUES -(1,506,NULL,'WOOCOOMMERCE (ID)',NULL), -(2,81,NULL,'META (ID) [72]',NULL), -(3,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [72]',NULL), -(4,420,NULL,'META (ID) [86]',NULL), -(5,110,NULL,'META (ID) [102]',NULL), -(6,121,NULL,'META (ID) [113]',NULL), -(7,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [113]',NULL), -(8,219,NULL,'META (ID) [123]',NULL), -(9,141,NULL,'META (ID) [133]',NULL), -(10,152,NULL,'META (ID) [144]',NULL), -(11,163,NULL,'META (ID) [155]',NULL), -(12,176,NULL,'META (ID) [168]',NULL), -(13,564,NULL,'META (ID) [183]',NULL), -(14,206,NULL,'META (ID) [202]',NULL), -(15,568,NULL,'META (ID) [213]',NULL), -(16,604,NULL,'META (ID) [220]',NULL), -(17,606,NULL,'META (ID) [226]',NULL), -(18,668,NULL,'META (ID) [232]',NULL), -(19,243,NULL,'META (ID) [240]',NULL), -(20,249,NULL,'META (ID) [246]',NULL), -(21,601,NULL,'META (ID) [251]',NULL), -(22,259,NULL,'META (ID) [258]',NULL), -(23,262,NULL,'META (ID) [261]',NULL), -(24,600,NULL,'META (ID) [263]',NULL), -(25,603,NULL,'META (ID) [268]',NULL), -(26,602,NULL,'META (ID) [271]',NULL), -(27,275,NULL,'META (ID) [274]',NULL), -(28,280,NULL,'META (ID) [276]',NULL), -(29,283,NULL,'META (ID) [282]',NULL), -(30,286,NULL,'META (ID) [285]',NULL), -(31,289,NULL,'META (ID) [288]',NULL), -(32,292,NULL,'META (ID) [291]',NULL), -(33,310,NULL,'META (ID) [306]',NULL), -(34,316,NULL,'META (ID) [312]',NULL), -(35,503,NULL,'META (ID) [318]',NULL), -(36,326,NULL,'META (ID) [325]',NULL), -(37,329,NULL,'META (ID) [328]',NULL), -(38,332,NULL,'META (ID) [331]',NULL), -(39,336,NULL,'META (ID) [335]',NULL), -(40,339,NULL,'META (ID) [338]',NULL), -(41,559,NULL,'META (ID) [342]',NULL), -(42,360,NULL,'META (ID) [356]',NULL), -(43,369,NULL,'META (ID) [365]',NULL), -(44,375,NULL,'META (ID) [372]',NULL), -(45,378,NULL,'META (ID) [377]',NULL), -(46,382,NULL,'META (ID) [381]',NULL), -(47,486,NULL,'META (ID) [385]',NULL), -(48,396,NULL,'META (ID) [393]',NULL), -(49,399,NULL,'META (ID) [398]',NULL), -(50,403,NULL,'META (ID) [402]',NULL), -(51,407,NULL,'META (ID) [406]',NULL), -(52,431,NULL,'META (ID) [430]',NULL), -(53,475,NULL,'META (ID) [433]',NULL), -(54,436,NULL,'META (ID) [435]',NULL), -(55,449,NULL,'META (ID) [447]',NULL), -(56,482,NULL,'META (ID) [481]',NULL), -(57,491,NULL,'META (ID) [490]',NULL), -(58,500,NULL,'META (ID) [496]',NULL), -(59,516,NULL,'META (ID) [515]',NULL), -(60,524,NULL,'META (ID) [521]',NULL), -(61,536,NULL,'META (ID) [535]',NULL), -(62,547,NULL,'META (ID) [545]',NULL), -(63,665,NULL,'META (ID) [554]',NULL), -(64,575,NULL,'META (ID) [572]',NULL), -(65,598,NULL,'META (ID) [589]',NULL), -(66,611,NULL,'META (ID) [610]',NULL), -(67,621,NULL,'META (ID) [613]',NULL), -(68,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [613]',NULL), -(69,634,NULL,'META (ID) [625]',NULL), -(70,176,NULL,'META (ID) [200]',NULL), -(71,178,NULL,'META (ID) [201]',NULL), -(72,243,NULL,'META (ID) [241]',NULL), -(73,249,NULL,'META (ID) [247]',NULL), -(74,475,NULL,'META (ID) [478]',NULL), -(75,476,NULL,'META (ID) [479]',NULL), -(76,477,NULL,'META (ID) [480]',NULL); -/*!40000 ALTER TABLE `haikuwp_mclean_refs` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_mclean_scan` --- - -DROP TABLE IF EXISTS `haikuwp_mclean_scan`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_mclean_scan` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `type` tinyint(1) NOT NULL, - `postId` bigint(20) DEFAULT NULL, - `path` tinytext DEFAULT NULL, - `size` int(9) DEFAULT NULL, - `ignored` tinyint(1) NOT NULL DEFAULT 0, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `issue` tinytext NOT NULL, - `parentId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `IgnoredIndex` (`ignored`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_mclean_scan` --- - -LOCK TABLES `haikuwp_mclean_scan` WRITE; -/*!40000 ALTER TABLE `haikuwp_mclean_scan` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_mclean_scan` VALUES -(1,'2024-11-15 17:19:13',1,100,'2024/09/HADOU-B-mix.jpg (+ 2 files)',633426,0,0,'NO_CONTENT',NULL), -(2,'2024-11-15 17:19:13',1,101,'2024/09/HADOU-BKIGEN-Bo.jpg (+ 2 files)',992102,0,0,'NO_CONTENT',NULL), -(3,'2024-11-15 17:19:13',1,111,'2024/09/IKKAN-B-arg.jpg (+ 2 files)',181582,0,0,'NO_CONTENT',NULL), -(4,'2024-11-15 17:19:13',1,112,'2024/09/IKKAN-BaKIGEN-Ba.jpg (+ 2 files)',474986,0,0,'NO_CONTENT',NULL), -(5,'2024-11-15 17:19:13',1,122,'2024/09/IKKAN-B-g.jpg (+ 1 files)',575848,0,0,'NO_CONTENT',NULL), -(6,'2024-11-15 17:19:13',1,132,'2024/09/DSC9928.jpg (+ 2 files)',659968,0,0,'NO_CONTENT',NULL), -(7,'2024-11-15 17:19:13',1,142,'2024/09/DSC9269.jpg (+ 2 files)',461644,0,0,'NO_CONTENT',NULL), -(8,'2024-11-15 17:19:13',1,143,'2024/09/DSC9148.jpg (+ 2 files)',432058,0,0,'NO_CONTENT',NULL), -(9,'2024-11-15 17:19:13',1,153,'2024/10/KISHOU-B-arg-1.jpg (+ 2 files)',159416,0,0,'NO_CONTENT',NULL), -(10,'2024-11-15 17:19:13',1,154,'2024/10/KIGEN-BaIKKANBa.jpg (+ 2 files)',456438,0,0,'NO_CONTENT',NULL), -(11,'2024-11-15 17:19:13',1,164,'2024/10/KISHOU-B-vrm-1.jpg (+ 2 files)',252118,0,0,'NO_CONTENT',NULL), -(12,'2024-11-15 17:19:13',1,165,'2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg (+ 2 files)',524168,0,0,'NO_CONTENT',NULL), -(13,'2024-11-15 17:19:13',1,166,'2024/09/DSC9760.jpg (+ 2 files)',705900,0,0,'NO_CONTENT',NULL), -(14,'2024-11-15 17:19:13',1,167,'2024/09/DSC9339.jpg (+ 2 files)',515504,0,0,'NO_CONTENT',NULL), -(15,'2024-11-15 17:19:13',1,177,'2024/10/ROKKU-B-malachite-1.jpg (+ 2 files)',171466,0,0,'NO_CONTENT',NULL), -(16,'2024-11-15 17:19:13',1,179,'2024/10/ROKKU-B-tigereye-1.jpg (+ 2 files)',175398,0,0,'NO_CONTENT',NULL), -(17,'2024-11-15 17:19:13',1,180,'2024/10/DSC9710.jpg (+ 2 files)',843748,0,0,'NO_CONTENT',NULL), -(18,'2024-11-15 17:19:13',1,182,'2024/10/DSC9190.jpg (+ 2 files)',459310,0,0,'NO_CONTENT',NULL), -(19,'2024-11-15 17:19:13',1,199,'2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg (+ 1 files)',236038,0,0,'NO_CONTENT',NULL), -(20,'2024-11-15 17:19:13',1,207,'2024/10/PIASU-BO-1.jpg (+ 2 files)',675740,0,0,'NO_CONTENT',NULL), -(21,'2024-11-15 17:19:13',1,212,'2024/10/PIASU-BO-2.jpg (+ 2 files)',374094,0,0,'NO_CONTENT',NULL), -(22,'2024-11-15 17:19:13',1,225,'2024/10/TAMANORI-BO-s-1.jpg (+ 2 files)',337094,0,0,'NO_CONTENT',NULL), -(23,'2024-11-15 17:19:13',1,231,'2024/10/TAMANORI-BO-g-1.jpg (+ 2 files)',376868,0,0,'NO_CONTENT',NULL), -(24,'2024-11-15 17:19:13',1,237,'2024/10/HADOU-BR.jpg (+ 2 files)',1045562,0,0,'NO_CONTENT',NULL), -(25,'2024-11-15 17:19:13',1,244,'2024/10/IKKAN-BR-s.jpg (+ 2 files)',877486,0,0,'NO_CONTENT',NULL), -(26,'2024-11-15 17:19:13',1,245,'2024/10/IKKAN-BR-s-1.jpg (+ 2 files)',1073188,0,0,'NO_CONTENT',NULL), -(27,'2024-11-15 17:19:13',1,250,'2024/10/IKKAN-BR-g.jpg (+ 2 files)',374178,0,0,'NO_CONTENT',NULL), -(28,'2024-11-15 17:19:13',1,255,'2024/10/TANEMAKI-BR-1.jpg (+ 2 files)',1028916,0,0,'NO_CONTENT',NULL), -(29,'2024-11-15 17:19:13',1,260,'2024/10/DSC9225.jpg (+ 2 files)',696974,0,0,'NO_CONTENT',NULL), -(30,'2024-11-15 17:19:13',1,265,'2024/10/IKKAN-C.jpg (+ 2 files)',1066054,0,0,'NO_CONTENT',NULL), -(31,'2024-11-15 17:19:13',1,266,'2024/10/IKKAN-C-1.jpg (+ 1 files)',554660,0,0,'NO_CONTENT',NULL), -(32,'2024-11-15 17:19:13',1,267,'2024/10/IKKAN-C-2.jpg (+ 2 files)',1012194,0,0,'NO_CONTENT',NULL), -(33,'2024-11-15 17:19:13',1,270,'2024/10/PIASU-C-arg-opti.jpg (+ 2 files)',532206,0,0,'NO_CONTENT',NULL), -(34,'2024-11-15 17:19:13',1,273,'2024/10/TANEMAKI-C.jpg (+ 2 files)',997056,0,0,'NO_CONTENT',NULL), -(35,'2024-11-15 17:19:13',1,281,'2024/10/HADOU-CR-s.jpg (+ 2 files)',965156,0,0,'NO_CONTENT',NULL), -(36,'2024-11-15 17:19:13',1,284,'2024/10/HADOU-CR-g.jpg (+ 1 files)',325294,0,0,'NO_CONTENT',NULL), -(37,'2024-11-15 17:19:13',1,287,'2024/10/HATTARI-CR1-s-1.jpg (+ 2 files)',647238,0,0,'NO_CONTENT',NULL), -(38,'2024-11-15 17:19:13',1,290,'2024/10/DSC9336.jpg (+ 2 files)',561068,0,0,'NO_CONTENT',NULL), -(39,'2024-11-15 17:19:13',1,293,'2024/10/HATTARI-CR2.jpg (+ 2 files)',535282,0,0,'NO_CONTENT',NULL), -(40,'2024-11-15 17:19:13',1,311,'2024/10/DSC9378.jpg (+ 2 files)',541902,0,0,'NO_CONTENT',NULL), -(41,'2024-11-15 17:19:13',1,317,'2024/10/TAMANORI-CR2-vrm-1.jpg (+ 1 files)',408918,0,0,'NO_CONTENT',NULL), -(42,'2024-11-15 17:19:13',1,323,'2024/10/FUYOU-CR.jpg (+ 1 files)',546040,0,0,'NO_CONTENT',NULL), -(43,'2024-11-15 17:19:13',1,324,'2024/10/DSC9542.jpg (+ 2 files)',876338,0,0,'NO_CONTENT',NULL), -(44,'2024-11-15 17:19:13',1,327,'2024/10/HADOU-EC.jpg (+ 2 files)',711176,0,0,'NO_CONTENT',NULL), -(45,'2024-11-15 17:19:13',1,330,'2024/10/HADOU-EC-vrm-1.jpg (+ 2 files)',447956,0,0,'NO_CONTENT',NULL), -(46,'2024-11-15 17:19:13',1,334,'2024/10/HATTARI-EC-arg-1.jpg (+ 2 files)',369024,0,0,'NO_CONTENT',NULL), -(47,'2024-11-15 17:19:13',1,337,'2024/10/DSC9472.jpg (+ 2 files)',713526,0,0,'NO_CONTENT',NULL), -(48,'2024-11-15 17:19:13',1,340,'2024/10/PIASU-BRC-1.jpg (+ 2 files)',474200,0,0,'NO_CONTENT',NULL), -(49,'2024-11-15 17:19:13',1,341,'2024/10/PIASU-BRC-2.jpg (+ 2 files)',652362,0,0,'NO_CONTENT',NULL), -(50,'2024-11-15 17:19:13',1,347,'2024/10/DSC9763.jpg (+ 2 files)',804254,0,0,'NO_CONTENT',NULL), -(51,'2024-11-15 17:19:13',1,348,'2024/10/DSC9781.jpg (+ 1 files)',372455,0,0,'NO_CONTENT',NULL), -(52,'2024-11-15 17:19:13',1,349,'2024/10/DSC9748.jpg (+ 2 files)',842826,0,0,'NO_CONTENT',NULL), -(53,'2024-11-15 17:19:13',1,361,'2024/10/DSC9354.jpg (+ 2 files)',565222,0,0,'NO_CONTENT',NULL), -(54,'2024-11-15 17:19:13',1,376,'2024/10/DSC9300.jpg (+ 2 files)',469948,0,0,'NO_CONTENT',NULL), -(55,'2024-11-15 17:19:13',1,379,'2024/10/DSC9260.jpg (+ 1 files)',232862,0,0,'NO_CONTENT',NULL), -(56,'2024-11-15 17:19:13',1,380,'2024/10/DSC9262.jpg (+ 2 files)',394188,0,0,'NO_CONTENT',NULL), -(57,'2024-11-15 17:19:13',1,383,'2024/10/DSC9772.jpg (+ 1 files)',602490,0,0,'NO_CONTENT',NULL), -(58,'2024-11-15 17:19:13',1,384,'2024/10/DSC9775.jpg (+ 1 files)',559293,0,0,'NO_CONTENT',NULL), -(59,'2024-11-15 17:19:13',1,388,'2024/10/ROKKU-C-arg.jpg (+ 2 files)',656360,0,0,'NO_CONTENT',NULL), -(60,'2024-11-15 17:19:13',1,397,'2024/10/DSC9733.jpg (+ 1 files)',373189,0,0,'NO_CONTENT',NULL), -(61,'2024-11-15 17:19:13',1,400,'2024/10/DSC9723.jpg (+ 2 files)',775076,0,0,'NO_CONTENT',NULL), -(62,'2024-11-15 17:19:13',1,401,'2024/10/DSC9730.jpg (+ 2 files)',776178,0,0,'NO_CONTENT',NULL), -(63,'2024-11-15 17:19:13',1,404,'2024/10/DSC9216.jpg (+ 2 files)',407382,0,0,'NO_CONTENT',NULL), -(64,'2024-11-15 17:19:13',1,405,'2024/10/IMG_9077.jpg (+ 2 files)',493806,0,0,'NO_CONTENT',NULL), -(65,'2024-11-15 17:19:14',1,408,'2024/10/DSC9485.jpg (+ 1 files)',509856,0,0,'NO_CONTENT',NULL), -(66,'2024-11-15 17:19:14',1,409,'2024/10/MUGURA-NAIL-.jpg (+ 2 files)',610030,0,0,'NO_CONTENT',NULL), -(67,'2024-11-15 17:19:14',1,410,'2024/10/MUGURA-FEU-arg.jpg (+ 2 files)',86010,0,0,'NO_CONTENT',NULL), -(68,'2024-11-15 17:19:14',1,411,'2024/09/DSC8400-copie.jpg (+ 2 files)',995626,0,0,'NO_CONTENT',NULL), -(69,'2024-11-15 17:19:14',1,412,'2024/09/HATTARI-B-2-1.jpg (+ 2 files)',1069220,0,0,'NO_CONTENT',NULL), -(70,'2024-11-15 17:19:14',1,419,'2024/09/HATTARI-B-1.jpg (+ 2 files)',1071022,0,0,'NO_CONTENT',NULL), -(71,'2024-11-15 17:19:14',1,424,'2024/10/DSC9376.jpg (+ 2 files)',626712,0,0,'NO_CONTENT',NULL), -(72,'2024-11-15 17:19:14',1,425,'2024/10/DSC9156.jpg (+ 2 files)',821022,0,0,'NO_CONTENT',NULL), -(73,'2024-11-15 17:19:14',1,432,'2024/10/DSC9297.jpg (+ 2 files)',594618,0,0,'NO_CONTENT',NULL), -(74,'2024-11-15 17:19:14',1,437,'2024/10/DSC9781-1.jpg (+ 2 files)',749844,0,0,'NO_CONTENT',NULL), -(75,'2024-11-15 17:19:14',1,440,'2024/09/IMG_1423.jpg (+ 1 files)',539259,0,0,'NO_CONTENT',NULL), -(76,'2024-11-15 17:19:14',1,441,'2024/10/IMG_1428.jpg (+ 1 files)',739647,0,0,'NO_CONTENT',NULL), -(77,'2024-11-15 17:19:14',1,442,'2024/10/IMG_1431.jpg (+ 1 files)',774253,0,0,'NO_CONTENT',NULL), -(78,'2024-11-15 17:19:14',1,443,'2024/10/IMG_1432.jpg (+ 1 files)',886014,0,0,'NO_CONTENT',NULL), -(79,'2024-11-15 17:19:14',1,448,'2024/11/IMG_1473.jpg (+ 1 files)',1448749,0,0,'NO_CONTENT',NULL), -(80,'2024-11-15 17:19:14',1,450,'2024/09/IMG_1478.jpg (+ 1 files)',1770683,0,0,'NO_CONTENT',NULL), -(81,'2024-11-15 17:19:14',1,451,'2024/10/IMG_1493.jpg (+ 1 files)',955698,0,0,'NO_CONTENT',NULL), -(82,'2024-11-15 17:19:14',1,452,'2024/10/IMG_1505.jpg (+ 1 files)',1160791,0,0,'NO_CONTENT',NULL), -(83,'2024-11-15 17:19:14',1,455,'2024/10/IMG_1531.jpg (+ 1 files)',1498668,0,0,'NO_CONTENT',NULL), -(84,'2024-11-15 17:19:14',1,456,'2024/10/IMG_1543.jpg (+ 1 files)',779634,0,0,'NO_CONTENT',NULL), -(85,'2024-11-15 17:19:14',1,457,'2024/10/IMG_1565.jpg (+ 1 files)',569995,0,0,'NO_CONTENT',NULL), -(86,'2024-11-15 17:19:14',1,459,'2024/10/IMG_1586.jpg (+ 1 files)',1749377,0,0,'NO_CONTENT',NULL), -(87,'2024-11-15 17:19:14',1,460,'2024/10/IMG_1588.jpg (+ 1 files)',1183645,0,0,'NO_CONTENT',NULL), -(88,'2024-11-15 17:19:14',1,461,'2024/10/IMG_1600.jpg (+ 1 files)',1339797,0,0,'NO_CONTENT',NULL), -(89,'2024-11-15 17:19:14',1,463,'2024/10/IMG_1638.jpg (+ 1 files)',960703,0,0,'NO_CONTENT',NULL), -(90,'2024-11-15 17:19:14',1,464,'2024/10/IMG_1647.jpg (+ 1 files)',782793,0,0,'NO_CONTENT',NULL), -(91,'2024-11-15 17:19:14',1,465,'2024/10/IMG_1651.jpg (+ 1 files)',1518958,0,0,'NO_CONTENT',NULL), -(92,'2024-11-15 17:19:14',1,468,'2024/10/IMG_1673.jpg (+ 1 files)',1651578,0,0,'NO_CONTENT',NULL), -(93,'2024-11-15 17:19:14',1,469,'2024/10/IMG_1669.jpg (+ 1 files)',1454981,0,0,'NO_CONTENT',NULL), -(94,'2024-11-15 17:19:14',1,470,'2024/10/IMG_1675.jpg (+ 1 files)',228383,0,0,'NO_CONTENT',NULL), -(95,'2024-11-15 17:19:14',1,471,'2024/10/IMG_1680.jpg (+ 1 files)',1422287,0,0,'NO_CONTENT',NULL), -(96,'2024-11-15 17:19:14',1,472,'2024/10/IMG_1746.jpg (+ 1 files)',1224686,0,0,'NO_CONTENT',NULL), -(97,'2024-11-15 17:19:14',1,473,'2024/10/IMG_1747.jpg (+ 1 files)',1254904,0,0,'NO_CONTENT',NULL), -(98,'2024-11-15 17:19:14',1,474,'2024/10/IMG_1748.jpg (+ 1 files)',1443067,0,0,'NO_CONTENT',NULL), -(99,'2024-11-15 17:19:14',1,483,'2024/11/IMG_1619.jpg (+ 1 files)',1626994,0,0,'NO_CONTENT',NULL), -(100,'2024-11-15 17:19:14',1,487,'2024/10/DSC9138.jpg (+ 1 files)',283469,0,0,'NO_CONTENT',NULL), -(101,'2024-11-15 17:19:14',1,488,'2024/10/ROKKU-C-lapis.jpg (+ 1 files)',800553,0,0,'NO_CONTENT',NULL), -(102,'2024-11-15 17:19:14',1,489,'2024/10/ROKKU-C-jaspe.jpg (+ 1 files)',750940,0,0,'NO_CONTENT',NULL), -(103,'2024-11-15 17:19:14',1,492,'2024/11/IMG_1474.jpg (+ 1 files)',1552782,0,0,'NO_CONTENT',NULL), -(104,'2024-11-15 17:19:14',1,501,'2024/11/IMG_1481.jpg (+ 1 files)',1930791,0,0,'NO_CONTENT',NULL), -(105,'2024-11-15 17:19:14',1,502,'2024/11/IMG_1484.jpg (+ 1 files)',547048,0,0,'NO_CONTENT',NULL), -(106,'2024-11-15 17:19:14',1,504,'2024/10/FUYOU-C-1.jpg (+ 1 files)',984668,0,0,'NO_CONTENT',NULL), -(107,'2024-11-15 17:19:14',1,518,'2024/11/BOROBORO-BO1-g-brown.jpg (+ 1 files)',720777,0,0,'NO_CONTENT',NULL), -(108,'2024-11-15 17:19:14',1,526,'2024/11/BOROBORO-BO1-s-green.jpg (+ 1 files)',685626,0,0,'NO_CONTENT',NULL), -(109,'2024-11-15 17:19:14',1,531,'2024/09/DSC9897.jpg (+ 1 files)',1361665,0,0,'NO_CONTENT',NULL), -(110,'2024-11-15 17:19:14',1,537,'2024/11/IMG_1703.jpg (+ 1 files)',1901030,0,0,'NO_CONTENT',NULL), -(111,'2024-11-15 17:19:14',1,538,'2024/11/BOROBORO-BLT-crystal.jpg (+ 1 files)',778439,0,0,'NO_CONTENT',NULL), -(112,'2024-11-15 17:19:14',1,539,'2024/11/IMG_1715.jpg (+ 1 files)',1313772,0,0,'NO_CONTENT',NULL), -(113,'2024-11-15 17:19:14',1,548,'2024/11/IMG_1563.jpg (+ 1 files)',1718895,0,0,'NO_CONTENT',NULL), -(114,'2024-11-15 17:19:14',1,558,'2024/11/DSC9463.jpg (+ 1 files)',1886628,0,0,'NO_CONTENT',NULL), -(115,'2024-11-15 17:19:14',1,576,'2024/11/IMG_1419.jpg (+ 1 files)',566675,0,0,'NO_CONTENT',NULL), -(116,'2024-11-15 17:19:14',1,599,'2024/11/BOROBORO-B-s-1.jpg (+ 1 files)',1671625,0,0,'NO_CONTENT',NULL), -(117,'2024-11-15 17:19:14',1,622,'2024/11/IMG_1504.jpg (+ 1 files)',642992,0,0,'NO_CONTENT',NULL), -(118,'2024-11-15 17:19:14',1,623,'2024/11/IMG_1554.jpg (+ 1 files)',1406586,0,0,'NO_CONTENT',NULL), -(119,'2024-11-15 17:19:14',1,635,'2024/11/IMG_1501.jpg (+ 1 files)',573637,0,0,'NO_CONTENT',NULL), -(120,'2024-11-15 17:19:14',1,636,'2024/11/IMG_1506.jpg (+ 1 files)',1149564,0,0,'NO_CONTENT',NULL), -(121,'2024-11-15 17:19:14',1,644,'2024/10/DSC9341.jpg (+ 1 files)',1492187,0,0,'NO_CONTENT',NULL), -(122,'2024-11-15 17:19:14',1,658,'2024/10/BOROBORO-BOaTANEMAKI-BO1a.jpg (+ 1 files)',1088937,0,0,'NO_CONTENT',NULL), -(123,'2024-11-15 17:19:14',1,659,'2024/09/HADOU-B-opti.jpg (+ 1 files)',0,0,1,'ORPHAN_MEDIA',NULL), -(124,'2024-11-15 17:19:14',1,660,'2024/10/IMG_1442.jpg (+ 1 files)',1029972,0,0,'NO_CONTENT',NULL), -(125,'2024-11-15 17:19:14',1,661,'2024/10/IMG_1454.jpg (+ 1 files)',849459,0,0,'NO_CONTENT',NULL), -(126,'2024-11-15 17:19:14',1,662,'2024/10/IMG_1456.jpg (+ 1 files)',730806,0,0,'NO_CONTENT',NULL), -(127,'2024-11-15 17:19:14',1,663,'2024/11/IMG_1460.jpg (+ 1 files)',98598,0,0,'NO_CONTENT',NULL), -(128,'2024-11-15 17:19:14',1,664,'2024/10/IMG_1512.jpg (+ 1 files)',873482,0,0,'NO_CONTENT',NULL), -(129,'2024-11-15 17:19:14',1,666,'2024/11/IMG_1525.jpg (+ 1 files)',173470,0,0,'NO_CONTENT',NULL), -(130,'2024-11-15 17:19:14',1,667,'2024/11/IMG_1524.jpg (+ 1 files)',172887,0,0,'NO_CONTENT',NULL), -(131,'2024-11-15 17:19:14',1,669,'2024/10/IMG_1528.jpg (+ 1 files)',958548,0,0,'NO_CONTENT',NULL), -(132,'2024-11-15 17:19:14',1,670,'2024/10/IMG_1582.jpg (+ 1 files)',1167334,0,0,'NO_CONTENT',NULL), -(133,'2024-11-15 17:19:14',1,671,'2024/10/IMG_1604.jpg (+ 1 files)',876712,0,0,'NO_CONTENT',NULL), -(134,'2024-11-15 17:19:14',1,672,'2024/10/IMG_1656-1.jpg (+ 1 files)',1095755,0,0,'NO_CONTENT',NULL), -(135,'2024-11-15 17:19:14',1,673,'2024/10/IMG_1657.jpg (+ 1 files)',901473,0,0,'NO_CONTENT',NULL); -/*!40000 ALTER TABLE `haikuwp_mclean_scan` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_options` --- - -DROP TABLE IF EXISTS `haikuwp_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_options` ( - `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `option_name` varchar(191) NOT NULL DEFAULT '', - `option_value` longtext NOT NULL, - `autoload` varchar(20) NOT NULL DEFAULT 'yes', - PRIMARY KEY (`option_id`), - UNIQUE KEY `option_name` (`option_name`), - KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=34263 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_options` --- - -LOCK TABLES `haikuwp_options` WRITE; -/*!40000 ALTER TABLE `haikuwp_options` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_options` VALUES -(1,'cron','a:19:{i:1762186286;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1762186356;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1762186357;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1762186367;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1762186632;a:1:{s:26:\"rediscache_discard_metrics\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1762187914;a:2:{s:19:\"update_wms_statuses\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:17:\"check_wms_license\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1762189839;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1762200639;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1762200650;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1762200653;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1762204239;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1762206039;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1762207839;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1762219032;a:1:{s:45:\"woocommerce_marketplace_cron_fetch_promotions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1762236526;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1762261955;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1762261956;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1762719105;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'), -(2,'siteurl','https://haikuatelier.fr.ddev.site/wp','on'), -(3,'home','https://haikuatelier.fr.ddev.site/wp','on'), -(4,'blogname','Haiku Atelier','on'), -(5,'blogdescription','Handcrafted, poetic & minimalist silver jewelry.','on'), -(6,'users_can_register','0','on'), -(7,'admin_email','haiku.atelier@gmail.com','on'), -(8,'start_of_week','1','on'), -(9,'use_balanceTags','0','on'), -(10,'use_smilies','1','on'), -(11,'require_name_email','1','on'), -(12,'comments_notify','1','on'), -(13,'posts_per_rss','10','on'), -(14,'rss_use_excerpt','1','on'), -(15,'mailserver_url','mail.example.com','on'), -(16,'mailserver_login','login@example.com','on'), -(17,'mailserver_pass','password','on'), -(18,'mailserver_port','110','on'), -(19,'default_category','1','on'), -(20,'default_comment_status','open','on'), -(21,'default_ping_status','open','on'), -(22,'default_pingback_flag','1','on'), -(23,'posts_per_page','10','on'), -(24,'date_format','Y-m-d','on'), -(25,'time_format','H:i','on'), -(26,'links_updated_date_format','d F Y G\\hi','on'), -(27,'comment_moderation','0','on'), -(28,'moderation_notify','1','on'), -(29,'permalink_structure','/%postname%/','on'), -(31,'hack_file','0','on'), -(32,'blog_charset','UTF-8','on'), -(33,'moderation_keys','','off'), -(34,'active_plugins','a:6:{i:0;s:17:\"falcon/falcon.php\";i:1;s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";i:2;s:27:\"redis-cache/redis-cache.php\";i:3;s:37:\"wc-multishipping/wc-multishipping.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','on'), -(35,'category_base','/category','on'), -(36,'ping_sites','https://rpc.pingomatic.com/','on'), -(37,'comment_max_links','2','on'), -(38,'gmt_offset','','on'), -(39,'default_email_category','1','on'), -(40,'recently_edited','','off'), -(41,'template','haiku-atelier-2024','on'), -(42,'stylesheet','haiku-atelier-2024','on'), -(43,'comment_registration','0','on'), -(44,'html_type','text/html','on'), -(45,'use_trackback','0','on'), -(46,'default_role','customer','on'), -(47,'db_version','60421','on'), -(48,'uploads_use_yearmonth_folders','1','on'), -(49,'upload_path','','on'), -(50,'blog_public','1','on'), -(51,'default_link_category','2','on'), -(52,'show_on_front','page','on'), -(53,'tag_base','/tag','on'), -(54,'show_avatars','1','on'), -(55,'avatar_rating','G','on'), -(56,'upload_url_path','','on'), -(57,'thumbnail_size_w','300','on'), -(58,'thumbnail_size_h','300','on'), -(59,'thumbnail_crop','1','on'), -(60,'medium_size_w','9999','on'), -(61,'medium_size_h','9999','on'), -(62,'avatar_default','mystery','on'), -(63,'large_size_w','9999','on'), -(64,'large_size_h','9999','on'), -(65,'image_default_link_type','','on'), -(66,'image_default_size','','on'), -(67,'image_default_align','','on'), -(68,'close_comments_for_old_posts','0','on'), -(69,'close_comments_days_old','14','on'), -(70,'thread_comments','1','on'), -(71,'thread_comments_depth','5','on'), -(72,'page_comments','0','on'), -(73,'comments_per_page','50','on'), -(74,'default_comments_page','newest','on'), -(75,'comment_order','asc','on'), -(76,'sticky_posts','a:0:{}','on'), -(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(80,'uninstall_plugins','a:0:{}','off'), -(81,'timezone_string','Europe/Brussels','on'), -(82,'page_for_posts','0','on'), -(83,'page_on_front','13','on'), -(84,'default_post_format','0','on'), -(85,'link_manager_enabled','0','on'), -(86,'finished_splitting_shared_terms','1','on'), -(87,'site_icon','0','on'), -(88,'medium_large_size_w','768','on'), -(89,'medium_large_size_h','0','on'), -(90,'wp_page_for_privacy_policy','3','on'), -(91,'show_comments_cookies_opt_in','1','on'), -(92,'admin_email_lifespan','1738354239','on'), -(93,'disallowed_keys','','off'), -(94,'comment_previously_approved','1','on'), -(95,'auto_plugin_theme_update_emails','a:0:{}','off'), -(96,'auto_update_core_dev','enabled','on'), -(97,'auto_update_core_minor','enabled','on'), -(98,'auto_update_core_major','enabled','on'), -(99,'wp_force_deactivated_plugins','a:0:{}','off'), -(100,'wp_attachment_pages_enabled','0','on'), -(101,'initial_db_version','57155','on'), -(102,'haikuwp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:93:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}}','auto'), -(103,'fresh_site','0','off'), -(104,'WPLANG','en_GB','auto'), -(105,'user_count','2','off'), -(106,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:159:\"

Articles récents

\";}i:4;a:1:{s:7:\"content\";s:233:\"

Commentaires récents

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:151:\"

Catégories

\";}s:12:\"_multiwidget\";i:1;}','auto'), -(107,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'), -(108,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:1:{s:55:\"bedrock-disallow-indexing/bedrock-disallow-indexing.php\";a:15:{s:4:\"Name\";s:17:\"Disallow Indexing\";s:9:\"PluginURI\";s:25:\"https://roots.io/bedrock/\";s:7:\"Version\";s:5:\"2.0.0\";s:11:\"Description\";s:62:\"Disallow indexing of your site on non-production environments.\";s:6:\"Author\";s:5:\"Roots\";s:9:\"AuthorURI\";s:17:\"https://roots.io/\";s:10:\"TextDomain\";s:5:\"roots\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:17:\"Disallow Indexing\";s:10:\"AuthorName\";s:5:\"Roots\";}}s:5:\"count\";i:1;}','off'), -(109,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(110,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(111,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(112,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(113,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(114,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(115,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(116,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(117,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(118,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(119,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(120,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(121,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(122,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.1\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'), -(127,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1722802261;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'), -(153,'current_theme','','auto'), -(154,'theme_mods_haiku-atelier-2024','a:9:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:14:\"lien_instagram\";s:39:\"https://www.instagram.com/haiku.atelier\";s:26:\"texte_conditions_livraison\";s:450:\"Products will be shipped to you within 14 days after the order has been placed, depending on stock and complexity of production. However, we strive to prepare your order for the quickest delivery possible.\n
    \n
  • Belgium and France: free shipping.
  • \n
  • Worldwide: free shipping on orders above 150€.
  • \n
\nFor return inquiries, please contact us within 14 days after the item\'s reception.\";s:23:\"texte_entretien_produit\";s:404:\"Our jewelry are waterproof but it is preferable to avoid contact with perfume, beauty products, cleaning products, especially for your gold plated pieces.\n\nWipe dry with a soft cloth.\n\nPlease contact us for after sale services. Haiku pieces are guaranteed for a year. We can also repair your pieces after the year guarantee, the cost will depend on each case.\";s:21:\"sample_tinymce_editor\";s:8:\"zozozozo\";s:13:\"lien_facebook\";s:38:\"https://www.facebook.com/haiku.atelier\";s:14:\"lien_pinterest\";s:38:\"https://www.pinterest.com/haikuatelier\";}','on'), -(155,'theme_switched','','auto'), -(163,'finished_updating_comment_type','1','auto'), -(211,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'), -(212,'recently_activated','a:1:{s:31:\"query-monitor/query-monitor.php\";i:1761729273;}','off'), -(215,'polylang','a:14:{s:7:\"browser\";b:1;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:1;s:10:\"force_lang\";i:1;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";b:1;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:0:{}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:0:{}s:7:\"version\";s:5:\"3.6.4\";s:16:\"first_activation\";i:1722863554;s:12:\"default_lang\";s:2:\"en\";}','auto'), -(216,'polylang_wpml_strings','a:0:{}','auto'), -(217,'action_scheduler_hybrid_store_demarkation','6','auto'), -(218,'schema-ActionScheduler_StoreSchema','8.0.1755587404','auto'), -(219,'schema-ActionScheduler_LoggerSchema','3.0.1722863555','auto'), -(222,'woocommerce_newly_installed','no','auto'), -(223,'woocommerce_schema_version','920','auto'), -(224,'woocommerce_store_address','','on'), -(225,'woocommerce_store_address_2','','on'), -(226,'woocommerce_store_city','','on'), -(227,'woocommerce_default_country','BE','on'), -(228,'woocommerce_store_postcode','','on'), -(229,'woocommerce_allowed_countries','all','on'), -(230,'woocommerce_all_except_countries','a:0:{}','on'), -(231,'woocommerce_specific_allowed_countries','a:0:{}','on'), -(232,'woocommerce_ship_to_countries','','on'), -(233,'woocommerce_specific_ship_to_countries','a:0:{}','on'), -(234,'woocommerce_default_customer_address','base','on'), -(235,'woocommerce_calc_taxes','no','on'), -(236,'woocommerce_enable_coupons','yes','on'), -(237,'woocommerce_calc_discounts_sequentially','no','off'), -(238,'woocommerce_currency','EUR','on'), -(239,'woocommerce_currency_pos','left_space','on'), -(240,'woocommerce_price_thousand_sep','.','on'), -(241,'woocommerce_price_decimal_sep',',','on'), -(242,'woocommerce_price_num_decimals','2','on'), -(243,'woocommerce_shop_page_id','14','on'), -(244,'woocommerce_cart_redirect_after_add','no','on'), -(245,'woocommerce_enable_ajax_add_to_cart','yes','on'), -(246,'woocommerce_placeholder_image','506','on'), -(247,'woocommerce_weight_unit','kg','on'), -(248,'woocommerce_dimension_unit','cm','on'), -(249,'woocommerce_enable_reviews','no','on'), -(250,'woocommerce_review_rating_verification_label','no','off'), -(251,'woocommerce_review_rating_verification_required','no','off'), -(252,'woocommerce_enable_review_rating','no','on'), -(253,'woocommerce_review_rating_required','no','off'), -(254,'woocommerce_manage_stock','yes','on'), -(255,'woocommerce_hold_stock_minutes','60','off'), -(256,'woocommerce_notify_low_stock','yes','off'), -(257,'woocommerce_notify_no_stock','yes','off'), -(258,'woocommerce_stock_email_recipient','contact@gcch.fr','off'), -(259,'woocommerce_notify_low_stock_amount','2','off'), -(260,'woocommerce_notify_no_stock_amount','0','on'), -(261,'woocommerce_hide_out_of_stock_items','no','on'), -(262,'woocommerce_stock_format','','on'), -(263,'woocommerce_file_download_method','force','off'), -(264,'woocommerce_downloads_redirect_fallback_allowed','no','off'), -(265,'woocommerce_downloads_require_login','no','off'), -(266,'woocommerce_downloads_grant_access_after_payment','yes','off'), -(267,'woocommerce_downloads_deliver_inline','','off'), -(268,'woocommerce_downloads_add_hash_to_filename','yes','on'), -(270,'woocommerce_attribute_lookup_direct_updates','no','on'), -(271,'woocommerce_attribute_lookup_optimized_updates','no','on'), -(272,'woocommerce_product_match_featured_image_by_sku','no','on'), -(273,'woocommerce_prices_include_tax','no','on'), -(274,'woocommerce_tax_based_on','shipping','on'), -(275,'woocommerce_shipping_tax_class','inherit','on'), -(276,'woocommerce_tax_round_at_subtotal','no','on'), -(277,'woocommerce_tax_classes','','on'), -(278,'woocommerce_tax_display_shop','excl','on'), -(279,'woocommerce_tax_display_cart','excl','on'), -(280,'woocommerce_price_display_suffix','','on'), -(281,'woocommerce_tax_total_display','itemized','off'), -(282,'woocommerce_enable_shipping_calc','yes','off'), -(283,'woocommerce_shipping_cost_requires_address','no','on'), -(284,'woocommerce_ship_to_destination','shipping','off'), -(285,'woocommerce_shipping_debug_mode','no','on'), -(286,'woocommerce_enable_guest_checkout','yes','off'), -(287,'woocommerce_enable_checkout_login_reminder','yes','off'), -(288,'woocommerce_enable_signup_and_login_from_checkout','no','off'), -(289,'woocommerce_enable_myaccount_registration','no','off'), -(290,'woocommerce_registration_generate_username','no','off'), -(291,'woocommerce_registration_generate_password','no','off'), -(292,'woocommerce_erasure_request_removes_order_data','yes','off'), -(293,'woocommerce_erasure_request_removes_download_data','yes','off'), -(294,'woocommerce_allow_bulk_remove_personal_data','yes','off'), -(295,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on'), -(296,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on'), -(297,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(298,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(299,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(300,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(301,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(302,'woocommerce_email_from_name','Haiku Atelier','off'), -(303,'woocommerce_email_from_address','haiku.atelier@gmail.com','off'), -(304,'woocommerce_email_header_image','','off'), -(305,'woocommerce_email_footer_text','{site_title}','off'), -(306,'woocommerce_email_base_color','#720eec','off'), -(307,'woocommerce_email_background_color','#f7f7f7','off'), -(308,'woocommerce_email_body_background_color','#ffffff','off'), -(309,'woocommerce_email_text_color','#3c3c3c','off'), -(310,'woocommerce_merchant_email_notifications','no','off'), -(311,'woocommerce_cart_page_id','16','off'), -(312,'woocommerce_checkout_page_id','17','off'), -(313,'woocommerce_myaccount_page_id','15','off'), -(314,'woocommerce_terms_page_id','19','off'), -(315,'woocommerce_checkout_pay_endpoint','order-pay','on'), -(316,'woocommerce_checkout_order_received_endpoint','order-received','on'), -(317,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on'), -(318,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on'), -(319,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on'), -(320,'woocommerce_myaccount_orders_endpoint','orders','on'), -(321,'woocommerce_myaccount_view_order_endpoint','view-order','on'), -(322,'woocommerce_myaccount_downloads_endpoint','downloads','on'), -(323,'woocommerce_myaccount_edit_account_endpoint','edit-account','on'), -(324,'woocommerce_myaccount_edit_address_endpoint','edit-address','on'), -(325,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on'), -(326,'woocommerce_myaccount_lost_password_endpoint','lost-password','on'), -(327,'woocommerce_logout_endpoint','customer-logout','on'), -(328,'woocommerce_api_enabled','no','on'), -(329,'woocommerce_allow_tracking','no','on'), -(330,'woocommerce_show_marketplace_suggestions','no','off'), -(331,'woocommerce_custom_orders_table_enabled','yes','on'), -(332,'woocommerce_analytics_enabled','yes','on'), -(333,'woocommerce_feature_order_attribution_enabled','','on'), -(334,'woocommerce_feature_product_block_editor_enabled','no','on'), -(335,'woocommerce_hpos_fts_index_enabled','no','on'), -(336,'woocommerce_single_image_width','600','on'), -(337,'woocommerce_thumbnail_image_width','300','on'), -(338,'woocommerce_checkout_highlight_required_fields','yes','on'), -(339,'woocommerce_demo_store','no','off'), -(340,'wc_downloads_approved_directories_mode','enabled','auto'), -(341,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','auto'), -(342,'current_theme_supports_woocommerce','yes','auto'), -(343,'woocommerce_queue_flush_rewrite_rules','no','auto'), -(347,'default_product_cat','15','auto'), -(349,'woocommerce_refund_returns_page_id','11','auto'), -(352,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:15:\"contact@gcch.fr\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on'), -(353,'woocommerce_version','10.3.4','auto'), -(354,'woocommerce_db_version','10.3.4','auto'), -(355,'woocommerce_store_id','e041283c-a0c6-45fe-8c78-d326f5284551','auto'), -(356,'woocommerce_admin_install_timestamp','1722863556','auto'), -(357,'woocommerce_inbox_variant_assignment','7','auto'), -(358,'woocommerce_remote_variant_assignment','102','auto'), -(363,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','on'), -(364,'action_scheduler_lock_async-request-runner','6908969939aac8.49243562|1762170581','no'), -(365,'woocommerce_admin_notices','a:0:{}','auto'), -(366,'wc_blocks_version','11.8.0-dev','auto'), -(367,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'), -(368,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"n9PIFnp4zKp5KnjKvWdyoOort7Umdclh\";}','on'), -(369,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on'), -(370,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(371,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(372,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(373,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(374,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(375,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(376,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(377,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(378,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(379,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(380,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(381,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(382,'widget_polylang','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(391,'wcpay_was_in_use','no','auto'), -(400,'wc_admin_show_legacy_coupon_menu','0','auto'), -(401,'woocommerce_custom_orders_table_created','yes','auto'), -(404,'wc_blocks_db_schema_version','260','auto'), -(405,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','off'), -(414,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1762175595;}','auto'), -(415,'_transient_woocommerce_reports-transient-version','1750690595','on'), -(423,'_transient_product_query-transient-version','1750363871','on'), -(430,'category_children','a:0:{}','auto'), -(433,'pll_dismissed_notices','a:2:{i:0;s:6:\"wizard\";i:1;s:5:\"pllwc\";}','auto'), -(449,'woocommerce_task_list_tracked_completed_tasks','a:5:{i:0;s:17:\"launch-your-store\";i:1;s:8:\"products\";i:2;s:15:\"customize-store\";i:3;s:8:\"shipping\";i:4;s:15:\"review-shipping\";}','auto'), -(450,'woocommerce_onboarding_profile','a:9:{s:15:\"business_choice\";s:18:\"im_already_selling\";s:21:\"selling_online_answer\";s:21:\"yes_im_selling_online\";s:17:\"selling_platforms\";a:1:{i:0;s:3:\"wix\";}s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;s:15:\"arts_and_crafts\";}s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:15:\"contact@gcch.fr\";s:9:\"completed\";b:1;s:23:\"is_plugins_page_skipped\";b:1;}','auto'), -(452,'woocommerce_coming_soon','no','auto'), -(453,'woocommerce_store_pages_only','no','auto'), -(454,'woocommerce_private_link','no','auto'), -(455,'woocommerce_share_key','F7pud5vmFEcHk1bhNgS9GiTlfxeNx7K4','auto'), -(479,'falcon','a:3:{s:8:\"features\";a:39:{i:0;s:12:\"no_gutenberg\";i:1;s:9:\"no_embeds\";i:2;s:11:\"no_comments\";i:3;s:14:\"no_comment_url\";i:4;s:12:\"no_revisions\";i:5;s:13:\"no_self_pings\";i:6;s:10:\"no_privacy\";i:7;s:15:\"no_auto_updates\";i:8;s:17:\"search_posts_only\";i:9;s:12:\"no_texturize\";i:10;s:13:\"no_feed_links\";i:11;s:11:\"no_rsd_link\";i:12;s:19:\"no_wlwmanifest_link\";i:13;s:23:\"no_adjacent_posts_links\";i:14;s:15:\"no_wp_generator\";i:15;s:12:\"no_shortlink\";i:16;s:12:\"no_rest_link\";i:17;s:17:\"no_jquery_migrate\";i:18;s:16:\"schema_less_urls\";i:19;s:31:\"no_recent_comments_widget_style\";i:20;s:12:\"cleanup_menu\";i:21;s:9:\"no_emojis\";i:22;s:18:\"no_image_threshold\";i:23;s:14:\"no_exif_rotate\";i:24;s:22:\"no_admin_email_confirm\";i:25;s:16:\"no_update_emails\";i:26;s:18:\"no_new_user_emails\";i:27;s:24:\"no_password_reset_emails\";i:28;s:20:\"change_default_email\";i:29;s:15:\"login_site_icon\";i:30;s:14:\"no_update_nags\";i:31;s:14:\"no_footer_text\";i:32;s:20:\"no_dashboard_widgets\";i:33;s:10:\"no_wp_logo\";i:34;s:24:\"no_application_passwords\";i:35;s:9:\"no_xmlrpc\";i:36;s:15:\"restrict_upload\";i:37;s:15:\"no_login_errors\";i:38;s:13:\"block_ai_bots\";}s:13:\"default_email\";a:2:{s:9:\"from_name\";s:13:\"Haiku Atelier\";s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";}s:4:\"smtp\";a:5:{s:4:\"host\";s:15:\"smtp.migadu.com\";s:4:\"port\";s:3:\"465\";s:8:\"username\";s:17:\"admin@minima.haus\";s:8:\"password\";s:32:\"ILDwXJpxhfgc0SfEQIUGhHlGmb7KuGkl\";s:10:\"encryption\";s:3:\"tls\";}}','auto'), -(520,'wcpay_welcome_page_viewed_timestamp','1722865333','auto'), -(521,'wcpay_welcome_page_incentives_dismissed','a:1:{i:0;s:32:\"wcpay-promo-2023-action-discount\";}','auto'), -(565,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','on'), -(604,'_transient_product-transient-version','1750363871','on'), -(701,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','auto'), -(706,'_transient_shipping-transient-version','1733267802','on'), -(809,'_transient_pll_languages_list','a:1:{i:0;a:22:{s:4:\"name\";s:7:\"English\";s:4:\"slug\";s:2:\"en\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:16;s:6:\"locale\";s:5:\"en_GB\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:5:\"en-GB\";s:8:\"facebook\";s:5:\"en_GB\";s:8:\"home_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:10:\"search_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:4:\"host\";N;s:13:\"page_on_front\";i:0;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"gb\";s:8:\"flag_url\";s:67:\"https://haikuatelier.fr.ddev.site/app/plugins/polylang/flags/gb.png\";s:4:\"flag\";s:636:\"\"English\"\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:1;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:16;s:16:\"term_taxonomy_id\";i:16;s:5:\"count\";i:7;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:17;s:16:\"term_taxonomy_id\";i:17;s:5:\"count\";i:1;}}}}','on'), -(825,'rewrite_rules','a:193:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:15:\"^checkout-link$\";s:28:\"index.php?checkout-link=true\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:44:\"brand/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:39:\"brand/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:20:\"brand/(.+?)/embed/?$\";s:46:\"index.php?product_brand=$matches[1]&embed=true\";s:32:\"brand/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?product_brand=$matches[1]&paged=$matches[2]\";s:14:\"brand/(.+?)/?$\";s:35:\"index.php?product_brand=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$matches[3]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"collection/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?collection=$matches[1]&feed=$matches[2]\";s:46:\"collection/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?collection=$matches[1]&feed=$matches[2]\";s:27:\"collection/([^/]+)/embed/?$\";s:43:\"index.php?collection=$matches[1]&embed=true\";s:39:\"collection/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?collection=$matches[1]&paged=$matches[2]\";s:21:\"collection/([^/]+)/?$\";s:32:\"index.php?collection=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=13&cpage=$matches[1]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$matches[5]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$matches[4]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:36:\"([^/]+)/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?name=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\"[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','auto'), -(832,'woocommerce_pre_install_woocommerce_payments_promotion_settings','a:1:{s:12:\"is_dismissed\";s:3:\"yes\";}','auto'), -(833,'woocommerce_gateway_order','a:6:{s:19:\"_wc_pes_woopayments\";i:0;s:25:\"_wc_pes_paypal_full_stack\";i:1;s:33:\"_wc_offline_payment_methods_group\";i:2;s:4:\"bacs\";i:3;s:6:\"cheque\";i:4;s:3:\"cod\";i:5;}','auto'), -(840,'_transient_timeout_dirsize_cache','2045680880','off'), -(841,'_transient_dirsize_cache','a:2179:{s:37:\"/var/www/html/web/wp/wp-admin/network\";i:125999;s:40:\"/var/www/html/web/wp/wp-admin/js/widgets\";i:139432;s:32:\"/var/www/html/web/wp/wp-admin/js\";i:1971224;s:34:\"/var/www/html/web/wp/wp-admin/user\";i:3685;s:45:\"/var/www/html/web/wp/wp-admin/css/colors/blue\";i:77778;s:49:\"/var/www/html/web/wp/wp-admin/css/colors/midnight\";i:78486;s:48:\"/var/www/html/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/modern\";i:77989;s:50:\"/var/www/html/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/ocean\";i:75229;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/coffee\";i:75892;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/light\";i:78474;s:40:\"/var/www/html/web/wp/wp-admin/css/colors\";i:643556;s:33:\"/var/www/html/web/wp/wp-admin/css\";i:2542173;s:36:\"/var/www/html/web/wp/wp-admin/images\";i:426821;s:35:\"/var/www/html/web/wp/wp-admin/maint\";i:7592;s:38:\"/var/www/html/web/wp/wp-admin/includes\";i:3068919;s:29:\"/var/www/html/web/wp/wp-admin\";i:9070949;s:37:\"/var/www/html/web/wp/wp-includes/l10n\";i:30499;s:42:\"/var/www/html/web/wp/wp-includes/customize\";i:177349;s:47:\"/var/www/html/web/wp/wp-includes/block-patterns\";i:8843;s:36:\"/var/www/html/web/wp/wp-includes/ID3\";i:1160011;s:47:\"/var/www/html/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:52:\"/var/www/html/web/wp/wp-includes/js/dist/development\";i:179848;s:40:\"/var/www/html/web/wp/wp-includes/js/dist\";i:21234878;s:44:\"/var/www/html/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/html/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:48:\"/var/www/html/web/wp/wp-includes/js/mediaelement\";i:721307;s:45:\"/var/www/html/web/wp/wp-includes/js/swfupload\";i:8715;s:40:\"/var/www/html/web/wp/wp-includes/js/crop\";i:20004;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:54:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:62:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:56:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:51:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:50:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:43:\"/var/www/html/web/wp/wp-includes/js/tinymce\";i:2854127;s:46:\"/var/www/html/web/wp/wp-includes/js/codemirror\";i:1287141;s:45:\"/var/www/html/web/wp/wp-includes/js/jquery/ui\";i:787634;s:42:\"/var/www/html/web/wp/wp-includes/js/jquery\";i:1305370;s:49:\"/var/www/html/web/wp/wp-includes/js/imgareaselect\";i:49553;s:41:\"/var/www/html/web/wp/wp-includes/js/jcrop\";i:24976;s:44:\"/var/www/html/web/wp/wp-includes/js/thickbox\";i:31323;s:35:\"/var/www/html/web/wp/wp-includes/js\";i:30443441;s:50:\"/var/www/html/web/wp/wp-includes/interactivity-api\";i:55221;s:47:\"/var/www/html/web/wp/wp-includes/block-supports\";i:130165;s:51:\"/var/www/html/web/wp/wp-includes/sitemaps/providers\";i:17593;s:41:\"/var/www/html/web/wp/wp-includes/sitemaps\";i:47491;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-title\";i:1823;s:49:\"/var/www/html/web/wp/wp-includes/blocks/footnotes\";i:2642;s:47:\"/var/www/html/web/wp/wp-includes/blocks/buttons\";i:11183;s:45:\"/var/www/html/web/wp/wp-includes/blocks/group\";i:9055;s:45:\"/var/www/html/web/wp/wp-includes/blocks/query\";i:14007;s:46:\"/var/www/html/web/wp/wp-includes/blocks/search\";i:19592;s:55:\"/var/www/html/web/wp/wp-includes/blocks/comment-content\";i:1369;s:54:\"/var/www/html/web/wp/wp-includes/blocks/comments-title\";i:1701;s:48:\"/var/www/html/web/wp/wp-includes/blocks/archives\";i:1725;s:46:\"/var/www/html/web/wp/wp-includes/blocks/avatar\";i:2296;s:52:\"/var/www/html/web/wp/wp-includes/blocks/text-columns\";i:3034;s:52:\"/var/www/html/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:54:\"/var/www/html/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/html/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:44:\"/var/www/html/web/wp/wp-includes/blocks/file\";i:11514;s:50:\"/var/www/html/web/wp/wp-includes/blocks/categories\";i:2825;s:48:\"/var/www/html/web/wp/wp-includes/blocks/nextpage\";i:3039;s:64:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:45:\"/var/www/html/web/wp/wp-includes/blocks/video\";i:11619;s:51:\"/var/www/html/web/wp/wp-includes/blocks/social-link\";i:3474;s:49:\"/var/www/html/web/wp/wp-includes/blocks/post-date\";i:1377;s:49:\"/var/www/html/web/wp/wp-includes/blocks/page-list\";i:7663;s:56:\"/var/www/html/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:51:\"/var/www/html/web/wp/wp-includes/blocks/post-author\";i:2895;s:44:\"/var/www/html/web/wp/wp-includes/blocks/more\";i:3770;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-no-results\";i:899;s:49:\"/var/www/html/web/wp/wp-includes/blocks/home-link\";i:1130;s:50:\"/var/www/html/web/wp/wp-includes/blocks/site-title\";i:2289;s:45:\"/var/www/html/web/wp/wp-includes/blocks/block\";i:587;s:45:\"/var/www/html/web/wp/wp-includes/blocks/embed\";i:11232;s:45:\"/var/www/html/web/wp/wp-includes/blocks/audio\";i:3660;s:47:\"/var/www/html/web/wp/wp-includes/blocks/details\";i:2030;s:47:\"/var/www/html/web/wp/wp-includes/blocks/gallery\";i:80571;s:67:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:49:\"/var/www/html/web/wp/wp-includes/blocks/pullquote\";i:8267;s:49:\"/var/www/html/web/wp/wp-includes/blocks/paragraph\";i:6904;s:49:\"/var/www/html/web/wp/wp-includes/blocks/list-item\";i:1137;s:45:\"/var/www/html/web/wp/wp-includes/blocks/cover\";i:83346;s:50:\"/var/www/html/web/wp/wp-includes/blocks/media-text\";i:14445;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-content\";i:1389;s:58:\"/var/www/html/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:49:\"/var/www/html/web/wp/wp-includes/blocks/shortcode\";i:2918;s:45:\"/var/www/html/web/wp/wp-includes/blocks/table\";i:27351;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:46:\"/var/www/html/web/wp/wp-includes/blocks/button\";i:14416;s:53:\"/var/www/html/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-terms\";i:1715;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:44:\"/var/www/html/web/wp/wp-includes/blocks/list\";i:2173;s:49:\"/var/www/html/web/wp/wp-includes/blocks/read-more\";i:2526;s:56:\"/var/www/html/web/wp/wp-includes/blocks/term-description\";i:1751;s:46:\"/var/www/html/web/wp/wp-includes/blocks/spacer\";i:4737;s:56:\"/var/www/html/web/wp/wp-includes/blocks/comment-template\";i:2910;s:51:\"/var/www/html/web/wp/wp-includes/blocks/query-title\";i:1392;s:48:\"/var/www/html/web/wp/wp-includes/blocks/loginout\";i:1026;s:43:\"/var/www/html/web/wp/wp-includes/blocks/rss\";i:4491;s:52:\"/var/www/html/web/wp/wp-includes/blocks/widget-group\";i:400;s:52:\"/var/www/html/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:48:\"/var/www/html/web/wp/wp-includes/blocks/comments\";i:28882;s:47:\"/var/www/html/web/wp/wp-includes/blocks/heading\";i:5731;s:47:\"/var/www/html/web/wp/wp-includes/blocks/columns\";i:9193;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:45:\"/var/www/html/web/wp/wp-includes/blocks/quote\";i:6526;s:58:\"/var/www/html/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:44:\"/var/www/html/web/wp/wp-includes/blocks/html\";i:3770;s:57:\"/var/www/html/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/html/web/wp/wp-includes/blocks/post-featured-image\";i:29684;s:49:\"/var/www/html/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:53:\"/var/www/html/web/wp/wp-includes/blocks/template-part\";i:7986;s:53:\"/var/www/html/web/wp/wp-includes/blocks/post-template\";i:8072;s:52:\"/var/www/html/web/wp/wp-includes/blocks/social-links\";i:58808;s:46:\"/var/www/html/web/wp/wp-includes/blocks/column\";i:1597;s:61:\"/var/www/html/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:45:\"/var/www/html/web/wp/wp-includes/blocks/image\";i:64157;s:49:\"/var/www/html/web/wp/wp-includes/blocks/site-logo\";i:17033;s:65:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:50:\"/var/www/html/web/wp/wp-includes/blocks/navigation\";i:132149;s:68:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:55:\"/var/www/html/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:47:\"/var/www/html/web/wp/wp-includes/blocks/pattern\";i:411;s:48:\"/var/www/html/web/wp/wp-includes/blocks/calendar\";i:3804;s:49:\"/var/www/html/web/wp/wp-includes/blocks/separator\";i:5038;s:45:\"/var/www/html/web/wp/wp-includes/blocks/verse\";i:1860;s:64:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:55:\"/var/www/html/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:52:\"/var/www/html/web/wp/wp-includes/blocks/comment-date\";i:1112;s:47:\"/var/www/html/web/wp/wp-includes/blocks/missing\";i:617;s:52:\"/var/www/html/web/wp/wp-includes/blocks/preformatted\";i:1696;s:61:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:48:\"/var/www/html/web/wp/wp-includes/blocks/freeform\";i:41824;s:60:\"/var/www/html/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:44:\"/var/www/html/web/wp/wp-includes/blocks/code\";i:2638;s:39:\"/var/www/html/web/wp/wp-includes/blocks\";i:1503913;s:39:\"/var/www/html/web/wp/wp-includes/assets\";i:24990;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:49:\"/var/www/html/web/wp/wp-includes/css/dist/widgets\";i:23740;s:56:\"/var/www/html/web/wp/wp-includes/css/dist/format-library\";i:5556;s:48:\"/var/www/html/web/wp/wp-includes/css/dist/editor\";i:249100;s:59:\"/var/www/html/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:52:\"/var/www/html/web/wp/wp-includes/css/dist/components\";i:357993;s:62:\"/var/www/html/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/patterns\";i:7442;s:45:\"/var/www/html/web/wp/wp-includes/css/dist/nux\";i:11624;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/commands\";i:13442;s:53:\"/var/www/html/web/wp/wp-includes/css/dist/preferences\";i:8474;s:55:\"/var/www/html/web/wp/wp-includes/css/dist/block-library\";i:805380;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-post\";i:52240;s:41:\"/var/www/html/web/wp/wp-includes/css/dist\";i:2644068;s:36:\"/var/www/html/web/wp/wp-includes/css\";i:3289825;s:40:\"/var/www/html/web/wp/wp-includes/widgets\";i:158524;s:43:\"/var/www/html/web/wp/wp-includes/php-compat\";i:1253;s:58:\"/var/www/html/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/XML\";i:7098;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/Net\";i:7493;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/html/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:50:\"/var/www/html/web/wp/wp-includes/SimplePie/Content\";i:8015;s:54:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:49:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:47:\"/var/www/html/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:42:\"/var/www/html/web/wp/wp-includes/SimplePie\";i:458625;s:38:\"/var/www/html/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/html/web/wp/wp-includes/images/media\";i:5263;s:47:\"/var/www/html/web/wp/wp-includes/images/crystal\";i:15541;s:47:\"/var/www/html/web/wp/wp-includes/images/smilies\";i:10082;s:39:\"/var/www/html/web/wp/wp-includes/images\";i:102178;s:49:\"/var/www/html/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/html/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:42:\"/var/www/html/web/wp/wp-includes/Text/Diff\";i:44136;s:37:\"/var/www/html/web/wp/wp-includes/Text\";i:57049;s:37:\"/var/www/html/web/wp/wp-includes/pomo\";i:57146;s:45:\"/var/www/html/web/wp/wp-includes/style-engine\";i:47528;s:45:\"/var/www/html/web/wp/wp-includes/theme-compat\";i:15656;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/search\";i:16749;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/fields\";i:22510;s:51:\"/var/www/html/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:41:\"/var/www/html/web/wp/wp-includes/rest-api\";i:977234;s:36:\"/var/www/html/web/wp/wp-includes/IXR\";i:33915;s:45:\"/var/www/html/web/wp/wp-includes/certificates\";i:233231;s:42:\"/var/www/html/web/wp/wp-includes/PHPMailer\";i:233227;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:69:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:55:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:70:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:56:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:76:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:73:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:46:\"/var/www/html/web/wp/wp-includes/sodium_compat\";i:1303525;s:41:\"/var/www/html/web/wp/wp-includes/html-api\";i:330488;s:47:\"/var/www/html/web/wp/wp-includes/block-bindings\";i:3610;s:60:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:65:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:54:\"/var/www/html/web/wp/wp-includes/Requests/src/Response\";i:3101;s:51:\"/var/www/html/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:53:\"/var/www/html/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:52:\"/var/www/html/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:50:\"/var/www/html/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:45:\"/var/www/html/web/wp/wp-includes/Requests/src\";i:214849;s:49:\"/var/www/html/web/wp/wp-includes/Requests/library\";i:261;s:41:\"/var/www/html/web/wp/wp-includes/Requests\";i:215110;s:32:\"/var/www/html/web/wp/wp-includes\";i:48794197;s:20:\"/var/www/html/web/wp\";i:58049099;s:55:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/inc\";i:1242;s:69:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:3890;s:70:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:3094;s:61:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base\";i:8317;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:5543;s:66:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:261;s:56:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass\";i:14611;s:51:\"/var/www/html/web/app/themes/haiku-atelier-2024/src\";i:18883;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27943;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:643;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img\";i:28586;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/css\";i:34494;s:67:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:65:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:775316;s:60:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts\";i:998860;s:54:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets\";i:1061940;s:59:\"/var/www/html/web/app/themes/haiku-atelier-2024/views/parts\";i:2562;s:53:\"/var/www/html/web/app/themes/haiku-atelier-2024/views\";i:3229;s:47:\"/var/www/html/web/app/themes/haiku-atelier-2024\";i:1087153;s:51:\"/var/www/html/web/app/themes/twentytwentyfour/parts\";i:1473;s:56:\"/var/www/html/web/app/themes/twentytwentyfour/assets/css\";i:357;s:63:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:74:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:58:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:59:\"/var/www/html/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/assets\";i:2176015;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/styles\";i:33892;s:54:\"/var/www/html/web/app/themes/twentytwentyfour/patterns\";i:158957;s:55:\"/var/www/html/web/app/themes/twentytwentyfour/templates\";i:12953;s:45:\"/var/www/html/web/app/themes/twentytwentyfour\";i:3137090;s:28:\"/var/www/html/web/app/themes\";i:4224243;s:51:\"/var/www/html/web/app/plugins/falcon/src/Components\";i:3084;s:40:\"/var/www/html/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/html/web/app/plugins/falcon/vendor/composer\";i:37088;s:43:\"/var/www/html/web/app/plugins/falcon/vendor\";i:37859;s:43:\"/var/www/html/web/app/plugins/falcon/assets\";i:6377;s:56:\"/var/www/html/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:51:\"/var/www/html/web/app/plugins/falcon/views/settings\";i:13902;s:42:\"/var/www/html/web/app/plugins/falcon/views\";i:13902;s:36:\"/var/www/html/web/app/plugins/falcon\";i:97092;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:71:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:78:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:100907;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83933;s:83:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25699;s:75:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:354350;s:67:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler\";i:475782;s:68:\"/var/www/html/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:50:\"/var/www/html/web/app/plugins/woocommerce/packages\";i:475985;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:57:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Notes\";i:73813;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:62957;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:70693;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:89:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:47816;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9968;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8866;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25560;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:31578;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:57385;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:69829;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:113247;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:24158;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:44181;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:18932;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22026;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77212;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9963;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11562;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:18406;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:47160;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:23874;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29657;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:60372;s:80:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:31208;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:65298;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:690145;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API\";i:1009815;s:87:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:13900;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:86:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:48662;s:96:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43908;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21180;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:47117;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:57661;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:101089;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features\";i:303951;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:51:\"/var/www/html/web/app/plugins/woocommerce/src/Admin\";i:1668946;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:21817;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:176197;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:176533;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:144845;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:3796;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:5159;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:178544;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:189515;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi\";i:566738;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10471;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout\";i:10471;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Utilities\";i:50817;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:64889;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations\";i:130927;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Database\";i:130927;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:8936;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50559;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97298;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:105527;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:126187;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:38047;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47641;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:8879;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin\";i:764610;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Orders\";i:32575;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Utilities\";i:74076;s:97:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:30612;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:49112;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:72833;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95073;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:99:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:63353;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:63353;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features\";i:115099;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25054;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:284749;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores\";i:291991;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2480;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Internal\";i:1676491;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Caching\";i:20668;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Caches\";i:3406;s:58:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Utils\";i:78378;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25738;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:19338;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:52098;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:502024;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:61720;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Templates\";i:68111;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:8901;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:84:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101360;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain\";i:122574;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks\";i:1051533;s:45:\"/var/www/html/web/app/plugins/woocommerce/src\";i:5207127;s:64:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:68:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:58:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:82:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:80:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:87:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:71:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:61:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:54:\"/var/www/html/web/app/plugins/woocommerce/lib/packages\";i:126313;s:45:\"/var/www/html/web/app/plugins/woocommerce/lib\";i:126313;s:53:\"/var/www/html/web/app/plugins/woocommerce/sample-data\";i:220042;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:71:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:79:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42755;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:75:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39841;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17182;s:69:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107180;s:56:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony\";i:117710;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:55:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:161410;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:162514;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm\";i:162514;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6664;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25080;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:43599;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:62015;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2602;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21018;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3414;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21830;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:73:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:2191;s:91:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6218;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:262401;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:85946;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:368954;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic\";i:672051;s:52:\"/var/www/html/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:92:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:72:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:68:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:57:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer\";i:834582;s:67:\"/var/www/html/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:88:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:48:\"/var/www/html/web/app/plugins/woocommerce/vendor\";i:2029798;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/flexslider\";i:74711;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/selectWoo\";i:463933;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:59:\"/var/www/html/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/admin\";i:483578;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:60:\"/var/www/html/web/app/plugins/woocommerce/assets/js/frontend\";i:203314;s:56:\"/var/www/html/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:51:\"/var/www/html/web/app/plugins/woocommerce/assets/js\";i:2328886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:52:\"/var/www/html/web/app/plugins/woocommerce/assets/css\";i:2093041;s:54:\"/var/www/html/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:9410678;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/images/core-profiler\";i:307207;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/images/previews\";i:522602;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:36070;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons\";i:41143;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/images/onboarding\";i:178839;s:67:\"/var/www/html/web/app/plugins/woocommerce/assets/images/admin_notes\";i:30986;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment-methods\";i:61832;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/task_list\";i:99632;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/images\";i:11811898;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:993;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1334;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:927;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:624;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:782;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:290;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1141;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1195;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:616;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:670;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:300374;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:544;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:431;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1843;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:684;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:621;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1564;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:541;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1407;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1262;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1117;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:632;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:636;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:498;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:457;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:879;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1364;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:852;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:931;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1595;s:82:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1422;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1155;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1212;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1590;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:870;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1511;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:612;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:727;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1581;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:955;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1567;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:761;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:432;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:766;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:865;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1345;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1513;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:440;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:355;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:462;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:918;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:193714;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:66484;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:811;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:1022;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1603;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:540;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1878;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:461;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:785;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1378;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:470;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:813;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:530;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:478;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:589;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:750;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:469;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:617;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:651;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:663;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:662;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:616;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:590;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:618;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:622;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:612;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:628;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:603;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:619;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:714;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:586;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:617;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:578;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:624;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:566;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:641;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:625;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:570;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:660;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:583;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:682;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:837;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:674;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:633;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:587;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:827;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:633;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:598;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:588;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:816;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:593;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:715;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:600;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:612;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:573;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:640;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:633;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:672;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:641;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:627;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:744;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:614;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:659;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:442;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:677;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33477;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1367;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:641;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:641;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks\";i:5183022;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation-opt-out\";i:1123;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/data\";i:148336;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86621;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8027;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127309;s:70:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4673;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/app\";i:784133;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/components\";i:1088012;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:383066;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:161259;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:44202;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1733;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2640;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2158;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:572;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3422;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:2980;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3007;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5594;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5554;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3205;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3197;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:136:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22908;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8741;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3830;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2295;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2467;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:702;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:727;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6632;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:6717;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2058;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2233;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3397;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2093;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3469;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2395;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3197;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:1978;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13811;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:633;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5244;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:622;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7250;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7549;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4007;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7662;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:1995;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21670;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8858;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2471;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2864;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1652;s:124:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:572;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4850;s:126:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2241;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3595;s:130:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1698;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2037;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:627;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:211809;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:604;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2701;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1762;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:592;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2123;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:868;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7133;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3523;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2080;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4088;s:95:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:3912;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:992;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1942;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2050;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2621;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1822;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2244;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1858;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8184;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2674;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:832;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3354;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5482;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:617;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:8852;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3495;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2685;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3645;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:755;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1165;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1370;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:90628;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:310482;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1142135;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1904551;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:6773;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin\";i:6622059;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/client\";i:11805081;s:48:\"/var/www/html/web/app/plugins/woocommerce/assets\";i:28591795;s:61:\"/var/www/html/web/app/plugins/woocommerce/client/admin/config\";i:2299;s:54:\"/var/www/html/web/app/plugins/woocommerce/client/admin\";i:2299;s:48:\"/var/www/html/web/app/plugins/woocommerce/client\";i:2299;s:56:\"/var/www/html/web/app/plugins/woocommerce/i18n/languages\";i:1747540;s:46:\"/var/www/html/web/app/plugins/woocommerce/i18n\";i:2013376;s:50:\"/var/www/html/web/app/plugins/woocommerce/patterns\";i:208652;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/queue\";i:8898;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/shortcodes\";i:54308;s:54:\"/var/www/html/web/app/plugins/woocommerce/includes/cli\";i:38423;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks/events\";i:51376;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks\";i:75507;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/data-stores\";i:346017;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11577;s:70:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17839;s:93:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:74:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site\";i:57477;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/interfaces\";i:35472;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:128486;s:67:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:219869;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings/views\";i:54972;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings\";i:172360;s:68:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers\";i:58181;s:86:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:90:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper\";i:148126;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/views\";i:121333;s:77:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/admin\";i:1508682;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:83:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54515;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77527;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways\";i:116815;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin\";i:34566;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:365908;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:396739;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:453924;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1221250;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api\";i:1234915;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/export\";i:40330;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/emails\";i:100280;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/import\";i:56176;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/abstracts\";i:267717;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/traits\";i:2124;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:79:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:78:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:85:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:50:\"/var/www/html/web/app/plugins/woocommerce/includes\";i:6512655;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/loop\";i:12067;s:71:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:78:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15543;s:66:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product\";i:42783;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/auth\";i:7033;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/parts\";i:10431;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:59:\"/var/www/html/web/app/plugins/woocommerce/templates/notices\";i:2933;s:60:\"/var/www/html/web/app/plugins/woocommerce/templates/checkout\";i:36481;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/myaccount\";i:48888;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/cart\";i:32420;s:65:\"/var/www/html/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/order\";i:24189;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/emails/plain\";i:38216;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/emails\";i:91533;s:72:\"/var/www/html/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/templates\";i:23448;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/global\";i:10121;s:51:\"/var/www/html/web/app/plugins/woocommerce/templates\";i:373790;s:41:\"/var/www/html/web/app/plugins/woocommerce\";i:45825103;s:66:\"/var/www/html/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:55:\"/var/www/html/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:51:\"/var/www/html/web/app/plugins/polylang/modules/sync\";i:44536;s:56:\"/var/www/html/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:57:\"/var/www/html/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:60:\"/var/www/html/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:53:\"/var/www/html/web/app/plugins/polylang/modules/wizard\";i:130236;s:51:\"/var/www/html/web/app/plugins/polylang/modules/wpml\";i:66958;s:57:\"/var/www/html/web/app/plugins/polylang/modules/share-slug\";i:1565;s:58:\"/var/www/html/web/app/plugins/polylang/modules/site-health\";i:14557;s:62:\"/var/www/html/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:46:\"/var/www/html/web/app/plugins/polylang/modules\";i:272125;s:47:\"/var/www/html/web/app/plugins/polylang/settings\";i:119552;s:46:\"/var/www/html/web/app/plugins/polylang/install\";i:39475;s:47:\"/var/www/html/web/app/plugins/polylang/js/build\";i:103657;s:41:\"/var/www/html/web/app/plugins/polylang/js\";i:103657;s:44:\"/var/www/html/web/app/plugins/polylang/flags\";i:74931;s:54:\"/var/www/html/web/app/plugins/polylang/vendor/composer\";i:58432;s:45:\"/var/www/html/web/app/plugins/polylang/vendor\";i:59203;s:48:\"/var/www/html/web/app/plugins/polylang/css/build\";i:65766;s:42:\"/var/www/html/web/app/plugins/polylang/css\";i:65766;s:44:\"/var/www/html/web/app/plugins/polylang/admin\";i:161850;s:47:\"/var/www/html/web/app/plugins/polylang/frontend\";i:110448;s:73:\"/var/www/html/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:60:\"/var/www/html/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:63:\"/var/www/html/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:59:\"/var/www/html/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/yarpp\";i:719;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/cache\";i:3629;s:64:\"/var/www/html/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:51:\"/var/www/html/web/app/plugins/polylang/integrations\";i:53022;s:46:\"/var/www/html/web/app/plugins/polylang/include\";i:356041;s:38:\"/var/www/html/web/app/plugins/polylang\";i:1566178;s:29:\"/var/www/html/web/app/plugins\";i:47488373;s:37:\"/var/www/html/web/app/uploads/2024/08\";i:0;s:34:\"/var/www/html/web/app/uploads/2024\";i:0;s:49:\"/var/www/html/web/app/uploads/woocommerce_uploads\";i:13;s:37:\"/var/www/html/web/app/uploads/wc-logs\";i:5283;s:29:\"/var/www/html/web/app/uploads\";i:285118;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/customize\";i:177349;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/IXR\";i:33915;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-supports\";i:130165;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps/providers\";i:17593;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps\";i:47491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/theme-compat\";i:15656;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/php-compat\";i:1253;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/interactivity-api\";i:55295;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Response\";i:3101;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src\";i:214849;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/library\";i:261;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests\";i:215110;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/html-api\";i:330662;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/button\";i:14416;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query\";i:14007;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments\";i:28882;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-content\";i:1389;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/buttons\";i:11183;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/nextpage\";i:3039;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/rss\";i:4491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/table\";i:27351;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-date\";i:1377;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/html\";i:3770;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-date\";i:1112;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/search\";i:19592;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-terms\";i:1715;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/footnotes\";i:2642;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pattern\";i:411;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/categories\";i:2825;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list-item\";i:1137;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/file\";i:11514;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/widget-group\";i:400;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/more\";i:3770;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/cover\";i:83346;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/quote\";i:6526;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-featured-image\";i:29716;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-link\";i:3474;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/heading\";i:5731;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/paragraph\";i:6904;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list\";i:2173;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/columns\";i:9193;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/read-more\";i:2526;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/block\";i:587;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/image\";i:64157;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-title\";i:1823;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-content\";i:1369;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-logo\";i:17033;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/template-part\";i:7986;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/spacer\";i:4737;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list\";i:7663;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/loginout\";i:1026;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/preformatted\";i:1696;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/home-link\";i:1130;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-template\";i:8072;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/embed\";i:11232;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation\";i:132149;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/avatar\";i:2296;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-title\";i:1701;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-no-results\";i:899;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/separator\";i:5038;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/code\";i:2638;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-title\";i:2289;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/gallery\";i:80571;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/missing\";i:617;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:76:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/media-text\";i:14445;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/verse\";i:1860;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/shortcode\";i:2918;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pullquote\";i:8267;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/freeform\";i:41824;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/term-description\";i:1751;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-title\";i:1392;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-template\";i:2910;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/details\";i:2030;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/video\";i:11619;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/calendar\";i:3804;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-links\";i:58808;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author\";i:2895;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/audio\";i:3660;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/text-columns\";i:3034;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/archives\";i:1725;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/column\";i:1597;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/group\";i:9055;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks\";i:1503945;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/style-engine\";i:47528;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/pomo\";i:57146;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/assets\";i:24990;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/widgets\";i:158524;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML\";i:7098;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Net\";i:7493;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content\";i:8015;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie\";i:458625;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-bindings\";i:3610;s:47:\"/var/www/haiku-atelier/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/ID3\";i:1160011;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/PHPMailer\";i:233227;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/search\";i:16749;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/fields\";i:22510;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api\";i:977234;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/certificates\";i:233231;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery/ui\";i:787634;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery\";i:1305370;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/thickbox\";i:31323;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce\";i:2854127;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jcrop\";i:24976;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/swfupload\";i:8715;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/imgareaselect\";i:49553;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement\";i:721307;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/development\";i:179848;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist\";i:21236724;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/crop\";i:20004;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/js/codemirror\";i:1287141;s:44:\"/var/www/haiku-atelier/web/wp/wp-includes/js\";i:30445287;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-post\";i:51948;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/patterns\";i:7442;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/editor\";i:249468;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/commands\";i:13442;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-library\";i:805412;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/widgets\";i:23740;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/format-library\";i:5556;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/preferences\";i:8474;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/components\";i:357993;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/nux\";i:11624;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist\";i:2644176;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/css\";i:3289933;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff\";i:44136;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/Text\";i:57049;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/crystal\";i:15541;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/images/media\";i:5263;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/smilies\";i:10082;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/images\";i:102178;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-patterns\";i:8843;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:79:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:78:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:85:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:82:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat\";i:1303525;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/l10n\";i:30499;s:41:\"/var/www/haiku-atelier/web/wp/wp-includes\";i:48797833;s:43:\"/var/www/haiku-atelier/web/wp/wp-admin/user\";i:3685;s:46:\"/var/www/haiku-atelier/web/wp/wp-admin/network\";i:125999;s:47:\"/var/www/haiku-atelier/web/wp/wp-admin/includes\";i:3069241;s:44:\"/var/www/haiku-atelier/web/wp/wp-admin/maint\";i:7592;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/js/widgets\";i:139432;s:41:\"/var/www/haiku-atelier/web/wp/wp-admin/js\";i:1971286;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ocean\";i:75229;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/coffee\";i:75892;s:58:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/midnight\";i:78486;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/light\";i:78474;s:59:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:57:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:54:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/blue\";i:77778;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/modern\";i:77989;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors\";i:643556;s:42:\"/var/www/haiku-atelier/web/wp/wp-admin/css\";i:2542439;s:45:\"/var/www/haiku-atelier/web/wp/wp-admin/images\";i:426821;s:38:\"/var/www/haiku-atelier/web/wp/wp-admin\";i:9072296;s:29:\"/var/www/haiku-atelier/web/wp\";i:58054082;s:64:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/inc\";i:16246;s:87:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api/v3\";i:6589;s:84:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api\";i:16970;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas\";i:17870;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api/v3\";i:383;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api\";i:2909;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types\";i:4106;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib\";i:42733;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/constantes\";i:6552;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts\";i:99856;s:71:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/pages\";i:9304;s:75:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:1400;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:32926;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:7819;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:6185;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base\";i:16318;s:65:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass\";i:60709;s:60:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src\";i:182905;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/vendor\";i:1155;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:2681684;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts\";i:2905228;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27641;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/storytelling\";i:17708051;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/paypal\";i:3161;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/about\";i:41602782;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:2965;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TAMANORI\";i:28185358;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/BOROBORO\";i:12198378;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TANEMAKI\";i:51708624;s:90:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KARA\";i:20206872;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KISHOU\";i:1117321;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/IKKAN\";i:7522617;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/MUGURA\";i:48966844;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/ROKKU\";i:30061913;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KAGUN\";i:39437895;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/PIASU\";i:41429239;s:93:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HATTARI\";i:11237555;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HADOU\";i:14508333;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS\";i:306580949;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/HADOU\";i:927234;s:86:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/SIZECHART\";i:60067;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products\";i:308169029;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img\";i:367546884;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js/.vite\";i:23402;s:66:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js\";i:187659;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css/pages\";i:60815;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css\";i:168929;s:63:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets\";i:370810363;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/macros\";i:696;s:81:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/panier\";i:13142;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/produit\";i:5012;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/shop\";i:1199;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages\";i:19353;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts\";i:26003;s:62:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views\";i:45157;s:56:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024\";i:371054731;s:64:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/templates\";i:12953;s:63:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/patterns\";i:158957;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:72:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:83:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:67:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:65:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/css\";i:357;s:68:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets\";i:2176015;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/styles\";i:33892;s:60:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/parts\";i:1473;s:54:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour\";i:3137090;s:37:\"/var/www/haiku-atelier/web/app/themes\";i:374191821;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/src/Components\";i:3084;s:49:\"/var/www/haiku-atelier/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/assets\";i:6377;s:61:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor/composer\";i:37088;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor\";i:37859;s:65:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings\";i:13902;s:51:\"/var/www/haiku-atelier/web/app/plugins/falcon/views\";i:13902;s:45:\"/var/www/haiku-atelier/web/app/plugins/falcon\";i:97092;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/collectors\";i:146052;s:60:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/classes\";i:98467;s:57:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/data\";i:15807;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/wp-content\";i:2403;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/html\";i:165089;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/raw\";i:9533;s:67:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/headers\";i:4820;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output\";i:197727;s:65:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets/icons\";i:2156;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets\";i:73257;s:68:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor/composer\";i:26857;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor\";i:27628;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/dispatchers\";i:37910;s:52:\"/var/www/haiku-atelier/web/app/plugins/query-monitor\";i:636645;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/include\";i:356041;s:65:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:62:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard\";i:130236;s:64:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:67:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/site-health\";i:14557;s:71:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sync\";i:44536;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/share-slug\";i:1565;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wpml\";i:66958;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules\";i:272125;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/admin\";i:161850;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/frontend\";i:110448;s:63:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor/composer\";i:58432;s:54:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor\";i:59203;s:73:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/yarpp\";i:719;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:68:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:72:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:82:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/cache\";i:3629;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations\";i:53022;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/install\";i:39475;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/js/build\";i:103657;s:50:\"/var/www/haiku-atelier/web/app/plugins/polylang/js\";i:103657;s:57:\"/var/www/haiku-atelier/web/app/plugins/polylang/css/build\";i:65766;s:51:\"/var/www/haiku-atelier/web/app/plugins/polylang/css\";i:65766;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/flags\";i:74931;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/settings\";i:119552;s:47:\"/var/www/haiku-atelier/web/app/plugins/polylang\";i:1566178;s:73:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails/assets\";i:10275;s:66:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails\";i:55299;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15556;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product\";i:42878;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/checkout\";i:36451;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates\";i:23448;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails/plain\";i:38319;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails\";i:91920;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/cart\";i:32634;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/myaccount\";i:50782;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/global\";i:10397;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/order\";i:24189;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/notices\";i:2933;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/auth\";i:7309;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/parts\";i:10043;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/loop\";i:12321;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates\";i:376768;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages\";i:126313;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib\";i:126313;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/sample-data\";i:220042;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/patterns\";i:124277;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:4658;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:145254;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:828;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:174869;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:185840;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:5335;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:163674;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:164010;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi\";i:551266;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:51416;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Notes\";i:73841;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22904;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9309;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11036;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29290;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:61183;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:21403;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:62498;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:103155;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8958;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25687;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:30273;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:62825;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:17498;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:44458;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:30490;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:56521;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:23175;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:43714;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:19096;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:694872;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/AI\";i:16436;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API\";i:1031204;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9819;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Importers\";i:9932;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Exporters\";i:16010;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Steps\";i:12826;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint\";i:47719;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:14445;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:58486;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:102236;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21179;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:57851;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43946;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:37775;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features\";i:354011;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:63415;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:71728;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin\";i:1747611;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Utilities\";i:53577;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ImportExport\";i:6146;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:12470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50566;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97520;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47801;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:104650;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:128350;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:41004;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin\";i:778158;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Utilities\";i:78473;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:12349;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Logging\";i:15828;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:73593;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:285676;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores\";i:292918;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25545;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95406;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Orders\";i:32870;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:32478;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:50978;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:66833;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:66833;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features\";i:120939;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2474;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal\";i:1726157;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:69217;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations\";i:135204;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database\";i:135204;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101382;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain\";i:123033;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:22111;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:53330;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:521539;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:68267;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25904;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Utils\";i:80715;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Templates\";i:69877;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:10100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks\";i:1091452;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caches\";i:3406;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caching\";i:20668;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10472;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout\";i:10472;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src\";i:5367285;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:101713;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25700;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83943;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:355164;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler\";i:477051;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages\";i:477254;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:7131;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4746;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/app\";i:722758;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/data\";i:148210;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:750;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:145:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22944;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3203;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2100;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5296;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2059;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8748;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3061;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3839;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2764;s:133:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:576;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2165;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:635;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:2008;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3517;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3417;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4934;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7590;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:3010;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13768;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2496;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:5766;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3219;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:713;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:578;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6722;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4093;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7690;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2873;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2333;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2302;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:2002;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2649;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3458;s:135:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2248;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2511;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7272;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1737;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3216;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5644;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:642;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8902;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3671;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5559;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21738;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:626;s:139:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1702;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2064;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1661;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:212471;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1864;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2766;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:877;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3559;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1415;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1843;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5590;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1949;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:616;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2251;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7325;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:776;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:4363;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8443;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1945;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2134;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1172;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:610;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3390;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2110;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:9171;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2080;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2793;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2665;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3809;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:1001;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:598;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4132;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:841;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3705;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2729;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:93125;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:313641;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1155516;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86614;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:43966;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:263375;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/woo-product-usage-notice\";i:6028;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8655;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1908969;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/remote-logging\";i:21615;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127314;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:333496;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/components\";i:1108294;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin\";i:6638361;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:594;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:618;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:882;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:1012;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:965;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1434;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:635;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:633;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:31358;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1162;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:651;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1147;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:28151;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:625;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:905;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:867;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:479;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:634;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:771;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:933;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:613;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1842;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:446;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1585;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:357;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1523;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:441;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:535;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1605;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:870;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:791;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:1467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1596;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:588;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:643;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:583;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:627;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:818;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:444;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:575;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:624;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:635;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:746;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:614;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:836;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:665;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:642;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:572;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:643;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:614;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:602;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:605;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:618;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:626;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:717;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:583;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:664;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:635;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:619;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:590;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:635;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:829;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:619;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:580;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:629;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:662;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:595;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:661;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:679;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:630;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:676;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:594;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:471;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:634;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:621;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:616;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:605;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:674;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:620;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:716;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:592;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:568;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:684;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:653;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:585;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:634;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33590;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:2045;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1119;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1613;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1174;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:978;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:642;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1577;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:546;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:737;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1358;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:436;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:854;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:62928;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1365;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1374;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:672;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1417;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:311;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:442;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1888;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:937;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:542;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1272;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:815;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:543;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:508;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1521;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1377;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1304;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:464;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1388;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:680;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:623;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay-navigation\";i:2137;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1591;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:826;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks\";i:4700944;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client\";i:11339305;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/admin\";i:488725;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/frontend\";i:209838;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/flexslider\";i:74805;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/selectWoo\";i:464613;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js\";i:2341331;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css\";i:2096198;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/core-profiler\";i:33862;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/task_list\";i:83458;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/previews\";i:413623;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/onboarding\";i:240417;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment-methods\";i:67316;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:27486;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons\";i:31521;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:4053200;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/admin_notes\";i:22969;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images\";i:5767572;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets\";i:22097295;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin/config\";i:2432;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin\";i:2432;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client\";i:2432;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39842;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42756;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17185;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107185;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony\";i:117715;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:13039;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10209;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:17616;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:30074;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:37869;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:42613;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:171568;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:172672;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm\";i:172672;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer\";i:986889;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Info\";i:5464;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Formats\";i:9455;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Resolvers\";i:26657;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Schemas\";i:11417;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Filters\";i:14233;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Pragmas\";i:6839;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Keywords\";i:104211;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Drafts\";i:16672;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/KeywordValidators\";i:2046;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers\";i:168548;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Pragmas\";i:9060;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Keywords\";i:149538;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Exceptions\";i:14049;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Errors\";i:19102;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Variables\";i:6949;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/KeywordValidators\";i:4676;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src\";i:512100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema\";i:523262;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src/Exception\";i:3792;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src\";i:45510;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/res\";i:85488;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string\";i:141477;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri/src\";i:50158;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri\";i:61761;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis\";i:726500;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Cli\";i:2787;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs/json-examples\";i:578;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs\";i:578;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Schemas\";i:3561;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Importers\";i:13706;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Exporters\";i:5124;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResultFormatters\";i:2804;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResourceStorages\";i:5077;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Steps\";i:14199;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src\";i:87257;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/fixtures\";i:595;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit/Schemas\";i:2144;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit\";i:6049;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs/Exporters\";i:643;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs\";i:643;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests\";i:8499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint\";i:96039;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce\";i:96039;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis/_inc\";i:2116;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis\";i:45720;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6554;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/sso\";i:113495;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:462283;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:82512;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:86764;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:649975;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3465;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21881;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6809;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25225;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/build\";i:8948;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src/js\";i:2330;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src\";i:40444;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets\";i:68778;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2606;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21022;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:50948;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:69364;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic\";i:1029399;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor\";i:3372155;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/data-stores\";i:354754;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin\";i:34639;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/product-usage\";i:3082;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/import\";i:56176;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/views\";i:121662;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers\";i:62849;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:131617;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:223285;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings/views\";i:55620;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings\";i:181942;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper\";i:165129;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin\";i:1542031;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/interfaces\";i:35473;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/emails\";i:100280;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/traits\";i:2124;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/cli\";i:38423;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/queue\";i:8898;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/abstracts\";i:268729;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks/events\";i:62168;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks\";i:87347;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/export\";i:40330;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:373774;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:456837;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:397047;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1232337;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api\";i:1246552;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11576;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17838;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site\";i:57476;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54634;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77646;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways\";i:116934;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shortcodes\";i:53973;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes\";i:6609222;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n/languages\";i:1753660;s:55:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n\";i:2019496;s:50:\"/var/www/haiku-atelier/web/app/plugins/woocommerce\";i:40855736;s:73:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/scripts\";i:2058766;s:69:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/css\";i:1445;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources\";i:2060211;s:55:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build\";i:2060211;s:61:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Filters\";i:1300;s:58:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Spec\";i:16940;s:57:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/CLI\";i:2060;s:53:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src\";i:32330;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/assets\";i:417779;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor/composer\";i:36281;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor\";i:37052;s:67:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/scripts\";i:1193;s:68:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/elements\";i:2149767;s:64:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/sass\";i:401;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/views\";i:1979;s:59:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources\";i:2153340;s:49:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi\";i:4718989;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/chronopost\";i:21790;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/mondial_relay\";i:14027;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/ups\";i:14871;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods\";i:55876;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI/filters\";i:5896;s:68:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI\";i:100646;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/include\";i:952612;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/config\";i:1194;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/fonts\";i:2529;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/tools\";i:7413;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf\";i:2322586;s:63:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib\";i:2426416;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/chronopost\";i:80783;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/abstract_classes\";i:69630;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/config\";i:350;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/mondial_relay\";i:76867;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/ups\";i:70178;s:73:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes\";i:299338;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/openstreetmap\";i:2964;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/mondial_relay\";i:3251;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/google_maps\";i:2540;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups\";i:9732;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/shipping\";i:6384;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/config\";i:2233;s:92:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/chronopost\";i:6964;s:98:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/abstract_classes\";i:16698;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/mondial_relay\";i:5948;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/ups\";i:5812;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders\";i:35422;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/settings\";i:799;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials\";i:54570;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/chronopost\";i:12119;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/openstreetmap\";i:15136;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/mondial_relay\";i:5469;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/google_maps\";i:14868;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups\";i:37647;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/mondial_relay\";i:3080;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/dhl\";i:1381;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/ups\";i:3109;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js\";i:61179;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/chronopost\";i:55;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/pickups\";i:4890;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/mondial_relay\";i:55;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/ups\";i:55;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css\";i:5055;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets\";i:66234;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/views\";i:254;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin\";i:421863;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/woocommerce_block\";i:42885;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email/templates\";i:1248;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email\";i:1248;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources\";i:108037;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/chronopost\";i:4973;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/abstract_classes\";i:12853;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/mondial_relay\";i:4668;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/ups\";i:6516;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup\";i:29010;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/openstreetmap\";i:3603;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/mondial_relay\";i:3812;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/google_maps\";i:3461;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups\";i:10876;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials\";i:10876;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/openstreetmap\";i:11083;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/mondial_relay\";i:4894;s:102:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/woocommerce_blocks\";i:2911;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/google_maps\";i:11001;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups\";i:29889;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js\";i:29889;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css/pickups\";i:3911;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css\";i:3911;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets\";i:33800;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front\";i:75274;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/classes\";i:374;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/helper\";i:7996;s:67:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers\";i:10238;s:59:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc\";i:3140589;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor/composer\";i:35612;s:62:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor\";i:35751;s:55:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping\";i:3194686;s:38:\"/var/www/haiku-atelier/web/app/plugins\";i:51124625;s:58:\"/var/www/haiku-atelier/web/app/uploads/woocommerce_uploads\";i:14;s:46:\"/var/www/haiku-atelier/web/app/uploads/wc-logs\";i:4441;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/10\";i:122283131;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/09\";i:30092056;s:43:\"/var/www/haiku-atelier/web/app/uploads/2024\";i:152375187;s:38:\"/var/www/haiku-atelier/web/app/uploads\";i:152379642;}','off'), -(992,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1723037545;}','off'), -(1266,'woocommerce_task_list_reminder_bar_hidden','yes','auto'), -(1844,'nonce_key','Qe9)bK=%I]xCh./VgqP J~76af%z[ GJpRMI$H9^BE!rApKAVk}7rw._BQRV:.}4','off'), -(1845,'nonce_salt',' 3%/;I6>tVBcX^+ei0X(f07Fy}xZy9-W4;4Hp]+9c|7Lu9OyH*vDy<$[ ZFupt-K','off'), -(1855,'auth_key','+_xd+>H[lp.sF$h(0~tRw(*Mc3fU~j;oy5**DrV8N`:&oeE`[aW31h{1+sbj%m/9','off'), -(1856,'auth_salt','*g5A.#_L{&a+3G-HjFNXK!,lkIl{fp%Yk!b9LatvPCB_-oCx^?R~k^3X-*wzC T^','off'), -(1865,'secure_auth_key','_OJ{C5_dNeer{F8)-EMc@BG;IG#6FB*f!A=pxe@1kq:jG','off'), -(1866,'secure_auth_salt','0zE{&JkB]rz&F(6gC,sYm42s?Y~I(@wIuB%wVd$!r0IUEf2X|wWAAu,+t?NC[jQ','off'), -(1868,'logged_in_salt','%;$7@^LKY|%V>x95!VT;|+ 6qCn}f2Nxf9~0@ucl:o_B1@mP_KR XTC=lW~sDsX.','off'), -(2018,'woocommerce_downloads_count_partial','yes','on'), -(2230,'wp-openapi-rewrite-flushed','1','auto'), -(2232,'wp-openapi-options','','auto'), -(2594,'woocommerce_email_footer_text_color','#3c3c3c','off'), -(3107,'recovery_keys','a:0:{}','off'), -(5596,'woocommerce_admin_customize_store_completed','yes','auto'), -(6061,'site_logo','','auto'), -(8528,'woocommerce_feature_site_visibility_badge_enabled','yes','on'), -(8589,'woocommerce_admin_created_default_shipping_zones','yes','auto'), -(8590,'woocommerce_admin_reviewed_default_shipping_zones','yes','auto'), -(8603,'_transient_orders-transient-version','1750690587','on'), -(8610,'woocommerce_admin_last_orders_milestone','10','auto'), -(8759,'wc_shop_order_list_table_months_filter_cache_date','1749466779','auto'), -(8760,'wc_shop_order_list_table_months_filter_cache_value','a:8:{i:0;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"6\";}i:1;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"5\";}i:2;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"4\";}i:3;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"3\";}i:4;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"2\";}i:5;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"1\";}i:6;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"12\";}i:7;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"11\";}}','auto'), -(9197,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"dd429dffcb518f90fe1f9ce99f485c58\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'), -(9202,'db_upgraded','','on'), -(9217,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:8:\"extended\";i:1;s:5:\"setup\";}','auto'), -(9218,'woocommerce_default_homepage_layout','two_columns','auto'), -(10216,'woocommerce_sales_record_date','2024-11-26','auto'), -(10217,'woocommerce_sales_record_amount','1525','auto'), -(10790,'wpmc_options','a:27:{s:6:\"method\";s:5:\"media\";s:7:\"content\";b:1;s:18:\"filesystem_content\";b:0;s:13:\"media_library\";b:1;s:12:\"live_content\";b:0;s:9:\"debuglogs\";b:0;s:11:\"images_only\";b:0;s:13:\"attach_is_use\";b:0;s:15:\"thumbnails_only\";b:0;s:11:\"dirs_filter\";s:0:\"\";s:12:\"files_filter\";s:0:\"\";s:15:\"hide_thumbnails\";b:0;s:12:\"hide_warning\";b:0;s:10:\"skip_trash\";b:0;s:13:\"medias_buffer\";i:100;s:12:\"posts_buffer\";i:5;s:15:\"analysis_buffer\";i:100;s:14:\"file_op_buffer\";i:20;s:5:\"delay\";i:100;s:19:\"shortcodes_disabled\";b:0;s:31:\"output_buffer_cleaning_disabled\";b:0;s:14:\"php_error_logs\";b:0;s:14:\"posts_per_page\";i:1000;s:15:\"clean_uninstall\";b:0;s:11:\"repair_mode\";b:0;s:11:\"expert_mode\";b:0;s:9:\"logs_path\";N;}','off'), -(10791,'wpmc_rating_date','1732931640','off'), -(10793,'product_cat_children','a:0:{}','auto'), -(10807,'wms_mondial_relay_enable','yes','on'), -(10808,'wms_mondial_relay_customer_code','','on'), -(10809,'wms_mondial_relay_private_key','','on'), -(10810,'wms_mondial_relay_brand_code','','on'), -(10811,'wms_mondial_relay_section_pickup_points_map_type','openstreetmap','on'), -(10812,'wms_mondial_relay_section_pickup_points_google_maps_api_key','','on'), -(10813,'wms_mondial_relay_section_label_generation_status','a:0:{}','on'), -(10814,'wms_mondial_relay_section_label_status_post_generation','','on'), -(10815,'wms_mondial_relay_section_label_send_email','no','on'), -(10816,'wms_mondial_relay_price_before_discount','no','on'), -(10817,'wms_mondial_relay_shipper_civility','MLLE','on'), -(10818,'wms_mondial_relay_shipper_name','','on'), -(10819,'wms_mondial_relay_shipper_name_2','','on'), -(10820,'wms_mondial_relay_shipper_address_1','','on'), -(10821,'wms_mondial_relay_shipper_address_2','','on'), -(10822,'wms_mondial_relay_shipper_zip_code','','on'), -(10823,'wms_mondial_relay_shipper_city','','on'), -(10824,'wms_mondial_relay_shipper_country','AF','on'), -(10825,'wms_mondial_relay_shipper_email','','on'), -(10826,'wms_mondial_relay_shipper_phone','','on'), -(10827,'wms_mondial_relay_shipper_mobile_phone','','on'), -(10828,'wms_mondial_relay_section_parcel_insurance','0','on'), -(10829,'wms_mondial_relay_section_parcel_installation_duration','','on'), -(10830,'wms_mondial_relay_section_parcel_shipping_value','','on'), -(10831,'wms_mondial_relay_debug_mode','1','on'), -(10832,'wms_chronopost_enable','no','on'), -(10833,'wms_chronopost_account_number','','on'), -(10834,'wms_chronopost_account_name','','on'), -(10835,'wms_chronopost_account_password','','on'), -(10836,'wms_chronopost_section_pickup_points_map_type','openstreetmap','on'), -(10837,'wms_chronopost_section_pickup_points_google_maps_api_key','','on'), -(10838,'wms_chronopost_label_format','PDF','on'), -(10839,'wms_chronopost_section_label_generation_status','a:0:{}','on'), -(10840,'wms_chronopost_section_label_status_post_generation','','on'), -(10841,'wms_chronopost_section_label_send_email','no','on'), -(10842,'wms_chronopost_price_before_discount','yes','on'), -(10843,'wms_chronopost_shipper_civility','E','on'), -(10844,'wms_chronopost_shipper_name','','on'), -(10845,'wms_chronopost_shipper_name_2','','on'), -(10846,'wms_chronopost_shipper_address_1','','on'), -(10847,'wms_chronopost_shipper_address_2','','on'), -(10848,'wms_chronopost_shipper_zip_code','','on'), -(10849,'wms_chronopost_shipper_city','','on'), -(10850,'wms_chronopost_shipper_country','AF','on'), -(10851,'wms_chronopost_shipper_contact_name','','on'), -(10852,'wms_chronopost_shipper_email','','on'), -(10853,'wms_chronopost_shipper_phone','','on'), -(10854,'wms_chronopost_shipper_mobile_phone','','on'), -(10855,'wms_chronopost_customer_civility','E','on'), -(10856,'wms_chronopost_customer_name','','on'), -(10857,'wms_chronopost_customer_name_2','','on'), -(10858,'wms_chronopost_customer_address_1','','on'), -(10859,'wms_chronopost_customer_address_2','','on'), -(10860,'wms_chronopost_customer_zip_code','','on'), -(10861,'wms_chronopost_customer_city','','on'), -(10862,'wms_chronopost_customer_country','AF','on'), -(10863,'wms_chronopost_customer_contact_name','','on'), -(10864,'wms_chronopost_customer_email','','on'), -(10865,'wms_chronopost_customer_phone','','on'), -(10866,'wms_chronopost_customer_mobile_phone','','on'), -(10867,'wms_chronopost_section_insurance_ad_valorem_enabled','1','on'), -(10868,'wms_chronopost_section_insurance_ad_valorem_min_amount','0','on'), -(10869,'wms_chronopost_saturday_shipping_start_day','monday','on'), -(10870,'wms_chronopost_saturday_shipping_start_time','0','on'), -(10871,'wms_chronopost_saturday_shipping_end_day','monday','on'), -(10872,'wms_chronopost_saturday_shipping_end_time','0','on'), -(10873,'wms_chronopost_debug_mode','0','on'), -(10874,'wms_ups_enable','yes','on'), -(10875,'wms_ups_account_username','','on'), -(10876,'wms_ups_password','','on'), -(10877,'wms_ups_account_number','','on'), -(10878,'wms_ups_api_access_key','','on'), -(10879,'wms_ups_section_pickup_points_map_type','openstreetmap','on'), -(10880,'wms_ups_section_pickup_points_google_maps_api_key','','on'), -(10881,'wms_ups_section_label_generation_status','a:0:{}','on'), -(10882,'wms_ups_section_label_status_post_generation','','on'), -(10883,'wms_ups_section_label_send_email','no','on'), -(10884,'wms_ups_shipper_civility','MLLE','on'), -(10885,'wms_ups_shipper_name','','on'), -(10886,'wms_ups_shipper_name_2','','on'), -(10887,'wms_ups_shipper_company_name','','on'), -(10888,'wms_ups_shipper_vat_number','','on'), -(10889,'wms_ups_shipper_address_1','','on'), -(10890,'wms_ups_shipper_address_2','','on'), -(10891,'wms_ups_shipper_zip_code','','on'), -(10892,'wms_ups_shipper_city','','on'), -(10893,'wms_ups_shipper_country','AF','on'), -(10894,'wms_ups_shipper_email','','on'), -(10895,'wms_ups_shipper_phone','','on'), -(10896,'wms_ups_shipper_mobile_phone','','on'), -(10897,'wms_ups_debug_mode','1','on'), -(10899,'woocommerce_ups_standard_4_settings','a:8:{s:5:\"title\";s:14:\"UPS - Standard\";s:13:\"title_if_free\";s:13:\"Free Shipping\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:12;}}}','on'), -(10900,'woocommerce_mondial_relay_point_relais_5_settings','a:8:{s:5:\"title\";s:26:\"Mondial Relay Point Relais\";s:13:\"title_if_free\";s:33:\"Mondial Relay Point Relais (Free)\";s:17:\"pricing_condition\";s:11:\"cart_amount\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:6;}}}','on'), -(10901,'woocommerce_mondial_relay_point_relais_6_settings','a:8:{s:5:\"title\";s:28:\"Mondial Relay - Point Relais\";s:13:\"title_if_free\";s:35:\"Mondial Relay - Point Relais (Free)\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:50;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:3;}}}','on'), -(12053,'wp_mail_logging_activated_time','1732552283','auto'), -(12054,'wp_mail_logging_db_version','2','off'), -(12055,'WPML_Plugin__version','1.13.1','auto'), -(12059,'wp_mail_logging_user_feedback_notice','a:2:{s:4:\"time\";i:1732552283;s:9:\"dismissed\";b:0;}','auto'), -(12077,'wp_mail_smtp_initial_version','4.2.0','off'), -(12078,'wp_mail_smtp_version','4.2.0','off'), -(12079,'wp_mail_smtp','a:19:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";s:9:\"from_name\";s:13:\"Haiku Atelier\";s:6:\"mailer\";s:5:\"gmail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:15:\"smtp.google.com\";s:4:\"port\";i:587;s:10:\"encryption\";s:3:\"tls\";s:4:\"user\";s:23:\"haiku.atelier@gmail.com\";s:4:\"pass\";s:8:\"jD091299\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:7:\"mailjet\";a:2:{s:7:\"api_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"smtp2go\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"amazonses\";a:3:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"region\";s:9:\"us-east-1\";}s:5:\"gmail\";a:10:{s:9:\"client_id\";s:72:\"402628219773-hl8niqniiiklf15f9biou8g06pbm9sac.apps.googleusercontent.com\";s:13:\"client_secret\";s:35:\"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\";s:12:\"access_token\";a:6:{s:12:\"access_token\";s:256:\"ya29.a0ATi6K2umorqswODpYxR94PofB74EPkYWiXMKXQZnqk-PN4Js2NQCQFxHvq_J9gf-AZWhYLQcVl0wM5JBQTDSLKlqHoebkUWt_tieWROBCC0XVsyRL22Zx4pPaVjoSLTqmFBodZmM4TapUow7AubLmB8HFstVFobbtxvR901UpiropRzlYDVJp2LLfr0RcPImFdD3tkymZQaCgYKAewSARASFQHGX2Mi3IGZlu7E33ZjP4wbTMAqdw0209\";s:10:\"expires_in\";i:3599;s:5:\"scope\";s:24:\"https://mail.google.com/\";s:10:\"token_type\";s:6:\"Bearer\";s:7:\"created\";i:1762112407;s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";}s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";s:12:\"user_details\";a:1:{s:5:\"email\";s:23:\"haiku.atelier@gmail.com\";}s:23:\"one_click_setup_enabled\";b:0;s:27:\"one_click_setup_credentials\";a:2:{s:3:\"key\";s:0:\"\";s:5:\"token\";s:0:\"\";}s:28:\"one_click_setup_user_details\";a:1:{s:5:\"email\";s:0:\"\";}s:20:\"is_setup_wizard_auth\";b:0;s:9:\"auth_code\";s:73:\"4/0AeanS0ZUssWZn8hNjBZJEuEFDL9SMb5c1tjzffcTAVb5e2L-B_PRnuKLBa88D022Uumzmw\";}s:7:\"outlook\";a:5:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"zoho\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"domain\";s:3:\"com\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"logs\";a:5:{s:7:\"enabled\";b:0;s:17:\"log_email_content\";b:0;s:16:\"save_attachments\";b:0;s:19:\"open_email_tracking\";b:0;s:19:\"click_link_tracking\";b:0;}s:11:\"alert_email\";a:2:{s:7:\"enabled\";b:0;s:11:\"connections\";a:0:{}}s:7:\"license\";a:4:{s:3:\"key\";s:0:\"\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}}','off'), -(12080,'wp_mail_smtp_activated_time','1732553202','off'), -(12081,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1732553202;}','auto'), -(12087,'wp_mail_smtp_migration_version','5','on'), -(12088,'wp_mail_smtp_debug_events_db_version','1','on'), -(12089,'wp_mail_smtp_activation_prevent_redirect','1','auto'), -(12090,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1732821999;s:14:\"completed_time\";i:1732822044;s:14:\"was_successful\";b:1;}','off'), -(12092,'wp_mail_smtp_mail_key','b4X/o2Jlr+B6fYssiy4aNvSjL0y5sT0DeDNxw9gANsE=','auto'), -(12094,'wp_mail_smtp_debug','a:0:{}','off'), -(12097,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1733769473;s:9:\"dismissed\";b:1;}','auto'), -(12100,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1762108934;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'), -(12490,'woocommerce_flat_rate_7_settings','a:3:{s:5:\"title\";s:12:\"UPS Standard\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"12,00\";}','on'), -(12492,'woocommerce_free_shipping_8_settings','a:4:{s:5:\"title\";s:19:\"UPS Standard (Free)\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:3:\"100\";s:16:\"ignore_discounts\";s:2:\"no\";}','on'), -(12503,'wp_mail_logging_product_education','a:1:{s:9:\"dismissed\";a:1:{s:17:\"email-logs-bottom\";b:1;}}','off'), -(12504,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:39:\"haiku.atelier@gmail.com,contact@gcch.fr\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(13305,'woocommerce_revenue_report_date_tour_shown','yes','auto'), -(13521,'wp_mail_smtp_lite_sent_email_counter','119','on'), -(13522,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:23;i:2;i:24;i:1;i:25;i:1;i:26;i:1;i:29;i:3;i:38;i:2;i:39;i:1;i:40;i:3;i:41;i:8;i:42;i:5;i:43;i:2;i:44;i:2;}','on'), -(20569,'woocommerce_clear_ces_tracks_queue_for_page','a:2:{s:7:\"pagenow\";s:25:\"woocommerce_page_wc-admin\";s:9:\"adminpage\";s:25:\"woocommerce_page_wc-admin\";}','auto'), -(20640,'_transient_woocommerce_product_task_product_count_transient','66','on'), -(21366,'woocommerce_customer_on_hold_order_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:46:\"We look forward to fulfilling your order soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21367,'woocommerce_customer_processing_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for using {site_url}!\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21368,'woocommerce_customer_completed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for shopping with us.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21369,'woocommerce_customer_refunded_order_settings','a:7:{s:7:\"enabled\";s:2:\"no\";s:12:\"subject_full\";s:0:\"\";s:15:\"subject_partial\";s:0:\"\";s:12:\"heading_full\";s:0:\"\";s:15:\"heading_partial\";s:0:\"\";s:18:\"additional_content\";s:30:\"We hope to see you again soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21370,'woocommerce_mondial_relay_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21371,'woocommerce_ups_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), -(25278,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','on'), -(28660,'woocommerce_customer_note_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:19:\"Thanks for reading.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(30281,'woocommerce_hpos_address_fts_index_created','yes','off'), -(30418,'widget_wc_brands_brand_description','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30419,'widget_woocommerce_brand_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30420,'widget_wc_brands_brand_thumbnails','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30421,'woocommerce_anonymize_refunded_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(30422,'woocommerce_email_auto_sync_with_theme','no','off'), -(30423,'woocommerce_feature_rate_limit_checkout_enabled','no','on'), -(30424,'woocommerce_feature_remote_logging_enabled','yes','on'), -(30425,'woocommerce_feature_email_improvements_enabled','no','on'), -(30426,'woocommerce_feature_reactify-classic-payments-settings_enabled','yes','on'), -(30427,'woocommerce_feature_cost_of_goods_sold_enabled','no','on'), -(30437,'new_admin_email','haiku.atelier@gmail.com','auto'), -(30451,'woocommerce_admin_pes_incentive_woopayments_store_had_woopayments','no','auto'), -(30480,'woocommerce_shipping_hide_rates_when_free','no','off'), -(30481,'woocommerce_email_header_image_width','120','on'), -(30482,'woocommerce_email_header_alignment','left','on'), -(30483,'woocommerce_email_font_family','Helvetica','on'), -(30484,'woocommerce_feature_blueprint_enabled','yes','on'), -(30485,'woocommerce_hpos_datastore_caching_enabled','no','on'), -(30486,'woocommerce_feature_block_email_editor_enabled','no','on'), -(30853,'_transient_timeout_woocommerce_analytics_orders_statuses_all','1781339871','off'), -(30854,'_transient_woocommerce_analytics_orders_statuses_all','a:4:{i:0;s:10:\"wc-pending\";i:1;s:13:\"wc-processing\";i:2;s:12:\"wc-completed\";i:3;s:11:\"wc-refunded\";}','off'), -(31724,'_transient_filter_data-transient-version','1750363871','on'), -(32731,'_transient_wc_attribute_taxonomies','a:3:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:4:\"side\";s:15:\"attribute_label\";s:4:\"Side\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:2;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:5:\"stone\";s:15:\"attribute_label\";s:5:\"Stone\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"0\";}}','on'), -(32767,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1750690595;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'), -(32768,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750690595;s:8:\"response\";a:0:{}s:12:\"translations\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"query-monitor\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"3.18.0\";s:7:\"updated\";s:19:\"2024-04-22 15:16:58\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/query-monitor/3.18.0/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"query-monitor\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"3.18.0\";s:7:\"updated\";s:19:\"2025-02-23 13:55:57\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/query-monitor/3.18.0/fr_FR.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"9.9.4\";s:7:\"updated\";s:19:\"2024-10-02 16:14:23\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.9.4/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"9.9.4\";s:7:\"updated\";s:19:\"2022-05-20 05:27:20\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.9.4/fr_BE.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"9.9.4\";s:7:\"updated\";s:19:\"2025-06-20 10:20:52\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.9.4/fr_FR.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/wc-multishipping\";s:4:\"slug\";s:16:\"wc-multishipping\";s:6:\"plugin\";s:37:\"wc-multishipping/wc-multishipping.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wc-multishipping/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wc-multishipping.2.5.7.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wc-multishipping/assets/icon-128x128.png?rev=2477036\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:17:\"falcon/falcon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/falcon\";s:4:\"slug\";s:6:\"falcon\";s:6:\"plugin\";s:17:\"falcon/falcon.php\";s:11:\"new_version\";s:5:\"2.8.5\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/falcon/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/falcon.2.8.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";s:3:\"svg\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/falcon/assets/banner-1544x500.png?rev=3052567\";s:2:\"1x\";s:61:\"https://ps.w.org/falcon/assets/banner-772x250.png?rev=3052567\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/force-regenerate-thumbnails\";s:4:\"slug\";s:27:\"force-regenerate-thumbnails\";s:6:\"plugin\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/force-regenerate-thumbnails/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/force-regenerate-thumbnails.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-256x256.jpg?rev=2816275\";s:2:\"1x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-128x128.jpg?rev=2816275\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-1544x500.jpg?rev=2816275\";s:2:\"1x\";s:82:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-772x250.jpg?rev=2816275\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/woo-preview-emails\";s:4:\"slug\";s:18:\"woo-preview-emails\";s:6:\"plugin\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:11:\"new_version\";s:6:\"2.2.14\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/woo-preview-emails/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/woo-preview-emails.2.2.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";s:2:\"1x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.1.0\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.18.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.18.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.9.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}s:25:\"wp-openapi/wp-openapi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-openapi\";s:4:\"slug\";s:10:\"wp-openapi\";s:6:\"plugin\";s:25:\"wp-openapi/wp-openapi.php\";s:11:\"new_version\";s:6:\"1.0.20\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-openapi/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-openapi.1.0.20.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:54:\"https://s.w.org/plugins/geopattern-icon/wp-openapi.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}}s:7:\"checked\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";s:5:\"2.5.7\";s:17:\"falcon/falcon.php\";s:5:\"2.8.5\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:5:\"2.2.2\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:6:\"2.2.14\";s:31:\"query-monitor/query-monitor.php\";s:6:\"3.18.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.4\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.9.5\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:6:\"1.14.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.5.0\";s:25:\"wp-openapi/wp-openapi.php\";s:6:\"1.0.20\";}}','off'), -(32769,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750690595;s:7:\"checked\";a:2:{s:18:\"haiku-atelier-2024\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','off'), -(34088,'recovery_mode_email_last_sent','1750687204','auto'), -(34183,'woocommerce_pos_store_name','Haiku Atelier','on'), -(34184,'woocommerce_pos_store_address','','on'), -(34185,'woocommerce_pos_store_phone','','on'), -(34186,'woocommerce_pos_store_email','haiku.atelier@gmail.com','on'), -(34187,'woocommerce_pos_refund_returns_policy','','on'), -(34188,'woocommerce_feature_point_of_sale_enabled','yes','on'), -(34189,'woocommerce_feature_experimental-iapi-mini-cart_enabled','no','on'), -(34208,'can_compress_scripts','1','on'), -(34250,'woocommerce_address_autocomplete_enabled','no','on'), -(34251,'woocommerce_feature_mcp_integration_enabled','no','on'), -(34253,'woocommerce_feature_destroy-empty-sessions_enabled','no','on'), -(34254,'action_scheduler_migration_status','complete','auto'), -(34255,'as_has_wp_comment_logs','no','on'), -(34261,'woocommerce_attribute_lookup_enabled','yes','auto'), -(34262,'woocommerce_analytics_uses_old_full_refund_data','yes','auto'); -/*!40000 ALTER TABLE `haikuwp_options` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_postmeta` --- - -DROP TABLE IF EXISTS `haikuwp_postmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_postmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `post_id` (`post_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=15293 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_postmeta` --- - -LOCK TABLES `haikuwp_postmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_postmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_postmeta` VALUES -(22,13,'_edit_last','1'), -(23,13,'_edit_lock','1746463848:1'), -(24,14,'_edit_last','1'), -(25,14,'_edit_lock','1722975574:1'), -(28,16,'_edit_last','1'), -(29,16,'_edit_lock','1722958355:1'), -(30,17,'_edit_last','1'), -(31,17,'_edit_lock','1731277749:1'), -(32,18,'_wp_page_template','default'), -(33,18,'_edit_last','1'), -(34,18,'_edit_lock','1722864017:1'), -(35,19,'_edit_last','1'), -(36,19,'_edit_lock','1732548394:1'), -(71,22,'_variation_description',''), -(72,22,'total_sales','0'), -(73,22,'_tax_status','taxable'), -(74,22,'_tax_class','parent'), -(75,22,'_manage_stock','no'), -(76,22,'_backorders','no'), -(77,22,'_sold_individually','no'), -(78,22,'_virtual','no'), -(79,22,'_downloadable','no'), -(80,22,'_download_limit','-1'), -(81,22,'_download_expiry','-1'), -(82,22,'_stock',NULL), -(83,22,'_stock_status','instock'), -(84,22,'_wc_average_rating','0'), -(85,22,'_wc_review_count','0'), -(86,22,'attribute_matiere','Or'), -(87,22,'_product_version','9.1.4'), -(88,23,'_variation_description',''), -(89,23,'total_sales','0'), -(90,23,'_tax_status','taxable'), -(91,23,'_tax_class','parent'), -(92,23,'_manage_stock','no'), -(93,23,'_backorders','no'), -(94,23,'_sold_individually','no'), -(95,23,'_virtual','no'), -(96,23,'_downloadable','no'), -(97,23,'_download_limit','-1'), -(98,23,'_download_expiry','-1'), -(99,23,'_stock',NULL), -(100,23,'_stock_status','instock'), -(101,23,'_wc_average_rating','0'), -(102,23,'_wc_review_count','0'), -(103,23,'attribute_matiere','Argent'), -(104,23,'_product_version','9.1.4'), -(147,26,'_edit_last','1'), -(148,26,'_edit_lock','1722975540:1'), -(149,27,'_edit_last','1'), -(150,27,'_edit_lock','1722975561:1'), -(915,81,'_wp_attached_file','2024/09/HADOU-B.jpg'), -(916,81,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/09/HADOU-B.jpg\";s:8:\"filesize\";i:40136;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"HADOU-B.jpg\";}'), -(917,81,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), -(1183,100,'_wp_attached_file','2024/09/HADOU-B-mix.jpg'), -(1184,100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/HADOU-B-mix.jpg\";s:8:\"filesize\";i:316713;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-B-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"HADOU-B-mix.jpg\";}'), -(1185,100,'_wp_attachment_image_alt','Hadou wavy silver ring and Kishou signet ring'), -(1194,102,'_sku','HADOU-B-s'), -(1195,102,'total_sales','0'), -(1196,102,'_tax_status','taxable'), -(1197,102,'_tax_class',''), -(1198,102,'_manage_stock','no'), -(1199,102,'_backorders','no'), -(1200,102,'_sold_individually','no'), -(1201,102,'_virtual','no'), -(1202,102,'_downloadable','no'), -(1203,102,'_download_limit','-1'), -(1204,102,'_download_expiry','-1'), -(1205,102,'_thumbnail_id','110'), -(1206,102,'_stock',NULL), -(1207,102,'_stock_status','instock'), -(1208,102,'_wc_average_rating','0'), -(1209,102,'_wc_review_count','0'), -(1210,102,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1211,102,'_product_version','9.4.2'), -(1216,103,'_variation_description',''), -(1217,103,'_regular_price','85'), -(1218,103,'total_sales','0'), -(1219,103,'_tax_status','taxable'), -(1220,103,'_tax_class','parent'), -(1221,103,'_manage_stock','no'), -(1222,103,'_backorders','no'), -(1223,103,'_sold_individually','no'), -(1224,103,'_virtual','no'), -(1225,103,'_downloadable','no'), -(1226,103,'_download_limit','-1'), -(1227,103,'_download_expiry','-1'), -(1228,103,'_thumbnail_id','0'), -(1229,103,'_stock',NULL), -(1230,103,'_stock_status','instock'), -(1231,103,'_wc_average_rating','0'), -(1232,103,'_wc_review_count','0'), -(1233,103,'attribute_pa_size','50'), -(1234,103,'_price','85'), -(1235,103,'_product_version','9.3.3'), -(1236,104,'_variation_description',''), -(1237,104,'_regular_price','85'), -(1238,104,'total_sales','0'), -(1239,104,'_tax_status','taxable'), -(1240,104,'_tax_class','parent'), -(1241,104,'_manage_stock','no'), -(1242,104,'_backorders','no'), -(1243,104,'_sold_individually','no'), -(1244,104,'_virtual','no'), -(1245,104,'_downloadable','no'), -(1246,104,'_download_limit','-1'), -(1247,104,'_download_expiry','-1'), -(1248,104,'_thumbnail_id','0'), -(1249,104,'_stock',NULL), -(1250,104,'_stock_status','instock'), -(1251,104,'_wc_average_rating','0'), -(1252,104,'_wc_review_count','0'), -(1253,104,'attribute_pa_size','52'), -(1254,104,'_price','85'), -(1255,104,'_product_version','9.3.3'), -(1256,105,'_variation_description',''), -(1257,105,'_regular_price','85'), -(1258,105,'total_sales','0'), -(1259,105,'_tax_status','taxable'), -(1260,105,'_tax_class','parent'), -(1261,105,'_manage_stock','no'), -(1262,105,'_backorders','no'), -(1263,105,'_sold_individually','no'), -(1264,105,'_virtual','no'), -(1265,105,'_downloadable','no'), -(1266,105,'_download_limit','-1'), -(1267,105,'_download_expiry','-1'), -(1268,105,'_thumbnail_id','0'), -(1269,105,'_stock',NULL), -(1270,105,'_stock_status','instock'), -(1271,105,'_wc_average_rating','0'), -(1272,105,'_wc_review_count','0'), -(1273,105,'attribute_pa_size','54'), -(1274,105,'_price','85'), -(1275,105,'_product_version','9.3.3'), -(1276,106,'_variation_description',''), -(1277,106,'_regular_price','85'), -(1278,106,'total_sales','0'), -(1279,106,'_tax_status','taxable'), -(1280,106,'_tax_class','parent'), -(1281,106,'_manage_stock','no'), -(1282,106,'_backorders','no'), -(1283,106,'_sold_individually','no'), -(1284,106,'_virtual','no'), -(1285,106,'_downloadable','no'), -(1286,106,'_download_limit','-1'), -(1287,106,'_download_expiry','-1'), -(1288,106,'_thumbnail_id','0'), -(1289,106,'_stock',NULL), -(1290,106,'_stock_status','instock'), -(1291,106,'_wc_average_rating','0'), -(1292,106,'_wc_review_count','0'), -(1293,106,'attribute_pa_size','56'), -(1294,106,'_price','85'), -(1295,106,'_product_version','9.3.3'), -(1296,107,'_variation_description',''), -(1297,107,'_regular_price','85'), -(1298,107,'total_sales','0'), -(1299,107,'_tax_status','taxable'), -(1300,107,'_tax_class','parent'), -(1301,107,'_manage_stock','no'), -(1302,107,'_backorders','no'), -(1303,107,'_sold_individually','no'), -(1304,107,'_virtual','no'), -(1305,107,'_downloadable','no'), -(1306,107,'_download_limit','-1'), -(1307,107,'_download_expiry','-1'), -(1308,107,'_thumbnail_id','0'), -(1309,107,'_stock',NULL), -(1310,107,'_stock_status','instock'), -(1311,107,'_wc_average_rating','0'), -(1312,107,'_wc_review_count','0'), -(1313,107,'attribute_pa_size','58'), -(1314,107,'_price','85'), -(1315,107,'_product_version','9.3.3'), -(1316,108,'_variation_description',''), -(1317,108,'_regular_price','85'), -(1318,108,'total_sales','0'), -(1319,108,'_tax_status','taxable'), -(1320,108,'_tax_class','parent'), -(1321,108,'_manage_stock','no'), -(1322,108,'_backorders','no'), -(1323,108,'_sold_individually','no'), -(1324,108,'_virtual','no'), -(1325,108,'_downloadable','no'), -(1326,108,'_download_limit','-1'), -(1327,108,'_download_expiry','-1'), -(1328,108,'_thumbnail_id','0'), -(1329,108,'_stock',NULL), -(1330,108,'_stock_status','instock'), -(1331,108,'_wc_average_rating','0'), -(1332,108,'_wc_review_count','0'), -(1333,108,'attribute_pa_size','60'), -(1334,108,'_price','85'), -(1335,108,'_product_version','9.3.3'), -(1336,109,'_variation_description',''), -(1337,109,'_regular_price','85'), -(1338,109,'total_sales','0'), -(1339,109,'_tax_status','taxable'), -(1340,109,'_tax_class','parent'), -(1341,109,'_manage_stock','no'), -(1342,109,'_backorders','no'), -(1343,109,'_sold_individually','no'), -(1344,109,'_virtual','no'), -(1345,109,'_downloadable','no'), -(1346,109,'_download_limit','-1'), -(1347,109,'_download_expiry','-1'), -(1348,109,'_thumbnail_id','0'), -(1349,109,'_stock',NULL), -(1350,109,'_stock_status','instock'), -(1351,109,'_wc_average_rating','0'), -(1352,109,'_wc_review_count','0'), -(1353,109,'attribute_pa_size','62'), -(1354,109,'_price','85'), -(1355,109,'_product_version','9.3.3'), -(1357,102,'_edit_lock','1750279209:1'), -(1358,110,'_wp_attached_file','2024/09/IKKAN-B2-arg.jpg'), -(1359,110,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/09/IKKAN-B2-arg.jpg\";s:8:\"filesize\";i:39627;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-B2-arg.jpg\";}'), -(1360,110,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), -(1361,111,'_wp_attached_file','2024/09/IKKAN-B-arg.jpg'), -(1362,111,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/IKKAN-B-arg.jpg\";s:8:\"filesize\";i:90791;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"IKKAN-B-arg.jpg\";}'), -(1363,111,'_wp_attachment_image_alt','Ikkan'), -(1364,112,'_wp_attached_file','2024/09/IKKAN-BaKIGEN-Ba.jpg'), -(1365,112,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/09/IKKAN-BaKIGEN-Ba.jpg\";s:8:\"filesize\";i:237493;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"IKKAN-BaKIGEN-Ba-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"IKKAN-BaKIGEN-Ba.jpg\";}'), -(1366,112,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), -(1369,102,'_edit_last','1'), -(1382,113,'_sku','HADOU-B-g'), -(1383,113,'total_sales','0'), -(1384,113,'_tax_status','taxable'), -(1385,113,'_tax_class',''), -(1386,113,'_manage_stock','no'), -(1387,113,'_backorders','no'), -(1388,113,'_sold_individually','no'), -(1389,113,'_virtual','no'), -(1390,113,'_downloadable','no'), -(1391,113,'_download_limit','-1'), -(1392,113,'_download_expiry','-1'), -(1394,113,'_stock',NULL), -(1395,113,'_stock_status','instock'), -(1396,113,'_wc_average_rating','0'), -(1397,113,'_wc_review_count','0'), -(1398,113,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1399,113,'_product_version','9.4.2'), -(1404,114,'_variation_description',''), -(1405,114,'_regular_price','90'), -(1406,114,'total_sales','0'), -(1407,114,'_tax_status','taxable'), -(1408,114,'_tax_class','parent'), -(1409,114,'_manage_stock','no'), -(1410,114,'_backorders','no'), -(1411,114,'_sold_individually','no'), -(1412,114,'_virtual','no'), -(1413,114,'_downloadable','no'), -(1414,114,'_download_limit','-1'), -(1415,114,'_download_expiry','-1'), -(1416,114,'_thumbnail_id','0'), -(1417,114,'_stock',NULL), -(1418,114,'_stock_status','instock'), -(1419,114,'_wc_average_rating','0'), -(1420,114,'_wc_review_count','0'), -(1421,114,'attribute_pa_size','50'), -(1422,114,'_price','90'), -(1423,114,'_product_version','9.3.3'), -(1424,115,'_variation_description',''), -(1425,115,'_regular_price','90'), -(1426,115,'total_sales','0'), -(1427,115,'_tax_status','taxable'), -(1428,115,'_tax_class','parent'), -(1429,115,'_manage_stock','no'), -(1430,115,'_backorders','no'), -(1431,115,'_sold_individually','no'), -(1432,115,'_virtual','no'), -(1433,115,'_downloadable','no'), -(1434,115,'_download_limit','-1'), -(1435,115,'_download_expiry','-1'), -(1436,115,'_thumbnail_id','0'), -(1437,115,'_stock',NULL), -(1438,115,'_stock_status','instock'), -(1439,115,'_wc_average_rating','0'), -(1440,115,'_wc_review_count','0'), -(1441,115,'attribute_pa_size','52'), -(1442,115,'_price','90'), -(1443,115,'_product_version','9.3.3'), -(1444,116,'_variation_description',''), -(1445,116,'_regular_price','90'), -(1446,116,'total_sales','0'), -(1447,116,'_tax_status','taxable'), -(1448,116,'_tax_class','parent'), -(1449,116,'_manage_stock','no'), -(1450,116,'_backorders','no'), -(1451,116,'_sold_individually','no'), -(1452,116,'_virtual','no'), -(1453,116,'_downloadable','no'), -(1454,116,'_download_limit','-1'), -(1455,116,'_download_expiry','-1'), -(1456,116,'_thumbnail_id','0'), -(1457,116,'_stock',NULL), -(1458,116,'_stock_status','instock'), -(1459,116,'_wc_average_rating','0'), -(1460,116,'_wc_review_count','0'), -(1461,116,'attribute_pa_size','54'), -(1462,116,'_price','90'), -(1463,116,'_product_version','9.3.3'), -(1464,117,'_variation_description',''), -(1465,117,'_regular_price','90'), -(1466,117,'total_sales','0'), -(1467,117,'_tax_status','taxable'), -(1468,117,'_tax_class','parent'), -(1469,117,'_manage_stock','no'), -(1470,117,'_backorders','no'), -(1471,117,'_sold_individually','no'), -(1472,117,'_virtual','no'), -(1473,117,'_downloadable','no'), -(1474,117,'_download_limit','-1'), -(1475,117,'_download_expiry','-1'), -(1476,117,'_thumbnail_id','0'), -(1477,117,'_stock',NULL), -(1478,117,'_stock_status','instock'), -(1479,117,'_wc_average_rating','0'), -(1480,117,'_wc_review_count','0'), -(1481,117,'attribute_pa_size','56'), -(1482,117,'_price','90'), -(1483,117,'_product_version','9.3.3'), -(1484,118,'_variation_description',''), -(1485,118,'_regular_price','90'), -(1486,118,'total_sales','0'), -(1487,118,'_tax_status','taxable'), -(1488,118,'_tax_class','parent'), -(1489,118,'_manage_stock','no'), -(1490,118,'_backorders','no'), -(1491,118,'_sold_individually','no'), -(1492,118,'_virtual','no'), -(1493,118,'_downloadable','no'), -(1494,118,'_download_limit','-1'), -(1495,118,'_download_expiry','-1'), -(1496,118,'_thumbnail_id','0'), -(1497,118,'_stock',NULL), -(1498,118,'_stock_status','instock'), -(1499,118,'_wc_average_rating','0'), -(1500,118,'_wc_review_count','0'), -(1501,118,'attribute_pa_size','58'), -(1502,118,'_price','90'), -(1503,118,'_product_version','9.3.3'), -(1504,119,'_variation_description',''), -(1505,119,'_regular_price','90'), -(1506,119,'total_sales','0'), -(1507,119,'_tax_status','taxable'), -(1508,119,'_tax_class','parent'), -(1509,119,'_manage_stock','no'), -(1510,119,'_backorders','no'), -(1511,119,'_sold_individually','no'), -(1512,119,'_virtual','no'), -(1513,119,'_downloadable','no'), -(1514,119,'_download_limit','-1'), -(1515,119,'_download_expiry','-1'), -(1516,119,'_thumbnail_id','0'), -(1517,119,'_stock',NULL), -(1518,119,'_stock_status','instock'), -(1519,119,'_wc_average_rating','0'), -(1520,119,'_wc_review_count','0'), -(1521,119,'attribute_pa_size','60'), -(1522,119,'_price','90'), -(1523,119,'_product_version','9.3.3'), -(1524,120,'_variation_description',''), -(1525,120,'_regular_price','90'), -(1526,120,'total_sales','0'), -(1527,120,'_tax_status','taxable'), -(1528,120,'_tax_class','parent'), -(1529,120,'_manage_stock','no'), -(1530,120,'_backorders','no'), -(1531,120,'_sold_individually','no'), -(1532,120,'_virtual','no'), -(1533,120,'_downloadable','no'), -(1534,120,'_download_limit','-1'), -(1535,120,'_download_expiry','-1'), -(1536,120,'_thumbnail_id','0'), -(1537,120,'_stock',NULL), -(1538,120,'_stock_status','instock'), -(1539,120,'_wc_average_rating','0'), -(1540,120,'_wc_review_count','0'), -(1541,120,'attribute_pa_size','62'), -(1542,120,'_price','90'), -(1543,120,'_product_version','9.3.3'), -(1545,113,'_edit_lock','1732521826:1'), -(1549,122,'_wp_attached_file','2024/09/IKKAN-B-g.jpg'), -(1550,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/IKKAN-B-g.jpg\";s:8:\"filesize\";i:575848;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(1551,122,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top'), -(1554,113,'_edit_last','1'), -(1724,132,'_wp_attached_file','2024/09/DSC9928.jpg'), -(1725,132,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9928.jpg\";s:8:\"filesize\";i:329984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9928-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9928.jpg\";}'), -(1726,132,'_wp_attachment_image_alt','Piasu wide ring in sterling silver with three small rings on top, one in 18k gold'), -(1736,133,'_sku','KARA-B'), -(1737,133,'total_sales','0'), -(1738,133,'_tax_status','taxable'), -(1739,133,'_tax_class',''), -(1740,133,'_manage_stock','no'), -(1741,133,'_backorders','no'), -(1742,133,'_sold_individually','no'), -(1743,133,'_virtual','no'), -(1744,133,'_downloadable','no'), -(1745,133,'_download_limit','-1'), -(1746,133,'_download_expiry','-1'), -(1748,133,'_stock',NULL), -(1749,133,'_stock_status','outofstock'), -(1750,133,'_wc_average_rating','0'), -(1751,133,'_wc_review_count','0'), -(1752,133,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1753,133,'_product_version','10.1.0'), -(1757,134,'_variation_description',''), -(1758,134,'_regular_price','95'), -(1759,134,'total_sales','0'), -(1760,134,'_tax_status','taxable'), -(1761,134,'_tax_class','parent'), -(1762,134,'_manage_stock','no'), -(1763,134,'_backorders','no'), -(1764,134,'_sold_individually','no'), -(1765,134,'_virtual','no'), -(1766,134,'_downloadable','no'), -(1767,134,'_download_limit','-1'), -(1768,134,'_download_expiry','-1'), -(1769,134,'_thumbnail_id','0'), -(1770,134,'_stock',NULL), -(1771,134,'_stock_status','outofstock'), -(1772,134,'_wc_average_rating','0'), -(1773,134,'_wc_review_count','0'), -(1774,134,'attribute_pa_size','50'), -(1775,134,'_price','95'), -(1776,134,'_product_version','10.1.0'), -(1777,135,'_variation_description',''), -(1778,135,'_regular_price','95'), -(1779,135,'total_sales','0'), -(1780,135,'_tax_status','taxable'), -(1781,135,'_tax_class','parent'), -(1782,135,'_manage_stock','no'), -(1783,135,'_backorders','no'), -(1784,135,'_sold_individually','no'), -(1785,135,'_virtual','no'), -(1786,135,'_downloadable','no'), -(1787,135,'_download_limit','-1'), -(1788,135,'_download_expiry','-1'), -(1789,135,'_thumbnail_id','0'), -(1790,135,'_stock',NULL), -(1791,135,'_stock_status','outofstock'), -(1792,135,'_wc_average_rating','0'), -(1793,135,'_wc_review_count','0'), -(1794,135,'attribute_pa_size','52'), -(1795,135,'_price','95'), -(1796,135,'_product_version','10.1.0'), -(1797,136,'_variation_description',''), -(1798,136,'_regular_price','95'), -(1799,136,'total_sales','0'), -(1800,136,'_tax_status','taxable'), -(1801,136,'_tax_class','parent'), -(1802,136,'_manage_stock','no'), -(1803,136,'_backorders','no'), -(1804,136,'_sold_individually','no'), -(1805,136,'_virtual','no'), -(1806,136,'_downloadable','no'), -(1807,136,'_download_limit','-1'), -(1808,136,'_download_expiry','-1'), -(1809,136,'_thumbnail_id','0'), -(1810,136,'_stock',NULL), -(1811,136,'_stock_status','outofstock'), -(1812,136,'_wc_average_rating','0'), -(1813,136,'_wc_review_count','0'), -(1814,136,'attribute_pa_size','54'), -(1815,136,'_price','95'), -(1816,136,'_product_version','10.1.0'), -(1817,137,'_variation_description',''), -(1818,137,'_regular_price','95'), -(1819,137,'total_sales','0'), -(1820,137,'_tax_status','taxable'), -(1821,137,'_tax_class','parent'), -(1822,137,'_manage_stock','no'), -(1823,137,'_backorders','no'), -(1824,137,'_sold_individually','no'), -(1825,137,'_virtual','no'), -(1826,137,'_downloadable','no'), -(1827,137,'_download_limit','-1'), -(1828,137,'_download_expiry','-1'), -(1829,137,'_thumbnail_id','0'), -(1830,137,'_stock',NULL), -(1831,137,'_stock_status','outofstock'), -(1832,137,'_wc_average_rating','0'), -(1833,137,'_wc_review_count','0'), -(1834,137,'attribute_pa_size','56'), -(1835,137,'_price','95'), -(1836,137,'_product_version','10.1.0'), -(1837,138,'_variation_description',''), -(1838,138,'_regular_price','95'), -(1839,138,'total_sales','0'), -(1840,138,'_tax_status','taxable'), -(1841,138,'_tax_class','parent'), -(1842,138,'_manage_stock','no'), -(1843,138,'_backorders','no'), -(1844,138,'_sold_individually','no'), -(1845,138,'_virtual','no'), -(1846,138,'_downloadable','no'), -(1847,138,'_download_limit','-1'), -(1848,138,'_download_expiry','-1'), -(1849,138,'_thumbnail_id','0'), -(1850,138,'_stock',NULL), -(1851,138,'_stock_status','outofstock'), -(1852,138,'_wc_average_rating','0'), -(1853,138,'_wc_review_count','0'), -(1854,138,'attribute_pa_size','58'), -(1855,138,'_price','95'), -(1856,138,'_product_version','10.1.0'), -(1857,139,'_variation_description',''), -(1858,139,'_regular_price','95'), -(1859,139,'total_sales','0'), -(1860,139,'_tax_status','taxable'), -(1861,139,'_tax_class','parent'), -(1862,139,'_manage_stock','no'), -(1863,139,'_backorders','no'), -(1864,139,'_sold_individually','no'), -(1865,139,'_virtual','no'), -(1866,139,'_downloadable','no'), -(1867,139,'_download_limit','-1'), -(1868,139,'_download_expiry','-1'), -(1869,139,'_thumbnail_id','0'), -(1870,139,'_stock',NULL), -(1871,139,'_stock_status','outofstock'), -(1872,139,'_wc_average_rating','0'), -(1873,139,'_wc_review_count','0'), -(1874,139,'attribute_pa_size','60'), -(1875,139,'_price','95'), -(1876,139,'_product_version','10.1.0'), -(1877,140,'_variation_description',''), -(1878,140,'_regular_price','95'), -(1879,140,'total_sales','0'), -(1880,140,'_tax_status','taxable'), -(1881,140,'_tax_class','parent'), -(1882,140,'_manage_stock','no'), -(1883,140,'_backorders','no'), -(1884,140,'_sold_individually','no'), -(1885,140,'_virtual','no'), -(1886,140,'_downloadable','no'), -(1887,140,'_download_limit','-1'), -(1888,140,'_download_expiry','-1'), -(1889,140,'_thumbnail_id','0'), -(1890,140,'_stock',NULL), -(1891,140,'_stock_status','outofstock'), -(1892,140,'_wc_average_rating','0'), -(1893,140,'_wc_review_count','0'), -(1894,140,'attribute_pa_size','62'), -(1895,140,'_price','95'), -(1896,140,'_product_version','10.1.0'), -(1898,133,'_edit_lock','1755761533:1'), -(1902,142,'_wp_attached_file','2024/09/DSC9269.jpg'), -(1903,142,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9269.jpg\";s:8:\"filesize\";i:230822;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9269-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9269.jpg\";}'), -(1904,142,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(1905,143,'_wp_attached_file','2024/09/DSC9148.jpg'), -(1906,143,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9148.jpg\";s:8:\"filesize\";i:216029;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9148-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9148.jpg\";}'), -(1907,143,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(1910,133,'_edit_last','1'), -(2087,154,'_wp_attached_file','2024/10/KIGEN-BaIKKANBa.jpg'), -(2088,154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/KIGEN-BaIKKANBa.jpg\";s:8:\"filesize\";i:228219;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"KIGEN-BaIKKANBa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12630;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"KIGEN-BaIKKANBa.jpg\";}'), -(2090,154,'_wp_attachment_image_alt','Kishou signet ring in silver, with three engrave lines'), -(2272,165,'_wp_attached_file','2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg'), -(2273,165,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";s:8:\"filesize\";i:262084;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";}'), -(2274,165,'_wp_attachment_image_alt','Kishou signet ring in gold plated silver, with three engrave lines'), -(2282,166,'_wp_attached_file','2024/09/DSC9760.jpg'), -(2283,166,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9760.jpg\";s:8:\"filesize\";i:352950;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9760-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9760.jpg\";}'), -(2284,166,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(2285,167,'_wp_attached_file','2024/09/DSC9339.jpg'), -(2286,167,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9339.jpg\";s:8:\"filesize\";i:257752;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9339-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9339.jpg\";}'), -(2287,167,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(2294,168,'_sku','Rokku-B'), -(2295,168,'total_sales','2'), -(2296,168,'_tax_status','taxable'), -(2297,168,'_tax_class',''), -(2298,168,'_manage_stock','no'), -(2299,168,'_backorders','no'), -(2300,168,'_sold_individually','no'), -(2301,168,'_virtual','no'), -(2302,168,'_downloadable','no'), -(2303,168,'_download_limit','-1'), -(2304,168,'_download_expiry','-1'), -(2306,168,'_stock',NULL), -(2307,168,'_stock_status','instock'), -(2308,168,'_wc_average_rating','0'), -(2309,168,'_wc_review_count','0'), -(2310,168,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2311,168,'_product_version','9.9.3'), -(2457,168,'_edit_lock','1750279422:1'), -(2461,177,'_wp_attached_file','2024/10/ROKKU-B-malachite-1.jpg'), -(2462,177,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-B-malachite-1.jpg\";s:8:\"filesize\";i:85733;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-B-malachite-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"ROKKU-B-malachite-1.jpg\";}'), -(2463,177,'_wp_attachment_image_alt',''), -(2464,178,'_wp_attached_file','2024/10/ROKKU-B-tigereye.jpg'), -(2465,178,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/ROKKU-B-tigereye.jpg\";s:8:\"filesize\";i:51905;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"ROKKU-B-tigereye.jpg\";}'), -(2466,178,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2467,179,'_wp_attached_file','2024/10/ROKKU-B-tigereye-1.jpg'), -(2468,179,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-B-tigereye-1.jpg\";s:8:\"filesize\";i:87699;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-B-tigereye-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"ROKKU-B-tigereye-1.jpg\";}'), -(2469,179,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2470,180,'_wp_attached_file','2024/10/DSC9710.jpg'), -(2471,180,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9710.jpg\";s:8:\"filesize\";i:421874;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9710-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9710.jpg\";}'), -(2472,180,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), -(2475,182,'_wp_attached_file','2024/10/DSC9190.jpg'), -(2476,182,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9190.jpg\";s:8:\"filesize\";i:229655;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9190-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9190.jpg\";}'), -(2477,182,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2480,168,'_edit_last','1'), -(2488,183,'_sku','BOROBORO-BO2-s'), -(2489,183,'total_sales','1'), -(2490,183,'_tax_status','taxable'), -(2491,183,'_tax_class',''), -(2492,183,'_manage_stock','no'), -(2493,183,'_backorders','no'), -(2494,183,'_sold_individually','no'), -(2495,183,'_virtual','no'), -(2496,183,'_downloadable','no'), -(2497,183,'_download_limit','-1'), -(2498,183,'_download_expiry','-1'), -(2500,183,'_stock',NULL), -(2501,183,'_stock_status','instock'), -(2502,183,'_wc_average_rating','0'), -(2503,183,'_wc_review_count','0'), -(2504,183,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2505,183,'_product_version','10.1.2'), -(2654,183,'_edit_lock','1758717807:1'), -(2772,199,'_wp_attached_file','2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg'), -(2773,199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:42:\"2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg\";s:8:\"filesize\";i:236038;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"BOROBORO-BOaTANEMAKI-BO1a-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19871;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(2775,199,'_wp_attachment_image_alt','Boroboro long silver earrings. right side'), -(2790,183,'_edit_last','1'), -(2805,200,'_variation_description',''), -(2806,200,'total_sales','0'), -(2807,200,'_tax_status','taxable'), -(2808,200,'_tax_class','parent'), -(2809,200,'_manage_stock','no'), -(2810,200,'_backorders','no'), -(2811,200,'_sold_individually','no'), -(2812,200,'_virtual','no'), -(2813,200,'_downloadable','no'), -(2814,200,'_download_limit','-1'), -(2815,200,'_download_expiry','-1'), -(2816,200,'_stock',NULL), -(2817,200,'_stock_status','instock'), -(2818,200,'_wc_average_rating','0'), -(2819,200,'_wc_review_count','0'), -(2820,200,'attribute_pa_stone','malachite'), -(2821,200,'_product_version','9.9.3'), -(2822,201,'_variation_description',''), -(2823,201,'total_sales','0'), -(2824,201,'_tax_status','taxable'), -(2825,201,'_tax_class','parent'), -(2826,201,'_manage_stock','no'), -(2827,201,'_backorders','no'), -(2828,201,'_sold_individually','no'), -(2829,201,'_virtual','no'), -(2830,201,'_downloadable','no'), -(2831,201,'_download_limit','-1'), -(2832,201,'_download_expiry','-1'), -(2833,201,'_stock',NULL), -(2834,201,'_stock_status','instock'), -(2835,201,'_wc_average_rating','0'), -(2836,201,'_wc_review_count','0'), -(2837,201,'attribute_pa_stone','tiger-eye'), -(2838,201,'_product_version','9.9.3'), -(2839,200,'_regular_price','100'), -(2841,200,'_price','100'), -(2842,201,'_regular_price','110'), -(2843,201,'_thumbnail_id','178'), -(2844,201,'_price','110'), -(2854,202,'_sku','PIASU-BO'), -(2855,202,'total_sales','6'), -(2856,202,'_tax_status','taxable'), -(2857,202,'_tax_class',''), -(2858,202,'_manage_stock','no'), -(2859,202,'_backorders','no'), -(2860,202,'_sold_individually','no'), -(2861,202,'_virtual','no'), -(2862,202,'_downloadable','no'), -(2863,202,'_download_limit','-1'), -(2864,202,'_download_expiry','-1'), -(2865,202,'_thumbnail_id','1485'), -(2866,202,'_stock',NULL), -(2867,202,'_stock_status','instock'), -(2868,202,'_wc_average_rating','0'), -(2869,202,'_wc_review_count','0'), -(2870,202,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2871,202,'_product_version','10.1.2'), -(2941,202,'_edit_lock','1759754775:1'), -(2942,206,'_wp_attached_file','2024/10/PIASU-BO.jpg'), -(2943,206,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/10/PIASU-BO.jpg\";s:8:\"filesize\";i:56620;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"PIASU-BO.jpg\";}'), -(2944,206,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(2956,202,'_edit_last','1'), -(2977,213,'_sku','BOROBORO-BO2-g'), -(2978,213,'total_sales','1'), -(2979,213,'_tax_status','taxable'), -(2980,213,'_tax_class',''), -(2981,213,'_manage_stock','no'), -(2982,213,'_backorders','no'), -(2983,213,'_sold_individually','no'), -(2984,213,'_virtual','no'), -(2985,213,'_downloadable','no'), -(2986,213,'_download_limit','-1'), -(2987,213,'_download_expiry','-1'), -(2989,213,'_stock',NULL), -(2990,213,'_stock_status','instock'), -(2991,213,'_wc_average_rating','0'), -(2992,213,'_wc_review_count','0'), -(2993,213,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2994,213,'_product_version','10.1.2'), -(3064,213,'_edit_lock','1758719347:1'), -(3070,213,'_edit_last','1'), -(3440,240,'_sku','IKKAN-BR-s'), -(3441,240,'total_sales','0'), -(3442,240,'_tax_status','taxable'), -(3443,240,'_tax_class',''), -(3444,240,'_manage_stock','no'), -(3445,240,'_backorders','no'), -(3446,240,'_sold_individually','no'), -(3447,240,'_virtual','no'), -(3448,240,'_downloadable','no'), -(3449,240,'_download_limit','-1'), -(3450,240,'_download_expiry','-1'), -(3451,240,'_thumbnail_id','243'), -(3452,240,'_stock',NULL), -(3453,240,'_stock_status','outofstock'), -(3454,240,'_wc_average_rating','0'), -(3455,240,'_wc_review_count','0'), -(3456,240,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(3457,240,'_product_version','10.1.0'), -(3461,241,'_variation_description',''), -(3462,241,'_sku','IKKAN-BR-s-1'), -(3463,241,'_regular_price','80'), -(3464,241,'total_sales','0'), -(3465,241,'_tax_status','taxable'), -(3466,241,'_tax_class','parent'), -(3467,241,'_manage_stock','no'), -(3468,241,'_backorders','no'), -(3469,241,'_sold_individually','no'), -(3470,241,'_virtual','no'), -(3471,241,'_downloadable','no'), -(3472,241,'_download_limit','-1'), -(3473,241,'_download_expiry','-1'), -(3474,241,'_thumbnail_id','243'), -(3475,241,'_stock',NULL), -(3476,241,'_stock_status','outofstock'), -(3477,241,'_wc_average_rating','0'), -(3478,241,'_wc_review_count','0'), -(3479,241,'attribute_pa_size','size-1'), -(3480,241,'_price','80'), -(3481,241,'_product_version','10.1.0'), -(3482,242,'_variation_description',''), -(3483,242,'_sku','IKKAN-BR-s-2'), -(3484,242,'_regular_price','80'), -(3485,242,'total_sales','0'), -(3486,242,'_tax_status','taxable'), -(3487,242,'_tax_class','parent'), -(3488,242,'_manage_stock','no'), -(3489,242,'_backorders','no'), -(3490,242,'_sold_individually','no'), -(3491,242,'_virtual','no'), -(3492,242,'_downloadable','no'), -(3493,242,'_download_limit','-1'), -(3494,242,'_download_expiry','-1'), -(3495,242,'_thumbnail_id','243'), -(3496,242,'_stock',NULL), -(3497,242,'_stock_status','outofstock'), -(3498,242,'_wc_average_rating','0'), -(3499,242,'_wc_review_count','0'), -(3500,242,'attribute_pa_size','size-2'), -(3501,242,'_price','80'), -(3502,242,'_product_version','10.1.0'), -(3504,240,'_edit_lock','1755679894:1'), -(3505,243,'_wp_attached_file','2024/10/IKKAN-BR-arg.jpg'), -(3506,243,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-arg.jpg\";s:8:\"filesize\";i:51107;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6101;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IKKAN-BR-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6101;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-arg.jpg\";}'), -(3507,243,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3508,244,'_wp_attached_file','2024/10/IKKAN-BR-s.jpg'), -(3509,244,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-s.jpg\";s:8:\"filesize\";i:438743;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-s.jpg\";}'), -(3510,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3511,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3512,245,'_wp_attached_file','2024/10/IKKAN-BR-s-1.jpg'), -(3513,245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-s-1.jpg\";s:8:\"filesize\";i:536594;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-s-1.jpg\";}'), -(3514,245,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3516,240,'_edit_last','1'), -(3587,249,'_wp_attached_file','2024/10/IKKAN-BR-vrm.jpg'), -(3588,249,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-vrm.jpg\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-vrm.jpg\";}'), -(3589,249,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), -(3590,250,'_wp_attached_file','2024/10/IKKAN-BR-g.jpg'), -(3591,250,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-g.jpg\";s:8:\"filesize\";i:187089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-g.jpg\";}'), -(3592,250,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), -(3601,251,'_sku','TANEMAKI-BR'), -(3602,251,'total_sales','3'), -(3603,251,'_tax_status','taxable'), -(3604,251,'_tax_class',''), -(3605,251,'_manage_stock','no'), -(3606,251,'_backorders','no'), -(3607,251,'_sold_individually','no'), -(3608,251,'_virtual','no'), -(3609,251,'_downloadable','no'), -(3610,251,'_download_limit','-1'), -(3611,251,'_download_expiry','-1'), -(3613,251,'_stock',NULL), -(3614,251,'_stock_status','instock'), -(3615,251,'_wc_average_rating','0'), -(3616,251,'_wc_review_count','0'), -(3618,251,'_product_version','9.8.5'), -(3665,251,'_edit_lock','1749450379:1'), -(3669,255,'_wp_attached_file','2024/10/TANEMAKI-BR-1.jpg'), -(3670,255,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2835;s:6:\"height\";i:2835;s:4:\"file\";s:25:\"2024/10/TANEMAKI-BR-1.jpg\";s:8:\"filesize\";i:514458;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TANEMAKI-BR-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"TANEMAKI-BR-1.jpg\";}'), -(3671,255,'_wp_attachment_image_alt',''), -(3707,251,'_edit_last','1'), -(3708,251,'_regular_price','75'), -(3709,251,'_price','75'), -(3713,258,'_sku','FUYOU-BR-s'), -(3714,258,'_regular_price','75'), -(3715,258,'total_sales','0'), -(3716,258,'_tax_status','taxable'), -(3717,258,'_tax_class',''), -(3718,258,'_manage_stock','no'), -(3719,258,'_backorders','no'), -(3720,258,'_sold_individually','no'), -(3721,258,'_virtual','no'), -(3722,258,'_downloadable','no'), -(3723,258,'_download_limit','-1'), -(3724,258,'_download_expiry','-1'), -(3726,258,'_stock',NULL), -(3727,258,'_stock_status','instock'), -(3728,258,'_wc_average_rating','0'), -(3729,258,'_wc_review_count','0'), -(3730,258,'_product_version','9.9.5'), -(3731,258,'_price','75'), -(3735,258,'_edit_lock','1755587974:1'), -(3742,258,'_edit_last','1'), -(3782,263,'_sku','IKKAN-C'), -(3783,263,'_regular_price','100'), -(3784,263,'total_sales','1'), -(3785,263,'_tax_status','taxable'), -(3786,263,'_tax_class',''), -(3787,263,'_manage_stock','no'), -(3788,263,'_backorders','no'), -(3789,263,'_sold_individually','no'), -(3790,263,'_virtual','no'), -(3791,263,'_downloadable','no'), -(3792,263,'_download_limit','-1'), -(3793,263,'_download_expiry','-1'), -(3795,263,'_stock',NULL), -(3796,263,'_stock_status','instock'), -(3797,263,'_wc_average_rating','0'), -(3798,263,'_wc_review_count','0'), -(3799,263,'_product_version','10.1.0'), -(3800,263,'_price','100'), -(3804,263,'_edit_lock','1757145921:1'), -(3817,263,'_edit_last','1'), -(3828,268,'_sku','PIASU-C'), -(3829,268,'_regular_price','100'), -(3830,268,'total_sales','0'), -(3831,268,'_tax_status','taxable'), -(3832,268,'_tax_class',''), -(3833,268,'_manage_stock','no'), -(3834,268,'_backorders','no'), -(3835,268,'_sold_individually','no'), -(3836,268,'_virtual','no'), -(3837,268,'_downloadable','no'), -(3838,268,'_download_limit','-1'), -(3839,268,'_download_expiry','-1'), -(3841,268,'_stock',NULL), -(3842,268,'_stock_status','instock'), -(3843,268,'_wc_average_rating','0'), -(3844,268,'_wc_review_count','0'), -(3845,268,'_product_version','9.9.3'), -(3846,268,'_price','100'), -(3852,268,'_edit_lock','1750278425:1'), -(3856,270,'_wp_attached_file','2024/10/PIASU-C-arg-opti.jpg'), -(3857,270,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/10/PIASU-C-arg-opti.jpg\";s:8:\"filesize\";i:266103;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"PIASU-C-arg-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"PIASU-C-arg-opti.jpg\";}'), -(3858,270,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), -(3859,268,'_edit_last','1'), -(3889,273,'_wp_attached_file','2024/10/TANEMAKI-C.jpg'), -(3890,273,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/TANEMAKI-C.jpg\";s:8:\"filesize\";i:498528;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TANEMAKI-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"TANEMAKI-C.jpg\";}'), -(3891,273,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), -(3899,274,'_sku','FUYOU-C'), -(3900,274,'_regular_price','120'), -(3901,274,'total_sales','3'), -(3902,274,'_tax_status','taxable'), -(3903,274,'_tax_class',''), -(3904,274,'_manage_stock','no'), -(3905,274,'_backorders','no'), -(3906,274,'_sold_individually','no'), -(3907,274,'_virtual','no'), -(3908,274,'_downloadable','no'), -(3909,274,'_download_limit','-1'), -(3910,274,'_download_expiry','-1'), -(3911,274,'_thumbnail_id','1382'), -(3912,274,'_stock',NULL), -(3913,274,'_stock_status','instock'), -(3914,274,'_wc_average_rating','0'), -(3915,274,'_wc_review_count','0'), -(3916,274,'_product_version','10.1.0'), -(3917,274,'_price','120'), -(3921,274,'_edit_lock','1755680325:1'), -(3925,274,'_edit_last','1'), -(4071,285,'_sku','HATTARI-CR2-s'), -(4073,285,'total_sales','2'), -(4074,285,'_tax_status','taxable'), -(4075,285,'_tax_class',''), -(4076,285,'_manage_stock','no'), -(4077,285,'_backorders','no'), -(4078,285,'_sold_individually','no'), -(4079,285,'_virtual','no'), -(4080,285,'_downloadable','no'), -(4081,285,'_download_limit','-1'), -(4082,285,'_download_expiry','-1'), -(4084,285,'_stock',NULL), -(4085,285,'_stock_status','instock'), -(4086,285,'_wc_average_rating','0'), -(4087,285,'_wc_review_count','0'), -(4088,285,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4089,285,'_product_version','10.1.0'), -(4094,285,'_edit_lock','1755588637:1'), -(4098,287,'_wp_attached_file','2024/10/HATTARI-CR1-s-1.jpg'), -(4099,287,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/HATTARI-CR1-s-1.jpg\";s:8:\"filesize\";i:323619;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HATTARI-CR1-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15492;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"HATTARI-CR1-s-1.jpg\";}'), -(4100,287,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver'), -(4101,285,'_edit_last','1'), -(4105,288,'_sku','HATTARI-CR1-g'), -(4107,288,'total_sales','3'), -(4108,288,'_tax_status','taxable'), -(4109,288,'_tax_class',''), -(4110,288,'_manage_stock','no'), -(4111,288,'_backorders','no'), -(4112,288,'_sold_individually','no'), -(4113,288,'_virtual','no'), -(4114,288,'_downloadable','no'), -(4115,288,'_download_limit','-1'), -(4116,288,'_download_expiry','-1'), -(4118,288,'_stock',NULL), -(4119,288,'_stock_status','instock'), -(4120,288,'_wc_average_rating','0'), -(4121,288,'_wc_review_count','0'), -(4122,288,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4123,288,'_product_version','10.1.0'), -(4128,288,'_edit_lock','1755588601:1'), -(4132,290,'_wp_attached_file','2024/10/DSC9336.jpg'), -(4133,290,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9336.jpg\";s:8:\"filesize\";i:280534;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9336-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9336.jpg\";}'), -(4134,290,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(4135,288,'_edit_last','1'), -(4381,306,'_sku','TAMANORI-CR-s'), -(4382,306,'total_sales','6'), -(4383,306,'_tax_status','taxable'), -(4384,306,'_tax_class',''), -(4385,306,'_manage_stock','no'), -(4386,306,'_backorders','no'), -(4387,306,'_sold_individually','no'), -(4388,306,'_virtual','no'), -(4389,306,'_downloadable','no'), -(4390,306,'_download_limit','-1'), -(4391,306,'_download_expiry','-1'), -(4392,306,'_thumbnail_id','310'), -(4393,306,'_stock',NULL), -(4394,306,'_stock_status','instock'), -(4395,306,'_wc_average_rating','0'), -(4396,306,'_wc_review_count','0'), -(4397,306,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4398,306,'_product_version','9.4.1'), -(4467,306,'_edit_lock','1732523141:1'), -(4468,310,'_wp_attached_file','2024/10/TAMANORI-CR2-arg.jpg'), -(4469,310,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-arg.jpg\";s:8:\"filesize\";i:33849;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"TAMANORI-CR2-arg.jpg\";}'), -(4470,310,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(4471,311,'_wp_attached_file','2024/10/DSC9378.jpg'), -(4472,311,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9378.jpg\";s:8:\"filesize\";i:270951;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9378-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9378.jpg\";}'), -(4473,311,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(4477,306,'_edit_last','1'), -(4481,312,'_sku','TAMANORI-CR-g'), -(4482,312,'total_sales','1'), -(4483,312,'_tax_status','taxable'), -(4484,312,'_tax_class',''), -(4485,312,'_manage_stock','no'), -(4486,312,'_backorders','no'), -(4487,312,'_sold_individually','no'), -(4488,312,'_virtual','no'), -(4489,312,'_downloadable','no'), -(4490,312,'_download_limit','-1'), -(4491,312,'_download_expiry','-1'), -(4493,312,'_stock',NULL), -(4494,312,'_stock_status','instock'), -(4495,312,'_wc_average_rating','0'), -(4496,312,'_wc_review_count','0'), -(4497,312,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4498,312,'_product_version','9.4.2'), -(4568,312,'_edit_lock','1732523154:1'), -(4572,317,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm-1.jpg'), -(4573,317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2440;s:6:\"height\";i:2440;s:4:\"file\";s:30:\"2024/10/TAMANORI-CR2-vrm-1.jpg\";s:8:\"filesize\";i:408918;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"TAMANORI-CR2-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4574,317,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(4578,312,'_edit_last','1'), -(4585,318,'_sku','FUYOU-CR'), -(4586,318,'total_sales','2'), -(4587,318,'_tax_status','taxable'), -(4588,318,'_tax_class',''), -(4589,318,'_manage_stock','no'), -(4590,318,'_backorders','no'), -(4591,318,'_sold_individually','no'), -(4592,318,'_virtual','no'), -(4593,318,'_downloadable','no'), -(4594,318,'_download_limit','-1'), -(4595,318,'_download_expiry','-1'), -(4597,318,'_stock',NULL), -(4598,318,'_stock_status','instock'), -(4599,318,'_wc_average_rating','0'), -(4600,318,'_wc_review_count','0'), -(4602,318,'_product_version','10.1.0'), -(4669,318,'_price','45'), -(4670,318,'_price','45'), -(4671,318,'_price','45'), -(4672,318,'_edit_lock','1755854214:1'), -(4676,323,'_wp_attached_file','2024/10/FUYOU-CR.jpg'), -(4677,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/FUYOU-CR.jpg\";s:8:\"filesize\";i:546040;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-CR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4678,323,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), -(4679,324,'_wp_attached_file','2024/10/DSC9542.jpg'), -(4680,324,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9542.jpg\";s:8:\"filesize\";i:438169;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9542-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18806;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9542.jpg\";}'), -(4681,324,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), -(4682,318,'_edit_last','1'), -(4683,318,'_regular_price','45'), -(4712,325,'_sku','HADOU-EC-s'), -(4713,325,'_regular_price','40'), -(4714,325,'total_sales','1'), -(4715,325,'_tax_status','taxable'), -(4716,325,'_tax_class',''), -(4717,325,'_manage_stock','no'), -(4718,325,'_backorders','no'), -(4719,325,'_sold_individually','no'), -(4720,325,'_virtual','no'), -(4721,325,'_downloadable','no'), -(4722,325,'_download_limit','-1'), -(4723,325,'_download_expiry','-1'), -(4724,325,'_thumbnail_id','326'), -(4725,325,'_stock',NULL), -(4726,325,'_stock_status','instock'), -(4727,325,'_wc_average_rating','0'), -(4728,325,'_wc_review_count','0'), -(4729,325,'_product_version','9.8.4'), -(4730,325,'_price','40'), -(4735,325,'_edit_lock','1746806441:1'), -(4736,326,'_wp_attached_file','2024/10/HADOU-EC-arg.jpg'), -(4737,326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-arg.jpg\";s:8:\"filesize\";i:27956;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-arg.jpg\";}'), -(4738,326,'_wp_attachment_image_alt','Hadou earcuff in sterling silver.'), -(4739,327,'_wp_attached_file','2024/10/HADOU-EC.jpg'), -(4740,327,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/HADOU-EC.jpg\";s:8:\"filesize\";i:355588;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"HADOU-EC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"HADOU-EC.jpg\";}'), -(4741,327,'_wp_attachment_image_alt','Hadou earcuff in sterling silver'), -(4742,325,'_edit_last','1'), -(4746,328,'_sku','HADOU-EC-g'), -(4747,328,'_regular_price','45'), -(4748,328,'total_sales','2'), -(4749,328,'_tax_status','taxable'), -(4750,328,'_tax_class',''), -(4751,328,'_manage_stock','no'), -(4752,328,'_backorders','no'), -(4753,328,'_sold_individually','no'), -(4754,328,'_virtual','no'), -(4755,328,'_downloadable','no'), -(4756,328,'_download_limit','-1'), -(4757,328,'_download_expiry','-1'), -(4758,328,'_thumbnail_id','329'), -(4759,328,'_stock',NULL), -(4760,328,'_stock_status','instock'), -(4761,328,'_wc_average_rating','0'), -(4762,328,'_wc_review_count','0'), -(4763,328,'_product_version','9.8.4'), -(4764,328,'_price','45'), -(4768,328,'_edit_lock','1746806573:1'), -(4769,329,'_wp_attached_file','2024/10/HADOU-EC-vrm.jpg'), -(4770,329,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-vrm.jpg\";s:8:\"filesize\";i:28932;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-vrm.jpg\";}'), -(4771,329,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), -(4772,330,'_wp_attached_file','2024/10/HADOU-EC-vrm-1.jpg'), -(4773,330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/HADOU-EC-vrm-1.jpg\";s:8:\"filesize\";i:223978;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"HADOU-EC-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"HADOU-EC-vrm-1.jpg\";}'), -(4774,330,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), -(4775,328,'_edit_last','1'), -(4853,338,'_sku','PIASU-BRC'), -(4854,338,'_regular_price','50'), -(4855,338,'total_sales','0'), -(4856,338,'_tax_status','taxable'), -(4857,338,'_tax_class',''), -(4858,338,'_manage_stock','no'), -(4859,338,'_backorders','no'), -(4860,338,'_sold_individually','no'), -(4861,338,'_virtual','no'), -(4862,338,'_downloadable','no'), -(4863,338,'_download_limit','-1'), -(4864,338,'_download_expiry','-1'), -(4865,338,'_thumbnail_id','339'), -(4866,338,'_stock',NULL), -(4867,338,'_stock_status','instock'), -(4868,338,'_wc_average_rating','0'), -(4869,338,'_wc_review_count','0'), -(4870,338,'_product_version','10.1.2'), -(4871,338,'_price','50'), -(4875,338,'_edit_lock','1761726638:1'), -(4876,339,'_wp_attached_file','2024/10/PIASU-BRC.jpg'), -(4877,339,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/PIASU-BRC.jpg\";s:8:\"filesize\";i:38982;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"PIASU-BRC.jpg\";}'), -(4878,339,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4879,340,'_wp_attached_file','2024/10/PIASU-BRC-1.jpg'), -(4880,340,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-1.jpg\";s:8:\"filesize\";i:237100;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-1.jpg\";}'), -(4881,340,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4882,341,'_wp_attached_file','2024/10/PIASU-BRC-2.jpg'), -(4883,341,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-2.jpg\";s:8:\"filesize\";i:326181;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10210;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-2.jpg\";}'), -(4884,341,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4885,338,'_edit_last','1'), -(4886,338,'_photos_colonne_gauche|||0|value','339'), -(4887,338,'_photos_colonne_droite|||0|value','340'), -(4888,338,'_photos_colonne_droite|||1|value','341'), -(4889,338,'_haiku_details_produit',''), -(4890,342,'_sku','KAGUN-BOP'), -(4891,342,'total_sales','8'), -(4892,342,'_tax_status','taxable'), -(4893,342,'_tax_class',''), -(4894,342,'_manage_stock','no'), -(4895,342,'_backorders','no'), -(4896,342,'_sold_individually','no'), -(4897,342,'_virtual','no'), -(4898,342,'_downloadable','no'), -(4899,342,'_download_limit','-1'), -(4900,342,'_download_expiry','-1'), -(4902,342,'_stock',NULL), -(4903,342,'_stock_status','instock'), -(4904,342,'_wc_average_rating','0'), -(4905,342,'_wc_review_count','0'), -(4906,342,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4907,342,'_product_version','9.9.3'), -(4977,342,'_edit_lock','1758717468:1'), -(4981,347,'_wp_attached_file','2024/10/DSC9763.jpg'), -(4982,347,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9763.jpg\";s:8:\"filesize\";i:402127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9763-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19294;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9763.jpg\";}'), -(4983,347,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(4984,348,'_wp_attached_file','2024/10/DSC9781.jpg'), -(4985,348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1919;s:4:\"file\";s:19:\"2024/10/DSC9781.jpg\";s:8:\"filesize\";i:372455;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9781-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4986,348,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(4987,349,'_wp_attached_file','2024/10/DSC9748.jpg'), -(4988,349,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9748.jpg\";s:8:\"filesize\";i:421413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9748-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9748.jpg\";}'), -(4989,349,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(5113,342,'_edit_last','1'), -(5608,385,'_sku','ROKKU-C'), -(5610,385,'total_sales','0'), -(5611,385,'_tax_status','taxable'), -(5612,385,'_tax_class',''), -(5613,385,'_manage_stock','no'), -(5614,385,'_backorders','no'), -(5615,385,'_sold_individually','no'), -(5616,385,'_virtual','no'), -(5617,385,'_downloadable','no'), -(5618,385,'_download_limit','-1'), -(5619,385,'_download_expiry','-1'), -(5621,385,'_stock',NULL), -(5622,385,'_stock_status','instock'), -(5623,385,'_wc_average_rating','0'), -(5624,385,'_wc_review_count','0'), -(5625,385,'_product_version','9.8.4'), -(5630,385,'_edit_lock','1750342713:1'), -(5637,388,'_wp_attached_file','2024/10/ROKKU-C-arg.jpg'), -(5638,388,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/ROKKU-C-arg.jpg\";s:8:\"filesize\";i:328180;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ROKKU-C-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16682;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"ROKKU-C-arg.jpg\";}'), -(5639,388,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(5640,385,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5641,389,'_variation_description',''), -(5642,389,'total_sales','0'), -(5643,389,'_tax_status','taxable'), -(5644,389,'_tax_class','parent'), -(5645,389,'_manage_stock','no'), -(5646,389,'_backorders','no'), -(5647,389,'_sold_individually','no'), -(5648,389,'_virtual','no'), -(5649,389,'_downloadable','no'), -(5650,389,'_download_limit','-1'), -(5651,389,'_download_expiry','-1'), -(5652,389,'_stock',NULL), -(5653,389,'_stock_status','instock'), -(5654,389,'_wc_average_rating','0'), -(5655,389,'_wc_review_count','0'), -(5656,389,'attribute_pa_stone','green-jaspe'), -(5657,389,'_product_version','9.8.4'), -(5675,391,'_variation_description',''), -(5676,391,'total_sales','0'), -(5677,391,'_tax_status','taxable'), -(5678,391,'_tax_class','parent'), -(5679,391,'_manage_stock','no'), -(5680,391,'_backorders','no'), -(5681,391,'_sold_individually','no'), -(5682,391,'_virtual','no'), -(5683,391,'_downloadable','no'), -(5684,391,'_download_limit','-1'), -(5685,391,'_download_expiry','-1'), -(5686,391,'_stock',NULL), -(5687,391,'_stock_status','instock'), -(5688,391,'_wc_average_rating','0'), -(5689,391,'_wc_review_count','0'), -(5690,391,'attribute_pa_stone','lapis-lazuli'), -(5691,391,'_product_version','9.8.4'), -(5692,392,'_variation_description',''), -(5693,392,'total_sales','0'), -(5694,392,'_tax_status','taxable'), -(5695,392,'_tax_class','parent'), -(5696,392,'_manage_stock','no'), -(5697,392,'_backorders','no'), -(5698,392,'_sold_individually','no'), -(5699,392,'_virtual','no'), -(5700,392,'_downloadable','no'), -(5701,392,'_download_limit','-1'), -(5702,392,'_download_expiry','-1'), -(5703,392,'_stock',NULL), -(5704,392,'_stock_status','instock'), -(5705,392,'_wc_average_rating','0'), -(5706,392,'_wc_review_count','0'), -(5707,392,'attribute_pa_stone','tiger-eye'), -(5708,392,'_product_version','9.8.4'), -(5709,389,'_sku','ROKKU-C-jaspe'), -(5710,389,'_regular_price','120'), -(5711,389,'_thumbnail_id','0'), -(5712,389,'_price','120'), -(5717,391,'_sku','ROKKU-C-lapis'), -(5718,391,'_regular_price','120'), -(5719,391,'_thumbnail_id','0'), -(5720,391,'_price','120'), -(5721,392,'_sku','ROKKU-C-tiger'), -(5722,392,'_regular_price','120'), -(5723,392,'_thumbnail_id','0'), -(5724,392,'_price','120'), -(5726,385,'_edit_last','1'), -(5736,393,'_sku','MUGURA-CR-s'), -(5737,393,'total_sales','0'), -(5738,393,'_tax_status','taxable'), -(5739,393,'_tax_class',''), -(5740,393,'_manage_stock','no'), -(5741,393,'_backorders','no'), -(5742,393,'_sold_individually','no'), -(5743,393,'_virtual','no'), -(5744,393,'_downloadable','no'), -(5745,393,'_download_limit','-1'), -(5746,393,'_download_expiry','-1'), -(5748,393,'_stock',NULL), -(5749,393,'_stock_status','instock'), -(5750,393,'_wc_average_rating','0'), -(5751,393,'_wc_review_count','0'), -(5752,393,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5753,393,'_product_version','10.1.0'), -(5801,393,'_edit_lock','1756624772:1'), -(5802,396,'_wp_attached_file','2024/10/MUGURA-CR2-arg.jpg'), -(5803,396,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-arg.jpg\";s:8:\"filesize\";i:33386;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"MUGURA-CR2-arg.jpg\";}'), -(5804,396,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5805,397,'_wp_attached_file','2024/10/DSC9733.jpg'), -(5806,397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9733.jpg\";s:8:\"filesize\";i:373189;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9733-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14866;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(5807,397,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5808,393,'_edit_last','1'), -(5816,398,'_sku','MUGURA-CR-g'), -(5818,398,'total_sales','0'), -(5819,398,'_tax_status','taxable'), -(5820,398,'_tax_class',''), -(5821,398,'_manage_stock','no'), -(5822,398,'_backorders','no'), -(5823,398,'_sold_individually','no'), -(5824,398,'_virtual','no'), -(5825,398,'_downloadable','no'), -(5826,398,'_download_limit','-1'), -(5827,398,'_download_expiry','-1'), -(5829,398,'_stock',NULL), -(5830,398,'_stock_status','instock'), -(5831,398,'_wc_average_rating','0'), -(5832,398,'_wc_review_count','0'), -(5833,398,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5834,398,'_product_version','10.1.0'), -(5839,398,'_edit_lock','1756624629:1'), -(5843,400,'_wp_attached_file','2024/10/DSC9723.jpg'), -(5844,400,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9723.jpg\";s:8:\"filesize\";i:387538;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9723-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9723.jpg\";}'), -(5845,400,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5846,401,'_wp_attached_file','2024/10/DSC9730.jpg'), -(5847,401,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9730.jpg\";s:8:\"filesize\";i:388089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9730-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9730.jpg\";}'), -(5848,401,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5849,398,'_edit_last','1'), -(5946,411,'_wp_attached_file','2024/09/DSC8400-copie.jpg'), -(5947,411,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2024/09/DSC8400-copie.jpg\";s:8:\"filesize\";i:497813;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"DSC8400-copie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"DSC8400-copie.jpg\";}'), -(5948,411,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), -(6121,424,'_wp_attached_file','2024/10/DSC9376.jpg'), -(6122,424,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9376.jpg\";s:8:\"filesize\";i:313356;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9376-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13739;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9376.jpg\";}'), -(6123,424,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(6201,393,'_price','70'), -(6202,393,'_price','70'), -(6322,435,'_sku','KARA-EC-s'), -(6323,435,'_regular_price','40'), -(6324,435,'total_sales','3'), -(6325,435,'_tax_status','taxable'), -(6326,435,'_tax_class',''), -(6327,435,'_manage_stock','no'), -(6328,435,'_backorders','no'), -(6329,435,'_sold_individually','no'), -(6330,435,'_virtual','no'), -(6331,435,'_downloadable','no'), -(6332,435,'_download_limit','-1'), -(6333,435,'_download_expiry','-1'), -(6334,435,'_thumbnail_id','940'), -(6335,435,'_stock',NULL), -(6336,435,'_stock_status','instock'), -(6337,435,'_wc_average_rating','0'), -(6338,435,'_wc_review_count','0'), -(6339,435,'_product_version','9.9.3'), -(6340,435,'_price','40'), -(6344,435,'_edit_lock','1750342713:1'), -(6345,436,'_wp_attached_file','2024/10/KARA-EC-arg.jpg'), -(6346,436,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/KARA-EC-arg.jpg\";s:8:\"filesize\";i:27162;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"KARA-EC-arg.jpg\";}'), -(6347,436,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), -(6348,437,'_wp_attached_file','2024/10/DSC9781-1.jpg'), -(6349,437,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/DSC9781-1.jpg\";s:8:\"filesize\";i:374922;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9781-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"DSC9781-1.jpg\";}'), -(6350,437,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), -(6351,435,'_edit_last','1'), -(6364,398,'_price','75'), -(6365,398,'_regular_price','75'), -(6370,393,'_regular_price','70'), -(6501,447,'_sku','KARA-EC-s-1'), -(6502,447,'_regular_price','45'), -(6503,447,'total_sales','3'), -(6504,447,'_tax_status','taxable'), -(6505,447,'_tax_class',''), -(6506,447,'_manage_stock','no'), -(6507,447,'_backorders','no'), -(6508,447,'_sold_individually','no'), -(6509,447,'_virtual','no'), -(6510,447,'_downloadable','no'), -(6511,447,'_download_limit','-1'), -(6512,447,'_download_expiry','-1'), -(6514,447,'_stock',NULL), -(6515,447,'_stock_status','instock'), -(6516,447,'_wc_average_rating','0'), -(6517,447,'_wc_review_count','0'), -(6518,447,'_product_version','9.9.3'), -(6519,447,'_price','45'), -(6523,447,'_edit_lock','1750342713:1'), -(6530,447,'_edit_last','1'), -(6868,487,'_wp_attached_file','2024/10/DSC9138.jpg'), -(6869,487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9138.jpg\";s:8:\"filesize\";i:283469;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9138-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16095;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(6870,487,'_wp_attachment_image_alt','Rokku statement necklace in silver with semi tiger\'s eye stone pendant and gold plated clasp.'), -(6887,490,'_sku','HADOU-BOP'), -(6889,490,'total_sales','1'), -(6890,490,'_tax_status','taxable'), -(6891,490,'_tax_class',''), -(6892,490,'_manage_stock','no'), -(6893,490,'_backorders','no'), -(6894,490,'_sold_individually','no'), -(6895,490,'_virtual','no'), -(6896,490,'_downloadable','no'), -(6897,490,'_download_limit','-1'), -(6898,490,'_download_expiry','-1'), -(6900,490,'_stock',NULL), -(6901,490,'_stock_status','instock'), -(6902,490,'_wc_average_rating','0'), -(6903,490,'_wc_review_count','0'), -(6904,490,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(6905,490,'_product_version','9.9.3'), -(6912,490,'_edit_lock','1750342713:1'), -(6919,493,'_variation_description',''), -(6920,493,'total_sales','0'), -(6921,493,'_tax_status','taxable'), -(6922,493,'_tax_class','parent'), -(6923,493,'_manage_stock','no'), -(6924,493,'_backorders','no'), -(6925,493,'_sold_individually','no'), -(6926,493,'_virtual','no'), -(6927,493,'_downloadable','no'), -(6928,493,'_download_limit','-1'), -(6929,493,'_download_expiry','-1'), -(6930,493,'_stock',NULL), -(6931,493,'_stock_status','instock'), -(6932,493,'_wc_average_rating','0'), -(6933,493,'_wc_review_count','0'), -(6934,493,'attribute_pa_side','left-side'), -(6935,493,'_product_version','9.8.4'), -(6936,494,'_variation_description',''), -(6937,494,'total_sales','0'), -(6938,494,'_tax_status','taxable'), -(6939,494,'_tax_class','parent'), -(6940,494,'_manage_stock','no'), -(6941,494,'_backorders','no'), -(6942,494,'_sold_individually','no'), -(6943,494,'_virtual','no'), -(6944,494,'_downloadable','no'), -(6945,494,'_download_limit','-1'), -(6946,494,'_download_expiry','-1'), -(6947,494,'_stock',NULL), -(6948,494,'_stock_status','instock'), -(6949,494,'_wc_average_rating','0'), -(6950,494,'_wc_review_count','0'), -(6951,494,'attribute_pa_side','pair'), -(6952,494,'_product_version','9.8.4'), -(6953,495,'_variation_description',''), -(6954,495,'total_sales','0'), -(6955,495,'_tax_status','taxable'), -(6956,495,'_tax_class','parent'), -(6957,495,'_manage_stock','no'), -(6958,495,'_backorders','no'), -(6959,495,'_sold_individually','no'), -(6960,495,'_virtual','no'), -(6961,495,'_downloadable','no'), -(6962,495,'_download_limit','-1'), -(6963,495,'_download_expiry','-1'), -(6964,495,'_stock',NULL), -(6965,495,'_stock_status','instock'), -(6966,495,'_wc_average_rating','0'), -(6967,495,'_wc_review_count','0'), -(6968,495,'attribute_pa_side','right-side'), -(6969,495,'_product_version','9.8.4'), -(6970,493,'_sku','HADOU-BOP-left'), -(6971,493,'_regular_price','35'), -(6972,493,'_thumbnail_id','0'), -(6973,493,'_price','35'), -(6974,494,'_sku','HADOU-BOP-pair'), -(6975,494,'_regular_price','50'), -(6976,494,'_thumbnail_id','0'), -(6977,494,'_price','50'), -(6978,495,'_sku','HADOU-BOP-right'), -(6979,495,'_regular_price','35'), -(6980,495,'_thumbnail_id','0'), -(6981,495,'_price','35'), -(6984,490,'_edit_last','1'), -(6989,496,'_sku','MUGURA-CR1'), -(6990,496,'total_sales','0'), -(6991,496,'_tax_status','taxable'), -(6992,496,'_tax_class',''), -(6993,496,'_manage_stock','no'), -(6994,496,'_backorders','no'), -(6995,496,'_sold_individually','no'), -(6996,496,'_virtual','no'), -(6997,496,'_downloadable','no'), -(6998,496,'_download_limit','-1'), -(6999,496,'_download_expiry','-1'), -(7001,496,'_stock',NULL), -(7002,496,'_stock_status','instock'), -(7003,496,'_wc_average_rating','0'), -(7004,496,'_wc_review_count','0'), -(7006,496,'_product_version','10.1.0'), -(7069,496,'_edit_lock','1761728899:1'), -(7079,496,'_edit_last','1'), -(7080,496,'_regular_price','45'), -(7081,496,'_price','45'), -(7109,506,'_wp_attached_file','woocommerce-placeholder.png'), -(7110,506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:48149;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(7111,510,'_edit_last','1'), -(7112,510,'_edit_lock','1731429269:1'), -(7113,511,'_edit_last','1'), -(7114,511,'_edit_lock','1731429286:1'), -(7120,515,'_sku','BOROBORO-BO1-g'), -(7122,515,'total_sales','0'), -(7123,515,'_tax_status','taxable'), -(7124,515,'_tax_class',''), -(7125,515,'_manage_stock','no'), -(7126,515,'_backorders','no'), -(7127,515,'_sold_individually','no'), -(7128,515,'_virtual','no'), -(7129,515,'_downloadable','no'), -(7130,515,'_download_limit','-1'), -(7131,515,'_download_expiry','-1'), -(7133,515,'_stock',NULL), -(7134,515,'_stock_status','instock'), -(7135,515,'_wc_average_rating','0'), -(7136,515,'_wc_review_count','0'), -(7137,515,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7138,515,'_product_version','9.9.4'), -(7145,515,'_edit_lock','1750342713:1'), -(7197,515,'_price','65'), -(7198,515,'_edit_last','1'), -(7199,515,'_regular_price','65'), -(7204,521,'_sku','BOROBORO-BO1-s'), -(7205,521,'total_sales','2'), -(7206,521,'_tax_status','taxable'), -(7207,521,'_tax_class',''), -(7208,521,'_manage_stock','no'), -(7209,521,'_backorders','no'), -(7210,521,'_sold_individually','no'), -(7211,521,'_virtual','no'), -(7212,521,'_downloadable','no'), -(7213,521,'_download_limit','-1'), -(7214,521,'_download_expiry','-1'), -(7216,521,'_stock',NULL), -(7217,521,'_stock_status','instock'), -(7218,521,'_wc_average_rating','0'), -(7219,521,'_wc_review_count','0'), -(7220,521,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7221,521,'_product_version','9.9.4'), -(7247,523,'_variation_description',''), -(7248,523,'_sku','BOROBORO-BO1-s-brown'), -(7249,523,'_regular_price','60'), -(7250,523,'total_sales','0'), -(7251,523,'_tax_status','taxable'), -(7252,523,'_tax_class','parent'), -(7253,523,'_manage_stock','no'), -(7254,523,'_backorders','no'), -(7255,523,'_sold_individually','no'), -(7256,523,'_virtual','no'), -(7257,523,'_downloadable','no'), -(7258,523,'_download_limit','-1'), -(7259,523,'_download_expiry','-1'), -(7260,523,'_thumbnail_id','0'), -(7261,523,'_stock',NULL), -(7262,523,'_stock_status','instock'), -(7263,523,'_wc_average_rating','0'), -(7264,523,'_wc_review_count','0'), -(7265,523,'attribute_pa_stone','tiger-eye'), -(7266,523,'_price','60'), -(7267,523,'_product_version','9.3.3'), -(7269,521,'_edit_lock','1750342713:1'), -(7280,521,'_edit_last','1'), -(7320,528,'_variation_description',''), -(7321,528,'total_sales','0'), -(7322,528,'_tax_status','taxable'), -(7323,528,'_tax_class','parent'), -(7324,528,'_manage_stock','no'), -(7325,528,'_backorders','no'), -(7326,528,'_sold_individually','no'), -(7327,528,'_virtual','no'), -(7328,528,'_downloadable','no'), -(7329,528,'_download_limit','-1'), -(7330,528,'_download_expiry','-1'), -(7331,528,'_stock',NULL), -(7332,528,'_stock_status','instock'), -(7333,528,'_wc_average_rating','0'), -(7334,528,'_wc_review_count','0'), -(7335,528,'attribute_pa_size','64'), -(7336,528,'_product_version','9.3.3'), -(7338,528,'_thumbnail_id','0'), -(7339,102,'_price','85'), -(7344,529,'_variation_description',''), -(7345,529,'total_sales','0'), -(7346,529,'_tax_status','taxable'), -(7347,529,'_tax_class','parent'), -(7348,529,'_manage_stock','no'), -(7349,529,'_backorders','no'), -(7350,529,'_sold_individually','no'), -(7351,529,'_virtual','no'), -(7352,529,'_downloadable','no'), -(7353,529,'_download_limit','-1'), -(7354,529,'_download_expiry','-1'), -(7355,529,'_stock',NULL), -(7356,529,'_stock_status','instock'), -(7357,529,'_wc_average_rating','0'), -(7358,529,'_wc_review_count','0'), -(7359,529,'attribute_pa_size','64'), -(7360,529,'_product_version','9.3.3'), -(7362,529,'_thumbnail_id','0'), -(7363,113,'_price','90'), -(7395,532,'_variation_description',''), -(7396,532,'total_sales','0'), -(7397,532,'_tax_status','taxable'), -(7398,532,'_tax_class','parent'), -(7399,532,'_manage_stock','no'), -(7400,532,'_backorders','no'), -(7401,532,'_sold_individually','no'), -(7402,532,'_virtual','no'), -(7403,532,'_downloadable','no'), -(7404,532,'_download_limit','-1'), -(7405,532,'_download_expiry','-1'), -(7406,532,'_stock',NULL), -(7407,532,'_stock_status','outofstock'), -(7408,532,'_wc_average_rating','0'), -(7409,532,'_wc_review_count','0'), -(7410,532,'attribute_pa_size','64'), -(7411,532,'_product_version','10.1.0'), -(7413,532,'_thumbnail_id','0'), -(7568,545,'_sku','KARA-CR1-g'), -(7570,545,'total_sales','2'), -(7571,545,'_tax_status','taxable'), -(7572,545,'_tax_class',''), -(7573,545,'_manage_stock','no'), -(7574,545,'_backorders','no'), -(7575,545,'_sold_individually','no'), -(7576,545,'_virtual','no'), -(7577,545,'_downloadable','no'), -(7578,545,'_download_limit','-1'), -(7579,545,'_download_expiry','-1'), -(7581,545,'_stock',NULL), -(7582,545,'_stock_status','instock'), -(7583,545,'_wc_average_rating','0'), -(7584,545,'_wc_review_count','0'), -(7585,545,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7586,545,'_product_version','9.9.3'), -(7592,545,'_edit_lock','1750342713:1'), -(7602,545,'_edit_last','1'), -(7681,552,'_variation_description',''), -(7682,552,'total_sales','0'), -(7683,552,'_tax_status','taxable'), -(7684,552,'_tax_class','parent'), -(7685,552,'_manage_stock','no'), -(7686,552,'_backorders','no'), -(7687,552,'_sold_individually','no'), -(7688,552,'_virtual','no'), -(7689,552,'_downloadable','no'), -(7690,552,'_download_limit','-1'), -(7691,552,'_download_expiry','-1'), -(7692,552,'_stock',NULL), -(7693,552,'_stock_status','instock'), -(7694,552,'_wc_average_rating','0'), -(7695,552,'_wc_review_count','0'), -(7696,552,'attribute_pa_side','one'), -(7697,552,'_product_version','9.8.4'), -(7698,553,'_variation_description',''), -(7699,553,'total_sales','0'), -(7700,553,'_tax_status','taxable'), -(7701,553,'_tax_class','parent'), -(7702,553,'_manage_stock','no'), -(7703,553,'_backorders','no'), -(7704,553,'_sold_individually','no'), -(7705,553,'_virtual','no'), -(7706,553,'_downloadable','no'), -(7707,553,'_download_limit','-1'), -(7708,553,'_download_expiry','-1'), -(7709,553,'_stock',NULL), -(7710,553,'_stock_status','instock'), -(7711,553,'_wc_average_rating','0'), -(7712,553,'_wc_review_count','0'), -(7713,553,'attribute_pa_side','pair'), -(7714,553,'_product_version','9.8.4'), -(7715,552,'_sku','KARA-CR-g-one'), -(7716,552,'_regular_price','45'), -(7717,552,'_thumbnail_id','0'), -(7718,552,'_price','45'), -(7719,553,'_sku','KARA-CR-g-pair'), -(7720,553,'_regular_price','70'), -(7721,553,'_thumbnail_id','0'), -(7722,553,'_price','70'), -(7729,554,'_sku','KARA-CR1-s'), -(7730,554,'total_sales','2'), -(7731,554,'_tax_status','taxable'), -(7732,554,'_tax_class',''), -(7733,554,'_manage_stock','no'), -(7734,554,'_backorders','no'), -(7735,554,'_sold_individually','no'), -(7736,554,'_virtual','no'), -(7737,554,'_downloadable','no'), -(7738,554,'_download_limit','-1'), -(7739,554,'_download_expiry','-1'), -(7741,554,'_stock',NULL), -(7742,554,'_stock_status','instock'), -(7743,554,'_wc_average_rating','0'), -(7744,554,'_wc_review_count','0'), -(7745,554,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7746,554,'_product_version','9.9.3'), -(7750,555,'_variation_description',''), -(7751,555,'_sku','KARA-CR-s-pair'), -(7752,555,'_regular_price','65'), -(7753,555,'total_sales','0'), -(7754,555,'_tax_status','taxable'), -(7755,555,'_tax_class','parent'), -(7756,555,'_manage_stock','no'), -(7757,555,'_backorders','no'), -(7758,555,'_sold_individually','no'), -(7759,555,'_virtual','no'), -(7760,555,'_downloadable','no'), -(7761,555,'_download_limit','-1'), -(7762,555,'_download_expiry','-1'), -(7763,555,'_thumbnail_id','0'), -(7764,555,'_stock',NULL), -(7765,555,'_stock_status','instock'), -(7766,555,'_wc_average_rating','0'), -(7767,555,'_wc_review_count','0'), -(7768,555,'attribute_pa_side','pair'), -(7769,555,'_price','65'), -(7770,555,'_product_version','9.8.4'), -(7771,556,'_variation_description',''), -(7772,556,'_sku','KARA-CR-s-one'), -(7773,556,'_regular_price','40'), -(7774,556,'total_sales','0'), -(7775,556,'_tax_status','taxable'), -(7776,556,'_tax_class','parent'), -(7777,556,'_manage_stock','no'), -(7778,556,'_backorders','no'), -(7779,556,'_sold_individually','no'), -(7780,556,'_virtual','no'), -(7781,556,'_downloadable','no'), -(7782,556,'_download_limit','-1'), -(7783,556,'_download_expiry','-1'), -(7784,556,'_thumbnail_id','0'), -(7785,556,'_stock',NULL), -(7786,556,'_stock_status','instock'), -(7787,556,'_wc_average_rating','0'), -(7788,556,'_wc_review_count','0'), -(7789,556,'attribute_pa_side','one'), -(7790,556,'_price','40'), -(7791,556,'_product_version','9.8.4'), -(7794,554,'_edit_lock','1750342713:1'), -(7803,554,'_edit_last','1'), -(7810,560,'_variation_description',''), -(7811,560,'total_sales','0'), -(7812,560,'_tax_status','taxable'), -(7813,560,'_tax_class','parent'), -(7814,560,'_manage_stock','no'), -(7815,560,'_backorders','no'), -(7816,560,'_sold_individually','no'), -(7817,560,'_virtual','no'), -(7818,560,'_downloadable','no'), -(7819,560,'_download_limit','-1'), -(7820,560,'_download_expiry','-1'), -(7821,560,'_stock',NULL), -(7822,560,'_stock_status','instock'), -(7823,560,'_wc_average_rating','0'), -(7824,560,'_wc_review_count','0'), -(7825,560,'attribute_pa_side','all'), -(7826,560,'_product_version','9.9.3'), -(7827,561,'_variation_description',''), -(7828,561,'total_sales','0'), -(7829,561,'_tax_status','taxable'), -(7830,561,'_tax_class','parent'), -(7831,561,'_manage_stock','no'), -(7832,561,'_backorders','no'), -(7833,561,'_sold_individually','no'), -(7834,561,'_virtual','no'), -(7835,561,'_downloadable','no'), -(7836,561,'_download_limit','-1'), -(7837,561,'_download_expiry','-1'), -(7838,561,'_stock',NULL), -(7839,561,'_stock_status','instock'), -(7840,561,'_wc_average_rating','0'), -(7841,561,'_wc_review_count','0'), -(7842,561,'attribute_pa_side','long'), -(7843,561,'_product_version','9.9.3'), -(7844,562,'_variation_description',''), -(7845,562,'total_sales','0'), -(7846,562,'_tax_status','taxable'), -(7847,562,'_tax_class','parent'), -(7848,562,'_manage_stock','no'), -(7849,562,'_backorders','no'), -(7850,562,'_sold_individually','no'), -(7851,562,'_virtual','no'), -(7852,562,'_downloadable','no'), -(7853,562,'_download_limit','-1'), -(7854,562,'_download_expiry','-1'), -(7855,562,'_stock',NULL), -(7856,562,'_stock_status','instock'), -(7857,562,'_wc_average_rating','0'), -(7858,562,'_wc_review_count','0'), -(7859,562,'attribute_pa_side','medium'), -(7860,562,'_product_version','9.9.3'), -(7861,563,'_variation_description',''), -(7862,563,'total_sales','0'), -(7863,563,'_tax_status','taxable'), -(7864,563,'_tax_class','parent'), -(7865,563,'_manage_stock','no'), -(7866,563,'_backorders','no'), -(7867,563,'_sold_individually','no'), -(7868,563,'_virtual','no'), -(7869,563,'_downloadable','no'), -(7870,563,'_download_limit','-1'), -(7871,563,'_download_expiry','-1'), -(7872,563,'_stock',NULL), -(7873,563,'_stock_status','instock'), -(7874,563,'_wc_average_rating','0'), -(7875,563,'_wc_review_count','0'), -(7876,563,'attribute_pa_side','short'), -(7877,563,'_product_version','9.9.3'), -(7878,560,'_sku','MUGURA-BOP-all'), -(7879,560,'_regular_price','55'), -(7880,560,'_thumbnail_id','0'), -(7881,560,'_price','55'), -(7882,561,'_sku','MUGURA-BOP-long'), -(7883,561,'_regular_price','38'), -(7884,561,'_thumbnail_id','0'), -(7885,561,'_price','38'), -(7886,562,'_sku','MUGURA-BOP-medium'), -(7887,562,'_regular_price','35'), -(7888,562,'_thumbnail_id','0'), -(7889,562,'_price','35'), -(7890,563,'_sku','MUGURA-BOP-short'), -(7891,563,'_regular_price','30'), -(7892,563,'_thumbnail_id','0'), -(7893,563,'_price','30'), -(7909,565,'_variation_description',''), -(7910,565,'total_sales','0'), -(7911,565,'_tax_status','taxable'), -(7912,565,'_tax_class','parent'), -(7913,565,'_manage_stock','no'), -(7914,565,'_backorders','no'), -(7915,565,'_sold_individually','no'), -(7916,565,'_virtual','no'), -(7917,565,'_downloadable','no'), -(7918,565,'_download_limit','-1'), -(7919,565,'_download_expiry','-1'), -(7920,565,'_stock',NULL), -(7921,565,'_stock_status','instock'), -(7922,565,'_wc_average_rating','0'), -(7923,565,'_wc_review_count','0'), -(7924,565,'attribute_pa_side','one-element-side'), -(7925,565,'_product_version','10.1.2'), -(7926,566,'_variation_description',''), -(7927,566,'total_sales','0'), -(7928,566,'_tax_status','taxable'), -(7929,566,'_tax_class','parent'), -(7930,566,'_manage_stock','no'), -(7931,566,'_backorders','no'), -(7932,566,'_sold_individually','no'), -(7933,566,'_virtual','no'), -(7934,566,'_downloadable','no'), -(7935,566,'_download_limit','-1'), -(7936,566,'_download_expiry','-1'), -(7937,566,'_stock',NULL), -(7938,566,'_stock_status','instock'), -(7939,566,'_wc_average_rating','0'), -(7940,566,'_wc_review_count','0'), -(7941,566,'attribute_pa_side','pair'), -(7942,566,'_product_version','9.9.3'), -(7943,567,'_variation_description',''), -(7944,567,'total_sales','0'), -(7945,567,'_tax_status','taxable'), -(7946,567,'_tax_class','parent'), -(7947,567,'_manage_stock','no'), -(7948,567,'_backorders','no'), -(7949,567,'_sold_individually','no'), -(7950,567,'_virtual','no'), -(7951,567,'_downloadable','no'), -(7952,567,'_download_limit','-1'), -(7953,567,'_download_expiry','-1'), -(7954,567,'_stock',NULL), -(7955,567,'_stock_status','instock'), -(7956,567,'_wc_average_rating','0'), -(7957,567,'_wc_review_count','0'), -(7958,567,'attribute_pa_side','two-elements-side'), -(7959,567,'_product_version','10.1.2'), -(7960,565,'_regular_price','45'), -(7961,565,'_thumbnail_id','1454'), -(7962,565,'_price','45'), -(7963,566,'_regular_price','70'), -(7964,566,'_thumbnail_id','0'), -(7965,566,'_price','70'), -(7966,567,'_regular_price','45'), -(7967,567,'_thumbnail_id','1455'), -(7968,567,'_price','45'), -(7980,569,'_variation_description',''), -(7981,569,'total_sales','0'), -(7982,569,'_tax_status','taxable'), -(7983,569,'_tax_class','parent'), -(7984,569,'_manage_stock','no'), -(7985,569,'_backorders','no'), -(7986,569,'_sold_individually','no'), -(7987,569,'_virtual','no'), -(7988,569,'_downloadable','no'), -(7989,569,'_download_limit','-1'), -(7990,569,'_download_expiry','-1'), -(7991,569,'_stock',NULL), -(7992,569,'_stock_status','instock'), -(7993,569,'_wc_average_rating','0'), -(7994,569,'_wc_review_count','0'), -(7995,569,'attribute_pa_side','one-element-side'), -(7996,569,'_product_version','10.1.2'), -(7997,570,'_variation_description',''), -(7998,570,'total_sales','0'), -(7999,570,'_tax_status','taxable'), -(8000,570,'_tax_class','parent'), -(8001,570,'_manage_stock','no'), -(8002,570,'_backorders','no'), -(8003,570,'_sold_individually','no'), -(8004,570,'_virtual','no'), -(8005,570,'_downloadable','no'), -(8006,570,'_download_limit','-1'), -(8007,570,'_download_expiry','-1'), -(8008,570,'_stock',NULL), -(8009,570,'_stock_status','instock'), -(8010,570,'_wc_average_rating','0'), -(8011,570,'_wc_review_count','0'), -(8012,570,'attribute_pa_side','pair'), -(8013,570,'_product_version','9.9.3'), -(8014,571,'_variation_description',''), -(8015,571,'total_sales','0'), -(8016,571,'_tax_status','taxable'), -(8017,571,'_tax_class','parent'), -(8018,571,'_manage_stock','no'), -(8019,571,'_backorders','no'), -(8020,571,'_sold_individually','no'), -(8021,571,'_virtual','no'), -(8022,571,'_downloadable','no'), -(8023,571,'_download_limit','-1'), -(8024,571,'_download_expiry','-1'), -(8025,571,'_stock',NULL), -(8026,571,'_stock_status','instock'), -(8027,571,'_wc_average_rating','0'), -(8028,571,'_wc_review_count','0'), -(8029,571,'attribute_pa_side','two-elements-side'), -(8030,571,'_product_version','10.1.2'), -(8031,569,'_sku','BOROBORO-BO2-g-one'), -(8032,569,'_regular_price','50'), -(8033,569,'_thumbnail_id','1456'), -(8034,569,'_price','50'), -(8035,570,'_sku','BOROBORO-BO2-g-pair'), -(8036,570,'_regular_price','75'), -(8037,570,'_thumbnail_id','0'), -(8038,570,'_price','75'), -(8039,571,'_sku','BOROBORO-BO2-g-two'), -(8040,571,'_regular_price','50'), -(8041,571,'_thumbnail_id','1457'), -(8042,571,'_price','50'), -(8052,566,'_sku','BOROBORO-BO2-s-pair'), -(8053,565,'_sku','BOROBORO-BO2-s-one'), -(8054,567,'_sku','BOROBORO-BO2-s-two'), -(8652,610,'_sku','HATTARI-BR'), -(8653,610,'_regular_price','120'), -(8654,610,'total_sales','0'), -(8655,610,'_tax_status','taxable'), -(8656,610,'_tax_class',''), -(8657,610,'_manage_stock','no'), -(8658,610,'_backorders','no'), -(8659,610,'_sold_individually','no'), -(8660,610,'_virtual','no'), -(8661,610,'_downloadable','no'), -(8662,610,'_download_limit','-1'), -(8663,610,'_download_expiry','-1'), -(8665,610,'_stock',NULL), -(8666,610,'_stock_status','outofstock'), -(8667,610,'_wc_average_rating','0'), -(8668,610,'_wc_review_count','0'), -(8669,610,'_product_version','10.1.2'), -(8670,610,'_price','120'), -(8674,610,'_edit_lock','1761727715:1'), -(8682,610,'_edit_last','1'), -(8686,613,'_sku','BOROBORO-B2-g'), -(8687,613,'total_sales','0'), -(8688,613,'_tax_status','taxable'), -(8689,613,'_tax_class',''), -(8690,613,'_manage_stock','no'), -(8691,613,'_backorders','no'), -(8692,613,'_sold_individually','no'), -(8693,613,'_virtual','no'), -(8694,613,'_downloadable','no'), -(8695,613,'_download_limit','-1'), -(8696,613,'_download_expiry','-1'), -(8698,613,'_stock',NULL), -(8699,613,'_stock_status','instock'), -(8700,613,'_wc_average_rating','0'), -(8701,613,'_wc_review_count','0'), -(8702,613,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(8703,613,'_product_version','10.1.2'), -(8710,614,'_variation_description',''), -(8711,614,'_regular_price','70'), -(8712,614,'total_sales','0'), -(8713,614,'_tax_status','taxable'), -(8714,614,'_tax_class','parent'), -(8715,614,'_manage_stock','no'), -(8716,614,'_backorders','no'), -(8717,614,'_sold_individually','no'), -(8718,614,'_virtual','no'), -(8719,614,'_downloadable','no'), -(8720,614,'_download_limit','-1'), -(8721,614,'_download_expiry','-1'), -(8722,614,'_thumbnail_id','0'), -(8723,614,'_stock',NULL), -(8724,614,'_stock_status','instock'), -(8725,614,'_wc_average_rating','0'), -(8726,614,'_wc_review_count','0'), -(8727,614,'attribute_pa_size','50'), -(8728,614,'_price','70'), -(8729,614,'_product_version','9.3.3'), -(8730,615,'_variation_description',''), -(8731,615,'_regular_price','70'), -(8732,615,'total_sales','0'), -(8733,615,'_tax_status','taxable'), -(8734,615,'_tax_class','parent'), -(8735,615,'_manage_stock','no'), -(8736,615,'_backorders','no'), -(8737,615,'_sold_individually','no'), -(8738,615,'_virtual','no'), -(8739,615,'_downloadable','no'), -(8740,615,'_download_limit','-1'), -(8741,615,'_download_expiry','-1'), -(8742,615,'_thumbnail_id','0'), -(8743,615,'_stock',NULL), -(8744,615,'_stock_status','instock'), -(8745,615,'_wc_average_rating','0'), -(8746,615,'_wc_review_count','0'), -(8747,615,'attribute_pa_size','52'), -(8748,615,'_price','70'), -(8749,615,'_product_version','9.3.3'), -(8750,616,'_variation_description',''), -(8751,616,'_regular_price','70'), -(8752,616,'total_sales','0'), -(8753,616,'_tax_status','taxable'), -(8754,616,'_tax_class','parent'), -(8755,616,'_manage_stock','no'), -(8756,616,'_backorders','no'), -(8757,616,'_sold_individually','no'), -(8758,616,'_virtual','no'), -(8759,616,'_downloadable','no'), -(8760,616,'_download_limit','-1'), -(8761,616,'_download_expiry','-1'), -(8762,616,'_thumbnail_id','0'), -(8763,616,'_stock',NULL), -(8764,616,'_stock_status','instock'), -(8765,616,'_wc_average_rating','0'), -(8766,616,'_wc_review_count','0'), -(8767,616,'attribute_pa_size','54'), -(8768,616,'_price','70'), -(8769,616,'_product_version','9.3.3'), -(8770,617,'_variation_description',''), -(8771,617,'_regular_price','70'), -(8772,617,'total_sales','0'), -(8773,617,'_tax_status','taxable'), -(8774,617,'_tax_class','parent'), -(8775,617,'_manage_stock','no'), -(8776,617,'_backorders','no'), -(8777,617,'_sold_individually','no'), -(8778,617,'_virtual','no'), -(8779,617,'_downloadable','no'), -(8780,617,'_download_limit','-1'), -(8781,617,'_download_expiry','-1'), -(8782,617,'_thumbnail_id','0'), -(8783,617,'_stock',NULL), -(8784,617,'_stock_status','instock'), -(8785,617,'_wc_average_rating','0'), -(8786,617,'_wc_review_count','0'), -(8787,617,'attribute_pa_size','56'), -(8788,617,'_price','70'), -(8789,617,'_product_version','9.3.3'), -(8790,618,'_variation_description',''), -(8791,618,'_regular_price','70'), -(8792,618,'total_sales','0'), -(8793,618,'_tax_status','taxable'), -(8794,618,'_tax_class','parent'), -(8795,618,'_manage_stock','no'), -(8796,618,'_backorders','no'), -(8797,618,'_sold_individually','no'), -(8798,618,'_virtual','no'), -(8799,618,'_downloadable','no'), -(8800,618,'_download_limit','-1'), -(8801,618,'_download_expiry','-1'), -(8802,618,'_thumbnail_id','0'), -(8803,618,'_stock',NULL), -(8804,618,'_stock_status','instock'), -(8805,618,'_wc_average_rating','0'), -(8806,618,'_wc_review_count','0'), -(8807,618,'attribute_pa_size','58'), -(8808,618,'_price','70'), -(8809,618,'_product_version','9.3.3'), -(8810,619,'_variation_description',''), -(8811,619,'_regular_price','70'), -(8812,619,'total_sales','0'), -(8813,619,'_tax_status','taxable'), -(8814,619,'_tax_class','parent'), -(8815,619,'_manage_stock','no'), -(8816,619,'_backorders','no'), -(8817,619,'_sold_individually','no'), -(8818,619,'_virtual','no'), -(8819,619,'_downloadable','no'), -(8820,619,'_download_limit','-1'), -(8821,619,'_download_expiry','-1'), -(8822,619,'_thumbnail_id','0'), -(8823,619,'_stock',NULL), -(8824,619,'_stock_status','instock'), -(8825,619,'_wc_average_rating','0'), -(8826,619,'_wc_review_count','0'), -(8827,619,'attribute_pa_size','60'), -(8828,619,'_price','70'), -(8829,619,'_product_version','9.3.3'), -(8830,620,'_variation_description',''), -(8831,620,'_regular_price','70'), -(8832,620,'total_sales','0'), -(8833,620,'_tax_status','taxable'), -(8834,620,'_tax_class','parent'), -(8835,620,'_manage_stock','no'), -(8836,620,'_backorders','no'), -(8837,620,'_sold_individually','no'), -(8838,620,'_virtual','no'), -(8839,620,'_downloadable','no'), -(8840,620,'_download_limit','-1'), -(8841,620,'_download_expiry','-1'), -(8842,620,'_thumbnail_id','0'), -(8843,620,'_stock',NULL), -(8844,620,'_stock_status','instock'), -(8845,620,'_wc_average_rating','0'), -(8846,620,'_wc_review_count','0'), -(8847,620,'attribute_pa_size','62'), -(8848,620,'_price','70'), -(8849,620,'_product_version','9.4.1'), -(8851,613,'_edit_lock','1757322798:1'), -(8861,624,'_variation_description',''), -(8862,624,'total_sales','0'), -(8863,624,'_tax_status','taxable'), -(8864,624,'_tax_class','parent'), -(8865,624,'_manage_stock','no'), -(8866,624,'_backorders','no'), -(8867,624,'_sold_individually','no'), -(8868,624,'_virtual','no'), -(8869,624,'_downloadable','no'), -(8870,624,'_download_limit','-1'), -(8871,624,'_download_expiry','-1'), -(8872,624,'_stock',NULL), -(8873,624,'_stock_status','instock'), -(8874,624,'_wc_average_rating','0'), -(8875,624,'_wc_review_count','0'), -(8876,624,'attribute_pa_size','64'), -(8877,624,'_product_version','9.3.3'), -(8879,624,'_sku','BOROBORO-B2-g-60'), -(8880,624,'_regular_price','70'), -(8881,624,'_thumbnail_id','0'), -(8882,624,'_price','70'), -(8883,614,'_sku','BOROBORO-B2-g-50'), -(8884,615,'_sku','BOROBORO-B2-g-52'), -(8885,616,'_sku','BOROBORO-B2-g-54'), -(8886,617,'_sku','BOROBORO-B2-g-56'), -(8887,618,'_sku','BOROBORO-B2-g-58'), -(8890,613,'_edit_last','1'), -(8895,625,'_sku','BOROBORO-B2-sj'), -(8896,625,'total_sales','0'), -(8897,625,'_tax_status','taxable'), -(8898,625,'_tax_class',''), -(8899,625,'_manage_stock','no'), -(8900,625,'_backorders','no'), -(8901,625,'_sold_individually','no'), -(8902,625,'_virtual','no'), -(8903,625,'_downloadable','no'), -(8904,625,'_download_limit','-1'), -(8905,625,'_download_expiry','-1'), -(8907,625,'_stock',NULL), -(8908,625,'_stock_status','instock'), -(8909,625,'_wc_average_rating','0'), -(8910,625,'_wc_review_count','0'), -(8911,625,'_product_attributes','a:2:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(8912,625,'_product_version','10.1.2'), -(8917,626,'_variation_description',''), -(8918,626,'_sku','BOROBORO-B2-s-50'), -(8919,626,'_regular_price','65'), -(8920,626,'total_sales','0'), -(8921,626,'_tax_status','taxable'), -(8922,626,'_tax_class','parent'), -(8923,626,'_manage_stock','no'), -(8924,626,'_backorders','no'), -(8925,626,'_sold_individually','no'), -(8926,626,'_virtual','no'), -(8927,626,'_downloadable','no'), -(8928,626,'_download_limit','-1'), -(8929,626,'_download_expiry','-1'), -(8930,626,'_thumbnail_id','0'), -(8931,626,'_stock',NULL), -(8932,626,'_stock_status','instock'), -(8933,626,'_wc_average_rating','0'), -(8934,626,'_wc_review_count','0'), -(8935,626,'attribute_pa_size','50'), -(8936,626,'_price','65'), -(8937,626,'_product_version','9.3.3'), -(8938,627,'_variation_description',''), -(8939,627,'_sku','BOROBORO-B2-s-52'), -(8940,627,'_regular_price','65'), -(8941,627,'total_sales','0'), -(8942,627,'_tax_status','taxable'), -(8943,627,'_tax_class','parent'), -(8944,627,'_manage_stock','no'), -(8945,627,'_backorders','no'), -(8946,627,'_sold_individually','no'), -(8947,627,'_virtual','no'), -(8948,627,'_downloadable','no'), -(8949,627,'_download_limit','-1'), -(8950,627,'_download_expiry','-1'), -(8951,627,'_thumbnail_id','0'), -(8952,627,'_stock',NULL), -(8953,627,'_stock_status','instock'), -(8954,627,'_wc_average_rating','0'), -(8955,627,'_wc_review_count','0'), -(8956,627,'attribute_pa_size','52'), -(8957,627,'_price','65'), -(8958,627,'_product_version','9.3.3'), -(8959,628,'_variation_description',''), -(8960,628,'_sku','BOROBORO-B2-s-54'), -(8961,628,'_regular_price','65'), -(8962,628,'total_sales','0'), -(8963,628,'_tax_status','taxable'), -(8964,628,'_tax_class','parent'), -(8965,628,'_manage_stock','no'), -(8966,628,'_backorders','no'), -(8967,628,'_sold_individually','no'), -(8968,628,'_virtual','no'), -(8969,628,'_downloadable','no'), -(8970,628,'_download_limit','-1'), -(8971,628,'_download_expiry','-1'), -(8972,628,'_thumbnail_id','0'), -(8973,628,'_stock',NULL), -(8974,628,'_stock_status','instock'), -(8975,628,'_wc_average_rating','0'), -(8976,628,'_wc_review_count','0'), -(8977,628,'attribute_pa_size','54'), -(8978,628,'_price','65'), -(8979,628,'_product_version','9.3.3'), -(8980,629,'_variation_description',''), -(8981,629,'_sku','BOROBORO-B2-s-56'), -(8982,629,'_regular_price','65'), -(8983,629,'total_sales','0'), -(8984,629,'_tax_status','taxable'), -(8985,629,'_tax_class','parent'), -(8986,629,'_manage_stock','no'), -(8987,629,'_backorders','no'), -(8988,629,'_sold_individually','no'), -(8989,629,'_virtual','no'), -(8990,629,'_downloadable','no'), -(8991,629,'_download_limit','-1'), -(8992,629,'_download_expiry','-1'), -(8993,629,'_thumbnail_id','0'), -(8994,629,'_stock',NULL), -(8995,629,'_stock_status','instock'), -(8996,629,'_wc_average_rating','0'), -(8997,629,'_wc_review_count','0'), -(8998,629,'attribute_pa_size','56'), -(8999,629,'_price','65'), -(9000,629,'_product_version','9.3.3'), -(9001,630,'_variation_description',''), -(9002,630,'_sku','BOROBORO-B2-s-58'), -(9003,630,'_regular_price','65'), -(9004,630,'total_sales','0'), -(9005,630,'_tax_status','taxable'), -(9006,630,'_tax_class','parent'), -(9007,630,'_manage_stock','no'), -(9008,630,'_backorders','no'), -(9009,630,'_sold_individually','no'), -(9010,630,'_virtual','no'), -(9011,630,'_downloadable','no'), -(9012,630,'_download_limit','-1'), -(9013,630,'_download_expiry','-1'), -(9014,630,'_thumbnail_id','0'), -(9015,630,'_stock',NULL), -(9016,630,'_stock_status','instock'), -(9017,630,'_wc_average_rating','0'), -(9018,630,'_wc_review_count','0'), -(9019,630,'attribute_pa_size','58'), -(9020,630,'_price','65'), -(9021,630,'_product_version','9.3.3'), -(9022,631,'_variation_description',''), -(9023,631,'_regular_price','65'), -(9024,631,'total_sales','0'), -(9025,631,'_tax_status','taxable'), -(9026,631,'_tax_class','parent'), -(9027,631,'_manage_stock','no'), -(9028,631,'_backorders','no'), -(9029,631,'_sold_individually','no'), -(9030,631,'_virtual','no'), -(9031,631,'_downloadable','no'), -(9032,631,'_download_limit','-1'), -(9033,631,'_download_expiry','-1'), -(9034,631,'_thumbnail_id','0'), -(9035,631,'_stock',NULL), -(9036,631,'_stock_status','instock'), -(9037,631,'_wc_average_rating','0'), -(9038,631,'_wc_review_count','0'), -(9039,631,'attribute_pa_size','60'), -(9040,631,'_price','65'), -(9041,631,'_product_version','9.3.3'), -(9042,632,'_variation_description',''), -(9043,632,'_regular_price','65'), -(9044,632,'total_sales','0'), -(9045,632,'_tax_status','taxable'), -(9046,632,'_tax_class','parent'), -(9047,632,'_manage_stock','no'), -(9048,632,'_backorders','no'), -(9049,632,'_sold_individually','no'), -(9050,632,'_virtual','no'), -(9051,632,'_downloadable','no'), -(9052,632,'_download_limit','-1'), -(9053,632,'_download_expiry','-1'), -(9054,632,'_thumbnail_id','0'), -(9055,632,'_stock',NULL), -(9056,632,'_stock_status','instock'), -(9057,632,'_wc_average_rating','0'), -(9058,632,'_wc_review_count','0'), -(9059,632,'attribute_pa_size','62'), -(9060,632,'_price','65'), -(9061,632,'_product_version','9.3.3'), -(9062,633,'_variation_description',''), -(9063,633,'_sku','BOROBORO-B2-s-64'), -(9064,633,'_regular_price','65'), -(9065,633,'total_sales','0'), -(9066,633,'_tax_status','taxable'), -(9067,633,'_tax_class','parent'), -(9068,633,'_manage_stock','no'), -(9069,633,'_backorders','no'), -(9070,633,'_sold_individually','no'), -(9071,633,'_virtual','no'), -(9072,633,'_downloadable','no'), -(9073,633,'_download_limit','-1'), -(9074,633,'_download_expiry','-1'), -(9075,633,'_thumbnail_id','0'), -(9076,633,'_stock',NULL), -(9077,633,'_stock_status','instock'), -(9078,633,'_wc_average_rating','0'), -(9079,633,'_wc_review_count','0'), -(9080,633,'attribute_pa_size','64'), -(9081,633,'_price','65'), -(9082,633,'_product_version','9.3.3'), -(9085,625,'_edit_lock','1761727631:1'), -(9095,631,'_sku','BOROBORO-B2-s-60'), -(9096,625,'_price','65'), -(9097,625,'_edit_last','1'), -(9102,637,'_variation_description',''), -(9103,637,'total_sales','0'), -(9104,637,'_tax_status','taxable'), -(9105,637,'_tax_class','parent'), -(9106,637,'_manage_stock','no'), -(9107,637,'_backorders','no'), -(9108,637,'_sold_individually','no'), -(9109,637,'_virtual','no'), -(9110,637,'_downloadable','no'), -(9111,637,'_download_limit','-1'), -(9112,637,'_download_expiry','-1'), -(9113,637,'_stock',NULL), -(9114,637,'_stock_status','instock'), -(9115,637,'_wc_average_rating','0'), -(9116,637,'_wc_review_count','0'), -(9117,637,'attribute_pa_side','left-side'), -(9118,637,'_product_version','9.4.1'), -(9119,638,'_variation_description',''), -(9120,638,'total_sales','0'), -(9121,638,'_tax_status','taxable'), -(9122,638,'_tax_class','parent'), -(9123,638,'_manage_stock','no'), -(9124,638,'_backorders','no'), -(9125,638,'_sold_individually','no'), -(9126,638,'_virtual','no'), -(9127,638,'_downloadable','no'), -(9128,638,'_download_limit','-1'), -(9129,638,'_download_expiry','-1'), -(9130,638,'_stock',NULL), -(9131,638,'_stock_status','instock'), -(9132,638,'_wc_average_rating','0'), -(9133,638,'_wc_review_count','0'), -(9134,638,'attribute_pa_side','pair'), -(9135,638,'_product_version','9.3.3'), -(9136,639,'_variation_description',''), -(9137,639,'total_sales','0'), -(9138,639,'_tax_status','taxable'), -(9139,639,'_tax_class','parent'), -(9140,639,'_manage_stock','no'), -(9141,639,'_backorders','no'), -(9142,639,'_sold_individually','no'), -(9143,639,'_virtual','no'), -(9144,639,'_downloadable','no'), -(9145,639,'_download_limit','-1'), -(9146,639,'_download_expiry','-1'), -(9147,639,'_stock',NULL), -(9148,639,'_stock_status','instock'), -(9149,639,'_wc_average_rating','0'), -(9150,639,'_wc_review_count','0'), -(9151,639,'attribute_pa_side','right-side'), -(9152,639,'_product_version','9.3.3'), -(9153,637,'_sku','PIASU-BO-left'), -(9154,637,'_regular_price','50'), -(9155,637,'_thumbnail_id','0'), -(9156,637,'_price','50'), -(9157,638,'_sku','PIASU-BO-pair'), -(9158,638,'_regular_price','85'), -(9159,638,'_thumbnail_id','0'), -(9160,638,'_price','85'), -(9161,639,'_sku','PIASU-BO-right'), -(9162,639,'_regular_price','50'), -(9163,639,'_thumbnail_id','0'), -(9164,639,'_price','50'), -(9214,641,'_variation_description',''), -(9215,641,'total_sales','0'), -(9216,641,'_tax_status','taxable'), -(9217,641,'_tax_class','parent'), -(9218,641,'_manage_stock','no'), -(9219,641,'_backorders','no'), -(9220,641,'_sold_individually','no'), -(9221,641,'_virtual','no'), -(9222,641,'_downloadable','no'), -(9223,641,'_download_limit','-1'), -(9224,641,'_download_expiry','-1'), -(9225,641,'_stock',NULL), -(9226,641,'_stock_status','instock'), -(9227,641,'_wc_average_rating','0'), -(9228,641,'_wc_review_count','0'), -(9229,641,'attribute_pa_side','left-side'), -(9230,641,'_product_version','9.8.4'), -(9231,642,'_variation_description',''), -(9232,642,'total_sales','0'), -(9233,642,'_tax_status','taxable'), -(9234,642,'_tax_class','parent'), -(9235,642,'_manage_stock','no'), -(9236,642,'_backorders','no'), -(9237,642,'_sold_individually','no'), -(9238,642,'_virtual','no'), -(9239,642,'_downloadable','no'), -(9240,642,'_download_limit','-1'), -(9241,642,'_download_expiry','-1'), -(9242,642,'_stock',NULL), -(9243,642,'_stock_status','instock'), -(9244,642,'_wc_average_rating','0'), -(9245,642,'_wc_review_count','0'), -(9246,642,'attribute_pa_side','pair'), -(9247,642,'_product_version','9.9.3'), -(9248,643,'_variation_description',''), -(9249,643,'total_sales','0'), -(9250,643,'_tax_status','taxable'), -(9251,643,'_tax_class','parent'), -(9252,643,'_manage_stock','no'), -(9253,643,'_backorders','no'), -(9254,643,'_sold_individually','no'), -(9255,643,'_virtual','no'), -(9256,643,'_downloadable','no'), -(9257,643,'_download_limit','-1'), -(9258,643,'_download_expiry','-1'), -(9259,643,'_stock',NULL), -(9260,643,'_stock_status','instock'), -(9261,643,'_wc_average_rating','0'), -(9262,643,'_wc_review_count','0'), -(9263,643,'attribute_pa_side','right-side'), -(9264,643,'_product_version','9.8.4'), -(9265,641,'_sku','HATTARI-CR1-s-left'), -(9266,641,'_regular_price','55'), -(9267,641,'_thumbnail_id','0'), -(9268,641,'_price','55'), -(9269,642,'_sku','HATTARI-CR1-s-pair'), -(9270,642,'_regular_price','85'), -(9271,642,'_thumbnail_id','0'), -(9272,642,'_price','85'), -(9273,643,'_sku','HATTARI-CR1-s-right'), -(9274,643,'_regular_price','55'), -(9275,643,'_thumbnail_id','0'), -(9276,643,'_price','55'), -(9286,645,'_variation_description',''), -(9287,645,'total_sales','0'), -(9288,645,'_tax_status','taxable'), -(9289,645,'_tax_class','parent'), -(9290,645,'_manage_stock','no'), -(9291,645,'_backorders','no'), -(9292,645,'_sold_individually','no'), -(9293,645,'_virtual','no'), -(9294,645,'_downloadable','no'), -(9295,645,'_download_limit','-1'), -(9296,645,'_download_expiry','-1'), -(9297,645,'_stock',NULL), -(9298,645,'_stock_status','instock'), -(9299,645,'_wc_average_rating','0'), -(9300,645,'_wc_review_count','0'), -(9301,645,'attribute_pa_side','left-side'), -(9302,645,'_product_version','9.8.4'), -(9303,646,'_variation_description',''), -(9304,646,'total_sales','0'), -(9305,646,'_tax_status','taxable'), -(9306,646,'_tax_class','parent'), -(9307,646,'_manage_stock','no'), -(9308,646,'_backorders','no'), -(9309,646,'_sold_individually','no'), -(9310,646,'_virtual','no'), -(9311,646,'_downloadable','no'), -(9312,646,'_download_limit','-1'), -(9313,646,'_download_expiry','-1'), -(9314,646,'_stock',NULL), -(9315,646,'_stock_status','instock'), -(9316,646,'_wc_average_rating','0'), -(9317,646,'_wc_review_count','0'), -(9318,646,'attribute_pa_side','pair'), -(9319,646,'_product_version','9.9.3'), -(9320,647,'_variation_description',''), -(9321,647,'total_sales','0'), -(9322,647,'_tax_status','taxable'), -(9323,647,'_tax_class','parent'), -(9324,647,'_manage_stock','no'), -(9325,647,'_backorders','no'), -(9326,647,'_sold_individually','no'), -(9327,647,'_virtual','no'), -(9328,647,'_downloadable','no'), -(9329,647,'_download_limit','-1'), -(9330,647,'_download_expiry','-1'), -(9331,647,'_stock',NULL), -(9332,647,'_stock_status','instock'), -(9333,647,'_wc_average_rating','0'), -(9334,647,'_wc_review_count','0'), -(9335,647,'attribute_pa_side','right-side'), -(9336,647,'_product_version','9.8.4'), -(9337,645,'_sku','HATTARI-CR1-g-left'), -(9338,645,'_regular_price','60'), -(9339,645,'_thumbnail_id','0'), -(9340,645,'_price','60'), -(9341,646,'_sku','HATTARI-CR1-g-pair'), -(9342,646,'_regular_price','90'), -(9343,646,'_thumbnail_id','0'), -(9344,646,'_price','90'), -(9345,647,'_sku','HATTARI-CR1-g-right'), -(9346,647,'_regular_price','60'), -(9347,647,'_thumbnail_id','0'), -(9348,647,'_price','60'), -(9427,651,'_variation_description',''), -(9428,651,'total_sales','0'), -(9429,651,'_tax_status','taxable'), -(9430,651,'_tax_class','parent'), -(9431,651,'_manage_stock','no'), -(9432,651,'_backorders','no'), -(9433,651,'_sold_individually','no'), -(9434,651,'_virtual','no'), -(9435,651,'_downloadable','no'), -(9436,651,'_download_limit','-1'), -(9437,651,'_download_expiry','-1'), -(9438,651,'_stock',NULL), -(9439,651,'_stock_status','instock'), -(9440,651,'_wc_average_rating','0'), -(9441,651,'_wc_review_count','0'), -(9442,651,'attribute_pa_side','long'), -(9443,651,'_product_version','9.3.3'), -(9444,652,'_variation_description',''), -(9445,652,'total_sales','0'), -(9446,652,'_tax_status','taxable'), -(9447,652,'_tax_class','parent'), -(9448,652,'_manage_stock','no'), -(9449,652,'_backorders','no'), -(9450,652,'_sold_individually','no'), -(9451,652,'_virtual','no'), -(9452,652,'_downloadable','no'), -(9453,652,'_download_limit','-1'), -(9454,652,'_download_expiry','-1'), -(9455,652,'_stock',NULL), -(9456,652,'_stock_status','instock'), -(9457,652,'_wc_average_rating','0'), -(9458,652,'_wc_review_count','0'), -(9459,652,'attribute_pa_side','pair'), -(9460,652,'_product_version','9.3.3'), -(9461,653,'_variation_description',''), -(9462,653,'total_sales','0'), -(9463,653,'_tax_status','taxable'), -(9464,653,'_tax_class','parent'), -(9465,653,'_manage_stock','no'), -(9466,653,'_backorders','no'), -(9467,653,'_sold_individually','no'), -(9468,653,'_virtual','no'), -(9469,653,'_downloadable','no'), -(9470,653,'_download_limit','-1'), -(9471,653,'_download_expiry','-1'), -(9472,653,'_stock',NULL), -(9473,653,'_stock_status','instock'), -(9474,653,'_wc_average_rating','0'), -(9475,653,'_wc_review_count','0'), -(9476,653,'attribute_pa_side','short'), -(9477,653,'_product_version','9.4.1'), -(9478,651,'_sku','TAMANORI-CR-s-long'), -(9479,651,'_regular_price','50'), -(9480,651,'_thumbnail_id','0'), -(9481,651,'_price','50'), -(9482,652,'_sku','TAMANORI-CR-s-pair'), -(9483,652,'_regular_price','70'), -(9484,652,'_thumbnail_id','0'), -(9485,652,'_price','70'), -(9486,653,'_sku','TAMANORI-CR-s-short'), -(9487,653,'_regular_price','48'), -(9488,653,'_thumbnail_id','0'), -(9489,653,'_price','48'), -(9498,654,'_variation_description',''), -(9499,654,'total_sales','0'), -(9500,654,'_tax_status','taxable'), -(9501,654,'_tax_class','parent'), -(9502,654,'_manage_stock','no'), -(9503,654,'_backorders','no'), -(9504,654,'_sold_individually','no'), -(9505,654,'_virtual','no'), -(9506,654,'_downloadable','no'), -(9507,654,'_download_limit','-1'), -(9508,654,'_download_expiry','-1'), -(9509,654,'_stock',NULL), -(9510,654,'_stock_status','instock'), -(9511,654,'_wc_average_rating','0'), -(9512,654,'_wc_review_count','0'), -(9513,654,'attribute_pa_side','long'), -(9514,654,'_product_version','9.4.1'), -(9515,655,'_variation_description',''), -(9516,655,'total_sales','0'), -(9517,655,'_tax_status','taxable'), -(9518,655,'_tax_class','parent'), -(9519,655,'_manage_stock','no'), -(9520,655,'_backorders','no'), -(9521,655,'_sold_individually','no'), -(9522,655,'_virtual','no'), -(9523,655,'_downloadable','no'), -(9524,655,'_download_limit','-1'), -(9525,655,'_download_expiry','-1'), -(9526,655,'_stock',NULL), -(9527,655,'_stock_status','instock'), -(9528,655,'_wc_average_rating','0'), -(9529,655,'_wc_review_count','0'), -(9530,655,'attribute_pa_side','pair'), -(9531,655,'_product_version','9.3.3'), -(9532,656,'_variation_description',''), -(9533,656,'total_sales','0'), -(9534,656,'_tax_status','taxable'), -(9535,656,'_tax_class','parent'), -(9536,656,'_manage_stock','no'), -(9537,656,'_backorders','no'), -(9538,656,'_sold_individually','no'), -(9539,656,'_virtual','no'), -(9540,656,'_downloadable','no'), -(9541,656,'_download_limit','-1'), -(9542,656,'_download_expiry','-1'), -(9543,656,'_stock',NULL), -(9544,656,'_stock_status','instock'), -(9545,656,'_wc_average_rating','0'), -(9546,656,'_wc_review_count','0'), -(9547,656,'attribute_pa_side','short'), -(9548,656,'_product_version','9.4.1'), -(9549,654,'_sku','TAMANORI-CR-g-long'), -(9550,654,'_regular_price','52'), -(9551,654,'_thumbnail_id','0'), -(9552,654,'_price','52'), -(9553,655,'_sku','TAMANORI-CR-g-pair'), -(9554,655,'_regular_price','75'), -(9555,655,'_thumbnail_id','0'), -(9556,655,'_price','75'), -(9557,656,'_sku','TAMANORI-CR-g-short'), -(9558,656,'_regular_price','50'), -(9559,656,'_thumbnail_id','0'), -(9560,656,'_price','50'), -(9575,659,'_wp_attached_file','2024/09/HADOU-B-opti.jpg'), -(9576,659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/09/HADOU-B-opti.jpg\";s:8:\"filesize\";i:249510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9577,659,'_wp_attachment_image_alt','Hadou wavy ring mix of silver and gold plated silver.'), -(9584,660,'_wp_attached_file','2024/10/IMG_1442.jpg'), -(9585,660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1442.jpg\";s:8:\"filesize\";i:1029972;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1442-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19538;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9586,660,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(9587,306,'_price','48'), -(9588,306,'_price','50'), -(9589,306,'_price','70'), -(9590,306,'_photos_colonne_gauche|||0|value','310'), -(9591,306,'_photos_colonne_droite|||0|value','311'), -(9592,306,'_photos_colonne_droite|||1|value','424'), -(9593,306,'_haiku_details_produit',''), -(9594,312,'_price','50'), -(9595,312,'_price','52'), -(9596,312,'_price','75'), -(9604,202,'_price','50'), -(9605,202,'_price','85'), -(9627,664,'_wp_attached_file','2024/10/IMG_1512.jpg'), -(9628,664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1512.jpg\";s:8:\"filesize\";i:873482;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1512-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17996;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9629,664,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(9693,671,'_wp_attached_file','2024/10/IMG_1604.jpg'), -(9694,671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1604.jpg\";s:8:\"filesize\";i:876712;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1604-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16608;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9695,671,'_wp_attachment_image_alt','pair of Boroboro long gold plated silver earrings with asymmetrical shapes.'), -(9701,672,'_wp_attached_file','2024/10/IMG_1656-1.jpg'), -(9702,672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IMG_1656-1.jpg\";s:8:\"filesize\";i:1095755;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1656-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9703,672,'_wp_attachment_image_alt','Hattari ear cuff gold plated.'), -(9713,673,'_wp_attached_file','2024/10/IMG_1657.jpg'), -(9714,673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1657.jpg\";s:8:\"filesize\";i:901473;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1657-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16418;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9715,673,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(9850,613,'_price','70'), -(9851,679,'_wp_attached_file','2024/10/DSC9116.jpg'), -(9852,679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9116.jpg\";s:8:\"filesize\";i:485510;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9116-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12868;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9853,679,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail.'), -(9892,681,'_wp_attached_file','2024/09/DSC9897.jpg'), -(9893,681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9897.jpg\";s:8:\"filesize\";i:689413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9897-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9894,681,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops, one in 18K gold.'), -(9915,684,'_wp_attached_file','2024/09/IMG_1478.jpg'), -(9916,684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/09/IMG_1478.jpg\";s:8:\"filesize\";i:867867;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1478-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9917,684,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), -(9947,689,'_wp_attached_file','2024/10/DSC9341.jpg'), -(9948,689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9341.jpg\";s:8:\"filesize\";i:635454;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9341-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9949,689,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(9991,263,'_thumbnail_id','1383'), -(10004,700,'_wp_attached_file','2024/10/IMG_1431.jpg'), -(10005,700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1431.jpg\";s:8:\"filesize\";i:1757156;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1431-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10006,700,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10011,702,'_wp_attached_file','2024/10/IMG_1432.jpg'), -(10012,702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1432.jpg\";s:8:\"filesize\";i:540692;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1432-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10013,702,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10021,704,'_wp_attached_file','2024/10/IMG_1493.jpg'), -(10022,704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1493.jpg\";s:8:\"filesize\";i:985049;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1493-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10023,704,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), -(10028,705,'_wp_attached_file','2024/10/IMG_1531.jpg'), -(10029,705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1531.jpg\";s:8:\"filesize\";i:774222;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1531-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10030,705,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(10031,707,'_wp_attached_file','2024/10/IMG_1543.jpg'), -(10032,707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1543.jpg\";s:8:\"filesize\";i:776895;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1543-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10033,707,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(10081,713,'_wp_attached_file','2024/10/IMG_1647.jpg'), -(10082,713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1647.jpg\";s:8:\"filesize\";i:703654;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1647-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10083,713,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail'), -(10089,714,'_wp_attached_file','2024/10/IMG_1651.jpg'), -(10090,714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1651.jpg\";s:8:\"filesize\";i:639347;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1651-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10091,714,'_wp_attachment_image_alt','Fuyou solo hoop and Hadou ear cuff in sterling silver'), -(10097,715,'_wp_attached_file','2024/10/IMG_1669.jpg'), -(10098,715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1669.jpg\";s:8:\"filesize\";i:642926;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1669-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10099,715,'_wp_attachment_image_alt','Rokku solo hoop silver with tiger\'s eye and Tamanori earrings gold plated silver.'), -(10126,718,'_wp_attached_file','2024/10/IMG_1746.jpg'), -(10127,718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1746.jpg\";s:8:\"filesize\";i:684400;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1746-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10128,718,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings sterling silver.'), -(10152,342,'_thumbnail_id','928'), -(10159,722,'_wp_attached_file','2024/10/MUGURA-CR2-vrm.jpg'), -(10160,722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-vrm.jpg\";s:8:\"filesize\";i:254284;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10161,722,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(10183,725,'_wp_attached_file','2024/10/PIASU-C.jpg'), -(10184,725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/10/PIASU-C.jpg\";s:8:\"filesize\";i:391561;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10185,725,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains.'), -(10186,268,'_thumbnail_id','725'), -(10191,726,'_wp_attached_file','2024/10/ROKKU-B-malachite.jpg'), -(10192,726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:29:\"2024/10/ROKKU-B-malachite.jpg\";s:8:\"filesize\";i:287899;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10193,726,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), -(10194,168,'_thumbnail_id','726'), -(10203,727,'_wp_attached_file','2024/10/ROKKU-C-jaspe.jpg'), -(10204,727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-jaspe.jpg\";s:8:\"filesize\";i:324080;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-jaspe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10205,727,'_wp_attachment_image_alt','Rokku statement necklace in silver with jaspe stone pendant and gold plated clasp.'), -(10209,729,'_wp_attached_file','2024/10/ROKKU-C-tiger.jpg'), -(10210,729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-tiger.jpg\";s:8:\"filesize\";i:325348;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10211,729,'_wp_attachment_image_alt','Rokku statement necklace in silver with tiger\'s eye stone pendant and gold plated clasp.'), -(10212,385,'_thumbnail_id','729'), -(10227,730,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-lapis.jpg'), -(10228,730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-lapis.jpg\";s:8:\"filesize\";i:243829;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10229,730,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with lapis lazuli stone.'), -(10230,731,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-malachite.jpg'), -(10231,731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:35:\"2024/10/ROKKU-CR1-vrm-malachite.jpg\";s:8:\"filesize\";i:224150;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"ROKKU-CR1-vrm-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3790;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10232,731,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with malachite stone.'), -(10233,732,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-tiger.jpg'), -(10234,732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-tiger.jpg\";s:8:\"filesize\";i:239111;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10235,732,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with tiger\'s eye stone.'), -(10260,735,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm.jpg'), -(10261,735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-vrm.jpg\";s:8:\"filesize\";i:262704;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10262,735,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(10267,736,'_wp_attached_file','2024/10/TANEMAKI-BR.jpg'), -(10268,736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/TANEMAKI-BR.jpg\";s:8:\"filesize\";i:287017;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10269,736,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10270,251,'_thumbnail_id','736'), -(10313,743,'_wp_attached_file','2024/11/BOROBORO-B2-g.jpg'), -(10314,743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-g.jpg\";s:8:\"filesize\";i:237826;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4182;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10315,743,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10316,613,'_thumbnail_id','1351'), -(10321,744,'_wp_attached_file','2024/11/BOROBORO-B2-s.jpg'), -(10322,744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-s.jpg\";s:8:\"filesize\";i:221635;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3652;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10323,744,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10324,625,'_thumbnail_id','1349'), -(10341,747,'_wp_attached_file','2024/11/BOROBORO-BO1-g-green.jpg'), -(10342,747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-green.jpg\";s:8:\"filesize\";i:292196;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5376;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10343,747,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), -(10344,748,'_wp_attached_file','2024/11/BOROBORO-BO1-g-brown.jpg'), -(10345,748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-brown.jpg\";s:8:\"filesize\";i:290704;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10346,748,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with tiger\'s eye.'), -(10347,515,'_thumbnail_id','927'), -(10352,749,'_wp_attached_file','2024/11/BOROBORO-BO1-s-brown.jpg'), -(10353,749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-brown.jpg\";s:8:\"filesize\";i:265471;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10354,749,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), -(10355,750,'_wp_attached_file','2024/11/BOROBORO-BO1-s-green.jpg'), -(10356,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-green.jpg\";s:8:\"filesize\";i:266105;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10357,750,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with green aventurine.'), -(10358,521,'_thumbnail_id','925'), -(10363,751,'_wp_attached_file','2024/11/DSC9463.jpg'), -(10364,751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC9463.jpg\";s:8:\"filesize\";i:888805;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9463-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10365,751,'_wp_attachment_image_alt','Kara textured silver hoops'), -(10369,752,'_wp_attached_file','2024/11/HADOU-BOP.jpg'), -(10370,752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/HADOU-BOP.jpg\";s:8:\"filesize\";i:248309;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10371,752,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), -(10372,490,'_thumbnail_id','934'), -(10376,753,'_wp_attached_file','2024/11/HATTARI-BR.jpg'), -(10377,753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/11/HATTARI-BR.jpg\";s:8:\"filesize\";i:302897;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10378,753,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), -(10379,610,'_thumbnail_id','753'), -(10389,755,'_wp_attached_file','2024/11/IMG_1474.jpg'), -(10390,755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1474.jpg\";s:8:\"filesize\";i:625708;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1474-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10391,755,'_wp_attachment_image_alt','Hadou wavy stud earrings mixing gold and silver.'), -(10395,756,'_wp_attached_file','2024/11/IMG_1481.jpg'), -(10396,756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1481.jpg\";s:8:\"filesize\";i:841107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1481-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10397,756,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), -(10398,757,'_wp_attached_file','2024/11/IMG_1484.jpg'), -(10399,757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1484.jpg\";s:8:\"filesize\";i:691565;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1484-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10400,757,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), -(10405,758,'_wp_attached_file','2024/11/IMG_1501.jpg'), -(10406,758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1501.jpg\";s:8:\"filesize\";i:582559;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1501-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10407,758,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), -(10408,759,'_wp_attached_file','2024/11/IMG_1506.jpg'), -(10409,759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1506.jpg\";s:8:\"filesize\";i:606859;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1506-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10410,759,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), -(10418,761,'_wp_attached_file','2024/11/IMG_1554.jpg'), -(10419,761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1554.jpg\";s:8:\"filesize\";i:648391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1554-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10420,761,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10425,762,'_wp_attached_file','2024/11/IMG_1563.jpg'), -(10426,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1563.jpg\";s:8:\"filesize\";i:711087;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1563-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14072;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10427,762,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(10448,766,'_sku','FUYOU-BO'), -(10449,766,'total_sales','0'), -(10450,766,'_tax_status','taxable'), -(10451,766,'_tax_class',''), -(10452,766,'_manage_stock','no'), -(10453,766,'_backorders','no'), -(10454,766,'_sold_individually','no'), -(10455,766,'_virtual','no'), -(10456,766,'_downloadable','no'), -(10457,766,'_download_limit','-1'), -(10458,766,'_download_expiry','-1'), -(10460,766,'_stock',NULL), -(10461,766,'_stock_status','instock'), -(10462,766,'_wc_average_rating','0'), -(10463,766,'_wc_review_count','0'), -(10464,766,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(10465,766,'_product_version','9.9.5'), -(10513,766,'_edit_lock','1755586737:1'), -(10559,766,'_edit_last','1'), -(11354,819,'_wp_attached_file','2024/11/HAIKU-ringsizes.jpg'), -(11355,819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:595;s:6:\"height\";i:842;s:4:\"file\";s:27:\"2024/11/HAIKU-ringsizes.jpg\";s:8:\"filesize\";i:41989;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HAIKU-ringsizes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11356,819,'_wp_attachment_image_alt','Ring size guide'), -(11368,102,'_photos_colonne_gauche|||0|value','110'), -(11369,102,'_photos_colonne_droite|||0|value','112'), -(11370,102,'_photos_colonne_droite|||1|value','111'), -(11371,102,'_haiku_details_produit',''), -(11420,820,'_wp_attached_file','2024/09/IKKAN-B-vrm.jpg'), -(11421,820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1277;s:4:\"file\";s:23:\"2024/09/IKKAN-B-vrm.jpg\";s:8:\"filesize\";i:393112;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27681;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5054;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11422,820,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), -(11423,113,'_thumbnail_id','820'), -(11424,113,'_photos_colonne_gauche|||0|value','820'), -(11425,113,'_photos_colonne_droite|||0|value','122'), -(11426,113,'_photos_colonne_droite|||1|value','684'), -(11427,113,'_haiku_details_produit',''), -(11428,821,'_wp_attached_file','2024/09/KARA-B.jpg'), -(11429,821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:18:\"2024/09/KARA-B.jpg\";s:8:\"filesize\";i:460992;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"KARA-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11430,822,'_wp_attached_file','2024/09/KARA-B-1.jpg'), -(11431,822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/09/KARA-B-1.jpg\";s:8:\"filesize\";i:429750;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22093;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11432,821,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(11433,822,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(11456,825,'_wp_attached_file','2024/10/IMG_1505.jpg'), -(11457,825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1505.jpg\";s:8:\"filesize\";i:460176;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1505-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11458,825,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire.'), -(11463,826,'_wp_attached_file','2024/10/IMG_1582.jpg'), -(11464,826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1195;s:6:\"height\";i:1195;s:4:\"file\";s:20:\"2024/10/IMG_1582.jpg\";s:8:\"filesize\";i:1286747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1582-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1729428985\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11465,826,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold.'), -(11485,828,'_wp_attached_file','2024/10/ROKKU-C-lapis-copy.jpg'), -(11486,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-C-lapis-copy.jpg\";s:8:\"filesize\";i:546484;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-C-lapis-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11487,828,'_wp_attachment_image_alt','Rokku statement necklace in silver with lapis lazuli stone pendant and gold plated clasp.'), -(11495,312,'_thumbnail_id','735'), -(11496,312,'_photos_colonne_gauche|||0|value','735'), -(11497,312,'_photos_colonne_droite|||0|value','660'), -(11498,312,'_photos_colonne_droite|||1|value','317'), -(11499,312,'_haiku_details_produit',''), -(11500,829,'_wp_attached_file','2024/11/IMG_1460.jpg'), -(11501,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1460.jpg\";s:8:\"filesize\";i:934957;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1460-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11502,829,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), -(11509,830,'_wp_attached_file','2024/11/IMG_1473.jpg'), -(11510,830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1473.jpg\";s:8:\"filesize\";i:632613;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1473-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11511,830,'_wp_attachment_image_alt','Kara textured ear cuff in silver and gold plated'), -(11515,133,'_thumbnail_id','822'), -(11524,831,'_wp_attached_file','2024/11/IMG_1524.jpg'), -(11525,831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1921;s:4:\"file\";s:20:\"2024/11/IMG_1524.jpg\";s:8:\"filesize\";i:911352;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1524-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11526,831,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), -(11531,832,'_wp_attached_file','2024/11/IMG_1525.jpg'), -(11532,832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1525.jpg\";s:8:\"filesize\";i:985758;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11533,832,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), -(11545,834,'_wp_attached_file','2024/11/KARA-CR-g.jpg'), -(11546,834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-g.jpg\";s:8:\"filesize\";i:407384;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22482;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4712;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11547,834,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(11551,835,'_wp_attached_file','2024/11/KARA-CR-s.jpg'), -(11552,835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-s.jpg\";s:8:\"filesize\";i:384089;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24691;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3818;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11553,835,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), -(11554,554,'_thumbnail_id','935'), -(11558,545,'_thumbnail_id','938'), -(11567,836,'_wp_attached_file','2024/11/KARA-EC-vrm.jpg'), -(11568,836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/11/KARA-EC-vrm.jpg\";s:8:\"filesize\";i:361036;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3165;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11569,836,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver'), -(11570,447,'_thumbnail_id','939'), -(11730,851,'_edit_lock','1733268183:1'), -(11731,851,'_edit_last','1'), -(11732,851,'discount_type','percent'), -(11733,851,'coupon_amount','20'), -(11734,851,'individual_use','no'), -(11735,851,'usage_limit','0'), -(11736,851,'usage_limit_per_user','1'), -(11737,851,'limit_usage_to_x_items','0'), -(11738,851,'usage_count','0'), -(11739,851,'date_expires','1733266800'), -(11740,851,'free_shipping','no'), -(11741,851,'exclude_sale_items','no'), -(11951,532,'_regular_price','95'), -(11952,532,'_price','95'), -(11955,133,'_photos_colonne_gauche|||0|value','822'), -(11956,133,'_photos_colonne_droite|||0|value','166'), -(11957,133,'_photos_colonne_droite|||1|value','142'), -(11958,133,'_photos_colonne_droite|||2|value','821'), -(11959,133,'_photos_colonne_droite|||3|value','167'), -(11960,133,'_photos_colonne_droite|||4|value','143'), -(11961,133,'_haiku_details_produit',''), -(11962,200,'_thumbnail_id','0'), -(12017,240,'_photos_colonne_gauche|||0|value','243'), -(12018,240,'_photos_colonne_droite|||0|value','244'), -(12019,240,'_photos_colonne_droite|||1|value','245'), -(12020,240,'_haiku_details_produit',''), -(12021,610,'_photos_colonne_gauche|||0|value','753'), -(12022,610,'_photos_colonne_droite|||0|value','829'), -(12023,610,'_haiku_details_produit',''), -(12025,385,'_price','120'), -(12026,385,'_photos_colonne_gauche|||0|value','729'), -(12027,385,'_photos_colonne_droite|||0|value','487'), -(12028,385,'_photos_colonne_droite|||1|value','727'), -(12029,385,'_photos_colonne_droite|||2|value','705'), -(12030,385,'_photos_colonne_droite|||3|value','828'), -(12031,385,'_photos_colonne_droite|||4|value','707'), -(12032,385,'_haiku_details_produit',''), -(12054,545,'_price','45'), -(12055,545,'_price','70'), -(12064,554,'_price','40'), -(12065,554,'_price','65'), -(12072,328,'_photos_colonne_gauche|||0|value','329'), -(12073,328,'_photos_colonne_droite|||0|value','330'), -(12074,328,'_haiku_details_produit',''), -(12075,325,'_photos_colonne_gauche|||0|value','326'), -(12076,325,'_photos_colonne_droite|||0|value','327'), -(12077,325,'_photos_colonne_droite|||1|value','714'), -(12078,325,'_haiku_details_produit',''), -(12095,490,'_price','35'), -(12096,490,'_price','50'), -(12132,251,'_photos_colonne_gauche|||0|value','736'), -(12133,251,'_photos_colonne_droite|||0|value','700'), -(12134,251,'_photos_colonne_droite|||1|value','702'), -(12135,251,'_haiku_details_produit',''), -(12200,925,'_wp_attached_file','2024/11/BORO-BO1-arg.jpg'), -(12201,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/11/BORO-BO1-arg.jpg\";s:8:\"filesize\";i:162384;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BORO-BO1-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12202,925,'_wp_attachment_image_alt','Boroboro asymmetrical silver earrings with honey calcite beads.'), -(12203,926,'_variation_description',''), -(12204,926,'total_sales','0'), -(12205,926,'_tax_status','taxable'), -(12206,926,'_tax_class','parent'), -(12207,926,'_manage_stock','no'), -(12208,926,'_backorders','no'), -(12209,926,'_sold_individually','no'), -(12210,926,'_virtual','no'), -(12211,926,'_downloadable','no'), -(12212,926,'_download_limit','-1'), -(12213,926,'_download_expiry','-1'), -(12214,926,'_stock',NULL), -(12215,926,'_stock_status','instock'), -(12216,926,'_wc_average_rating','0'), -(12217,926,'_wc_review_count','0'), -(12218,926,'attribute_pa_stone','honey-jade'), -(12219,926,'_product_version','9.9.3'), -(12221,926,'_sku','BOROBORO-BO1-s-honey'), -(12222,926,'_regular_price','60'), -(12223,926,'_thumbnail_id','0'), -(12224,926,'_price','60'), -(12225,521,'_price','60'), -(12230,927,'_wp_attached_file','2024/11/BORO-BO1-or.jpg'), -(12231,927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/BORO-BO1-or.jpg\";s:8:\"filesize\";i:168334;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"BORO-BO1-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12232,927,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated silver earrings with green aventurine beads.'), -(12237,928,'_wp_attached_file','2024/10/MUGURA-BOP.jpg'), -(12238,928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/MUGURA-BOP.jpg\";s:8:\"filesize\";i:155395;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MUGURA-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12239,928,'_wp_attachment_image_alt','Mugura trio of stud earrings in silver and gold plated silver with dangling pearls.'), -(12240,342,'_price','30'), -(12241,342,'_price','35'), -(12242,342,'_price','38'), -(12243,342,'_price','55'), -(12244,342,'_wp_old_slug','kagun-trio-earrings'), -(12245,342,'_photos_colonne_gauche|||0|value','928'), -(12246,342,'_photos_colonne_droite|||0|value','664'), -(12247,342,'_photos_colonne_droite|||1|value','347'), -(12248,342,'_photos_colonne_droite|||2|value','348'), -(12249,342,'_photos_colonne_droite|||3|value','349'), -(12250,342,'_haiku_details_produit',''), -(12300,934,'_wp_attached_file','2024/11/HADOU-BOP-1.jpg'), -(12301,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/HADOU-BOP-1.jpg\";s:8:\"filesize\";i:160091;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-BOP-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18088;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12302,934,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), -(12303,490,'_photos_colonne_gauche|||0|value','934'), -(12304,490,'_photos_colonne_droite|||0|value','755'), -(12305,490,'_photos_colonne_droite|||1|value','752'), -(12306,490,'_haiku_details_produit',''), -(12307,935,'_wp_attached_file','2024/11/KARA-CR-s-1.jpg'), -(12308,935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-s-1.jpg\";s:8:\"filesize\";i:173653;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12309,935,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), -(12310,936,'_wp_attached_file','2024/11/DSC00650.jpg'), -(12311,936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00650.jpg\";s:8:\"filesize\";i:1683107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00650-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989922\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12312,936,'_wp_attachment_image_alt','Kara small textured silver hoops.'), -(12313,937,'_wp_attached_file','2024/11/DSC00655.jpg'), -(12314,937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00655.jpg\";s:8:\"filesize\";i:1563690;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00655-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12315,937,'_wp_attachment_image_alt','Kara small textured silver hoops.'), -(12316,554,'_photos_colonne_gauche|||0|value','935'), -(12317,554,'_photos_colonne_droite|||0|value','936'), -(12318,554,'_photos_colonne_droite|||1|value','937'), -(12319,554,'_photos_colonne_droite|||2|value','835'), -(12320,554,'_haiku_details_produit',''), -(12321,938,'_wp_attached_file','2024/11/KARA-CR-g-1.jpg'), -(12322,938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-g-1.jpg\";s:8:\"filesize\";i:170852;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12323,938,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(12324,545,'_photos_colonne_gauche|||0|value','938'), -(12325,545,'_photos_colonne_droite|||0|value','762'), -(12326,545,'_photos_colonne_droite|||1|value','834'), -(12327,545,'_haiku_details_produit',''), -(12328,939,'_wp_attached_file','2024/11/KARA-EC-g.jpg'), -(12329,939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/KARA-EC-g.jpg\";s:8:\"filesize\";i:162501;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12330,939,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver.'), -(12331,447,'_photos_colonne_gauche|||0|value','939'), -(12332,447,'_photos_colonne_droite|||0|value','830'), -(12333,447,'_photos_colonne_droite|||1|value','939'), -(12334,447,'_haiku_details_produit',''), -(12335,940,'_wp_attached_file','2024/10/KARA-EC-s.jpg'), -(12336,940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/KARA-EC-s.jpg\";s:8:\"filesize\";i:157285;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12337,940,'_wp_attachment_image_alt','Kara textured ear cuff in silver.'), -(12338,435,'_photos_colonne_gauche|||0|value','940'), -(12339,435,'_photos_colonne_droite|||0|value','437'), -(12340,435,'_photos_colonne_droite|||1|value','940'), -(12341,435,'_haiku_details_produit',''), -(12342,941,'_edit_lock','1755446505:1'), -(12343,941,'_edit_last','1'), -(12347,943,'_wp_attached_file','2025/06/DSC00671.jpg'), -(12348,943,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00671.jpg\";s:8:\"filesize\";i:1219328;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00671-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31560;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12349,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), -(12350,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), -(12351,941,'total_sales','0'), -(12352,941,'_tax_status','taxable'), -(12353,941,'_tax_class',''), -(12354,941,'_manage_stock','no'), -(12355,941,'_backorders','no'), -(12356,941,'_sold_individually','no'), -(12357,941,'_virtual','no'), -(12358,941,'_downloadable','no'), -(12359,941,'_download_limit','-1'), -(12360,941,'_download_expiry','-1'), -(12361,941,'_stock',NULL), -(12362,941,'_stock_status','instock'), -(12363,941,'_wc_average_rating','0'), -(12364,941,'_wc_review_count','0'), -(12365,941,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12366,941,'_product_version','9.9.5'), -(12367,944,'_variation_description',''), -(12368,944,'total_sales','0'), -(12369,944,'_tax_status','taxable'), -(12370,944,'_tax_class','parent'), -(12371,944,'_manage_stock','no'), -(12372,944,'_backorders','no'), -(12373,944,'_sold_individually','no'), -(12374,944,'_virtual','no'), -(12375,944,'_downloadable','no'), -(12376,944,'_download_limit','-1'), -(12377,944,'_download_expiry','-1'), -(12378,944,'_stock',NULL), -(12379,944,'_stock_status','instock'), -(12380,944,'_wc_average_rating','0'), -(12381,944,'_wc_review_count','0'), -(12382,944,'attribute_pa_size','50'), -(12383,944,'_product_version','9.9.3'), -(12384,945,'_variation_description',''), -(12385,945,'total_sales','0'), -(12386,945,'_tax_status','taxable'), -(12387,945,'_tax_class','parent'), -(12388,945,'_manage_stock','no'), -(12389,945,'_backorders','no'), -(12390,945,'_sold_individually','no'), -(12391,945,'_virtual','no'), -(12392,945,'_downloadable','no'), -(12393,945,'_download_limit','-1'), -(12394,945,'_download_expiry','-1'), -(12395,945,'_stock',NULL), -(12396,945,'_stock_status','instock'), -(12397,945,'_wc_average_rating','0'), -(12398,945,'_wc_review_count','0'), -(12399,945,'attribute_pa_size','52'), -(12400,945,'_product_version','9.9.3'), -(12401,946,'_variation_description',''), -(12402,946,'total_sales','0'), -(12403,946,'_tax_status','taxable'), -(12404,946,'_tax_class','parent'), -(12405,946,'_manage_stock','no'), -(12406,946,'_backorders','no'), -(12407,946,'_sold_individually','no'), -(12408,946,'_virtual','no'), -(12409,946,'_downloadable','no'), -(12410,946,'_download_limit','-1'), -(12411,946,'_download_expiry','-1'), -(12412,946,'_stock',NULL), -(12413,946,'_stock_status','instock'), -(12414,946,'_wc_average_rating','0'), -(12415,946,'_wc_review_count','0'), -(12416,946,'attribute_pa_size','54'), -(12417,946,'_product_version','9.9.3'), -(12418,947,'_variation_description',''), -(12419,947,'total_sales','0'), -(12420,947,'_tax_status','taxable'), -(12421,947,'_tax_class','parent'), -(12422,947,'_manage_stock','no'), -(12423,947,'_backorders','no'), -(12424,947,'_sold_individually','no'), -(12425,947,'_virtual','no'), -(12426,947,'_downloadable','no'), -(12427,947,'_download_limit','-1'), -(12428,947,'_download_expiry','-1'), -(12429,947,'_stock',NULL), -(12430,947,'_stock_status','instock'), -(12431,947,'_wc_average_rating','0'), -(12432,947,'_wc_review_count','0'), -(12433,947,'attribute_pa_size','56'), -(12434,947,'_product_version','9.9.3'), -(12435,948,'_variation_description',''), -(12436,948,'total_sales','0'), -(12437,948,'_tax_status','taxable'), -(12438,948,'_tax_class','parent'), -(12439,948,'_manage_stock','no'), -(12440,948,'_backorders','no'), -(12441,948,'_sold_individually','no'), -(12442,948,'_virtual','no'), -(12443,948,'_downloadable','no'), -(12444,948,'_download_limit','-1'), -(12445,948,'_download_expiry','-1'), -(12446,948,'_stock',NULL), -(12447,948,'_stock_status','instock'), -(12448,948,'_wc_average_rating','0'), -(12449,948,'_wc_review_count','0'), -(12450,948,'attribute_pa_size','58'), -(12451,948,'_product_version','9.9.3'), -(12452,949,'_variation_description',''), -(12453,949,'total_sales','0'), -(12454,949,'_tax_status','taxable'), -(12455,949,'_tax_class','parent'), -(12456,949,'_manage_stock','no'), -(12457,949,'_backorders','no'), -(12458,949,'_sold_individually','no'), -(12459,949,'_virtual','no'), -(12460,949,'_downloadable','no'), -(12461,949,'_download_limit','-1'), -(12462,949,'_download_expiry','-1'), -(12463,949,'_stock',NULL), -(12464,949,'_stock_status','instock'), -(12465,949,'_wc_average_rating','0'), -(12466,949,'_wc_review_count','0'), -(12467,949,'attribute_pa_size','60'), -(12468,949,'_product_version','9.9.3'), -(12469,950,'_variation_description',''), -(12470,950,'total_sales','0'), -(12471,950,'_tax_status','taxable'), -(12472,950,'_tax_class','parent'), -(12473,950,'_manage_stock','no'), -(12474,950,'_backorders','no'), -(12475,950,'_sold_individually','no'), -(12476,950,'_virtual','no'), -(12477,950,'_downloadable','no'), -(12478,950,'_download_limit','-1'), -(12479,950,'_download_expiry','-1'), -(12480,950,'_stock',NULL), -(12481,950,'_stock_status','instock'), -(12482,950,'_wc_average_rating','0'), -(12483,950,'_wc_review_count','0'), -(12484,950,'attribute_pa_size','62'), -(12485,950,'_product_version','9.9.3'), -(12486,951,'_variation_description',''), -(12487,951,'total_sales','0'), -(12488,951,'_tax_status','taxable'), -(12489,951,'_tax_class','parent'), -(12490,951,'_manage_stock','no'), -(12491,951,'_backorders','no'), -(12492,951,'_sold_individually','no'), -(12493,951,'_virtual','no'), -(12494,951,'_downloadable','no'), -(12495,951,'_download_limit','-1'), -(12496,951,'_download_expiry','-1'), -(12497,951,'_stock',NULL), -(12498,951,'_stock_status','instock'), -(12499,951,'_wc_average_rating','0'), -(12500,951,'_wc_review_count','0'), -(12501,951,'attribute_pa_size','64'), -(12502,951,'_product_version','9.9.3'), -(12503,944,'_sku','UTEKI-B-s-50'), -(12504,944,'_regular_price','110'), -(12505,944,'_thumbnail_id','0'), -(12506,944,'_price','110'), -(12507,945,'_sku','UTEKI-B-s-52'), -(12508,945,'_regular_price','110'), -(12509,945,'_thumbnail_id','0'), -(12510,945,'_price','110'), -(12511,946,'_sku','UTEKI-B-s-54'), -(12512,946,'_regular_price','110'), -(12513,946,'_thumbnail_id','0'), -(12514,946,'_price','110'), -(12515,947,'_sku','UTEKI-B-s-56'), -(12516,947,'_regular_price','110'), -(12517,947,'_thumbnail_id','0'), -(12518,947,'_price','110'), -(12519,948,'_sku','UTEKI-B-s-58'), -(12520,948,'_regular_price','110'), -(12521,948,'_thumbnail_id','0'), -(12522,948,'_price','110'), -(12523,949,'_sku','UTEKI-B-s-60'), -(12524,949,'_regular_price','110'), -(12525,949,'_thumbnail_id','0'), -(12526,949,'_price','110'), -(12527,950,'_sku','UTEKI-B-s-62'), -(12528,950,'_regular_price','110'), -(12529,950,'_thumbnail_id','0'), -(12530,950,'_price','110'), -(12531,951,'_sku','UTEKI-B-s-64'), -(12532,951,'_regular_price','110'), -(12533,951,'_thumbnail_id','0'), -(12534,951,'_price','110'), -(12535,941,'_price','110'), -(12537,941,'_regular_price','110'), -(12548,953,'total_sales','0'), -(12549,953,'_tax_status','taxable'), -(12550,953,'_tax_class',''), -(12551,953,'_manage_stock','no'), -(12552,953,'_backorders','no'), -(12553,953,'_sold_individually','no'), -(12554,953,'_virtual','no'), -(12555,953,'_downloadable','no'), -(12556,953,'_download_limit','-1'), -(12557,953,'_download_expiry','-1'), -(12558,953,'_thumbnail_id','1342'), -(12559,953,'_stock',NULL), -(12560,953,'_stock_status','instock'), -(12561,953,'_wc_average_rating','0'), -(12562,953,'_wc_review_count','0'), -(12563,953,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12564,953,'_product_version','9.9.5'), -(12568,954,'_variation_description',''), -(12569,954,'_sku','UTEKI-B-s-50-1'), -(12570,954,'_regular_price','115'), -(12571,954,'total_sales','0'), -(12572,954,'_tax_status','taxable'), -(12573,954,'_tax_class','parent'), -(12574,954,'_manage_stock','no'), -(12575,954,'_backorders','no'), -(12576,954,'_sold_individually','no'), -(12577,954,'_virtual','no'), -(12578,954,'_downloadable','no'), -(12579,954,'_download_limit','-1'), -(12580,954,'_download_expiry','-1'), -(12581,954,'_thumbnail_id','0'), -(12582,954,'_stock',NULL), -(12583,954,'_stock_status','instock'), -(12584,954,'_wc_average_rating','0'), -(12585,954,'_wc_review_count','0'), -(12586,954,'attribute_pa_size','50'), -(12587,954,'_price','115'), -(12588,954,'_product_version','9.9.3'), -(12589,955,'_variation_description',''), -(12590,955,'_sku','UTEKI-B-s-52-1'), -(12591,955,'_regular_price','115'), -(12592,955,'total_sales','0'), -(12593,955,'_tax_status','taxable'), -(12594,955,'_tax_class','parent'), -(12595,955,'_manage_stock','no'), -(12596,955,'_backorders','no'), -(12597,955,'_sold_individually','no'), -(12598,955,'_virtual','no'), -(12599,955,'_downloadable','no'), -(12600,955,'_download_limit','-1'), -(12601,955,'_download_expiry','-1'), -(12602,955,'_thumbnail_id','0'), -(12603,955,'_stock',NULL), -(12604,955,'_stock_status','instock'), -(12605,955,'_wc_average_rating','0'), -(12606,955,'_wc_review_count','0'), -(12607,955,'attribute_pa_size','52'), -(12608,955,'_price','115'), -(12609,955,'_product_version','9.9.3'), -(12610,956,'_variation_description',''), -(12611,956,'_sku','UTEKI-B-s-54-1'), -(12612,956,'_regular_price','115'), -(12613,956,'total_sales','0'), -(12614,956,'_tax_status','taxable'), -(12615,956,'_tax_class','parent'), -(12616,956,'_manage_stock','no'), -(12617,956,'_backorders','no'), -(12618,956,'_sold_individually','no'), -(12619,956,'_virtual','no'), -(12620,956,'_downloadable','no'), -(12621,956,'_download_limit','-1'), -(12622,956,'_download_expiry','-1'), -(12623,956,'_thumbnail_id','0'), -(12624,956,'_stock',NULL), -(12625,956,'_stock_status','instock'), -(12626,956,'_wc_average_rating','0'), -(12627,956,'_wc_review_count','0'), -(12628,956,'attribute_pa_size','54'), -(12629,956,'_price','115'), -(12630,956,'_product_version','9.9.3'), -(12631,957,'_variation_description',''), -(12632,957,'_sku','UTEKI-B-s-56-1'), -(12633,957,'_regular_price','115'), -(12634,957,'total_sales','0'), -(12635,957,'_tax_status','taxable'), -(12636,957,'_tax_class','parent'), -(12637,957,'_manage_stock','no'), -(12638,957,'_backorders','no'), -(12639,957,'_sold_individually','no'), -(12640,957,'_virtual','no'), -(12641,957,'_downloadable','no'), -(12642,957,'_download_limit','-1'), -(12643,957,'_download_expiry','-1'), -(12644,957,'_thumbnail_id','0'), -(12645,957,'_stock',NULL), -(12646,957,'_stock_status','instock'), -(12647,957,'_wc_average_rating','0'), -(12648,957,'_wc_review_count','0'), -(12649,957,'attribute_pa_size','56'), -(12650,957,'_price','115'), -(12651,957,'_product_version','9.9.3'), -(12652,958,'_variation_description',''), -(12653,958,'_sku','UTEKI-B-s-58-1'), -(12654,958,'_regular_price','115'), -(12655,958,'total_sales','0'), -(12656,958,'_tax_status','taxable'), -(12657,958,'_tax_class','parent'), -(12658,958,'_manage_stock','no'), -(12659,958,'_backorders','no'), -(12660,958,'_sold_individually','no'), -(12661,958,'_virtual','no'), -(12662,958,'_downloadable','no'), -(12663,958,'_download_limit','-1'), -(12664,958,'_download_expiry','-1'), -(12665,958,'_thumbnail_id','0'), -(12666,958,'_stock',NULL), -(12667,958,'_stock_status','instock'), -(12668,958,'_wc_average_rating','0'), -(12669,958,'_wc_review_count','0'), -(12670,958,'attribute_pa_size','58'), -(12671,958,'_price','115'), -(12672,958,'_product_version','9.9.3'), -(12673,959,'_variation_description',''), -(12674,959,'_sku','UTEKI-B-s-60-1'), -(12675,959,'_regular_price','115'), -(12676,959,'total_sales','0'), -(12677,959,'_tax_status','taxable'), -(12678,959,'_tax_class','parent'), -(12679,959,'_manage_stock','no'), -(12680,959,'_backorders','no'), -(12681,959,'_sold_individually','no'), -(12682,959,'_virtual','no'), -(12683,959,'_downloadable','no'), -(12684,959,'_download_limit','-1'), -(12685,959,'_download_expiry','-1'), -(12686,959,'_thumbnail_id','0'), -(12687,959,'_stock',NULL), -(12688,959,'_stock_status','instock'), -(12689,959,'_wc_average_rating','0'), -(12690,959,'_wc_review_count','0'), -(12691,959,'attribute_pa_size','60'), -(12692,959,'_price','115'), -(12693,959,'_product_version','9.9.3'), -(12694,960,'_variation_description',''), -(12695,960,'_sku','UTEKI-B-s-62-1'), -(12696,960,'_regular_price','115'), -(12697,960,'total_sales','0'), -(12698,960,'_tax_status','taxable'), -(12699,960,'_tax_class','parent'), -(12700,960,'_manage_stock','no'), -(12701,960,'_backorders','no'), -(12702,960,'_sold_individually','no'), -(12703,960,'_virtual','no'), -(12704,960,'_downloadable','no'), -(12705,960,'_download_limit','-1'), -(12706,960,'_download_expiry','-1'), -(12707,960,'_thumbnail_id','0'), -(12708,960,'_stock',NULL), -(12709,960,'_stock_status','instock'), -(12710,960,'_wc_average_rating','0'), -(12711,960,'_wc_review_count','0'), -(12712,960,'attribute_pa_size','62'), -(12713,960,'_price','115'), -(12714,960,'_product_version','9.9.3'), -(12715,961,'_variation_description',''), -(12716,961,'_sku','UTEKI-B-s-64-1'), -(12717,961,'_regular_price','115'), -(12718,961,'total_sales','0'), -(12719,961,'_tax_status','taxable'), -(12720,961,'_tax_class','parent'), -(12721,961,'_manage_stock','no'), -(12722,961,'_backorders','no'), -(12723,961,'_sold_individually','no'), -(12724,961,'_virtual','no'), -(12725,961,'_downloadable','no'), -(12726,961,'_download_limit','-1'), -(12727,961,'_download_expiry','-1'), -(12728,961,'_thumbnail_id','0'), -(12729,961,'_stock',NULL), -(12730,961,'_stock_status','instock'), -(12731,961,'_wc_average_rating','0'), -(12732,961,'_wc_review_count','0'), -(12733,961,'attribute_pa_size','64'), -(12734,961,'_price','115'), -(12735,961,'_product_version','9.9.3'), -(12737,953,'_edit_lock','1755446542:1'), -(12738,962,'_wp_attached_file','2025/06/UTEKI-B-g.jpg'), -(12739,962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-B-g.jpg\";s:8:\"filesize\";i:181915;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12740,953,'_edit_last','1'), -(12741,962,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated sterling silver'), -(12742,963,'_wp_attached_file','2025/06/DSC00670.jpg'), -(12743,963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00670.jpg\";s:8:\"filesize\";i:1396939;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00670-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990764\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12744,963,'_wp_attachment_image_alt',''), -(12745,953,'_price','115'), -(12754,268,'_photos_colonne_gauche|||0|value','725'), -(12755,268,'_photos_colonne_droite|||0|value','704'), -(12756,268,'_photos_colonne_droite|||1|value','270'), -(12757,268,'_haiku_details_produit',''), -(12758,288,'_price','60'), -(12759,288,'_price','90'), -(12764,285,'_price','55'), -(12765,285,'_price','85'), -(12798,968,'_wp_attached_file','2024/09/PIASU-B-s.jpg'), -(12799,968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/PIASU-B-s.jpg\";s:8:\"filesize\";i:187836;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12800,968,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops.'), -(12807,168,'_price','100'), -(12808,168,'_price','110'), -(12809,168,'_photos_colonne_gauche|||0|value','726'), -(12810,168,'_photos_colonne_droite|||0|value','180'), -(12811,168,'_photos_colonne_droite|||1|value','177'), -(12812,168,'_photos_colonne_droite|||2|value','178'), -(12813,168,'_photos_colonne_droite|||3|value','182'), -(12814,168,'_photos_colonne_droite|||4|value','179'), -(12815,168,'_photos_colonne_droite|||5|value','826'), -(12816,168,'_haiku_details_produit',''), -(12817,969,'_wp_attached_file','2024/10/TANEMAKI-C-1.jpg'), -(12818,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/TANEMAKI-C-1.jpg\";s:8:\"filesize\";i:581610;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"TANEMAKI-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12819,969,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), -(12828,521,'_photos_colonne_gauche|||0|value','925'), -(12829,521,'_photos_colonne_droite|||0|value','831'), -(12830,521,'_photos_colonne_droite|||1|value','749'), -(12831,521,'_haiku_details_produit',''), -(12832,515,'_photos_colonne_gauche|||0|value','927'), -(12833,515,'_photos_colonne_droite|||0|value','832'), -(12834,515,'_photos_colonne_droite|||1|value','747'), -(12835,515,'_haiku_details_produit',''), -(12836,982,'total_sales','0'), -(12837,982,'_tax_status','taxable'), -(12838,982,'_tax_class',''), -(12839,982,'_manage_stock','no'), -(12840,982,'_backorders','no'), -(12841,982,'_sold_individually','no'), -(12842,982,'_virtual','no'), -(12843,982,'_downloadable','no'), -(12844,982,'_download_limit','-1'), -(12845,982,'_download_expiry','-1'), -(12847,982,'_stock',NULL), -(12848,982,'_stock_status','instock'), -(12849,982,'_wc_average_rating','0'), -(12850,982,'_wc_review_count','0'), -(12851,982,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12852,982,'_product_version','10.1.2'), -(13024,982,'_price','95'), -(13025,982,'_edit_lock','1758717424:1'), -(13026,982,'_edit_last','1'), -(13030,992,'_wp_attached_file','2025/06/DSC00689.jpg'), -(13031,992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4912;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00689.jpg\";s:8:\"filesize\";i:1445969;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00689-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13032,992,'_wp_attachment_image_alt','Uteki necklaces with a droplet pendant and prehnite oval stone.'), -(13033,993,'_wp_attached_file','2025/06/DSC00684.jpg'), -(13034,993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2137;s:6:\"height\";i:2138;s:4:\"file\";s:20:\"2025/06/DSC00684.jpg\";s:8:\"filesize\";i:950776;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00684-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13035,993,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. Silver version'), -(13036,982,'_sku','UTEKI-C-s'), -(13037,982,'_regular_price','95'), -(13042,994,'_sku','UTEKI-C-g'), -(13043,994,'_regular_price','100'), -(13044,994,'total_sales','0'), -(13045,994,'_tax_status','taxable'), -(13046,994,'_tax_class',''), -(13047,994,'_manage_stock','no'), -(13048,994,'_backorders','no'), -(13049,994,'_sold_individually','no'), -(13050,994,'_virtual','no'), -(13051,994,'_downloadable','no'), -(13052,994,'_download_limit','-1'), -(13053,994,'_download_expiry','-1'), -(13054,994,'_thumbnail_id','1345'), -(13055,994,'_stock',NULL), -(13056,994,'_stock_status','instock'), -(13057,994,'_wc_average_rating','0'), -(13058,994,'_wc_review_count','0'), -(13059,994,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(13060,994,'_product_version','9.9.5'), -(13061,994,'_price','100'), -(13066,994,'_edit_lock','1755446838:1'), -(13070,994,'_edit_last','1'), -(13071,996,'_wp_attached_file','2025/06/DSC00699.jpg'), -(13072,996,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00699.jpg\";s:8:\"filesize\";i:1161535;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00699-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13073,996,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone.'), -(13078,941,'_sku','UTEKI-B-s'), -(13082,953,'_sku','UTEKI-B-g'), -(13100,1004,'_sku','PIASU-CR'), -(13101,1004,'total_sales','1'), -(13102,1004,'_tax_status','taxable'), -(13103,1004,'_tax_class',''), -(13104,1004,'_manage_stock','no'), -(13105,1004,'_backorders','no'), -(13106,1004,'_sold_individually','no'), -(13107,1004,'_virtual','no'), -(13108,1004,'_downloadable','no'), -(13109,1004,'_download_limit','-1'), -(13110,1004,'_download_expiry','-1'), -(13112,1004,'_stock',NULL), -(13113,1004,'_stock_status','instock'), -(13114,1004,'_wc_average_rating','0'), -(13115,1004,'_wc_review_count','0'), -(13116,1004,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(13117,1004,'_product_version','10.1.0'), -(13124,1005,'_variation_description',''), -(13125,1005,'_sku','PIASU-CR-pair'), -(13126,1005,'_regular_price','70'), -(13127,1005,'total_sales','0'), -(13128,1005,'_tax_status','taxable'), -(13129,1005,'_tax_class','parent'), -(13130,1005,'_manage_stock','no'), -(13131,1005,'_backorders','no'), -(13132,1005,'_sold_individually','no'), -(13133,1005,'_virtual','no'), -(13134,1005,'_downloadable','no'), -(13135,1005,'_download_limit','-1'), -(13136,1005,'_download_expiry','-1'), -(13137,1005,'_thumbnail_id','0'), -(13138,1005,'_stock',NULL), -(13139,1005,'_stock_status','instock'), -(13140,1005,'_wc_average_rating','0'), -(13141,1005,'_wc_review_count','0'), -(13142,1005,'attribute_pa_side','pair'), -(13143,1005,'_price','70'), -(13144,1005,'_product_version','9.9.5'), -(13189,1004,'_edit_lock','1757163627:1'), -(13190,1004,'_edit_last','1'), -(13191,1008,'_wp_attached_file','2025/07/PIASU-CR.jpg'), -(13192,1008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2025/07/PIASU-CR.jpg\";s:8:\"filesize\";i:167258;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PIASU-CR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17860;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13193,1008,'_wp_attachment_image_alt','Piasu open hoops in sterling silver'), -(13194,1009,'_wp_attached_file','2025/07/IMG_4071.jpg'), -(13195,1009,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2098;s:6:\"height\";i:2800;s:4:\"file\";s:20:\"2025/07/IMG_4071.jpg\";s:8:\"filesize\";i:1221354;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_4071-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28289;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:4:\"1.78\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 14 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1751569172\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.86\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13196,1009,'_wp_attachment_image_alt',''), -(13197,1010,'_wp_attached_file','2025/07/DSC00642.jpg'), -(13198,1010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2688;s:6:\"height\";i:2688;s:4:\"file\";s:20:\"2025/07/DSC00642.jpg\";s:8:\"filesize\";i:1374954;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00642-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989772\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13199,1010,'_wp_attachment_image_alt','Piasu open hoops in sterling silver'), -(13200,1011,'_variation_description',''), -(13201,1011,'total_sales','0'), -(13202,1011,'_tax_status','taxable'), -(13203,1011,'_tax_class','parent'), -(13204,1011,'_manage_stock','no'), -(13205,1011,'_backorders','no'), -(13206,1011,'_sold_individually','no'), -(13207,1011,'_virtual','no'), -(13208,1011,'_downloadable','no'), -(13209,1011,'_download_limit','-1'), -(13210,1011,'_download_expiry','-1'), -(13211,1011,'_stock',NULL), -(13212,1011,'_stock_status','instock'), -(13213,1011,'_wc_average_rating','0'), -(13214,1011,'_wc_review_count','0'), -(13215,1011,'attribute_pa_side','one'), -(13216,1011,'_product_version','9.9.5'), -(13222,1011,'_sku','PIASU-CR-one'), -(13223,1011,'_regular_price','45'), -(13224,1011,'_thumbnail_id','0'), -(13225,1011,'_price','45'), -(13226,1004,'_price','45'), -(13227,1004,'_price','70'), -(13902,1342,'_wp_attached_file','2025/08/UTEKI-B-g.jpg'), -(13903,1342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2025/08/UTEKI-B-g.jpg\";s:8:\"filesize\";i:1066961;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18584;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390728870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13904,1342,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated sterling silver'), -(13905,1343,'_wp_attached_file','2025/08/UTEKI-B-s.jpg'), -(13906,1343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2025/08/UTEKI-B-s.jpg\";s:8:\"filesize\";i:1181300;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390728769\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13907,1343,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver'), -(13908,941,'_thumbnail_id','1343'), -(13909,941,'_photos_colonne_gauche|||0|value','1343'), -(13910,941,'_photos_colonne_droite|||0|value','943'), -(13911,941,'_haiku_details_produit',''), -(13912,953,'_photos_colonne_gauche|||0|value','1342'), -(13913,953,'_photos_colonne_droite|||0|value','963'), -(13914,953,'_haiku_details_produit',''), -(13917,1345,'_wp_attached_file','2025/06/UTEKI-C-g-1.jpg'), -(13918,1345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:23:\"2025/06/UTEKI-C-g-1.jpg\";s:8:\"filesize\";i:1597909;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"UTEKI-C-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390800588\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13919,1345,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In gold plated silver'), -(13920,994,'_photos_colonne_gauche|||0|value','1345'), -(13921,994,'_photos_colonne_droite|||0|value','992'), -(13922,994,'_photos_colonne_droite|||1|value','996'), -(13923,994,'_haiku_details_produit',''), -(13924,1346,'_wp_attached_file','2025/06/UTEKI-C-s-1.jpg'), -(13925,1346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3717;s:6:\"height\";i:2974;s:4:\"file\";s:23:\"2025/06/UTEKI-C-s-1.jpg\";s:8:\"filesize\";i:753912;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"UTEKI-C-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390800746\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13926,1346,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In gold plated silver.'), -(13927,982,'_thumbnail_id','1346'), -(13932,1347,'_wp_attached_file','2024/11/BOROBORO-B-st.jpg'), -(13933,1347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3651;s:6:\"height\";i:2921;s:4:\"file\";s:25:\"2024/11/BOROBORO-B-st.jpg\";s:8:\"filesize\";i:764276;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"BOROBORO-B-st-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16603;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B-st-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3355;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729086\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13934,1347,'_wp_attachment_image_alt','BoroBoro minimalist sterling silver ring with movable tiger eye bead.'), -(13935,1348,'_wp_attached_file','2024/11/BOROBORO-B.jpg'), -(13936,1348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:22:\"2024/11/BOROBORO-B.jpg\";s:8:\"filesize\";i:964649;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"BOROBORO-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729277\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13937,1348,'_wp_attachment_image_alt','BoroBoro minimalist rings with movable bead.'), -(13943,1349,'_wp_attached_file','2024/11/BOROBORO-B-sj.jpg'), -(13944,1349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3844;s:6:\"height\";i:3076;s:4:\"file\";s:25:\"2024/11/BOROBORO-B-sj.jpg\";s:8:\"filesize\";i:942770;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"BOROBORO-B-sj-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16514;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B-sj-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3313;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729118\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13945,1349,'_wp_attachment_image_alt','BoroBoro bead ring silver and honey jade.'), -(13952,1351,'_wp_attached_file','2024/11/BOROBORO-B-g.jpg'), -(13953,1351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3852;s:6:\"height\";i:3081;s:4:\"file\";s:24:\"2024/11/BOROBORO-B-g.jpg\";s:8:\"filesize\";i:896746;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BOROBORO-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16930;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"BOROBORO-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3647;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729212\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13954,1351,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable prehnite bead.'), -(13960,1353,'_wp_attached_file','2024/10/DSC9237-1.jpg'), -(13961,1353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/DSC9237-1.jpg\";s:8:\"filesize\";i:711273;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9237-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14622;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13962,1354,'_wp_attached_file','2024/10/DSC9240.jpg'), -(13963,1354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3752;s:6:\"height\";i:3002;s:4:\"file\";s:19:\"2024/10/DSC9240.jpg\";s:8:\"filesize\";i:1559638;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9240-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13619;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13964,1355,'_wp_attached_file','2024/10/DSC9242-1.jpg'), -(13965,1355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:21:\"2024/10/DSC9242-1.jpg\";s:8:\"filesize\";i:299229;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9242-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12533;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13966,1353,'_wp_attachment_image_alt','Fuyou sterling silver chain bracelet with fluid element and gold plated details.'), -(13967,1354,'_wp_attachment_image_alt','Fuyou sterling silver chain bracelet with fluid element and gold plated details.'), -(13968,1355,'_wp_attachment_image_alt','Fuyou sterling silver chain bracelet with fluid element and gold plated details.'), -(13969,1356,'_wp_attached_file','2024/10/FUYOU-BR.jpg'), -(13970,1356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4029;s:6:\"height\";i:3223;s:4:\"file\";s:20:\"2024/10/FUYOU-BR.jpg\";s:8:\"filesize\";i:904391;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19450;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"FUYOU-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5622;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390801216\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13971,1356,'_wp_attachment_image_alt',''), -(13972,258,'_thumbnail_id','1356'), -(13973,258,'_photos_colonne_gauche|||0|value','1356'), -(13975,258,'_photos_colonne_droite|||1|value','1354'), -(13976,258,'_photos_colonne_droite|||2|value','1353'), -(13977,258,'_haiku_details_produit',''), -(13993,1365,'_wp_attached_file','2024/11/FUYOU-B0.jpg'), -(13994,1365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3920;s:6:\"height\";i:3136;s:4:\"file\";s:20:\"2024/11/FUYOU-B0.jpg\";s:8:\"filesize\";i:910436;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-B0-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19325;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"FUYOU-B0-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5479;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390810915\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13995,1365,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(13996,1366,'_wp_attached_file','2024/11/DSC0240-1.jpg'), -(13997,1366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/DSC0240-1.jpg\";s:8:\"filesize\";i:613180;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC0240-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13998,1366,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(13999,1367,'_wp_attached_file','2024/11/DSC0249-1.jpg'), -(14000,1367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/DSC0249-1.jpg\";s:8:\"filesize\";i:483245;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC0249-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16779;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14001,1367,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(14002,766,'_price','85'), -(14003,766,'_price','85'), -(14004,766,'_thumbnail_id','1365'), -(14005,766,'_regular_price','85'), -(14006,766,'_photos_colonne_gauche|||0|value','1365'), -(14007,766,'_photos_colonne_droite|||0|value','1366'), -(14008,766,'_photos_colonne_droite|||1|value','1367'), -(14009,766,'_haiku_details_produit',''), -(14012,1369,'_wp_attached_file','2024/10/HATTARI-CR2-arg.jpg'), -(14013,1369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3922;s:6:\"height\";i:3138;s:4:\"file\";s:27:\"2024/10/HATTARI-CR2-arg.jpg\";s:8:\"filesize\";i:802503;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HATTARI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17671;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"HATTARI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17671;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390810186\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14014,1369,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver.'), -(14020,1371,'_wp_attached_file','2024/10/HATTARI-CR2-or.jpg'), -(14021,1371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3704;s:6:\"height\";i:2963;s:4:\"file\";s:26:\"2024/10/HATTARI-CR2-or.jpg\";s:8:\"filesize\";i:763800;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"HATTARI-CR2-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19395;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"HATTARI-CR2-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5700;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390810363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14022,1371,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(14023,288,'_thumbnail_id','1371'), -(14024,288,'_photos_colonne_gauche|||0|value','1371'), -(14025,288,'_photos_colonne_droite|||0|value','290'), -(14026,288,'_photos_colonne_droite|||1|value','689'), -(14027,288,'_haiku_details_produit',''), -(14028,285,'_thumbnail_id','1369'), -(14029,285,'_photos_colonne_gauche|||0|value','1369'), -(14030,285,'_photos_colonne_droite|||0|value','287'), -(14031,285,'_haiku_details_produit',''), -(14046,1377,'_wp_attached_file','2024/11/MUGURA-CR1solo.jpg'), -(14047,1377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:26:\"2024/11/MUGURA-CR1solo.jpg\";s:8:\"filesize\";i:906768;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR1solo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16182;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"MUGURA-CR1solo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16182;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390809607\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14048,1377,'_wp_attachment_image_alt','Mugura solo hoop with wavy gold plated element.'), -(14049,496,'_thumbnail_id','1377'), -(14054,496,'_photos_colonne_gauche|||0|value','1377'), -(14055,496,'_photos_colonne_droite|||0|value','756'), -(14056,496,'_photos_colonne_droite|||1|value','757'), -(14057,496,'_haiku_details_produit',''), -(14062,1378,'_wp_attached_file','2025/08/PIASU-CR-1.jpg'), -(14063,1378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3682;s:6:\"height\";i:2946;s:4:\"file\";s:22:\"2025/08/PIASU-CR-1.jpg\";s:8:\"filesize\";i:233367;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-CR-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4549;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14064,1379,'_wp_attached_file','2025/08/PIASU-CR-2.jpg'), -(14065,1379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3768;s:6:\"height\";i:3015;s:4:\"file\";s:22:\"2025/08/PIASU-CR-2.jpg\";s:8:\"filesize\";i:733914;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-CR-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5855;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14066,1378,'_wp_attachment_image_alt','Piasu open hoops ending with a silver bead.'), -(14067,1379,'_wp_attachment_image_alt','Piasu open hoops ending with a silver bead.'), -(14068,1004,'_thumbnail_id','1378'), -(14069,1004,'_photos_colonne_gauche|||0|value','1378'), -(14070,1004,'_photos_colonne_droite|||0|value','1010'), -(14071,1004,'_photos_colonne_droite|||1|value','1379'), -(14072,1004,'_photos_colonne_droite|||2|value','1009'), -(14073,1004,'_haiku_details_produit',''), -(14075,240,'_price','80'), -(14079,1381,'_wp_attached_file','2024/10/FUYOU-C-2.jpg'), -(14080,1381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2024/10/FUYOU-C-2.jpg\";s:8:\"filesize\";i:987866;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-C-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804372\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14081,1381,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(14082,1382,'_wp_attached_file','2024/10/FUYOU-C-1-1.jpg'), -(14083,1382,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:23:\"2024/10/FUYOU-C-1-1.jpg\";s:8:\"filesize\";i:1186192;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"FUYOU-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20218;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"FUYOU-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6150;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804434\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14084,1382,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(14085,1382,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(14086,274,'_photos_colonne_gauche|||0|value','1382'), -(14087,274,'_photos_colonne_droite|||0|value','713'), -(14088,274,'_photos_colonne_droite|||1|value','1381'), -(14089,274,'_photos_colonne_droite|||2|value','679'), -(14090,274,'_haiku_details_produit',''), -(14095,133,'_price','95'), -(14096,1383,'_wp_attached_file','2024/10/IKKAN-C-1-1.jpg'), -(14097,1383,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:23:\"2024/10/IKKAN-C-1-1.jpg\";s:8:\"filesize\";i:1089765;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19467;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"IKKAN-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5780;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804098\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14098,1383,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with a mix of links gold plated details.'), -(14099,1384,'_wp_attached_file','2024/10/IKKAN-C-2-1.jpg'), -(14100,1384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3814;s:6:\"height\";i:3051;s:4:\"file\";s:23:\"2024/10/IKKAN-C-2-1.jpg\";s:8:\"filesize\";i:835517;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-C-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804077\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14101,1384,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with a mix of links gold plated details.'), -(14116,1388,'_wp_attached_file','2025/08/FUYOU-CR1.jpg'), -(14117,1388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3127;s:6:\"height\";i:2502;s:4:\"file\";s:21:\"2025/08/FUYOU-CR1.jpg\";s:8:\"filesize\";i:557492;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16077;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16077;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390808402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14118,1388,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with gold plated rings hanging.'), -(14119,318,'_thumbnail_id','1388'), -(14120,318,'_photos_colonne_gauche|||0|value','1388'), -(14121,318,'_photos_colonne_droite|||0|value','714'), -(14122,318,'_photos_colonne_droite|||1|value','324'), -(14123,318,'_photos_colonne_droite|||2|value','323'), -(14124,318,'_haiku_details_produit',''), -(14132,1391,'_wp_attached_file','2025/08/MUGURA-CR2-g.jpg'), -(14133,1391,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3973;s:6:\"height\";i:3179;s:4:\"file\";s:24:\"2025/08/MUGURA-CR2-g.jpg\";s:8:\"filesize\";i:864612;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17606;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"MUGURA-CR2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4221;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390808566\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14134,1391,'_wp_attachment_image_alt','Mugura minimalist gold plated silver hoops.'), -(14135,398,'_thumbnail_id','1391'), -(14136,398,'_photos_colonne_gauche|||0|value','1391'), -(14137,398,'_photos_colonne_droite|||0|value','400'), -(14138,398,'_photos_colonne_droite|||1|value','401'), -(14139,398,'_haiku_details_produit',''), -(14147,1393,'_wp_attached_file','2025/08/MUGURA-CR2-s.jpg'), -(14148,1393,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:24:\"2025/08/MUGURA-CR2-s.jpg\";s:8:\"filesize\";i:901135;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16952;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"MUGURA-CR2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3585;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390808580\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14149,1393,'_wp_attachment_image_alt','Mugura minimalist sterling silver hoops.'), -(14150,393,'_thumbnail_id','1393'), -(14151,393,'_photos_colonne_gauche|||0|value','1393'), -(14152,393,'_photos_colonne_droite|||0|value','397'), -(14153,393,'_photos_colonne_droite|||1|value','673'), -(14154,393,'_haiku_details_produit',''), -(14161,1395,'_wp_attached_file','2025/08/BOROBORO-BO2-s.jpg'), -(14162,1395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3904;s:6:\"height\";i:3124;s:4:\"file\";s:26:\"2025/08/BOROBORO-BO2-s.jpg\";s:8:\"filesize\";i:842962;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18681;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"BOROBORO-BO2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18681;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807710\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14163,1395,'_wp_attachment_image_alt','pair of Boroboro long sterling silver earrings with asymmetrical shapes.'), -(14164,183,'_thumbnail_id','1395'), -(14177,1396,'_wp_attached_file','2025/08/BOROBORO-BO2-g.jpg'), -(14178,1396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3887;s:6:\"height\";i:3109;s:4:\"file\";s:26:\"2025/08/BOROBORO-BO2-g.jpg\";s:8:\"filesize\";i:810245;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20806;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"BOROBORO-BO2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20806;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807479\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14179,1396,'_wp_attachment_image_alt','pair of Boroboro long gold plated earrings with asymmetrical shapes.'), -(14180,213,'_thumbnail_id','1396'), -(14186,1397,'_wp_attached_file','2024/10/DSCF7880.jpg'), -(14187,1397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3648;s:6:\"height\";i:4560;s:4:\"file\";s:20:\"2024/10/DSCF7880.jpg\";s:8:\"filesize\";i:1214559;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7880-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11851;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14188,1397,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(14189,1398,'_wp_attached_file','2024/10/DSCF7869.jpg'), -(14190,1398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4560;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2024/10/DSCF7869.jpg\";s:8:\"filesize\";i:881724;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7869-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14191,1398,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(14192,1399,'_wp_attached_file','2024/10/DSCF7860.jpg'), -(14193,1399,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4560;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2024/10/DSCF7860.jpg\";s:8:\"filesize\";i:703862;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7860-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14194,1399,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(14201,1400,'_photos_colonne_gauche|||0|value','1383'), -(14202,1400,'_photos_colonne_droite|||0|value','1397'), -(14203,1400,'_photos_colonne_droite|||1|value','1399'), -(14204,1400,'_photos_colonne_droite|||2|value','1384'), -(14205,1400,'_photos_colonne_droite|||3|value','1398'), -(14206,1400,'_haiku_details_produit',''), -(14207,263,'_photos_colonne_gauche|||0|value','1383'), -(14208,263,'_photos_colonne_droite|||0|value','1397'), -(14209,263,'_photos_colonne_droite|||1|value','1398'), -(14210,263,'_photos_colonne_droite|||2|value','1399'), -(14211,263,'_photos_colonne_droite|||3|value','1384'), -(14212,263,'_haiku_details_produit',''), -(14213,1401,'_sku','UTEKI-C-g-1'), -(14214,1401,'_regular_price','75'), -(14215,1401,'total_sales','0'), -(14216,1401,'_tax_status','taxable'), -(14217,1401,'_tax_class',''), -(14218,1401,'_manage_stock','no'), -(14219,1401,'_backorders','no'), -(14220,1401,'_sold_individually','no'), -(14221,1401,'_virtual','no'), -(14222,1401,'_downloadable','no'), -(14223,1401,'_download_limit','-1'), -(14224,1401,'_download_expiry','-1'), -(14225,1401,'_thumbnail_id','1402'), -(14226,1401,'_stock',NULL), -(14227,1401,'_stock_status','instock'), -(14228,1401,'_wc_average_rating','0'), -(14229,1401,'_wc_review_count','0'), -(14230,1401,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14231,1401,'_product_version','10.1.0'), -(14232,1401,'_price','75'), -(14237,1401,'_edit_lock','1757163461:1'), -(14238,1401,'_edit_last','1'), -(14239,1402,'_wp_attached_file','2025/09/UTEKI-CR-g.jpg'), -(14240,1402,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3851;s:6:\"height\";i:3081;s:4:\"file\";s:22:\"2025/09/UTEKI-CR-g.jpg\";s:8:\"filesize\";i:762160;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"UTEKI-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19207;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807161\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14241,1402,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14242,1403,'_wp_attached_file','2025/09/DSCF8538.jpg'), -(14243,1403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3238;s:6:\"height\";i:2591;s:4:\"file\";s:20:\"2025/09/DSCF8538.jpg\";s:8:\"filesize\";i:823345;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8538-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14244,1404,'_wp_attached_file','2025/09/DSCF8521.jpg'), -(14245,1404,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3432;s:6:\"height\";i:4290;s:4:\"file\";s:20:\"2025/09/DSCF8521.jpg\";s:8:\"filesize\";i:1379543;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8521-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14246,1405,'_wp_attached_file','2025/09/DSCF8493.jpg'), -(14247,1405,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2968;s:6:\"height\";i:3711;s:4:\"file\";s:20:\"2025/09/DSCF8493.jpg\";s:8:\"filesize\";i:1254939;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8493-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14248,1403,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14249,1404,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14250,1405,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14256,1401,'_photos_colonne_gauche|||0|value','1402'), -(14257,1401,'_photos_colonne_droite|||0|value','1403'), -(14258,1401,'_photos_colonne_droite|||1|value','1405'), -(14259,1401,'_photos_colonne_droite|||2|value','1404'), -(14260,1401,'_haiku_details_produit',''), -(14261,1406,'_sku','UTEKI-C-g-1-1'), -(14262,1406,'_regular_price','70'), -(14263,1406,'total_sales','0'), -(14264,1406,'_tax_status','taxable'), -(14265,1406,'_tax_class',''), -(14266,1406,'_manage_stock','no'), -(14267,1406,'_backorders','no'), -(14268,1406,'_sold_individually','no'), -(14269,1406,'_virtual','no'), -(14270,1406,'_downloadable','no'), -(14271,1406,'_download_limit','-1'), -(14272,1406,'_download_expiry','-1'), -(14273,1406,'_thumbnail_id','1407'), -(14274,1406,'_stock',NULL), -(14275,1406,'_stock_status','instock'), -(14276,1406,'_wc_average_rating','0'), -(14277,1406,'_wc_review_count','0'), -(14278,1406,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14279,1406,'_product_version','10.1.2'), -(14280,1406,'_price','70'), -(14286,1406,'_edit_lock','1757322613:1'), -(14287,1407,'_wp_attached_file','2025/09/UTEKI-CR-s.jpg'), -(14288,1407,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3673;s:6:\"height\";i:2938;s:4:\"file\";s:22:\"2025/09/UTEKI-CR-s.jpg\";s:8:\"filesize\";i:700775;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"UTEKI-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17756;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807140\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14289,1407,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14290,1406,'_edit_last','1'), -(14293,1409,'_wp_attached_file','2025/09/DSCF8461.jpg'), -(14294,1409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2554;s:6:\"height\";i:3192;s:4:\"file\";s:20:\"2025/09/DSCF8461.jpg\";s:8:\"filesize\";i:918417;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8461-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19078;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14295,1410,'_wp_attached_file','2025/09/DSCF8462.jpg'), -(14296,1410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3463;s:6:\"height\";i:4329;s:4:\"file\";s:20:\"2025/09/DSCF8462.jpg\";s:8:\"filesize\";i:1288706;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8462-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18916;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14299,1409,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14300,1410,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14311,1411,'_wp_attached_file','2025/09/DSCF8447.jpg'), -(14312,1411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2474;s:6:\"height\";i:3092;s:4:\"file\";s:20:\"2025/09/DSCF8447.jpg\";s:8:\"filesize\";i:811986;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8447-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15566;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14313,1411,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14314,1406,'_photos_colonne_gauche|||0|value','1407'), -(14315,1406,'_photos_colonne_droite|||0|value','1409'), -(14316,1406,'_photos_colonne_droite|||1|value','1411'), -(14317,1406,'_photos_colonne_droite|||2|value','1410'), -(14319,1406,'_haiku_details_produit',''), -(14320,1412,'_sku','BOROBORO-B2-st'), -(14321,1412,'total_sales','0'), -(14322,1412,'_tax_status','taxable'), -(14323,1412,'_tax_class',''), -(14324,1412,'_manage_stock','no'), -(14325,1412,'_backorders','no'), -(14326,1412,'_sold_individually','no'), -(14327,1412,'_virtual','no'), -(14328,1412,'_downloadable','no'), -(14329,1412,'_download_limit','-1'), -(14330,1412,'_download_expiry','-1'), -(14331,1412,'_thumbnail_id','1347'), -(14332,1412,'_stock',NULL), -(14333,1412,'_stock_status','instock'), -(14334,1412,'_wc_average_rating','0'), -(14335,1412,'_wc_review_count','0'), -(14336,1412,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14337,1412,'_product_version','10.1.2'), -(14344,1413,'_variation_description',''), -(14345,1413,'_sku','BOROBORO-B2-s-50-1'), -(14346,1413,'_regular_price','65'), -(14347,1413,'total_sales','0'), -(14348,1413,'_tax_status','taxable'), -(14349,1413,'_tax_class','parent'), -(14350,1413,'_manage_stock','no'), -(14351,1413,'_backorders','no'), -(14352,1413,'_sold_individually','no'), -(14353,1413,'_virtual','no'), -(14354,1413,'_downloadable','no'), -(14355,1413,'_download_limit','-1'), -(14356,1413,'_download_expiry','-1'), -(14357,1413,'_thumbnail_id','0'), -(14358,1413,'_stock',NULL), -(14359,1413,'_stock_status','instock'), -(14360,1413,'_wc_average_rating','0'), -(14361,1413,'_wc_review_count','0'), -(14362,1413,'attribute_pa_size','50'), -(14363,1413,'attribute_pa_stone',''), -(14364,1413,'_price','65'), -(14365,1413,'_product_version','10.1.2'), -(14366,1414,'_variation_description',''), -(14367,1414,'_sku','BOROBORO-B2-s-52-1'), -(14368,1414,'_regular_price','65'), -(14369,1414,'total_sales','0'), -(14370,1414,'_tax_status','taxable'), -(14371,1414,'_tax_class','parent'), -(14372,1414,'_manage_stock','no'), -(14373,1414,'_backorders','no'), -(14374,1414,'_sold_individually','no'), -(14375,1414,'_virtual','no'), -(14376,1414,'_downloadable','no'), -(14377,1414,'_download_limit','-1'), -(14378,1414,'_download_expiry','-1'), -(14379,1414,'_thumbnail_id','0'), -(14380,1414,'_stock',NULL), -(14381,1414,'_stock_status','instock'), -(14382,1414,'_wc_average_rating','0'), -(14383,1414,'_wc_review_count','0'), -(14384,1414,'attribute_pa_size','52'), -(14385,1414,'attribute_pa_stone',''), -(14386,1414,'_price','65'), -(14387,1414,'_product_version','10.1.2'), -(14388,1415,'_variation_description',''), -(14389,1415,'_sku','BOROBORO-B2-s-54-1'), -(14390,1415,'_regular_price','65'), -(14391,1415,'total_sales','0'), -(14392,1415,'_tax_status','taxable'), -(14393,1415,'_tax_class','parent'), -(14394,1415,'_manage_stock','no'), -(14395,1415,'_backorders','no'), -(14396,1415,'_sold_individually','no'), -(14397,1415,'_virtual','no'), -(14398,1415,'_downloadable','no'), -(14399,1415,'_download_limit','-1'), -(14400,1415,'_download_expiry','-1'), -(14401,1415,'_thumbnail_id','0'), -(14402,1415,'_stock',NULL), -(14403,1415,'_stock_status','instock'), -(14404,1415,'_wc_average_rating','0'), -(14405,1415,'_wc_review_count','0'), -(14406,1415,'attribute_pa_size','54'), -(14407,1415,'attribute_pa_stone',''), -(14408,1415,'_price','65'), -(14409,1415,'_product_version','10.1.2'), -(14410,1416,'_variation_description',''), -(14411,1416,'_sku','BOROBORO-B2-s-56-1'), -(14412,1416,'_regular_price','65'), -(14413,1416,'total_sales','0'), -(14414,1416,'_tax_status','taxable'), -(14415,1416,'_tax_class','parent'), -(14416,1416,'_manage_stock','no'), -(14417,1416,'_backorders','no'), -(14418,1416,'_sold_individually','no'), -(14419,1416,'_virtual','no'), -(14420,1416,'_downloadable','no'), -(14421,1416,'_download_limit','-1'), -(14422,1416,'_download_expiry','-1'), -(14423,1416,'_thumbnail_id','0'), -(14424,1416,'_stock',NULL), -(14425,1416,'_stock_status','instock'), -(14426,1416,'_wc_average_rating','0'), -(14427,1416,'_wc_review_count','0'), -(14428,1416,'attribute_pa_size','56'), -(14429,1416,'attribute_pa_stone',''), -(14430,1416,'_price','65'), -(14431,1416,'_product_version','10.1.2'), -(14432,1417,'_variation_description',''), -(14433,1417,'_sku','BOROBORO-B2-s-58-1'), -(14434,1417,'_regular_price','65'), -(14435,1417,'total_sales','0'), -(14436,1417,'_tax_status','taxable'), -(14437,1417,'_tax_class','parent'), -(14438,1417,'_manage_stock','no'), -(14439,1417,'_backorders','no'), -(14440,1417,'_sold_individually','no'), -(14441,1417,'_virtual','no'), -(14442,1417,'_downloadable','no'), -(14443,1417,'_download_limit','-1'), -(14444,1417,'_download_expiry','-1'), -(14445,1417,'_thumbnail_id','0'), -(14446,1417,'_stock',NULL), -(14447,1417,'_stock_status','instock'), -(14448,1417,'_wc_average_rating','0'), -(14449,1417,'_wc_review_count','0'), -(14450,1417,'attribute_pa_size','58'), -(14451,1417,'attribute_pa_stone',''), -(14452,1417,'_price','65'), -(14453,1417,'_product_version','10.1.2'), -(14454,1418,'_variation_description',''), -(14455,1418,'_sku','BOROBORO-B2-s-60-1'), -(14456,1418,'_regular_price','65'), -(14457,1418,'total_sales','0'), -(14458,1418,'_tax_status','taxable'), -(14459,1418,'_tax_class','parent'), -(14460,1418,'_manage_stock','no'), -(14461,1418,'_backorders','no'), -(14462,1418,'_sold_individually','no'), -(14463,1418,'_virtual','no'), -(14464,1418,'_downloadable','no'), -(14465,1418,'_download_limit','-1'), -(14466,1418,'_download_expiry','-1'), -(14467,1418,'_thumbnail_id','0'), -(14468,1418,'_stock',NULL), -(14469,1418,'_stock_status','instock'), -(14470,1418,'_wc_average_rating','0'), -(14471,1418,'_wc_review_count','0'), -(14472,1418,'attribute_pa_size','60'), -(14473,1418,'attribute_pa_stone',''), -(14474,1418,'_price','65'), -(14475,1418,'_product_version','10.1.2'), -(14476,1419,'_variation_description',''), -(14477,1419,'_regular_price','65'), -(14478,1419,'total_sales','0'), -(14479,1419,'_tax_status','taxable'), -(14480,1419,'_tax_class','parent'), -(14481,1419,'_manage_stock','no'), -(14482,1419,'_backorders','no'), -(14483,1419,'_sold_individually','no'), -(14484,1419,'_virtual','no'), -(14485,1419,'_downloadable','no'), -(14486,1419,'_download_limit','-1'), -(14487,1419,'_download_expiry','-1'), -(14488,1419,'_thumbnail_id','0'), -(14489,1419,'_stock',NULL), -(14490,1419,'_stock_status','instock'), -(14491,1419,'_wc_average_rating','0'), -(14492,1419,'_wc_review_count','0'), -(14493,1419,'attribute_pa_size','62'), -(14494,1419,'attribute_pa_stone',''), -(14495,1419,'_price','65'), -(14496,1419,'_product_version','10.1.2'), -(14497,1420,'_variation_description',''), -(14498,1420,'_sku','BOROBORO-B2-s-64-1'), -(14499,1420,'_regular_price','65'), -(14500,1420,'total_sales','0'), -(14501,1420,'_tax_status','taxable'), -(14502,1420,'_tax_class','parent'), -(14503,1420,'_manage_stock','no'), -(14504,1420,'_backorders','no'), -(14505,1420,'_sold_individually','no'), -(14506,1420,'_virtual','no'), -(14507,1420,'_downloadable','no'), -(14508,1420,'_download_limit','-1'), -(14509,1420,'_download_expiry','-1'), -(14510,1420,'_thumbnail_id','0'), -(14511,1420,'_stock',NULL), -(14512,1420,'_stock_status','instock'), -(14513,1420,'_wc_average_rating','0'), -(14514,1420,'_wc_review_count','0'), -(14515,1420,'attribute_pa_size','64'), -(14516,1420,'attribute_pa_stone',''), -(14517,1420,'_price','65'), -(14518,1420,'_product_version','10.1.2'), -(14519,1412,'_price','65'), -(14520,1412,'_edit_lock','1761726553:1'), -(14521,1412,'_edit_last','1'), -(14522,1412,'_photos_colonne_gauche|||0|value','1347'), -(14523,1412,'_photos_colonne_droite|||0|value','758'), -(14524,1412,'_photos_colonne_droite|||1|value','1348'), -(14525,1412,'_haiku_details_produit',''), -(14526,613,'_photos_colonne_gauche|||0|value','1351'), -(14527,613,'_photos_colonne_droite|||0|value','761'), -(14528,613,'_photos_colonne_droite|||1|value','1348'), -(14529,613,'_haiku_details_produit',''), -(14530,1422,'_wp_attached_file','2024/11/IMG_1504-1.jpg'), -(14531,1422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/11/IMG_1504-1.jpg\";s:8:\"filesize\";i:542654;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1504-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14532,1422,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable honey jade bead.'), -(14533,625,'_photos_colonne_gauche|||0|value','1349'), -(14534,625,'_photos_colonne_droite|||0|value','1422'), -(14535,625,'_photos_colonne_droite|||1|value','1348'), -(14536,625,'_haiku_details_produit',''), -(14561,1444,'_sku','PISHI-BO'), -(14563,1444,'total_sales','0'), -(14564,1444,'_tax_status','taxable'), -(14565,1444,'_tax_class',''), -(14566,1444,'_manage_stock','no'), -(14567,1444,'_backorders','no'), -(14568,1444,'_sold_individually','no'), -(14569,1444,'_virtual','no'), -(14570,1444,'_downloadable','no'), -(14571,1444,'_download_limit','-1'), -(14572,1444,'_download_expiry','-1'), -(14573,1444,'_thumbnail_id','1445'), -(14574,1444,'_stock',NULL), -(14575,1444,'_stock_status','instock'), -(14576,1444,'_wc_average_rating','0'), -(14577,1444,'_wc_review_count','0'), -(14578,1444,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14579,1444,'_product_version','10.3.3'), -(14587,1444,'_edit_lock','1761727088:1'), -(14588,1444,'_edit_last','1'), -(14589,1445,'_wp_attached_file','2025/09/PISHI-BO.jpg'), -(14590,1445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3855;s:6:\"height\";i:3084;s:4:\"file\";s:20:\"2025/09/PISHI-BO.jpg\";s:8:\"filesize\";i:1111576;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PISHI-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22221;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PISHI-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7449;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393636870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14591,1445,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14592,1446,'_wp_attached_file','2025/09/DSCF8198.jpg'), -(14593,1446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3037;s:6:\"height\";i:3680;s:4:\"file\";s:20:\"2025/09/DSCF8198.jpg\";s:8:\"filesize\";i:1641696;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8198-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14594,1446,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14595,1446,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14596,1447,'_wp_attached_file','2025/09/DSCF8226-e1758365681430.jpg'), -(14597,1447,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1946;s:6:\"height\";i:2570;s:4:\"file\";s:35:\"2025/09/DSCF8226-e1758365681430.jpg\";s:8:\"filesize\";i:885477;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"DSCF8226-e1758365681430-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18375;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14598,1447,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14599,1447,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:3648;s:6:\"height\";i:4560;s:8:\"filesize\";i:1826940;s:4:\"file\";s:12:\"DSCF8226.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:20:\"DSCF8226-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15288;}}'), -(14600,1448,'_wp_attached_file','2025/09/DSCF8277.jpg'), -(14601,1448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3648;s:6:\"height\";i:4864;s:4:\"file\";s:20:\"2025/09/DSCF8277.jpg\";s:8:\"filesize\";i:1711248;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8277-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18232;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14602,1448,'_wp_attachment_image_alt',''), -(14603,1449,'_variation_description',''), -(14604,1449,'total_sales','0'), -(14605,1449,'_tax_status','taxable'), -(14606,1449,'_tax_class','parent'), -(14607,1449,'_manage_stock','no'), -(14608,1449,'_backorders','no'), -(14609,1449,'_sold_individually','no'), -(14610,1449,'_virtual','no'), -(14611,1449,'_downloadable','no'), -(14612,1449,'_download_limit','-1'), -(14613,1449,'_download_expiry','-1'), -(14614,1449,'_stock',NULL), -(14615,1449,'_stock_status','instock'), -(14616,1449,'_wc_average_rating','0'), -(14617,1449,'_wc_review_count','0'), -(14618,1449,'attribute_pa_side','all'), -(14619,1449,'_product_version','10.1.2'), -(14620,1450,'_variation_description',''), -(14621,1450,'total_sales','0'), -(14622,1450,'_tax_status','taxable'), -(14623,1450,'_tax_class','parent'), -(14624,1450,'_manage_stock','no'), -(14625,1450,'_backorders','no'), -(14626,1450,'_sold_individually','no'), -(14627,1450,'_virtual','no'), -(14628,1450,'_downloadable','no'), -(14629,1450,'_download_limit','-1'), -(14630,1450,'_download_expiry','-1'), -(14631,1450,'_stock',NULL), -(14632,1450,'_stock_status','instock'), -(14633,1450,'_wc_average_rating','0'), -(14634,1450,'_wc_review_count','0'), -(14635,1450,'attribute_pa_side','left-side'), -(14636,1450,'_product_version','10.1.2'), -(14637,1451,'_variation_description',''), -(14638,1451,'total_sales','0'), -(14639,1451,'_tax_status','taxable'), -(14640,1451,'_tax_class','parent'), -(14641,1451,'_manage_stock','no'), -(14642,1451,'_backorders','no'), -(14643,1451,'_sold_individually','no'), -(14644,1451,'_virtual','no'), -(14645,1451,'_downloadable','no'), -(14646,1451,'_download_limit','-1'), -(14647,1451,'_download_expiry','-1'), -(14648,1451,'_stock',NULL), -(14649,1451,'_stock_status','instock'), -(14650,1451,'_wc_average_rating','0'), -(14651,1451,'_wc_review_count','0'), -(14652,1451,'attribute_pa_side','right-side'), -(14653,1451,'_product_version','10.1.2'), -(14654,1449,'_sku','PISHI-BO-all'), -(14655,1449,'_regular_price','85'), -(14656,1449,'_thumbnail_id','0'), -(14657,1449,'_price','85'), -(14658,1450,'_sku','PISHI-BO-left'), -(14659,1450,'_regular_price','50'), -(14660,1450,'_thumbnail_id','0'), -(14661,1450,'_price','50'), -(14662,1451,'_sku','PISHI-BO-right'), -(14663,1451,'_regular_price','50'), -(14664,1451,'_thumbnail_id','0'), -(14665,1451,'_price','50'), -(14666,1444,'_price','50'), -(14667,1444,'_price','85'), -(14668,1444,'_regular_price','85'), -(14691,1452,'_wp_attached_file','2025/06/DSCF8669.jpg'), -(14692,1452,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4403;s:6:\"height\";i:3523;s:4:\"file\";s:20:\"2025/06/DSCF8669.jpg\";s:8:\"filesize\";i:1187727;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8669-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14693,1452,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. Silver version'), -(14694,982,'_photos_colonne_gauche|||0|value','1346'), -(14695,982,'_photos_colonne_droite|||0|value','1452'), -(14696,982,'_photos_colonne_droite|||1|value','992'), -(14697,982,'_photos_colonne_droite|||2|value','993'), -(14698,982,'_haiku_details_produit',''), -(14707,1454,'_wp_attached_file','2024/10/DSCF8686.jpg'), -(14708,1454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2024/10/DSCF8686.jpg\";s:8:\"filesize\";i:985661;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8686-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16385;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14709,1454,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings sterling silver.'), -(14710,1455,'_wp_attached_file','2024/10/DSCF8674.jpg'), -(14711,1455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2768;s:6:\"height\";i:3459;s:4:\"file\";s:20:\"2024/10/DSCF8674.jpg\";s:8:\"filesize\";i:929535;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8674-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14712,1455,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings sterling silver.'), -(14713,183,'_price','45'), -(14714,183,'_price','70'), -(14715,183,'_photos_colonne_gauche|||0|value','1395'), -(14716,183,'_photos_colonne_droite|||0|value','1454'), -(14717,183,'_photos_colonne_droite|||1|value','1455'), -(14718,183,'_photos_colonne_droite|||2|value','718'), -(14719,183,'_haiku_details_produit',''), -(14720,1456,'_wp_attached_file','2024/10/DSCF8693.jpg'), -(14721,1456,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2440;s:6:\"height\";i:3049;s:4:\"file\";s:20:\"2024/10/DSCF8693.jpg\";s:8:\"filesize\";i:680909;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8693-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14366;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14722,1456,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings gold plated silver.'), -(14723,1457,'_wp_attached_file','2024/10/DSCF8676.jpg'), -(14724,1457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1970;s:6:\"height\";i:2462;s:4:\"file\";s:20:\"2024/10/DSCF8676.jpg\";s:8:\"filesize\";i:671776;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8676-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14725,1457,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings gold plated silver.'), -(14726,213,'_price','50'), -(14727,213,'_price','75'), -(14728,213,'_photos_colonne_gauche|||0|value','1396'), -(14729,213,'_photos_colonne_droite|||0|value','1456'), -(14730,213,'_photos_colonne_droite|||1|value','1457'), -(14731,213,'_photos_colonne_droite|||2|value','671'), -(14732,213,'_haiku_details_produit',''), -(14951,1467,'_sku','PIASU-B'), -(14952,1467,'total_sales','1'), -(14953,1467,'_tax_status','taxable'), -(14954,1467,'_tax_class',''), -(14955,1467,'_manage_stock','no'), -(14956,1467,'_backorders','no'), -(14957,1467,'_sold_individually','no'), -(14958,1467,'_virtual','no'), -(14959,1467,'_downloadable','no'), -(14960,1467,'_download_limit','-1'), -(14961,1467,'_download_expiry','-1'), -(14962,1467,'_thumbnail_id','1476'), -(14963,1467,'_stock',NULL), -(14964,1467,'_stock_status','instock'), -(14965,1467,'_wc_average_rating','0'), -(14966,1467,'_wc_review_count','0'), -(14967,1467,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14968,1467,'_product_version','10.3.3'), -(14973,1468,'_variation_description',''), -(14974,1468,'_regular_price','120'), -(14975,1468,'total_sales','0'), -(14976,1468,'_tax_status','taxable'), -(14977,1468,'_tax_class','parent'), -(14978,1468,'_manage_stock','no'), -(14979,1468,'_backorders','no'), -(14980,1468,'_sold_individually','no'), -(14981,1468,'_virtual','no'), -(14982,1468,'_downloadable','no'), -(14983,1468,'_download_limit','-1'), -(14984,1468,'_download_expiry','-1'), -(14985,1468,'_thumbnail_id','0'), -(14986,1468,'_stock',NULL), -(14987,1468,'_stock_status','instock'), -(14988,1468,'_wc_average_rating','0'), -(14989,1468,'_wc_review_count','0'), -(14990,1468,'attribute_pa_size','50'), -(14991,1468,'_price','120'), -(14992,1468,'_product_version','10.1.2'), -(14993,1469,'_variation_description',''), -(14994,1469,'_regular_price','120'), -(14995,1469,'total_sales','0'), -(14996,1469,'_tax_status','taxable'), -(14997,1469,'_tax_class','parent'), -(14998,1469,'_manage_stock','no'), -(14999,1469,'_backorders','no'), -(15000,1469,'_sold_individually','no'), -(15001,1469,'_virtual','no'), -(15002,1469,'_downloadable','no'), -(15003,1469,'_download_limit','-1'), -(15004,1469,'_download_expiry','-1'), -(15005,1469,'_thumbnail_id','0'), -(15006,1469,'_stock',NULL), -(15007,1469,'_stock_status','instock'), -(15008,1469,'_wc_average_rating','0'), -(15009,1469,'_wc_review_count','0'), -(15010,1469,'attribute_pa_size','52'), -(15011,1469,'_price','120'), -(15012,1469,'_product_version','10.1.2'), -(15013,1470,'_variation_description',''), -(15014,1470,'_regular_price','120'), -(15015,1470,'total_sales','0'), -(15016,1470,'_tax_status','taxable'), -(15017,1470,'_tax_class','parent'), -(15018,1470,'_manage_stock','no'), -(15019,1470,'_backorders','no'), -(15020,1470,'_sold_individually','no'), -(15021,1470,'_virtual','no'), -(15022,1470,'_downloadable','no'), -(15023,1470,'_download_limit','-1'), -(15024,1470,'_download_expiry','-1'), -(15025,1470,'_thumbnail_id','0'), -(15026,1470,'_stock',NULL), -(15027,1470,'_stock_status','instock'), -(15028,1470,'_wc_average_rating','0'), -(15029,1470,'_wc_review_count','0'), -(15030,1470,'attribute_pa_size','54'), -(15031,1470,'_price','120'), -(15032,1470,'_product_version','10.1.2'), -(15033,1471,'_variation_description',''), -(15034,1471,'_regular_price','120'), -(15035,1471,'total_sales','0'), -(15036,1471,'_tax_status','taxable'), -(15037,1471,'_tax_class','parent'), -(15038,1471,'_manage_stock','no'), -(15039,1471,'_backorders','no'), -(15040,1471,'_sold_individually','no'), -(15041,1471,'_virtual','no'), -(15042,1471,'_downloadable','no'), -(15043,1471,'_download_limit','-1'), -(15044,1471,'_download_expiry','-1'), -(15045,1471,'_thumbnail_id','0'), -(15046,1471,'_stock',NULL), -(15047,1471,'_stock_status','instock'), -(15048,1471,'_wc_average_rating','0'), -(15049,1471,'_wc_review_count','0'), -(15050,1471,'attribute_pa_size','56'), -(15051,1471,'_price','120'), -(15052,1471,'_product_version','10.1.2'), -(15053,1472,'_variation_description',''), -(15054,1472,'_regular_price','120'), -(15055,1472,'total_sales','0'), -(15056,1472,'_tax_status','taxable'), -(15057,1472,'_tax_class','parent'), -(15058,1472,'_manage_stock','no'), -(15059,1472,'_backorders','no'), -(15060,1472,'_sold_individually','no'), -(15061,1472,'_virtual','no'), -(15062,1472,'_downloadable','no'), -(15063,1472,'_download_limit','-1'), -(15064,1472,'_download_expiry','-1'), -(15065,1472,'_thumbnail_id','0'), -(15066,1472,'_stock',NULL), -(15067,1472,'_stock_status','instock'), -(15068,1472,'_wc_average_rating','0'), -(15069,1472,'_wc_review_count','0'), -(15070,1472,'attribute_pa_size','58'), -(15071,1472,'_price','120'), -(15072,1472,'_product_version','10.1.2'), -(15073,1473,'_variation_description',''), -(15074,1473,'_regular_price','120'), -(15075,1473,'total_sales','0'), -(15076,1473,'_tax_status','taxable'), -(15077,1473,'_tax_class','parent'), -(15078,1473,'_manage_stock','no'), -(15079,1473,'_backorders','no'), -(15080,1473,'_sold_individually','no'), -(15081,1473,'_virtual','no'), -(15082,1473,'_downloadable','no'), -(15083,1473,'_download_limit','-1'), -(15084,1473,'_download_expiry','-1'), -(15085,1473,'_thumbnail_id','0'), -(15086,1473,'_stock',NULL), -(15087,1473,'_stock_status','instock'), -(15088,1473,'_wc_average_rating','0'), -(15089,1473,'_wc_review_count','0'), -(15090,1473,'attribute_pa_size','60'), -(15091,1473,'_price','120'), -(15092,1473,'_product_version','10.1.2'), -(15093,1474,'_variation_description',''), -(15094,1474,'_regular_price','120'), -(15095,1474,'total_sales','0'), -(15096,1474,'_tax_status','taxable'), -(15097,1474,'_tax_class','parent'), -(15098,1474,'_manage_stock','no'), -(15099,1474,'_backorders','no'), -(15100,1474,'_sold_individually','no'), -(15101,1474,'_virtual','no'), -(15102,1474,'_downloadable','no'), -(15103,1474,'_download_limit','-1'), -(15104,1474,'_download_expiry','-1'), -(15105,1474,'_thumbnail_id','0'), -(15106,1474,'_stock',NULL), -(15107,1474,'_stock_status','instock'), -(15108,1474,'_wc_average_rating','0'), -(15109,1474,'_wc_review_count','0'), -(15110,1474,'attribute_pa_size','62'), -(15111,1474,'_price','120'), -(15112,1474,'_product_version','10.1.2'), -(15113,1475,'_variation_description',''), -(15114,1475,'_regular_price','120'), -(15115,1475,'total_sales','0'), -(15116,1475,'_tax_status','taxable'), -(15117,1475,'_tax_class','parent'), -(15118,1475,'_manage_stock','no'), -(15119,1475,'_backorders','no'), -(15120,1475,'_sold_individually','no'), -(15121,1475,'_virtual','no'), -(15122,1475,'_downloadable','no'), -(15123,1475,'_download_limit','-1'), -(15124,1475,'_download_expiry','-1'), -(15125,1475,'_thumbnail_id','0'), -(15126,1475,'_stock',NULL), -(15127,1475,'_stock_status','instock'), -(15128,1475,'_wc_average_rating','0'), -(15129,1475,'_wc_review_count','0'), -(15130,1475,'attribute_pa_size','64'), -(15131,1475,'_price','120'), -(15132,1475,'_product_version','10.1.2'), -(15134,1467,'_edit_lock','1762161842:1'), -(15135,1467,'_edit_last','1'), -(15136,1476,'_wp_attached_file','2025/09/PIASU-B.jpg'), -(15137,1476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3920;s:6:\"height\";i:3136;s:4:\"file\";s:19:\"2025/09/PIASU-B.jpg\";s:8:\"filesize\";i:1419521;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PIASU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17404;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"PIASU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3592;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393569664\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15138,1476,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15139,1477,'_wp_attached_file','2025/09/DSCF7789.jpg'), -(15140,1477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2276;s:6:\"height\";i:2845;s:4:\"file\";s:20:\"2025/09/DSCF7789.jpg\";s:8:\"filesize\";i:478890;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7789-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15141,1477,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15142,1478,'_wp_attached_file','2025/09/DSCF7842.jpg'), -(15143,1478,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2744;s:6:\"height\";i:3429;s:4:\"file\";s:20:\"2025/09/DSCF7842.jpg\";s:8:\"filesize\";i:501714;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7842-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10632;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15144,1478,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15145,1479,'_wp_attached_file','2025/09/DSCF7809.jpg'), -(15146,1479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2545;s:6:\"height\";i:3181;s:4:\"file\";s:20:\"2025/09/DSCF7809.jpg\";s:8:\"filesize\";i:566391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7809-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15147,1479,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15148,1467,'_price','120'), -(15191,1482,'_wp_attached_file','2024/10/DSCF8158.jpg'), -(15192,1482,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3427;s:6:\"height\";i:4284;s:4:\"file\";s:20:\"2024/10/DSCF8158.jpg\";s:8:\"filesize\";i:1398601;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8158-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15193,1482,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15194,1483,'_wp_attached_file','2024/10/DSCF8069.jpg'), -(15195,1483,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1412;s:6:\"height\";i:1765;s:4:\"file\";s:20:\"2024/10/DSCF8069.jpg\";s:8:\"filesize\";i:379321;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8069-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15196,1483,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15197,1484,'_wp_attached_file','2024/10/DSCF8026.jpg'), -(15198,1484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2556;s:6:\"height\";i:3195;s:4:\"file\";s:20:\"2024/10/DSCF8026.jpg\";s:8:\"filesize\";i:914261;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8026-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15199,1484,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15200,1485,'_wp_attached_file','2024/10/PIASU-BO2.jpg'), -(15201,1485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3767;s:6:\"height\";i:3013;s:4:\"file\";s:21:\"2024/10/PIASU-BO2.jpg\";s:8:\"filesize\";i:881946;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-BO2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17694;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PIASU-BO2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17694;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393637278\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15202,1485,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15203,202,'_photos_colonne_gauche|||0|value','1485'), -(15204,202,'_photos_colonne_droite|||0|value','1482'), -(15205,202,'_photos_colonne_droite|||1|value','1483'), -(15206,202,'_photos_colonne_droite|||2|value','1484'), -(15207,202,'_haiku_details_produit',''), -(15213,1444,'_photos_colonne_gauche|||0|value','1445'), -(15214,1444,'_photos_colonne_droite|||0|value','1446'), -(15215,1444,'_photos_colonne_droite|||1|value','1448'), -(15216,1444,'_photos_colonne_droite|||2|value','1447'), -(15217,1444,'_haiku_details_produit',''), -(15218,610,'_wp_trash_meta_status','publish'), -(15219,610,'_wp_trash_meta_time','1761727903'), -(15220,610,'_wp_desired_post_slug','hattari-cuff'), -(15221,560,'_wp_trash_meta_status','publish'), -(15222,560,'_wp_trash_meta_time','1761727925'), -(15223,560,'_wp_desired_post_slug','kagun-trio-earrings-all'), -(15224,561,'_wp_trash_meta_status','publish'), -(15225,561,'_wp_trash_meta_time','1761727925'), -(15226,561,'_wp_desired_post_slug','kagun-trio-earrings-long-side'), -(15227,562,'_wp_trash_meta_status','publish'), -(15228,562,'_wp_trash_meta_time','1761727925'), -(15229,562,'_wp_desired_post_slug','kagun-trio-earrings-medium-side'), -(15230,563,'_wp_trash_meta_status','publish'), -(15231,563,'_wp_trash_meta_time','1761727925'), -(15232,563,'_wp_desired_post_slug','kagun-trio-earrings-short-side'), -(15233,342,'_wp_trash_meta_status','publish'), -(15234,342,'_wp_trash_meta_time','1761727925'), -(15235,342,'_wp_desired_post_slug','mugura-trio-earrings'), -(15236,338,'_wp_trash_meta_status','publish'), -(15237,338,'_wp_trash_meta_time','1761727934'), -(15238,338,'_wp_desired_post_slug','piasu-brooch'), -(15239,328,'_wp_trash_meta_status','publish'), -(15240,328,'_wp_trash_meta_time','1761727942'), -(15241,328,'_wp_desired_post_slug','hadou-earcuff-gold-plated'), -(15242,325,'_wp_trash_meta_status','publish'), -(15243,325,'_wp_trash_meta_time','1761727953'), -(15244,325,'_wp_desired_post_slug','hadou-earcuff-silver'), -(15245,251,'_wp_trash_meta_status','publish'), -(15246,251,'_wp_trash_meta_time','1761727978'), -(15247,251,'_wp_desired_post_slug','tanemaki-bracelet'), -(15248,1491,'_edit_lock','1761729831:1'), -(15249,1491,'_edit_last','1'), -(15250,1492,'_wp_attached_file','2025/10/IKKAN-CR1.jpg'), -(15251,1492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2025/10/IKKAN-CR1.jpg\";s:8:\"filesize\";i:861656;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390809532\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15252,1492,'_wp_attachment_image_alt','Kime solo hoop in gold plated with a marine link element in sterling silver.'), -(15253,1493,'_wp_attached_file','2025/10/DSCF7652.jpg'), -(15254,1493,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3534;s:6:\"height\";i:4418;s:4:\"file\";s:20:\"2025/10/DSCF7652.jpg\";s:8:\"filesize\";i:808925;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7652-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15255,1493,'_wp_attachment_image_alt','Kime solo hoop in gold plated with a marine link element in sterling silver.'), -(15256,1494,'_wp_attached_file','2025/10/DSCF7675.jpg'), -(15257,1494,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1364;s:6:\"height\";i:1706;s:4:\"file\";s:20:\"2025/10/DSCF7675.jpg\";s:8:\"filesize\";i:192623;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7675-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15258,1494,'_wp_attachment_image_alt',''), -(15259,1495,'_wp_attached_file','2025/10/DSCF7638.jpg'), -(15260,1495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3429;s:6:\"height\";i:4287;s:4:\"file\";s:20:\"2025/10/DSCF7638.jpg\";s:8:\"filesize\";i:810228;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7638-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15261,1495,'_wp_attachment_image_alt','Kime solo hoop in gold plated with a marine link element in sterling silver.'), -(15262,1491,'_thumbnail_id','1492'), -(15263,1491,'_sku','KIME-CR1'), -(15264,1491,'_regular_price','45'), -(15265,1491,'total_sales','0'), -(15266,1491,'_tax_status','taxable'), -(15267,1491,'_tax_class',''), -(15268,1491,'_manage_stock','no'), -(15269,1491,'_backorders','no'), -(15270,1491,'_sold_individually','no'), -(15271,1491,'_virtual','no'), -(15272,1491,'_downloadable','no'), -(15273,1491,'_download_limit','-1'), -(15274,1491,'_download_expiry','-1'), -(15275,1491,'_stock',NULL), -(15276,1491,'_stock_status','instock'), -(15277,1491,'_wc_average_rating','0'), -(15278,1491,'_wc_review_count','0'), -(15279,1491,'_product_version','10.3.3'), -(15280,1491,'_price','45'), -(15281,1491,'_photos_colonne_gauche|||0|value','1492'), -(15282,1491,'_photos_colonne_droite|||0|value','1493'), -(15283,1491,'_photos_colonne_droite|||1|value','1494'), -(15284,1491,'_photos_colonne_droite|||2|value','1495'), -(15285,1491,'_haiku_details_produit',''), -(15286,1497,'_edit_lock','1762161731:1'), -(15287,1497,'_edit_last','1'), -(15288,1467,'_photos_colonne_gauche|||0|value','1476'), -(15289,1467,'_photos_colonne_droite|||0|value','1477'), -(15290,1467,'_photos_colonne_droite|||1|value','1478'), -(15291,1467,'_photos_colonne_droite|||2|value','1479'), -(15292,1467,'_haiku_details_produit',''); -/*!40000 ALTER TABLE `haikuwp_postmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_posts` --- - -DROP TABLE IF EXISTS `haikuwp_posts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_posts` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, - `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content` longtext NOT NULL, - `post_title` text NOT NULL, - `post_excerpt` text NOT NULL, - `post_status` varchar(20) NOT NULL DEFAULT 'publish', - `comment_status` varchar(20) NOT NULL DEFAULT 'open', - `ping_status` varchar(20) NOT NULL DEFAULT 'open', - `post_password` varchar(255) NOT NULL DEFAULT '', - `post_name` varchar(200) NOT NULL DEFAULT '', - `to_ping` text NOT NULL, - `pinged` text NOT NULL, - `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content_filtered` longtext NOT NULL, - `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `guid` varchar(255) NOT NULL DEFAULT '', - `menu_order` int(11) NOT NULL DEFAULT 0, - `post_type` varchar(20) NOT NULL DEFAULT 'post', - `post_mime_type` varchar(100) NOT NULL DEFAULT '', - `comment_count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`ID`), - KEY `post_name` (`post_name`(191)), - KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), - KEY `post_parent` (`post_parent`), - KEY `post_author` (`post_author`) -) ENGINE=InnoDB AUTO_INCREMENT=1498 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_posts` --- - -LOCK TABLES `haikuwp_posts` WRITE; -/*!40000 ALTER TABLE `haikuwp_posts` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_posts` VALUES -(1,1,'2024-08-04 22:10:39','2024-08-04 20:10:39','\n

Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !

\n','Bonjour tout le monde !','','publish','open','open','','bonjour-tout-le-monde','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/?p=1',0,'post','',1), -(4,0,'2024-08-04 22:10:39','2024-08-04 20:10:39','','Navigation','','publish','closed','closed','','navigation','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/2024/08/04/navigation/',0,'wp_navigation','',0), -(13,1,'2024-08-05 15:21:14','2024-08-05 13:21:14','','Home','','publish','closed','closed','','home','','','2024-08-05 15:21:14','2024-08-05 13:21:14','',0,'https://haikuatelier.fr.ddev.site/?page_id=13',0,'page','',0), -(14,1,'2024-08-05 15:21:25','2024-08-05 13:21:25','','E-Shop','','publish','closed','closed','','shop','','','2024-08-06 22:21:51','2024-08-06 20:21:51','',0,'https://haikuatelier.fr.ddev.site/?page_id=14',0,'page','',0), -(16,1,'2024-08-05 15:22:02','2024-08-05 13:22:02','','Cart','','publish','closed','closed','','cart','','','2024-08-05 15:22:02','2024-08-05 13:22:02','',0,'https://haikuatelier.fr.ddev.site/?page_id=16',0,'page','',0), -(17,1,'2024-08-05 15:22:18','2024-08-05 13:22:18','','Checkout','','publish','closed','closed','','checkout','','','2024-08-05 15:22:18','2024-08-05 13:22:18','',0,'https://haikuatelier.fr.ddev.site/?page_id=17',0,'page','',0), -(18,1,'2024-08-05 15:22:40','2024-08-05 13:22:40','','Privacy policy','','publish','closed','closed','','privacy-policy','','','2024-08-05 15:22:40','2024-08-05 13:22:40','',0,'https://haikuatelier.fr.ddev.site/?page_id=18',0,'page','',0), -(19,1,'2024-08-05 15:23:03','2024-08-05 13:23:03','','Terms & Conditions','','publish','closed','closed','','terms-and-conditions','','','2024-11-25 16:28:57','2024-11-25 15:28:57','',0,'https://haikuatelier.fr.ddev.site/?page_id=19',0,'page','',0), -(26,1,'2024-08-06 22:21:23','2024-08-06 20:21:23','','Contact','','publish','closed','closed','','contact','','','2024-08-06 22:21:23','2024-08-06 20:21:23','',0,'https://haikuatelier.fr.ddev.site/?page_id=26',0,'page','',0), -(27,1,'2024-08-06 22:21:30','2024-08-06 20:21:30','','About','','publish','closed','closed','','about','','','2024-08-06 22:21:30','2024-08-06 20:21:30','',0,'https://haikuatelier.fr.ddev.site/?page_id=27',0,'page','',0), -(81,2,'2024-09-30 17:22:16','2024-09-30 15:22:16','','Hadou Ring','','inherit','closed','closed','','sony-dsc','','','2024-09-30 17:26:53','2024-09-30 15:26:53','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B.jpg',0,'attachment','image/jpeg',0), -(100,2,'2024-09-30 18:51:37','2024-09-30 16:51:37','','Hadou ring','','inherit','closed','closed','','hadou-b-mix','','','2024-09-30 18:51:55','2024-09-30 16:51:55','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B-mix.jpg',0,'attachment','image/jpeg',0), -(102,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','IKKAN : link\r\n\r\nA piece made of an oversized link thread into a D-shaped sterling silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring silver','','publish','closed','closed','','ikkan-ring-silver','','','2024-11-24 11:45:53','2024-11-24 10:45:53','',0,'https://haiku.gcch.fr/?post_type=product&p=102',0,'product','',0), -(103,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-77','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=103',1,'product_variation','',0), -(104,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-78','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=104',2,'product_variation','',0), -(105,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-79','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=105',3,'product_variation','',0), -(106,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-80','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=106',4,'product_variation','',0), -(107,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-81','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=107',5,'product_variation','',0), -(108,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-82','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=108',6,'product_variation','',0), -(109,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-83','','','2024-11-12 23:40:27','2024-11-12 22:40:27','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=109',7,'product_variation','',0), -(110,2,'2024-09-30 18:56:37','2024-09-30 16:56:37','','Ikkan silver Ring','','inherit','closed','closed','','sony-dsc-3','','','2024-09-30 18:58:06','2024-09-30 16:58:06','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B2-arg.jpg',0,'attachment','image/jpeg',0), -(111,2,'2024-09-30 18:57:45','2024-09-30 16:57:45','','Ikkan silver ring','','inherit','closed','closed','','ikkan-b-arg','','','2024-09-30 18:58:26','2024-09-30 16:58:26','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-arg.jpg',0,'attachment','image/jpeg',0), -(112,2,'2024-09-30 18:59:53','2024-09-30 16:59:53','','Ikkan silver ring + Kishou ring','','inherit','closed','closed','','ikkan-bakigen-ba','','','2024-09-30 19:00:36','2024-09-30 17:00:36','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-BaKIGEN-Ba.jpg',0,'attachment','image/jpeg',0), -(113,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','IKKAN: link\r\n\r\nA piece made of an oversized link thread into a D-shaped gold plated silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring gold plated','','publish','closed','closed','','ikkan-ring-gold-plated','','','2024-11-24 11:53:51','2024-11-24 10:53:51','',0,'https://haiku.gcch.fr/?post_type=product&p=113',0,'product','',0), -(114,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-84','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=114',1,'product_variation','',0), -(115,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-85','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=115',2,'product_variation','',0), -(116,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-86','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=116',3,'product_variation','',0), -(117,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-87','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=117',4,'product_variation','',0), -(118,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-88','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=118',5,'product_variation','',0), -(119,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-89','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=119',6,'product_variation','',0), -(120,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-90','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=120',7,'product_variation','',0), -(122,2,'2024-09-30 21:19:26','2024-09-30 19:19:26','','Ikkan gold plated ring','','inherit','closed','closed','','ikkan-b-g','','','2024-11-07 23:57:12','2024-11-07 22:57:12','',113,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-g.jpg',0,'attachment','image/jpeg',0), -(132,2,'2024-09-30 21:40:43','2024-09-30 19:40:43','','Piasu ring','','inherit','closed','closed','','_dsc9928','','','2024-09-30 21:41:04','2024-09-30 19:41:04','',0,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9928.jpg',0,'attachment','image/jpeg',0), -(133,2,'2024-09-30 22:00:26','2024-09-30 20:00:26','KARA: hull, shell\r\n\r\nTwo textured sterling silver rings linked by a thin silver curb chain. Can be worn stacked on the same finger, or on two different fingers.\r\n
    \r\n
  • height 1cm and 0,5cm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Kara Ring','','publish','closed','closed','','kara-ring','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',0,'https://haiku.gcch.fr/?post_type=product&p=133',0,'product','',0), -(134,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-98','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=134',1,'product_variation','',0), -(135,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-99','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=135',2,'product_variation','',0), -(136,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-100','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=136',3,'product_variation','',0), -(137,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-101','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=137',4,'product_variation','',0), -(138,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-102','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=138',5,'product_variation','',0), -(139,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-103','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=139',6,'product_variation','',0), -(140,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-104','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=140',7,'product_variation','',0), -(142,2,'2024-09-30 22:16:16','2024-09-30 20:16:16','','Kara ring','','inherit','closed','closed','','_dsc9269','','','2024-09-30 22:16:33','2024-09-30 20:16:33','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9269.jpg',0,'attachment','image/jpeg',0), -(143,2,'2024-09-30 22:17:13','2024-09-30 20:17:13','','Kara ring','','inherit','closed','closed','','_dsc9148','','','2024-09-30 22:17:26','2024-09-30 20:17:26','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9148.jpg',0,'attachment','image/jpeg',0), -(154,2,'2024-10-01 08:28:27','2024-10-01 06:28:27','','Kishou silver ring','','inherit','closed','closed','','kigen-baikkanba','','','2024-10-01 08:29:30','2024-10-01 06:29:30','',0,'https://haiku.gcch.fr/app/uploads/2024/10/KIGEN-BaIKKANBa.jpg',0,'attachment','image/jpeg',0), -(165,2,'2024-10-01 08:37:37','2024-10-01 06:37:37','','Kishou gold plated ring','','inherit','closed','closed','','hadou-booikkan-bkigen-bjokou-co','','','2024-10-01 08:37:59','2024-10-01 06:37:59','',0,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg',0,'attachment','image/jpeg',0), -(166,2,'2024-10-01 08:40:28','2024-10-01 06:40:28','','Kara ring','','inherit','closed','closed','','_dsc9760','','','2024-10-01 08:40:59','2024-10-01 06:40:59','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9760.jpg',0,'attachment','image/jpeg',0), -(167,2,'2024-10-01 08:41:39','2024-10-01 06:41:39','','Kara ring','','inherit','closed','closed','','_dsc9339','','','2024-10-01 08:41:56','2024-10-01 06:41:56','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9339.jpg',0,'attachment','image/jpeg',0), -(168,2,'2024-10-01 08:42:52','2024-10-01 06:42:52','ROKKU: pebble\r\n\r\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in silver.\r\n
    \r\n
  • adjustable
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','publish','closed','closed','','rokku-ring','','','2025-06-18 22:46:03','2025-06-18 20:46:03','',0,'https://haiku.gcch.fr/?post_type=product&p=168',0,'product','',0), -(177,2,'2024-10-01 09:12:26','2024-10-01 07:12:26','','Rokku ring malachite','','inherit','closed','closed','','rokku-b-malachite-2','','','2024-10-01 09:12:46','2024-10-01 07:12:46','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-malachite-1.jpg',0,'attachment','image/jpeg',0), -(178,2,'2024-10-01 09:13:13','2024-10-01 07:13:13','','Rokku ring tiger eye','','inherit','closed','closed','','sony-dsc-9','','','2024-10-01 09:13:48','2024-10-01 07:13:48','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye.jpg',0,'attachment','image/jpeg',0), -(179,2,'2024-10-01 09:14:04','2024-10-01 07:14:04','','Rokku ring tiger eye','','inherit','closed','closed','','rokku-b-tigereye','','','2024-10-01 09:14:34','2024-10-01 07:14:34','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye-1.jpg',0,'attachment','image/jpeg',0), -(180,2,'2024-10-01 09:25:14','2024-10-01 07:25:14','','Rokku ring malachite','','inherit','closed','closed','','_dsc9710','','','2024-10-01 09:25:39','2024-10-01 07:25:39','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9710.jpg',0,'attachment','image/jpeg',0), -(182,2,'2024-10-01 09:26:24','2024-10-01 07:26:24','','Rokku ring tiger eye','','inherit','closed','closed','','_dsc9190','','','2024-10-01 09:26:54','2024-10-01 07:26:54','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9190.jpg',0,'attachment','image/jpeg',0), -(183,2,'2024-10-01 11:31:42','2024-10-01 09:31:42','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of sterling silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','publish','closed','closed','','boroboro-long-earrings-silver','','','2025-09-24 14:45:47','2025-09-24 12:45:47','',0,'https://haiku.gcch.fr/?post_type=product&p=183',0,'product','',0), -(199,2,'2024-10-01 12:16:11','2024-10-01 10:16:11','','BoroBoro silver long earring, right side','','inherit','closed','closed','','sony-dsc-11','','','2024-10-01 12:17:24','2024-10-01 10:17:24','',183,'https://haiku.gcch.fr/app/uploads/2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg',0,'attachment','image/jpeg',0), -(200,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Malachite','Stone: Malachite','publish','closed','closed','','rokku-ring-malachite','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=200',1,'product_variation','',0), -(201,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','rokku-ring-tiger-eye','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=201',2,'product_variation','',0), -(202,2,'2024-10-01 18:14:00','2024-10-01 16:14:00','PIASU: piercing\r\n\r\nLarge earrings covering the lobe with three hoops hanging to it, with a small gold plated bead on each side.\r\n
    \r\n
  • height 3cm
  • \r\n
  • width 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Earrings','','publish','closed','closed','','piasu-earrings','','','2025-10-06 14:46:02','2025-10-06 12:46:02','',0,'https://haiku.gcch.fr/?post_type=product&p=202',0,'product','',0), -(206,2,'2024-10-01 18:20:45','2024-10-01 16:20:45','','Piasu earrings','','inherit','closed','closed','','sony-dsc-12','','','2024-10-01 18:22:00','2024-10-01 16:22:00','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO.jpg',0,'attachment','image/jpeg',0), -(213,2,'2024-10-01 19:52:06','2024-10-01 17:52:06','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of gold plated silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings gold plated','','publish','closed','closed','','boroboro-long-earrings-gold-plated','','','2025-09-24 15:10:36','2025-09-24 13:10:36','',0,'https://haiku.gcch.fr/?post_type=product&p=213',0,'product','',0), -(240,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','IKKAN : link\r\n\r\nA bracelet in sterling silver mixing a rigid band and loose curb chain\r\n
    \r\n
  • size 1: 6cm diameter / size 2: 7cm diameter
  • \r\n
  • wire thickness 2,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Ikkan Bracelet silver','','publish','closed','closed','','ikkan-bracelet-silver','','','2025-08-20 10:51:34','2025-08-20 08:51:34','',0,'https://haiku.gcch.fr/?post_type=product&p=240',0,'product','',0), -(241,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 1','Size: Size 1','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-3','','','2025-08-20 10:51:34','2025-08-20 08:51:34','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=241',1,'product_variation','',0), -(242,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 2','Size: Size 2','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-4','','','2025-08-20 10:51:34','2025-08-20 08:51:34','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=242',2,'product_variation','',0), -(243,2,'2024-10-02 23:24:46','2024-10-02 21:24:46','','Ikkan bracelet silver','','inherit','closed','closed','','sony-dsc-17','','','2024-10-02 23:29:51','2024-10-02 21:29:51','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-arg.jpg',0,'attachment','image/jpeg',0), -(244,2,'2024-10-02 23:32:58','2024-10-02 21:32:58','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s','','','2024-10-02 23:33:16','2024-10-02 21:33:16','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s.jpg',0,'attachment','image/jpeg',0), -(245,2,'2024-10-02 23:33:24','2024-10-02 21:33:24','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s-2','','','2024-10-02 23:33:43','2024-10-02 21:33:43','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s-1.jpg',0,'attachment','image/jpeg',0), -(249,2,'2024-10-02 23:36:59','2024-10-02 21:36:59','','Ikkan bracelet gold plated','','inherit','closed','closed','','sony-dsc-18','','','2024-10-02 23:37:41','2024-10-02 21:37:41','',0,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-vrm.jpg',0,'attachment','image/jpeg',0), -(250,2,'2024-10-02 23:38:49','2024-10-02 21:38:49','','Ikkan bracelet gold plated','','inherit','closed','closed','','ikkan-br-g','','','2024-11-08 00:00:39','2024-11-07 23:00:39','',0,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-g.jpg',0,'attachment','image/jpeg',0), -(251,2,'2024-10-02 23:40:26','2024-10-02 21:40:26','TANEMAKI: seeding \r\n\r\nDelicate bracelet composed of an fluid center element with small grey fresh water pearls on one side, and a mix of sterling silver and gold plated silver chains on the other side.\r\n
    \r\n
  • adjustable in between 15cm and 18cm
  • \r\n
  • oval center shape 1cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tanemaki Bracelet','','trash','closed','closed','','tanemaki-bracelet__trashed','','','2025-10-29 09:52:58','2025-10-29 08:52:58','',0,'https://haiku.gcch.fr/?post_type=product&p=251',0,'product','',0), -(255,2,'2024-10-02 23:55:51','2024-10-02 21:55:51','','Tanemaki bracelet','','inherit','closed','closed','','tanemaki-br','','','2024-10-02 23:56:12','2024-10-02 21:56:12','',251,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-BR-1.jpg',0,'attachment','image/jpeg',0), -(258,2,'2024-10-03 22:02:26','2024-10-03 20:02:26','Fuyou: floating leave on water\r\n\r\nRectangular trace chain bracelet in sterling silver with a fluid oval shape element in the center and gold plated details.\r\n
    \r\n
  • adjustable in between 15 and 18cm
  • \r\n
  • oval center shape 2cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet','','publish','closed','closed','','fuyou-bracelet-silver','','','2025-08-17 19:04:48','2025-08-17 17:04:48','',0,'https://haiku.gcch.fr/?post_type=product&p=258',0,'product','',0), -(263,2,'2024-10-03 22:17:11','2024-10-03 20:17:11','IKKAN: link \r\n\r\nNecklace with a mix of different links combining sterling silver and gold plated silver.\r\n
    \r\n
  • length 50 to 54cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Ikkan Necklace','','publish','closed','closed','','ikkan-necklace','','','2025-09-02 09:06:36','2025-09-02 07:06:36','',0,'https://haiku.gcch.fr/?post_type=product&p=263',0,'product','',0), -(268,2,'2024-10-03 22:43:42','2024-10-03 20:43:42','PIASU : piercing\r\n\r\nThis short necklace combines different thin chains with a mix of sterling silver and gold plated silver. Secured by a toggle clasp on the front.\r\n
    \r\n
  • length 45cm to 50cm
  • \r\n
  • toggle clasp caliber 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Necklace','','publish','closed','closed','','piasu-necklace','','','2025-06-18 22:29:26','2025-06-18 20:29:26','',0,'https://haiku.gcch.fr/?post_type=product&p=268',0,'product','',0), -(270,2,'2024-10-03 22:48:06','2024-10-03 20:48:06','','Piasu necklace silver','','inherit','closed','closed','','piasu-c-arg-opti','','','2024-10-03 22:48:49','2024-10-03 20:48:49','',268,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-C-arg-opti.jpg',0,'attachment','image/jpeg',0), -(273,2,'2024-10-04 08:32:08','2024-10-04 06:32:08','','Tanemaki necklace','','inherit','closed','closed','','tanemaki-c','','','2024-10-04 08:32:26','2024-10-04 06:32:26','',0,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-C.jpg',0,'attachment','image/jpeg',0), -(274,2,'2024-10-04 08:33:31','2024-10-04 06:33:31','FUYOU: floating leave on water\r\n\r\nA necklace with thin rectangular trace chain and oval fluid elements in sterling silver, with a dangling gold plated detail.\r\n
    \r\n
  • length 50cm to 55cm
  • \r\n
  • oval shapes caliber between 3cm and 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Fuyou Necklace','','publish','closed','closed','','fuyou-necklace','','','2025-08-20 11:01:06','2025-08-20 09:01:06','',0,'https://haiku.gcch.fr/?post_type=product&p=274',0,'product','',0), -(285,2,'2024-10-04 08:55:02','2024-10-04 06:55:02','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in sterling silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops silver','','publish','closed','closed','','hattari-stacked-hoops-silver','','','2025-08-19 09:32:57','2025-08-19 07:32:57','',0,'https://haiku.gcch.fr/?post_type=product&p=285',0,'product','',0), -(287,2,'2024-10-04 09:08:50','2024-10-04 07:08:50','','Hattari stacked hoops silver','','inherit','closed','closed','','hattari-cr1-s','','','2024-10-04 09:09:07','2024-10-04 07:09:07','',285,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-s-1.jpg',0,'attachment','image/jpeg',0), -(288,2,'2024-10-04 09:10:01','2024-10-04 07:10:01','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in gold plated silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops gold plated','','publish','closed','closed','','hattari-stacked-hoops-gold-plated','','','2025-08-19 09:31:34','2025-08-19 07:31:34','',0,'https://haiku.gcch.fr/?post_type=product&p=288',0,'product','',0), -(290,2,'2024-10-04 09:12:19','2024-10-04 07:12:19','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9336','','','2024-11-13 19:53:24','2024-11-13 18:53:24','',288,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9336.jpg',0,'attachment','image/jpeg',0), -(306,2,'2024-10-07 08:18:28','2024-10-07 06:18:28','TAMANORI: in balance on a ball\r\n\r\nOval sterling silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tamanori Hoops silver','','publish','closed','closed','','tamanori-hoops','','','2024-11-15 12:32:15','2024-11-15 11:32:15','',0,'https://haiku.gcch.fr/?post_type=product&p=306',0,'product','',0), -(310,2,'2024-10-07 08:20:16','2024-10-07 06:20:16','','Tamanori Hoops silver','','inherit','closed','closed','','sony-dsc-31','','','2024-10-07 08:20:55','2024-10-07 06:20:55','',306,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(311,2,'2024-10-07 08:22:26','2024-10-07 06:22:26','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9378','','','2024-10-07 08:22:48','2024-10-07 06:22:48','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9378.jpg',0,'attachment','image/jpeg',0), -(312,2,'2024-10-07 08:33:26','2024-10-07 06:33:26','TAMANORI: in balance on a ball\r\n\r\nOval gold plated silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycles sterling silver and 24K gold plated silver.','Tamanori Hoops gold plated','','publish','closed','closed','','tamanori-hoops-gold-plated','','','2024-11-24 12:12:54','2024-11-24 11:12:54','',0,'https://haiku.gcch.fr/?post_type=product&p=312',0,'product','',0), -(317,2,'2024-10-07 08:36:37','2024-10-07 06:36:37','','Tamanori Hoops gold plated','','inherit','closed','closed','','tamanori-cr2-vrm','','','2024-10-07 08:36:52','2024-10-07 06:36:52','',312,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-vrm-1.jpg',0,'attachment','image/jpeg',0), -(318,2,'2024-10-07 08:40:26','2024-10-07 06:40:26','FUYOU: floating leave on water\r\n\r\nSolo hoop in sterling silver with a mix of small rings in gold plated silver hanging on it.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • small rings diameter around 5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 18k gold plated silver.','Fuyou Hoop','','publish','closed','closed','','fuyou-hoop','','','2025-08-22 11:19:14','2025-08-22 09:19:14','',0,'https://haiku.gcch.fr/?post_type=product&p=318',0,'product','',0), -(323,2,'2024-10-07 08:54:21','2024-10-07 06:54:21','','Fuyou Hoops silver and gold','','inherit','closed','closed','','fuyou-cr','','','2024-10-07 08:54:39','2024-10-07 06:54:39','',318,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-CR.jpg',0,'attachment','image/jpeg',0), -(324,2,'2024-10-07 08:55:07','2024-10-07 06:55:07','','Fuyou Hoops silver and gold','','inherit','closed','closed','','_dsc9542','','','2024-10-07 08:55:26','2024-10-07 06:55:26','',318,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9542.jpg',0,'attachment','image/jpeg',0), -(325,2,'2024-10-07 11:08:32','2024-10-07 09:08:32','HADOU: wave\r\n\r\nAn ear cuff composed of three wavy bands in sterling silver.\r\n
    \r\n
  • total height 8mm
  • \r\n
  • bands thickness 1,2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Hadou Ear Cuff silver','','trash','closed','closed','','hadou-earcuff-silver__trashed','','','2025-10-29 09:52:33','2025-10-29 08:52:33','',0,'https://haiku.gcch.fr/?post_type=product&p=325',0,'product','',0), -(326,2,'2024-10-07 11:17:26','2024-10-07 09:17:26','','Hadou Earcuff silver','','inherit','closed','closed','','sony-dsc-34','','','2024-10-07 11:24:14','2024-10-07 09:24:14','',325,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-arg.jpg',0,'attachment','image/jpeg',0), -(327,2,'2024-10-07 11:21:04','2024-10-07 09:21:04','','Hadou Earcuff silver','','inherit','closed','closed','','hadou-ec','','','2024-10-07 11:21:41','2024-10-07 09:21:41','',325,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC.jpg',0,'attachment','image/jpeg',0), -(328,2,'2024-10-07 11:22:52','2024-10-07 09:22:52','HADOU: wave\r\n\r\nAn ear cuff composed of three wavy bands in gold plated silver.\r\n
    \r\n
  • total height 8mm
  • \r\n
  • bands thickness 1,2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Hadou Ear Cuff gold plated','','trash','closed','closed','','hadou-earcuff-gold-plated__trashed','','','2025-10-29 09:52:22','2025-10-29 08:52:22','',0,'https://haiku.gcch.fr/?post_type=product&p=328',0,'product','',0), -(329,2,'2024-10-07 11:23:37','2024-10-07 09:23:37','','Hadou Earcuff gold plated','','inherit','closed','closed','','sony-dsc-35','','','2024-10-07 11:24:28','2024-10-07 09:24:28','',328,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm.jpg',0,'attachment','image/jpeg',0), -(330,2,'2024-10-07 11:25:22','2024-10-07 09:25:22','','Hadou Earcuff gold plated','','inherit','closed','closed','','hadou-ec-vrm','','','2024-10-07 11:25:54','2024-10-07 09:25:54','',328,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm-1.jpg',0,'attachment','image/jpeg',0), -(338,2,'2024-10-07 11:38:31','2024-10-07 09:38:31','PIASU: piercing\r\n\r\nThis brooch, made to be hooked on a top, mimics a nipple piercing and is made of sterling silver with a gold plated silver bead.\r\n
    \r\n
  • caliber 1,2cm
  • \r\n
  • wire thickness 15mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Piasu Brooch','','trash','closed','closed','','piasu-brooch__trashed','','','2025-10-29 09:52:14','2025-10-29 08:52:14','',0,'https://haiku.gcch.fr/?post_type=product&p=338',0,'product','',0), -(339,2,'2024-10-07 11:42:14','2024-10-07 09:42:14','','Piasu brooch','','inherit','closed','closed','','sony-dsc-38','','','2024-10-07 11:43:19','2024-10-07 09:43:19','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC.jpg',0,'attachment','image/jpeg',0), -(340,2,'2024-10-07 11:46:56','2024-10-07 09:46:56','','Piasu Brooch','','inherit','closed','closed','','piasu-brc','','','2024-10-07 11:47:31','2024-10-07 09:47:31','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-1.jpg',0,'attachment','image/jpeg',0), -(341,2,'2024-10-07 11:50:14','2024-10-07 09:50:14','','Piasu Brooch','','inherit','closed','closed','','piasu-brc-2','','','2024-10-07 11:50:42','2024-10-07 09:50:42','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-2.jpg',0,'attachment','image/jpeg',0), -(342,2,'2024-10-15 15:24:41','2024-10-15 13:24:41','MUGURA: vine\r\n\r\nTrio of mismatched stud earrings in sterling silver and gold plated silver, mixing wavy lines and natural grey pearls.\r\n
    \r\n
  • wire width 15mm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Trio Stud Earrings','','trash','closed','closed','','mugura-trio-earrings__trashed','','','2025-10-29 09:52:05','2025-10-29 08:52:05','',0,'https://haiku.gcch.fr/?post_type=product&p=342',0,'product','',0), -(347,2,'2024-10-15 15:51:14','2024-10-15 13:51:14','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9763','','','2024-10-15 15:51:54','2024-10-15 13:51:54','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9763.jpg',0,'attachment','image/jpeg',0), -(348,2,'2024-10-15 15:52:11','2024-10-15 13:52:11','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9781','','','2024-10-15 15:52:27','2024-10-15 13:52:27','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781.jpg',0,'attachment','image/jpeg',0), -(349,2,'2024-10-15 15:52:56','2024-10-15 13:52:56','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9748','','','2024-10-15 15:57:59','2024-10-15 13:57:59','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9748.jpg',0,'attachment','image/jpeg',0), -(385,2,'2024-10-18 08:19:19','2024-10-18 06:19:19','ROKKU: pebble\r\n\r\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\r\n
    \r\n
  • total chain length 50cm
  • \r\n
  • pendant height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','publish','closed','closed','','rokku-necklace','','','2025-05-09 17:57:00','2025-05-09 15:57:00','',0,'https://haiku.gcch.fr/?post_type=product&p=385',0,'product','',0), -(388,2,'2024-10-18 08:40:49','2024-10-18 06:40:49','','Rokku necklace silver and semi precious stone','','inherit','closed','closed','','rokku-c-arg','','','2024-10-18 08:41:04','2024-10-18 06:41:04','',385,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-C-arg.jpg',0,'attachment','image/jpeg',0), -(389,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Green Jaspe','Stone: Green Jaspe','publish','closed','closed','','fuyou-necklace-copy-green-jaspe','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=389',1,'product_variation','',0), -(391,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Lapis Lazuli','Stone: Lapis Lazuli','publish','closed','closed','','fuyou-necklace-copy-lapis-lazuli','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=391',2,'product_variation','',0), -(392,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','fuyou-necklace-copy-tiger-eye','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=392',3,'product_variation','',0), -(393,2,'2024-10-18 08:48:05','2024-10-18 06:48:05','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In sterling silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diameter 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Mugura Hoops silver','','publish','closed','closed','','mugura-hoops-silver','','','2025-08-31 09:21:50','2025-08-31 07:21:50','',0,'https://haiku.gcch.fr/?post_type=product&p=393',0,'product','',0), -(396,2,'2024-10-18 08:51:31','2024-10-18 06:51:31','','Mugura hoops silver','','inherit','closed','closed','','sony-dsc-46','','','2024-10-18 08:59:25','2024-10-18 06:59:25','',393,'https://haiku.gcch.fr/app/uploads/2024/10/MUGURA-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(397,2,'2024-10-18 08:59:16','2024-10-18 06:59:16','','Mugura hoops silver','','inherit','closed','closed','','_dsc9733','','','2024-11-08 00:27:40','2024-11-07 23:27:40','',393,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9733.jpg',0,'attachment','image/jpeg',0), -(398,2,'2024-10-18 09:00:33','2024-10-18 07:00:33','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diametre 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Mugura Hoops gold plated','','publish','closed','closed','','mugura-hoops-gold-plated','','','2025-08-31 09:19:19','2025-08-31 07:19:19','',0,'https://haiku.gcch.fr/?post_type=product&p=398',0,'product','',0), -(400,2,'2024-10-18 09:21:51','2024-10-18 07:21:51','','Mugura hoops silver','','inherit','closed','closed','','_dsc9723','','','2024-10-18 09:22:07','2024-10-18 07:22:07','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9723.jpg',0,'attachment','image/jpeg',0), -(401,2,'2024-10-18 09:22:21','2024-10-18 07:22:21','','Mugura hoops silver','','inherit','closed','closed','','_dsc9730','','','2024-10-18 09:22:38','2024-10-18 07:22:38','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9730.jpg',0,'attachment','image/jpeg',0), -(411,1,'2024-10-30 20:42:57','2024-10-30 19:42:57','','Hadou ring','','inherit','closed','closed','','_dsc8400-copie','','','2024-10-30 20:43:23','2024-10-30 19:43:23','',0,'https://haiku.gcch.fr/app/uploads/2024/09/DSC8400-copie.jpg',0,'attachment','image/jpeg',0), -(424,1,'2024-10-30 22:08:13','2024-10-30 21:08:13','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9376','','','2024-10-30 22:08:31','2024-10-30 21:08:31','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9376.jpg',0,'attachment','image/jpeg',0), -(435,1,'2024-10-30 22:36:02','2024-10-30 21:36:02','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Kara Ear Cuff silver','','publish','closed','closed','','kara-earcuff-silver','','','2025-06-17 10:28:57','2025-06-17 08:28:57','',0,'https://haiku.gcch.fr/?post_type=product&p=435',0,'product','',0), -(436,1,'2024-10-30 22:37:12','2024-10-30 21:37:12','','Kara ear cuff silver','','inherit','closed','closed','','sony-dsc-53','','','2024-10-30 22:37:44','2024-10-30 21:37:44','',435,'https://haiku.gcch.fr/app/uploads/2024/10/KARA-EC-arg.jpg',0,'attachment','image/jpeg',0), -(437,1,'2024-10-30 22:40:43','2024-10-30 21:40:43','','Kara ear cuff silver','','inherit','closed','closed','','_dsc9781-2','','','2024-10-30 22:40:56','2024-10-30 21:40:56','',435,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781-1.jpg',0,'attachment','image/jpeg',0), -(447,1,'2024-11-07 23:51:25','2024-11-07 22:51:25','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling gold plated silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','publish','closed','closed','','kara-ear-cuff-gold-plated','','','2025-06-17 10:27:36','2025-06-17 08:27:36','',0,'https://haikuatelier.com/?post_type=product&p=447',0,'product','',0), -(487,1,'2024-11-08 10:36:08','2024-11-08 09:36:08','','Rokku necklace tiger\'s eye stone','','inherit','closed','closed','','_dsc9138','','','2024-11-08 10:37:34','2024-11-08 09:37:34','',385,'https://haikuatelier.com/app/uploads/2024/10/DSC9138.jpg',0,'attachment','image/jpeg',0), -(490,1,'2024-11-10 12:47:12','2024-11-10 11:47:12','Hadou: wave\r\n\r\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\r\n
    \r\n
  • height 1cm
  • \r\n
  • wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','publish','closed','closed','','hadou-stud-earrings','','','2025-06-17 09:46:46','2025-06-17 07:46:46','',0,'https://haikuatelier.com/?post_type=product&p=490',0,'product','',0), -(493,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - left side','Side: left side','publish','closed','closed','','hattari-double-hoops-copy-left-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=493',2,'product_variation','',0), -(494,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - pair','Side: pair','publish','closed','closed','','hattari-double-hoops-copy-pair','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=494',1,'product_variation','',0), -(495,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - right side','Side: right side','publish','closed','closed','','hattari-double-hoops-copy-right-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=495',3,'product_variation','',0), -(496,1,'2024-11-10 13:07:31','2024-11-10 12:07:31','Mugura: vine\r\n\r\nSmall solo hoop in sterling silver with a wavy dangling element in gold plated silver.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • total height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 18K gold plated silver.','Mugura Solo Hoop','','publish','closed','closed','','kagun-hoop','','','2025-08-19 09:51:25','2025-08-19 07:51:25','',0,'https://haikuatelier.com/?post_type=product&p=496',0,'product','',0), -(506,0,'2024-11-11 23:02:44','2024-11-11 22:02:44','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2024-11-11 23:02:44','2024-11-11 22:02:44','',0,'https://haiku.gcch.fr/app/uploads/2024/11/woocommerce-placeholder.png',0,'attachment','image/png',0), -(510,1,'2024-11-12 17:15:05','2024-11-12 16:15:05','','Successful Order','','publish','closed','closed','','successful-order','','','2024-11-12 17:34:29','2024-11-12 16:34:29','',0,'https://haiku.gcch.fr/?page_id=510',0,'page','',0), -(511,1,'2024-11-12 17:15:13','2024-11-12 16:15:13','','Failed Order','','publish','closed','closed','','failed-order','','','2024-11-12 17:34:46','2024-11-12 16:34:46','',0,'https://haiku.gcch.fr/?page_id=511',0,'page','',0), -(515,1,'2024-11-12 23:15:48','2024-11-12 22:15:48','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings gold plated','','publish','closed','closed','','boroboro-bead-earrings-gold-plated','','','2025-06-19 16:20:08','2025-06-19 14:20:08','',0,'https://haikuatelier.com/?post_type=product&p=515',0,'product','',0), -(521,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings silver','','publish','closed','closed','','boroboro-bead-earrings-silver','','','2025-06-19 16:20:06','2025-06-19 14:20:06','',0,'https://haikuatelier.com/?post_type=product&p=521',0,'product','',0), -(523,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','','BoroBoro Bead Earrings silver - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-tigers-eye-2','','','2024-11-12 23:30:51','2024-11-12 22:30:51','',521,'https://haikuatelier.com/?post_type=product_variation&p=523',2,'product_variation','',0), -(528,1,'2024-11-12 23:40:20','2024-11-12 22:40:20','','Ikkan Ring silver - 64','Size: 64','publish','closed','closed','','ikkan-ring-silver-64','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haikuatelier.com/?post_type=product_variation&p=528',8,'product_variation','',0), -(529,1,'2024-11-12 23:42:21','2024-11-12 22:42:21','','Ikkan Ring gold plated - 64','Size: 64','publish','closed','closed','','ikkan-ring-gold-plated-64','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haikuatelier.com/?post_type=product_variation&p=529',8,'product_variation','',0), -(532,1,'2024-11-12 23:50:23','2024-11-12 22:50:23','','Kara Ring - 64','Size: 64','publish','closed','closed','','kara-ring-64','','','2025-08-21 09:32:13','2025-08-21 07:32:13','',133,'https://haikuatelier.com/?post_type=product_variation&p=532',8,'product_variation','',0), -(545,1,'2024-11-13 13:56:53','2024-11-13 12:56:53','KARA: hull, shell\r\n\r\nSmall textured gold plated silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','publish','closed','closed','','kara-hoops-gold-plated','','','2025-06-17 10:23:24','2025-06-17 08:23:24','',0,'https://haikuatelier.com/?post_type=product&p=545',0,'product','',0), -(552,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring','','','2025-05-09 18:01:13','2025-05-09 16:01:13','',545,'https://haikuatelier.com/?post_type=product_variation&p=552',2,'product_variation','',0), -(553,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair','','','2025-05-09 18:01:13','2025-05-09 16:01:13','',545,'https://haikuatelier.com/?post_type=product_variation&p=553',1,'product_variation','',0), -(554,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','KARA: hull, shell\r\n\r\nSmall textured sterling silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops silver','','publish','closed','closed','','kara-hoops-silver','','','2025-06-17 10:21:21','2025-06-17 08:21:21','',0,'https://haikuatelier.com/?post_type=product&p=554',0,'product','',0), -(555,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair-2','','','2025-05-09 18:01:37','2025-05-09 16:01:37','',554,'https://haikuatelier.com/?post_type=product_variation&p=555',1,'product_variation','',0), -(556,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring-2','','','2025-05-09 18:01:55','2025-05-09 16:01:55','',554,'https://haikuatelier.com/?post_type=product_variation&p=556',2,'product_variation','',0), -(560,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - all','Side: all','trash','closed','closed','','kagun-trio-earrings-all__trashed','','','2025-10-29 09:52:05','2025-10-29 08:52:05','',342,'https://haikuatelier.com/?post_type=product_variation&p=560',1,'product_variation','',0), -(561,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - long','Side: long','trash','closed','closed','','kagun-trio-earrings-long-side__trashed','','','2025-10-29 09:52:05','2025-10-29 08:52:05','',342,'https://haikuatelier.com/?post_type=product_variation&p=561',2,'product_variation','',0), -(562,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - medium','Side: medium','trash','closed','closed','','kagun-trio-earrings-medium-side__trashed','','','2025-10-29 09:52:05','2025-10-29 08:52:05','',342,'https://haikuatelier.com/?post_type=product_variation&p=562',3,'product_variation','',0), -(563,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - short','Side: short','trash','closed','closed','','kagun-trio-earrings-short-side__trashed','','','2025-10-29 09:52:05','2025-10-29 08:52:05','',342,'https://haikuatelier.com/?post_type=product_variation&p=563',4,'product_variation','',0), -(565,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-silver-one-element-side','','','2025-09-24 14:45:44','2025-09-24 12:45:44','',183,'https://haikuatelier.com/?post_type=product_variation&p=565',2,'product_variation','',0), -(566,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-silver-pair','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=566',1,'product_variation','',0), -(567,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-silver-two-elements-side','','','2025-09-24 14:45:44','2025-09-24 12:45:44','',183,'https://haikuatelier.com/?post_type=product_variation&p=567',3,'product_variation','',0), -(569,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-one-element-side','','','2025-09-24 15:10:36','2025-09-24 13:10:36','',213,'https://haikuatelier.com/?post_type=product_variation&p=569',2,'product_variation','',0), -(570,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-gold-plated-pair','','','2025-06-18 22:36:56','2025-06-18 20:36:56','',213,'https://haikuatelier.com/?post_type=product_variation&p=570',1,'product_variation','',0), -(571,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-two-elements-side','','','2025-09-24 15:10:36','2025-09-24 13:10:36','',213,'https://haikuatelier.com/?post_type=product_variation&p=571',3,'product_variation','',0), -(610,1,'2024-11-13 18:30:59','2024-11-13 17:30:59','HATTARI: bluff\r\n\r\nA bangle bracelet composed of a wide asymmetrical band in sterling silver, and a round wire in gold plated silver crossing it.\r\n
    \r\n
  • adjustable
  • \r\n
  • band width 2cm and wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Hattari Cuff','','trash','closed','closed','','hattari-cuff__trashed','','','2025-10-29 09:51:43','2025-10-29 08:51:43','',0,'https://haikuatelier.com/?post_type=product&p=610',0,'product','',0), -(613,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist gold plated ring composed of a thick round band and a movable prehnite bead.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring gold plated','','publish','closed','closed','','boroboro-bead-ring-gold-plated','','','2025-09-08 11:15:39','2025-09-08 09:15:39','',0,'https://haikuatelier.com/?post_type=product&p=613',0,'product','',0), -(614,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-119','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=614',1,'product_variation','',0), -(615,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-120','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=615',2,'product_variation','',0), -(616,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-121','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=616',3,'product_variation','',0), -(617,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-122','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=617',4,'product_variation','',0), -(618,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-123','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=618',5,'product_variation','',0), -(619,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-124','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=619',6,'product_variation','',0), -(620,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-125','','','2024-11-16 19:45:02','2024-11-16 18:45:02','',613,'https://haikuatelier.com/?post_type=product_variation&p=620',7,'product_variation','',0), -(624,1,'2024-11-13 19:09:17','2024-11-13 18:09:17','','BoroBoro Bead Ring gold plated - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-64','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=624',8,'product_variation','',0), -(625,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye or honey jade.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring silver & honey jade','','publish','closed','closed','','boroboro-bead-ring-silver','','','2025-10-29 09:32:31','2025-10-29 08:32:31','',0,'https://haikuatelier.com/?post_type=product&p=625',0,'product','',0), -(626,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-126','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=626',1,'product_variation','',0), -(627,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-127','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=627',2,'product_variation','',0), -(628,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-128','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=628',3,'product_variation','',0), -(629,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-129','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=629',4,'product_variation','',0), -(630,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-130','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=630',5,'product_variation','',0), -(631,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-131','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=631',6,'product_variation','',0), -(632,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-132','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=632',7,'product_variation','',0), -(633,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-65','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=633',8,'product_variation','',0), -(637,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - left side','Side: left side','publish','closed','closed','','piasu-earrings-left-side','','','2024-11-15 12:38:50','2024-11-15 11:38:50','',202,'https://haikuatelier.com/?post_type=product_variation&p=637',2,'product_variation','',0), -(638,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - pair','Side: pair','publish','closed','closed','','piasu-earrings-pair','','','2024-11-13 19:25:24','2024-11-13 18:25:24','',202,'https://haikuatelier.com/?post_type=product_variation&p=638',1,'product_variation','',0), -(639,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - right side','Side: right side','publish','closed','closed','','piasu-earrings-right-side','','','2024-11-13 19:25:24','2024-11-13 18:25:24','',202,'https://haikuatelier.com/?post_type=product_variation&p=639',3,'product_variation','',0), -(641,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-silver-left-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=641',2,'product_variation','',0), -(642,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-silver-pair','','','2025-06-18 22:31:04','2025-06-18 20:31:04','',285,'https://haikuatelier.com/?post_type=product_variation&p=642',1,'product_variation','',0), -(643,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-silver-right-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=643',3,'product_variation','',0), -(645,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-left-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=645',2,'product_variation','',0), -(646,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-gold-plated-pair','','','2025-06-18 22:30:24','2025-06-18 20:30:24','',288,'https://haikuatelier.com/?post_type=product_variation&p=646',1,'product_variation','',0), -(647,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-right-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=647',3,'product_variation','',0), -(651,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - long','Side: long','publish','closed','closed','','tamanori-hoops-silver-long','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=651',2,'product_variation','',0), -(652,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - pair','Side: pair','publish','closed','closed','','tamanori-hoops-silver-pair','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=652',1,'product_variation','',0), -(653,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - short','Side: short','publish','closed','closed','','tamanori-hoops-silver-short','','','2024-11-15 12:32:10','2024-11-15 11:32:10','',306,'https://haikuatelier.com/?post_type=product_variation&p=653',3,'product_variation','',0), -(654,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - long','Side: long','publish','closed','closed','','tamanori-hoops-gold-plated-long','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=654',2,'product_variation','',0), -(655,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - pair','Side: pair','publish','closed','closed','','tamanori-hoops-gold-plated-pair','','','2024-11-13 20:13:10','2024-11-13 19:13:10','',312,'https://haikuatelier.com/?post_type=product_variation&p=655',1,'product_variation','',0), -(656,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - short','Side: short','publish','closed','closed','','tamanori-hoops-gold-plated-short','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=656',3,'product_variation','',0), -(659,1,'2024-11-15 12:26:34','2024-11-15 11:26:34','','Hadou wavy ring silver and gold','','inherit','closed','closed','','hadou-b-opti','','','2024-11-15 17:20:07','2024-11-15 16:20:07','',72,'https://haikuatelier.com/app/uploads/2024/09/HADOU-B-opti.jpg',0,'wmpc-trash','image/jpeg',0), -(660,1,'2024-11-15 12:30:13','2024-11-15 11:30:13','','Tamanori hoops gold plated','','inherit','closed','closed','','img_1442','','','2024-11-15 12:30:25','2024-11-15 11:30:25','',312,'https://haikuatelier.com/app/uploads/2024/10/IMG_1442.jpg',0,'attachment','image/jpeg',0), -(664,1,'2024-11-15 12:45:23','2024-11-15 11:45:23','','Kagun trio earrings','','inherit','closed','closed','','img_1512','','','2024-11-15 12:45:38','2024-11-15 11:45:38','',342,'https://haikuatelier.com/app/uploads/2024/10/IMG_1512.jpg',0,'attachment','image/jpeg',0), -(671,1,'2024-11-15 13:18:10','2024-11-15 12:18:10','','BoroBoro gold plated asymmetrical earrings','','inherit','closed','closed','','img_1604','','','2024-11-15 13:18:55','2024-11-15 12:18:55','',213,'https://haikuatelier.com/app/uploads/2024/10/IMG_1604.jpg',0,'attachment','image/jpeg',0), -(672,1,'2024-11-15 13:23:08','2024-11-15 12:23:08','','Hattari ear cuff gold plated','','inherit','closed','closed','','img_1656-2','','','2024-11-15 13:27:38','2024-11-15 12:27:38','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1656-1.jpg',0,'attachment','image/jpeg',0), -(673,1,'2024-11-15 13:29:39','2024-11-15 12:29:39','','Mugura minimalist silver hoops','','inherit','closed','closed','','img_1657','','','2024-11-15 13:30:07','2024-11-15 12:30:07','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1657.jpg',0,'attachment','image/jpeg',0), -(679,1,'2024-11-16 19:53:30','2024-11-16 18:53:30','','Fuyou necklace','','inherit','closed','closed','','_dsc9116','','','2024-11-16 19:53:56','2024-11-16 18:53:56','',274,'https://haikuatelier.com/app/uploads/2024/10/DSC9116.jpg',0,'attachment','image/jpeg',0), -(681,1,'2024-11-17 10:24:25','2024-11-17 09:24:25','','Piasu Ring','','inherit','closed','closed','','dsc9897','','','2024-11-17 10:24:56','2024-11-17 09:24:56','',0,'https://haikuatelier.com/app/uploads/2024/09/DSC9897.jpg',0,'attachment','image/jpeg',0), -(684,1,'2024-11-17 10:35:57','2024-11-17 09:35:57','','Ikkan ring gold plated','','inherit','closed','closed','','img_1478','','','2024-11-17 10:36:09','2024-11-17 09:36:09','',113,'https://haikuatelier.com/app/uploads/2024/09/IMG_1478.jpg',0,'attachment','image/jpeg',0), -(689,1,'2024-11-17 10:50:52','2024-11-17 09:50:52','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9341','','','2024-11-17 10:51:13','2024-11-17 09:51:13','',288,'https://haikuatelier.com/app/uploads/2024/10/DSC9341.jpg',0,'attachment','image/jpeg',0), -(700,1,'2024-11-17 11:10:04','2024-11-17 10:10:04','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1431','','','2024-11-17 11:10:29','2024-11-17 10:10:29','',251,'https://haikuatelier.com/app/uploads/2024/10/IMG_1431.jpg',0,'attachment','image/jpeg',0), -(702,1,'2024-11-17 11:11:49','2024-11-17 10:11:49','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1432','','','2024-11-17 11:12:02','2024-11-17 10:12:02','',251,'https://haikuatelier.com/app/uploads/2024/10/IMG_1432.jpg',0,'attachment','image/jpeg',0), -(704,1,'2024-11-17 11:18:25','2024-11-17 10:18:25','','Piasu necklace','','inherit','closed','closed','','img_1493','','','2024-11-17 11:18:37','2024-11-17 10:18:37','',268,'https://haikuatelier.com/app/uploads/2024/10/IMG_1493.jpg',0,'attachment','image/jpeg',0), -(705,1,'2024-11-17 11:21:09','2024-11-17 10:21:09','','Rokku necklace jaspe stone','','inherit','closed','closed','','img_1531','','','2024-11-17 11:21:43','2024-11-17 10:21:43','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1531.jpg',0,'attachment','image/jpeg',0), -(707,1,'2024-11-17 11:24:00','2024-11-17 10:24:00','','Rokku necklace lapis lazuli stone','','inherit','closed','closed','','img_1543','','','2024-11-17 11:24:27','2024-11-17 10:24:27','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1543.jpg',0,'attachment','image/jpeg',0), -(713,1,'2024-11-17 11:39:49','2024-11-17 10:39:49','','Fuyou necklace','','inherit','closed','closed','','img_1647','','','2024-11-17 11:39:58','2024-11-17 10:39:58','',274,'https://haikuatelier.com/app/uploads/2024/10/IMG_1647.jpg',0,'attachment','image/jpeg',0), -(714,1,'2024-11-17 11:42:07','2024-11-17 10:42:07','','Fuyou solo hoop','','inherit','closed','closed','','img_1651','','','2024-11-17 11:42:18','2024-11-17 10:42:18','',318,'https://haikuatelier.com/app/uploads/2024/10/IMG_1651.jpg',0,'attachment','image/jpeg',0), -(715,1,'2024-11-17 11:44:06','2024-11-17 10:44:06','','Rokku silver hoop and Tamanori goldplated earring','','inherit','closed','closed','','img_1669','','','2024-11-17 11:44:41','2024-11-17 10:44:41','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1669.jpg',0,'attachment','image/jpeg',0), -(718,1,'2024-11-17 11:54:22','2024-11-17 10:54:22','','Boroboro earrings silver','','inherit','closed','closed','','img_1746','','','2025-09-24 14:43:46','2025-09-24 12:43:46','',183,'https://haikuatelier.com/app/uploads/2024/10/IMG_1746.jpg',0,'attachment','image/jpeg',0), -(722,1,'2024-11-17 17:29:17','2024-11-17 16:29:17','','Mugura hoops gold plated','','inherit','closed','closed','','sony-dsc-39','','','2024-11-17 17:29:34','2024-11-17 16:29:34','',398,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-vrm.jpg',0,'attachment','image/jpeg',0), -(725,1,'2024-11-17 17:36:52','2024-11-17 16:36:52','','Piasu necklace','SONY DSC','inherit','closed','closed','','sony-dsc-23','','','2024-11-17 17:37:08','2024-11-17 16:37:08','',268,'https://haikuatelier.com/app/uploads/2024/10/PIASU-C.jpg',0,'attachment','image/jpeg',0), -(726,1,'2024-11-17 17:39:44','2024-11-17 16:39:44','','Rokku ring silver and malachite','','inherit','closed','closed','','rokku-b-malachite','','','2024-11-17 17:40:01','2024-11-17 16:40:01','',168,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-B-malachite.jpg',0,'attachment','image/jpeg',0), -(727,1,'2024-11-17 17:41:31','2024-11-17 16:41:31','','Rokku necklace with jaspe','','inherit','closed','closed','','sony-dsc-49','','','2024-11-17 17:41:48','2024-11-17 16:41:48','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-jaspe.jpg',0,'attachment','image/jpeg',0), -(729,1,'2024-11-17 17:44:27','2024-11-17 16:44:27','','Rokku necklace tiger\'s eye','','inherit','closed','closed','','sony-dsc-45','','','2024-11-17 17:44:45','2024-11-17 16:44:45','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-tiger.jpg',0,'attachment','image/jpeg',0), -(730,1,'2024-11-17 17:52:40','2024-11-17 16:52:40','','Rokku solo hoop gold plated lapis lazuli','','inherit','closed','closed','','sony-dsc-52','','','2024-11-17 17:53:02','2024-11-17 16:53:02','',0,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-lapis.jpg',0,'attachment','image/jpeg',0), -(731,1,'2024-11-17 17:54:12','2024-11-17 16:54:12','','Rokku solo hoop gold plated malachite','','inherit','closed','closed','','sony-dsc-55','','','2024-11-17 17:54:32','2024-11-17 16:54:32','',0,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-malachite.jpg',0,'attachment','image/jpeg',0), -(732,1,'2024-11-17 17:55:29','2024-11-17 16:55:29','','Rokku solo hoop gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-56','','','2024-11-17 17:55:59','2024-11-17 16:55:59','',0,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-tiger.jpg',0,'attachment','image/jpeg',0), -(735,1,'2024-11-17 18:03:32','2024-11-17 17:03:32','','Tamanori hoops gold plated','','inherit','closed','closed','','sony-dsc-32','','','2024-11-17 18:03:50','2024-11-17 17:03:50','',312,'https://haikuatelier.com/app/uploads/2024/10/TAMANORI-CR2-vrm.jpg',0,'attachment','image/jpeg',0), -(736,1,'2024-11-17 18:05:42','2024-11-17 17:05:42','','Tanemaki pearls bracelet','','inherit','closed','closed','','sony-dsc-59','','','2024-11-17 18:05:56','2024-11-17 17:05:56','',251,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-BR.jpg',0,'attachment','image/jpeg',0), -(743,1,'2024-11-17 18:19:23','2024-11-17 17:19:23','','BoroBoro bead ring gold plated','','inherit','closed','closed','','sony-dsc-73','','','2024-11-17 18:19:43','2024-11-17 17:19:43','',613,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-g.jpg',0,'attachment','image/jpeg',0), -(744,1,'2024-11-17 18:20:59','2024-11-17 17:20:59','','BoroBoro bead ring silver','','inherit','closed','closed','','sony-dsc-74','','','2024-11-17 18:21:16','2024-11-17 17:21:16','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-s.jpg',0,'attachment','image/jpeg',0), -(747,1,'2024-11-17 18:27:21','2024-11-17 17:27:21','','BoroBoro beads earrings gold plated and aventurine','','inherit','closed','closed','','sony-dsc-63','','','2024-11-17 18:27:51','2024-11-17 17:27:51','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-green.jpg',0,'attachment','image/jpeg',0), -(748,1,'2024-11-17 18:28:18','2024-11-17 17:28:18','','BoroBoro beads earrings gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-64','','','2024-11-17 18:28:45','2024-11-17 17:28:45','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-brown.jpg',0,'attachment','image/jpeg',0), -(749,1,'2024-11-17 18:30:10','2024-11-17 17:30:10','','BoroBoro beads earrings silver and tiger\'s eye','','inherit','closed','closed','','sony-dsc-65','','','2024-11-17 18:30:37','2024-11-17 17:30:37','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-brown.jpg',0,'attachment','image/jpeg',0), -(750,1,'2024-11-17 18:30:59','2024-11-17 17:30:59','','BoroBoro beads earrings silver and aventurine','','inherit','closed','closed','','sony-dsc-66','','','2024-11-17 18:31:22','2024-11-17 17:31:22','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-green.jpg',0,'attachment','image/jpeg',0), -(751,1,'2024-11-17 18:34:14','2024-11-17 17:34:14','','Kara hoops silver','','inherit','closed','closed','','_dsc9463','','','2024-11-17 18:34:32','2024-11-17 17:34:32','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC9463.jpg',0,'attachment','image/jpeg',0), -(752,1,'2024-11-17 18:35:52','2024-11-17 17:35:52','','Hadou stud earrings','','inherit','closed','closed','','sony-dsc-60','','','2024-11-17 18:37:25','2024-11-17 17:37:25','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP.jpg',0,'attachment','image/jpeg',0), -(753,1,'2024-11-17 18:40:18','2024-11-17 17:40:18','','Hattari cuff','','inherit','closed','closed','','sony-dsc-15','','','2024-11-17 18:40:30','2024-11-17 17:40:30','',610,'https://haikuatelier.com/app/uploads/2024/11/HATTARI-BR.jpg',0,'attachment','image/jpeg',0), -(755,1,'2024-11-17 18:44:27','2024-11-17 17:44:27','','Hadou stud earrings silver','','inherit','closed','closed','','img_1474','','','2024-11-17 18:45:04','2024-11-17 17:45:04','',490,'https://haikuatelier.com/app/uploads/2024/11/IMG_1474.jpg',0,'attachment','image/jpeg',0), -(756,1,'2024-11-17 18:47:01','2024-11-17 17:47:01','','Kagun solo hoop earring','','inherit','closed','closed','','img_1481','','','2024-11-17 18:47:16','2024-11-17 17:47:16','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1481.jpg',0,'attachment','image/jpeg',0), -(757,1,'2024-11-17 18:48:24','2024-11-17 17:48:24','','Kagun solo hoop earring','','inherit','closed','closed','','img_1484','','','2024-11-17 18:48:35','2024-11-17 17:48:35','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1484.jpg',0,'attachment','image/jpeg',0), -(758,1,'2024-11-17 18:50:22','2024-11-17 17:50:22','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1501','','','2024-11-17 18:55:54','2024-11-17 17:55:54','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1501.jpg',0,'attachment','image/jpeg',0), -(759,1,'2024-11-17 18:51:58','2024-11-17 17:51:58','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1506','','','2024-11-17 18:55:47','2024-11-17 17:55:47','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1506.jpg',0,'attachment','image/jpeg',0), -(761,1,'2024-11-17 18:55:14','2024-11-17 17:55:14','','BoroBoro bead ring gold plated and aventurine','','inherit','closed','closed','','img_1554','','','2024-11-17 18:55:37','2024-11-17 17:55:37','',613,'https://haikuatelier.com/app/uploads/2024/11/IMG_1554.jpg',0,'attachment','image/jpeg',0), -(762,1,'2024-11-17 18:57:40','2024-11-17 17:57:40','','Kara textured hoops gold plated','','inherit','closed','closed','','img_1563','','','2024-11-17 18:58:00','2024-11-17 17:58:00','',545,'https://haikuatelier.com/app/uploads/2024/11/IMG_1563.jpg',0,'attachment','image/jpeg',0), -(766,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','Fuyou : floating leave on water\r\n\r\nLong dangling earrings in sterling silver. Composed of fluid oval shapes and rectangular chains with gold plated details.\r\n\r\n• total length 5cm\r\n• oval length 2,5cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\r\n\r\n ','Fuyou Long Earrings silver','','publish','closed','closed','','fuyou-long-earrings-silver','','','2025-08-18 13:44:35','2025-08-18 11:44:35','',0,'https://haikuatelier.com/?post_type=product&p=766',0,'product','',0), -(819,1,'2024-11-24 11:42:38','2024-11-24 10:42:38','','Haiku size guide','','inherit','closed','closed','','haiku-ringsizes','','','2024-11-24 11:42:57','2024-11-24 10:42:57','',0,'https://haikuatelier.com/app/uploads/2024/11/HAIKU-ringsizes.jpg',0,'attachment','image/jpeg',0), -(820,1,'2024-11-24 11:53:29','2024-11-24 10:53:29','','Ikkan ring gold plated','','inherit','closed','closed','','sony-dsc-4','','','2024-11-24 11:53:45','2024-11-24 10:53:45','',113,'https://haikuatelier.com/app/uploads/2024/09/IKKAN-B-vrm.jpg',0,'attachment','image/jpeg',0), -(821,1,'2024-11-24 11:55:38','2024-11-24 10:55:38','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-6','','','2024-11-24 11:55:59','2024-11-24 10:55:59','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B.jpg',0,'attachment','image/jpeg',0), -(822,1,'2024-11-24 11:55:39','2024-11-24 10:55:39','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-76','','','2024-11-24 11:56:08','2024-11-24 10:56:08','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B-1.jpg',0,'attachment','image/jpeg',0), -(825,1,'2024-11-24 12:05:34','2024-11-24 11:05:34','','Ikkan bracelet gold plated','','inherit','closed','closed','','img_1505','','','2024-11-24 12:05:50','2024-11-24 11:05:50','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1505.jpg',0,'attachment','image/jpeg',0), -(826,1,'2024-11-24 12:07:57','2024-11-24 11:07:57','','Rokku ring silver and 18k gold','','inherit','closed','closed','','img_1582','','','2024-11-24 12:08:10','2024-11-24 11:08:10','',168,'https://haikuatelier.com/app/uploads/2024/10/IMG_1582.jpg',0,'attachment','image/jpeg',0), -(828,1,'2024-11-24 12:11:18','2024-11-24 11:11:18','','Rokku necklace silver and lapis lazuli','SONY DSC','inherit','closed','closed','','sony-dsc-58','','','2024-11-24 12:11:34','2024-11-24 11:11:34','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-lapis-copy.jpg',0,'attachment','image/jpeg',0), -(829,1,'2024-11-24 15:08:28','2024-11-24 14:08:28','','Hattari cuff','','inherit','closed','closed','','img_1460','','','2024-11-24 15:08:36','2024-11-24 14:08:36','',610,'https://haikuatelier.com/app/uploads/2024/11/IMG_1460.jpg',0,'attachment','image/jpeg',0), -(830,1,'2024-11-24 15:10:45','2024-11-24 14:10:45','','Kara ear cuff','','inherit','closed','closed','','img_1473','','','2024-11-24 15:11:09','2024-11-24 14:11:09','',447,'https://haikuatelier.com/app/uploads/2024/11/IMG_1473.jpg',0,'attachment','image/jpeg',0), -(831,1,'2024-11-24 15:13:27','2024-11-24 14:13:27','','BoroBoro bead earrings','','inherit','closed','closed','','img_1524','','','2024-11-24 15:13:44','2024-11-24 14:13:44','',521,'https://haikuatelier.com/app/uploads/2024/11/IMG_1524.jpg',0,'attachment','image/jpeg',0), -(832,1,'2024-11-24 15:14:54','2024-11-24 14:14:54','','BoroBoro bead earrings','','inherit','closed','closed','','img_1525','','','2024-11-24 15:15:08','2024-11-24 14:15:08','',515,'https://haikuatelier.com/app/uploads/2024/11/IMG_1525.jpg',0,'attachment','image/jpeg',0), -(834,1,'2024-11-24 15:19:36','2024-11-24 14:19:36','','Kara textured hoops gold plated','','inherit','closed','closed','','sony-dsc-69','','','2024-11-24 15:19:54','2024-11-24 14:19:54','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g.jpg',0,'attachment','image/jpeg',0), -(835,1,'2024-11-24 15:21:03','2024-11-24 14:21:03','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-70','','','2024-11-24 15:21:25','2024-11-24 14:21:25','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s.jpg',0,'attachment','image/jpeg',0), -(836,1,'2024-11-24 15:24:19','2024-11-24 14:24:19','','Kara ear cuff gold plated','','inherit','closed','closed','','sony-dsc-54','','','2024-11-24 15:24:36','2024-11-24 14:24:36','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-vrm.jpg',0,'attachment','image/jpeg',0), -(851,1,'2024-11-25 16:26:31','2024-11-25 15:26:31','','NEWSHOP20','Code promo pour l\'ouverture du site.','publish','closed','closed','','newshop20','','','2024-12-04 00:23:03','2024-12-03 23:23:03','',0,'https://haikuatelier.com/?post_type=shop_coupon&p=851',0,'shop_coupon','',0), -(861,1,'2024-11-28 16:21:17','2024-11-28 15:21:17','','','','draft','closed','closed','','','','','2024-11-28 16:21:17','2024-11-28 15:21:17','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=861',0,'shop_order_placehold','',3), -(862,1,'2024-11-28 16:40:46','2024-11-28 15:40:46','','','','draft','closed','closed','','','','','2024-11-28 16:40:46','2024-11-28 15:40:46','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=862',0,'shop_order_placehold','',1), -(866,1,'2024-11-29 10:05:49','2024-11-29 09:05:49','','','','draft','closed','closed','','','','','2024-11-29 10:05:49','2024-11-29 09:05:49','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=866',0,'shop_order_placehold','',1), -(867,1,'2024-11-29 10:30:23','2024-11-29 09:30:23','','','','draft','closed','closed','','','','','2024-11-29 10:30:23','2024-11-29 09:30:23','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=867',0,'shop_order_placehold','',0), -(868,1,'2024-11-29 18:22:16','2024-11-29 17:22:16','','','','draft','closed','closed','','','','','2024-11-29 18:22:16','2024-11-29 17:22:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=868',0,'shop_order_placehold','',1), -(869,1,'2024-12-02 11:05:43','2024-12-02 10:05:43','','','','draft','closed','closed','','','','','2024-12-02 11:05:43','2024-12-02 10:05:43','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=869',0,'shop_order_placehold','',1), -(870,1,'2024-12-02 11:46:48','2024-12-02 10:46:48','','','','draft','closed','closed','','','','','2024-12-02 11:46:48','2024-12-02 10:46:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=870',0,'shop_order_placehold','',0), -(871,1,'2024-12-02 17:33:11','2024-12-02 16:33:11','','','','draft','closed','closed','','','','','2024-12-02 17:33:11','2024-12-02 16:33:11','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=871',0,'shop_order_placehold','',1), -(872,1,'2024-12-03 18:03:18','2024-12-03 17:03:18','','','','draft','closed','closed','','','','','2024-12-03 18:03:18','2024-12-03 17:03:18','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=872',0,'shop_order_placehold','',1), -(873,1,'2024-12-03 23:53:41','2024-12-03 22:53:41','','','','draft','closed','closed','','','','','2024-12-03 23:53:41','2024-12-03 22:53:41','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=873',0,'shop_order_placehold','',1), -(876,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=876',0,'shop_order_placehold','',0), -(877,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=877',0,'shop_order_placehold','',0), -(878,1,'2024-12-06 14:08:34','2024-12-06 13:08:34','','','','draft','closed','closed','','','','','2024-12-06 14:08:34','2024-12-06 13:08:34','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=878',0,'shop_order_placehold','',3), -(879,1,'2024-12-06 15:04:22','2024-12-06 14:04:22','','','','draft','closed','closed','','','','','2024-12-06 15:04:22','2024-12-06 14:04:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=879',0,'shop_order_placehold','',2), -(880,1,'2024-12-12 17:55:38','2024-12-12 16:55:38','','','','draft','closed','closed','','','','','2024-12-12 17:55:38','2024-12-12 16:55:38','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=880',0,'shop_order_placehold','',3), -(881,1,'2024-12-13 09:37:26','2024-12-13 08:37:26','','','','draft','closed','closed','','','','','2024-12-13 09:37:26','2024-12-13 08:37:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=881',0,'shop_order_placehold','',2), -(884,1,'2024-12-14 11:10:01','2024-12-14 10:10:01','','','','draft','closed','closed','','','','','2024-12-14 11:10:01','2024-12-14 10:10:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=884',0,'shop_order_placehold','',3), -(885,1,'2024-12-16 10:16:07','2024-12-16 09:16:07','','','','draft','closed','closed','','','','','2024-12-16 10:16:07','2024-12-16 09:16:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=885',0,'shop_order_placehold','',2), -(886,1,'2024-12-17 09:40:04','2024-12-17 08:40:04','','','','draft','closed','closed','','','','','2024-12-17 09:40:04','2024-12-17 08:40:04','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=886',0,'shop_order_placehold','',2), -(887,1,'2024-12-18 16:13:28','2024-12-18 15:13:28','','','','draft','closed','closed','','','','','2024-12-18 16:13:28','2024-12-18 15:13:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=887',0,'shop_order_placehold','',2), -(888,1,'2024-12-19 10:08:20','2024-12-19 09:08:20','','','','draft','closed','closed','','','','','2024-12-19 10:08:20','2024-12-19 09:08:20','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=888',0,'shop_order_placehold','',2), -(889,1,'2024-12-26 13:37:45','2024-12-26 12:37:45','','','','draft','closed','closed','','','','','2024-12-26 13:37:45','2024-12-26 12:37:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=889',0,'shop_order_placehold','',2), -(890,1,'2024-12-29 15:53:20','2024-12-29 14:53:20','','','','draft','closed','closed','','','','','2024-12-29 15:53:20','2024-12-29 14:53:20','',888,'https://haikuatelier.com/?post_type=shop_order_placehold&p=890',0,'shop_order_placehold','',0), -(891,1,'2024-12-30 11:40:43','2024-12-30 10:40:43','','','','draft','closed','closed','','','','','2024-12-30 11:40:43','2024-12-30 10:40:43','',880,'https://haikuatelier.com/?post_type=shop_order_placehold&p=891',0,'shop_order_placehold','',0), -(892,1,'2024-12-30 19:59:22','2024-12-30 18:59:22','','','','draft','closed','closed','','','','','2024-12-30 19:59:22','2024-12-30 18:59:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=892',0,'shop_order_placehold','',0), -(893,1,'2025-01-03 09:10:31','2025-01-03 08:10:31','','','','draft','closed','closed','','','','','2025-01-03 09:10:31','2025-01-03 08:10:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=893',0,'shop_order_placehold','',0), -(894,1,'2025-01-03 10:04:01','2025-01-03 09:04:01','','','','draft','closed','closed','','','','','2025-01-03 10:04:01','2025-01-03 09:04:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=894',0,'shop_order_placehold','',2), -(895,1,'2025-01-09 13:01:26','2025-01-09 12:01:26','','','','draft','closed','closed','','','','','2025-01-09 13:01:26','2025-01-09 12:01:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=895',0,'shop_order_placehold','',2), -(896,1,'2025-01-23 22:51:50','2025-01-23 21:51:50','','','','draft','closed','closed','','','','','2025-01-23 22:51:50','2025-01-23 21:51:50','',884,'https://haikuatelier.com/?post_type=shop_order_placehold&p=896',0,'shop_order_placehold','',0), -(897,1,'2025-01-29 11:32:07','2025-01-29 10:32:07','','','','draft','closed','closed','','','','','2025-01-29 11:32:07','2025-01-29 10:32:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=897',0,'shop_order_placehold','',2), -(898,1,'2025-01-30 09:55:09','2025-01-30 08:55:09','','','','draft','closed','closed','','','','','2025-01-30 09:55:09','2025-01-30 08:55:09','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=898',0,'shop_order_placehold','',0), -(899,1,'2025-01-30 09:57:12','2025-01-30 08:57:12','','','','draft','closed','closed','','','','','2025-01-30 09:57:12','2025-01-30 08:57:12','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=899',0,'shop_order_placehold','',2), -(900,1,'2025-02-21 20:32:16','2025-02-21 19:32:16','','','','draft','closed','closed','','','','','2025-02-21 20:32:16','2025-02-21 19:32:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=900',0,'shop_order_placehold','',0), -(901,1,'2025-02-23 18:08:07','2025-02-23 17:08:07','','','','draft','closed','closed','','','','','2025-02-23 18:08:07','2025-02-23 17:08:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=901',0,'shop_order_placehold','',1), -(902,1,'2025-02-26 13:51:14','2025-02-26 12:51:14','','','','draft','closed','closed','','','','','2025-02-26 13:51:14','2025-02-26 12:51:14','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=902',0,'shop_order_placehold','',0), -(903,1,'2025-02-26 13:51:16','2025-02-26 12:51:16','','','','draft','closed','closed','','','','','2025-02-26 13:51:16','2025-02-26 12:51:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=903',0,'shop_order_placehold','',2), -(904,1,'2025-03-03 08:31:50','2025-03-03 07:31:50','','','','draft','closed','closed','','','','','2025-03-03 08:31:50','2025-03-03 07:31:50','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=904',0,'shop_order_placehold','',0), -(905,1,'2025-03-03 11:45:26','2025-03-03 10:45:26','','','','draft','closed','closed','','','','','2025-03-03 11:45:26','2025-03-03 10:45:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=905',0,'shop_order_placehold','',2), -(906,1,'2025-03-03 12:10:15','2025-03-03 11:10:15','','','','draft','closed','closed','','','','','2025-03-03 12:10:15','2025-03-03 11:10:15','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=906',0,'shop_order_placehold','',2), -(907,1,'2025-03-05 12:04:07','2025-03-05 11:04:07','','','','draft','closed','closed','','','','','2025-03-05 12:04:07','2025-03-05 11:04:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=907',0,'shop_order_placehold','',2), -(908,1,'2025-03-23 22:39:51','2025-03-23 21:39:51','','','','draft','closed','closed','','','','','2025-03-23 22:39:51','2025-03-23 21:39:51','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=908',0,'shop_order_placehold','',2), -(909,1,'2025-04-07 13:50:33','2025-04-07 11:50:33','','','','draft','closed','closed','','','','','2025-04-07 13:50:33','2025-04-07 11:50:33','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=909',0,'shop_order_placehold','',0), -(910,1,'2025-04-08 13:44:22','2025-04-08 11:44:22','','','','draft','closed','closed','','','','','2025-04-08 13:44:22','2025-04-08 11:44:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=910',0,'shop_order_placehold','',2), -(911,1,'2025-05-05 11:14:57','2025-05-05 09:14:57','','','','draft','closed','closed','','','','','2025-05-05 11:14:57','2025-05-05 09:14:57','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=911',0,'shop_order_placehold','',0), -(912,1,'2025-05-09 11:49:40','2025-05-09 09:49:40','','','','draft','closed','closed','','','','','2025-05-09 11:49:40','2025-05-09 09:49:40','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=912',0,'shop_order_placehold','',2), -(913,1,'2025-05-09 17:41:06','2025-05-09 15:41:06','ROKKU: pebble\n\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in some 18K gold.\n
    \n
  • adjustable
  • \n
  • height 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','inherit','closed','closed','','168-autosave-v1','','','2025-05-09 17:41:06','2025-05-09 15:41:06','',168,'https://haikuatelier.com/?p=913',0,'revision','',0), -(919,1,'2025-05-09 21:54:35','2025-05-09 19:54:35','','','','draft','closed','closed','','','','','2025-05-09 21:54:35','2025-05-09 19:54:35','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=919',0,'shop_order_placehold','',0), -(920,1,'2025-05-09 21:56:26','2025-05-09 19:56:26','','','','draft','closed','closed','','','','','2025-05-09 21:56:26','2025-05-09 19:56:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=920',0,'shop_order_placehold','',0), -(921,1,'2025-05-09 21:56:27','2025-05-09 19:56:27','','','','draft','closed','closed','','','','','2025-05-09 21:56:27','2025-05-09 19:56:27','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=921',0,'shop_order_placehold','',2), -(922,1,'2025-05-09 21:56:28','2025-05-09 19:56:28','','','','draft','closed','closed','','','','','2025-05-09 21:56:28','2025-05-09 19:56:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=922',0,'shop_order_placehold','',2), -(923,1,'2025-06-04 13:13:31','2025-06-04 11:13:31','','','','draft','closed','closed','','','','','2025-06-04 13:13:31','2025-06-04 11:13:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=923',0,'shop_order_placehold','',0), -(924,1,'2025-06-05 09:44:45','2025-06-05 07:44:45','','','','draft','closed','closed','','','','','2025-06-05 09:44:45','2025-06-05 07:44:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=924',0,'shop_order_placehold','',2), -(925,1,'2025-06-17 08:02:32','2025-06-17 06:02:32','','BoroBoro silver earrings with honey calcite beads','','inherit','closed','closed','','boro-bo1-arg','','','2025-06-17 08:08:00','2025-06-17 06:08:00','',521,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-arg.jpg',0,'attachment','image/jpeg',0), -(926,1,'2025-06-17 08:09:43','2025-06-17 06:09:43','','BoroBoro Bead Earrings silver - Honey Jade','Stone: Honey Jade','publish','closed','closed','','boroboro-bead-earrings-silver-honey-calcite','','','2025-06-17 08:10:30','2025-06-17 06:10:30','',521,'https://haikuatelier.com/?post_type=product_variation&p=926',1,'product_variation','',0), -(927,1,'2025-06-17 08:11:34','2025-06-17 06:11:34','','BoroBoro gold plated earrings with green aventurine beads','','inherit','closed','closed','','boro-bo1-or','','','2025-06-17 08:12:40','2025-06-17 06:12:40','',515,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-or.jpg',0,'attachment','image/jpeg',0), -(928,1,'2025-06-17 08:15:25','2025-06-17 06:15:25','','Mugura trio of stud earrings','','inherit','closed','closed','','mugura-bop','','','2025-06-17 08:16:36','2025-06-17 06:16:36','',342,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-BOP.jpg',0,'attachment','image/jpeg',0), -(929,1,'2025-06-17 08:19:04','2025-06-17 06:19:04','MUGURA: vine\n\nTrio of mismatched stud earrings in sterling silver and gold plated silver, mixing wavy lines and natural grey pearls.\n
    \n
  • wire width 15mm
  • \n
  • chain length 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Trio Stud Earrings','','inherit','closed','closed','','342-autosave-v1','','','2025-06-17 08:19:04','2025-06-17 06:19:04','',342,'https://haikuatelier.com/?p=929',0,'revision','',0), -(930,1,'2025-08-19 09:39:07','2025-08-19 07:39:07','Mugura: vine\n\nSmall solo hoop in sterling silver with a wavy dangling element in gold plated silver.\n
    \n
  • hoop diameter 13mm
  • \n
  • total height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our jewelry are made in 80% recycled silver and 18K gold plated silver.','Mugura Solo Hoop','','inherit','closed','closed','','496-autosave-v1','','','2025-08-19 09:39:07','2025-08-19 07:39:07','',496,'https://haikuatelier.com/?p=930',0,'revision','',0), -(933,1,'2025-06-17 09:45:36','2025-06-17 07:45:36','Hadou : wave\n\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\n
    \n
  • height 1cm
  • \n
  • wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','inherit','closed','closed','','490-autosave-v1','','','2025-06-17 09:45:36','2025-06-17 07:45:36','',490,'https://haikuatelier.com/?p=933',0,'revision','',0), -(934,1,'2025-06-17 09:45:51','2025-06-17 07:45:51','','Hadou stud earrings','','inherit','closed','closed','','hadou-bop-1','','','2025-06-17 09:46:12','2025-06-17 07:46:12','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP-1.jpg',0,'attachment','image/jpeg',0), -(935,1,'2025-06-17 09:57:48','2025-06-17 07:57:48','','Kara textured hoops silver','','inherit','closed','closed','','kara-cr-s','','','2025-06-17 09:58:04','2025-06-17 07:58:04','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s-1.jpg',0,'attachment','image/jpeg',0), -(936,1,'2025-06-17 10:18:41','2025-06-17 08:18:41','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-7','','','2025-06-17 10:20:11','2025-06-17 08:20:11','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00650.jpg',0,'attachment','image/jpeg',0), -(937,1,'2025-06-17 10:20:05','2025-06-17 08:20:05','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-8','','','2025-06-17 10:20:28','2025-06-17 08:20:28','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00655.jpg',0,'attachment','image/jpeg',0), -(938,1,'2025-06-17 10:22:41','2025-06-17 08:22:41','','Kara textured hoops gold plated','','inherit','closed','closed','','kara-cr-g','','','2025-06-17 10:22:58','2025-06-17 08:22:58','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g-1.jpg',0,'attachment','image/jpeg',0), -(939,1,'2025-06-17 10:27:02','2025-06-17 08:27:02','','Kara ear cuff gold plated','','inherit','closed','closed','','kara-ec-g','','','2025-06-17 10:27:19','2025-06-17 08:27:19','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-g.jpg',0,'attachment','image/jpeg',0), -(940,1,'2025-06-17 10:28:05','2025-06-17 08:28:05','','Kara ear cuff silver','','inherit','closed','closed','','kara-ec-s','','','2025-06-17 10:28:36','2025-06-17 08:28:36','',435,'https://haikuatelier.com/app/uploads/2024/10/KARA-EC-s.jpg',0,'attachment','image/jpeg',0), -(941,1,'2025-06-20 19:22:20','2025-06-20 17:22:20','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Ring silver','','publish','closed','closed','','uteki-ring-silver','','','2025-08-17 18:04:05','2025-08-17 16:04:05','',0,'https://haikuatelier.com/?post_type=product&p=941',0,'product','',0), -(943,1,'2025-06-18 19:31:49','2025-06-18 17:31:49','','Uteki ring in silver','','inherit','closed','closed','','sony-dsc-13','','','2025-06-18 19:32:06','2025-06-18 17:32:06','',941,'https://haikuatelier.com/app/uploads/2025/06/DSC00671.jpg',0,'attachment','image/jpeg',0), -(944,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-50','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=944',1,'product_variation','',0), -(945,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-52','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=945',2,'product_variation','',0), -(946,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-54','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=946',3,'product_variation','',0), -(947,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-56','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=947',4,'product_variation','',0), -(948,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-58','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=948',5,'product_variation','',0), -(949,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-60','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=949',6,'product_variation','',0), -(950,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-62','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=950',7,'product_variation','',0), -(951,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-64','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=951',8,'product_variation','',0), -(953,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in gold plated sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\r\n\r\n','Uteki Ring gold plated','','publish','closed','closed','','uteki-ring-gold-plated','','','2025-08-17 18:04:36','2025-08-17 16:04:36','',0,'https://haikuatelier.com/?post_type=product&p=953',0,'product','',0), -(954,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-65','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=954',1,'product_variation','',0), -(955,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-66','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=955',2,'product_variation','',0), -(956,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-67','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=956',3,'product_variation','',0), -(957,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-68','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=957',4,'product_variation','',0), -(958,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-69','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=958',5,'product_variation','',0), -(959,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-70','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=959',6,'product_variation','',0), -(960,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-71','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=960',7,'product_variation','',0), -(961,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-72','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=961',8,'product_variation','',0), -(962,1,'2025-06-18 22:20:23','2025-06-18 20:20:23','','Uteki ring in gold plated','','inherit','closed','closed','','uteki-b-g','','','2025-06-18 22:22:37','2025-06-18 20:22:37','',953,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-B-g.jpg',0,'attachment','image/jpeg',0), -(963,1,'2025-06-18 22:23:24','2025-06-18 20:23:24','','Uteki ring in gold plated','','inherit','closed','closed','','sony-dsc-14','','','2025-06-18 22:23:44','2025-06-18 20:23:44','',953,'https://haikuatelier.com/app/uploads/2025/06/DSC00670.jpg',0,'attachment','image/jpeg',0), -(967,1,'2025-06-18 22:38:10','2025-06-18 20:38:10','BOROBORO: the sound of something crumbling \n\nLong asymmetrical earrings with oval shapes made of sterling silver.\n
    \n
  • wire diameter 12mm
  • \n
  • height 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','inherit','closed','closed','','183-autosave-v1','','','2025-06-18 22:38:10','2025-06-18 20:38:10','',183,'https://haikuatelier.com/?p=967',0,'revision','',0), -(968,1,'2025-06-18 22:43:11','2025-06-18 20:43:11','','Piasu ring in silver','','inherit','closed','closed','','piasu-b-s','','','2025-06-18 22:43:41','2025-06-18 20:43:41','',0,'https://haikuatelier.com/app/uploads/2024/09/PIASU-B-s.jpg',0,'attachment','image/jpeg',0), -(969,1,'2025-06-18 22:47:21','2025-06-18 20:47:21','','Tanemaki necklace mixing chains and pearls','','inherit','closed','closed','','sony-dsc-5','','','2025-06-18 22:48:05','2025-06-18 20:48:05','',0,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-C-1.jpg',0,'attachment','image/jpeg',0), -(975,1,'2025-06-19 16:20:01','2025-06-19 14:20:01','HATTARI: bluff\n\nA bangle bracelet composed of a wide asymmetrical band in sterling silver, and a round wire in gold plated silver crossing it.\n
    \n
  • adjustable
  • \n
  • band width 2cm and wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Hattari Cuff','','inherit','closed','closed','','610-autosave-v1','','','2025-06-19 16:20:01','2025-06-19 14:20:01','',610,'https://haikuatelier.com/?p=975',0,'revision','',0), -(976,1,'2025-06-19 16:20:02','2025-06-19 14:20:02','KARA: hull, shell\n\nSmall textured gold plated silver hoops.\n
    \n
  • 1cm diameter
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','inherit','closed','closed','','545-autosave-v1','','','2025-06-19 16:20:02','2025-06-19 14:20:02','',545,'https://haikuatelier.com/?p=976',0,'revision','',0), -(977,1,'2025-06-19 16:20:10','2025-06-19 14:20:10','KARA: hull, shell\n\nTextured ear cuff in sterling gold plated silver.\n
    \n
  • width 0,5cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','inherit','closed','closed','','447-autosave-v1','','','2025-06-19 16:20:10','2025-06-19 14:20:10','',447,'https://haikuatelier.com/?p=977',0,'revision','',0), -(980,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','ROKKU: pebble\n\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\n
    \n
  • total chain length 50cm
  • \n
  • pendant height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','inherit','closed','closed','','385-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',385,'https://haikuatelier.com/?p=980',0,'revision','',0), -(982,1,'2025-06-20 18:59:01','2025-06-20 16:59:01','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. Made in sterling silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace silver','','publish','closed','closed','','uteki-necklace-silver','','','2025-09-24 14:38:50','2025-09-24 12:38:50','',0,'https://haikuatelier.com/?post_type=product&p=982',0,'product','',0), -(992,1,'2025-06-20 19:05:42','2025-06-20 17:05:42','','Uteki necklaces','','inherit','closed','closed','','dsc00689','','','2025-06-20 19:06:07','2025-06-20 17:06:07','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00689.jpg',0,'attachment','image/jpeg',0), -(993,1,'2025-06-20 19:06:23','2025-06-20 17:06:23','','Uteki necklace in sterling silver','','inherit','closed','closed','','sony-dsc-10','','','2025-06-20 19:10:44','2025-06-20 17:10:44','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00684.jpg',0,'attachment','image/jpeg',0), -(994,1,'2025-06-20 19:07:53','2025-06-20 17:07:53','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. In gold plated silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace gold plated','','publish','closed','closed','','uteki-necklace-gold-plated','','','2025-08-17 18:09:25','2025-08-17 16:09:25','',0,'https://haikuatelier.com/?post_type=product&p=994',0,'product','',0), -(996,1,'2025-06-20 19:09:52','2025-06-20 17:09:52','','Uteki necklace in gold plated silver','','inherit','closed','closed','','sony-dsc-19','','','2025-06-20 19:10:52','2025-06-20 17:10:52','',994,'https://haikuatelier.com/app/uploads/2025/06/DSC00699.jpg',0,'attachment','image/jpeg',0), -(997,1,'2025-06-21 11:54:31','2025-06-21 09:54:31','','','','draft','closed','closed','','','','','2025-06-21 11:54:31','2025-06-21 09:54:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=997',0,'shop_order_placehold','',2), -(1004,1,'2025-07-03 19:59:44','2025-07-03 17:59:44','PIASU: piercing\r\n\r\nChunky hoop earrings creating the illusion of an open hoop hanging on your ear.\r\n
    \r\n
  • total diameter 2cm
  • \r\n
  • wire thickness 3mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Open Hoops','','draft','closed','closed','','piasu-open-hoops','','','2025-09-06 15:00:27','2025-09-06 13:00:27','',0,'https://haikuatelier.com/?post_type=product&p=1004',0,'product','',0), -(1005,1,'2025-07-03 19:59:44','2025-07-03 17:59:44','','Piasu Open Hoops - pair','Side: pair','publish','closed','closed','','piasu-earrings-pair-2','','','2025-07-03 20:10:03','2025-07-03 18:10:03','',1004,'https://haikuatelier.com/?post_type=product_variation&p=1005',2,'product_variation','',0), -(1008,1,'2025-07-03 20:03:50','2025-07-03 18:03:50','','Piasu hoop earrings silver','','inherit','closed','closed','','piasu-cr','','','2025-07-03 20:04:45','2025-07-03 18:04:45','',1004,'https://haikuatelier.com/app/uploads/2025/07/PIASU-CR.jpg',0,'attachment','image/jpeg',0), -(1009,1,'2025-07-03 20:05:18','2025-07-03 18:05:18','','Piasu hoop earrings silver','','inherit','closed','closed','','img_4071','','','2025-07-03 20:05:32','2025-07-03 18:05:32','',1004,'https://haikuatelier.com/app/uploads/2025/07/IMG_4071.jpg',0,'attachment','image/jpeg',0), -(1010,1,'2025-07-03 20:05:50','2025-07-03 18:05:50','','Piasu hoop earrings silver','','inherit','closed','closed','','sony-dsc-2','','','2025-07-03 20:06:04','2025-07-03 18:06:04','',1004,'https://haikuatelier.com/app/uploads/2025/07/DSC00642.jpg',0,'attachment','image/jpeg',0), -(1011,1,'2025-07-03 20:07:13','2025-07-03 18:07:13','','Piasu Open Hoops - one earring','Side: one earring','publish','closed','closed','','piasu-hoops-one-earring','','','2025-07-03 20:10:03','2025-07-03 18:10:03','',1004,'https://haikuatelier.com/?post_type=product_variation&p=1011',2,'product_variation','',0), -(1013,1,'2025-07-14 14:37:48','2025-07-14 12:37:48','','','','draft','closed','closed','','','','','2025-07-14 14:37:48','2025-07-14 12:37:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1013',0,'shop_order_placehold','',2), -(1342,1,'2025-08-17 18:01:35','2025-08-17 16:01:35','','Uteki ring in gold plated','','inherit','closed','closed','','uteki-b-g-2','','','2025-08-17 18:01:59','2025-08-17 16:01:59','',0,'https://haikuatelier.com/app/uploads/2025/08/UTEKI-B-g.jpg',0,'attachment','image/jpeg',0), -(1343,1,'2025-08-17 18:02:22','2025-08-17 16:02:22','','Uteki ring in sterling silver','','inherit','closed','closed','','uteki-b-s','','','2025-08-17 18:02:52','2025-08-17 16:02:52','',0,'https://haikuatelier.com/app/uploads/2025/08/UTEKI-B-s.jpg',0,'attachment','image/jpeg',0), -(1345,1,'2025-08-17 18:08:47','2025-08-17 16:08:47','','Uteki necklace gold plated','','inherit','closed','closed','','uteki-c-g-2','','','2025-08-17 18:09:07','2025-08-17 16:09:07','',994,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-g-1.jpg',0,'attachment','image/jpeg',0), -(1346,1,'2025-08-17 18:10:15','2025-08-17 16:10:15','','Uteki necklace silver','','inherit','closed','closed','','uteki-c-s-2','','','2025-08-17 18:10:56','2025-08-17 16:10:56','',982,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-s-1.jpg',0,'attachment','image/jpeg',0), -(1347,1,'2025-08-17 18:13:37','2025-08-17 16:13:37','','BoroBoro bead ring silver and tiger eye','','inherit','closed','closed','','boroboro-b-st','','','2025-08-17 18:16:08','2025-08-17 16:16:08','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B-st.jpg',0,'attachment','image/jpeg',0), -(1348,1,'2025-08-17 18:15:09','2025-08-17 16:15:09','','BoroBoro bead ring','','inherit','closed','closed','','boroboro-b','','','2025-08-17 18:15:46','2025-08-17 16:15:46','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B.jpg',0,'attachment','image/jpeg',0), -(1349,1,'2025-08-17 18:17:39','2025-08-17 16:17:39','','BoroBoro bead ring silver and honey jade','','inherit','closed','closed','','boroboro-b-sj','','','2025-08-17 18:18:14','2025-08-17 16:18:14','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B-sj.jpg',0,'attachment','image/jpeg',0), -(1350,1,'2025-10-29 09:33:10','2025-10-29 08:33:10','BOROBORO: the sound of something crumbling\n\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye or honey jade.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring silver & honey jade','','inherit','closed','closed','','625-autosave-v1','','','2025-10-29 09:33:10','2025-10-29 08:33:10','',625,'https://haikuatelier.com/?p=1350',0,'revision','',0), -(1351,1,'2025-08-17 18:22:08','2025-08-17 16:22:08','','BoroBoro bead ring gold plated','','inherit','closed','closed','','boroboro-b-g','','','2025-08-17 18:22:45','2025-08-17 16:22:45','',613,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B-g.jpg',0,'attachment','image/jpeg',0), -(1352,1,'2025-08-17 18:23:07','2025-08-17 16:23:07','BOROBORO: the sound of something crumbling\n\nMinimalist gold plated ring composed of a thick round band and a movable prehnite aventurine bead.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring gold plated','','inherit','closed','closed','','613-autosave-v1','','','2025-08-17 18:23:07','2025-08-17 16:23:07','',613,'https://haikuatelier.com/?p=1352',0,'revision','',0), -(1353,1,'2025-08-17 18:58:30','2025-08-17 16:58:30','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','_dsc9237-2','','','2025-08-17 19:00:27','2025-08-17 17:00:27','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9237-1.jpg',0,'attachment','image/jpeg',0), -(1354,1,'2025-08-17 18:58:41','2025-08-17 16:58:41','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','_dsc9240','','','2025-08-17 19:00:40','2025-08-17 17:00:40','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9240.jpg',0,'attachment','image/jpeg',0), -(1355,1,'2025-08-17 18:58:47','2025-08-17 16:58:47','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','_dsc9242-2','','','2025-08-17 19:00:43','2025-08-17 17:00:43','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9242-1.jpg',0,'attachment','image/jpeg',0), -(1356,1,'2025-08-17 19:02:14','2025-08-17 17:02:14','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','fuyou-br','','','2025-08-17 19:02:41','2025-08-17 17:02:41','',258,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-BR.jpg',0,'attachment','image/jpeg',0), -(1357,1,'2025-08-17 19:03:55','2025-08-17 17:03:55','Fuyou: floating leave on water\n\nRectangular trace chain bracelet in sterling silver with a fluid oval shape element in the center and gold plated details.\n
    \n
  • adjustable in between 15 and 18cm
  • \n
  • oval center shape 2cm caliber
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet silver','','inherit','closed','closed','','258-autosave-v1','','','2025-08-17 19:03:55','2025-08-17 17:03:55','',258,'https://haikuatelier.com/?p=1357',0,'revision','',0), -(1364,1,'2025-08-18 13:30:25','2025-08-18 11:30:25','Fuyou : floating leave on water\n\nLong dangling earrings in sterling silver. Composed of fluid oval shapes and rectangular chains with gold plated details.\n\n• total length 5cm\n• oval length 2,5cm\n• handcrafted in Brussels\n\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\n\n ','Fuyou Long Earrings silver','','inherit','closed','closed','','766-autosave-v1','','','2025-08-18 13:30:25','2025-08-18 11:30:25','',766,'https://haikuatelier.com/?p=1364',0,'revision','',0), -(1365,1,'2025-08-18 13:31:39','2025-08-18 11:31:39','','Fuyou long earrings silver','','inherit','closed','closed','','fuyou-b0','','','2025-08-18 13:32:12','2025-08-18 11:32:12','',766,'https://haikuatelier.com/app/uploads/2024/11/FUYOU-B0.jpg',0,'attachment','image/jpeg',0), -(1366,1,'2025-08-18 13:41:34','2025-08-18 11:41:34','','Fuyou long earrings','','inherit','closed','closed','','_dsc0240-2','','','2025-08-18 13:42:23','2025-08-18 11:42:23','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0240-1.jpg',0,'attachment','image/jpeg',0), -(1367,1,'2025-08-18 13:42:42','2025-08-18 11:42:42','','Fuyou long earrings','','inherit','closed','closed','','_dsc0249-2','','','2025-08-18 13:42:56','2025-08-18 11:42:56','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0249-1.jpg',0,'attachment','image/jpeg',0), -(1369,1,'2025-08-19 09:24:13','2025-08-19 07:24:13','','Hattari stacked hoops silver','','inherit','closed','closed','','hattari-cr2-arg','','','2025-08-19 09:24:37','2025-08-19 07:24:37','',285,'https://haikuatelier.com/app/uploads/2024/10/HATTARI-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(1371,1,'2025-08-19 09:30:53','2025-08-19 07:30:53','','Hattari stacked hoops gold plated','','inherit','closed','closed','','hattari-cr2-or','','','2025-08-19 09:31:10','2025-08-19 07:31:10','',288,'https://haikuatelier.com/app/uploads/2024/10/HATTARI-CR2-or.jpg',0,'attachment','image/jpeg',0), -(1377,1,'2025-08-19 09:40:55','2025-08-19 07:40:55','','Mugura solo hoop','','inherit','closed','closed','','mugura-cr1solo','','','2025-08-19 09:41:26','2025-08-19 07:41:26','',496,'https://haikuatelier.com/app/uploads/2024/11/MUGURA-CR1solo.jpg',0,'attachment','image/jpeg',0), -(1378,1,'2025-08-19 10:08:23','2025-08-19 08:08:23','','Piasu open hoops','','inherit','closed','closed','','piasu-cr-1','','','2025-08-19 10:09:18','2025-08-19 08:09:18','',0,'https://haikuatelier.com/app/uploads/2025/08/PIASU-CR-1.jpg',0,'attachment','image/jpeg',0), -(1379,1,'2025-08-19 10:08:29','2025-08-19 08:08:29','','Piasu open hoops','','inherit','closed','closed','','piasu-cr-2','','','2025-08-19 10:09:28','2025-08-19 08:09:28','',0,'https://haikuatelier.com/app/uploads/2025/08/PIASU-CR-2.jpg',0,'attachment','image/jpeg',0), -(1381,1,'2025-08-20 10:53:27','2025-08-20 08:53:27','','Fuyou necklace','','inherit','closed','closed','','fuyou-c-2','','','2025-08-20 10:53:47','2025-08-20 08:53:47','',274,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-C-2.jpg',0,'attachment','image/jpeg',0), -(1382,1,'2025-08-20 11:00:25','2025-08-20 09:00:25','','Fuyou necklace','','inherit','closed','closed','','fuyou-c-1','','','2025-08-20 11:00:41','2025-08-20 09:00:41','',274,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-C-1-1.jpg',0,'attachment','image/jpeg',0), -(1383,1,'2025-08-22 11:08:49','2025-08-22 09:08:49','','Ikkan necklace','','inherit','closed','closed','','ikkan-c-1','','','2025-08-22 11:09:39','2025-08-22 09:09:39','',263,'https://haikuatelier.com/app/uploads/2024/10/IKKAN-C-1-1.jpg',0,'attachment','image/jpeg',0), -(1384,1,'2025-08-22 11:09:54','2025-08-22 09:09:54','','Ikkan necklace','','inherit','closed','closed','','ikkan-c-2-2','','','2025-08-22 11:10:05','2025-08-22 09:10:05','',263,'https://haikuatelier.com/app/uploads/2024/10/IKKAN-C-2-1.jpg',0,'attachment','image/jpeg',0), -(1385,1,'2025-08-22 11:16:41','2025-08-22 09:16:41','FUYOU: floating leave on water\n\nSolo hoop in sterling silver with a mix of small rings in gold plated silver hanging on it.\n
    \n
  • hoop diameter 13mm
  • \n
  • small rings diameter around 5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled silver and 18k gold plated silver.','Fuyou Hoop','','inherit','closed','closed','','318-autosave-v1','','','2025-08-22 11:16:41','2025-08-22 09:16:41','',318,'https://haikuatelier.com/?p=1385',0,'revision','',0), -(1388,1,'2025-08-22 11:18:18','2025-08-22 09:18:18','','Fuyou solo hoop','','inherit','closed','closed','','fuyou-cr1','','','2025-08-22 11:18:35','2025-08-22 09:18:35','',0,'https://haikuatelier.com/app/uploads/2025/08/FUYOU-CR1.jpg',0,'attachment','image/jpeg',0), -(1389,1,'2025-08-31 09:10:58','2025-08-31 07:10:58','MUGURA: vine\n\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\n
    \n
  • wire thickness 2mm
  • \n
  • total diametre 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Mugura Hoops gold plated','','inherit','closed','closed','','398-autosave-v1','','','2025-08-31 09:10:58','2025-08-31 07:10:58','',398,'https://haikuatelier.com/?p=1389',0,'revision','',0), -(1391,1,'2025-08-31 09:18:07','2025-08-31 07:18:07','','Mugura minimalist hoops gold plated','','inherit','closed','closed','','mugura-cr2-g','','','2025-08-31 09:18:44','2025-08-31 07:18:44','',0,'https://haikuatelier.com/app/uploads/2025/08/MUGURA-CR2-g.jpg',0,'attachment','image/jpeg',0), -(1393,1,'2025-08-31 09:20:52','2025-08-31 07:20:52','','Mugura minimalist silver hoops','','inherit','closed','closed','','mugura-cr2-s','','','2025-08-31 09:21:19','2025-08-31 07:21:19','',0,'https://haikuatelier.com/app/uploads/2025/08/MUGURA-CR2-s.jpg',0,'attachment','image/jpeg',0), -(1395,1,'2025-08-31 09:41:55','2025-08-31 07:41:55','','Boroboro asymetrical silver earrings','','inherit','closed','closed','','boroboro-bo2-s','','','2025-08-31 09:42:35','2025-08-31 07:42:35','',0,'https://haikuatelier.com/app/uploads/2025/08/BOROBORO-BO2-s.jpg',0,'attachment','image/jpeg',0), -(1396,1,'2025-08-31 09:44:53','2025-08-31 07:44:53','','Boroboro asymetrical gold plated earrings','','inherit','closed','closed','','boroboro-bo2-g','','','2025-08-31 09:45:28','2025-08-31 07:45:28','',0,'https://haikuatelier.com/app/uploads/2025/08/BOROBORO-BO2-g.jpg',0,'attachment','image/jpeg',0), -(1397,1,'2025-09-02 09:02:42','2025-09-02 07:02:42','','Ikkan necklace silver and gold','','inherit','closed','closed','','dscf7880','','','2025-09-02 09:03:42','2025-09-02 07:03:42','',263,'https://haikuatelier.com/app/uploads/2024/10/DSCF7880.jpg',0,'attachment','image/jpeg',0), -(1398,1,'2025-09-02 09:03:19','2025-09-02 07:03:19','','Ikkan necklace silver and gold','','inherit','closed','closed','','dscf7869','','','2025-09-02 09:03:36','2025-09-02 07:03:36','',263,'https://haikuatelier.com/app/uploads/2024/10/DSCF7869.jpg',0,'attachment','image/jpeg',0), -(1399,1,'2025-09-02 09:04:17','2025-09-02 07:04:17','','Ikkan necklace silver and gold','','inherit','closed','closed','','dscf7860','','','2025-09-02 09:04:32','2025-09-02 07:04:32','',263,'https://haikuatelier.com/app/uploads/2024/10/DSCF7860.jpg',0,'attachment','image/jpeg',0), -(1400,1,'2025-09-02 09:05:24','2025-09-02 07:05:24','IKKAN: link \r\n\r\nNecklace with a mix of different links combining sterling silver and gold plated silver.\r\n
    \r\n
  • length 50 to 54cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Ikkan Necklace','','inherit','closed','closed','','263-autosave-v1','','','2025-09-02 09:05:24','2025-09-02 07:05:24','',263,'https://haikuatelier.com/?p=1400',0,'revision','',0), -(1401,1,'2025-09-06 10:07:55','2025-09-06 08:07:55','Uteki : raindrop\r\n\r\nMedium hoops with a droplet shape intertwined around a thick silver wire. In gold plated silver.\r\n\r\n• diametre 3cm\r\n• wire thickness 25mm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Hoops gold plated','','draft','closed','closed','','','','','2025-09-06 14:32:29','2025-09-06 12:32:29','',0,'https://haikuatelier.com/?post_type=product&p=1401',0,'product','',0), -(1402,1,'2025-09-06 10:10:30','2025-09-06 08:10:30','','Uteki gold plated hoops','','inherit','closed','closed','','uteki-cr-g','','','2025-09-06 10:11:13','2025-09-06 08:11:13','',1401,'https://haikuatelier.com/app/uploads/2025/09/UTEKI-CR-g.jpg',0,'attachment','image/jpeg',0), -(1403,1,'2025-09-06 14:17:24','2025-09-06 12:17:24','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8538','','','2025-09-06 14:18:00','2025-09-06 12:18:00','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8538.jpg',0,'attachment','image/jpeg',0), -(1404,1,'2025-09-06 14:17:29','2025-09-06 12:17:29','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8521','','','2025-09-06 14:18:03','2025-09-06 12:18:03','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8521.jpg',0,'attachment','image/jpeg',0), -(1405,1,'2025-09-06 14:17:34','2025-09-06 12:17:34','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8493','','','2025-09-06 14:18:05','2025-09-06 12:18:05','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8493.jpg',0,'attachment','image/jpeg',0), -(1406,1,'2025-09-06 15:00:33','2025-09-06 13:00:33','Uteki : raindrop\r\n\r\nMedium hoops with a droplet shape intertwined around a thick silver wire. In sterling silver.\r\n\r\n• diametre 3cm\r\n• wire thickness 25mm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Hoops silver','','draft','closed','closed','','','','','2025-09-08 11:12:32','2025-09-08 09:12:32','',0,'https://haikuatelier.com/?post_type=product&p=1406',0,'product','',0), -(1407,1,'2025-09-06 15:00:58','2025-09-06 13:00:58','','Uteki silver hoops','','inherit','closed','closed','','uteki-cr-s','','','2025-09-06 15:01:20','2025-09-06 13:01:20','',1406,'https://haikuatelier.com/app/uploads/2025/09/UTEKI-CR-s.jpg',0,'attachment','image/jpeg',0), -(1409,1,'2025-09-06 15:01:45','2025-09-06 13:01:45','','Uteki silver hoops','','inherit','closed','closed','','dscf8461','','','2025-09-06 15:02:10','2025-09-06 13:02:10','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8461.jpg',0,'attachment','image/jpeg',0), -(1410,1,'2025-09-06 15:01:45','2025-09-06 13:01:45','','Uteki silver hoops','','inherit','closed','closed','','dscf8462','','','2025-09-06 15:02:13','2025-09-06 13:02:13','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8462.jpg',0,'attachment','image/jpeg',0), -(1411,1,'2025-09-08 11:11:57','2025-09-08 09:11:57','','Uteki silver hoops','','inherit','closed','closed','','dscf8447','','','2025-09-08 11:12:21','2025-09-08 09:12:21','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8447.jpg',0,'attachment','image/jpeg',0), -(1412,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring silver & tiger\'s eye','','publish','closed','closed','','boroboro-bead-ring-silver-copy','','','2025-09-08 11:25:24','2025-09-08 09:25:24','',0,'https://haikuatelier.com/?post_type=product&p=1412',0,'product','',0), -(1413,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-133','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1413',1,'product_variation','',0), -(1414,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-134','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1414',2,'product_variation','',0), -(1415,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-135','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1415',3,'product_variation','',0), -(1416,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-136','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1416',4,'product_variation','',0), -(1417,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-137','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1417',5,'product_variation','',0), -(1418,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-138','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1418',6,'product_variation','',0), -(1419,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-139','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1419',7,'product_variation','',0), -(1420,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-66','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1420',8,'product_variation','',0), -(1421,1,'2025-09-08 11:16:54','2025-09-08 09:16:54','BOROBORO: the sound of something crumbling\n\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring silver & tiger\'s eye','','inherit','closed','closed','','1412-autosave-v1','','','2025-09-08 11:16:54','2025-09-08 09:16:54','',1412,'https://haikuatelier.com/?p=1421',0,'revision','',0), -(1422,1,'2025-09-08 11:26:44','2025-09-08 09:26:44','','BoroBoro bead ring silver and honey jade','','inherit','closed','closed','','img_1504-2','','','2025-09-08 11:28:28','2025-09-08 09:28:28','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1504-1.jpg',0,'attachment','image/jpeg',0), -(1443,1,'2025-09-17 20:11:56','2025-09-17 18:11:56','','','','draft','closed','closed','','','','','2025-09-17 20:11:56','2025-09-17 18:11:56','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1443',0,'shop_order_placehold','',2), -(1444,1,'2025-09-20 12:44:44','2025-09-20 10:44:44','Pishi Pishi : the sound of something splashing\r\n\r\nDangling earrings composed of tied ball chains.\r\n\r\n• total length 6,5cm\r\n• ball chain diameter 3mm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Pishi Pishi Earrings','','publish','closed','closed','','pishi-pishi-earrings','','','2025-10-29 09:38:44','2025-10-29 08:38:44','',0,'https://haikuatelier.com/?post_type=product&p=1444',0,'product','',0), -(1445,1,'2025-09-20 12:50:00','2025-09-20 10:50:00','','Pishi earrings in silver','','inherit','closed','closed','','pishi-bo','','','2025-09-20 12:50:39','2025-09-20 10:50:39','',1444,'https://haikuatelier.com/app/uploads/2025/09/PISHI-BO.jpg',0,'attachment','image/jpeg',0), -(1446,1,'2025-09-20 12:51:05','2025-09-20 10:51:05','','Pishi earrings in silver','','inherit','closed','closed','','dscf8198','','','2025-09-20 12:51:18','2025-09-20 10:51:18','',1444,'https://haikuatelier.com/app/uploads/2025/09/DSCF8198.jpg',0,'attachment','image/jpeg',0), -(1447,1,'2025-09-20 12:52:02','2025-09-20 10:52:02','','Pishi earrings in silver','','inherit','closed','closed','','dscf8226','','','2025-09-20 12:54:49','2025-09-20 10:54:49','',1444,'https://haikuatelier.com/app/uploads/2025/09/DSCF8226.jpg',0,'attachment','image/jpeg',0), -(1448,1,'2025-09-20 12:54:50','2025-09-20 10:54:50','','Pishi earrings in silver','','inherit','closed','closed','','dscf8277','','','2025-09-20 12:55:07','2025-09-20 10:55:07','',1444,'https://haikuatelier.com/app/uploads/2025/09/DSCF8277.jpg',0,'attachment','image/jpeg',0), -(1449,1,'2025-09-20 12:57:48','2025-09-20 10:57:48','','Pishi Pishi Earrings - all','Side: all','publish','closed','closed','','pishi-pishi-earrings-all','','','2025-09-20 12:58:54','2025-09-20 10:58:54','',1444,'https://haikuatelier.com/?post_type=product_variation&p=1449',1,'product_variation','',0), -(1450,1,'2025-09-20 12:57:48','2025-09-20 10:57:48','','Pishi Pishi Earrings - left side','Side: left side','publish','closed','closed','','pishi-pishi-earrings-left-side','','','2025-09-20 12:58:54','2025-09-20 10:58:54','',1444,'https://haikuatelier.com/?post_type=product_variation&p=1450',2,'product_variation','',0), -(1451,1,'2025-09-20 12:57:48','2025-09-20 10:57:48','','Pishi Pishi Earrings - right side','Side: right side','publish','closed','closed','','pishi-pishi-earrings-right-side','','','2025-09-20 12:58:54','2025-09-20 10:58:54','',1444,'https://haikuatelier.com/?post_type=product_variation&p=1451',3,'product_variation','',0), -(1452,1,'2025-09-23 10:40:41','2025-09-23 08:40:41','','Uteki necklace silver','','inherit','closed','closed','','dscf8669','','','2025-09-23 10:41:09','2025-09-23 08:41:09','',982,'https://haikuatelier.com/app/uploads/2025/06/DSCF8669.jpg',0,'attachment','image/jpeg',0), -(1454,1,'2025-09-24 14:41:42','2025-09-24 12:41:42','','BoroBoro asymmetrical earrings silver','','inherit','closed','closed','','dscf8686','','','2025-09-24 14:43:10','2025-09-24 12:43:10','',183,'https://haikuatelier.com/app/uploads/2024/10/DSCF8686.jpg',0,'attachment','image/jpeg',0), -(1455,1,'2025-09-24 14:44:05','2025-09-24 12:44:05','','BoroBoro asymmetrical earrings silver','','inherit','closed','closed','','dscf8674','','','2025-09-24 14:44:34','2025-09-24 12:44:34','',183,'https://haikuatelier.com/app/uploads/2024/10/DSCF8674.jpg',0,'attachment','image/jpeg',0), -(1456,1,'2025-09-24 15:09:11','2025-09-24 13:09:11','','BoroBoro asymmetrical earrings gold plated','','inherit','closed','closed','','dscf8693','','','2025-09-24 15:09:40','2025-09-24 13:09:40','',213,'https://haikuatelier.com/app/uploads/2024/10/DSCF8693.jpg',0,'attachment','image/jpeg',0), -(1457,1,'2025-09-24 15:09:50','2025-09-24 13:09:50','','DSBoroBoro asymmetrical earrings gold platedCF8676','','inherit','closed','closed','','dscf8676','','','2025-09-24 15:10:06','2025-09-24 13:10:06','',213,'https://haikuatelier.com/app/uploads/2024/10/DSCF8676.jpg',0,'attachment','image/jpeg',0), -(1467,1,'2025-09-27 15:52:58','2025-09-27 13:52:58','PIASU : piercing\r\n\r\nWide ring open on top with four silver balls and a mother of pearl detail.\r\n
    \r\n
  • silver balls diameter 8mm
  • \r\n
  • height 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Piasu Ring','','publish','closed','closed','','piasu-ring','','','2025-11-03 10:26:24','2025-11-03 09:26:24','',0,'https://haikuatelier.com/?post_type=product&p=1467',0,'product','',0), -(1468,1,'2025-09-27 15:52:58','2025-09-27 13:52:58','','Piasu Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-147','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1468',1,'product_variation','',0), -(1469,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-148','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1469',2,'product_variation','',0), -(1470,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-149','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1470',3,'product_variation','',0), -(1471,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-150','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1471',4,'product_variation','',0), -(1472,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-151','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1472',5,'product_variation','',0), -(1473,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-152','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1473',6,'product_variation','',0), -(1474,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-153','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1474',7,'product_variation','',0), -(1475,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 64','Size: 64','publish','closed','closed','','piasu-ring-65','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1475',8,'product_variation','',0), -(1476,1,'2025-09-27 15:55:19','2025-09-27 13:55:19','','Piasu ring with silver balls','','inherit','closed','closed','','piasu-b','','','2025-09-27 15:57:46','2025-09-27 13:57:46','',1467,'https://haikuatelier.com/app/uploads/2025/09/PIASU-B.jpg',0,'attachment','image/jpeg',0), -(1477,1,'2025-09-27 15:57:01','2025-09-27 13:57:01','','Piasu ring with silver balls','','inherit','closed','closed','','dscf7789','','','2025-09-27 15:57:43','2025-09-27 13:57:43','',1467,'https://haikuatelier.com/app/uploads/2025/09/DSCF7789.jpg',0,'attachment','image/jpeg',0), -(1478,1,'2025-09-27 15:57:25','2025-09-27 13:57:25','','Piasu ring with silver balls','','inherit','closed','closed','','dscf7842','','','2025-09-27 15:57:39','2025-09-27 13:57:39','',1467,'https://haikuatelier.com/app/uploads/2025/09/DSCF7842.jpg',0,'attachment','image/jpeg',0), -(1479,1,'2025-09-27 15:57:55','2025-09-27 13:57:55','','Piasu ring with silver balls','','inherit','closed','closed','','dscf7809','','','2025-09-27 15:58:13','2025-09-27 13:58:13','',1467,'https://haikuatelier.com/app/uploads/2025/09/DSCF7809.jpg',0,'attachment','image/jpeg',0), -(1480,1,'2025-10-02 06:39:01','2025-10-02 04:39:01','','','','draft','closed','closed','','','','','2025-10-02 06:39:01','2025-10-02 04:39:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1480',0,'shop_order_placehold','',2), -(1481,1,'2025-10-06 14:41:49','2025-10-06 12:41:49','PIASU: piercing\n\nLarge earrings covering the lobe with three hoops hanging to it, with a small gold plated bead on each side.\n
    \n
  • height 3cm
  • \n
  • width 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Earrings','','inherit','closed','closed','','202-autosave-v1','','','2025-10-06 14:41:49','2025-10-06 12:41:49','',202,'https://haikuatelier.com/?p=1481',0,'revision','',0), -(1482,1,'2025-10-06 14:42:44','2025-10-06 12:42:44','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','dscf8158','','','2025-10-06 14:43:37','2025-10-06 12:43:37','',202,'https://haikuatelier.com/app/uploads/2024/10/DSCF8158.jpg',0,'attachment','image/jpeg',0), -(1483,1,'2025-10-06 14:43:56','2025-10-06 12:43:56','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','dscf8069','','','2025-10-06 14:44:05','2025-10-06 12:44:05','',202,'https://haikuatelier.com/app/uploads/2024/10/DSCF8069.jpg',0,'attachment','image/jpeg',0), -(1484,1,'2025-10-06 14:44:27','2025-10-06 12:44:27','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','dscf8026','','','2025-10-06 14:44:50','2025-10-06 12:44:50','',202,'https://haikuatelier.com/app/uploads/2024/10/DSCF8026.jpg',0,'attachment','image/jpeg',0), -(1485,1,'2025-10-06 14:45:25','2025-10-06 12:45:25','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','piasu-bo2','','','2025-10-06 14:45:38','2025-10-06 12:45:38','',202,'https://haikuatelier.com/app/uploads/2024/10/PIASU-BO2.jpg',0,'attachment','image/jpeg',0), -(1486,1,'2025-10-10 17:55:22','2025-10-10 15:55:22','','','','draft','closed','closed','','','','','2025-10-10 17:55:22','2025-10-10 15:55:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1486',0,'shop_order_placehold','',2), -(1487,1,'2025-10-11 17:06:39','2025-10-11 15:06:39','','','','draft','closed','closed','','','','','2025-10-11 17:06:39','2025-10-11 15:06:39','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1487',0,'shop_order_placehold','',2), -(1488,1,'2025-10-12 16:50:06','2025-10-12 14:50:06','','','','draft','closed','closed','','','','','2025-10-12 16:50:06','2025-10-12 14:50:06','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1488',0,'shop_order_placehold','',2), -(1489,1,'2025-10-12 23:03:18','2025-10-12 21:03:18','','','','draft','closed','closed','','','','','2025-10-12 23:03:18','2025-10-12 21:03:18','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1489',0,'shop_order_placehold','',2), -(1490,1,'2025-10-18 15:34:26','2025-10-18 13:34:26','','','','draft','closed','closed','','','','','2025-10-18 15:34:26','2025-10-18 13:34:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1490',0,'shop_order_placehold','',2), -(1491,1,'2025-10-29 10:26:12','2025-10-29 09:26:12','Kime: grain, texture, feeling to touch\r\n\r\nSmall gold plated solo hoop with a marine link element in sterling silver.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • total height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 18K gold plated silver.','KIME solo hoop','','publish','closed','closed','','kime-solo-hoop','','','2025-10-29 10:26:12','2025-10-29 09:26:12','',0,'https://haikuatelier.com/?post_type=product&p=1491',0,'product','',0), -(1492,1,'2025-10-29 10:20:46','2025-10-29 09:20:46','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','ikkan-cr1','','','2025-10-29 10:21:34','2025-10-29 09:21:34','',1491,'https://haikuatelier.com/app/uploads/2025/10/IKKAN-CR1.jpg',0,'attachment','image/jpeg',0), -(1493,1,'2025-10-29 10:24:32','2025-10-29 09:24:32','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','dscf7652','','','2025-10-29 10:24:46','2025-10-29 09:24:46','',1491,'https://haikuatelier.com/app/uploads/2025/10/DSCF7652.jpg',0,'attachment','image/jpeg',0), -(1494,1,'2025-10-29 10:24:54','2025-10-29 09:24:54','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','dscf7675','','','2025-10-29 10:25:04','2025-10-29 09:25:04','',1491,'https://haikuatelier.com/app/uploads/2025/10/DSCF7675.jpg',0,'attachment','image/jpeg',0), -(1495,1,'2025-10-29 10:25:18','2025-10-29 09:25:18','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','dscf7638','','','2025-10-29 10:25:28','2025-10-29 09:25:28','',1491,'https://haikuatelier.com/app/uploads/2025/10/DSCF7638.jpg',0,'attachment','image/jpeg',0), -(1496,1,'2025-11-02 20:39:02','2025-11-02 19:39:02','','','','draft','closed','closed','','','','','2025-11-02 20:39:02','2025-11-02 19:39:02','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1496',0,'shop_order_placehold','',1), -(1497,1,'2025-11-03 09:53:26','0000-00-00 00:00:00','','DESIGNERE','','draft','closed','closed','','','','','2025-11-03 09:53:26','2025-11-03 08:53:26','',0,'https://haikuatelier.com/?post_type=shop_coupon&p=1497',0,'shop_coupon','',0); -/*!40000 ALTER TABLE `haikuwp_posts` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_term_relationships` --- - -DROP TABLE IF EXISTS `haikuwp_term_relationships`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_term_relationships` ( - `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_order` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`object_id`,`term_taxonomy_id`), - KEY `term_taxonomy_id` (`term_taxonomy_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_term_relationships` --- - -LOCK TABLES `haikuwp_term_relationships` WRITE; -/*!40000 ALTER TABLE `haikuwp_term_relationships` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_term_relationships` VALUES -(1,1,0), -(1,17,0), -(1,18,0), -(13,16,0), -(13,23,0), -(14,16,0), -(14,24,0), -(15,16,0), -(15,25,0), -(16,16,0), -(16,26,0), -(17,16,0), -(17,27,0), -(18,16,0), -(18,28,0), -(19,16,0), -(19,29,0), -(102,4,0), -(102,31,0), -(102,37,0), -(102,38,0), -(102,39,0), -(102,40,0), -(102,41,0), -(102,42,0), -(102,43,0), -(102,44,0), -(102,51,0), -(113,4,0), -(113,31,0), -(113,37,0), -(113,38,0), -(113,39,0), -(113,40,0), -(113,41,0), -(113,42,0), -(113,43,0), -(113,44,0), -(113,51,0), -(133,4,0), -(133,9,0), -(133,31,0), -(133,37,0), -(133,38,0), -(133,39,0), -(133,40,0), -(133,41,0), -(133,42,0), -(133,43,0), -(133,44,0), -(133,52,0), -(134,9,0), -(135,9,0), -(136,9,0), -(137,9,0), -(138,9,0), -(139,9,0), -(140,9,0), -(168,4,0), -(168,31,0), -(168,48,0), -(168,49,0), -(168,54,0), -(183,4,0), -(183,30,0), -(183,45,0), -(183,55,0), -(183,71,0), -(183,72,0), -(202,4,0), -(202,30,0), -(202,45,0), -(202,56,0), -(202,77,0), -(202,78,0), -(213,4,0), -(213,30,0), -(213,45,0), -(213,55,0), -(213,71,0), -(213,72,0), -(240,4,0), -(240,9,0), -(240,33,0), -(240,51,0), -(240,58,0), -(240,59,0), -(241,9,0), -(242,9,0), -(251,2,0), -(251,33,0), -(251,60,0), -(258,2,0), -(258,33,0), -(258,61,0), -(263,2,0), -(263,32,0), -(263,51,0), -(268,2,0), -(268,32,0), -(268,56,0), -(274,2,0), -(274,32,0), -(274,61,0), -(285,4,0), -(285,30,0), -(285,45,0), -(285,50,0), -(285,77,0), -(285,78,0), -(288,4,0), -(288,30,0), -(288,45,0), -(288,50,0), -(288,77,0), -(288,78,0), -(306,4,0), -(306,30,0), -(306,45,0), -(306,57,0), -(306,62,0), -(306,64,0), -(312,4,0), -(312,30,0), -(312,45,0), -(312,57,0), -(312,62,0), -(312,64,0), -(318,2,0), -(318,30,0), -(318,61,0), -(325,2,0), -(325,30,0), -(325,36,0), -(328,2,0), -(328,30,0), -(328,36,0), -(338,2,0), -(338,6,0), -(338,7,0), -(338,15,0), -(338,56,0), -(342,4,0), -(342,30,0), -(342,62,0), -(342,63,0), -(342,64,0), -(342,65,0), -(342,76,0), -(385,4,0), -(385,32,0), -(385,48,0), -(385,54,0), -(385,68,0), -(385,69,0), -(393,2,0), -(393,30,0), -(393,45,0), -(393,66,0), -(393,67,0), -(398,2,0), -(398,30,0), -(398,45,0), -(398,66,0), -(398,67,0), -(435,2,0), -(435,30,0), -(435,52,0), -(447,2,0), -(447,30,0), -(447,52,0), -(490,4,0), -(490,30,0), -(490,36,0), -(490,45,0), -(490,77,0), -(490,78,0), -(496,2,0), -(496,30,0), -(496,67,0), -(515,2,0), -(515,30,0), -(515,48,0), -(515,55,0), -(515,73,0), -(521,4,0), -(521,30,0), -(521,48,0), -(521,55,0), -(521,79,0), -(532,9,0), -(545,4,0), -(545,30,0), -(545,45,0), -(545,52,0), -(545,66,0), -(554,4,0), -(554,30,0), -(554,45,0), -(554,52,0), -(554,66,0), -(610,2,0), -(610,6,0), -(610,7,0), -(610,9,0), -(610,33,0), -(610,50,0), -(613,4,0), -(613,31,0), -(613,37,0), -(613,38,0), -(613,39,0), -(613,40,0), -(613,41,0), -(613,42,0), -(613,43,0), -(613,44,0), -(613,55,0), -(625,4,0), -(625,31,0), -(625,37,0), -(625,38,0), -(625,39,0), -(625,40,0), -(625,41,0), -(625,42,0), -(625,43,0), -(625,44,0), -(625,48,0), -(625,55,0), -(625,79,0), -(766,2,0), -(766,30,0), -(766,45,0), -(766,61,0), -(766,62,0), -(766,63,0), -(941,4,0), -(941,31,0), -(941,37,0), -(941,38,0), -(941,39,0), -(941,40,0), -(941,41,0), -(941,42,0), -(941,43,0), -(941,44,0), -(941,80,0), -(941,81,0), -(953,4,0), -(953,31,0), -(953,37,0), -(953,38,0), -(953,39,0), -(953,40,0), -(953,41,0), -(953,42,0), -(953,43,0), -(953,44,0), -(953,80,0), -(982,2,0), -(982,32,0), -(982,37,0), -(982,38,0), -(982,39,0), -(982,40,0), -(982,41,0), -(982,42,0), -(982,43,0), -(982,44,0), -(982,80,0), -(994,2,0), -(994,32,0), -(994,37,0), -(994,38,0), -(994,39,0), -(994,40,0), -(994,41,0), -(994,42,0), -(994,43,0), -(994,44,0), -(994,80,0), -(1004,4,0), -(1004,30,0), -(1004,45,0), -(1004,56,0), -(1004,66,0), -(1401,2,0), -(1401,30,0), -(1401,37,0), -(1401,38,0), -(1401,39,0), -(1401,40,0), -(1401,41,0), -(1401,42,0), -(1401,43,0), -(1401,44,0), -(1401,80,0), -(1406,2,0), -(1406,30,0), -(1406,37,0), -(1406,38,0), -(1406,39,0), -(1406,40,0), -(1406,41,0), -(1406,42,0), -(1406,43,0), -(1406,44,0), -(1406,80,0), -(1412,4,0), -(1412,31,0), -(1412,37,0), -(1412,38,0), -(1412,39,0), -(1412,40,0), -(1412,41,0), -(1412,42,0), -(1412,43,0), -(1412,44,0), -(1412,55,0), -(1444,4,0), -(1444,30,0), -(1444,76,0), -(1444,77,0), -(1444,78,0), -(1444,82,0), -(1467,4,0), -(1467,31,0), -(1467,37,0), -(1467,38,0), -(1467,39,0), -(1467,40,0), -(1467,41,0), -(1467,42,0), -(1467,43,0), -(1467,44,0), -(1467,56,0), -(1491,2,0), -(1491,30,0), -(1491,83,0); -/*!40000 ALTER TABLE `haikuwp_term_relationships` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_term_taxonomy` --- - -DROP TABLE IF EXISTS `haikuwp_term_taxonomy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_term_taxonomy` ( - `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `taxonomy` varchar(32) NOT NULL DEFAULT '', - `description` longtext NOT NULL, - `parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_taxonomy_id`), - UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), - KEY `taxonomy` (`taxonomy`) -) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_term_taxonomy` --- - -LOCK TABLES `haikuwp_term_taxonomy` WRITE; -/*!40000 ALTER TABLE `haikuwp_term_taxonomy` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_term_taxonomy` VALUES -(1,1,'category','',0,1), -(2,2,'product_type','',0,15), -(3,3,'product_type','',0,0), -(4,4,'product_type','',0,24), -(5,5,'product_type','',0,0), -(6,6,'product_visibility','',0,0), -(7,7,'product_visibility','',0,0), -(8,8,'product_visibility','',0,0), -(9,9,'product_visibility','',0,12), -(10,10,'product_visibility','',0,0), -(11,11,'product_visibility','',0,0), -(12,12,'product_visibility','',0,0), -(13,13,'product_visibility','',0,0), -(14,14,'product_visibility','',0,0), -(15,15,'product_cat','',0,0), -(16,16,'language','a:3:{s:6:\"locale\";s:5:\"en_GB\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"gb\";}',0,7), -(17,17,'term_language','',0,1), -(21,21,'category','',0,0), -(30,30,'product_cat','',0,21), -(31,31,'product_cat','',0,10), -(32,32,'product_cat','',0,6), -(33,33,'product_cat','',0,2), -(36,36,'collection','',0,1), -(37,37,'pa_size','',0,11), -(38,38,'pa_size','',0,11), -(39,39,'pa_size','',0,11), -(40,40,'pa_size','',0,11), -(41,41,'pa_size','',0,11), -(42,42,'pa_size','',0,11), -(43,43,'pa_size','',0,11), -(44,44,'pa_size','',0,11), -(45,45,'pa_side','',0,13), -(48,48,'pa_stone','',0,5), -(49,49,'pa_stone','',0,1), -(50,50,'collection','',0,2), -(51,51,'collection','',0,4), -(52,52,'collection','',0,5), -(53,53,'collection','',0,0), -(54,54,'collection','',0,2), -(55,55,'collection','',0,7), -(56,56,'collection','',0,3), -(57,57,'collection','',0,2), -(58,58,'pa_size','',0,1), -(59,59,'pa_size','',0,1), -(60,60,'collection','',0,0), -(61,61,'collection','',0,4), -(62,62,'pa_side','',0,3), -(63,63,'pa_side','',0,1), -(64,64,'pa_side','',0,2), -(65,65,'collection','',0,0), -(66,66,'pa_side','',0,4), -(67,67,'collection','',0,3), -(68,68,'pa_stone','',0,1), -(69,69,'pa_stone','',0,1), -(70,70,'pa_stone','',0,0), -(71,71,'pa_side','',0,2), -(72,72,'pa_side','',0,2), -(73,73,'pa_stone','',0,1), -(74,74,'pa_stone','',0,0), -(75,75,'pa_stone','',0,0), -(76,76,'pa_side','',0,1), -(77,77,'pa_side','',0,5), -(78,78,'pa_side','',0,5), -(79,79,'pa_stone','',0,2), -(80,80,'collection','',0,4), -(81,81,'product_tag','',0,1), -(82,82,'collection','',0,1), -(83,83,'collection','',0,1); -/*!40000 ALTER TABLE `haikuwp_term_taxonomy` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_termmeta` --- - -DROP TABLE IF EXISTS `haikuwp_termmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_termmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `term_id` (`term_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_termmeta` --- - -LOCK TABLES `haikuwp_termmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_termmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_termmeta` VALUES -(1,16,'_pll_strings_translations','a:2:{i:0;a:2:{i:0;s:5:\"Y-m-d\";i:1;s:5:\"Y-m-d\";}i:1;a:2:{i:0;s:3:\"H:i\";i:1;s:3:\"H:i\";}}'), -(3,15,'display_type',''), -(4,15,'thumbnail_id','0'), -(5,30,'order','1'), -(6,30,'display_type',''), -(7,30,'thumbnail_id','0'), -(8,31,'order','2'), -(9,31,'display_type',''), -(10,31,'thumbnail_id','0'), -(11,32,'order','3'), -(12,32,'display_type',''), -(13,32,'thumbnail_id','0'), -(14,33,'order','4'), -(15,33,'display_type',''), -(16,33,'thumbnail_id','0'), -(20,15,'order','5'), -(21,30,'product_count_product_cat','21'), -(22,31,'product_count_product_cat','10'), -(23,32,'product_count_product_cat','6'), -(24,33,'product_count_product_cat','2'), -(25,15,'product_count_product_cat','0'), -(28,37,'order','0'), -(29,38,'order','0'), -(30,39,'order','0'), -(31,40,'order','0'), -(32,41,'order','0'), -(33,42,'order','0'), -(34,43,'order','0'), -(35,44,'order','0'), -(36,45,'order','0'), -(39,48,'order','0'), -(40,49,'order','0'), -(41,58,'order','0'), -(42,59,'order','0'), -(43,62,'order','0'), -(44,63,'order','0'), -(45,64,'order','0'), -(46,66,'order','0'), -(47,68,'order','0'), -(48,69,'order','0'), -(49,70,'order','0'), -(50,71,'order','0'), -(51,72,'order','0'), -(52,73,'order','0'), -(53,74,'order','0'), -(54,75,'order','0'), -(55,76,'order','0'), -(56,77,'order','0'), -(57,78,'order','0'), -(58,79,'order','0'), -(59,81,'product_count_product_tag','1'); -/*!40000 ALTER TABLE `haikuwp_termmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_terms` --- - -DROP TABLE IF EXISTS `haikuwp_terms`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_terms` ( - `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - `term_group` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_id`), - KEY `slug` (`slug`(191)), - KEY `name` (`name`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_terms` --- - -LOCK TABLES `haikuwp_terms` WRITE; -/*!40000 ALTER TABLE `haikuwp_terms` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_terms` VALUES -(1,'Non classé','non-classe',0), -(2,'simple','simple',0), -(3,'grouped','grouped',0), -(4,'variable','variable',0), -(5,'external','external',0), -(6,'exclude-from-search','exclude-from-search',0), -(7,'exclude-from-catalog','exclude-from-catalog',0), -(8,'featured','featured',0), -(9,'outofstock','outofstock',0), -(10,'rated-1','rated-1',0), -(11,'rated-2','rated-2',0), -(12,'rated-3','rated-3',0), -(13,'rated-4','rated-4',0), -(14,'rated-5','rated-5',0), -(15,'Others','others',0), -(16,'English','en',0), -(17,'English','pll_en',0), -(21,'Uncategorized','uncategorized-fr',0), -(30,'Earrings','earrings',0), -(31,'Rings','rings',0), -(32,'Necklaces','necklaces',0), -(33,'Bracelets','bracelets',0), -(36,'Hadou','hadou',0), -(37,'50','50',0), -(38,'52','52',0), -(39,'54','54',0), -(40,'56','56',0), -(41,'58','58',0), -(42,'60','60',0), -(43,'62','62',0), -(44,'64','64',0), -(45,'pair','pair',0), -(48,'Tiger\'s Eye','tiger-eye',0), -(49,'Malachite','malachite',0), -(50,'Hattari','hattari',0), -(51,'Ikkan','ikkan',0), -(52,'Kara','kara',0), -(53,'Kishou','kishou',0), -(54,'Rokku','rokku',0), -(55,'BoroBoro','boroboro',0), -(56,'Piasu','piasu',0), -(57,'Tamanori','tamanori',0), -(58,'Size 1','size-1',0), -(59,'Size 2','size-2',0), -(60,'Tanemaki','tanemaki',0), -(61,'Fuyou','fuyou',0), -(62,'long','long',0), -(63,'medium','medium',0), -(64,'short','short',0), -(65,'Kagun','kagun',0), -(66,'one earring','one',0), -(67,'Mugura','mugura',0), -(68,'Lapis Lazuli','lapis-lazuli',0), -(69,'Green Jaspe','green-jaspe',0), -(70,'Hawk\'s Eye','hawk-eye',0), -(71,'one element earring','one-element-side',0), -(72,'two elements earring','two-elements-side',0), -(73,'Green Aventurine','green-aventurine',0), -(74,'Crystal','crystal',0), -(75,'Jade','jade',0), -(76,'all','all',0), -(77,'left side','left-side',0), -(78,'right side','right-side',0), -(79,'Honey Jade','honey-jade',0), -(80,'Uteki','uteki',0), -(81,'Uteki','uteki',0), -(82,'PISHI','pishi',0), -(83,'Kime','kime',0); -/*!40000 ALTER TABLE `haikuwp_terms` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_usermeta` --- - -DROP TABLE IF EXISTS `haikuwp_usermeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_usermeta` ( - `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`umeta_id`), - KEY `user_id` (`user_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=268 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_usermeta` --- - -LOCK TABLES `haikuwp_usermeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_usermeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_usermeta` VALUES -(1,1,'nickname','gcch'), -(2,1,'first_name',''), -(3,1,'last_name',''), -(4,1,'description',''), -(5,1,'rich_editing','true'), -(6,1,'syntax_highlighting','true'), -(7,1,'comment_shortcuts','false'), -(8,1,'admin_color','blue'), -(9,1,'use_ssl','0'), -(10,1,'show_admin_bar_front','false'), -(11,1,'locale','en_GB'), -(12,1,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), -(13,1,'haikuwp_user_level','10'), -(14,1,'dismissed_wp_pointers',''), -(15,1,'show_welcome_panel','1'), -(17,1,'haikuwp_dashboard_quick_press_last_post_id','5'), -(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"193.121.87.0\";}'), -(19,1,'_woocommerce_tracks_anon_id','woo:d4XJVDeUWJmLLIBoynrGwlsO'), -(21,1,'last_update','1746806847'), -(22,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"customize-store\":1,\"products\":1}'), -(23,1,'wc_last_active','1762128000'), -(24,1,'meta-box-order_product','a:4:{s:25:\"carbon_fields_after_title\";s:0:\"\";s:4:\"side\";s:101:\"submitdiv,slugdiv,postimagediv,product_catdiv,tagsdiv-collection,tagsdiv-product_tag,product_branddiv\";s:6:\"normal\";s:63:\"postexcerpt,postcustom,carbon_fields_container_products_details\";s:8:\"advanced\";s:25:\"woocommerce-product-data,\";}'), -(25,1,'edit_page_per_page','20'), -(26,1,'haikuwp_user-settings','posts_list_mode=excerpt&libraryContent=browse&editor=html&hidetb=0'), -(27,1,'haikuwp_user-settings-time','1732442434'), -(30,1,'woocommerce_admin_variable_product_tour_shown','\"yes\"'), -(34,1,'billing_first_name',''), -(35,1,'billing_last_name',''), -(36,1,'billing_company',''), -(37,1,'billing_address_1',''), -(38,1,'billing_address_2',''), -(39,1,'billing_city',''), -(40,1,'billing_postcode',''), -(41,1,'billing_country',''), -(42,1,'billing_state',''), -(43,1,'billing_phone',''), -(44,1,'billing_email','g7c'), -(45,1,'shipping_first_name',''), -(46,1,'shipping_last_name',''), -(47,1,'shipping_company',''), -(48,1,'shipping_address_1',''), -(49,1,'shipping_address_2',''), -(50,1,'shipping_city',''), -(51,1,'shipping_postcode',''), -(52,1,'shipping_country',''), -(53,1,'shipping_state',''), -(54,1,'shipping_phone',''), -(57,1,'wc_marketplace_suggestions_dismissed_suggestions','a:4:{i:0;s:28:\"product-edit-name-your-price\";i:1;s:31:\"product-edit-min-max-quantities\";i:2;s:42:\"product-edit-woocommerce-one-page-checkout\";i:3;s:29:\"product-edit-variation-images\";}'), -(58,1,'closedpostboxes_product','a:1:{i:0;s:11:\"postexcerpt\";}'), -(59,1,'metaboxhidden_product','a:2:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";}'), -(61,1,'screen_layout_product','2'), -(63,1,'manageedit-productcolumnshidden','a:1:{i:0;s:8:\"featured\";}'), -(64,1,'edit_product_per_page','100'), -(68,1,'dismissed_uploads_directory_is_unprotected_notice','1'), -(69,1,'dismissed_update_notice','1'), -(81,2,'nickname','manon'), -(82,2,'first_name','Manon'), -(83,2,'last_name','DÉSIGNÈRE'), -(84,2,'description',''), -(85,2,'rich_editing','true'), -(86,2,'syntax_highlighting','true'), -(87,2,'comment_shortcuts','false'), -(88,2,'admin_color','fresh'), -(89,2,'use_ssl','0'), -(90,2,'show_admin_bar_front','true'), -(91,2,'locale','en_GB'), -(92,2,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), -(93,2,'haikuwp_user_level','10'), -(94,2,'dismissed_wp_pointers',''), -(95,2,'session_tokens','a:1:{s:64:\"1ad366a00acd8c673142409995104b04727c5eb911714d647d4d47faedf10564\";a:4:{s:10:\"expiration\";i:1730208242;s:2:\"ip\";s:13:\"81.164.20.154\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1728998642;}}'), -(96,2,'wc_last_active','1730160000'), -(98,2,'_woocommerce_tracks_anon_id','woo:tTnslNIiEvD9zC3nQTmFxTO7'), -(99,2,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'), -(102,2,'haikuwp_user-settings','editor=tinymce&libraryContent=browse'), -(103,2,'haikuwp_user-settings-time','1727711511'), -(104,2,'closedpostboxes_product','a:1:{i:0;s:19:\"tagsdiv-product_tag\";}'), -(105,2,'metaboxhidden_product','a:4:{i:0;s:40:\"carbon_fields_container_products_details\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";i:3;s:11:\"postexcerpt\";}'), -(106,2,'last_update','1728072417'), -(107,2,'woocommerce_admin_variable_product_tour_shown','yes'), -(110,1,'session_tokens','a:3:{s:64:\"e37deb0bf49ab25e270407fbf6253ad79c60731292c6face9ef13d7c26b41eb7\";a:4:{s:10:\"expiration\";i:1762936183;s:2:\"ip\";s:14:\"77.109.119.132\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1761726583;}s:64:\"40acece476e38ee57bbf3642cba99ad86159d3fd872b95c7e8285b1e7ab52009\";a:4:{s:10:\"expiration\";i:1762332684;s:2:\"ip\";s:14:\"193.121.87.177\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36\";s:5:\"login\";i:1762159884;}s:64:\"1162aaca1d6f1c4b913ea0a9c3d8e9e8eb7463167bf2f58cdce05db3192fb617\";a:4:{s:10:\"expiration\";i:1762334761;s:2:\"ip\";s:14:\"193.121.87.177\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:144.0) Gecko/20100101 Firefox/144.0\";s:5:\"login\";i:1762161961;}}'), -(126,1,'woocommerce_admin_homepage_stats','{\"installJetpackDismissed\":true}'), -(128,1,'managewoocommerce_page_wc-orderscolumnshidden','a:0:{}'), -(129,1,'edit_shop_order_per_page','20'), -(132,1,'roc_dismissed_wc_pro_notice','1'), -(146,1,'closedpostboxes_woocommerce_page_wc-orders','a:1:{i:0;s:12:\"wms_meta_box\";}'), -(147,1,'metaboxhidden_woocommerce_page_wc-orders','a:0:{}'), -(155,1,'wp_mail_smtp_pro_banner_dismissed','1'), -(165,1,'_new_email','a:2:{s:4:\"hash\";s:32:\"bb75df9dea643dd96634d2474f715f58\";s:8:\"newemail\";s:17:\"g7colin@gmail.com\";}'), -(168,1,'closedpostboxes_dashboard','a:1:{i:0;s:32:\"wp_mail_smtp_reports_widget_lite\";}'), -(169,1,'metaboxhidden_dashboard','a:0:{}'), -(184,1,'roc_dismissed_pro_release_notice','1'), -(220,1,'woocommerce_admin_dashboard_chart_interval','month'), -(222,1,'meta-box-order_woocommerce_page_wc-orders','a:3:{s:4:\"side\";s:62:\"woocommerce-order-notes,woocommerce-order-actions,wms_meta_box\";s:6:\"normal\";s:87:\"woocommerce-order-data,woocommerce-order-items,woocommerce-order-downloads,order_custom\";s:8:\"advanced\";s:0:\"\";}'), -(265,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'); -/*!40000 ALTER TABLE `haikuwp_usermeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_users` --- - -DROP TABLE IF EXISTS `haikuwp_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_users` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_login` varchar(60) NOT NULL DEFAULT '', - `user_pass` varchar(255) NOT NULL DEFAULT '', - `user_nicename` varchar(50) NOT NULL DEFAULT '', - `user_email` varchar(100) NOT NULL DEFAULT '', - `user_url` varchar(100) NOT NULL DEFAULT '', - `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `user_activation_key` varchar(255) NOT NULL DEFAULT '', - `user_status` int(11) NOT NULL DEFAULT 0, - `display_name` varchar(250) NOT NULL DEFAULT '', - PRIMARY KEY (`ID`), - KEY `user_login_key` (`user_login`), - KEY `user_nicename` (`user_nicename`), - KEY `user_email` (`user_email`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_users` --- - -LOCK TABLES `haikuwp_users` WRITE; -/*!40000 ALTER TABLE `haikuwp_users` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_users` VALUES -(1,'gcch','$wp$2y$10$WJwlILNX75DzDtQBsjcRJuFWaQFIgpzWWYKm0Qj0FsAfZt8kJRtiu','gcch','contact@gcch.fr','https://haikuatelier.fr.ddev.site/wp','2024-08-04 20:10:39','',0,'gcch'), -(2,'manon','$2y$10$PQ3e05y6ZdzN40jk.1DHBuQeRiN5nw9QA0pghx6/AeJJfhqv1AcRy','manon','haiku.atelier@gmail.com','https://haikuatelier.com','2024-09-25 06:10:56','',0,'Manon DÉSIGNÈRE'); -/*!40000 ALTER TABLE `haikuwp_users` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_admin_note_actions` --- - -DROP TABLE IF EXISTS `haikuwp_wc_admin_note_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_admin_note_actions` ( - `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `note_id` bigint(20) unsigned NOT NULL, - `name` varchar(255) NOT NULL, - `label` varchar(255) NOT NULL, - `query` longtext NOT NULL, - `status` varchar(255) NOT NULL, - `actioned_text` varchar(255) NOT NULL, - `nonce_action` varchar(255) DEFAULT NULL, - `nonce_name` varchar(255) DEFAULT NULL, - PRIMARY KEY (`action_id`), - KEY `note_id` (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=581 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_admin_note_actions` --- - -LOCK TABLES `haikuwp_wc_admin_note_actions` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_admin_note_actions` VALUES -(1,1,'notify-refund-returns-page','Edit page','https://haikuatelier.fr.ddev.site/wp/wp-admin/post.php?post=11&action=edit','actioned','',NULL,NULL), -(86,59,'connect','Connecter','?page=wc-addons§ion=helper','unactioned','',NULL,NULL), -(424,61,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL), -(428,4,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL), -(429,5,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL), -(430,6,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL), -(431,7,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL), -(432,8,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL), -(434,10,'update-wc-subscriptions-3-0-15','View latest version','https://haikuatelier.fr.ddev.site/wp/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL), -(435,11,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL), -(436,14,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), -(437,15,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), -(438,16,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(439,16,'dismiss','Dismiss','','actioned','',NULL,NULL), -(440,17,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(441,17,'dismiss','Dismiss','','actioned','',NULL,NULL), -(442,18,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(443,18,'dismiss','Dismiss','','actioned','',NULL,NULL), -(444,19,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(445,19,'dismiss','Dismiss','','actioned','',NULL,NULL), -(447,21,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), -(448,21,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL), -(449,22,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), -(450,22,'dismiss','Dismiss','','actioned','',NULL,NULL), -(452,24,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL), -(453,25,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(454,25,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), -(455,26,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(456,26,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), -(457,27,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL), -(458,28,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(459,28,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL), -(460,29,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL), -(461,29,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL), -(463,31,'extension-settings','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(464,31,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(465,32,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(466,32,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(467,33,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL), -(468,34,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), -(469,35,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(470,35,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL), -(471,36,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(472,36,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(473,37,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(474,37,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), -(475,38,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(476,38,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), -(477,39,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(478,39,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL), -(479,40,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(480,40,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL), -(481,41,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(482,41,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL), -(483,42,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(484,42,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(487,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(488,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL), -(489,45,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), -(490,45,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), -(491,46,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(492,46,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL), -(493,47,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL), -(494,48,'plugin-list','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(495,48,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL), -(496,49,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php?','unactioned','',NULL,NULL), -(497,49,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(498,50,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(499,51,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(501,53,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL), -(502,54,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php','unactioned','',NULL,NULL), -(503,54,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), -(504,55,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(505,55,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(509,62,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(510,63,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned','',NULL,NULL), -(511,64,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL), -(542,66,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(543,67,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(553,69,'browse','Browse','https://woocommerce.com/success-stories/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(554,70,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2024-11-26&before=2024-11-26','actioned','',NULL,NULL), -(555,71,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(568,72,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(578,65,'update-db_done','Thanks!','https://haikuatelier.com/wp/wp-admin/admin.php?page=wc-status&status=failed&tab=action-scheduler&s&bulk_action=Apply&paged=1&wc-hide-notice=update','actioned','woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'), -(579,73,'try-the-new-templates','Try the new templates','?page=wc-settings&tab=email&try-new-templates','actioned','',NULL,NULL), -(580,74,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL); -/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_admin_notes` --- - -DROP TABLE IF EXISTS `haikuwp_wc_admin_notes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_admin_notes` ( - `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `type` varchar(20) NOT NULL, - `locale` varchar(20) NOT NULL, - `title` longtext NOT NULL, - `content` longtext NOT NULL, - `content_data` longtext DEFAULT NULL, - `status` varchar(200) NOT NULL, - `source` varchar(200) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_reminder` datetime DEFAULT NULL, - `is_snoozable` tinyint(1) NOT NULL DEFAULT 0, - `layout` varchar(20) NOT NULL DEFAULT '', - `image` varchar(200) DEFAULT NULL, - `is_deleted` tinyint(1) NOT NULL DEFAULT 0, - `is_read` tinyint(1) NOT NULL DEFAULT 0, - `icon` varchar(200) NOT NULL DEFAULT 'info', - PRIMARY KEY (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_admin_notes` --- - -LOCK TABLES `haikuwp_wc_admin_notes` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_admin_notes` VALUES -(1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','actioned','woocommerce-core','2024-08-05 13:12:38',NULL,0,'plain','',0,1,'info'), -(4,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(5,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.

Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with WooCommerce Shipping.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(6,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(7,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(8,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(10,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(11,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(14,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(15,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.

Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(16,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(17,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(18,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(19,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(21,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use PayPal Payments to accept PayPal.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(22,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(24,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(25,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(26,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(27,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(28,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(29,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(31,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(32,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(33,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(34,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(35,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(36,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(37,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(38,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(39,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(40,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(41,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(42,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(45,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(46,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(47,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(48,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(49,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(50,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(51,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(53,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(54,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(55,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(59,'wc-admin-wc-helper-connection','info','en_US','Se connecter à WooCommerce.com','Connectez-vous pour obtenir des notifications et des mises à jour importantes sur les produits.','{}','unactioned','woocommerce-admin','2024-08-05 13:13:55',NULL,0,'plain','',1,1,'info'), -(61,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics – wherever you are.','{}','unactioned','woocommerce-admin','2024-08-07 13:30:14',NULL,0,'plain','',1,1,'info'), -(62,'wc-admin-customizing-product-catalog','info','en_US','How to customise your product catalogue','You want your product catalogue and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2024-08-08 16:35:00',NULL,0,'plain','',1,1,'info'), -(63,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2024-08-10 13:35:49',NULL,0,'plain','',1,1,'info'), -(64,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the Settings and choose to stop sharing data. Read more about what data we collect.','{}','unactioned','woocommerce-admin','2024-08-12 15:54:19',NULL,0,'plain','',1,1,'info'), -(65,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2024-08-22 14:16:51',NULL,0,'plain','',0,1,'info'), -(66,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2024-10-31 13:30:48',NULL,0,'plain','',1,1,'info'), -(67,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2024-11-03 13:16:04',NULL,0,'plain','',1,1,'info'), -(69,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','{\"current_milestone\":10}','unactioned','woocommerce-admin','2024-11-21 16:12:57',NULL,0,'plain','',0,1,'info'), -(70,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, November 26th was your record day for sales! Net sales was € 1.525,00 beating the previous record of € 1.390,00 set on November 13th.','{\"old_record_date\":\"2024-11-13\",\"old_record_amt\":1390,\"new_record_date\":\"2024-11-26\",\"new_record_amt\":1525}','unactioned','woocommerce-admin','2024-11-27 13:20:42',NULL,0,'plain','',0,1,'info'), -(71,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2025-02-01 14:43:19',NULL,0,'plain','',0,1,'info'), -(72,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2025-05-02 13:13:21',NULL,0,'plain','',0,0,'info'), -(73,'wc-admin-email-improvements','info','en_US','Store emails have had an upgrade!','We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.','{}','unactioned','woocommerce-admin','2025-06-13 13:13:15',NULL,0,'plain','',0,0,'info'), -(74,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2025-08-05 13:12:43',NULL,0,'plain','',0,0,'info'); -/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_category_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_category_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_category_lookup` ( - `category_tree_id` bigint(20) unsigned NOT NULL, - `category_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`category_tree_id`,`category_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_category_lookup` --- - -LOCK TABLES `haikuwp_wc_category_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_category_lookup` VALUES -(15,15), -(30,30), -(31,31), -(32,32), -(33,33); -/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_customer_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_customer_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_customer_lookup` ( - `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned DEFAULT NULL, - `username` varchar(60) NOT NULL DEFAULT '', - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `email` varchar(100) DEFAULT NULL, - `date_last_active` timestamp NULL DEFAULT NULL, - `date_registered` timestamp NULL DEFAULT NULL, - `country` char(2) NOT NULL DEFAULT '', - `postcode` varchar(20) NOT NULL DEFAULT '', - `city` varchar(100) NOT NULL DEFAULT '', - `state` varchar(100) NOT NULL DEFAULT '', - PRIMARY KEY (`customer_id`), - UNIQUE KEY `user_id` (`user_id`), - KEY `email` (`email`) -) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_customer_lookup` --- - -LOCK TABLES `haikuwp_wc_customer_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_customer_lookup` VALUES -(6,NULL,'','Charlotte','Gérard','charlottegerard7@gmail.com','2024-11-28 14:21:17',NULL,'BE','1200','Woluwe-Saint-Lambert','Bruxelles'), -(7,NULL,'','Sofia','Balducci','sofia.balducci99@gmail.com','2025-10-12 19:03:18',NULL,'FR','75007','Paris',''), -(8,NULL,'','Claudia','Van Vynckt - WIPLAW','claudia.vanvynckt@hotmail.fr','2024-11-29 08:05:49',NULL,'BE','1050','Bruxelles',''), -(9,NULL,'','Lucie','Leiner','lucie.leiner@gmail.com','2024-11-29 16:22:16',NULL,'BE','1630','Linkebeek',''), -(10,NULL,'','Claire','Maroufin','maroufin.claire@gmail.com','2024-12-02 09:05:43',NULL,'FR','94270','Le Kremlin Bicetre',''), -(11,NULL,'','Peggy','Luete','gilquinpeggy@gmail.com','2024-12-02 09:46:48',NULL,'FR','93360','Neuilly - Plaisance',''), -(12,NULL,'','Violette','Cubier','v.cubier@gmail.com','2024-12-02 15:33:11',NULL,'FR','92320','Chatillon',''), -(13,NULL,'','Elise','Colson','choploone@gmail.com','2024-12-03 16:03:18',NULL,'BE','4420','Saint-Nicolas','Liège'), -(14,NULL,'','Maren','Sigge','maren.sigge@gmail.com','2024-12-03 21:53:41',NULL,'BE','1160','Auderghem','Belgium'), -(15,NULL,'','Perrine','Vincent','perrinevincent90@gmail.com','2024-12-06 12:08:34',NULL,'BE','5150','Floreffe','Namur'), -(16,NULL,'','Julien','Martial','julien.martial@hotmail.com','2024-12-06 13:04:22',NULL,'BE','1150','Woluwe St Pierre',''), -(17,NULL,'','christine','Saquet Bossu','c.saquetbossu@orange.fr','2024-12-12 15:55:38',NULL,'FR','35660','Renac',''), -(18,NULL,'','Nathalie','Chabin','lili.chabin@gmail.com','2024-12-19 08:08:20',NULL,'CH','1046','Rueyres - Suisse','vaud'), -(19,NULL,'','Veronique','Marchand','vsmarchand24@gmail.com','2024-12-14 09:10:01',NULL,'FR','89000','AUXERRE',''), -(20,NULL,'','Antoine','Deroisy','antoine.der92@gmail.com','2024-12-16 08:16:07',NULL,'BE','1050','Bruxelles',''), -(21,NULL,'','Ella','Richard','ella_cherry@hotmail.fr','2024-12-17 07:40:04',NULL,'FR','93310','Le Pre Saint Gervais',''), -(22,NULL,'','Elsa','Dumontel','elsa.dumontel@gmail.com','2024-12-18 14:13:28',NULL,'FR','15130','Arpajon Sur Cere','France'), -(23,NULL,'','Magali','Jacob','melian.jacob@free.fr','2024-12-26 11:37:45',NULL,'FR','67800','Hœnheim',''), -(24,NULL,'','Camille','Lacroix','camillelacroix715@gmail.com','2024-12-30 17:59:22',NULL,'FR','93310','Le Pré St Gervais',''), -(25,NULL,'','Margot','BRISOUX','margot.brisoux@hotmail.fr','2025-01-03 08:04:01',NULL,'FR','75011','Paris',''), -(26,NULL,'','Marine','TIBERI','tiberi.marine@gmail.com','2025-01-09 11:01:26',NULL,'FR','31400','Toulouse',''), -(27,NULL,'','Alice','Tabernat','alicetabernat@yahoo.fr','2025-01-29 09:32:07',NULL,'FR','93100','Montreuil',''), -(28,NULL,'','Aïn-Establet','Manon','manon.ainest@gmail.com','2025-01-30 07:57:12',NULL,'FR','75020','Paris',''), -(29,NULL,'','de beauvais','nina','parisnoune@gmail.com','2025-02-21 18:32:16',NULL,'FR','75019','paris',''), -(30,NULL,'','Owen Andrew','O\'Neill','owenoneill2727@gmail.com','2025-02-23 16:08:07',NULL,'BE','1060','Saint-Gilles','Brussel'), -(31,NULL,'','Julie','Soulie','julie.soulie96@yahoo.fr','2025-02-26 11:51:16',NULL,'FR','75019','Paris','Ile de France'), -(32,NULL,'','Charles','Stoop','charles.stoop@gmail.com','2025-03-03 10:10:15',NULL,'BE','1170','Watermael-Boitsfort','Bruxelles'), -(33,NULL,'','Amélie','Graux','amelie.grx@gmail.com','2025-03-03 09:45:26',NULL,'FR','75020','Paris',''), -(34,NULL,'','Raphael','Kuder','raphael.kuderpro@gmail.com','2025-03-05 10:04:07',NULL,'FR','75020','Paris','IDF'), -(35,NULL,'','Eve marie','REDOUIN','evemarie.redouin@gmail.com','2025-03-23 20:39:51',NULL,'FR','91140','Villebon-sur-Yvette',''), -(36,NULL,'','Arnau','Oliver Antich','isoliverantich1@gmail.com','2025-04-08 09:44:22',NULL,'BE','1060','Saint-Gilles','Belgium'), -(37,NULL,'','Gauthier','COLIN HAAG','lol@mdr.fr','2025-05-05 07:14:57',NULL,'FR','57070','Metz',''), -(38,NULL,'','Jérôme','Laurent','crack_one@hotmail.fr','2025-05-09 07:49:40',NULL,'FR','10500','BRIENNE LE CHATEAU','Aube'), -(39,NULL,'','Anne sophie','Mabi','annesophiemabi@gmail.com','2025-05-09 17:56:28',NULL,'FR','93110','Rosny sous bois',''), -(40,NULL,'','Zafiria','Efstratiadi','zafiria.efstratiadi@hotmail.com','2025-06-04 09:13:31',NULL,'BE','1080','Bruxelles','Molenbeek-Saint-Jean'), -(41,NULL,'','Laurent','CAPELO','laurentpvcapelo@gmail.com','2025-06-05 05:44:45',NULL,'FR','92130','Issy-les-Moulineaux',''), -(43,NULL,'','','','','2025-06-21 07:54:31',NULL,'','','',''), -(49,NULL,'','Mia','Mueller','mia.mueller07@gmail.com','2025-07-14 10:37:48',NULL,'BE','1000','Brussels',''), -(53,NULL,'','Myrthe','Meylaerts','myrthe.meylaerts@gmail.com','2025-09-17 16:11:56',NULL,'BE','1070','Anderlecht',''), -(54,NULL,'','Alexandra','Maillot','alexandraboubou2@gmail.com','2025-10-02 02:39:01',NULL,'FR','78500','Sartrouville',''), -(55,NULL,'','Théo','Huchet','theohuchet@laposte.net','2025-10-11 13:06:39',NULL,'FR','02000','Laon',''), -(56,NULL,'','Pauline','Dubois','pauline.duboi96@gmail.com','2025-10-12 12:50:06',NULL,'BE','1060','Saint-Gilles','Brussel-Hoofdstad'), -(57,NULL,'','Bram','De Gieter','bram.degieter@telenet.be','2025-10-18 11:34:26',NULL,'BE','9000','Gent','Oost-Vlaanderen'), -(58,NULL,'','Charlotte','Chabin','charlotte.chabin@gmail.com','2025-11-02 18:39:02',NULL,'CH','1004','Lausanne',''); -/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_download_log` --- - -DROP TABLE IF EXISTS `haikuwp_wc_download_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_download_log` ( - `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `timestamp` datetime NOT NULL, - `permission_id` bigint(20) unsigned NOT NULL, - `user_id` bigint(20) unsigned DEFAULT NULL, - `user_ip_address` varchar(100) DEFAULT '', - PRIMARY KEY (`download_log_id`), - KEY `permission_id` (`permission_id`), - KEY `timestamp` (`timestamp`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_download_log` --- - -LOCK TABLES `haikuwp_wc_download_log` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_download_log` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_download_log` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_addresses` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_addresses`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_addresses` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned NOT NULL, - `address_type` varchar(20) DEFAULT NULL, - `first_name` text DEFAULT NULL, - `last_name` text DEFAULT NULL, - `company` text DEFAULT NULL, - `address_1` text DEFAULT NULL, - `address_2` text DEFAULT NULL, - `city` text DEFAULT NULL, - `state` text DEFAULT NULL, - `postcode` text DEFAULT NULL, - `country` text DEFAULT NULL, - `email` varchar(320) DEFAULT NULL, - `phone` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`), - KEY `order_id` (`order_id`), - KEY `email` (`email`(191)), - KEY `phone` (`phone`), - FULLTEXT KEY `order_addresses_fts` (`first_name`,`last_name`,`company`,`address_1`,`address_2`,`city`,`state`,`postcode`,`country`,`email`,`phone`) -) ENGINE=InnoDB AUTO_INCREMENT=265 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_addresses` --- - -LOCK TABLES `haikuwp_wc_order_addresses` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_addresses` VALUES -(93,861,'billing','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE','charlottegerard7@gmail.com','0498836916'), -(94,861,'shipping','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE',NULL,'0498836916'), -(95,862,'billing','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR','sofia.balducci99@gmail.com','+393470972182'), -(96,862,'shipping','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR',NULL,'+393470972182'), -(103,866,'billing','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE','claudia.vanvynckt@hotmail.fr','0478183560'), -(104,866,'shipping','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0478183560'), -(105,867,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE','lucie.leiner@gmail.com','+32489578514'), -(106,867,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE',NULL,'+32489578514'), -(107,868,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE','lucie.leiner@gmail.com','+32489578514'), -(108,868,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE',NULL,'+32489578514'), -(109,869,'billing','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR','maroufin.claire@gmail.com','+33681223295'), -(110,869,'shipping','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR',NULL,'+33681223295'), -(111,870,'billing','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR','gilquinpeggy@gmail.com','+33663293145'), -(112,870,'shipping','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR',NULL,'+33663293145'), -(113,871,'billing','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR','v.cubier@gmail.com','0616154243'), -(114,871,'shipping','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR',NULL,'0616154243'), -(115,872,'billing','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE','choploone@gmail.com','0498508266'), -(116,872,'shipping','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE',NULL,'0498508266'), -(117,873,'billing','Maren','Sigge',NULL,'Av. G. E. Lebon, 24, BP 3',NULL,'Auderghem','Belgium','1160','BE','maren.sigge@gmail.com','+32489439874'), -(118,873,'shipping','Viviane','Antoine',NULL,'Chaussée de Givet 33',NULL,'Mariembourg','Belgium','5660','BE',NULL,'+32489439874'), -(121,876,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(122,876,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(123,877,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(124,877,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(125,878,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(126,878,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(127,879,'billing','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE','julien.martial@hotmail.com','0472585911'), -(128,879,'shipping','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE',NULL,'0472585911'), -(129,880,'billing','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR','c.saquetbossu@orange.fr','0685532210'), -(130,880,'shipping','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR',NULL,'0685532210'), -(131,881,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH','lili.chabin@gmail.com','+41786229221'), -(132,881,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH',NULL,'+41786229221'), -(137,884,'billing','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR','vsmarchand24@gmail.com','+33612102273'), -(138,884,'shipping','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR',NULL,'+33612102273'), -(139,885,'billing','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE','antoine.der92@gmail.com','0474183450'), -(140,885,'shipping','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0474183450'), -(141,886,'billing','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR','ella_cherry@hotmail.fr','06 77 32 66 50'), -(142,886,'shipping','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR',NULL,'06 77 32 66 50'), -(143,887,'billing','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR','elsa.dumontel@gmail.com','0642985078'), -(144,887,'shipping','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR',NULL,'0642985078'), -(145,888,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH','lili.chabin@gmail.com','+41786229221'), -(146,888,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH',NULL,'+41786229221'), -(147,889,'billing','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR','melian.jacob@free.fr','0670745455'), -(148,889,'shipping','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR',NULL,'0670745455'), -(149,892,'billing','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR','camillelacroix715@gmail.com','0681659460'), -(150,892,'shipping','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR',NULL,'0681659460'), -(151,893,'billing','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), -(152,893,'shipping','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), -(153,894,'billing','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), -(154,894,'shipping','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), -(155,895,'billing','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR','tiberi.marine@gmail.com','+33602079136'), -(156,895,'shipping','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR',NULL,'+33602079136'), -(157,897,'billing','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR','alicetabernat@yahoo.fr','0770426206'), -(158,897,'shipping','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR',NULL,'0770426206'), -(159,898,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), -(160,898,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), -(161,899,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), -(162,899,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), -(163,900,'billing','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR','parisnoune@gmail.com','0670423158'), -(164,900,'shipping','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR',NULL,'0670423158'), -(165,901,'billing','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE','owenoneill2727@gmail.com','+353852179564'), -(166,901,'shipping','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE',NULL,'+353852179564'), -(167,902,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), -(168,902,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), -(169,903,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), -(170,903,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), -(171,904,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), -(172,904,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), -(173,905,'billing','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR','amelie.grx@gmail.com','0667102260'), -(174,905,'shipping','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR',NULL,'0667102260'), -(175,906,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), -(176,906,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), -(177,907,'billing','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR','raphael.kuderpro@gmail.com','0783260894'), -(178,907,'shipping','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR',NULL,'0783260894'), -(179,908,'billing','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR','evemarie.redouin@gmail.com','0642769155'), -(180,908,'shipping','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR',NULL,'0642769155'), -(181,909,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), -(182,909,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), -(183,910,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), -(184,910,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), -(185,911,'billing','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR','lol@mdr.fr','0603436016'), -(186,911,'shipping','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR',NULL,'0603436016'), -(187,912,'billing','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR','crack_one@hotmail.fr','+33695854956'), -(188,912,'shipping','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR',NULL,'+33695854956'), -(189,919,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(190,919,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(191,920,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(192,920,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(193,921,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(194,921,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(195,922,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(196,922,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(197,923,'billing','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE','zafiria.efstratiadi@hotmail.com','0474918430'), -(198,923,'shipping','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE',NULL,'0474918430'), -(199,924,'billing','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR','laurentpvcapelo@gmail.com','+33646234205'), -(200,924,'shipping','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR',NULL,'+33646234205'), -(205,1013,'billing','Mia','Mueller',NULL,'Chaussee de Vleurgat 172',NULL,'Brussels',NULL,'1000','BE','mia.mueller07@gmail.com','0474470271'), -(206,1013,'shipping','Mia','Mueller',NULL,'Chaussee de Vleurgat 172',NULL,'Brussels',NULL,'1000','BE',NULL,'0474470271'), -(249,1443,'billing','Myrthe','Meylaerts',NULL,'Demosthenesstraat 242',NULL,'Anderlecht',NULL,'1070','BE','myrthe.meylaerts@gmail.com','0499089766'), -(250,1443,'shipping','Myrthe','Meylaerts',NULL,'Demosthenesstraat 242',NULL,'Anderlecht',NULL,'1070','BE',NULL,'0499089766'), -(251,1480,'billing','Alexandra','Maillot',NULL,'26 rue de Stalingrad',NULL,'Sartrouville',NULL,'78500','FR','alexandraboubou2@gmail.com','0663463354'), -(252,1480,'shipping','Alexandra','Maillot',NULL,'26 rue de Stalingrad',NULL,'Sartrouville',NULL,'78500','FR',NULL,'0663463354'), -(253,1486,'billing','Théo','Huchet',NULL,'58 Rue Châtelaine',NULL,'Laon',NULL,'02000','FR','theohuchet@laposte.net','+33628751554'), -(254,1486,'shipping','Théo','Huchet',NULL,'58 Rue Châtelaine',NULL,'Laon',NULL,'02000','FR',NULL,'+33628751554'), -(255,1487,'billing','Théo','Huchet',NULL,'58 rue châtelaine',NULL,'Laon',NULL,'02000','FR','theohuchet@laposte.net','0628751554'), -(256,1487,'shipping','Théo','Huchet',NULL,'58 rue châtelaine',NULL,'Laon',NULL,'02000','FR',NULL,'0628751554'), -(257,1488,'billing','Pauline','Dubois',NULL,'Rue Maurice Wilmotte, 25',NULL,'Saint-Gilles','Brussel-Hoofdstad','1060','BE','pauline.duboi96@gmail.com','+32473119568'), -(258,1488,'shipping','Pauline','Dubois',NULL,'Rue Maurice Wilmotte, 25',NULL,'Saint-Gilles','Brussel-Hoofdstad','1060','BE',NULL,'+32473119568'), -(259,1489,'billing','Sofia','Balducci',NULL,'156 Rue de l’Université (MAIF)',NULL,'Paris',NULL,'75007','FR','sofia.balducci99@gmail.com','+393470972182'), -(260,1489,'shipping','Sofia','Balducci',NULL,'156 Rue de l’Université (MAIF)',NULL,'Paris',NULL,'75007','FR',NULL,'+393470972182'), -(261,1490,'billing','Bram','De Gieter',NULL,'Gasmeterlaan 44',NULL,'Gent','Oost-Vlaanderen','9000','BE','bram.degieter@telenet.be','0474177921'), -(262,1490,'shipping','Bram','De Gieter',NULL,'Gasmeterlaan 44',NULL,'Gent','Oost-Vlaanderen','9000','BE',NULL,'0474177921'), -(263,1496,'billing','Charlotte','Chabin',NULL,'Chemin de Pierrefleur 88',NULL,'Lausanne',NULL,'1004','CH','charlotte.chabin@gmail.com','+41799475008'), -(264,1496,'shipping','Charlotte','Chabin',NULL,'Chemin de Pierrefleur 88',NULL,'Lausanne',NULL,'1004','CH',NULL,'+41799475008'); -/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_coupon_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_coupon_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_coupon_lookup` ( - `order_id` bigint(20) unsigned NOT NULL, - `coupon_id` bigint(20) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `discount_amount` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_id`,`coupon_id`), - KEY `coupon_id` (`coupon_id`), - KEY `date_created` (`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_coupon_lookup` --- - -LOCK TABLES `haikuwp_wc_order_coupon_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_operational_data` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_operational_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_operational_data` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned DEFAULT NULL, - `created_via` varchar(100) DEFAULT NULL, - `woocommerce_version` varchar(20) DEFAULT NULL, - `prices_include_tax` tinyint(1) DEFAULT NULL, - `coupon_usages_are_counted` tinyint(1) DEFAULT NULL, - `download_permission_granted` tinyint(1) DEFAULT NULL, - `cart_hash` varchar(100) DEFAULT NULL, - `new_order_email_sent` tinyint(1) DEFAULT NULL, - `order_key` varchar(100) DEFAULT NULL, - `order_stock_reduced` tinyint(1) DEFAULT NULL, - `date_paid_gmt` datetime DEFAULT NULL, - `date_completed_gmt` datetime DEFAULT NULL, - `shipping_tax_amount` decimal(26,8) DEFAULT NULL, - `shipping_total_amount` decimal(26,8) DEFAULT NULL, - `discount_tax_amount` decimal(26,8) DEFAULT NULL, - `discount_total_amount` decimal(26,8) DEFAULT NULL, - `recorded_sales` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `order_id` (`order_id`), - KEY `order_key` (`order_key`) -) ENGINE=InnoDB AUTO_INCREMENT=871 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_operational_data` --- - -LOCK TABLES `haikuwp_wc_order_operational_data` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_operational_data` VALUES -(275,861,'rest-api','9.4.2',0,1,1,'',1,'wc_order_mIB56la8Hu9rh',0,'2024-11-28 17:00:31',NULL,0.00000000,300.00000000,0.00000000,0.00000000,1), -(278,862,'rest-api','9.4.2',0,1,1,'',1,'wc_order_g6qGGwFmCLhG4',1,'2024-11-28 15:42:54',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(315,866,'rest-api','9.4.2',0,1,1,'',1,'wc_order_GfVnri1zucEHV',1,'2024-11-29 09:07:39',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(324,867,'rest-api','9.4.2',0,0,0,'',0,'wc_order_Onpg5Ph1VT0kX',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(327,868,'rest-api','9.4.2',0,1,1,'',1,'wc_order_LbjBOTM6Pg4Y8',1,'2024-11-29 17:26:38',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(336,869,'rest-api','9.4.2',0,1,1,'',1,'wc_order_ZpJT7n8ezcpc5',1,'2024-12-02 10:06:46',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(345,870,'rest-api','9.4.2',0,0,0,'',0,'wc_order_QMiR6T3KaJtKv',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(348,871,'rest-api','9.4.2',0,1,1,'',1,'wc_order_14ze4V3I7fPgF',1,'2024-12-02 16:34:12',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(357,872,'rest-api','9.4.2',0,1,1,'',1,'wc_order_DpCz0MofHOMDQ',1,'2024-12-03 17:04:43',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(366,873,'rest-api','9.4.2',0,1,1,'',1,'wc_order_sAvbLtrCudWx8',1,'2024-12-03 22:55:58',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(381,876,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WLxB8y0RH3GN1',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(384,877,'rest-api','9.4.3',0,0,0,'',0,'wc_order_aW0gsIEvhmbBI',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(387,878,'rest-api','9.4.3',0,1,1,'',1,'wc_order_FErghd9o15Mhi',1,'2024-12-06 13:10:02','2024-12-12 22:07:33',0.00000000,0.00000000,0.00000000,0.00000000,1), -(396,879,'rest-api','9.4.3',0,1,1,'',1,'wc_order_uzC3Ve7jqfc8V',1,'2024-12-06 14:22:12','2024-12-12 21:43:42',0.00000000,0.00000000,0.00000000,0.00000000,1), -(405,880,'rest-api','9.4.3',0,1,1,'',1,'wc_order_HQOvW1OdAL776',1,'2024-12-12 16:59:06','2024-12-15 09:59:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(416,881,'rest-api','9.4.3',0,1,1,'',1,'wc_order_WWQmiUtXyzFol',1,'2024-12-13 08:39:25','2024-12-16 14:13:34',0.00000000,1200.00000000,0.00000000,0.00000000,1), -(431,884,'rest-api','9.4.3',0,1,1,'',1,'wc_order_E7TjpmjrlfgqK',1,'2024-12-14 10:10:27','2024-12-16 14:13:01',0.00000000,0.00000000,0.00000000,0.00000000,1), -(441,885,'rest-api','9.4.3',0,1,1,'',1,'wc_order_dRRIRApWpQVvv',1,'2024-12-16 09:17:25','2024-12-18 17:19:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(452,886,'rest-api','9.4.3',0,1,1,'',1,'wc_order_j7Ko64S7WIAGg',1,'2024-12-17 08:40:36','2024-12-18 17:16:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(461,887,'rest-api','9.4.3',0,1,1,'',1,'wc_order_cxY5Hd9F3yfSx',1,'2024-12-18 15:14:07','2024-12-31 11:59:52',0.00000000,0.00000000,0.00000000,0.00000000,1), -(472,888,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EWQEpfmuwjvdy',1,'2024-12-19 09:09:28','2024-12-20 18:55:34',0.00000000,12.00000000,0.00000000,0.00000000,1), -(482,889,'rest-api','9.4.3',0,1,1,'',1,'wc_order_C8HPkCjTn8qGF',1,'2024-12-26 12:41:16','2024-12-31 11:59:03',0.00000000,0.00000000,0.00000000,0.00000000,1), -(491,890,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(494,891,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(497,892,'rest-api','9.4.3',0,0,0,'',0,'wc_order_DSYDx6HTwefzB',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(502,893,'rest-api','9.4.3',0,0,0,'',0,'wc_order_8wGrIq5ASqfBl',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(505,894,'rest-api','9.4.3',0,1,1,'',1,'wc_order_BlQYC36BaeTyn',1,'2025-01-03 09:04:36','2025-01-07 14:56:35',0.00000000,3.00000000,0.00000000,0.00000000,1), -(515,895,'rest-api','9.4.3',0,1,1,'',1,'wc_order_2xSBNPp21uZ5r',1,'2025-01-09 12:03:17','2025-01-14 19:47:45',0.00000000,0.00000000,0.00000000,0.00000000,1), -(525,896,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(528,897,'rest-api','9.4.3',0,1,1,'',1,'wc_order_nvCeSzsnDrcfh',1,'2025-01-29 10:33:02','2025-02-03 17:36:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(537,898,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WV96AzBB6vqxe',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(540,899,'rest-api','9.4.3',0,1,1,'',1,'wc_order_y7Idk0wZ92Kf0',1,'2025-01-30 08:57:26','2025-02-03 17:37:02',0.00000000,3.00000000,0.00000000,0.00000000,1), -(551,900,'rest-api','9.4.3',0,0,0,'',0,'wc_order_vfYF53SLgxEsH',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(554,901,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EUV5aiBi07rzG',1,'2025-02-23 17:08:48',NULL,0.00000000,3.00000000,0.00000000,0.00000000,1), -(563,902,'rest-api','9.4.3',0,0,0,'',0,'wc_order_zGVBcZqGbnaUi',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(566,903,'rest-api','9.4.3',0,1,1,'',1,'wc_order_vAtkq8RMPMGTb',1,'2025-02-26 12:53:34','2025-03-01 08:14:27',0.00000000,0.00000000,0.00000000,0.00000000,1), -(576,904,'rest-api','9.4.3',0,0,0,'',0,'wc_order_ZDIVsBShe5GGn',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(579,905,'rest-api','9.4.3',0,1,1,'',1,'wc_order_LMPM4pRGwA2nd',1,'2025-03-03 10:46:58','2025-03-06 08:24:33',0.00000000,0.00000000,0.00000000,0.00000000,1), -(588,906,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hU6nJ5TqPP2wT',1,'2025-03-03 11:11:31','2025-03-06 08:25:36',0.00000000,0.00000000,0.00000000,0.00000000,1), -(597,907,'rest-api','9.4.3',0,1,1,'',1,'wc_order_DCBDWc0ZYTU0z',1,'2025-03-05 11:05:44','2025-03-18 09:40:39',0.00000000,0.00000000,0.00000000,0.00000000,1), -(609,908,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hRtZ57XslBZT7',1,'2025-03-23 21:41:40','2025-04-04 06:41:39',0.00000000,0.00000000,0.00000000,0.00000000,1), -(619,909,'rest-api','9.4.3',0,0,0,'',0,'wc_order_cFZg51NEJ46Uh',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(622,910,'rest-api','9.8.4',0,1,1,'',1,'wc_order_kXbYV8JWxxFPV',1,'2025-04-08 11:45:10','2025-05-11 13:35:32',0.00000000,3.00000000,0.00000000,0.00000000,1), -(631,911,'rest-api','9.8.2',0,0,0,'',0,'wc_order_CbFLxIXlsqY2F',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(634,912,'rest-api','9.8.5',0,1,1,'',1,'wc_order_ffo5RfplSyEWZ',1,'2025-05-09 09:50:57','2025-05-16 05:54:00',0.00000000,3.00000000,0.00000000,0.00000000,1), -(643,919,'rest-api','9.8.4',0,0,0,'',0,'wc_order_ztQMr09oE7jlP',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(646,920,'rest-api','9.8.4',0,0,0,'',0,'wc_order_F2CMSPdH6VVnz',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(649,921,'rest-api','9.8.5',0,1,1,'',1,'wc_order_SJg4VAI3wKTkp',1,'2025-05-09 19:57:36','2025-05-16 05:54:26',0.00000000,0.00000000,0.00000000,0.00000000,1), -(652,922,'rest-api','9.8.5',0,1,1,'',1,'wc_order_i4LpjO4IGhJql',1,'2025-05-16 05:54:37','2025-05-16 05:55:04',0.00000000,0.00000000,0.00000000,0.00000000,1), -(674,923,'rest-api','9.8.5',0,0,0,'',0,'wc_order_489IFs7nUiMpg',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(677,924,'rest-api','9.8.5',0,1,1,'',1,'wc_order_CtkYhNBPJqYg1',1,'2025-06-05 07:45:48','2025-06-09 10:59:56',0.00000000,0.00000000,0.00000000,0.00000000,1), -(690,997,'rest-api','9.9.5',0,1,1,'',1,'wc_order_PE3U54MIfW9x8',1,'2025-06-21 09:56:06','2025-06-28 14:32:24',0.00000000,0.00000000,0.00000000,0.00000000,1), -(719,1013,'rest-api','9.9.5',0,1,1,'',1,'wc_order_jloBYCPPNUESP',1,'2025-07-14 12:39:22','2025-07-16 08:59:09',0.00000000,0.00000000,0.00000000,0.00000000,1), -(792,1443,'rest-api','10.1.2',0,1,1,'',1,'wc_order_5WBwz6DJvd4kA',1,'2025-09-17 18:13:40','2025-09-23 09:29:46',0.00000000,0.00000000,0.00000000,0.00000000,1), -(802,1480,'rest-api','10.1.2',0,1,1,'',1,'wc_order_iXxg020I4MFYI',1,'2025-10-02 04:41:49','2025-10-03 19:49:56',0.00000000,0.00000000,0.00000000,0.00000000,1), -(812,1486,'rest-api','10.1.2',0,1,1,'',1,'wc_order_FDTK1LLFc0mQH',1,'2025-10-10 15:55:44','2025-10-16 11:02:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(821,1487,'rest-api','10.1.2',0,1,1,'',1,'wc_order_Mm0VszuGSBc1z',1,'2025-10-11 15:07:01','2025-10-16 11:02:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(830,1488,'rest-api','10.1.2',0,1,1,'',1,'wc_order_lJCicZuDoxLoU',1,'2025-10-12 14:50:29','2025-10-24 06:59:46',0.00000000,0.00000000,0.00000000,0.00000000,1), -(839,1489,'rest-api','10.1.2',0,1,1,'',1,'wc_order_rtSvHoOyNUO4z',1,'2025-10-12 21:04:26','2025-10-16 11:01:51',0.00000000,0.00000000,0.00000000,0.00000000,1), -(851,1490,'rest-api','10.1.2',0,1,1,'',1,'wc_order_v5sCoMUx7M0XR',1,'2025-10-18 13:36:45','2025-10-24 17:36:03',0.00000000,0.00000000,0.00000000,0.00000000,1), -(862,1496,'rest-api','10.3.3',0,1,1,'',1,'wc_order_ho6fTgA2QvT1H',1,'2025-11-02 19:40:07',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1); -/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_product_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_product_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_product_lookup` ( - `order_item_id` bigint(20) unsigned NOT NULL, - `order_id` bigint(20) unsigned NOT NULL, - `product_id` bigint(20) unsigned NOT NULL, - `variation_id` bigint(20) unsigned NOT NULL, - `customer_id` bigint(20) unsigned DEFAULT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `product_qty` int(11) NOT NULL, - `product_net_revenue` double NOT NULL DEFAULT 0, - `product_gross_revenue` double NOT NULL DEFAULT 0, - `coupon_amount` double NOT NULL DEFAULT 0, - `tax_amount` double NOT NULL DEFAULT 0, - `shipping_amount` double NOT NULL DEFAULT 0, - `shipping_tax_amount` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_item_id`,`order_id`), - KEY `order_id` (`order_id`), - KEY `product_id` (`product_id`), - KEY `customer_id` (`customer_id`), - KEY `date_created` (`date_created`), - KEY `customer_product_date` (`customer_id`,`product_id`,`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_product_lookup` --- - -LOCK TABLES `haikuwp_wc_order_product_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_product_lookup` VALUES -(136,861,331,0,6,'2024-11-28 16:21:17',1,35,335,0,0,300,0), -(138,862,288,646,7,'2024-11-28 16:40:46',1,80,80,0,0,0,0), -(147,866,251,0,8,'2024-11-29 10:05:49',1,65,65,0,0,0,0), -(149,867,258,0,9,'2024-11-29 10:30:23',1,75,75,0,0,0,0), -(151,868,251,0,9,'2024-11-29 18:22:16',1,65,65,0,0,0,0), -(152,868,271,0,9,'2024-11-29 18:22:16',1,95,95,0,0,0,0), -(154,869,202,637,10,'2024-12-02 11:05:43',1,50,50,0,0,0,0), -(155,869,291,649,10,'2024-12-02 11:05:43',1,70,70,0,0,0,0), -(157,870,398,0,11,'2024-12-02 11:46:48',1,65,65,0,0,0,0), -(159,871,521,523,12,'2024-12-02 17:33:11',1,60,60,0,0,0,0), -(160,871,342,563,12,'2024-12-02 17:33:11',1,25,25,0,0,0,0), -(161,871,342,560,12,'2024-12-02 17:33:11',1,58,58,0,0,0,0), -(163,872,263,0,13,'2024-12-03 18:03:18',1,90,90,0,0,0,0), -(165,873,306,652,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), -(166,873,183,566,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), -(167,873,274,0,14,'2024-12-03 23:53:41',1,95,95,0,0,0,0), -(173,876,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), -(175,877,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), -(177,878,288,646,15,'2024-12-06 14:08:34',1,80,80,0,0,0,0), -(178,878,285,642,15,'2024-12-06 14:08:34',1,75,75,0,0,0,0), -(180,879,312,655,16,'2024-12-06 15:04:22',1,75,75,0,0,0,0), -(182,880,335,0,17,'2024-12-12 17:55:38',1,40,40,0,0,0,0), -(183,880,545,553,17,'2024-12-12 17:55:38',1,60,60,0,0,0,0), -(185,881,306,653,18,'2024-12-13 09:37:26',1,48,1248,0,0,1200,0), -(193,884,271,0,19,'2024-12-14 11:10:01',1,95,95,0,0,0,0), -(195,885,288,646,20,'2024-12-16 10:16:07',1,80,80,0,0,0,0), -(197,886,545,553,21,'2024-12-17 09:40:04',1,60,60,0,0,0,0), -(198,886,490,494,21,'2024-12-17 09:40:04',1,45,45,0,0,0,0), -(200,887,365,677,22,'2024-12-18 16:13:28',1,60,60,0,0,0,0), -(202,888,306,651,18,'2024-12-19 10:08:20',1,50,62,0,0,12,0), -(204,889,325,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), -(205,889,554,555,23,'2024-12-26 13:37:45',1,55,55,0,0,0,0), -(206,889,435,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), -(207,889,521,523,23,'2024-12-26 13:37:45',1,60,60,0,0,0,0), -(208,889,251,0,23,'2024-12-26 13:37:45',1,65,65,0,0,0,0), -(210,892,554,555,24,'2024-12-30 19:59:22',1,55,55,0,0,0,0), -(212,893,335,0,25,'2025-01-03 09:10:31',1,40,43,0,0,3,0), -(214,894,331,0,25,'2025-01-03 10:04:01',1,35,38,0,0,3,0), -(216,895,202,638,26,'2025-01-09 13:01:26',1,85,85,0,0,0,0), -(217,895,306,652,26,'2025-01-09 13:01:26',1,70,70,0,0,0,0), -(219,897,291,649,27,'2025-01-29 11:32:07',1,70,70,0,0,0,0), -(221,898,435,0,28,'2025-01-30 09:55:09',1,35,38,0,0,3,0), -(223,899,435,0,28,'2025-01-30 09:57:12',1,35,38,0,0,3,0), -(225,900,133,135,29,'2025-02-21 20:32:16',1,150,150,0,0,0,0), -(227,901,430,845,30,'2025-02-23 18:08:07',1,45,48,0,0,3,0), -(229,902,271,0,31,'2025-02-26 13:51:14',1,95,95,0,0,0,0), -(231,903,271,0,31,'2025-02-26 13:51:16',1,95,95,0,0,0,0), -(233,904,168,200,32,'2025-03-03 08:31:50',1,150,150,0,0,0,0), -(235,905,274,0,33,'2025-03-03 11:45:26',1,95,95,0,0,0,0), -(237,906,168,200,32,'2025-03-03 12:10:15',1,150,150,0,0,0,0), -(239,907,168,200,34,'2025-03-05 12:04:07',1,150,150,0,0,0,0), -(240,907,447,0,34,'2025-03-05 12:04:07',1,40,40,0,0,0,0), -(242,908,342,560,35,'2025-03-23 22:39:51',1,58,58,0,0,0,0), -(243,908,433,478,35,'2025-03-23 22:39:51',1,48,48,0,0,0,0), -(245,909,328,0,36,'2025-04-07 13:50:33',1,40,43,0,0,3,0), -(247,910,328,0,36,'2025-04-08 13:44:22',1,40,43,0,0,3,0), -(249,911,625,633,37,'2025-05-05 11:14:57',1,65,65,0,0,0,0), -(251,912,318,0,38,'2025-05-09 11:49:40',1,40,43,0,0,3,0), -(253,919,490,494,39,'2025-05-09 21:54:35',1,50,50,0,0,0,0), -(254,919,342,563,39,'2025-05-09 21:54:35',2,60,60,0,0,0,0), -(256,920,342,563,39,'2025-05-09 21:56:26',2,60,60,0,0,0,0), -(258,921,342,563,39,'2025-05-09 21:56:27',2,60,60,0,0,0,0), -(260,922,342,563,39,'2025-05-09 21:56:28',2,60,60,0,0,0,0), -(262,923,285,642,40,'2025-06-04 13:13:31',1,80,80,0,0,0,0), -(264,924,447,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), -(265,924,435,0,41,'2025-06-05 09:44:45',1,40,40,0,0,0,0), -(266,924,328,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), -(270,997,447,0,43,'2025-06-21 11:54:31',1,45,45,0,0,0,0), -(271,997,202,638,43,'2025-06-21 11:54:31',1,85,85,0,0,0,0), -(287,1013,1004,1005,49,'2025-07-14 14:37:48',1,70,70,0,0,0,0), -(288,1013,202,638,49,'2025-07-14 14:37:48',1,85,85,0,0,0,0), -(343,1443,554,555,53,'2025-09-17 20:11:56',1,65,65,0,0,0,0), -(344,1443,318,0,53,'2025-09-17 20:11:56',1,45,45,0,0,0,0), -(346,1480,1467,1468,54,'2025-10-02 06:39:01',1,120,120,0,0,0,0), -(348,1486,213,570,55,'2025-10-10 17:55:22',1,75,75,0,0,0,0), -(350,1487,342,560,55,'2025-10-11 17:06:39',1,55,55,0,0,0,0), -(352,1488,202,638,56,'2025-10-12 16:50:06',1,85,85,0,0,0,0), -(354,1489,202,638,7,'2025-10-12 23:03:18',1,85,85,0,0,0,0), -(356,1490,274,0,57,'2025-10-18 15:34:26',1,120,120,0,0,0,0), -(358,1496,306,651,58,'2025-11-02 20:39:02',1,50,50,0,0,0,0), -(359,1496,306,653,58,'2025-11-02 20:39:02',1,48,48,0,0,0,0), -(360,1496,285,642,58,'2025-11-02 20:39:02',1,85,85,0,0,0,0); -/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_stats` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_stats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_stats` ( - `order_id` bigint(20) unsigned NOT NULL, - `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_paid` datetime DEFAULT '0000-00-00 00:00:00', - `date_completed` datetime DEFAULT '0000-00-00 00:00:00', - `num_items_sold` int(11) NOT NULL DEFAULT 0, - `total_sales` double NOT NULL DEFAULT 0, - `tax_total` double NOT NULL DEFAULT 0, - `shipping_total` double NOT NULL DEFAULT 0, - `net_total` double NOT NULL DEFAULT 0, - `returning_customer` tinyint(1) DEFAULT NULL, - `status` varchar(20) NOT NULL, - `customer_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`order_id`), - KEY `date_created` (`date_created`), - KEY `customer_id` (`customer_id`), - KEY `status` (`status`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_stats` --- - -LOCK TABLES `haikuwp_wc_order_stats` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_stats` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_stats` VALUES -(861,0,'2024-11-28 16:21:17','2024-11-28 15:21:17','2024-11-28 18:00:31',NULL,1,335,0,300,35,0,'wc-pending',6), -(862,0,'2024-11-28 16:40:46','2024-11-28 15:40:46','2024-11-28 16:42:54',NULL,1,80,0,0,80,0,'wc-processing',7), -(866,0,'2024-11-29 10:05:49','2024-11-29 09:05:49','2024-11-29 10:07:39',NULL,1,65,0,0,65,0,'wc-processing',8), -(867,0,'2024-11-29 10:30:23','2024-11-29 09:30:23',NULL,NULL,1,75,0,0,75,0,'wc-pending',9), -(868,0,'2024-11-29 18:22:16','2024-11-29 17:22:16','2024-11-29 18:26:38',NULL,2,160,0,0,160,0,'wc-processing',9), -(869,0,'2024-12-02 11:05:43','2024-12-02 10:05:43','2024-12-02 11:06:46',NULL,2,120,0,0,120,0,'wc-processing',10), -(870,0,'2024-12-02 11:46:48','2024-12-02 10:46:48',NULL,NULL,1,65,0,0,65,0,'wc-pending',11), -(871,0,'2024-12-02 17:33:11','2024-12-02 16:33:11','2024-12-02 17:34:12',NULL,3,143,0,0,143,0,'wc-processing',12), -(872,0,'2024-12-03 18:03:18','2024-12-03 17:03:18','2024-12-03 18:04:43',NULL,1,90,0,0,90,0,'wc-processing',13), -(873,0,'2024-12-03 23:53:41','2024-12-03 22:53:41','2024-12-03 23:55:58',NULL,3,235,0,0,235,0,'wc-processing',14), -(876,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), -(877,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), -(878,0,'2024-12-06 14:08:34','2024-12-06 13:08:34','2024-12-06 14:10:02','2024-12-12 23:07:33',2,155,0,0,155,0,'wc-completed',15), -(879,0,'2024-12-06 15:04:22','2024-12-06 14:04:22','2024-12-06 15:22:12','2024-12-12 22:43:42',1,75,0,0,75,0,'wc-completed',16), -(880,0,'2024-12-12 17:55:38','2024-12-12 16:55:38','2024-12-12 17:59:06','2024-12-15 10:59:40',2,100,0,0,100,0,'wc-refunded',17), -(881,0,'2024-12-13 09:37:26','2024-12-13 08:37:26','2024-12-13 09:39:25','2024-12-16 15:13:34',1,1248,0,1200,48,0,'wc-completed',18), -(884,0,'2024-12-14 11:10:01','2024-12-14 10:10:01','2024-12-14 11:10:27','2024-12-16 15:13:01',1,95,0,0,95,0,'wc-refunded',19), -(885,0,'2024-12-16 10:16:07','2024-12-16 09:16:07','2024-12-16 10:17:25','2024-12-18 18:19:19',1,80,0,0,80,0,'wc-completed',20), -(886,0,'2024-12-17 09:40:04','2024-12-17 08:40:04','2024-12-17 09:40:36','2024-12-18 18:16:40',2,105,0,0,105,0,'wc-completed',21), -(887,0,'2024-12-18 16:13:28','2024-12-18 15:13:28','2024-12-18 16:14:07','2024-12-31 12:59:52',1,60,0,0,60,0,'wc-completed',22), -(888,0,'2024-12-19 10:08:20','2024-12-19 09:08:20','2024-12-19 10:09:28','2024-12-20 19:55:34',1,62,0,12,50,1,'wc-completed',18), -(889,0,'2024-12-26 13:37:45','2024-12-26 12:37:45','2024-12-26 13:41:16','2024-12-31 12:59:03',5,250,0,0,250,0,'wc-completed',23), -(890,888,'2024-12-29 15:53:20','2024-12-29 14:53:20','2024-12-29 15:53:20','2024-12-29 15:53:20',0,-12,0,0,-12,NULL,'wc-completed',18), -(891,880,'2024-12-30 11:40:43','2024-12-30 10:40:43','2024-12-30 11:40:43','2024-12-30 11:40:43',0,-100,0,0,-100,NULL,'wc-refunded',17), -(892,0,'2024-12-30 19:59:22','2024-12-30 18:59:22',NULL,NULL,1,55,0,0,55,0,'wc-pending',24), -(893,0,'2025-01-03 09:10:31','2025-01-03 08:10:31',NULL,NULL,1,43,0,3,40,0,'wc-pending',25), -(894,0,'2025-01-03 10:04:01','2025-01-03 09:04:01','2025-01-03 10:04:36','2025-01-07 15:56:35',1,38,0,3,35,0,'wc-completed',25), -(895,0,'2025-01-09 13:01:26','2025-01-09 12:01:26','2025-01-09 13:03:17','2025-01-14 20:47:45',2,155,0,0,155,0,'wc-completed',26), -(896,884,'2025-01-23 22:51:50','2025-01-23 21:51:50','2025-01-23 22:51:50','2025-01-23 22:51:50',0,-95,0,0,-95,NULL,'wc-refunded',19), -(897,0,'2025-01-29 11:32:07','2025-01-29 10:32:07','2025-01-29 11:33:02','2025-02-03 18:36:19',1,70,0,0,70,0,'wc-completed',27), -(898,0,'2025-01-30 09:55:09','2025-01-30 08:55:09',NULL,NULL,1,38,0,3,35,0,'wc-pending',28), -(899,0,'2025-01-30 09:57:12','2025-01-30 08:57:12','2025-01-30 09:57:26','2025-02-03 18:37:02',1,38,0,3,35,0,'wc-completed',28), -(900,0,'2025-02-21 20:32:16','2025-02-21 19:32:16',NULL,NULL,1,150,0,0,150,0,'wc-pending',29), -(901,0,'2025-02-23 18:08:07','2025-02-23 17:08:07','2025-02-23 18:08:48',NULL,1,48,0,3,45,0,'wc-processing',30), -(902,0,'2025-02-26 13:51:14','2025-02-26 12:51:14',NULL,NULL,1,95,0,0,95,0,'wc-pending',31), -(903,0,'2025-02-26 13:51:16','2025-02-26 12:51:16','2025-02-26 13:53:34','2025-03-01 09:14:27',1,95,0,0,95,0,'wc-completed',31), -(904,0,'2025-03-03 08:31:50','2025-03-03 07:31:50',NULL,NULL,1,150,0,0,150,0,'wc-pending',32), -(905,0,'2025-03-03 11:45:26','2025-03-03 10:45:26','2025-03-03 11:46:58','2025-03-06 09:24:33',1,95,0,0,95,0,'wc-completed',33), -(906,0,'2025-03-03 12:10:15','2025-03-03 11:10:15','2025-03-03 12:11:31','2025-03-06 09:25:36',1,150,0,0,150,0,'wc-completed',32), -(907,0,'2025-03-05 12:04:07','2025-03-05 11:04:07','2025-03-05 12:05:44','2025-03-18 10:40:39',2,190,0,0,190,0,'wc-completed',34), -(908,0,'2025-03-23 22:39:51','2025-03-23 21:39:51','2025-03-23 22:41:40','2025-04-04 08:41:39',2,106,0,0,106,0,'wc-completed',35), -(909,0,'2025-04-07 13:50:33','2025-04-07 11:50:33',NULL,NULL,1,43,0,3,40,0,'wc-pending',36), -(910,0,'2025-04-08 13:44:22','2025-04-08 11:44:22','2025-04-08 13:45:10','2025-05-11 15:35:32',1,43,0,3,40,0,'wc-completed',36), -(911,0,'2025-05-05 11:14:57','2025-05-05 09:14:57',NULL,NULL,1,65,0,0,65,0,'wc-pending',37), -(912,0,'2025-05-09 11:49:40','2025-05-09 09:49:40','2025-05-09 11:50:57','2025-05-16 07:54:00',1,43,0,3,40,0,'wc-completed',38), -(919,0,'2025-05-09 21:54:35','2025-05-09 19:54:35',NULL,NULL,3,110,0,0,110,0,'wc-pending',39), -(920,0,'2025-05-09 21:56:26','2025-05-09 19:56:26',NULL,NULL,2,60,0,0,60,0,'wc-pending',39), -(921,0,'2025-05-09 21:56:27','2025-05-09 19:56:27','2025-05-09 21:57:36','2025-05-16 07:54:26',2,60,0,0,60,0,'wc-completed',39), -(922,0,'2025-05-09 21:56:28','2025-05-09 19:56:28','2025-05-16 07:54:37','2025-05-16 07:55:04',2,60,0,0,60,1,'wc-completed',39), -(923,0,'2025-06-04 13:13:31','2025-06-04 11:13:31',NULL,NULL,1,80,0,0,80,0,'wc-pending',40), -(924,0,'2025-06-05 09:44:45','2025-06-05 07:44:45','2025-06-05 09:45:48','2025-06-09 12:59:56',3,130,0,0,130,0,'wc-completed',41), -(997,0,'2025-06-21 11:54:31','2025-06-21 09:54:31','2025-06-21 11:56:06','2025-06-28 16:32:24',2,130,0,0,130,0,'wc-completed',43), -(1013,0,'2025-07-14 14:37:48','2025-07-14 12:37:48','2025-07-14 14:39:22','2025-07-16 10:59:09',2,155,0,0,155,0,'wc-completed',49), -(1443,0,'2025-09-17 20:11:56','2025-09-17 18:11:56','2025-09-17 20:13:40','2025-09-23 11:29:46',2,110,0,0,110,0,'wc-completed',53), -(1480,0,'2025-10-02 06:39:01','2025-10-02 04:39:01','2025-10-02 06:41:49','2025-10-03 21:49:56',1,120,0,0,120,0,'wc-completed',54), -(1486,0,'2025-10-10 17:55:22','2025-10-10 15:55:22','2025-10-10 17:55:44','2025-10-16 13:02:40',1,75,0,0,75,0,'wc-completed',55), -(1487,0,'2025-10-11 17:06:39','2025-10-11 15:06:39','2025-10-11 17:07:01','2025-10-16 13:02:19',1,55,0,0,55,1,'wc-completed',55), -(1488,0,'2025-10-12 16:50:06','2025-10-12 14:50:06','2025-10-12 16:50:29','2025-10-24 08:59:46',1,85,0,0,85,0,'wc-completed',56), -(1489,0,'2025-10-12 23:03:18','2025-10-12 21:03:18','2025-10-12 23:04:26','2025-10-16 13:01:51',1,85,0,0,85,1,'wc-completed',7), -(1490,0,'2025-10-18 15:34:26','2025-10-18 13:34:26','2025-10-18 15:36:45','2025-10-24 19:36:03',1,120,0,0,120,0,'wc-completed',57), -(1496,0,'2025-11-02 20:39:02','2025-11-02 19:39:02','2025-11-02 20:40:07',NULL,3,183,0,0,183,0,'wc-processing',58); -/*!40000 ALTER TABLE `haikuwp_wc_order_stats` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_tax_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_tax_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_tax_lookup` ( - `order_id` bigint(20) unsigned NOT NULL, - `tax_rate_id` bigint(20) unsigned NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `shipping_tax` double NOT NULL DEFAULT 0, - `order_tax` double NOT NULL DEFAULT 0, - `total_tax` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_id`,`tax_rate_id`), - KEY `tax_rate_id` (`tax_rate_id`), - KEY `date_created` (`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_tax_lookup` --- - -LOCK TABLES `haikuwp_wc_order_tax_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_orders` --- - -DROP TABLE IF EXISTS `haikuwp_wc_orders`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_orders` ( - `id` bigint(20) unsigned NOT NULL, - `status` varchar(20) DEFAULT NULL, - `currency` varchar(10) DEFAULT NULL, - `type` varchar(20) DEFAULT NULL, - `tax_amount` decimal(26,8) DEFAULT NULL, - `total_amount` decimal(26,8) DEFAULT NULL, - `customer_id` bigint(20) unsigned DEFAULT NULL, - `billing_email` varchar(320) DEFAULT NULL, - `date_created_gmt` datetime DEFAULT NULL, - `date_updated_gmt` datetime DEFAULT NULL, - `parent_order_id` bigint(20) unsigned DEFAULT NULL, - `payment_method` varchar(100) DEFAULT NULL, - `payment_method_title` text DEFAULT NULL, - `transaction_id` varchar(100) DEFAULT NULL, - `ip_address` varchar(100) DEFAULT NULL, - `user_agent` text DEFAULT NULL, - `customer_note` text DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `status` (`status`), - KEY `date_created` (`date_created_gmt`), - KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)), - KEY `billing_email` (`billing_email`(191)), - KEY `type_status_date` (`type`,`status`,`date_created_gmt`), - KEY `parent_order_id` (`parent_order_id`), - KEY `date_updated` (`date_updated_gmt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_orders` --- - -LOCK TABLES `haikuwp_wc_orders` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_orders` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_orders` VALUES -(861,'wc-pending','EUR','shop_order',0.00000000,335.00000000,0,'charlottegerard7@gmail.com','2024-11-28 15:21:17','2024-11-28 19:40:39',0,'','','','','',''), -(862,'wc-processing','EUR','shop_order',0.00000000,80.00000000,0,'sofia.balducci99@gmail.com','2024-11-28 15:40:46','2024-12-04 08:33:07',0,'','','cs_live_a1svQoVpQTAiSee2hdTTRsnPYQaQXDq7RNxaNg90PXi3YyGZtLHzO34Ci0','','',''), -(866,'wc-processing','EUR','shop_order',0.00000000,65.00000000,0,'claudia.vanvynckt@hotmail.fr','2024-11-29 09:05:49','2024-11-29 09:07:40',0,'','','cs_live_a1d08FUjZ9BRf9odbxjxgKnG6B1B6qh8sXCNcDnQ4iYPYGuJO0eDUYFPza','','',''), -(867,'wc-pending','EUR','shop_order',0.00000000,75.00000000,0,'lucie.leiner@gmail.com','2024-11-29 09:30:23','2024-11-29 09:30:23',0,'','','','','',''), -(868,'wc-processing','EUR','shop_order',0.00000000,160.00000000,0,'lucie.leiner@gmail.com','2024-11-29 17:22:16','2024-11-29 17:26:38',0,'','','cs_live_b1rl5EdRJzCtNzMlKISIV6pLx1QoXSQKMRMJLT0kSRouevb2zQ23nyaBQb','','',''), -(869,'wc-processing','EUR','shop_order',0.00000000,120.00000000,0,'maroufin.claire@gmail.com','2024-12-02 10:05:43','2024-12-02 10:06:46',0,'','','cs_live_b10JaBeyOWGNedl3gG765YEShS8lZHA9A4aKS95LgAKh6qZXQnCIVSljQS','','',''), -(870,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'gilquinpeggy@gmail.com','2024-12-02 10:46:48','2024-12-02 10:46:48',0,'','','','','',''), -(871,'wc-processing','EUR','shop_order',0.00000000,143.00000000,0,'v.cubier@gmail.com','2024-12-02 16:33:11','2024-12-02 16:34:13',0,'','','cs_live_b1NkHwimGQsZ4QkEAqe9CDnUr1DXp6W3PJtiypSTl7tbdlpNdixwfKayy5','','',''), -(872,'wc-processing','EUR','shop_order',0.00000000,90.00000000,0,'choploone@gmail.com','2024-12-03 17:03:18','2024-12-03 17:04:44',0,'','','cs_live_a1N24p77v8EyXK9ZJym9WKpN0L9d7nn8TKiG51ukP3wcHGOIEEO7JVRYkc','','',''), -(873,'wc-processing','EUR','shop_order',0.00000000,235.00000000,0,'maren.sigge@gmail.com','2024-12-03 22:53:41','2024-12-03 22:55:59',0,'','','cs_live_b1d2FCt4FYyGLsCPq20mViayd4OQXAn1eBfe3z3UOZQbCZk02byhZw8uRp','','',''), -(876,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:13',0,'','','','','',''), -(877,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:14',0,'','','','','',''), -(878,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:08:34','2024-12-15 09:35:41',0,'','','cs_live_a12SLRUpoI738BH0BJvY39tzXRBmbhmx4dty8MkdfmxlOrSNwqzi0LIs0w','','',''), -(879,'wc-completed','EUR','shop_order',0.00000000,75.00000000,0,'julien.martial@hotmail.com','2024-12-06 14:04:22','2024-12-12 21:48:29',0,'','','cs_live_a10cY6oxXXTqiNMNGXdIqBStIF4rxjTJ4nFAApF14ug4df1ubvsJBCkEnB','','',''), -(880,'wc-refunded','EUR','shop_order',0.00000000,100.00000000,0,'c.saquetbossu@orange.fr','2024-12-12 16:55:38','2024-12-30 10:40:50',0,'','','cs_live_b1rQKvEwBHzNanBG70EG9Xg1BMcfxjxlsIKvnNwLHSGcMeRRVFusIv82xu','','',''), -(881,'wc-completed','EUR','shop_order',0.00000000,1248.00000000,0,'lili.chabin@gmail.com','2024-12-13 08:37:26','2024-12-16 14:13:34',0,'','','cs_live_a1QOrbZvz7NPHCy1AONKDEPoNfNniuLqi8S8mO1So5xlfcxP3s7A8u1saJ','','',''), -(884,'wc-refunded','EUR','shop_order',0.00000000,95.00000000,0,'vsmarchand24@gmail.com','2024-12-14 10:10:01','2025-01-23 21:51:50',0,'','','cs_live_a1KhJ0JraBn277imcg61syatlwfwXUqRSgH0si1UywNXQnnaaPQUXCb6Ye','','',''), -(885,'wc-completed','EUR','shop_order',0.00000000,80.00000000,0,'antoine.der92@gmail.com','2024-12-16 09:16:07','2024-12-18 17:19:19',0,'','','cs_live_a15teMmPCgaffuRSOljLOuFl7R0GhHVDHuyCLh83Exs5EGs76RhR2Z6slN','','',''), -(886,'wc-completed','EUR','shop_order',0.00000000,105.00000000,0,'ella_cherry@hotmail.fr','2024-12-17 08:40:04','2024-12-18 17:16:40',0,'','','cs_live_b10gtoDEAZtugeUUybNRQU286vrPQm9SKRxovq17jyT5JSibTAZI8TyH9b','','',''), -(887,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'elsa.dumontel@gmail.com','2024-12-18 15:13:28','2024-12-31 11:59:52',0,'','','cs_live_a1kBdlYdcEX5glITE5cxLtkjEsemFaIVNJZDW641JlnkljMEjyrssTNJXo','','',''), -(888,'wc-completed','EUR','shop_order',0.00000000,62.00000000,0,'lili.chabin@gmail.com','2024-12-19 09:08:20','2024-12-29 14:53:29',0,'','','cs_live_a1ktP4tLyzgYY305YJGum3L8hu9N9qrPbOfeswgsBRyMSSge3yTL8atXEg','','',''), -(889,'wc-completed','EUR','shop_order',0.00000000,250.00000000,0,'melian.jacob@free.fr','2024-12-26 12:37:45','2024-12-31 11:59:03',0,'','','cs_live_b1sWkcR5ha10Ro3rgV3FqEQxvD40aB2mbqw6Plaq8I6nrBx1xYUPN6URYb','','',''), -(890,'wc-completed','EUR','shop_order_refund',0.00000000,-12.00000000,NULL,NULL,'2024-12-29 14:53:20','2025-11-03 09:34:42',888,NULL,NULL,NULL,NULL,NULL,NULL), -(891,'wc-completed','EUR','shop_order_refund',0.00000000,-100.00000000,NULL,NULL,'2024-12-30 10:40:43','2025-11-03 09:34:42',880,NULL,NULL,NULL,NULL,NULL,NULL), -(892,'wc-pending','EUR','shop_order',0.00000000,55.00000000,0,'camillelacroix715@gmail.com','2024-12-30 18:59:22','2024-12-30 18:59:22',0,'','','','','',''), -(893,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 08:10:31','2025-01-03 08:10:31',0,'','','','','',''), -(894,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 09:04:01','2025-01-07 14:56:35',0,'','','cs_live_a1bOBwoGtGQUtjrFiFgIaZqD3pvXjvB1bCVVa63MDqORXOtYmWf5qsFFCy','','',''), -(895,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'tiberi.marine@gmail.com','2025-01-09 12:01:26','2025-01-14 19:47:45',0,'','','cs_live_b1qXQzunVuNopx9KHrAAgcQpNKmmLwshMwKQgiK94CJpAC1peepjzzgw88','','',''), -(896,'wc-completed','EUR','shop_order_refund',0.00000000,-95.00000000,NULL,NULL,'2025-01-23 21:51:50','2025-11-03 09:34:42',884,NULL,NULL,NULL,NULL,NULL,NULL), -(897,'wc-completed','EUR','shop_order',0.00000000,70.00000000,0,'alicetabernat@yahoo.fr','2025-01-29 10:32:07','2025-02-03 17:36:19',0,'','','cs_live_a11g0bnfWPAfwbgPcGsp2nFjPkaTqz9TKjUKCgkotTDle31gqp2t5DIFXr','','',''), -(898,'wc-pending','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:55:09','2025-01-30 08:55:09',0,'','','','','',''), -(899,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:57:12','2025-02-03 17:37:02',0,'','','cs_live_a1QPvqbvcYzHtXWCvDchaoX8yKphpHA8aFUvZtEC5wxfw1C2SX0RI7XmOB','','',''), -(900,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'parisnoune@gmail.com','2025-02-21 19:32:16','2025-02-21 19:32:16',0,'','','','','',''), -(901,'wc-processing','EUR','shop_order',0.00000000,48.00000000,0,'owenoneill2727@gmail.com','2025-02-23 17:08:07','2025-02-23 17:08:49',0,'','','cs_live_a1GFHeWtsHUJuYz6QaJ9ys4MjurDGI6i43iKN9eG0SnFqknxjaMSLGJOez','','',''), -(902,'wc-pending','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:14','2025-02-26 12:51:15',0,'','','','','',''), -(903,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:16','2025-03-01 08:14:27',0,'','','cs_live_a1mFOyZPMm14pK57DdGIKZwTO4W8ZCatZvZWCNpF5xUC4ycLVAmKhDUrsA','','',''), -(904,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 07:31:50','2025-03-03 07:31:50',0,'','','','','',''), -(905,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'amelie.grx@gmail.com','2025-03-03 10:45:26','2025-03-06 08:24:33',0,'','','cs_live_a1aPByBFzbZyfbQTxL6nzu92j7iKkvl5if69zqaMEp5QJrQGPHjEimbMoK','','',''), -(906,'wc-completed','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 11:10:15','2025-03-06 08:25:36',0,'','','cs_live_a1LEJpJwearhfR2b7iPVKdUfymrbDp00VvSuR9qqkFdxuoo1TseDdGWSsj','','',''), -(907,'wc-completed','EUR','shop_order',0.00000000,190.00000000,0,'raphael.kuderpro@gmail.com','2025-03-05 11:04:07','2025-03-18 09:40:39',0,'','','cs_live_b11qrZzpZitWqhRsaz4pR9avf8eXD1nF5lEZ31cfuXZWYMn1ucJOUZL2tc','','',''), -(908,'wc-completed','EUR','shop_order',0.00000000,106.00000000,0,'evemarie.redouin@gmail.com','2025-03-23 21:39:51','2025-04-04 06:41:39',0,'','','cs_live_b1YqdwNaPbu9CWfGSQrpINirWmEMehRQzmYRJ3xJ0DCu8Tpmftcvyrx4My','','',''), -(909,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-07 11:50:33','2025-04-07 11:50:33',0,'','','','','',''), -(910,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-08 11:44:22','2025-05-11 13:35:32',0,'','','cs_live_a1M1AbVhpNayddsFHKmFfBx4whULHHouxQwRAvpuYm1sIXUlKfd0GItHWH','','',''), -(911,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'lol@mdr.fr','2025-05-05 09:14:57','2025-05-05 09:14:57',0,'','','','','',''), -(912,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'crack_one@hotmail.fr','2025-05-09 09:49:40','2025-05-16 05:54:00',0,'','','cs_live_a1H92o6VYyvx7aHJeAQmk1Pmd0IRjxqiuCRVy9CJKOHwNgUajseeOZV5GJ','','',''), -(919,'wc-pending','EUR','shop_order',0.00000000,110.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:54:35','2025-05-09 19:54:35',0,'','','','','',''), -(920,'wc-pending','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:26','2025-05-09 19:56:26',0,'','','','','',''), -(921,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:27','2025-05-16 05:54:26',0,'','','cs_live_a1BfsTQJFzp4sAD4M7ttoO0LVJLncUDjxVj0jfYnFYqfjvJfHKLu3aFhIm','','',''), -(922,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:28','2025-05-16 05:55:04',0,'','','','','',''), -(923,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'zafiria.efstratiadi@hotmail.com','2025-06-04 11:13:31','2025-06-04 11:13:31',0,'','','','','',''), -(924,'wc-completed','EUR','shop_order',0.00000000,130.00000000,0,'laurentpvcapelo@gmail.com','2025-06-05 07:44:45','2025-06-09 10:59:56',0,'','','cs_live_b1PVvGzhCZzxaRp4uSOYQcsRnC1RuZlyZoFqK0LZJQo2zkoU41vdXerJkw','','',''), -(997,'wc-completed','EUR','shop_order',0.00000000,130.00000000,0,NULL,'2025-06-21 09:54:31','2025-06-28 14:32:24',0,'','','cs_live_b1sjjD9YUm2JJIRUEYnmIQVeqq5HJg4fA08WLC163mheZO7PdHRO2Po4qk','','',''), -(1013,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'mia.mueller07@gmail.com','2025-07-14 12:37:48','2025-07-16 08:59:09',0,'','','cs_live_b1rGXdBJzH9twzs4r6WMVuyBsDfN31w9pvSivz4cUCWoaNJaVOkOVQq1ON','','',''), -(1443,'wc-completed','EUR','shop_order',0.00000000,110.00000000,0,'myrthe.meylaerts@gmail.com','2025-09-17 18:11:56','2025-09-23 09:29:46',0,'','','cs_live_b1dZqZWJT6QIwtLXz6zpijqnSbNi7AyJuStnsm0MJcg5wjD0lj21JIT58L','','',''), -(1480,'wc-completed','EUR','shop_order',0.00000000,120.00000000,0,'alexandraboubou2@gmail.com','2025-10-02 04:39:01','2025-10-03 19:49:56',0,'','','cs_live_a1d6tAIVld1UYClogv9eoWtMDgFprofFxy7hFFzPqYYEIRgMNzS5TSVNHu','','',''), -(1486,'wc-completed','EUR','shop_order',0.00000000,75.00000000,0,'theohuchet@laposte.net','2025-10-10 15:55:22','2025-10-16 11:02:40',0,'','','cs_live_a1FEU0ujTPYMTO7dbmdNn2ns42qUWEdUMrRmp1SpOqAbt1iCyxeW16FoPt','','',''), -(1487,'wc-completed','EUR','shop_order',0.00000000,55.00000000,0,'theohuchet@laposte.net','2025-10-11 15:06:39','2025-10-16 11:02:19',0,'','','cs_live_a1fbvWNWr3eWEXIZj3pfOYvj8MaJb9B9DEeFK2acqbidq0lPFKr1YWIEcW','','',''), -(1488,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'pauline.duboi96@gmail.com','2025-10-12 14:50:06','2025-10-24 06:59:46',0,'','','cs_live_a1cyRwsxqirnyEQ8iZ9Yp1IGumAj1dM91sUnYSxXzsYbt5XiBmXiQtokHf','','',''), -(1489,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'sofia.balducci99@gmail.com','2025-10-12 21:03:18','2025-10-16 11:01:51',0,'','','cs_live_a1xBKNpPKVffrCrl7tDwQQD3viFuqzwqUAXqMXBLWakGH0ipiOnzHn0IrK','','',''), -(1490,'wc-completed','EUR','shop_order',0.00000000,120.00000000,0,'bram.degieter@telenet.be','2025-10-18 13:34:26','2025-10-24 17:36:03',0,'','','cs_live_a1L9LCv7lSYX1gsY7oQbVrGqJN2AZLyjChZRdRK7ku4oI4EW5vZmxCTaqk','','','The necklace is a gift, so it would be nice that it is wrapped :)'), -(1496,'wc-processing','EUR','shop_order',0.00000000,183.00000000,0,'charlotte.chabin@gmail.com','2025-11-02 19:39:02','2025-11-02 19:40:08',0,'','','cs_live_b1zZOIKIH0LygTv6CVhy3lB7qEvG4ElbmDH5GlOOX1ltN9RGkAEH5JF6tw','','',''); -/*!40000 ALTER TABLE `haikuwp_wc_orders` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_orders_meta` --- - -DROP TABLE IF EXISTS `haikuwp_wc_orders_meta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_orders_meta` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned DEFAULT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` text DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)), - KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82)) -) ENGINE=InnoDB AUTO_INCREMENT=547 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_orders_meta` --- - -LOCK TABLES `haikuwp_wc_orders_meta` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_orders_meta` VALUES -(190,861,'_billing_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE charlottegerard7@gmail.com 0498836916'), -(191,861,'_shipping_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE 0498836916'), -(192,862,'_billing_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR sofia.balducci99@gmail.com +393470972182'), -(193,862,'_shipping_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR +393470972182'), -(194,861,'_edit_lock','1732822840:1'), -(204,862,'_edit_lock','1733301301:1'), -(212,866,'_billing_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE claudia.vanvynckt@hotmail.fr 0478183560'), -(213,866,'_shipping_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE 0478183560'), -(214,867,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), -(215,867,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE +32489578514'), -(216,868,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), -(217,868,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE +32489578514'), -(218,866,'_edit_lock','1732990774:1'), -(219,868,'_edit_lock','1741777158:1'), -(220,869,'_billing_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR maroufin.claire@gmail.com +33681223295'), -(221,869,'_shipping_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR +33681223295'), -(222,870,'_billing_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR gilquinpeggy@gmail.com +33663293145'), -(223,870,'_shipping_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR +33663293145'), -(224,871,'_billing_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR v.cubier@gmail.com 0616154243'), -(225,871,'_shipping_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR 0616154243'), -(226,871,'_edit_lock','1733427652:1'), -(227,872,'_billing_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE choploone@gmail.com 0498508266'), -(228,872,'_shipping_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE 0498508266'), -(229,872,'_edit_lock','1733769475:1'), -(230,873,'_billing_address_index','Maren Sigge Av. G. E. Lebon, 24, BP 3 Auderghem Belgium 1160 BE maren.sigge@gmail.com +32489439874'), -(231,873,'_shipping_address_index','Viviane Antoine Chaussée de Givet 33 Mariembourg Belgium 5660 BE +32489439874'), -(232,869,'_edit_lock','1734160497:1'), -(233,873,'_edit_lock','1733386487:1'), -(239,876,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(240,876,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(241,877,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(242,877,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(243,878,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(244,878,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(245,879,'_billing_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE julien.martial@hotmail.com 0472585911'), -(246,879,'_shipping_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE 0472585911'), -(247,879,'_edit_lock','1734041227:1'), -(248,880,'_billing_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR c.saquetbossu@orange.fr 0685532210'), -(249,880,'_shipping_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR 0685532210'), -(250,879,'tracking_number','10622472'), -(251,878,'_edit_lock','1734256732:1'), -(252,878,'tracking_number','10622471'), -(253,881,'_billing_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH lili.chabin@gmail.com +41786229221'), -(254,881,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH +41786229221'), -(255,881,'_edit_lock','1734817565:1'), -(266,880,'_edit_lock','1740486386:1'), -(267,884,'_billing_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR vsmarchand24@gmail.com +33612102273'), -(268,884,'_shipping_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR +33612102273'), -(269,876,'_edit_lock','1734255312:1'), -(270,880,'tracking_number','10727218'), -(271,884,'_edit_lock','1738615854:1'), -(272,885,'_billing_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE antoine.der92@gmail.com 0474183450'), -(273,885,'_shipping_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE 0474183450'), -(274,884,'tracking_number','10776780'), -(275,881,'tracking_number',''), -(276,886,'_billing_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR ella_cherry@hotmail.fr 06 77 32 66 50'), -(277,886,'_shipping_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR 06 77 32 66 50'), -(278,886,'_edit_lock','1734542336:1'), -(279,887,'_billing_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR elsa.dumontel@gmail.com 0642985078'), -(280,887,'_shipping_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR 0642985078'), -(281,886,'tracking_number','10831148'), -(282,885,'_edit_lock','1734545250:1'), -(283,885,'tracking_number',''), -(284,887,'_edit_lock','1736762840:1'), -(285,888,'_billing_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH lili.chabin@gmail.com +41786229221'), -(286,888,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH +41786229221'), -(287,888,'_edit_lock','1735490132:1'), -(288,888,'tracking_number','RN600242900BE'), -(289,889,'_billing_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR melian.jacob@free.fr 0670745455'), -(290,889,'_shipping_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR 0670745455'), -(291,889,'_edit_lock','1735646345:1'), -(292,890,'_refund_amount','12.00'), -(293,890,'_refunded_by','1'), -(294,890,'_refunded_payment',''), -(295,890,'_refund_reason','Free shipping'), -(296,891,'_refund_amount','100.00'), -(297,891,'_refunded_by','1'), -(298,891,'_refunded_payment',''), -(299,891,'_refund_reason',''), -(300,892,'_billing_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR camillelacroix715@gmail.com 0681659460'), -(301,892,'_shipping_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR 0681659460'), -(302,889,'tracking_number','10996113'), -(303,887,'tracking_number','10851363'), -(304,893,'_billing_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), -(305,893,'_shipping_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), -(306,894,'_billing_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), -(307,894,'_shipping_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), -(308,894,'_edit_lock','1736261796:1'), -(309,894,'tracking_number','11114755'), -(310,895,'_billing_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR tiberi.marine@gmail.com +33602079136'), -(311,895,'_shipping_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR +33602079136'), -(312,895,'_edit_lock','1737668991:1'), -(313,895,'tracking_number','11206531'), -(314,896,'_refund_amount','95.00'), -(315,896,'_refunded_by','1'), -(316,896,'_refunded_payment',''), -(317,896,'_refund_reason',''), -(318,897,'_billing_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR alicetabernat@yahoo.fr 0770426206'), -(319,897,'_shipping_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR 0770426206'), -(320,898,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), -(321,898,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), -(322,899,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), -(323,899,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), -(324,897,'_edit_lock','1738604185:1'), -(325,899,'_edit_lock','1739726026:1'), -(326,897,'tracking_number','11516644'), -(327,899,'tracking_number','11516643'), -(328,900,'_billing_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR parisnoune@gmail.com 0670423158'), -(329,900,'_shipping_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR 0670423158'), -(330,901,'_billing_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE owenoneill2727@gmail.com +353852179564'), -(331,901,'_shipping_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE +353852179564'), -(332,901,'_edit_lock','1740762785:1'), -(333,902,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), -(334,902,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), -(335,903,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), -(336,903,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), -(337,903,'_edit_lock','1741249420:1'), -(338,903,'tracking_number','11864885'), -(339,904,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), -(340,904,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), -(341,905,'_billing_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR amelie.grx@gmail.com 0667102260'), -(342,905,'_shipping_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR 0667102260'), -(343,906,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), -(344,906,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), -(345,907,'_billing_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR raphael.kuderpro@gmail.com 0783260894'), -(346,907,'_shipping_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR 0783260894'), -(347,905,'_edit_lock','1741249495:1'), -(348,905,'tracking_number','11941129'), -(349,906,'_edit_lock','1741249538:1'), -(350,906,'tracking_number','11941130'), -(351,907,'_edit_lock','1751314546:1'), -(352,907,'tracking_number','12069441'), -(353,908,'_billing_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR evemarie.redouin@gmail.com 0642769155'), -(354,908,'_shipping_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR 0642769155'), -(355,908,'_edit_lock','1743748901:1'), -(356,908,'tracking_number','12337845'), -(357,909,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), -(358,909,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), -(359,910,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), -(360,910,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), -(361,911,'_billing_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR lol@mdr.fr 0603436016'), -(362,911,'_shipping_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR 0603436016'), -(363,912,'_billing_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR crack_one@hotmail.fr +33695854956'), -(364,912,'_shipping_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR +33695854956'), -(365,919,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(366,919,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(367,920,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(368,920,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(369,921,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(370,921,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(371,922,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(372,922,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(373,910,'_edit_lock','1746970534:1'), -(374,910,'tracking_number',''), -(375,921,'_edit_lock','1747374867:1'), -(376,912,'_edit_lock','1747374841:1'), -(377,912,'tracking_number','12910308'), -(378,921,'tracking_number','12910309'), -(379,923,'_billing_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE zafiria.efstratiadi@hotmail.com 0474918430'), -(380,923,'_shipping_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE 0474918430'), -(381,924,'_billing_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR laurentpvcapelo@gmail.com +33646234205'), -(382,924,'_shipping_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR +33646234205'), -(383,924,'_edit_lock','1750509714:1'), -(384,924,'tracking_number','13228029'), -(387,997,'_billing_address_index',' '), -(388,997,'_shipping_address_index',' '), -(389,997,'_edit_lock','1752575442:1'), -(417,997,'tracking_number','13488164'), -(420,1013,'_billing_address_index','Mia Mueller Chaussee de Vleurgat 172 Brussels 1000 BE mia.mueller07@gmail.com 0474470271'), -(421,1013,'_shipping_address_index','Mia Mueller Chaussee de Vleurgat 172 Brussels 1000 BE 0474470271'), -(422,1013,'_edit_lock','1753358392:1'), -(423,1013,'tracking_number','13721043'), -(513,1443,'_billing_address_index','Myrthe Meylaerts Demosthenesstraat 242 Anderlecht 1070 BE myrthe.meylaerts@gmail.com 0499089766'), -(514,1443,'_shipping_address_index','Myrthe Meylaerts Demosthenesstraat 242 Anderlecht 1070 BE 0499089766'), -(515,1443,'_edit_lock','1760344734:1'), -(516,1443,'tracking_number','14584108'), -(517,1480,'_billing_address_index','Alexandra Maillot 26 rue de Stalingrad Sartrouville 78500 FR alexandraboubou2@gmail.com 0663463354'), -(518,1480,'_shipping_address_index','Alexandra Maillot 26 rue de Stalingrad Sartrouville 78500 FR 0663463354'), -(519,1480,'_edit_lock','1759521008:1'), -(520,1480,'tracking_number','14744669'), -(521,1486,'_billing_address_index','Théo Huchet 58 Rue Châtelaine Laon 02000 FR theohuchet@laposte.net +33628751554'), -(522,1486,'_shipping_address_index','Théo Huchet 58 Rue Châtelaine Laon 02000 FR +33628751554'), -(523,1487,'_billing_address_index','Théo Huchet 58 rue châtelaine Laon 02000 FR theohuchet@laposte.net 0628751554'), -(524,1487,'_shipping_address_index','Théo Huchet 58 rue châtelaine Laon 02000 FR 0628751554'), -(525,1488,'_billing_address_index','Pauline Dubois Rue Maurice Wilmotte, 25 Saint-Gilles Brussel-Hoofdstad 1060 BE pauline.duboi96@gmail.com +32473119568'), -(526,1488,'_shipping_address_index','Pauline Dubois Rue Maurice Wilmotte, 25 Saint-Gilles Brussel-Hoofdstad 1060 BE +32473119568'), -(527,1489,'_billing_address_index','Sofia Balducci 156 Rue de l’Université (MAIF) Paris 75007 FR sofia.balducci99@gmail.com +393470972182'), -(528,1489,'_shipping_address_index','Sofia Balducci 156 Rue de l’Université (MAIF) Paris 75007 FR +393470972182'), -(529,1486,'_edit_lock','1760612561:1'), -(530,1487,'_edit_lock','1760612540:1'), -(531,1488,'_edit_lock','1761289188:1'), -(532,1489,'_edit_lock','1760612512:1'), -(533,1489,'tracking_number','14913747'), -(534,1487,'tracking_number','14913746'), -(535,1486,'tracking_number','14913746'), -(536,1490,'_billing_address_index','Bram De Gieter Gasmeterlaan 44 Gent Oost-Vlaanderen 9000 BE bram.degieter@telenet.be 0474177921'), -(537,1490,'_shipping_address_index','Bram De Gieter Gasmeterlaan 44 Gent Oost-Vlaanderen 9000 BE 0474177921'), -(538,1488,'tracking_number',''), -(539,1490,'_edit_lock','1761328754:1'), -(540,1490,'tracking_number','323255091208881000'), -(541,1496,'_billing_address_index','Charlotte Chabin Chemin de Pierrefleur 88 Lausanne 1004 CH charlotte.chabin@gmail.com +41799475008'), -(542,1496,'_shipping_address_index','Charlotte Chabin Chemin de Pierrefleur 88 Lausanne 1004 CH +41799475008'), -(543,890,'_refund_type','full'), -(544,891,'_refund_type','full'), -(545,896,'_refund_type','full'), -(546,1496,'_edit_lock','1762169811:1'); -/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_attributes_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_attributes_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_attributes_lookup` ( - `product_id` bigint(20) NOT NULL, - `product_or_parent_id` bigint(20) NOT NULL, - `taxonomy` varchar(32) NOT NULL, - `term_id` bigint(20) NOT NULL, - `is_variation_attribute` tinyint(1) NOT NULL, - `in_stock` tinyint(1) NOT NULL, - PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`), - KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_attributes_lookup` --- - -LOCK TABLES `haikuwp_wc_product_attributes_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_attributes_lookup` VALUES -(103,102,'pa_size',37,1,1), -(104,102,'pa_size',38,1,1), -(105,102,'pa_size',39,1,1), -(106,102,'pa_size',40,1,1), -(107,102,'pa_size',41,1,1), -(108,102,'pa_size',42,1,1), -(109,102,'pa_size',43,1,1), -(528,102,'pa_size',44,1,1), -(114,113,'pa_size',37,1,1), -(115,113,'pa_size',38,1,1), -(116,113,'pa_size',39,1,1), -(117,113,'pa_size',40,1,1), -(118,113,'pa_size',41,1,1), -(119,113,'pa_size',42,1,1), -(120,113,'pa_size',43,1,1), -(529,113,'pa_size',44,1,1), -(134,133,'pa_size',37,1,0), -(135,133,'pa_size',38,1,0), -(136,133,'pa_size',39,1,0), -(137,133,'pa_size',40,1,0), -(138,133,'pa_size',41,1,0), -(139,133,'pa_size',42,1,0), -(140,133,'pa_size',43,1,0), -(532,133,'pa_size',44,1,0), -(201,168,'pa_stone',48,1,1), -(200,168,'pa_stone',49,1,1), -(566,183,'pa_side',45,1,1), -(565,183,'pa_side',71,1,1), -(567,183,'pa_side',72,1,1), -(638,202,'pa_side',45,1,1), -(637,202,'pa_side',77,1,1), -(639,202,'pa_side',78,1,1), -(570,213,'pa_side',45,1,1), -(569,213,'pa_side',71,1,1), -(571,213,'pa_side',72,1,1), -(241,240,'pa_size',58,1,0), -(242,240,'pa_size',59,1,0), -(642,285,'pa_side',45,1,1), -(641,285,'pa_side',77,1,1), -(643,285,'pa_side',78,1,1), -(646,288,'pa_side',45,1,1), -(645,288,'pa_side',77,1,1), -(647,288,'pa_side',78,1,1), -(652,306,'pa_side',45,1,1), -(651,306,'pa_side',62,1,1), -(653,306,'pa_side',64,1,1), -(655,312,'pa_side',45,1,1), -(654,312,'pa_side',62,1,1), -(656,312,'pa_side',64,1,1), -(392,385,'pa_stone',48,1,1), -(391,385,'pa_stone',68,1,1), -(389,385,'pa_stone',69,1,1), -(393,393,'pa_side',45,0,1), -(393,393,'pa_side',66,0,1), -(398,398,'pa_side',45,0,1), -(398,398,'pa_side',66,0,1), -(494,490,'pa_side',45,1,1), -(493,490,'pa_side',77,1,1), -(495,490,'pa_side',78,1,1), -(515,515,'pa_stone',48,0,1), -(515,515,'pa_stone',73,0,1), -(523,521,'pa_stone',48,1,1), -(926,521,'pa_stone',79,1,1), -(553,545,'pa_side',45,1,1), -(552,545,'pa_side',66,1,1), -(555,554,'pa_side',45,1,1), -(556,554,'pa_side',66,1,1), -(614,613,'pa_size',37,1,1), -(615,613,'pa_size',38,1,1), -(616,613,'pa_size',39,1,1), -(617,613,'pa_size',40,1,1), -(618,613,'pa_size',41,1,1), -(619,613,'pa_size',42,1,1), -(620,613,'pa_size',43,1,1), -(624,613,'pa_size',44,1,1), -(626,625,'pa_size',37,1,1), -(627,625,'pa_size',38,1,1), -(628,625,'pa_size',39,1,1), -(629,625,'pa_size',40,1,1), -(630,625,'pa_size',41,1,1), -(631,625,'pa_size',42,1,1), -(632,625,'pa_size',43,1,1), -(633,625,'pa_size',44,1,1), -(626,625,'pa_stone',48,1,1), -(627,625,'pa_stone',48,1,1), -(628,625,'pa_stone',48,1,1), -(629,625,'pa_stone',48,1,1), -(630,625,'pa_stone',48,1,1), -(631,625,'pa_stone',48,1,1), -(632,625,'pa_stone',48,1,1), -(633,625,'pa_stone',48,1,1), -(626,625,'pa_stone',79,1,1), -(627,625,'pa_stone',79,1,1), -(628,625,'pa_stone',79,1,1), -(629,625,'pa_stone',79,1,1), -(630,625,'pa_stone',79,1,1), -(631,625,'pa_stone',79,1,1), -(632,625,'pa_stone',79,1,1), -(633,625,'pa_stone',79,1,1), -(766,766,'pa_side',45,0,1), -(766,766,'pa_side',62,0,1), -(766,766,'pa_side',63,0,1), -(944,941,'pa_size',37,1,1), -(945,941,'pa_size',38,1,1), -(946,941,'pa_size',39,1,1), -(947,941,'pa_size',40,1,1), -(948,941,'pa_size',41,1,1), -(949,941,'pa_size',42,1,1), -(950,941,'pa_size',43,1,1), -(951,941,'pa_size',44,1,1), -(954,953,'pa_size',37,1,1), -(955,953,'pa_size',38,1,1), -(956,953,'pa_size',39,1,1), -(957,953,'pa_size',40,1,1), -(958,953,'pa_size',41,1,1), -(959,953,'pa_size',42,1,1), -(960,953,'pa_size',43,1,1), -(961,953,'pa_size',44,1,1), -(982,982,'pa_size',37,0,1), -(982,982,'pa_size',38,0,1), -(982,982,'pa_size',39,0,1), -(982,982,'pa_size',40,0,1), -(982,982,'pa_size',41,0,1), -(982,982,'pa_size',42,0,1), -(982,982,'pa_size',43,0,1), -(982,982,'pa_size',44,0,1), -(994,994,'pa_size',37,0,1), -(994,994,'pa_size',38,0,1), -(994,994,'pa_size',39,0,1), -(994,994,'pa_size',40,0,1), -(994,994,'pa_size',41,0,1), -(994,994,'pa_size',42,0,1), -(994,994,'pa_size',43,0,1), -(994,994,'pa_size',44,0,1), -(1005,1004,'pa_side',45,1,1), -(1011,1004,'pa_side',66,1,1), -(1401,1401,'pa_size',37,0,1), -(1401,1401,'pa_size',38,0,1), -(1401,1401,'pa_size',39,0,1), -(1401,1401,'pa_size',40,0,1), -(1401,1401,'pa_size',41,0,1), -(1401,1401,'pa_size',42,0,1), -(1401,1401,'pa_size',43,0,1), -(1401,1401,'pa_size',44,0,1), -(1406,1406,'pa_size',37,0,1), -(1406,1406,'pa_size',38,0,1), -(1406,1406,'pa_size',39,0,1), -(1406,1406,'pa_size',40,0,1), -(1406,1406,'pa_size',41,0,1), -(1406,1406,'pa_size',42,0,1), -(1406,1406,'pa_size',43,0,1), -(1406,1406,'pa_size',44,0,1), -(1413,1412,'pa_size',37,1,1), -(1414,1412,'pa_size',38,1,1), -(1415,1412,'pa_size',39,1,1), -(1416,1412,'pa_size',40,1,1), -(1417,1412,'pa_size',41,1,1), -(1418,1412,'pa_size',42,1,1), -(1419,1412,'pa_size',43,1,1), -(1420,1412,'pa_size',44,1,1), -(1449,1444,'pa_side',76,1,1), -(1450,1444,'pa_side',77,1,1), -(1451,1444,'pa_side',78,1,1), -(1468,1467,'pa_size',37,1,1), -(1469,1467,'pa_size',38,1,1), -(1470,1467,'pa_size',39,1,1), -(1471,1467,'pa_size',40,1,1), -(1472,1467,'pa_size',41,1,1), -(1473,1467,'pa_size',42,1,1), -(1474,1467,'pa_size',43,1,1), -(1475,1467,'pa_size',44,1,1); -/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_download_directories` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_download_directories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_download_directories` ( - `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `url` varchar(256) NOT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`url_id`), - KEY `url` (`url`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_download_directories` --- - -LOCK TABLES `haikuwp_wc_product_download_directories` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_meta_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_meta_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_meta_lookup` ( - `product_id` bigint(20) NOT NULL, - `sku` varchar(100) DEFAULT '', - `virtual` tinyint(1) DEFAULT 0, - `downloadable` tinyint(1) DEFAULT 0, - `min_price` decimal(19,4) DEFAULT NULL, - `max_price` decimal(19,4) DEFAULT NULL, - `onsale` tinyint(1) DEFAULT 0, - `stock_quantity` double DEFAULT NULL, - `stock_status` varchar(100) DEFAULT 'instock', - `rating_count` bigint(20) DEFAULT 0, - `average_rating` decimal(3,2) DEFAULT 0.00, - `total_sales` bigint(20) DEFAULT 0, - `tax_status` varchar(100) DEFAULT 'taxable', - `tax_class` varchar(100) DEFAULT '', - `global_unique_id` varchar(100) DEFAULT '', - PRIMARY KEY (`product_id`), - KEY `virtual` (`virtual`), - KEY `downloadable` (`downloadable`), - KEY `stock_status` (`stock_status`), - KEY `stock_quantity` (`stock_quantity`), - KEY `onsale` (`onsale`), - KEY `min_max_price` (`min_price`,`max_price`), - KEY `sku` (`sku`(50)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_meta_lookup` --- - -LOCK TABLES `haikuwp_wc_product_meta_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_meta_lookup` VALUES -(20,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(22,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(23,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(25,NULL,0,0,20.0000,20.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(28,NULL,0,0,65.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(29,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(30,NULL,0,0,65.0000,65.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(35,NULL,0,0,62.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(36,NULL,0,0,68.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(37,NULL,0,0,62.0000,62.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(41,NULL,0,0,72.0000,72.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(50,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(56,NULL,0,0,35.0000,35.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(60,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(65,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(66,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(67,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(68,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(69,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(70,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(71,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(102,'HADOU-B-s',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(103,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(104,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(105,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(106,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(107,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(108,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(109,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(113,'HADOU-B-g',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(114,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(115,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(116,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(117,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(118,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(119,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(120,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(133,'KARA-B',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','',''), -(134,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(135,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(136,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(137,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(138,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(139,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(140,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(168,'Rokku-B',0,0,100.0000,110.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(183,'BOROBORO-BO2-s',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(200,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(201,NULL,0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(202,'PIASU-BO',0,0,50.0000,85.0000,0,NULL,'instock',0,0.00,6,'taxable','',''), -(213,'BOROBORO-BO2-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(240,'IKKAN-BR-s',0,0,80.0000,80.0000,0,NULL,'outofstock',0,0.00,0,'taxable','',''), -(241,'IKKAN-BR-s-1',0,0,80.0000,80.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(242,'IKKAN-BR-s-2',0,0,80.0000,80.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(251,'TANEMAKI-BR',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(258,'FUYOU-BR-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(263,'IKKAN-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(268,'PIASU-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(274,'FUYOU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(285,'HATTARI-CR2-s',0,0,55.0000,85.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(288,'HATTARI-CR1-g',0,0,60.0000,90.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(306,'TAMANORI-CR-s',0,0,48.0000,70.0000,0,NULL,'instock',0,0.00,6,'taxable','',''), -(312,'TAMANORI-CR-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(318,'FUYOU-CR',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(325,'HADOU-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(328,'HADOU-EC-g',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(338,'PIASU-BRC',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(342,'KAGUN-BOP',0,0,30.0000,55.0000,0,NULL,'instock',0,0.00,8,'taxable','',''), -(385,'ROKKU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(389,'ROKKU-C-jaspe',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(391,'ROKKU-C-lapis',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(392,'ROKKU-C-tiger',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(393,'MUGURA-CR-s',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(398,'MUGURA-CR-g',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(435,'KARA-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), -(447,'KARA-EC-s-1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(490,'HADOU-BOP',0,0,35.0000,50.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(493,'HADOU-BOP-left',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(494,'HADOU-BOP-pair',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(495,'HADOU-BOP-right',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(496,'MUGURA-CR1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(515,'BOROBORO-BO1-g',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(521,'BOROBORO-BO1-s',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(523,'BOROBORO-BO1-s-brown',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(528,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(529,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(532,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(545,'KARA-CR1-g',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(552,'KARA-CR-g-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(553,'KARA-CR-g-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(554,'KARA-CR1-s',0,0,40.0000,65.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(555,'KARA-CR-s-pair',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(556,'KARA-CR-s-one',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(560,'MUGURA-BOP-all',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(561,'MUGURA-BOP-long',0,0,38.0000,38.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(562,'MUGURA-BOP-medium',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(563,'MUGURA-BOP-short',0,0,30.0000,30.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(565,'BOROBORO-BO2-s-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(566,'BOROBORO-BO2-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(567,'BOROBORO-BO2-s-two',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(569,'BOROBORO-BO2-g-one',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(570,'BOROBORO-BO2-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(571,'BOROBORO-BO2-g-two',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(610,'HATTARI-BR',0,0,120.0000,120.0000,0,NULL,'outofstock',0,0.00,0,'taxable','',''), -(613,'BOROBORO-B2-g',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(614,'BOROBORO-B2-g-50',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(615,'BOROBORO-B2-g-52',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(616,'BOROBORO-B2-g-54',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(617,'BOROBORO-B2-g-56',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(618,'BOROBORO-B2-g-58',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(619,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(620,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(624,'BOROBORO-B2-g-60',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(625,'BOROBORO-B2-sj',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(626,'BOROBORO-B2-s-50',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(627,'BOROBORO-B2-s-52',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(628,'BOROBORO-B2-s-54',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(629,'BOROBORO-B2-s-56',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(630,'BOROBORO-B2-s-58',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(631,'BOROBORO-B2-s-60',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(632,NULL,0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(633,'BOROBORO-B2-s-64',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(637,'PIASU-BO-left',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(638,'PIASU-BO-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(639,'PIASU-BO-right',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(641,'HATTARI-CR1-s-left',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(642,'HATTARI-CR1-s-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(643,'HATTARI-CR1-s-right',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(645,'HATTARI-CR1-g-left',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(646,'HATTARI-CR1-g-pair',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(647,'HATTARI-CR1-g-right',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(651,'TAMANORI-CR-s-long',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(652,'TAMANORI-CR-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(653,'TAMANORI-CR-s-short',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(654,'TAMANORI-CR-g-long',0,0,52.0000,52.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(655,'TAMANORI-CR-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(656,'TAMANORI-CR-g-short',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(766,'FUYOU-BO',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(787,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(790,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(791,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(792,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(793,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(794,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(795,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(796,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(798,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(799,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(800,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(801,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(802,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(803,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(804,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(805,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(806,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(807,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(808,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(809,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(810,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(811,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(812,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(813,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(814,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(815,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(926,'BOROBORO-BO1-s-honey',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(941,'UTEKI-B-s',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(944,'UTEKI-B-s-50',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(945,'UTEKI-B-s-52',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(946,'UTEKI-B-s-54',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(947,'UTEKI-B-s-56',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(948,'UTEKI-B-s-58',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(949,'UTEKI-B-s-60',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(950,'UTEKI-B-s-62',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(951,'UTEKI-B-s-64',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(953,'UTEKI-B-g',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(954,'UTEKI-B-s-50-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(955,'UTEKI-B-s-52-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(956,'UTEKI-B-s-54-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(957,'UTEKI-B-s-56-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(958,'UTEKI-B-s-58-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(959,'UTEKI-B-s-60-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(960,'UTEKI-B-s-62-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(961,'UTEKI-B-s-64-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(982,'UTEKI-C-s',0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(994,'UTEKI-C-g',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1004,'PIASU-CR',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(1005,'PIASU-CR-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1011,'PIASU-CR-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1401,'UTEKI-C-g-1',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1406,'UTEKI-C-g-1-1',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1412,'BOROBORO-B2-st',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1413,'BOROBORO-B2-s-50-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1414,'BOROBORO-B2-s-52-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1415,'BOROBORO-B2-s-54-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1416,'BOROBORO-B2-s-56-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1417,'BOROBORO-B2-s-58-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1418,'BOROBORO-B2-s-60-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1419,'',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1420,'BOROBORO-B2-s-64-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1444,'PISHI-BO',0,0,50.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1449,'PISHI-BO-all',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1450,'PISHI-BO-left',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1451,'PISHI-BO-right',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1467,'PIASU-B',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(1468,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1469,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1470,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1471,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1472,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1473,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1474,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1475,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1491,'KIME-CR1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',''); -/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_rate_limits` --- - -DROP TABLE IF EXISTS `haikuwp_wc_rate_limits`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_rate_limits` ( - `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `rate_limit_key` varchar(200) NOT NULL, - `rate_limit_expiry` bigint(20) unsigned NOT NULL, - `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`rate_limit_id`), - UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_rate_limits` --- - -LOCK TABLES `haikuwp_wc_rate_limits` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_reserved_stock` --- - -DROP TABLE IF EXISTS `haikuwp_wc_reserved_stock`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_reserved_stock` ( - `order_id` bigint(20) NOT NULL, - `product_id` bigint(20) NOT NULL, - `stock_quantity` double NOT NULL DEFAULT 0, - `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`order_id`,`product_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_reserved_stock` --- - -LOCK TABLES `haikuwp_wc_reserved_stock` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_tax_rate_classes` --- - -DROP TABLE IF EXISTS `haikuwp_wc_tax_rate_classes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_tax_rate_classes` ( - `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - PRIMARY KEY (`tax_rate_class_id`), - UNIQUE KEY `slug` (`slug`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_tax_rate_classes` --- - -LOCK TABLES `haikuwp_wc_tax_rate_classes` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_tax_rate_classes` VALUES -(1,'Reduced rate','reduced-rate'), -(2,'Zero rate','zero-rate'); -/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_webhooks` --- - -DROP TABLE IF EXISTS `haikuwp_wc_webhooks`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_webhooks` ( - `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `status` varchar(200) NOT NULL, - `name` text NOT NULL, - `user_id` bigint(20) unsigned NOT NULL, - `delivery_url` text NOT NULL, - `secret` text NOT NULL, - `topic` varchar(200) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `api_version` smallint(4) NOT NULL, - `failure_count` smallint(10) NOT NULL DEFAULT 0, - `pending_delivery` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`webhook_id`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_webhooks` --- - -LOCK TABLES `haikuwp_wc_webhooks` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_webhooks` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_webhooks` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_api_keys` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_api_keys`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_api_keys` ( - `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL, - `description` varchar(200) DEFAULT NULL, - `permissions` varchar(10) NOT NULL, - `consumer_key` char(64) NOT NULL, - `consumer_secret` char(43) NOT NULL, - `nonces` longtext DEFAULT NULL, - `truncated_key` char(7) NOT NULL, - `last_access` datetime DEFAULT NULL, - PRIMARY KEY (`key_id`), - KEY `consumer_key` (`consumer_key`), - KEY `consumer_secret` (`consumer_secret`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_api_keys` --- - -LOCK TABLES `haikuwp_woocommerce_api_keys` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_api_keys` VALUES -(3,1,'lecture-clients','read_write','5d6090d73adb9034e3ece67a7e0394110a40dc8da3d59244bc4e916e8fd16533','cs_e213979ea3d1490b275dd75c8d53d05c82853119',NULL,'3606954','2025-11-02 20:39:02'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_attribute_taxonomies` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_attribute_taxonomies`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_attribute_taxonomies` ( - `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `attribute_name` varchar(200) NOT NULL, - `attribute_label` varchar(200) DEFAULT NULL, - `attribute_type` varchar(20) NOT NULL, - `attribute_orderby` varchar(20) NOT NULL, - `attribute_public` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`attribute_id`), - KEY `attribute_name` (`attribute_name`(20)) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_attribute_taxonomies` --- - -LOCK TABLES `haikuwp_woocommerce_attribute_taxonomies` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_attribute_taxonomies` VALUES -(1,'size','Size','select','menu_order',0), -(2,'side','Side','select','menu_order',0), -(3,'stone','Stone','select','name',0); -/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_downloadable_product_permissions` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_downloadable_product_permissions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_downloadable_product_permissions` ( - `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `download_id` varchar(36) NOT NULL, - `product_id` bigint(20) unsigned NOT NULL, - `order_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `order_key` varchar(200) NOT NULL, - `user_email` varchar(200) NOT NULL, - `user_id` bigint(20) unsigned DEFAULT NULL, - `downloads_remaining` varchar(9) DEFAULT NULL, - `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `access_expires` datetime DEFAULT NULL, - `download_count` bigint(20) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`permission_id`), - KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), - KEY `download_order_product` (`download_id`,`order_id`,`product_id`), - KEY `order_id` (`order_id`), - KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_downloadable_product_permissions` --- - -LOCK TABLES `haikuwp_woocommerce_downloadable_product_permissions` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_log` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_log` ( - `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `timestamp` datetime NOT NULL, - `level` smallint(4) NOT NULL, - `source` varchar(200) NOT NULL, - `message` longtext NOT NULL, - `context` longtext DEFAULT NULL, - PRIMARY KEY (`log_id`), - KEY `level` (`level`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_log` --- - -LOCK TABLES `haikuwp_woocommerce_log` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_log` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_log` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_order_itemmeta` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_order_itemmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_order_itemmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_item_id` bigint(20) unsigned NOT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `order_item_id` (`order_item_id`), - KEY `meta_key` (`meta_key`(32)) -) ENGINE=InnoDB AUTO_INCREMENT=2867 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_order_itemmeta` --- - -LOCK TABLES `haikuwp_woocommerce_order_itemmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_order_itemmeta` VALUES -(1111,136,'_product_id','331'), -(1112,136,'_variation_id','0'), -(1113,136,'_qty','1'), -(1114,136,'_tax_class',''), -(1115,136,'_line_subtotal','35'), -(1116,136,'_line_subtotal_tax','0'), -(1117,136,'_line_total','35'), -(1118,136,'_line_tax','0'), -(1119,136,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1120,137,'method_id','mondial_relay_point_relais'), -(1121,137,'instance_id',''), -(1122,137,'cost','300'), -(1123,137,'total_tax','0'), -(1124,137,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1125,138,'_product_id','288'), -(1126,138,'_variation_id','646'), -(1127,138,'_qty','1'), -(1128,138,'_tax_class',''), -(1129,138,'_line_subtotal','80'), -(1130,138,'_line_subtotal_tax','0'), -(1131,138,'_line_total','80'), -(1132,138,'_line_tax','0'), -(1133,138,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1134,138,'pa_side','pair'), -(1135,139,'method_id','mondial_relay_point_relais'), -(1136,139,'instance_id',''), -(1137,139,'cost','0'), -(1138,139,'total_tax','0'), -(1139,139,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1195,147,'_product_id','251'), -(1196,147,'_variation_id','0'), -(1197,147,'_qty','1'), -(1198,147,'_tax_class',''), -(1199,147,'_line_subtotal','65'), -(1200,147,'_line_subtotal_tax','0'), -(1201,147,'_line_total','65'), -(1202,147,'_line_tax','0'), -(1203,147,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1204,148,'method_id','mondial_relay_point_relais'), -(1205,148,'instance_id',''), -(1206,148,'cost','0'), -(1207,148,'total_tax','0'), -(1208,148,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1209,149,'_product_id','258'), -(1210,149,'_variation_id','0'), -(1211,149,'_qty','1'), -(1212,149,'_tax_class',''), -(1213,149,'_line_subtotal','75'), -(1214,149,'_line_subtotal_tax','0'), -(1215,149,'_line_total','75'), -(1216,149,'_line_tax','0'), -(1217,149,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1218,150,'method_id','mondial_relay_point_relais'), -(1219,150,'instance_id',''), -(1220,150,'cost','0'), -(1221,150,'total_tax','0'), -(1222,150,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1223,151,'_product_id','251'), -(1224,151,'_variation_id','0'), -(1225,151,'_qty','1'), -(1226,151,'_tax_class',''), -(1227,151,'_line_subtotal','65'), -(1228,151,'_line_subtotal_tax','0'), -(1229,151,'_line_total','65'), -(1230,151,'_line_tax','0'), -(1231,151,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1232,152,'_product_id','271'), -(1233,152,'_variation_id','0'), -(1234,152,'_qty','1'), -(1235,152,'_tax_class',''), -(1236,152,'_line_subtotal','95'), -(1237,152,'_line_subtotal_tax','0'), -(1238,152,'_line_total','95'), -(1239,152,'_line_tax','0'), -(1240,152,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1241,153,'method_id','mondial_relay_point_relais'), -(1242,153,'instance_id',''), -(1243,153,'cost','0'), -(1244,153,'total_tax','0'), -(1245,153,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1246,154,'_product_id','202'), -(1247,154,'_variation_id','637'), -(1248,154,'_qty','1'), -(1249,154,'_tax_class',''), -(1250,154,'_line_subtotal','50'), -(1251,154,'_line_subtotal_tax','0'), -(1252,154,'_line_total','50'), -(1253,154,'_line_tax','0'), -(1254,154,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1255,154,'pa_side','left-side'), -(1256,155,'_product_id','291'), -(1257,155,'_variation_id','649'), -(1258,155,'_qty','1'), -(1259,155,'_tax_class',''), -(1260,155,'_line_subtotal','70'), -(1261,155,'_line_subtotal_tax','0'), -(1262,155,'_line_total','70'), -(1263,155,'_line_tax','0'), -(1264,155,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1265,155,'pa_side','pair'), -(1266,156,'method_id','mondial_relay_point_relais'), -(1267,156,'instance_id',''), -(1268,156,'cost','0'), -(1269,156,'total_tax','0'), -(1270,156,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1271,157,'_product_id','398'), -(1272,157,'_variation_id','0'), -(1273,157,'_qty','1'), -(1274,157,'_tax_class',''), -(1275,157,'_line_subtotal','65'), -(1276,157,'_line_subtotal_tax','0'), -(1277,157,'_line_total','65'), -(1278,157,'_line_tax','0'), -(1279,157,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1280,158,'method_id','mondial_relay_point_relais'), -(1281,158,'instance_id',''), -(1282,158,'cost','0'), -(1283,158,'total_tax','0'), -(1284,158,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1285,159,'_product_id','521'), -(1286,159,'_variation_id','523'), -(1287,159,'_qty','1'), -(1288,159,'_tax_class',''), -(1289,159,'_line_subtotal','60'), -(1290,159,'_line_subtotal_tax','0'), -(1291,159,'_line_total','60'), -(1292,159,'_line_tax','0'), -(1293,159,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1294,159,'pa_stone','tiger-eye'), -(1295,160,'_product_id','342'), -(1296,160,'_variation_id','563'), -(1297,160,'_qty','1'), -(1298,160,'_tax_class',''), -(1299,160,'_line_subtotal','25'), -(1300,160,'_line_subtotal_tax','0'), -(1301,160,'_line_total','25'), -(1302,160,'_line_tax','0'), -(1303,160,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1304,160,'pa_side','short'), -(1305,161,'_product_id','342'), -(1306,161,'_variation_id','560'), -(1307,161,'_qty','1'), -(1308,161,'_tax_class',''), -(1309,161,'_line_subtotal','58'), -(1310,161,'_line_subtotal_tax','0'), -(1311,161,'_line_total','58'), -(1312,161,'_line_tax','0'), -(1313,161,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1314,161,'pa_side','all'), -(1315,162,'method_id','mondial_relay_point_relais'), -(1316,162,'instance_id',''), -(1317,162,'cost','0'), -(1318,162,'total_tax','0'), -(1319,162,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1320,163,'_product_id','263'), -(1321,163,'_variation_id','0'), -(1322,163,'_qty','1'), -(1323,163,'_tax_class',''), -(1324,163,'_line_subtotal','90'), -(1325,163,'_line_subtotal_tax','0'), -(1326,163,'_line_total','90'), -(1327,163,'_line_tax','0'), -(1328,163,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1329,164,'method_id','mondial_relay_point_relais'), -(1330,164,'instance_id',''), -(1331,164,'cost','0'), -(1332,164,'total_tax','0'), -(1333,164,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1334,165,'_product_id','306'), -(1335,165,'_variation_id','652'), -(1336,165,'_qty','1'), -(1337,165,'_tax_class',''), -(1338,165,'_line_subtotal','70'), -(1339,165,'_line_subtotal_tax','0'), -(1340,165,'_line_total','70'), -(1341,165,'_line_tax','0'), -(1342,165,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1343,165,'pa_side','pair'), -(1344,166,'_product_id','183'), -(1345,166,'_variation_id','566'), -(1346,166,'_qty','1'), -(1347,166,'_tax_class',''), -(1348,166,'_line_subtotal','70'), -(1349,166,'_line_subtotal_tax','0'), -(1350,166,'_line_total','70'), -(1351,166,'_line_tax','0'), -(1352,166,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1353,166,'pa_side','pair'), -(1354,167,'_product_id','274'), -(1355,167,'_variation_id','0'), -(1356,167,'_qty','1'), -(1357,167,'_tax_class',''), -(1358,167,'_line_subtotal','95'), -(1359,167,'_line_subtotal_tax','0'), -(1360,167,'_line_total','95'), -(1361,167,'_line_tax','0'), -(1362,167,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1363,168,'method_id','mondial_relay_point_relais'), -(1364,168,'instance_id',''), -(1365,168,'cost','0'), -(1366,168,'total_tax','0'), -(1367,168,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1396,173,'_product_id','288'), -(1397,173,'_variation_id','646'), -(1398,173,'_qty','1'), -(1399,173,'_tax_class',''), -(1400,173,'_line_subtotal','80'), -(1401,173,'_line_subtotal_tax','0'), -(1402,173,'_line_total','80'), -(1403,173,'_line_tax','0'), -(1404,173,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1405,173,'pa_side','pair'), -(1406,174,'method_id','mondial_relay_point_relais'), -(1407,174,'instance_id',''), -(1408,174,'cost','0'), -(1409,174,'total_tax','0'), -(1410,174,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1411,175,'_product_id','288'), -(1412,175,'_variation_id','646'), -(1413,175,'_qty','1'), -(1414,175,'_tax_class',''), -(1415,175,'_line_subtotal','80'), -(1416,175,'_line_subtotal_tax','0'), -(1417,175,'_line_total','80'), -(1418,175,'_line_tax','0'), -(1419,175,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1420,175,'pa_side','pair'), -(1421,176,'method_id','mondial_relay_point_relais'), -(1422,176,'instance_id',''), -(1423,176,'cost','0'), -(1424,176,'total_tax','0'), -(1425,176,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1426,177,'_product_id','288'), -(1427,177,'_variation_id','646'), -(1428,177,'_qty','1'), -(1429,177,'_tax_class',''), -(1430,177,'_line_subtotal','80'), -(1431,177,'_line_subtotal_tax','0'), -(1432,177,'_line_total','80'), -(1433,177,'_line_tax','0'), -(1434,177,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1435,177,'pa_side','pair'), -(1436,178,'_product_id','285'), -(1437,178,'_variation_id','642'), -(1438,178,'_qty','1'), -(1439,178,'_tax_class',''), -(1440,178,'_line_subtotal','75'), -(1441,178,'_line_subtotal_tax','0'), -(1442,178,'_line_total','75'), -(1443,178,'_line_tax','0'), -(1444,178,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1445,178,'pa_side','pair'), -(1446,179,'method_id','mondial_relay_point_relais'), -(1447,179,'instance_id',''), -(1448,179,'cost','0'), -(1449,179,'total_tax','0'), -(1450,179,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1451,180,'_product_id','312'), -(1452,180,'_variation_id','655'), -(1453,180,'_qty','1'), -(1454,180,'_tax_class',''), -(1455,180,'_line_subtotal','75'), -(1456,180,'_line_subtotal_tax','0'), -(1457,180,'_line_total','75'), -(1458,180,'_line_tax','0'), -(1459,180,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1460,180,'pa_side','pair'), -(1461,181,'method_id','mondial_relay_point_relais'), -(1462,181,'instance_id',''), -(1463,181,'cost','0'), -(1464,181,'total_tax','0'), -(1465,181,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1466,182,'_product_id','335'), -(1467,182,'_variation_id','0'), -(1468,182,'_qty','1'), -(1469,182,'_tax_class',''), -(1470,182,'_line_subtotal','40'), -(1471,182,'_line_subtotal_tax','0'), -(1472,182,'_line_total','40'), -(1473,182,'_line_tax','0'), -(1474,182,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1475,183,'_product_id','545'), -(1476,183,'_variation_id','553'), -(1477,183,'_qty','1'), -(1478,183,'_tax_class',''), -(1479,183,'_line_subtotal','60'), -(1480,183,'_line_subtotal_tax','0'), -(1481,183,'_line_total','60'), -(1482,183,'_line_tax','0'), -(1483,183,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1484,183,'pa_side','pair'), -(1485,184,'method_id','mondial_relay_point_relais'), -(1486,184,'instance_id',''), -(1487,184,'cost','0'), -(1488,184,'total_tax','0'), -(1489,184,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1490,185,'_product_id','306'), -(1491,185,'_variation_id','653'), -(1492,185,'_qty','1'), -(1493,185,'_tax_class',''), -(1494,185,'_line_subtotal','48'), -(1495,185,'_line_subtotal_tax','0'), -(1496,185,'_line_total','48'), -(1497,185,'_line_tax','0'), -(1498,185,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1499,185,'pa_side','short'), -(1500,186,'method_id','flat_rate'), -(1501,186,'instance_id',''), -(1502,186,'cost','1200'), -(1503,186,'total_tax','0'), -(1504,186,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1555,193,'_product_id','271'), -(1556,193,'_variation_id','0'), -(1557,193,'_qty','1'), -(1558,193,'_tax_class',''), -(1559,193,'_line_subtotal','95'), -(1560,193,'_line_subtotal_tax','0'), -(1561,193,'_line_total','95'), -(1562,193,'_line_tax','0'), -(1563,193,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1564,194,'method_id','mondial_relay_point_relais'), -(1565,194,'instance_id',''), -(1566,194,'cost','0'), -(1567,194,'total_tax','0'), -(1568,194,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1569,195,'_product_id','288'), -(1570,195,'_variation_id','646'), -(1571,195,'_qty','1'), -(1572,195,'_tax_class',''), -(1573,195,'_line_subtotal','80'), -(1574,195,'_line_subtotal_tax','0'), -(1575,195,'_line_total','80'), -(1576,195,'_line_tax','0'), -(1577,195,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1578,195,'pa_side','pair'), -(1579,196,'method_id','mondial_relay_point_relais'), -(1580,196,'instance_id',''), -(1581,196,'cost','0'), -(1582,196,'total_tax','0'), -(1583,196,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1584,197,'_product_id','545'), -(1585,197,'_variation_id','553'), -(1586,197,'_qty','1'), -(1587,197,'_tax_class',''), -(1588,197,'_line_subtotal','60'), -(1589,197,'_line_subtotal_tax','0'), -(1590,197,'_line_total','60'), -(1591,197,'_line_tax','0'), -(1592,197,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1593,197,'pa_side','pair'), -(1594,198,'_product_id','490'), -(1595,198,'_variation_id','494'), -(1596,198,'_qty','1'), -(1597,198,'_tax_class',''), -(1598,198,'_line_subtotal','45'), -(1599,198,'_line_subtotal_tax','0'), -(1600,198,'_line_total','45'), -(1601,198,'_line_tax','0'), -(1602,198,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1603,198,'pa_side','pair'), -(1604,199,'method_id','mondial_relay_point_relais'), -(1605,199,'instance_id',''), -(1606,199,'cost','0'), -(1607,199,'total_tax','0'), -(1608,199,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1609,200,'_product_id','365'), -(1610,200,'_variation_id','677'), -(1611,200,'_qty','1'), -(1612,200,'_tax_class',''), -(1613,200,'_line_subtotal','60'), -(1614,200,'_line_subtotal_tax','0'), -(1615,200,'_line_total','60'), -(1616,200,'_line_tax','0'), -(1617,200,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1618,200,'pa_side','pair'), -(1619,201,'method_id','mondial_relay_point_relais'), -(1620,201,'instance_id',''), -(1621,201,'cost','0'), -(1622,201,'total_tax','0'), -(1623,201,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1624,202,'_product_id','306'), -(1625,202,'_variation_id','651'), -(1626,202,'_qty','1'), -(1627,202,'_tax_class',''), -(1628,202,'_line_subtotal','50'), -(1629,202,'_line_subtotal_tax','0'), -(1630,202,'_line_total','50'), -(1631,202,'_line_tax','0'), -(1632,202,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1633,202,'pa_side','long'), -(1634,203,'method_id','flat_rate'), -(1635,203,'instance_id',''), -(1636,203,'cost','12'), -(1637,203,'total_tax','0'), -(1638,203,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1639,204,'_product_id','325'), -(1640,204,'_variation_id','0'), -(1641,204,'_qty','1'), -(1642,204,'_tax_class',''), -(1643,204,'_line_subtotal','35'), -(1644,204,'_line_subtotal_tax','0'), -(1645,204,'_line_total','35'), -(1646,204,'_line_tax','0'), -(1647,204,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1648,205,'_product_id','554'), -(1649,205,'_variation_id','555'), -(1650,205,'_qty','1'), -(1651,205,'_tax_class',''), -(1652,205,'_line_subtotal','55'), -(1653,205,'_line_subtotal_tax','0'), -(1654,205,'_line_total','55'), -(1655,205,'_line_tax','0'), -(1656,205,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1657,205,'pa_side','pair'), -(1658,206,'_product_id','435'), -(1659,206,'_variation_id','0'), -(1660,206,'_qty','1'), -(1661,206,'_tax_class',''), -(1662,206,'_line_subtotal','35'), -(1663,206,'_line_subtotal_tax','0'), -(1664,206,'_line_total','35'), -(1665,206,'_line_tax','0'), -(1666,206,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1667,207,'_product_id','521'), -(1668,207,'_variation_id','523'), -(1669,207,'_qty','1'), -(1670,207,'_tax_class',''), -(1671,207,'_line_subtotal','60'), -(1672,207,'_line_subtotal_tax','0'), -(1673,207,'_line_total','60'), -(1674,207,'_line_tax','0'), -(1675,207,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1676,207,'pa_stone','tiger-eye'), -(1677,208,'_product_id','251'), -(1678,208,'_variation_id','0'), -(1679,208,'_qty','1'), -(1680,208,'_tax_class',''), -(1681,208,'_line_subtotal','65'), -(1682,208,'_line_subtotal_tax','0'), -(1683,208,'_line_total','65'), -(1684,208,'_line_tax','0'), -(1685,208,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1686,209,'method_id','mondial_relay_point_relais'), -(1687,209,'instance_id',''), -(1688,209,'cost','0'), -(1689,209,'total_tax','0'), -(1690,209,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1691,210,'_product_id','554'), -(1692,210,'_variation_id','555'), -(1693,210,'_qty','1'), -(1694,210,'_tax_class',''), -(1695,210,'_line_subtotal','55'), -(1696,210,'_line_subtotal_tax','0'), -(1697,210,'_line_total','55'), -(1698,210,'_line_tax','0'), -(1699,210,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1700,210,'pa_side','pair'), -(1701,211,'method_id','mondial_relay_point_relais'), -(1702,211,'instance_id',''), -(1703,211,'cost','0'), -(1704,211,'total_tax','0'), -(1705,211,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1706,212,'_product_id','335'), -(1707,212,'_variation_id','0'), -(1708,212,'_qty','1'), -(1709,212,'_tax_class',''), -(1710,212,'_line_subtotal','40'), -(1711,212,'_line_subtotal_tax','0'), -(1712,212,'_line_total','40'), -(1713,212,'_line_tax','0'), -(1714,212,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1715,213,'method_id','mondial_relay_point_relais'), -(1716,213,'instance_id',''), -(1717,213,'cost','3'), -(1718,213,'total_tax','0'), -(1719,213,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1720,214,'_product_id','331'), -(1721,214,'_variation_id','0'), -(1722,214,'_qty','1'), -(1723,214,'_tax_class',''), -(1724,214,'_line_subtotal','35'), -(1725,214,'_line_subtotal_tax','0'), -(1726,214,'_line_total','35'), -(1727,214,'_line_tax','0'), -(1728,214,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1729,215,'method_id','mondial_relay_point_relais'), -(1730,215,'instance_id',''), -(1731,215,'cost','3'), -(1732,215,'total_tax','0'), -(1733,215,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1734,216,'_product_id','202'), -(1735,216,'_variation_id','638'), -(1736,216,'_qty','1'), -(1737,216,'_tax_class',''), -(1738,216,'_line_subtotal','85'), -(1739,216,'_line_subtotal_tax','0'), -(1740,216,'_line_total','85'), -(1741,216,'_line_tax','0'), -(1742,216,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1743,216,'pa_side','pair'), -(1744,217,'_product_id','306'), -(1745,217,'_variation_id','652'), -(1746,217,'_qty','1'), -(1747,217,'_tax_class',''), -(1748,217,'_line_subtotal','70'), -(1749,217,'_line_subtotal_tax','0'), -(1750,217,'_line_total','70'), -(1751,217,'_line_tax','0'), -(1752,217,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1753,217,'pa_side','pair'), -(1754,218,'method_id','mondial_relay_point_relais'), -(1755,218,'instance_id',''), -(1756,218,'cost','0'), -(1757,218,'total_tax','0'), -(1758,218,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1759,219,'_product_id','291'), -(1760,219,'_variation_id','649'), -(1761,219,'_qty','1'), -(1762,219,'_tax_class',''), -(1763,219,'_line_subtotal','70'), -(1764,219,'_line_subtotal_tax','0'), -(1765,219,'_line_total','70'), -(1766,219,'_line_tax','0'), -(1767,219,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1768,219,'pa_side','pair'), -(1769,220,'method_id','mondial_relay_point_relais'), -(1770,220,'instance_id',''), -(1771,220,'cost','0'), -(1772,220,'total_tax','0'), -(1773,220,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1774,221,'_product_id','435'), -(1775,221,'_variation_id','0'), -(1776,221,'_qty','1'), -(1777,221,'_tax_class',''), -(1778,221,'_line_subtotal','35'), -(1779,221,'_line_subtotal_tax','0'), -(1780,221,'_line_total','35'), -(1781,221,'_line_tax','0'), -(1782,221,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1783,222,'method_id','mondial_relay_point_relais'), -(1784,222,'instance_id',''), -(1785,222,'cost','3'), -(1786,222,'total_tax','0'), -(1787,222,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1788,223,'_product_id','435'), -(1789,223,'_variation_id','0'), -(1790,223,'_qty','1'), -(1791,223,'_tax_class',''), -(1792,223,'_line_subtotal','35'), -(1793,223,'_line_subtotal_tax','0'), -(1794,223,'_line_total','35'), -(1795,223,'_line_tax','0'), -(1796,223,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1797,224,'method_id','mondial_relay_point_relais'), -(1798,224,'instance_id',''), -(1799,224,'cost','3'), -(1800,224,'total_tax','0'), -(1801,224,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1802,225,'_product_id','133'), -(1803,225,'_variation_id','135'), -(1804,225,'_qty','1'), -(1805,225,'_tax_class',''), -(1806,225,'_line_subtotal','150'), -(1807,225,'_line_subtotal_tax','0'), -(1808,225,'_line_total','150'), -(1809,225,'_line_tax','0'), -(1810,225,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1811,225,'pa_size','52'), -(1812,226,'method_id','mondial_relay_point_relais'), -(1813,226,'instance_id',''), -(1814,226,'cost','0'), -(1815,226,'total_tax','0'), -(1816,226,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1817,227,'_product_id','430'), -(1818,227,'_variation_id','845'), -(1819,227,'_qty','1'), -(1820,227,'_tax_class',''), -(1821,227,'_line_subtotal','45'), -(1822,227,'_line_subtotal_tax','0'), -(1823,227,'_line_total','45'), -(1824,227,'_line_tax','0'), -(1825,227,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1826,227,'pa_stone','lapis-lazuli'), -(1827,228,'method_id','mondial_relay_point_relais'), -(1828,228,'instance_id',''), -(1829,228,'cost','3'), -(1830,228,'total_tax','0'), -(1831,228,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1832,229,'_product_id','271'), -(1833,229,'_variation_id','0'), -(1834,229,'_qty','1'), -(1835,229,'_tax_class',''), -(1836,229,'_line_subtotal','95'), -(1837,229,'_line_subtotal_tax','0'), -(1838,229,'_line_total','95'), -(1839,229,'_line_tax','0'), -(1840,229,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1841,230,'method_id','mondial_relay_point_relais'), -(1842,230,'instance_id',''), -(1843,230,'cost','0'), -(1844,230,'total_tax','0'), -(1845,230,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1846,231,'_product_id','271'), -(1847,231,'_variation_id','0'), -(1848,231,'_qty','1'), -(1849,231,'_tax_class',''), -(1850,231,'_line_subtotal','95'), -(1851,231,'_line_subtotal_tax','0'), -(1852,231,'_line_total','95'), -(1853,231,'_line_tax','0'), -(1854,231,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1855,232,'method_id','mondial_relay_point_relais'), -(1856,232,'instance_id',''), -(1857,232,'cost','0'), -(1858,232,'total_tax','0'), -(1859,232,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1860,233,'_product_id','168'), -(1861,233,'_variation_id','200'), -(1862,233,'_qty','1'), -(1863,233,'_tax_class',''), -(1864,233,'_line_subtotal','150'), -(1865,233,'_line_subtotal_tax','0'), -(1866,233,'_line_total','150'), -(1867,233,'_line_tax','0'), -(1868,233,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1869,233,'pa_stone','malachite'), -(1870,234,'method_id','mondial_relay_point_relais'), -(1871,234,'instance_id',''), -(1872,234,'cost','0'), -(1873,234,'total_tax','0'), -(1874,234,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1875,235,'_product_id','274'), -(1876,235,'_variation_id','0'), -(1877,235,'_qty','1'), -(1878,235,'_tax_class',''), -(1879,235,'_line_subtotal','95'), -(1880,235,'_line_subtotal_tax','0'), -(1881,235,'_line_total','95'), -(1882,235,'_line_tax','0'), -(1883,235,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1884,236,'method_id','mondial_relay_point_relais'), -(1885,236,'instance_id',''), -(1886,236,'cost','0'), -(1887,236,'total_tax','0'), -(1888,236,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1889,237,'_product_id','168'), -(1890,237,'_variation_id','200'), -(1891,237,'_qty','1'), -(1892,237,'_tax_class',''), -(1893,237,'_line_subtotal','150'), -(1894,237,'_line_subtotal_tax','0'), -(1895,237,'_line_total','150'), -(1896,237,'_line_tax','0'), -(1897,237,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1898,237,'pa_stone','malachite'), -(1899,238,'method_id','mondial_relay_point_relais'), -(1900,238,'instance_id',''), -(1901,238,'cost','0'), -(1902,238,'total_tax','0'), -(1903,238,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1904,239,'_product_id','168'), -(1905,239,'_variation_id','200'), -(1906,239,'_qty','1'), -(1907,239,'_tax_class',''), -(1908,239,'_line_subtotal','150'), -(1909,239,'_line_subtotal_tax','0'), -(1910,239,'_line_total','150'), -(1911,239,'_line_tax','0'), -(1912,239,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1913,239,'pa_stone','malachite'), -(1914,240,'_product_id','447'), -(1915,240,'_variation_id','0'), -(1916,240,'_qty','1'), -(1917,240,'_tax_class',''), -(1918,240,'_line_subtotal','40'), -(1919,240,'_line_subtotal_tax','0'), -(1920,240,'_line_total','40'), -(1921,240,'_line_tax','0'), -(1922,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1923,241,'method_id','mondial_relay_point_relais'), -(1924,241,'instance_id',''), -(1925,241,'cost','0'), -(1926,241,'total_tax','0'), -(1927,241,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1928,242,'_product_id','342'), -(1929,242,'_variation_id','560'), -(1930,242,'_qty','1'), -(1931,242,'_tax_class',''), -(1932,242,'_line_subtotal','58'), -(1933,242,'_line_subtotal_tax','0'), -(1934,242,'_line_total','58'), -(1935,242,'_line_tax','0'), -(1936,242,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1937,242,'pa_side','all'), -(1938,243,'_product_id','433'), -(1939,243,'_variation_id','478'), -(1940,243,'_qty','1'), -(1941,243,'_tax_class',''), -(1942,243,'_line_subtotal','48'), -(1943,243,'_line_subtotal_tax','0'), -(1944,243,'_line_total','48'), -(1945,243,'_line_tax','0'), -(1946,243,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1947,243,'pa_stone','lapis-lazuli'), -(1948,244,'method_id','mondial_relay_point_relais'), -(1949,244,'instance_id',''), -(1950,244,'cost','0'), -(1951,244,'total_tax','0'), -(1952,244,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1953,245,'_product_id','328'), -(1954,245,'_variation_id','0'), -(1955,245,'_qty','1'), -(1956,245,'_tax_class',''), -(1957,245,'_line_subtotal','40'), -(1958,245,'_line_subtotal_tax','0'), -(1959,245,'_line_total','40'), -(1960,245,'_line_tax','0'), -(1961,245,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1962,246,'method_id','mondial_relay_point_relais'), -(1963,246,'instance_id',''), -(1964,246,'cost','3'), -(1965,246,'total_tax','0'), -(1966,246,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1967,247,'_product_id','328'), -(1968,247,'_variation_id','0'), -(1969,247,'_qty','1'), -(1970,247,'_tax_class',''), -(1971,247,'_line_subtotal','40'), -(1972,247,'_line_subtotal_tax','0'), -(1973,247,'_line_total','40'), -(1974,247,'_line_tax','0'), -(1975,247,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1976,248,'method_id','mondial_relay_point_relais'), -(1977,248,'instance_id',''), -(1978,248,'cost','3'), -(1979,248,'total_tax','0'), -(1980,248,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1981,249,'_product_id','625'), -(1982,249,'_variation_id','633'), -(1983,249,'_qty','1'), -(1984,249,'_tax_class',''), -(1985,249,'_line_subtotal','65'), -(1986,249,'_line_subtotal_tax','0'), -(1987,249,'_line_total','65'), -(1988,249,'_line_tax','0'), -(1989,249,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1990,249,'pa_size','64'), -(1991,250,'method_id','mondial_relay_point_relais'), -(1992,250,'instance_id',''), -(1993,250,'cost','0'), -(1994,250,'total_tax','0'), -(1995,250,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1996,251,'_product_id','318'), -(1997,251,'_variation_id','0'), -(1998,251,'_qty','1'), -(1999,251,'_tax_class',''), -(2000,251,'_line_subtotal','40'), -(2001,251,'_line_subtotal_tax','0'), -(2002,251,'_line_total','40'), -(2003,251,'_line_tax','0'), -(2004,251,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2005,252,'method_id','mondial_relay_point_relais'), -(2006,252,'instance_id',''), -(2007,252,'cost','3'), -(2008,252,'total_tax','0'), -(2009,252,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2010,253,'_product_id','490'), -(2011,253,'_variation_id','494'), -(2012,253,'_qty','1'), -(2013,253,'_tax_class',''), -(2014,253,'_line_subtotal','50'), -(2015,253,'_line_subtotal_tax','0'), -(2016,253,'_line_total','50'), -(2017,253,'_line_tax','0'), -(2018,253,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2019,253,'pa_side','pair'), -(2020,254,'_product_id','342'), -(2021,254,'_variation_id','563'), -(2022,254,'_qty','2'), -(2023,254,'_tax_class',''), -(2024,254,'_line_subtotal','60'), -(2025,254,'_line_subtotal_tax','0'), -(2026,254,'_line_total','60'), -(2027,254,'_line_tax','0'), -(2028,254,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2029,254,'pa_side','short'), -(2030,255,'method_id','mondial_relay_point_relais'), -(2031,255,'instance_id',''), -(2032,255,'cost','0'), -(2033,255,'total_tax','0'), -(2034,255,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2035,256,'_product_id','342'), -(2036,256,'_variation_id','563'), -(2037,256,'_qty','2'), -(2038,256,'_tax_class',''), -(2039,256,'_line_subtotal','60'), -(2040,256,'_line_subtotal_tax','0'), -(2041,256,'_line_total','60'), -(2042,256,'_line_tax','0'), -(2043,256,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2044,256,'pa_side','short'), -(2045,257,'method_id','mondial_relay_point_relais'), -(2046,257,'instance_id',''), -(2047,257,'cost','0'), -(2048,257,'total_tax','0'), -(2049,257,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2050,258,'_product_id','342'), -(2051,258,'_variation_id','563'), -(2052,258,'_qty','2'), -(2053,258,'_tax_class',''), -(2054,258,'_line_subtotal','60'), -(2055,258,'_line_subtotal_tax','0'), -(2056,258,'_line_total','60'), -(2057,258,'_line_tax','0'), -(2058,258,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2059,258,'pa_side','short'), -(2060,259,'method_id','mondial_relay_point_relais'), -(2061,259,'instance_id',''), -(2062,259,'cost','0'), -(2063,259,'total_tax','0'), -(2064,259,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2065,260,'_product_id','342'), -(2066,260,'_variation_id','563'), -(2067,260,'_qty','2'), -(2068,260,'_tax_class',''), -(2069,260,'_line_subtotal','60'), -(2070,260,'_line_subtotal_tax','0'), -(2071,260,'_line_total','60'), -(2072,260,'_line_tax','0'), -(2073,260,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2074,260,'pa_side','short'), -(2075,261,'method_id','mondial_relay_point_relais'), -(2076,261,'instance_id',''), -(2077,261,'cost','0'), -(2078,261,'total_tax','0'), -(2079,261,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2080,262,'_product_id','285'), -(2081,262,'_variation_id','642'), -(2082,262,'_qty','1'), -(2083,262,'_tax_class',''), -(2084,262,'_line_subtotal','80'), -(2085,262,'_line_subtotal_tax','0'), -(2086,262,'_line_total','80'), -(2087,262,'_line_tax','0'), -(2088,262,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2089,262,'pa_side','pair'), -(2090,263,'method_id','mondial_relay_point_relais'), -(2091,263,'instance_id',''), -(2092,263,'cost','0'), -(2093,263,'total_tax','0'), -(2094,263,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2095,264,'_product_id','447'), -(2096,264,'_variation_id','0'), -(2097,264,'_qty','1'), -(2098,264,'_tax_class',''), -(2099,264,'_line_subtotal','45'), -(2100,264,'_line_subtotal_tax','0'), -(2101,264,'_line_total','45'), -(2102,264,'_line_tax','0'), -(2103,264,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2104,265,'_product_id','435'), -(2105,265,'_variation_id','0'), -(2106,265,'_qty','1'), -(2107,265,'_tax_class',''), -(2108,265,'_line_subtotal','40'), -(2109,265,'_line_subtotal_tax','0'), -(2110,265,'_line_total','40'), -(2111,265,'_line_tax','0'), -(2112,265,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2113,266,'_product_id','328'), -(2114,266,'_variation_id','0'), -(2115,266,'_qty','1'), -(2116,266,'_tax_class',''), -(2117,266,'_line_subtotal','45'), -(2118,266,'_line_subtotal_tax','0'), -(2119,266,'_line_total','45'), -(2120,266,'_line_tax','0'), -(2121,266,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2122,267,'method_id','mondial_relay_point_relais'), -(2123,267,'instance_id',''), -(2124,267,'cost','0'), -(2125,267,'total_tax','0'), -(2126,267,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2142,270,'_product_id','447'), -(2143,270,'_variation_id','0'), -(2144,270,'_qty','1'), -(2145,270,'_tax_class',''), -(2146,270,'_line_subtotal','45'), -(2147,270,'_line_subtotal_tax','0'), -(2148,270,'_line_total','45'), -(2149,270,'_line_tax','0'), -(2150,270,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2151,271,'_product_id','202'), -(2152,271,'_variation_id','638'), -(2153,271,'_qty','1'), -(2154,271,'_tax_class',''), -(2155,271,'_line_subtotal','85'), -(2156,271,'_line_subtotal_tax','0'), -(2157,271,'_line_total','85'), -(2158,271,'_line_tax','0'), -(2159,271,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2160,271,'pa_side','pair'), -(2161,272,'method_id','mondial_relay_point_relais'), -(2162,272,'instance_id',''), -(2163,272,'cost','0'), -(2164,272,'total_tax','0'), -(2165,272,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2273,287,'_product_id','1004'), -(2274,287,'_variation_id','1005'), -(2275,287,'_qty','1'), -(2276,287,'_tax_class',''), -(2277,287,'_line_subtotal','70'), -(2278,287,'_line_subtotal_tax','0'), -(2279,287,'_line_total','70'), -(2280,287,'_line_tax','0'), -(2281,287,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2282,287,'pa_side','pair'), -(2283,288,'_product_id','202'), -(2284,288,'_variation_id','638'), -(2285,288,'_qty','1'), -(2286,288,'_tax_class',''), -(2287,288,'_line_subtotal','85'), -(2288,288,'_line_subtotal_tax','0'), -(2289,288,'_line_total','85'), -(2290,288,'_line_tax','0'), -(2291,288,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2292,288,'pa_side','pair'), -(2293,289,'method_id','mondial_relay_point_relais'), -(2294,289,'instance_id',''), -(2295,289,'cost','0'), -(2296,289,'total_tax','0'), -(2297,289,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2719,343,'_product_id','554'), -(2720,343,'_variation_id','555'), -(2721,343,'_qty','1'), -(2722,343,'_tax_class',''), -(2723,343,'_line_subtotal','65'), -(2724,343,'_line_subtotal_tax','0'), -(2725,343,'_line_total','65'), -(2726,343,'_line_tax','0'), -(2727,343,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2728,343,'pa_side','pair'), -(2729,344,'_product_id','318'), -(2730,344,'_variation_id','0'), -(2731,344,'_qty','1'), -(2732,344,'_tax_class',''), -(2733,344,'_line_subtotal','45'), -(2734,344,'_line_subtotal_tax','0'), -(2735,344,'_line_total','45'), -(2736,344,'_line_tax','0'), -(2737,344,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2738,345,'method_id','mondial_relay_point_relais'), -(2739,345,'instance_id',''), -(2740,345,'cost','0'), -(2741,345,'total_tax','0'), -(2742,345,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2743,346,'_product_id','1467'), -(2744,346,'_variation_id','1468'), -(2745,346,'_qty','1'), -(2746,346,'_tax_class',''), -(2747,346,'_line_subtotal','120'), -(2748,346,'_line_subtotal_tax','0'), -(2749,346,'_line_total','120'), -(2750,346,'_line_tax','0'), -(2751,346,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2752,346,'pa_size','50'), -(2753,347,'method_id','mondial_relay_point_relais'), -(2754,347,'instance_id',''), -(2755,347,'cost','0'), -(2756,347,'total_tax','0'), -(2757,347,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2758,348,'_product_id','213'), -(2759,348,'_variation_id','570'), -(2760,348,'_qty','1'), -(2761,348,'_tax_class',''), -(2762,348,'_line_subtotal','75'), -(2763,348,'_line_subtotal_tax','0'), -(2764,348,'_line_total','75'), -(2765,348,'_line_tax','0'), -(2766,348,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2767,348,'pa_side','pair'), -(2768,349,'method_id','mondial_relay_point_relais'), -(2769,349,'instance_id',''), -(2770,349,'cost','0'), -(2771,349,'total_tax','0'), -(2772,349,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2773,350,'_product_id','342'), -(2774,350,'_variation_id','560'), -(2775,350,'_qty','1'), -(2776,350,'_tax_class',''), -(2777,350,'_line_subtotal','55'), -(2778,350,'_line_subtotal_tax','0'), -(2779,350,'_line_total','55'), -(2780,350,'_line_tax','0'), -(2781,350,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2782,350,'pa_side','all'), -(2783,351,'method_id','mondial_relay_point_relais'), -(2784,351,'instance_id',''), -(2785,351,'cost','0'), -(2786,351,'total_tax','0'), -(2787,351,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2788,352,'_product_id','202'), -(2789,352,'_variation_id','638'), -(2790,352,'_qty','1'), -(2791,352,'_tax_class',''), -(2792,352,'_line_subtotal','85'), -(2793,352,'_line_subtotal_tax','0'), -(2794,352,'_line_total','85'), -(2795,352,'_line_tax','0'), -(2796,352,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2797,352,'pa_side','pair'), -(2798,353,'method_id','mondial_relay_point_relais'), -(2799,353,'instance_id',''), -(2800,353,'cost','0'), -(2801,353,'total_tax','0'), -(2802,353,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2803,354,'_product_id','202'), -(2804,354,'_variation_id','638'), -(2805,354,'_qty','1'), -(2806,354,'_tax_class',''), -(2807,354,'_line_subtotal','85'), -(2808,354,'_line_subtotal_tax','0'), -(2809,354,'_line_total','85'), -(2810,354,'_line_tax','0'), -(2811,354,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2812,354,'pa_side','pair'), -(2813,355,'method_id','mondial_relay_point_relais'), -(2814,355,'instance_id',''), -(2815,355,'cost','0'), -(2816,355,'total_tax','0'), -(2817,355,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2818,356,'_product_id','274'), -(2819,356,'_variation_id','0'), -(2820,356,'_qty','1'), -(2821,356,'_tax_class',''), -(2822,356,'_line_subtotal','120'), -(2823,356,'_line_subtotal_tax','0'), -(2824,356,'_line_total','120'), -(2825,356,'_line_tax','0'), -(2826,356,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2827,357,'method_id','mondial_relay_point_relais'), -(2828,357,'instance_id',''), -(2829,357,'cost','0'), -(2830,357,'total_tax','0'), -(2831,357,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2832,358,'_product_id','306'), -(2833,358,'_variation_id','651'), -(2834,358,'_qty','1'), -(2835,358,'_tax_class',''), -(2836,358,'_line_subtotal','50'), -(2837,358,'_line_subtotal_tax','0'), -(2838,358,'_line_total','50'), -(2839,358,'_line_tax','0'), -(2840,358,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2841,358,'pa_side','long'), -(2842,359,'_product_id','306'), -(2843,359,'_variation_id','653'), -(2844,359,'_qty','1'), -(2845,359,'_tax_class',''), -(2846,359,'_line_subtotal','48'), -(2847,359,'_line_subtotal_tax','0'), -(2848,359,'_line_total','48'), -(2849,359,'_line_tax','0'), -(2850,359,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2851,359,'pa_side','short'), -(2852,360,'_product_id','285'), -(2853,360,'_variation_id','642'), -(2854,360,'_qty','1'), -(2855,360,'_tax_class',''), -(2856,360,'_line_subtotal','85'), -(2857,360,'_line_subtotal_tax','0'), -(2858,360,'_line_total','85'), -(2859,360,'_line_tax','0'), -(2860,360,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2861,360,'pa_side','pair'), -(2862,361,'method_id','free_shipping'), -(2863,361,'instance_id',''), -(2864,361,'cost','0'), -(2865,361,'total_tax','0'), -(2866,361,'taxes','a:1:{s:5:\"total\";a:0:{}}'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_order_items` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_order_items`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_order_items` ( - `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_item_name` text NOT NULL, - `order_item_type` varchar(200) NOT NULL DEFAULT '', - `order_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`order_item_id`), - KEY `order_id` (`order_id`) -) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_order_items` --- - -LOCK TABLES `haikuwp_woocommerce_order_items` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_order_items` VALUES -(136,'Hattari Ear Cuff silver','line_item',861), -(137,'Mondial Relay - Point Relais','shipping',861), -(138,'Hattari Stacked Hoops gold plated - pair','line_item',862), -(139,'Mondial Relay - Point Relais (Free)','shipping',862), -(147,'Tanemaki Bracelet','line_item',866), -(148,'Mondial Relay - Point Relais (Free)','shipping',866), -(149,'Fuyou Bracelet silver','line_item',867), -(150,'Mondial Relay - Point Relais (Free)','shipping',867), -(151,'Tanemaki Bracelet','line_item',868), -(152,'Tanemaki Necklace','line_item',868), -(153,'Mondial Relay - Point Relais (Free)','shipping',868), -(154,'Piasu Earrings - left side','line_item',869), -(155,'Hattari Double Hoops - pair','line_item',869), -(156,'Mondial Relay - Point Relais (Free)','shipping',869), -(157,'Mugura Hoops gold plated','line_item',870), -(158,'Mondial Relay - Point Relais (Free)','shipping',870), -(159,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',871), -(160,'Kagun Trio Earrings - short','line_item',871), -(161,'Kagun Trio Earrings - all','line_item',871), -(162,'Mondial Relay - Point Relais (Free)','shipping',871), -(163,'Ikkan Necklace','line_item',872), -(164,'Mondial Relay - Point Relais (Free)','shipping',872), -(165,'Tamanori Hoops silver - pair','line_item',873), -(166,'BoroBoro Long Earrings silver - pair','line_item',873), -(167,'Fuyou Necklace','line_item',873), -(168,'Mondial Relay - Point Relais (Free)','shipping',873), -(173,'Hattari Stacked Hoops gold plated - pair','line_item',876), -(174,'Mondial Relay - Point Relais (Free)','shipping',876), -(175,'Hattari Stacked Hoops gold plated - pair','line_item',877), -(176,'Mondial Relay - Point Relais (Free)','shipping',877), -(177,'Hattari Stacked Hoops gold plated - pair','line_item',878), -(178,'Hattari Stacked Hoops silver - pair','line_item',878), -(179,'Mondial Relay - Point Relais (Free)','shipping',878), -(180,'Tamanori Hoops gold plated - pair','line_item',879), -(181,'Mondial Relay - Point Relais (Free)','shipping',879), -(182,'Hattari Ear Cuff gold plated','line_item',880), -(183,'Kara Hoops gold plated - pair','line_item',880), -(184,'Mondial Relay - Point Relais (Free)','shipping',880), -(185,'Tamanori Hoops silver - short','line_item',881), -(186,'UPS Standard','shipping',881), -(193,'Tanemaki Necklace','line_item',884), -(194,'Mondial Relay - Point Relais (Free)','shipping',884), -(195,'Hattari Stacked Hoops gold plated - pair','line_item',885), -(196,'Mondial Relay - Point Relais (Free)','shipping',885), -(197,'Kara Hoops gold plated - pair','line_item',886), -(198,'Hadou Stud Earrings - pair','line_item',886), -(199,'Mondial Relay - Point Relais (Free)','shipping',886), -(200,'Mugura Earrings silver - pair','line_item',887), -(201,'Mondial Relay - Point Relais (Free)','shipping',887), -(202,'Tamanori Hoops silver - long','line_item',888), -(203,'UPS Standard','shipping',888), -(204,'Hadou Ear Cuff silver','line_item',889), -(205,'Kara Hoops silver - pair','line_item',889), -(206,'Kara Ear Cuff silver','line_item',889), -(207,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',889), -(208,'Tanemaki Bracelet','line_item',889), -(209,'Mondial Relay - Point Relais (Free)','shipping',889), -(210,'Kara Hoops silver - pair','line_item',892), -(211,'Mondial Relay - Point Relais (Free)','shipping',892), -(212,'Hattari Ear Cuff gold plated','line_item',893), -(213,'Mondial Relay - Point Relais','shipping',893), -(214,'Hattari Ear Cuff silver','line_item',894), -(215,'Mondial Relay - Point Relais','shipping',894), -(216,'Piasu Earrings - pair','line_item',895), -(217,'Tamanori Hoops silver - pair','line_item',895), -(218,'Mondial Relay - Point Relais (Free)','shipping',895), -(219,'Hattari Double Hoops - pair','line_item',897), -(220,'Mondial Relay - Point Relais (Free)','shipping',897), -(221,'Kara Ear Cuff silver','line_item',898), -(222,'Mondial Relay - Point Relais','shipping',898), -(223,'Kara Ear Cuff silver','line_item',899), -(224,'Mondial Relay - Point Relais','shipping',899), -(225,'Kara Ring - 52','line_item',900), -(226,'Mondial Relay - Point Relais (Free)','shipping',900), -(227,'Rokku Hoop silver - Lapis Lazuli','line_item',901), -(228,'Mondial Relay - Point Relais','shipping',901), -(229,'Tanemaki Necklace','line_item',902), -(230,'Mondial Relay - Point Relais (Free)','shipping',902), -(231,'Tanemaki Necklace','line_item',903), -(232,'Mondial Relay - Point Relais (Free)','shipping',903), -(233,'Rokku Ring - Malachite','line_item',904), -(234,'Mondial Relay - Point Relais (Free)','shipping',904), -(235,'Fuyou Necklace','line_item',905), -(236,'Mondial Relay - Point Relais (Free)','shipping',905), -(237,'Rokku Ring - Malachite','line_item',906), -(238,'Mondial Relay - Point Relais (Free)','shipping',906), -(239,'Rokku Ring - Malachite','line_item',907), -(240,'Kara Ear Cuff gold plated','line_item',907), -(241,'Mondial Relay - Point Relais (Free)','shipping',907), -(242,'Kagun Trio Earrings - all','line_item',908), -(243,'Rokku Hoop gold plated - Lapis Lazuli','line_item',908), -(244,'Mondial Relay - Point Relais (Free)','shipping',908), -(245,'Hadou Ear Cuff gold plated','line_item',909), -(246,'Mondial Relay - Point Relais','shipping',909), -(247,'Hadou Ear Cuff gold plated','line_item',910), -(248,'Mondial Relay - Point Relais','shipping',910), -(249,'BoroBoro Bead Ring silver - 64','line_item',911), -(250,'Mondial Relay - Point Relais (Free)','shipping',911), -(251,'Fuyou Hoop','line_item',912), -(252,'Mondial Relay - Point Relais','shipping',912), -(253,'Hadou Stud Earrings - pair','line_item',919), -(254,'Kagun Trio Earrings - short','line_item',919), -(255,'Mondial Relay - Point Relais (Free)','shipping',919), -(256,'Kagun Trio Earrings - short','line_item',920), -(257,'Mondial Relay - Point Relais (Free)','shipping',920), -(258,'Kagun Trio Earrings - short','line_item',921), -(259,'Mondial Relay - Point Relais (Free)','shipping',921), -(260,'Kagun Trio Earrings - short','line_item',922), -(261,'Mondial Relay - Point Relais (Free)','shipping',922), -(262,'Hattari Stacked Hoops silver - pair','line_item',923), -(263,'Mondial Relay - Point Relais (Free)','shipping',923), -(264,'Kara Ear Cuff gold plated','line_item',924), -(265,'Kara Ear Cuff silver','line_item',924), -(266,'Hadou Ear Cuff gold plated','line_item',924), -(267,'Mondial Relay - Point Relais (Free)','shipping',924), -(270,'Kara Ear Cuff gold plated','line_item',997), -(271,'Piasu Earrings - pair','line_item',997), -(272,'Mondial Relay - Point Relais (Free)','shipping',997), -(287,'Piasu Open Hoops - pair','line_item',1013), -(288,'Piasu Earrings - pair','line_item',1013), -(289,'Mondial Relay - Point Relais (Free)','shipping',1013), -(343,'Kara Hoops silver - pair','line_item',1443), -(344,'Fuyou Hoop','line_item',1443), -(345,'Mondial Relay - Point Relais (Free)','shipping',1443), -(346,'Piasu Ring - 50','line_item',1480), -(347,'Mondial Relay - Point Relais (Free)','shipping',1480), -(348,'BoroBoro Long Earrings gold plated - pair','line_item',1486), -(349,'Mondial Relay - Point Relais (Free)','shipping',1486), -(350,'Mugura Trio Stud Earrings - all','line_item',1487), -(351,'Mondial Relay - Point Relais (Free)','shipping',1487), -(352,'Piasu Earrings - pair','line_item',1488), -(353,'Mondial Relay - Point Relais (Free)','shipping',1488), -(354,'Piasu Earrings - pair','line_item',1489), -(355,'Mondial Relay - Point Relais (Free)','shipping',1489), -(356,'Fuyou Necklace','line_item',1490), -(357,'Mondial Relay - Point Relais (Free)','shipping',1490), -(358,'Tamanori Hoops silver - long','line_item',1496), -(359,'Tamanori Hoops silver - short','line_item',1496), -(360,'Hattari Stacked Hoops silver - pair','line_item',1496), -(361,'UPS Standard (Free)','shipping',1496); -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_payment_tokenmeta` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokenmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_payment_tokenmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `payment_token_id` bigint(20) unsigned NOT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `payment_token_id` (`payment_token_id`), - KEY `meta_key` (`meta_key`(32)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_payment_tokenmeta` --- - -LOCK TABLES `haikuwp_woocommerce_payment_tokenmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_payment_tokens` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokens`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_payment_tokens` ( - `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `gateway_id` varchar(200) NOT NULL, - `token` text NOT NULL, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `type` varchar(200) NOT NULL, - `is_default` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`token_id`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_payment_tokens` --- - -LOCK TABLES `haikuwp_woocommerce_payment_tokens` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_sessions` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_sessions` ( - `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `session_key` char(32) NOT NULL, - `session_value` longtext NOT NULL, - `session_expiry` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`session_id`), - UNIQUE KEY `session_key` (`session_key`), - KEY `session_expiry` (`session_expiry`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_sessions` --- - -LOCK TABLES `haikuwp_woocommerce_sessions` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_sessions` VALUES -(1,'1','a:1:{s:8:\"customer\";s:780:\"a:28:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2025-05-09T18:07:27+02:00\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1762331482), -(3,'t_085683fe52ef8fa8c3007c9053ea6d','a:6:{s:22:\"shipping_for_package_0\";s:498:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_507c07ec6b3820b3a50d7e83f3249ca7\";s:5:\"rates\";a:1:{s:28:\"mondial_relay_point_relais:6\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:28:\"mondial_relay_point_relais:6\";s:9:\"method_id\";s:26:\"mondial_relay_point_relais\";s:11:\"instance_id\";i:6;s:5:\"label\";s:35:\"Mondial Relay - Point Relais (Free)\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:0:{}}}}\";s:25:\"previous_shipping_methods\";s:56:\"a:1:{i:0;a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}}\";s:23:\"chosen_shipping_methods\";s:46:\"a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:11:\"cart_totals\";s:396:\"a:15:{s:8:\"subtotal\";s:3:\"110\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:3:\"110\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"110.00\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:900:\"a:2:{s:32:\"894634acbb9336205a91a28d9342652b\";a:11:{s:3:\"key\";s:32:\"894634acbb9336205a91a28d9342652b\";s:10:\"product_id\";i:490;s:12:\"variation_id\";i:494;s:9:\"variation\";a:1:{s:17:\"attribute_pa_side\";s:4:\"pair\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"82680747b417378019b5606db3552912\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:50;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:50;s:8:\"line_tax\";d:0;}s:32:\"3d1eeca17c632f8346b8903ebf4e5946\";a:11:{s:3:\"key\";s:32:\"3d1eeca17c632f8346b8903ebf4e5946\";s:10:\"product_id\";i:521;s:12:\"variation_id\";i:926;s:9:\"variation\";a:1:{s:18:\"attribute_pa_stone\";s:10:\"honey-jade\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"c4d271f11c97f5899e933a32a35e4964\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:60;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:60;s:8:\"line_tax\";d:0;}}\";}',1762205711), -(5,'t_36fdaa1427ebe30d1a963707eb38c9','a:1:{s:8:\"customer\";s:945:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:9:\"Charlotte\";s:9:\"last_name\";s:6:\"Chabin\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:12:\"+41799475008\";s:5:\"email\";s:26:\"charlotte.chabin@gmail.com\";s:7:\"address\";s:24:\"Chemin de Pierrefleur 88\";s:9:\"address_1\";s:24:\"Chemin de Pierrefleur 88\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Lausanne\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:4:\"1004\";s:7:\"country\";s:2:\"CH\";s:19:\"shipping_first_name\";s:9:\"Charlotte\";s:18:\"shipping_last_name\";s:6:\"Chabin\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:12:\"+41799475008\";s:16:\"shipping_address\";s:24:\"Chemin de Pierrefleur 88\";s:18:\"shipping_address_1\";s:24:\"Chemin de Pierrefleur 88\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:8:\"Lausanne\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:4:\"1004\";s:16:\"shipping_country\";s:2:\"CH\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1762284990); -/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zone_locations` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_locations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zone_locations` ( - `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `zone_id` bigint(20) unsigned NOT NULL, - `location_code` varchar(200) NOT NULL, - `location_type` varchar(40) NOT NULL, - PRIMARY KEY (`location_id`), - KEY `zone_id` (`zone_id`), - KEY `location_type_code` (`location_type`(10),`location_code`(20)) -) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zone_locations` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zone_locations` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zone_locations` VALUES -(1,1,'BE','country'), -(2,1,'FR','country'), -(103,3,'DE','country'), -(104,3,'AT','country'), -(105,3,'ES','country'), -(106,3,'IT','country'), -(107,3,'LU','country'), -(108,3,'NL','country'), -(109,3,'PL','country'), -(110,3,'PT','country'), -(111,2,'AX','country'), -(112,2,'AL','country'), -(113,2,'AD','country'), -(114,2,'BY','country'), -(115,2,'BA','country'), -(116,2,'BG','country'), -(117,2,'HR','country'), -(118,2,'CZ','country'), -(119,2,'DK','country'), -(120,2,'EE','country'), -(121,2,'FO','country'), -(122,2,'FI','country'), -(123,2,'GI','country'), -(124,2,'GR','country'), -(125,2,'HU','country'), -(126,2,'IS','country'), -(127,2,'IE','country'), -(128,2,'LV','country'), -(129,2,'LI','country'), -(130,2,'LT','country'), -(131,2,'MT','country'), -(132,2,'MD','country'), -(133,2,'MC','country'), -(134,2,'ME','country'), -(135,2,'MK','country'), -(136,2,'NO','country'), -(137,2,'RO','country'), -(138,2,'SM','country'), -(139,2,'RS','country'), -(140,2,'SK','country'), -(141,2,'SI','country'), -(142,2,'SJ','country'), -(143,2,'SE','country'), -(144,2,'CH','country'), -(145,2,'TR','country'), -(146,2,'UA','country'), -(147,2,'NA','continent'), -(148,2,'OC','continent'), -(149,2,'SA','continent'), -(150,2,'AF','continent'), -(151,2,'AM','country'), -(152,2,'BD','country'), -(153,2,'BT','country'), -(154,2,'BN','country'), -(155,2,'KH','country'), -(156,2,'CX','country'), -(157,2,'CC','country'), -(158,2,'CY','country'), -(159,2,'GE','country'), -(160,2,'HK','country'), -(161,2,'IN','country'), -(162,2,'ID','country'), -(163,2,'IR','country'), -(164,2,'IQ','country'), -(165,2,'JP','country'), -(166,2,'JO','country'), -(167,2,'KZ','country'), -(168,2,'KG','country'), -(169,2,'LA','country'), -(170,2,'LB','country'), -(171,2,'MO','country'), -(172,2,'MY','country'), -(173,2,'MV','country'), -(174,2,'MN','country'), -(175,2,'MM','country'), -(176,2,'NP','country'), -(177,2,'OM','country'), -(178,2,'PK','country'), -(179,2,'PS','country'), -(180,2,'PH','country'), -(181,2,'SG','country'), -(182,2,'KR','country'), -(183,2,'LK','country'), -(184,2,'SY','country'), -(185,2,'TW','country'), -(186,2,'TJ','country'), -(187,2,'TH','country'), -(188,2,'TL','country'), -(189,2,'TM','country'), -(190,2,'UZ','country'), -(191,2,'VN','country'), -(192,2,'YE','country'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zone_methods` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_methods`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zone_methods` ( - `zone_id` bigint(20) unsigned NOT NULL, - `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `method_id` varchar(200) NOT NULL, - `method_order` bigint(20) unsigned NOT NULL, - `is_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`instance_id`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zone_methods` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zone_methods` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zone_methods` VALUES -(2,4,'ups_standard',2,1), -(3,5,'mondial_relay_point_relais',1,1), -(1,6,'mondial_relay_point_relais',2,1), -(2,7,'flat_rate',3,1), -(2,8,'free_shipping',1,1); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zones` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zones` ( - `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `zone_name` varchar(200) NOT NULL, - `zone_order` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`zone_id`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zones` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zones` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zones` VALUES -(1,'Belgique et France',0), -(2,'Reste',2), -(3,'Pays Mondial Relay',1); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_tax_rate_locations` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rate_locations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_tax_rate_locations` ( - `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `location_code` varchar(200) NOT NULL, - `tax_rate_id` bigint(20) unsigned NOT NULL, - `location_type` varchar(40) NOT NULL, - PRIMARY KEY (`location_id`), - KEY `tax_rate_id` (`tax_rate_id`), - KEY `location_type_code` (`location_type`(10),`location_code`(20)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_tax_rate_locations` --- - -LOCK TABLES `haikuwp_woocommerce_tax_rate_locations` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_tax_rates` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rates`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_tax_rates` ( - `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `tax_rate_country` varchar(2) NOT NULL DEFAULT '', - `tax_rate_state` varchar(200) NOT NULL DEFAULT '', - `tax_rate` varchar(8) NOT NULL DEFAULT '', - `tax_rate_name` varchar(200) NOT NULL DEFAULT '', - `tax_rate_priority` bigint(20) unsigned NOT NULL, - `tax_rate_compound` int(1) NOT NULL DEFAULT 0, - `tax_rate_shipping` int(1) NOT NULL DEFAULT 1, - `tax_rate_order` bigint(20) unsigned NOT NULL, - `tax_rate_class` varchar(200) NOT NULL DEFAULT '', - PRIMARY KEY (`tax_rate_id`), - KEY `tax_rate_country` (`tax_rate_country`), - KEY `tax_rate_state` (`tax_rate_state`(2)), - KEY `tax_rate_class` (`tax_rate_class`(10)), - KEY `tax_rate_priority` (`tax_rate_priority`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_tax_rates` --- - -LOCK TABLES `haikuwp_woocommerce_tax_rates` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpmailsmtp_debug_events` --- - -DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_debug_events`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpmailsmtp_debug_events` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `content` text DEFAULT NULL, - `initiator` text DEFAULT NULL, - `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpmailsmtp_debug_events` --- - -LOCK TABLES `haikuwp_wpmailsmtp_debug_events` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpmailsmtp_debug_events` VALUES -(1,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:49:12'), -(2,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:49:47'), -(3,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:50:39'), -(4,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:18'), -(5,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:42'), -(6,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:54:25'), -(7,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:56:03'), -(8,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:57:48'), -(9,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:31'), -(10,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:50'), -(11,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:55'), -(12,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:00:42'), -(13,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:03:45'), -(14,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:04:09'), -(15,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:06:02'), -(16,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:07:04'), -(17,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:10:01'), -(18,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:14:28'), -(19,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:15:15'), -(20,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:15:34'), -(21,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:20:03'); -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpmailsmtp_tasks_meta` --- - -DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_tasks_meta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpmailsmtp_tasks_meta` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `action` varchar(255) NOT NULL, - `data` longtext NOT NULL, - `date` datetime NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpmailsmtp_tasks_meta` --- - -LOCK TABLES `haikuwp_wpmailsmtp_tasks_meta` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpmailsmtp_tasks_meta` VALUES -(1,'wp_mail_smtp_admin_notifications_update','W10=','2024-11-25 16:49:16'); -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpml_mails` --- - -DROP TABLE IF EXISTS `haikuwp_wpml_mails`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpml_mails` ( - `mail_id` int(11) NOT NULL AUTO_INCREMENT, - `timestamp` timestamp NOT NULL, - `host` varchar(200) NOT NULL DEFAULT '0', - `receiver` varchar(200) NOT NULL DEFAULT '0', - `subject` varchar(200) NOT NULL DEFAULT '0', - `message` text DEFAULT NULL, - `headers` text DEFAULT NULL, - `attachments` varchar(800) NOT NULL DEFAULT '0', - `error` varchar(400) DEFAULT '', - `plugin_version` varchar(200) NOT NULL DEFAULT '0', - PRIMARY KEY (`mail_id`), - FULLTEXT KEY `idx_message` (`message`) -) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpml_mails` --- - -LOCK TABLES `haikuwp_wpml_mails` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpml_mails` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpml_mails` VALUES -(84,'2024-12-12 16:59:06','217.182.132.198','haiku.atelier@gmail.com,\\n contact@gcch.fr','[Haiku Atelier]: New order #880','\n\n\n\n\n\n

You’ve received the following order from christine Saquet Bossu:

\n\n

\n [Order #880] (2024-12-12)

\n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ProductQuantityPrice
\n Hattari Ear Cuff gold plated (#HATTARI-EC-g) \n 1 \n  40,00
\n Kara Hoops gold plated - pair (#KARA-CR-g-pair)
  • \nSide:

    pair

    \n
\n 1 \n  60,00
Subtotal: 100,00
Shipping:Mondial Relay - Point Relais (Free)
Total: 100,00
\n
\n\n\n \n \n \n \n
\n

Billing address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
c.saquetbossu@orange.fr
\n
\n

Shipping address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
\n
\n

Congratulations on the sale.

\nProcess your orders on the go. Get the app.\n\n','Content-Type: text/html,\\nReply-to: christine Saquet Bossu ','',NULL,'1.13.1'); -/*!40000 ALTER TABLE `haikuwp_wpml_mails` ENABLE KEYS */; -UNLOCK TABLES; -commit; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */; - --- Dump completed on 2025-11-03 17:11:54 diff --git a/db/haiku_atelier-2025-12-03-c65939b.sql b/db/haiku_atelier-2025-12-03-c65939b.sql deleted file mode 100644 index 444b3771..00000000 --- a/db/haiku_atelier-2025-12-03-c65939b.sql +++ /dev/null @@ -1,18270 +0,0 @@ -/*M!999999\- enable the sandbox mode */ --- MariaDB dump 10.19-11.8.3-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: haiku_atelier --- ------------------------------------------------------ --- Server version 11.8.3-MariaDB-0+deb13u1 from Debian - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */; - --- --- Table structure for table `haikuwp_actionscheduler_actions` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_actions` ( - `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `hook` varchar(191) NOT NULL, - `status` varchar(20) NOT NULL, - `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', - `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', - `priority` tinyint(3) unsigned NOT NULL DEFAULT 10, - `args` varchar(191) DEFAULT NULL, - `schedule` longtext DEFAULT NULL, - `group_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `attempts` int(11) NOT NULL DEFAULT 0, - `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', - `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', - `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `extended_args` varchar(8000) DEFAULT NULL, - PRIMARY KEY (`action_id`), - KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`), - KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`), - KEY `scheduled_date_gmt` (`scheduled_date_gmt`), - KEY `args` (`args`), - KEY `group_id` (`group_id`), - KEY `last_attempt_gmt` (`last_attempt_gmt`), - KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`), - KEY `claim_id_status_priority_scheduled_date_gmt` (`claim_id`,`status`,`priority`,`scheduled_date_gmt`), - KEY `status_last_attempt_gmt` (`status`,`last_attempt_gmt`), - KEY `status_claim_id` (`status`,`claim_id`) -) ENGINE=InnoDB AUTO_INCREMENT=6813 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_actions` --- - -LOCK TABLES `haikuwp_actionscheduler_actions` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_actions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_actionscheduler_actions` VALUES -(2516,'woocommerce_refresh_order_count_cache','failed','2025-06-18 18:50:55','2025-06-18 20:50:55',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750272655;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750272655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-18 18:51:12','2025-06-18 20:51:12',0,NULL), -(2616,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":183}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(2617,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":566}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(2619,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":565}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(2621,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":567}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), -(3248,'woocommerce_geoip_updater','failed','2025-09-23 07:13:56','2025-09-23 09:13:56',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758611636;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758611636;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-09-23 07:14:01','2025-09-23 09:14:01',230208,NULL), -(3744,'woocommerce_cleanup_logs','failed','2025-09-21 10:15:00','2025-09-21 12:15:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758449700;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758449700;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-21 10:15:00','2025-09-21 12:15:00',227446,NULL), -(3795,'woocommerce_cleanup_logs','failed','2025-09-22 10:15:00','2025-09-22 12:15:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758536100;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758536100;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-22 10:15:00','2025-09-22 12:15:00',228921,NULL), -(3832,'woocommerce_cleanup_logs','failed','2025-09-23 10:15:00','2025-09-23 12:15:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758622500;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758622500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-23 10:15:01','2025-09-23 12:15:01',230397,NULL), -(3862,'woocommerce_geoip_updater','failed','2025-10-08 07:14:01','2025-10-08 09:14:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759907641;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759907641;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-10-08 07:14:06','2025-10-08 09:14:06',252350,NULL), -(3873,'woocommerce_cleanup_logs','failed','2025-09-24 10:15:01','2025-09-24 12:15:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758708901;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758708901;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-24 10:15:01','2025-09-24 12:15:01',231872,NULL), -(3910,'woocommerce_cleanup_logs','failed','2025-09-25 10:15:01','2025-09-25 12:15:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758795301;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758795301;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-25 10:15:01','2025-09-25 12:15:01',233352,NULL), -(3954,'woocommerce_cleanup_logs','failed','2025-09-26 10:15:01','2025-09-26 12:15:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758881701;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758881701;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-26 10:15:02','2025-09-26 12:15:02',234826,NULL), -(3991,'woocommerce_cleanup_logs','failed','2025-09-27 10:15:02','2025-09-27 12:15:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1758968102;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1758968102;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-27 10:15:02','2025-09-27 12:15:02',236300,NULL), -(4028,'woocommerce_cleanup_logs','failed','2025-09-28 10:15:02','2025-09-28 12:15:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759054502;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759054502;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-28 10:15:02','2025-09-28 12:15:02',237782,NULL), -(4113,'woocommerce_cleanup_logs','failed','2025-09-29 10:15:02','2025-09-29 12:15:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759140902;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759140902;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-29 10:15:03','2025-09-29 12:15:03',239257,NULL), -(4150,'woocommerce_cleanup_logs','failed','2025-09-30 10:15:03','2025-09-30 12:15:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759227303;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759227303;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-09-30 10:15:03','2025-09-30 12:15:03',240732,NULL), -(4188,'woocommerce_cleanup_logs','failed','2025-10-01 10:15:03','2025-10-01 12:15:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759313703;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759313703;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-01 10:15:04','2025-10-01 12:15:04',242206,NULL), -(4225,'woocommerce_cleanup_logs','failed','2025-10-02 10:15:04','2025-10-02 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759400104;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759400104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-02 10:15:04','2025-10-02 12:15:04',243683,NULL), -(4264,'woocommerce_cleanup_logs','failed','2025-10-03 10:15:04','2025-10-03 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759486504;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759486504;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-03 10:15:04','2025-10-03 12:15:04',245158,NULL), -(4301,'woocommerce_cleanup_logs','failed','2025-10-04 10:15:04','2025-10-04 12:15:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759572904;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759572904;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-04 10:15:05','2025-10-04 12:15:05',246635,NULL), -(4339,'woocommerce_cleanup_logs','failed','2025-10-05 10:15:05','2025-10-05 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759659305;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759659305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-05 10:15:05','2025-10-05 12:15:05',248110,NULL), -(4376,'woocommerce_cleanup_logs','failed','2025-10-06 10:15:05','2025-10-06 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759745705;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759745705;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-06 10:15:05','2025-10-06 12:15:05',249585,NULL), -(4413,'woocommerce_cleanup_logs','failed','2025-10-07 10:15:05','2025-10-07 12:15:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759832105;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759832105;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-07 10:15:06','2025-10-07 12:15:06',251064,NULL), -(4453,'woocommerce_cleanup_logs','failed','2025-10-08 10:15:06','2025-10-08 12:15:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1759918506;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1759918506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-08 10:15:31','2025-10-08 12:15:31',252540,NULL), -(4482,'woocommerce_geoip_updater','failed','2025-10-23 07:14:06','2025-10-23 09:14:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761203646;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761203646;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-10-23 07:14:11','2025-10-23 09:14:11',274484,NULL), -(4491,'woocommerce_cleanup_logs','failed','2025-10-09 10:15:31','2025-10-09 12:15:31',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760004931;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760004931;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-09 10:16:06','2025-10-09 12:16:06',254016,NULL), -(4536,'woocommerce_cleanup_logs','failed','2025-10-10 10:16:06','2025-10-10 12:16:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760091366;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760091366;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-10 10:16:07','2025-10-10 12:16:07',255490,NULL), -(4573,'woocommerce_cleanup_logs','failed','2025-10-11 10:16:07','2025-10-11 12:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760177767;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760177767;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-11 10:16:07','2025-10-11 12:16:07',256967,NULL), -(4612,'woocommerce_cleanup_logs','failed','2025-10-12 10:16:07','2025-10-12 12:16:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760264167;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760264167;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-12 10:17:07','2025-10-12 12:17:07',258444,NULL), -(4650,'woocommerce_cleanup_logs','failed','2025-10-13 10:17:07','2025-10-13 12:17:07',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760350627;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760350627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-13 10:17:08','2025-10-13 12:17:08',259923,NULL), -(4691,'woocommerce_cleanup_logs','failed','2025-10-14 10:17:08','2025-10-14 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760437028;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760437028;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-14 10:17:08','2025-10-14 12:17:08',261399,NULL), -(4729,'woocommerce_cleanup_logs','failed','2025-10-15 10:17:08','2025-10-15 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760523428;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760523428;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-15 10:17:08','2025-10-15 12:17:08',262876,NULL), -(4766,'woocommerce_cleanup_logs','failed','2025-10-16 10:17:08','2025-10-16 12:17:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760609828;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760609828;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-16 10:17:09','2025-10-16 12:17:09',264351,NULL), -(4803,'woocommerce_cleanup_logs','failed','2025-10-17 10:17:09','2025-10-17 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760696229;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760696229;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-17 10:17:09','2025-10-17 12:17:09',265828,NULL), -(4843,'woocommerce_cleanup_logs','failed','2025-10-18 10:17:09','2025-10-18 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760782629;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760782629;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-18 10:17:09','2025-10-18 12:17:09',267301,NULL), -(4879,'woocommerce_cleanup_logs','failed','2025-10-19 10:17:09','2025-10-19 12:17:09',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760869029;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760869029;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-19 10:17:10','2025-10-19 12:17:10',268776,NULL), -(4918,'woocommerce_cleanup_logs','failed','2025-10-20 10:17:10','2025-10-20 12:17:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1760955430;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1760955430;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-20 10:17:10','2025-10-20 12:17:10',270250,NULL), -(4955,'woocommerce_cleanup_logs','failed','2025-10-21 10:17:10','2025-10-21 12:17:10',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761041830;s:18:\"\0*\0first_timestamp\";i:1757326375;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761041830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-21 10:17:11','2025-10-21 12:17:11',271725,NULL), -(5024,'woocommerce_cleanup_logs','failed','2025-10-22 10:20:11','2025-10-22 12:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761128411;s:18:\"\0*\0first_timestamp\";i:1761128411;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761128411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-22 10:20:11','2025-10-22 12:20:11',273202,NULL), -(5058,'woocommerce_geoip_updater','complete','2025-11-07 07:14:11','2025-11-07 08:14:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762499651;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762499651;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-11-07 07:14:16','2025-11-07 08:14:16',296614,NULL), -(5062,'woocommerce_cleanup_logs','failed','2025-10-23 10:20:11','2025-10-23 12:20:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761214811;s:18:\"\0*\0first_timestamp\";i:1761214811;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761214811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-23 10:20:11','2025-10-23 12:20:11',274678,NULL), -(5100,'woocommerce_cleanup_logs','failed','2025-10-24 10:20:12','2025-10-24 12:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761301212;s:18:\"\0*\0first_timestamp\";i:1761301212;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761301212;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-24 10:21:12','2025-10-24 12:21:12',276154,NULL), -(5138,'woocommerce_cleanup_logs','failed','2025-10-25 10:20:12','2025-10-25 12:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761387612;s:18:\"\0*\0first_timestamp\";i:1761387612;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761387612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-25 10:20:12','2025-10-25 12:20:12',277629,NULL), -(5175,'woocommerce_cleanup_logs','failed','2025-10-26 10:20:12','2025-10-26 11:20:12',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761474012;s:18:\"\0*\0first_timestamp\";i:1761474012;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761474012;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-26 10:20:12','2025-10-26 11:20:12',279104,NULL), -(5212,'woocommerce_cleanup_logs','failed','2025-10-27 10:20:13','2025-10-27 11:20:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761560413;s:18:\"\0*\0first_timestamp\";i:1761560413;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761560413;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-27 10:20:13','2025-10-27 11:20:13',280579,NULL), -(5262,'wp_mail_smtp_summary_report_email','complete','2025-11-04 04:07:13','2025-11-04 05:07:13',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762229233;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762229233;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-11-04 04:07:15','2025-11-04 05:07:15',291993,NULL), -(5268,'woocommerce_cleanup_logs','failed','2025-10-28 10:20:35','2025-10-28 11:20:35',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1761646835;s:18:\"\0*\0first_timestamp\";i:1761646835;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1761646835;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-10-28 10:21:13','2025-10-28 11:21:13',282055,NULL), -(5449,'woocommerce_cleanup_draft_orders','complete','2025-11-02 18:42:14','2025-11-02 19:42:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762108934;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762108934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-02 18:42:14','2025-11-02 19:42:14',289936,NULL), -(5450,'wp_mail_smtp_admin_notifications_update','complete','2025-11-02 18:42:14','2025-11-02 19:42:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762108934;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762108934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-02 18:42:14','2025-11-02 19:42:14',289936,NULL), -(5456,'woocommerce_scheduled_sales','complete','2025-11-02 22:03:15','2025-11-02 23:03:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762120995;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762120995;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-02 22:03:15','2025-11-02 23:03:15',290145,NULL), -(5467,'wc_admin_daily_wrapper','complete','2025-11-03 07:22:15','2025-11-03 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154535;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 07:22:15','2025-11-03 08:22:15',290715,NULL), -(5468,'woocommerce_cleanup_personal_data','complete','2025-11-03 07:22:15','2025-11-03 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154535;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 07:22:15','2025-11-03 08:22:15',290715,NULL), -(5469,'woocommerce_cleanup_sessions','complete','2025-11-03 05:00:00','2025-11-03 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762146000;s:18:\"\0*\0first_timestamp\";i:1762146000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762146000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-03 05:00:15','2025-11-03 06:00:15',290570,NULL), -(5471,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-03 07:22:15','2025-11-03 08:22:15',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154535;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-03 07:22:15','2025-11-03 08:22:15',290715,NULL), -(5472,'woocommerce_refresh_order_count_cache','complete','2025-11-02 19:23:15','2025-11-02 20:23:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762111395;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762111395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-02 19:24:15','2025-11-02 20:24:15',289980,NULL), -(5476,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-03 10:21:15','2025-11-03 11:21:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762165275;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762165275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 10:21:15','2025-11-03 11:21:15',290902,NULL), -(5477,'woocommerce_cleanup_logs','complete','2025-11-03 10:22:15','2025-11-03 11:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762165335;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762165335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 10:23:15','2025-11-03 11:23:15',290905,NULL), -(5479,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 12:49:15','2025-11-02 13:49:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762087755;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762087755;}',11,1,'2025-11-02 12:49:27','2025-11-02 13:49:27',289578,NULL), -(5480,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 13:49:27','2025-11-02 14:49:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762091367;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762091367;}',11,1,'2025-11-02 13:50:15','2025-11-02 14:50:15',289639,NULL), -(5481,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 14:50:15','2025-11-02 15:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762095015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762095015;}',11,1,'2025-11-02 14:50:15','2025-11-02 15:50:15',289700,NULL), -(5482,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 15:50:15','2025-11-02 16:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762098615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762098615;}',11,1,'2025-11-02 15:50:15','2025-11-02 16:50:15',289761,NULL), -(5483,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 16:50:15','2025-11-02 17:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762102215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762102215;}',11,1,'2025-11-02 16:50:15','2025-11-02 17:50:15',289822,NULL), -(5484,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 17:50:15','2025-11-02 18:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762105815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762105815;}',11,1,'2025-11-02 17:50:15','2025-11-02 18:50:15',289883,NULL), -(5485,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 18:50:15','2025-11-02 19:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762109415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762109415;}',11,1,'2025-11-02 18:50:15','2025-11-02 19:50:15',289945,NULL), -(5486,'woocommerce_cleanup_draft_orders','complete','2025-11-03 18:42:14','2025-11-03 19:42:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762195334;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762195334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-03 18:42:15','2025-11-03 19:42:15',291413,NULL), -(5487,'wp_mail_smtp_admin_notifications_update','complete','2025-11-03 18:42:14','2025-11-03 19:42:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762195334;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762195334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-03 18:42:15','2025-11-03 19:42:15',291413,NULL), -(5488,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 19:50:15','2025-11-02 20:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762113015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762113015;}',11,1,'2025-11-02 19:50:15','2025-11-02 20:50:15',290009,NULL), -(5489,'woocommerce_refresh_order_count_cache','complete','2025-11-03 07:24:15','2025-11-03 08:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762154655;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762154655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-03 07:24:15','2025-11-03 08:24:15',290719,NULL), -(5490,'wc-admin_import_orders','complete','2025-11-02 19:39:07','2025-11-02 20:39:07',10,'[1496]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762112347;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762112347;}',4,1,'2025-11-02 19:40:07','2025-11-02 20:40:07',289997,NULL), -(5491,'wc-admin_import_orders','complete','2025-11-02 19:40:12','2025-11-02 20:40:12',10,'[1496]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762112412;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762112412;}',4,1,'2025-11-02 19:41:15','2025-11-02 20:41:15',289999,NULL), -(5492,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 20:50:15','2025-11-02 21:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762116615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762116615;}',11,1,'2025-11-02 20:50:15','2025-11-02 21:50:15',290070,NULL), -(5493,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 21:50:15','2025-11-02 22:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762120215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762120215;}',11,1,'2025-11-02 21:50:15','2025-11-02 22:50:15',290131,NULL), -(5494,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 22:50:15','2025-11-02 23:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762123815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762123815;}',11,1,'2025-11-02 22:50:15','2025-11-02 23:50:15',290193,NULL), -(5495,'woocommerce_scheduled_sales','complete','2025-11-03 22:03:15','2025-11-03 23:03:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762207395;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762207395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-03 22:03:15','2025-11-03 23:03:15',291622,NULL), -(5496,'woocommerce_cancel_unpaid_orders','complete','2025-11-02 23:50:15','2025-11-03 00:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762127415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762127415;}',11,1,'2025-11-02 23:50:15','2025-11-03 00:50:15',290254,NULL), -(5497,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 00:50:15','2025-11-03 01:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762131015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762131015;}',11,1,'2025-11-03 00:50:15','2025-11-03 01:50:15',290315,NULL), -(5498,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 01:50:15','2025-11-03 02:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762134615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762134615;}',11,1,'2025-11-03 01:50:15','2025-11-03 02:50:15',290376,NULL), -(5499,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 02:50:15','2025-11-03 03:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762138215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762138215;}',11,1,'2025-11-03 02:50:15','2025-11-03 03:50:15',290437,NULL), -(5500,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 03:50:15','2025-11-03 04:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762141815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762141815;}',11,1,'2025-11-03 03:50:15','2025-11-03 04:50:15',290498,NULL), -(5501,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 04:50:15','2025-11-03 05:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762145415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762145415;}',11,1,'2025-11-03 04:50:15','2025-11-03 05:50:15',290559,NULL), -(5502,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 05:50:15','2025-11-03 06:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762149015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762149015;}',11,1,'2025-11-03 05:50:15','2025-11-03 06:50:15',290621,NULL), -(5504,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 06:50:15','2025-11-03 07:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762152615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762152615;}',11,1,'2025-11-03 06:50:15','2025-11-03 07:50:15',290682,NULL), -(5505,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 07:50:15','2025-11-03 08:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762156215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762156215;}',11,1,'2025-11-03 07:50:15','2025-11-03 08:50:15',290746,NULL), -(5506,'wc_admin_daily_wrapper','complete','2025-11-04 07:22:15','2025-11-04 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762240935;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762240935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-04 07:22:15','2025-11-04 08:22:15',292193,NULL), -(5507,'woocommerce_cleanup_personal_data','complete','2025-11-04 07:22:15','2025-11-04 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762240935;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762240935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-04 07:22:15','2025-11-04 08:22:15',292193,NULL), -(5508,'woocommerce_cleanup_sessions','complete','2025-11-04 05:00:00','2025-11-04 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762232400;s:18:\"\0*\0first_timestamp\";i:1762232400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762232400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-04 05:00:02','2025-11-04 06:00:02',292048,NULL), -(5509,'generate_category_lookup_table_wrapper','complete','2025-11-03 07:22:25','2025-11-03 08:22:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762154545;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762154545;}',11,1,'2025-11-03 07:23:10','2025-11-03 08:23:10',290717,NULL), -(5510,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-04 07:22:15','2025-11-04 08:22:15',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762240935;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762240935;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-04 07:22:15','2025-11-04 08:22:15',292193,NULL), -(5511,'woocommerce_refresh_order_count_cache','complete','2025-11-03 19:24:15','2025-11-03 20:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762197855;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762197855;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-03 19:24:15','2025-11-03 20:24:15',291457,NULL), -(5512,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 08:50:15','2025-11-03 09:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762159815;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762159815;}',11,1,'2025-11-03 08:50:15','2025-11-03 09:50:15',290807,NULL), -(5513,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 09:50:15','2025-11-03 10:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762163415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762163415;}',11,1,'2025-11-03 09:50:15','2025-11-03 10:50:15',290870,NULL), -(5514,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-03 09:26:25','2025-11-03 10:26:25',10,'[1467,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762161985;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762161985;}',3,1,'2025-11-03 09:26:26','2025-11-03 10:26:26',290845,NULL), -(5515,'woocommerce_run_update_callback','complete','2025-11-03 09:34:05','2025-11-03 10:34:05',10,'{\"update_callback\":\"wc_update_1020_add_old_refunded_order_items_to_product_lookup_table\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762162445;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762162445;}',3,1,'2025-11-03 09:34:42','2025-11-03 10:34:42',290854,NULL), -(5516,'woocommerce_run_update_callback','complete','2025-11-03 09:34:06','2025-11-03 10:34:06',10,'{\"update_callback\":\"wc_update_1030_add_comments_date_type_index\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762162446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762162446;}',3,1,'2025-11-03 09:34:42','2025-11-03 10:34:42',290854,NULL), -(5517,'woocommerce_update_db_to_current_version','complete','2025-11-03 09:34:07','2025-11-03 10:34:07',10,'{\"version\":\"10.3.4\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762162447;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762162447;}',3,1,'2025-11-03 09:34:42','2025-11-03 10:34:42',290854,NULL), -(5518,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 10:50:15','2025-11-03 11:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762167015;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762167015;}',11,1,'2025-11-03 10:50:15','2025-11-03 11:50:15',290933,NULL), -(5519,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-04 10:21:15','2025-11-04 11:21:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762251675;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762251675;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-04 10:21:15','2025-11-04 11:21:15',292378,NULL), -(5520,'woocommerce_cleanup_logs','complete','2025-11-04 10:23:15','2025-11-04 11:23:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762251795;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762251795;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-04 10:23:15','2025-11-04 11:23:15',292381,NULL), -(5521,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 11:50:15','2025-11-03 12:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762170615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762170615;}',11,1,'2025-11-03 11:50:15','2025-11-03 12:50:15',290994,NULL), -(5522,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 12:50:15','2025-11-03 13:50:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762174215;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762174215;}',11,1,'2025-11-03 12:51:15','2025-11-03 13:51:15',291056,NULL), -(5523,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 13:51:15','2025-11-03 14:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762177875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762177875;}',11,1,'2025-11-03 13:51:15','2025-11-03 14:51:15',291117,NULL), -(5524,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 14:51:15','2025-11-03 15:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762181475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762181475;}',11,1,'2025-11-03 14:51:15','2025-11-03 15:51:15',291178,NULL), -(5525,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 15:51:15','2025-11-03 16:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762185075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762185075;}',11,1,'2025-11-03 15:51:15','2025-11-03 16:51:15',291239,NULL), -(5526,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 16:51:15','2025-11-03 17:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762188675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762188675;}',11,1,'2025-11-03 16:51:15','2025-11-03 17:51:15',291300,NULL), -(5527,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 17:51:15','2025-11-03 18:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762192275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762192275;}',11,1,'2025-11-03 17:51:15','2025-11-03 18:51:15',291361,NULL), -(5528,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 18:51:15','2025-11-03 19:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762195875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762195875;}',11,1,'2025-11-03 18:51:15','2025-11-03 19:51:15',291423,NULL), -(5529,'woocommerce_cleanup_draft_orders','complete','2025-11-04 18:42:15','2025-11-04 19:42:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762281735;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762281735;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-04 18:42:15','2025-11-04 19:42:15',292890,NULL), -(5530,'wp_mail_smtp_admin_notifications_update','complete','2025-11-04 18:42:15','2025-11-04 19:42:15',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762281735;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762281735;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-04 18:42:15','2025-11-04 19:42:15',292890,NULL), -(5531,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 19:51:15','2025-11-03 20:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762199475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762199475;}',11,1,'2025-11-03 19:51:15','2025-11-03 20:51:15',291485,NULL), -(5532,'woocommerce_refresh_order_count_cache','complete','2025-11-04 07:24:15','2025-11-04 08:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762241055;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762241055;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-04 07:24:15','2025-11-04 08:24:15',292197,NULL), -(5533,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 20:51:15','2025-11-03 21:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762203075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762203075;}',11,1,'2025-11-03 20:51:15','2025-11-03 21:51:15',291546,NULL), -(5534,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 21:51:15','2025-11-03 22:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762206675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762206675;}',11,1,'2025-11-03 21:51:15','2025-11-03 22:51:15',291609,NULL), -(5535,'wc-admin_import_orders','complete','2025-11-03 21:05:42','2025-11-03 22:05:42',10,'[1498]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762203942;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762203942;}',4,1,'2025-11-03 21:07:01','2025-11-03 22:07:01',291563,NULL), -(5536,'wc-admin_import_orders','complete','2025-11-03 21:07:07','2025-11-03 22:07:07',10,'[1498]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762204027;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762204027;}',4,1,'2025-11-03 21:08:15','2025-11-03 22:08:15',291565,NULL), -(5537,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 22:51:15','2025-11-03 23:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762210275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762210275;}',11,1,'2025-11-03 22:51:15','2025-11-03 23:51:15',291671,NULL), -(5538,'woocommerce_scheduled_sales','complete','2025-11-04 22:03:15','2025-11-04 23:03:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762293795;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762293795;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-04 22:03:31','2025-11-04 23:03:31',293098,NULL), -(5539,'woocommerce_cancel_unpaid_orders','complete','2025-11-03 23:51:15','2025-11-04 00:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762213875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762213875;}',11,1,'2025-11-03 23:51:15','2025-11-04 00:51:15',291732,NULL), -(5540,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 00:51:15','2025-11-04 01:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762217475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762217475;}',11,1,'2025-11-04 00:51:15','2025-11-04 01:51:15',291793,NULL), -(5541,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 01:51:15','2025-11-04 02:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762221075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762221075;}',11,1,'2025-11-04 01:51:15','2025-11-04 02:51:15',291854,NULL), -(5542,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 02:51:15','2025-11-04 03:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762224675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762224675;}',11,1,'2025-11-04 02:51:15','2025-11-04 03:51:15',291915,NULL), -(5543,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 03:51:15','2025-11-04 04:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762228275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762228275;}',11,1,'2025-11-04 03:51:15','2025-11-04 04:51:15',291976,NULL), -(5544,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 04:51:15','2025-11-04 05:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762231875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762231875;}',11,1,'2025-11-04 04:51:15','2025-11-04 05:51:15',292038,NULL), -(5545,'wp_mail_smtp_summary_report_email','complete','2025-11-11 04:07:15','2025-11-11 05:07:15',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762834035;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762834035;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-11-11 04:07:18','2025-11-11 05:07:18',302318,NULL), -(5546,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 05:51:15','2025-11-04 06:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762235475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762235475;}',11,1,'2025-11-04 05:51:15','2025-11-04 06:51:15',292100,NULL), -(5548,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 06:51:15','2025-11-04 07:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762239075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762239075;}',11,1,'2025-11-04 06:51:15','2025-11-04 07:51:15',292161,NULL), -(5549,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 07:51:15','2025-11-04 08:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762242675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762242675;}',11,1,'2025-11-04 07:51:15','2025-11-04 08:51:15',292225,NULL), -(5550,'wc_admin_daily_wrapper','complete','2025-11-05 07:22:15','2025-11-05 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762327335;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762327335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-05 07:22:16','2025-11-05 08:22:16',293667,NULL), -(5551,'woocommerce_cleanup_personal_data','complete','2025-11-05 07:22:15','2025-11-05 08:22:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762327335;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762327335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-05 07:22:16','2025-11-05 08:22:16',293667,NULL), -(5552,'woocommerce_cleanup_sessions','complete','2025-11-05 05:00:00','2025-11-05 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762318800;s:18:\"\0*\0first_timestamp\";i:1762318800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762318800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-05 05:00:15','2025-11-05 06:00:15',293522,NULL), -(5553,'generate_category_lookup_table_wrapper','complete','2025-11-04 07:22:25','2025-11-04 08:22:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762240945;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762240945;}',11,1,'2025-11-04 07:23:15','2025-11-04 08:23:15',292195,NULL), -(5554,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-05 07:22:15','2025-11-05 08:22:15',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762327335;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762327335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-05 07:22:16','2025-11-05 08:22:16',293667,NULL), -(5555,'woocommerce_refresh_order_count_cache','complete','2025-11-04 19:24:15','2025-11-04 20:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762284255;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762284255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-04 19:24:15','2025-11-04 20:24:15',292934,NULL), -(5556,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 08:51:15','2025-11-04 09:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762246275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762246275;}',11,1,'2025-11-04 08:51:15','2025-11-04 09:51:15',292286,NULL), -(5557,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 09:51:15','2025-11-04 10:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762249875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762249875;}',11,1,'2025-11-04 09:51:15','2025-11-04 10:51:15',292347,NULL), -(5558,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 10:51:15','2025-11-04 11:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762253475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762253475;}',11,1,'2025-11-04 10:51:15','2025-11-04 11:51:15',292410,NULL), -(5559,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-05 10:21:15','2025-11-05 11:21:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762338075;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762338075;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-05 10:21:16','2025-11-05 11:21:16',293855,NULL), -(5560,'woocommerce_cleanup_logs','complete','2025-11-05 10:23:15','2025-11-05 11:23:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762338195;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762338195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-05 10:23:36','2025-11-05 11:23:36',293859,NULL), -(5561,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 11:51:15','2025-11-04 12:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762257075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762257075;}',11,1,'2025-11-04 11:51:15','2025-11-04 12:51:15',292471,NULL), -(5562,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 12:51:15','2025-11-04 13:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762260675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762260675;}',11,1,'2025-11-04 12:51:15','2025-11-04 13:51:15',292532,NULL), -(5563,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 13:51:15','2025-11-04 14:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762264275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762264275;}',11,1,'2025-11-04 13:51:15','2025-11-04 14:51:15',292593,NULL), -(5564,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 14:51:15','2025-11-04 15:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762267875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762267875;}',11,1,'2025-11-04 14:51:15','2025-11-04 15:51:15',292654,NULL), -(5565,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 15:51:15','2025-11-04 16:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762271475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762271475;}',11,1,'2025-11-04 15:51:15','2025-11-04 16:51:15',292715,NULL), -(5566,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 16:51:15','2025-11-04 17:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762275075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762275075;}',11,1,'2025-11-04 16:51:15','2025-11-04 17:51:15',292776,NULL), -(5567,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 17:51:15','2025-11-04 18:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762278675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762278675;}',11,1,'2025-11-04 17:51:15','2025-11-04 18:51:15',292838,NULL), -(5568,'wc-admin_import_orders','complete','2025-11-04 17:02:39','2025-11-04 18:02:39',10,'[1500]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762275759;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762275759;}',4,1,'2025-11-04 17:04:15','2025-11-04 18:04:15',292790,NULL), -(5569,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 18:51:15','2025-11-04 19:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762282275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762282275;}',11,1,'2025-11-04 18:51:15','2025-11-04 19:51:15',292900,NULL), -(5570,'woocommerce_cleanup_draft_orders','complete','2025-11-05 18:42:15','2025-11-05 19:42:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762368135;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762368135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-05 18:42:16','2025-11-05 19:42:16',294366,NULL), -(5571,'wp_mail_smtp_admin_notifications_update','complete','2025-11-05 18:42:15','2025-11-05 19:42:15',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762368135;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762368135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-05 18:42:16','2025-11-05 19:42:16',294366,NULL), -(5572,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 19:51:15','2025-11-04 20:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762285875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762285875;}',11,1,'2025-11-04 19:51:15','2025-11-04 20:51:15',292962,NULL), -(5573,'woocommerce_refresh_order_count_cache','complete','2025-11-05 07:24:15','2025-11-05 08:24:15',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762327455;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762327455;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-05 07:24:16','2025-11-05 08:24:16',293671,NULL), -(5574,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 20:51:15','2025-11-04 21:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762289475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762289475;}',11,1,'2025-11-04 20:51:15','2025-11-04 21:51:15',293023,NULL), -(5575,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 21:51:15','2025-11-04 22:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762293075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762293075;}',11,1,'2025-11-04 21:51:15','2025-11-04 22:51:15',293084,NULL), -(5576,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 22:51:15','2025-11-04 23:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762296675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762296675;}',11,1,'2025-11-04 22:51:15','2025-11-04 23:51:15',293146,NULL), -(5577,'woocommerce_scheduled_sales','complete','2025-11-05 22:03:31','2025-11-05 23:03:31',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762380211;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762380211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-05 22:04:16','2025-11-05 23:04:16',294574,NULL), -(5578,'woocommerce_cancel_unpaid_orders','complete','2025-11-04 23:51:15','2025-11-05 00:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762300275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762300275;}',11,1,'2025-11-04 23:51:15','2025-11-05 00:51:15',293207,NULL), -(5579,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 00:51:15','2025-11-05 01:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762303875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762303875;}',11,1,'2025-11-05 00:51:15','2025-11-05 01:51:15',293268,NULL), -(5580,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 01:51:15','2025-11-05 02:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762307475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762307475;}',11,1,'2025-11-05 01:51:15','2025-11-05 02:51:15',293329,NULL), -(5581,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 02:51:15','2025-11-05 03:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762311075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762311075;}',11,1,'2025-11-05 02:51:16','2025-11-05 03:51:16',293390,NULL), -(5582,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 03:51:15','2025-11-05 04:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762314675;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762314675;}',11,1,'2025-11-05 03:51:16','2025-11-05 04:51:16',293451,NULL), -(5583,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 04:51:15','2025-11-05 05:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762318275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762318275;}',11,1,'2025-11-05 04:51:16','2025-11-05 05:51:16',293512,NULL), -(5584,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 05:51:15','2025-11-05 06:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762321875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762321875;}',11,1,'2025-11-05 05:51:16','2025-11-05 06:51:16',293574,NULL), -(5586,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 06:51:15','2025-11-05 07:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762325475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762325475;}',11,1,'2025-11-05 06:51:16','2025-11-05 07:51:16',293635,NULL), -(5587,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 07:51:15','2025-11-05 08:51:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762329075;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762329075;}',11,1,'2025-11-05 07:51:16','2025-11-05 08:51:16',293699,NULL), -(5588,'wc_admin_daily_wrapper','complete','2025-11-06 07:22:16','2025-11-06 08:22:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762413736;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762413736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-06 07:22:16','2025-11-06 08:22:16',295143,NULL), -(5589,'woocommerce_cleanup_personal_data','complete','2025-11-06 07:22:16','2025-11-06 08:22:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762413736;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762413736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-06 07:22:16','2025-11-06 08:22:16',295143,NULL), -(5590,'woocommerce_cleanup_sessions','complete','2025-11-06 05:00:00','2025-11-06 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762405200;s:18:\"\0*\0first_timestamp\";i:1762405200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762405200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-06 05:00:16','2025-11-06 06:00:16',294998,NULL), -(5591,'generate_category_lookup_table_wrapper','complete','2025-11-05 07:22:26','2025-11-05 08:22:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762327346;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762327346;}',11,1,'2025-11-05 07:23:16','2025-11-05 08:23:16',293669,NULL), -(5592,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-06 07:22:16','2025-11-06 08:22:16',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762413736;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762413736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-06 07:22:16','2025-11-06 08:22:16',295143,NULL), -(5593,'woocommerce_refresh_order_count_cache','complete','2025-11-05 19:24:16','2025-11-05 20:24:16',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762370656;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762370656;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-05 19:24:16','2025-11-05 20:24:16',294410,NULL), -(5594,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 08:51:16','2025-11-05 09:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762332676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762332676;}',11,1,'2025-11-05 08:51:16','2025-11-05 09:51:16',293762,NULL), -(5595,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-05 08:28:59','2025-11-05 09:28:59',10,'[274,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762331339;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762331339;}',3,1,'2025-11-05 08:29:18','2025-11-05 09:29:18',293739,NULL), -(5596,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 09:51:16','2025-11-05 10:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762336276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762336276;}',11,1,'2025-11-05 09:51:16','2025-11-05 10:51:16',293824,NULL), -(5597,'wc-admin_import_orders','complete','2025-11-05 09:42:04','2025-11-05 10:42:04',10,'[1501]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762335724;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762335724;}',4,1,'2025-11-05 09:43:16','2025-11-05 10:43:16',293815,NULL), -(5598,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 10:51:16','2025-11-05 11:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762339876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762339876;}',11,1,'2025-11-05 10:51:16','2025-11-05 11:51:16',293887,NULL), -(5599,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-06 10:21:16','2025-11-06 11:21:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762424476;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762424476;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-06 10:21:42','2025-11-06 11:21:42',295330,NULL), -(5600,'woocommerce_cleanup_logs','complete','2025-11-06 10:23:36','2025-11-06 11:23:36',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762424616;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762424616;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-06 10:24:02','2025-11-06 11:24:02',295335,NULL), -(5601,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 11:51:16','2025-11-05 12:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762343476;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762343476;}',11,1,'2025-11-05 11:51:16','2025-11-05 12:51:16',293948,NULL), -(5602,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 12:51:16','2025-11-05 13:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762347076;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762347076;}',11,1,'2025-11-05 12:51:16','2025-11-05 13:51:16',294009,NULL), -(5603,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 13:51:16','2025-11-05 14:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762350676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762350676;}',11,1,'2025-11-05 13:51:16','2025-11-05 14:51:16',294070,NULL), -(5604,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 14:51:16','2025-11-05 15:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762354276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762354276;}',11,1,'2025-11-05 14:51:16','2025-11-05 15:51:16',294131,NULL), -(5605,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 15:51:16','2025-11-05 16:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762357876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762357876;}',11,1,'2025-11-05 15:51:16','2025-11-05 16:51:16',294192,NULL), -(5606,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 16:51:16','2025-11-05 17:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762361476;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762361476;}',11,1,'2025-11-05 16:51:16','2025-11-05 17:51:16',294253,NULL), -(5607,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 17:51:16','2025-11-05 18:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762365076;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762365076;}',11,1,'2025-11-05 17:51:16','2025-11-05 18:51:16',294314,NULL), -(5608,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 18:51:16','2025-11-05 19:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762368676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762368676;}',11,1,'2025-11-05 18:51:16','2025-11-05 19:51:16',294376,NULL), -(5609,'woocommerce_cleanup_draft_orders','complete','2025-11-06 18:42:16','2025-11-06 19:42:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762454536;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762454536;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-06 18:42:16','2025-11-06 19:42:16',295845,NULL), -(5610,'wp_mail_smtp_admin_notifications_update','complete','2025-11-06 18:42:16','2025-11-06 19:42:16',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762454536;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762454536;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-06 18:42:16','2025-11-06 19:42:16',295845,NULL), -(5611,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 19:51:16','2025-11-05 20:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762372276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762372276;}',11,1,'2025-11-05 19:51:16','2025-11-05 20:51:16',294438,NULL), -(5612,'woocommerce_refresh_order_count_cache','complete','2025-11-06 07:24:16','2025-11-06 08:24:16',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762413856;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762413856;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-06 07:24:16','2025-11-06 08:24:16',295147,NULL), -(5613,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 20:51:16','2025-11-05 21:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762375876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762375876;}',11,1,'2025-11-05 20:51:16','2025-11-05 21:51:16',294499,NULL), -(5614,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 21:51:16','2025-11-05 22:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762379476;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762379476;}',11,1,'2025-11-05 21:51:16','2025-11-05 22:51:16',294560,NULL), -(5615,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 22:51:16','2025-11-05 23:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762383076;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762383076;}',11,1,'2025-11-05 22:51:16','2025-11-05 23:51:16',294622,NULL), -(5616,'woocommerce_scheduled_sales','complete','2025-11-06 22:04:16','2025-11-06 23:04:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762466656;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762466656;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-06 22:04:16','2025-11-06 23:04:16',296053,NULL), -(5617,'woocommerce_cancel_unpaid_orders','complete','2025-11-05 23:51:16','2025-11-06 00:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762386676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762386676;}',11,1,'2025-11-05 23:51:16','2025-11-06 00:51:16',294683,NULL), -(5618,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 00:51:16','2025-11-06 01:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762390276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762390276;}',11,1,'2025-11-06 00:51:16','2025-11-06 01:51:16',294744,NULL), -(5619,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 01:51:16','2025-11-06 02:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762393876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762393876;}',11,1,'2025-11-06 01:51:16','2025-11-06 02:51:16',294805,NULL), -(5620,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 02:51:16','2025-11-06 03:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762397476;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762397476;}',11,1,'2025-11-06 02:51:16','2025-11-06 03:51:16',294866,NULL), -(5621,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 03:51:16','2025-11-06 04:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762401076;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762401076;}',11,1,'2025-11-06 03:51:16','2025-11-06 04:51:16',294927,NULL), -(5622,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 04:51:16','2025-11-06 05:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762404676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762404676;}',11,1,'2025-11-06 04:51:16','2025-11-06 05:51:16',294988,NULL), -(5623,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 05:51:16','2025-11-06 06:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762408276;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762408276;}',11,1,'2025-11-06 05:51:16','2025-11-06 06:51:16',295050,NULL), -(5625,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 06:51:16','2025-11-06 07:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762411876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762411876;}',11,1,'2025-11-06 06:51:16','2025-11-06 07:51:16',295111,NULL), -(5626,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 07:51:16','2025-11-06 08:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762415476;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762415476;}',11,1,'2025-11-06 07:51:16','2025-11-06 08:51:16',295175,NULL), -(5627,'wc_admin_daily_wrapper','complete','2025-11-07 07:22:16','2025-11-07 08:22:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762500136;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762500136;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-07 07:23:16','2025-11-07 08:23:16',296624,NULL), -(5628,'woocommerce_cleanup_personal_data','complete','2025-11-07 07:22:16','2025-11-07 08:22:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762500136;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762500136;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-07 07:23:16','2025-11-07 08:23:16',296624,NULL), -(5629,'woocommerce_cleanup_sessions','complete','2025-11-07 05:00:00','2025-11-07 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762491600;s:18:\"\0*\0first_timestamp\";i:1762491600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762491600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-07 05:00:16','2025-11-07 06:00:16',296477,NULL), -(5630,'generate_category_lookup_table_wrapper','complete','2025-11-06 07:22:26','2025-11-06 08:22:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762413746;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762413746;}',11,1,'2025-11-06 07:23:16','2025-11-06 08:23:16',295145,NULL), -(5631,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-07 07:22:16','2025-11-07 08:22:16',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762500136;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762500136;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-07 07:23:16','2025-11-07 08:23:16',296624,NULL), -(5632,'woocommerce_refresh_order_count_cache','complete','2025-11-06 19:24:16','2025-11-06 20:24:16',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762457056;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762457056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-06 19:24:16','2025-11-06 20:24:16',295889,NULL), -(5633,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 08:51:16','2025-11-06 09:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762419076;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762419076;}',11,1,'2025-11-06 08:51:16','2025-11-06 09:51:16',295236,NULL), -(5634,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 09:51:16','2025-11-06 10:51:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762422676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762422676;}',11,1,'2025-11-06 09:52:15','2025-11-06 10:52:15',295298,NULL), -(5635,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 10:52:15','2025-11-06 11:52:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762426335;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762426335;}',11,1,'2025-11-06 10:52:16','2025-11-06 11:52:16',295364,NULL), -(5636,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-07 10:21:42','2025-11-07 11:21:42',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762510902;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762510902;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-07 10:22:16','2025-11-07 11:22:16',296808,NULL), -(5637,'woocommerce_cleanup_logs','complete','2025-11-07 10:24:02','2025-11-07 11:24:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762511042;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762511042;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-07 10:24:16','2025-11-07 11:24:16',296811,NULL), -(5638,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 11:52:16','2025-11-06 12:52:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762429936;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762429936;}',11,1,'2025-11-06 11:52:16','2025-11-06 12:52:16',295425,NULL), -(5639,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 12:52:16','2025-11-06 13:52:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762433536;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762433536;}',11,1,'2025-11-06 12:52:16','2025-11-06 13:52:16',295486,NULL), -(5640,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 13:52:16','2025-11-06 14:52:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762437136;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762437136;}',11,1,'2025-11-06 13:52:38','2025-11-06 14:52:38',295550,NULL), -(5641,'wc-admin_import_orders','complete','2025-11-06 13:51:04','2025-11-06 14:51:04',10,'[1496]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762437064;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762437064;}',4,1,'2025-11-06 13:51:31','2025-11-06 14:51:31',295547,NULL), -(5642,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 14:52:38','2025-11-06 15:52:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762440758;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762440758;}',11,1,'2025-11-06 14:53:16','2025-11-06 15:53:16',295612,NULL), -(5643,'wc-admin_import_orders','complete','2025-11-06 13:52:56','2025-11-06 14:52:56',10,'[1498]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762437176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762437176;}',4,1,'2025-11-06 13:54:16','2025-11-06 14:54:16',295552,NULL), -(5644,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 15:53:16','2025-11-06 16:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762444396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762444396;}',11,1,'2025-11-06 15:53:16','2025-11-06 16:53:16',295673,NULL), -(5645,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 16:53:16','2025-11-06 17:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762447996;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762447996;}',11,1,'2025-11-06 16:53:16','2025-11-06 17:53:16',295734,NULL), -(5646,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 17:53:16','2025-11-06 18:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762451596;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762451596;}',11,1,'2025-11-06 17:53:16','2025-11-06 18:53:16',295795,NULL), -(5647,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 18:53:16','2025-11-06 19:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762455196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762455196;}',11,1,'2025-11-06 18:53:16','2025-11-06 19:53:16',295857,NULL), -(5648,'woocommerce_cleanup_draft_orders','complete','2025-11-07 18:42:16','2025-11-07 19:42:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762540936;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762540936;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-07 18:42:16','2025-11-07 19:42:16',297318,NULL), -(5649,'wp_mail_smtp_admin_notifications_update','complete','2025-11-07 18:42:16','2025-11-07 19:42:16',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762540936;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762540936;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-07 18:42:16','2025-11-07 19:42:16',297318,NULL), -(5650,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 19:53:16','2025-11-06 20:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762458796;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762458796;}',11,1,'2025-11-06 19:53:16','2025-11-06 20:53:16',295919,NULL), -(5651,'woocommerce_refresh_order_count_cache','complete','2025-11-07 07:24:16','2025-11-07 08:24:16',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762500256;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762500256;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-07 07:24:16','2025-11-07 08:24:16',296626,NULL), -(5652,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 20:53:16','2025-11-06 21:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762462396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762462396;}',11,1,'2025-11-06 20:53:16','2025-11-06 21:53:16',295980,NULL), -(5653,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 21:53:16','2025-11-06 22:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762465996;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762465996;}',11,1,'2025-11-06 21:53:16','2025-11-06 22:53:16',296041,NULL), -(5654,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 22:53:16','2025-11-06 23:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762469596;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762469596;}',11,1,'2025-11-06 22:53:16','2025-11-06 23:53:16',296103,NULL), -(5655,'woocommerce_scheduled_sales','complete','2025-11-07 22:04:16','2025-11-07 23:04:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762553056;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762553056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-07 22:04:16','2025-11-07 23:04:16',297526,NULL), -(5656,'woocommerce_cancel_unpaid_orders','complete','2025-11-06 23:53:16','2025-11-07 00:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762473196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762473196;}',11,1,'2025-11-06 23:53:16','2025-11-07 00:53:16',296164,NULL), -(5657,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 00:53:16','2025-11-07 01:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762476796;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762476796;}',11,1,'2025-11-07 00:53:16','2025-11-07 01:53:16',296225,NULL), -(5658,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 01:53:16','2025-11-07 02:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762480396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762480396;}',11,1,'2025-11-07 01:53:16','2025-11-07 02:53:16',296286,NULL), -(5659,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 02:53:16','2025-11-07 03:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762483996;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762483996;}',11,1,'2025-11-07 02:53:16','2025-11-07 03:53:16',296347,NULL), -(5660,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 03:53:16','2025-11-07 04:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762487596;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762487596;}',11,1,'2025-11-07 03:53:16','2025-11-07 04:53:16',296408,NULL), -(5661,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 04:53:16','2025-11-07 05:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762491196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762491196;}',11,1,'2025-11-07 04:53:16','2025-11-07 05:53:16',296469,NULL), -(5662,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 05:53:16','2025-11-07 06:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762494796;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762494796;}',11,1,'2025-11-07 05:53:16','2025-11-07 06:53:16',296531,NULL), -(5664,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 06:53:16','2025-11-07 07:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762498396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762498396;}',11,1,'2025-11-07 06:53:16','2025-11-07 07:53:16',296592,NULL), -(5665,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 07:53:16','2025-11-07 08:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762501996;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762501996;}',11,1,'2025-11-07 07:53:16','2025-11-07 08:53:16',296656,NULL), -(5666,'woocommerce_geoip_updater','complete','2025-11-22 07:14:16','2025-11-22 08:14:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763795656;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763795656;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,1,'2025-11-22 07:34:38','2025-11-22 08:34:38',317604,NULL), -(5667,'wc_admin_daily_wrapper','complete','2025-11-08 07:23:16','2025-11-08 08:23:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762586596;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762586596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-08 07:23:17','2025-11-08 08:23:17',298096,NULL), -(5668,'woocommerce_cleanup_personal_data','complete','2025-11-08 07:23:16','2025-11-08 08:23:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762586596;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762586596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-08 07:23:17','2025-11-08 08:23:17',298096,NULL), -(5669,'woocommerce_cleanup_sessions','complete','2025-11-08 05:00:00','2025-11-08 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762578000;s:18:\"\0*\0first_timestamp\";i:1762578000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762578000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-08 05:00:16','2025-11-08 06:00:16',297950,NULL), -(5670,'generate_category_lookup_table_wrapper','complete','2025-11-07 07:23:26','2025-11-07 08:23:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762500206;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762500206;}',11,1,'2025-11-07 07:24:16','2025-11-07 08:24:16',296626,NULL), -(5671,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-08 07:23:16','2025-11-08 08:23:16',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762586596;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762586596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-08 07:23:17','2025-11-08 08:23:17',298096,NULL), -(5672,'woocommerce_refresh_order_count_cache','complete','2025-11-07 19:24:16','2025-11-07 20:24:16',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762543456;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762543456;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-07 19:24:16','2025-11-07 20:24:16',297362,NULL), -(5673,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 08:53:16','2025-11-07 09:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762505596;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762505596;}',11,1,'2025-11-07 08:53:16','2025-11-07 09:53:16',296717,NULL), -(5674,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 09:53:16','2025-11-07 10:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762509196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762509196;}',11,1,'2025-11-07 09:53:16','2025-11-07 10:53:16',296778,NULL), -(5675,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 10:53:16','2025-11-07 11:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762512796;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762512796;}',11,1,'2025-11-07 10:53:16','2025-11-07 11:53:16',296841,NULL), -(5676,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-08 10:22:16','2025-11-08 11:22:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762597336;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762597336;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-08 10:22:17','2025-11-08 11:22:17',298280,NULL), -(5677,'woocommerce_cleanup_logs','complete','2025-11-08 10:24:16','2025-11-08 11:24:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762597456;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762597456;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-08 10:24:17','2025-11-08 11:24:17',298283,NULL), -(5678,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 11:53:16','2025-11-07 12:53:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762516396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762516396;}',11,1,'2025-11-07 11:54:16','2025-11-07 12:54:16',296903,NULL), -(5679,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 12:54:16','2025-11-07 13:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762520056;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762520056;}',11,1,'2025-11-07 12:54:16','2025-11-07 13:54:16',296964,NULL), -(5680,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 13:54:16','2025-11-07 14:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762523656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762523656;}',11,1,'2025-11-07 13:54:16','2025-11-07 14:54:16',297025,NULL), -(5681,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 14:54:16','2025-11-07 15:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762527256;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762527256;}',11,1,'2025-11-07 14:54:16','2025-11-07 15:54:16',297086,NULL), -(5682,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 15:54:16','2025-11-07 16:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762530856;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762530856;}',11,1,'2025-11-07 15:54:16','2025-11-07 16:54:16',297147,NULL), -(5683,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 16:54:16','2025-11-07 17:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762534456;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762534456;}',11,1,'2025-11-07 16:54:16','2025-11-07 17:54:16',297208,NULL), -(5684,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 17:54:16','2025-11-07 18:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762538056;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762538056;}',11,1,'2025-11-07 17:54:16','2025-11-07 18:54:16',297269,NULL), -(5685,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 18:54:16','2025-11-07 19:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762541656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762541656;}',11,1,'2025-11-07 18:54:16','2025-11-07 19:54:16',297331,NULL), -(5686,'woocommerce_cleanup_draft_orders','complete','2025-11-08 18:42:16','2025-11-08 19:42:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762627336;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762627336;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-08 18:42:17','2025-11-08 19:42:17',298790,NULL), -(5687,'wp_mail_smtp_admin_notifications_update','complete','2025-11-08 18:42:16','2025-11-08 19:42:16',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762627336;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762627336;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-08 18:42:17','2025-11-08 19:42:17',298790,NULL), -(5688,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 19:54:16','2025-11-07 20:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762545256;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762545256;}',11,1,'2025-11-07 19:54:16','2025-11-07 20:54:16',297393,NULL), -(5689,'woocommerce_refresh_order_count_cache','complete','2025-11-08 07:24:16','2025-11-08 08:24:16',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762586656;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762586656;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-08 07:24:17','2025-11-08 08:24:17',298098,NULL), -(5690,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 20:54:16','2025-11-07 21:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762548856;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762548856;}',11,1,'2025-11-07 20:54:16','2025-11-07 21:54:16',297454,NULL), -(5691,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 21:54:16','2025-11-07 22:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762552456;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762552456;}',11,1,'2025-11-07 21:54:16','2025-11-07 22:54:16',297515,NULL), -(5692,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 22:54:16','2025-11-07 23:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762556056;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762556056;}',11,1,'2025-11-07 22:54:16','2025-11-07 23:54:16',297577,NULL), -(5693,'woocommerce_scheduled_sales','complete','2025-11-08 22:04:16','2025-11-08 23:04:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762639456;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762639456;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-08 22:04:17','2025-11-08 23:04:17',298998,NULL), -(5694,'woocommerce_cancel_unpaid_orders','complete','2025-11-07 23:54:16','2025-11-08 00:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762559656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762559656;}',11,1,'2025-11-07 23:54:16','2025-11-08 00:54:16',297638,NULL), -(5695,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 00:54:16','2025-11-08 01:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762563256;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762563256;}',11,1,'2025-11-08 00:54:16','2025-11-08 01:54:16',297699,NULL), -(5696,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 01:54:16','2025-11-08 02:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762566856;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762566856;}',11,1,'2025-11-08 01:54:16','2025-11-08 02:54:16',297760,NULL), -(5697,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 02:54:16','2025-11-08 03:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762570456;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762570456;}',11,1,'2025-11-08 02:54:16','2025-11-08 03:54:16',297821,NULL), -(5698,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 03:54:16','2025-11-08 04:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762574056;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762574056;}',11,1,'2025-11-08 03:54:16','2025-11-08 04:54:16',297882,NULL), -(5699,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 04:54:16','2025-11-08 05:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762577656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762577656;}',11,1,'2025-11-08 04:54:17','2025-11-08 05:54:17',297943,NULL), -(5700,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 05:54:16','2025-11-08 06:54:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762581256;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762581256;}',11,1,'2025-11-08 05:54:17','2025-11-08 06:54:17',298005,NULL), -(5702,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 06:54:17','2025-11-08 07:54:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762584857;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762584857;}',11,1,'2025-11-08 06:55:17','2025-11-08 07:55:17',298067,NULL), -(5703,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 07:55:17','2025-11-08 08:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762588517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762588517;}',11,1,'2025-11-08 07:55:17','2025-11-08 08:55:17',298130,NULL), -(5704,'wc_admin_daily_wrapper','complete','2025-11-09 07:23:17','2025-11-09 08:23:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762672997;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762672997;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-09 07:23:17','2025-11-09 08:23:17',299568,NULL), -(5705,'woocommerce_cleanup_personal_data','complete','2025-11-09 07:23:17','2025-11-09 08:23:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762672997;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762672997;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-09 07:23:17','2025-11-09 08:23:17',299568,NULL), -(5706,'woocommerce_cleanup_sessions','complete','2025-11-09 05:00:00','2025-11-09 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762664400;s:18:\"\0*\0first_timestamp\";i:1762664400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762664400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-09 05:00:17','2025-11-09 06:00:17',299422,NULL), -(5707,'generate_category_lookup_table_wrapper','complete','2025-11-08 07:23:27','2025-11-08 08:23:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762586607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762586607;}',11,1,'2025-11-08 07:24:17','2025-11-08 08:24:17',298098,NULL), -(5708,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-09 07:23:17','2025-11-09 08:23:17',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762672997;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762672997;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-09 07:23:17','2025-11-09 08:23:17',299568,NULL), -(5709,'woocommerce_refresh_order_count_cache','complete','2025-11-08 19:24:17','2025-11-08 20:24:17',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762629857;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762629857;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-08 19:24:17','2025-11-08 20:24:17',298834,NULL), -(5710,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 08:55:17','2025-11-08 09:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762592117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762592117;}',11,1,'2025-11-08 08:55:17','2025-11-08 09:55:17',298191,NULL), -(5711,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 09:55:17','2025-11-08 10:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762595717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762595717;}',11,1,'2025-11-08 09:55:17','2025-11-08 10:55:17',298252,NULL), -(5712,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 10:55:17','2025-11-08 11:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762599317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762599317;}',11,1,'2025-11-08 10:55:17','2025-11-08 11:55:17',298315,NULL), -(5713,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-09 10:22:17','2025-11-09 11:22:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762683737;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762683737;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-09 10:22:17','2025-11-09 11:22:17',299752,NULL), -(5714,'woocommerce_cleanup_logs','complete','2025-11-09 10:24:17','2025-11-09 11:24:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762683857;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762683857;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-09 10:24:17','2025-11-09 11:24:17',299755,NULL), -(5715,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 11:55:17','2025-11-08 12:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762602917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762602917;}',11,1,'2025-11-08 11:55:17','2025-11-08 12:55:17',298376,NULL), -(5716,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 12:55:17','2025-11-08 13:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762606517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762606517;}',11,1,'2025-11-08 12:55:17','2025-11-08 13:55:17',298437,NULL), -(5717,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 13:55:17','2025-11-08 14:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762610117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762610117;}',11,1,'2025-11-08 13:55:17','2025-11-08 14:55:17',298498,NULL), -(5718,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 14:55:17','2025-11-08 15:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762613717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762613717;}',11,1,'2025-11-08 14:55:17','2025-11-08 15:55:17',298559,NULL), -(5719,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 15:55:17','2025-11-08 16:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762617317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762617317;}',11,1,'2025-11-08 15:55:17','2025-11-08 16:55:17',298620,NULL), -(5720,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 16:55:17','2025-11-08 17:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762620917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762620917;}',11,1,'2025-11-08 16:55:17','2025-11-08 17:55:17',298681,NULL), -(5721,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 17:55:17','2025-11-08 18:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762624517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762624517;}',11,1,'2025-11-08 17:55:17','2025-11-08 18:55:17',298742,NULL), -(5722,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 18:55:17','2025-11-08 19:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762628117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762628117;}',11,1,'2025-11-08 18:55:17','2025-11-08 19:55:17',298804,NULL), -(5723,'woocommerce_cleanup_draft_orders','complete','2025-11-09 18:42:17','2025-11-09 19:42:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762713737;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762713737;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-09 18:42:17','2025-11-09 19:42:17',300262,NULL), -(5724,'wp_mail_smtp_admin_notifications_update','complete','2025-11-09 18:42:17','2025-11-09 19:42:17',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762713737;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762713737;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-09 18:42:17','2025-11-09 19:42:17',300262,NULL), -(5725,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 19:55:17','2025-11-08 20:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762631717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762631717;}',11,1,'2025-11-08 19:55:17','2025-11-08 20:55:17',298866,NULL), -(5726,'woocommerce_refresh_order_count_cache','complete','2025-11-09 07:24:17','2025-11-09 08:24:17',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762673057;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762673057;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-09 07:24:17','2025-11-09 08:24:17',299570,NULL), -(5727,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 20:55:17','2025-11-08 21:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762635317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762635317;}',11,1,'2025-11-08 20:55:17','2025-11-08 21:55:17',298927,NULL), -(5728,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 21:55:17','2025-11-08 22:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762638917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762638917;}',11,1,'2025-11-08 21:55:17','2025-11-08 22:55:17',298988,NULL), -(5729,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 22:55:17','2025-11-08 23:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762642517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762642517;}',11,1,'2025-11-08 22:55:17','2025-11-08 23:55:17',299050,NULL), -(5730,'woocommerce_scheduled_sales','complete','2025-11-09 22:04:17','2025-11-09 23:04:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762725857;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762725857;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-09 22:04:17','2025-11-09 23:04:17',300470,NULL), -(5731,'woocommerce_cancel_unpaid_orders','complete','2025-11-08 23:55:17','2025-11-09 00:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762646117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762646117;}',11,1,'2025-11-08 23:55:17','2025-11-09 00:55:17',299111,NULL), -(5732,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 00:55:17','2025-11-09 01:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762649717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762649717;}',11,1,'2025-11-09 00:55:17','2025-11-09 01:55:17',299172,NULL), -(5733,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 01:55:17','2025-11-09 02:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762653317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762653317;}',11,1,'2025-11-09 01:55:17','2025-11-09 02:55:17',299233,NULL), -(5734,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 02:55:17','2025-11-09 03:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762656917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762656917;}',11,1,'2025-11-09 02:55:17','2025-11-09 03:55:17',299294,NULL), -(5735,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 03:55:17','2025-11-09 04:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762660517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762660517;}',11,1,'2025-11-09 03:55:17','2025-11-09 04:55:17',299355,NULL), -(5736,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 04:55:17','2025-11-09 05:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762664117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762664117;}',11,1,'2025-11-09 04:55:17','2025-11-09 05:55:17',299416,NULL), -(5737,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 05:55:17','2025-11-09 06:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762667717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762667717;}',11,1,'2025-11-09 05:55:17','2025-11-09 06:55:17',299478,NULL), -(5739,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 06:55:17','2025-11-09 07:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762671317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762671317;}',11,1,'2025-11-09 06:55:17','2025-11-09 07:55:17',299539,NULL), -(5740,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 07:55:17','2025-11-09 08:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762674917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762674917;}',11,1,'2025-11-09 07:55:17','2025-11-09 08:55:17',299602,NULL), -(5741,'wc_admin_daily_wrapper','complete','2025-11-10 07:23:17','2025-11-10 08:23:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762759397;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762759397;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-10 07:23:18','2025-11-10 08:23:18',301040,NULL), -(5742,'woocommerce_cleanup_personal_data','complete','2025-11-10 07:23:17','2025-11-10 08:23:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762759397;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762759397;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-10 07:23:18','2025-11-10 08:23:18',301040,NULL), -(5743,'woocommerce_cleanup_sessions','complete','2025-11-10 05:00:00','2025-11-10 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762750800;s:18:\"\0*\0first_timestamp\";i:1762750800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762750800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-10 05:00:17','2025-11-10 06:00:17',300894,NULL), -(5744,'generate_category_lookup_table_wrapper','complete','2025-11-09 07:23:27','2025-11-09 08:23:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762673007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762673007;}',11,1,'2025-11-09 07:24:17','2025-11-09 08:24:17',299570,NULL), -(5745,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-10 07:23:17','2025-11-10 08:23:17',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762759397;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762759397;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-10 07:23:18','2025-11-10 08:23:18',301040,NULL), -(5746,'woocommerce_refresh_order_count_cache','complete','2025-11-09 19:24:17','2025-11-09 20:24:17',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762716257;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762716257;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-09 19:24:17','2025-11-09 20:24:17',300306,NULL), -(5747,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 08:55:17','2025-11-09 09:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762678517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762678517;}',11,1,'2025-11-09 08:55:17','2025-11-09 09:55:17',299663,NULL), -(5748,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 09:55:17','2025-11-09 10:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762682117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762682117;}',11,1,'2025-11-09 09:55:17','2025-11-09 10:55:17',299724,NULL), -(5749,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 10:55:17','2025-11-09 11:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762685717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762685717;}',11,1,'2025-11-09 10:55:17','2025-11-09 11:55:17',299787,NULL), -(5750,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-10 10:22:17','2025-11-10 11:22:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762770137;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762770137;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-10 10:22:17','2025-11-10 11:22:17',301225,NULL), -(5751,'woocommerce_cleanup_logs','complete','2025-11-10 10:24:17','2025-11-10 11:24:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762770257;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762770257;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-10 10:24:17','2025-11-10 11:24:17',301228,NULL), -(5752,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 11:55:17','2025-11-09 12:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762689317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762689317;}',11,1,'2025-11-09 11:55:17','2025-11-09 12:55:17',299848,NULL), -(5753,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 12:55:17','2025-11-09 13:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762692917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762692917;}',11,1,'2025-11-09 12:55:17','2025-11-09 13:55:17',299909,NULL), -(5754,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 13:55:17','2025-11-09 14:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762696517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762696517;}',11,1,'2025-11-09 13:55:17','2025-11-09 14:55:17',299970,NULL), -(5755,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 14:55:17','2025-11-09 15:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762700117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762700117;}',11,1,'2025-11-09 14:55:17','2025-11-09 15:55:17',300031,NULL), -(5756,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 15:55:17','2025-11-09 16:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762703717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762703717;}',11,1,'2025-11-09 15:55:17','2025-11-09 16:55:17',300092,NULL), -(5757,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 16:55:17','2025-11-09 17:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762707317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762707317;}',11,1,'2025-11-09 16:55:17','2025-11-09 17:55:17',300153,NULL), -(5758,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 17:55:17','2025-11-09 18:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762710917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762710917;}',11,1,'2025-11-09 17:55:17','2025-11-09 18:55:17',300214,NULL), -(5759,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 18:55:17','2025-11-09 19:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762714517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762714517;}',11,1,'2025-11-09 18:55:17','2025-11-09 19:55:17',300276,NULL), -(5760,'woocommerce_cleanup_draft_orders','complete','2025-11-10 18:42:17','2025-11-10 19:42:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762800137;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762800137;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-10 18:42:17','2025-11-10 19:42:17',301740,NULL), -(5761,'wp_mail_smtp_admin_notifications_update','complete','2025-11-10 18:42:17','2025-11-10 19:42:17',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762800137;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762800137;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-10 18:42:17','2025-11-10 19:42:17',301740,NULL), -(5762,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 19:55:17','2025-11-09 20:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762718117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762718117;}',11,1,'2025-11-09 19:55:17','2025-11-09 20:55:17',300338,NULL), -(5763,'woocommerce_refresh_order_count_cache','complete','2025-11-10 07:24:17','2025-11-10 08:24:17',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762759457;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762759457;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-10 07:25:17','2025-11-10 08:25:17',301044,NULL), -(5764,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 20:55:17','2025-11-09 21:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762721717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762721717;}',11,1,'2025-11-09 20:55:17','2025-11-09 21:55:17',300399,NULL), -(5765,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 21:55:17','2025-11-09 22:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762725317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762725317;}',11,1,'2025-11-09 21:55:17','2025-11-09 22:55:17',300460,NULL), -(5766,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 22:55:17','2025-11-09 23:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762728917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762728917;}',11,1,'2025-11-09 22:55:17','2025-11-09 23:55:17',300522,NULL), -(5767,'woocommerce_scheduled_sales','complete','2025-11-10 22:04:17','2025-11-10 23:04:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762812257;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762812257;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-10 22:04:17','2025-11-10 23:04:17',301948,NULL), -(5768,'woocommerce_cancel_unpaid_orders','complete','2025-11-09 23:55:17','2025-11-10 00:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762732517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762732517;}',11,1,'2025-11-09 23:55:17','2025-11-10 00:55:17',300583,NULL), -(5769,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 00:55:17','2025-11-10 01:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762736117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762736117;}',11,1,'2025-11-10 00:55:17','2025-11-10 01:55:17',300644,NULL), -(5770,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 01:55:17','2025-11-10 02:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762739717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762739717;}',11,1,'2025-11-10 01:55:17','2025-11-10 02:55:17',300705,NULL), -(5771,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 02:55:17','2025-11-10 03:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762743317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762743317;}',11,1,'2025-11-10 02:55:17','2025-11-10 03:55:17',300766,NULL), -(5772,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 03:55:17','2025-11-10 04:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762746917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762746917;}',11,1,'2025-11-10 03:55:17','2025-11-10 04:55:17',300827,NULL), -(5773,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 04:55:17','2025-11-10 05:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762750517;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762750517;}',11,1,'2025-11-10 04:55:17','2025-11-10 05:55:17',300888,NULL), -(5774,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 05:55:17','2025-11-10 06:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762754117;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762754117;}',11,1,'2025-11-10 05:55:17','2025-11-10 06:55:17',300950,NULL), -(5776,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 06:55:17','2025-11-10 07:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762757717;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762757717;}',11,1,'2025-11-10 06:55:17','2025-11-10 07:55:17',301011,NULL), -(5777,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 07:55:17','2025-11-10 08:55:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762761317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762761317;}',11,1,'2025-11-10 07:55:26','2025-11-10 08:55:26',301076,NULL), -(5778,'wc_admin_daily_wrapper','complete','2025-11-11 07:23:18','2025-11-11 08:23:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762845798;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762845798;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-11 07:24:18','2025-11-11 08:24:18',302519,NULL), -(5779,'woocommerce_cleanup_personal_data','complete','2025-11-11 07:23:18','2025-11-11 08:23:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762845798;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762845798;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-11 07:24:18','2025-11-11 08:24:18',302519,NULL), -(5780,'woocommerce_cleanup_sessions','complete','2025-11-11 05:00:00','2025-11-11 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762837200;s:18:\"\0*\0first_timestamp\";i:1762837200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762837200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-11 05:00:18','2025-11-11 06:00:18',302372,NULL), -(5781,'generate_category_lookup_table_wrapper','complete','2025-11-10 07:23:28','2025-11-10 08:23:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762759408;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762759408;}',11,1,'2025-11-10 07:23:37','2025-11-10 08:23:37',301042,NULL), -(5782,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-11 07:23:18','2025-11-11 08:23:18',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762845798;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762845798;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-11 07:24:18','2025-11-11 08:24:18',302519,NULL), -(5783,'woocommerce_refresh_order_count_cache','complete','2025-11-10 19:25:17','2025-11-10 20:25:17',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762802717;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762802717;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-10 19:25:17','2025-11-10 20:25:17',301785,NULL), -(5784,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 08:55:26','2025-11-10 09:55:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762764926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762764926;}',11,1,'2025-11-10 08:56:17','2025-11-10 09:56:17',301137,NULL), -(5785,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 09:56:17','2025-11-10 10:56:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762768577;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762768577;}',11,1,'2025-11-10 09:56:17','2025-11-10 10:56:17',301198,NULL), -(5786,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 10:56:17','2025-11-10 11:56:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762772177;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762772177;}',11,1,'2025-11-10 10:56:17','2025-11-10 11:56:17',301261,NULL), -(5787,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-11 10:22:17','2025-11-11 11:22:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762856537;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762856537;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-11 10:22:18','2025-11-11 11:22:18',302702,NULL), -(5788,'woocommerce_cleanup_logs','complete','2025-11-11 10:24:17','2025-11-11 11:24:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762856657;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762856657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-11 10:24:18','2025-11-11 11:24:18',302705,NULL), -(5789,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 11:56:17','2025-11-10 12:56:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762775777;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762775777;}',11,1,'2025-11-10 11:56:17','2025-11-10 12:56:17',301322,NULL), -(5790,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 12:56:17','2025-11-10 13:56:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762779377;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762779377;}',11,1,'2025-11-10 12:57:17','2025-11-10 13:57:17',301386,NULL), -(5791,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-10 12:28:01','2025-11-10 13:28:01',10,'[1406,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762777681;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762777681;}',3,1,'2025-11-10 12:28:27','2025-11-10 13:28:27',301356,NULL), -(5792,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-10 12:30:02','2025-11-10 13:30:02',10,'[1401,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762777802;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762777802;}',3,1,'2025-11-10 12:30:27','2025-11-10 13:30:27',301359,NULL), -(5793,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 13:57:17','2025-11-10 14:57:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762783037;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762783037;}',11,1,'2025-11-10 13:57:17','2025-11-10 14:57:17',301449,NULL), -(5794,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-10 13:03:21','2025-11-10 14:03:21',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762779801;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762779801;}',3,1,'2025-11-10 13:03:26','2025-11-10 14:03:26',301394,NULL), -(5795,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-10 13:06:30','2025-11-10 14:06:30',10,'[953,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762779990;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762779990;}',3,1,'2025-11-10 13:08:17','2025-11-10 14:08:17',301399,NULL), -(5796,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 14:57:17','2025-11-10 15:57:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762786637;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762786637;}',11,1,'2025-11-10 14:57:17','2025-11-10 15:57:17',301510,NULL), -(5797,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 15:57:17','2025-11-10 16:57:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762790237;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762790237;}',11,1,'2025-11-10 15:57:17','2025-11-10 16:57:17',301571,NULL), -(5798,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 16:57:17','2025-11-10 17:57:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762793837;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762793837;}',11,1,'2025-11-10 16:58:17','2025-11-10 17:58:17',301634,NULL), -(5799,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-10 16:33:05','2025-11-10 17:33:05',10,'[1491,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762792385;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762792385;}',3,1,'2025-11-10 16:33:27','2025-11-10 17:33:27',301609,NULL), -(5800,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 17:58:17','2025-11-10 18:58:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762797497;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762797497;}',11,1,'2025-11-10 17:59:17','2025-11-10 18:59:17',301696,NULL), -(5801,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 18:59:17','2025-11-10 19:59:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762801157;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762801157;}',11,1,'2025-11-10 18:59:17','2025-11-10 19:59:17',301758,NULL), -(5802,'woocommerce_cleanup_draft_orders','complete','2025-11-11 18:42:17','2025-11-11 19:42:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762886537;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762886537;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-11 18:42:18','2025-11-11 19:42:18',303212,NULL), -(5803,'wp_mail_smtp_admin_notifications_update','complete','2025-11-11 18:42:17','2025-11-11 19:42:17',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762886537;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762886537;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-11 18:42:18','2025-11-11 19:42:18',303212,NULL), -(5804,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 19:59:17','2025-11-10 20:59:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762804757;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762804757;}',11,1,'2025-11-10 19:59:17','2025-11-10 20:59:17',301820,NULL), -(5805,'woocommerce_refresh_order_count_cache','complete','2025-11-11 07:25:17','2025-11-11 08:25:17',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762845917;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762845917;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-11 07:25:18','2025-11-11 08:25:18',302521,NULL), -(5806,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 20:59:17','2025-11-10 21:59:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762808357;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762808357;}',11,1,'2025-11-10 20:59:17','2025-11-10 21:59:17',301881,NULL), -(5807,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 21:59:17','2025-11-10 22:59:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762811957;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762811957;}',11,1,'2025-11-10 21:59:18','2025-11-10 22:59:18',301942,NULL), -(5808,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 22:59:18','2025-11-10 23:59:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762815558;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762815558;}',11,1,'2025-11-10 22:59:31','2025-11-10 23:59:31',302005,NULL), -(5809,'woocommerce_scheduled_sales','complete','2025-11-11 22:04:17','2025-11-11 23:04:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762898657;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762898657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-11 22:04:18','2025-11-11 23:04:18',303420,NULL), -(5810,'woocommerce_cancel_unpaid_orders','complete','2025-11-10 23:59:31','2025-11-11 00:59:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762819171;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762819171;}',11,1,'2025-11-11 00:00:17','2025-11-11 01:00:17',302066,NULL), -(5811,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 01:00:17','2025-11-11 02:00:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762822817;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762822817;}',11,1,'2025-11-11 01:00:17','2025-11-11 02:00:17',302127,NULL), -(5812,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 02:00:17','2025-11-11 03:00:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762826417;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762826417;}',11,1,'2025-11-11 02:00:17','2025-11-11 03:00:17',302188,NULL), -(5813,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 03:00:17','2025-11-11 04:00:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762830017;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762830017;}',11,1,'2025-11-11 03:00:18','2025-11-11 04:00:18',302249,NULL), -(5814,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 04:00:17','2025-11-11 05:00:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762833617;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762833617;}',11,1,'2025-11-11 04:00:18','2025-11-11 05:00:18',302310,NULL), -(5815,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 05:00:18','2025-11-11 06:00:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762837218;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762837218;}',11,1,'2025-11-11 05:00:18','2025-11-11 06:00:18',302372,NULL), -(5816,'wp_mail_smtp_summary_report_email','complete','2025-11-18 04:07:18','2025-11-18 05:07:18',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763438838;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763438838;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-11-18 04:07:20','2025-11-18 05:07:20',312620,NULL), -(5818,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 06:00:18','2025-11-11 07:00:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762840818;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762840818;}',11,1,'2025-11-11 06:00:18','2025-11-11 07:00:18',302433,NULL), -(5819,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 07:00:18','2025-11-11 08:00:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762844418;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762844418;}',11,1,'2025-11-11 07:01:18','2025-11-11 08:01:18',302495,NULL), -(5820,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 08:01:18','2025-11-11 09:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762848078;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762848078;}',11,1,'2025-11-11 08:01:18','2025-11-11 09:01:18',302558,NULL), -(5821,'wc_admin_daily_wrapper','complete','2025-11-12 07:24:18','2025-11-12 08:24:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762932258;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762932258;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-12 07:25:18','2025-11-12 08:25:18',303992,NULL), -(5822,'woocommerce_cleanup_personal_data','complete','2025-11-12 07:24:18','2025-11-12 08:24:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762932258;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762932258;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-12 07:25:18','2025-11-12 08:25:18',303992,NULL), -(5823,'woocommerce_cleanup_sessions','complete','2025-11-12 05:00:00','2025-11-12 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762923600;s:18:\"\0*\0first_timestamp\";i:1762923600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762923600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-12 05:00:18','2025-11-12 06:00:18',303843,NULL), -(5824,'generate_category_lookup_table_wrapper','complete','2025-11-11 07:24:28','2025-11-11 08:24:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762845868;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762845868;}',11,1,'2025-11-11 07:25:18','2025-11-11 08:25:18',302521,NULL), -(5825,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-12 07:24:18','2025-11-12 08:24:18',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762932258;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762932258;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-12 07:25:18','2025-11-12 08:25:18',303992,NULL), -(5826,'woocommerce_refresh_order_count_cache','complete','2025-11-11 19:25:18','2025-11-11 20:25:18',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762889118;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762889118;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-11 19:25:18','2025-11-11 20:25:18',303257,NULL), -(5827,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 09:01:18','2025-11-11 10:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762851678;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762851678;}',11,1,'2025-11-11 09:01:18','2025-11-11 10:01:18',302619,NULL), -(5828,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 10:01:18','2025-11-11 11:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762855278;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762855278;}',11,1,'2025-11-11 10:01:18','2025-11-11 11:01:18',302680,NULL), -(5829,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 11:01:18','2025-11-11 12:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762858878;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762858878;}',11,1,'2025-11-11 11:01:18','2025-11-11 12:01:18',302743,NULL), -(5830,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-12 10:22:18','2025-11-12 11:22:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762942938;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762942938;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-12 10:22:18','2025-11-12 11:22:18',304174,NULL), -(5831,'woocommerce_cleanup_logs','complete','2025-11-12 10:24:18','2025-11-12 11:24:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762943058;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762943058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-12 10:24:18','2025-11-12 11:24:18',304177,NULL), -(5832,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 12:01:18','2025-11-11 13:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762862478;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762862478;}',11,1,'2025-11-11 12:01:18','2025-11-11 13:01:18',302804,NULL), -(5833,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 13:01:18','2025-11-11 14:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762866078;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762866078;}',11,1,'2025-11-11 13:01:18','2025-11-11 14:01:18',302865,NULL), -(5834,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 14:01:18','2025-11-11 15:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762869678;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762869678;}',11,1,'2025-11-11 14:01:18','2025-11-11 15:01:18',302926,NULL), -(5835,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 15:01:18','2025-11-11 16:01:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762873278;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762873278;}',11,1,'2025-11-11 15:02:18','2025-11-11 16:02:18',302988,NULL), -(5836,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 16:02:18','2025-11-11 17:02:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762876938;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762876938;}',11,1,'2025-11-11 16:02:18','2025-11-11 17:02:18',303049,NULL), -(5837,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 17:02:18','2025-11-11 18:02:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762880538;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762880538;}',11,1,'2025-11-11 17:02:18','2025-11-11 18:02:18',303110,NULL), -(5838,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 18:02:18','2025-11-11 19:02:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762884138;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762884138;}',11,1,'2025-11-11 18:02:18','2025-11-11 19:02:18',303171,NULL), -(5839,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 19:02:18','2025-11-11 20:02:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762887738;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762887738;}',11,1,'2025-11-11 19:03:18','2025-11-11 20:03:18',303234,NULL), -(5840,'woocommerce_cleanup_draft_orders','complete','2025-11-12 18:42:18','2025-11-12 19:42:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762972938;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762972938;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-12 18:42:18','2025-11-12 19:42:18',304684,NULL), -(5841,'wp_mail_smtp_admin_notifications_update','complete','2025-11-12 18:42:18','2025-11-12 19:42:18',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762972938;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762972938;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-12 18:42:18','2025-11-12 19:42:18',304684,NULL), -(5842,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 20:03:18','2025-11-11 21:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762891398;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762891398;}',11,1,'2025-11-11 20:03:18','2025-11-11 21:03:18',303296,NULL), -(5843,'woocommerce_refresh_order_count_cache','complete','2025-11-12 07:25:18','2025-11-12 08:25:18',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762932318;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762932318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-12 07:25:18','2025-11-12 08:25:18',303992,NULL), -(5844,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 21:03:18','2025-11-11 22:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762894998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762894998;}',11,1,'2025-11-11 21:03:18','2025-11-11 22:03:18',303357,NULL), -(5845,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 22:03:18','2025-11-11 23:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762898598;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762898598;}',11,1,'2025-11-11 22:03:18','2025-11-11 23:03:18',303418,NULL), -(5846,'woocommerce_cancel_unpaid_orders','complete','2025-11-11 23:03:18','2025-11-12 00:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762902198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762902198;}',11,1,'2025-11-11 23:03:18','2025-11-12 00:03:18',303480,NULL), -(5847,'woocommerce_scheduled_sales','complete','2025-11-12 22:04:18','2025-11-12 23:04:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762985058;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762985058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-12 22:04:18','2025-11-12 23:04:18',304891,NULL), -(5848,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 00:03:18','2025-11-12 01:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762905798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762905798;}',11,1,'2025-11-12 00:03:18','2025-11-12 01:03:18',303541,NULL), -(5849,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 01:03:18','2025-11-12 02:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762909398;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762909398;}',11,1,'2025-11-12 01:03:18','2025-11-12 02:03:18',303602,NULL), -(5850,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 02:03:18','2025-11-12 03:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762912998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762912998;}',11,1,'2025-11-12 02:03:18','2025-11-12 03:03:18',303663,NULL), -(5851,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 03:03:18','2025-11-12 04:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762916598;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762916598;}',11,1,'2025-11-12 03:03:18','2025-11-12 04:03:18',303724,NULL), -(5852,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 04:03:18','2025-11-12 05:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762920198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762920198;}',11,1,'2025-11-12 04:03:18','2025-11-12 05:03:18',303785,NULL), -(5853,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 05:03:18','2025-11-12 06:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762923798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762923798;}',11,1,'2025-11-12 05:03:18','2025-11-12 06:03:18',303847,NULL), -(5855,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 06:03:18','2025-11-12 07:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762927398;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762927398;}',11,1,'2025-11-12 06:03:18','2025-11-12 07:03:18',303908,NULL), -(5856,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 07:03:18','2025-11-12 08:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762930998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762930998;}',11,1,'2025-11-12 07:03:18','2025-11-12 08:03:18',303969,NULL), -(5857,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 08:03:18','2025-11-12 09:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762934598;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762934598;}',11,1,'2025-11-12 08:03:18','2025-11-12 09:03:18',304032,NULL), -(5858,'wc_admin_daily_wrapper','complete','2025-11-13 07:25:18','2025-11-13 08:25:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763018718;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763018718;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-13 07:25:19','2025-11-13 08:25:19',305463,NULL), -(5859,'woocommerce_cleanup_personal_data','complete','2025-11-13 07:25:18','2025-11-13 08:25:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763018718;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763018718;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-13 07:25:19','2025-11-13 08:25:19',305463,NULL), -(5860,'woocommerce_refresh_order_count_cache','complete','2025-11-12 19:25:18','2025-11-12 20:25:18',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1762975518;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1762975518;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-12 19:25:18','2025-11-12 20:25:18',304729,NULL), -(5861,'woocommerce_cleanup_sessions','complete','2025-11-13 05:00:00','2025-11-13 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763010000;s:18:\"\0*\0first_timestamp\";i:1763010000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763010000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-13 05:01:18','2025-11-13 06:01:18',305315,NULL), -(5862,'generate_category_lookup_table_wrapper','complete','2025-11-12 07:25:28','2025-11-12 08:25:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762932328;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762932328;}',11,1,'2025-11-12 07:26:18','2025-11-12 08:26:18',303994,NULL), -(5863,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-13 07:25:18','2025-11-13 08:25:18',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763018718;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763018718;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-13 07:25:19','2025-11-13 08:25:19',305463,NULL), -(5864,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 09:03:18','2025-11-12 10:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762938198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762938198;}',11,1,'2025-11-12 09:03:18','2025-11-12 10:03:18',304093,NULL), -(5865,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 10:03:18','2025-11-12 11:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762941798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762941798;}',11,1,'2025-11-12 10:03:18','2025-11-12 11:03:18',304154,NULL), -(5866,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 11:03:18','2025-11-12 12:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762945398;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762945398;}',11,1,'2025-11-12 11:03:18','2025-11-12 12:03:18',304217,NULL), -(5867,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-13 10:22:18','2025-11-13 11:22:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763029338;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763029338;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-13 10:22:18','2025-11-13 11:22:18',305645,NULL), -(5868,'woocommerce_cleanup_logs','complete','2025-11-13 10:24:18','2025-11-13 11:24:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763029458;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763029458;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-13 10:24:18','2025-11-13 11:24:18',305648,NULL), -(5869,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 12:03:18','2025-11-12 13:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762948998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762948998;}',11,1,'2025-11-12 12:03:18','2025-11-12 13:03:18',304278,NULL), -(5870,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 13:03:18','2025-11-12 14:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762952598;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762952598;}',11,1,'2025-11-12 13:03:18','2025-11-12 14:03:18',304339,NULL), -(5871,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 14:03:18','2025-11-12 15:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762956198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762956198;}',11,1,'2025-11-12 14:03:18','2025-11-12 15:03:18',304400,NULL), -(5872,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 15:03:18','2025-11-12 16:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762959798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762959798;}',11,1,'2025-11-12 15:03:18','2025-11-12 16:03:18',304461,NULL), -(5873,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 16:03:18','2025-11-12 17:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762963398;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762963398;}',11,1,'2025-11-12 16:03:18','2025-11-12 17:03:18',304522,NULL), -(5874,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 17:03:18','2025-11-12 18:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762966998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762966998;}',11,1,'2025-11-12 17:03:18','2025-11-12 18:03:18',304583,NULL), -(5875,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 18:03:18','2025-11-12 19:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762970598;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762970598;}',11,1,'2025-11-12 18:03:18','2025-11-12 19:03:18',304644,NULL), -(5876,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 19:03:18','2025-11-12 20:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762974198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762974198;}',11,1,'2025-11-12 19:04:18','2025-11-12 20:04:18',304707,NULL), -(5877,'woocommerce_cleanup_draft_orders','complete','2025-11-13 18:42:18','2025-11-13 19:42:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763059338;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763059338;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-13 18:42:18','2025-11-13 19:42:18',306155,NULL), -(5878,'wp_mail_smtp_admin_notifications_update','complete','2025-11-13 18:42:18','2025-11-13 19:42:18',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763059338;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763059338;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-13 18:42:18','2025-11-13 19:42:18',306155,NULL), -(5879,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 20:04:18','2025-11-12 21:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762977858;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762977858;}',11,1,'2025-11-12 20:04:18','2025-11-12 21:04:18',304769,NULL), -(5880,'woocommerce_refresh_order_count_cache','complete','2025-11-13 07:25:18','2025-11-13 08:25:18',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763018718;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763018718;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-13 07:25:19','2025-11-13 08:25:19',305463,NULL), -(5881,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 21:04:18','2025-11-12 22:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762981458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762981458;}',11,1,'2025-11-12 21:04:18','2025-11-12 22:04:18',304830,NULL), -(5882,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 22:04:18','2025-11-12 23:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762985058;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762985058;}',11,1,'2025-11-12 22:04:18','2025-11-12 23:04:18',304891,NULL), -(5883,'woocommerce_scheduled_sales','complete','2025-11-13 22:04:18','2025-11-13 23:04:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763071458;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763071458;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-13 22:04:18','2025-11-13 23:04:18',306362,NULL), -(5884,'woocommerce_cancel_unpaid_orders','complete','2025-11-12 23:04:18','2025-11-13 00:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762988658;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762988658;}',11,1,'2025-11-12 23:04:18','2025-11-13 00:04:18',304952,NULL), -(5885,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 00:04:18','2025-11-13 01:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762992258;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762992258;}',11,1,'2025-11-13 00:04:18','2025-11-13 01:04:18',305013,NULL), -(5886,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 01:04:18','2025-11-13 02:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762995858;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762995858;}',11,1,'2025-11-13 01:04:18','2025-11-13 02:04:18',305074,NULL), -(5887,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 02:04:18','2025-11-13 03:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1762999458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1762999458;}',11,1,'2025-11-13 02:04:18','2025-11-13 03:04:18',305135,NULL), -(5888,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 03:04:18','2025-11-13 04:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763003058;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763003058;}',11,1,'2025-11-13 03:04:18','2025-11-13 04:04:18',305196,NULL), -(5889,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 04:04:18','2025-11-13 05:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763006658;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763006658;}',11,1,'2025-11-13 04:04:18','2025-11-13 05:04:18',305257,NULL), -(5890,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 05:04:18','2025-11-13 06:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763010258;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763010258;}',11,1,'2025-11-13 05:04:18','2025-11-13 06:04:18',305319,NULL), -(5892,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 06:04:18','2025-11-13 07:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763013858;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763013858;}',11,1,'2025-11-13 06:04:18','2025-11-13 07:04:18',305380,NULL), -(5893,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 07:04:18','2025-11-13 08:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763017458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763017458;}',11,1,'2025-11-13 07:04:18','2025-11-13 08:04:18',305441,NULL), -(5894,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 08:04:18','2025-11-13 09:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763021058;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763021058;}',11,1,'2025-11-13 08:04:18','2025-11-13 09:04:18',305504,NULL), -(5895,'wc_admin_daily_wrapper','complete','2025-11-14 07:25:19','2025-11-14 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763105119;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763105119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-14 07:25:19','2025-11-14 08:25:19',306935,NULL), -(5896,'woocommerce_cleanup_personal_data','complete','2025-11-14 07:25:19','2025-11-14 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763105119;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763105119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-14 07:25:19','2025-11-14 08:25:19',306935,NULL), -(5897,'woocommerce_refresh_order_count_cache','complete','2025-11-13 19:25:19','2025-11-13 20:25:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763061919;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763061919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-13 19:26:18','2025-11-13 20:26:18',306201,NULL), -(5898,'woocommerce_cleanup_sessions','complete','2025-11-14 05:00:00','2025-11-14 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763096400;s:18:\"\0*\0first_timestamp\";i:1763096400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763096400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-14 05:00:19','2025-11-14 06:00:19',306786,NULL), -(5899,'generate_category_lookup_table_wrapper','complete','2025-11-13 07:25:29','2025-11-13 08:25:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763018729;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763018729;}',11,1,'2025-11-13 07:26:18','2025-11-13 08:26:18',305465,NULL), -(5900,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-14 07:25:19','2025-11-14 08:25:19',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763105119;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763105119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-14 07:25:19','2025-11-14 08:25:19',306935,NULL), -(5901,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 09:04:18','2025-11-13 10:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763024658;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763024658;}',11,1,'2025-11-13 09:04:18','2025-11-13 10:04:18',305565,NULL), -(5902,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 10:04:18','2025-11-13 11:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763028258;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763028258;}',11,1,'2025-11-13 10:04:18','2025-11-13 11:04:18',305626,NULL), -(5903,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 11:04:18','2025-11-13 12:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763031858;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763031858;}',11,1,'2025-11-13 11:04:18','2025-11-13 12:04:18',305689,NULL), -(5904,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-14 10:22:18','2025-11-14 11:22:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763115738;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763115738;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-14 10:22:19','2025-11-14 11:22:19',307117,NULL), -(5905,'woocommerce_cleanup_logs','complete','2025-11-14 10:24:18','2025-11-14 11:24:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763115858;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763115858;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-14 10:24:27','2025-11-14 11:24:27',307121,NULL), -(5906,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 12:04:18','2025-11-13 13:04:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763035458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763035458;}',11,1,'2025-11-13 12:05:18','2025-11-13 13:05:18',305751,NULL), -(5907,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 13:05:18','2025-11-13 14:05:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763039118;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763039118;}',11,1,'2025-11-13 13:05:18','2025-11-13 14:05:18',305812,NULL), -(5908,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 14:05:18','2025-11-13 15:05:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763042718;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763042718;}',11,1,'2025-11-13 14:05:18','2025-11-13 15:05:18',305873,NULL), -(5909,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 15:05:18','2025-11-13 16:05:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763046318;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763046318;}',11,1,'2025-11-13 15:05:18','2025-11-13 16:05:18',305934,NULL), -(5910,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 16:05:18','2025-11-13 17:05:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763049918;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763049918;}',11,1,'2025-11-13 16:06:19','2025-11-13 17:06:19',305996,NULL), -(5911,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 17:06:18','2025-11-13 18:06:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763053578;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763053578;}',11,1,'2025-11-13 17:06:19','2025-11-13 18:06:19',306057,NULL), -(5912,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 18:06:18','2025-11-13 19:06:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763057178;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763057178;}',11,1,'2025-11-13 18:06:19','2025-11-13 19:06:19',306118,NULL), -(5913,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 19:06:19','2025-11-13 20:06:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763060779;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763060779;}',11,1,'2025-11-13 19:07:18','2025-11-13 20:07:18',306181,NULL), -(5914,'woocommerce_cleanup_draft_orders','complete','2025-11-14 18:42:18','2025-11-14 19:42:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763145738;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763145738;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-14 18:42:19','2025-11-14 19:42:19',307627,NULL), -(5915,'wp_mail_smtp_admin_notifications_update','complete','2025-11-14 18:42:18','2025-11-14 19:42:18',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763145738;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763145738;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-14 18:42:19','2025-11-14 19:42:19',307627,NULL), -(5916,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 20:07:18','2025-11-13 21:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763064438;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763064438;}',11,1,'2025-11-13 20:07:18','2025-11-13 21:07:18',306243,NULL), -(5917,'woocommerce_refresh_order_count_cache','complete','2025-11-14 07:26:18','2025-11-14 08:26:18',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763105178;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763105178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-14 07:26:19','2025-11-14 08:26:19',306937,NULL), -(5918,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 21:07:18','2025-11-13 22:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763068038;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763068038;}',11,1,'2025-11-13 21:07:18','2025-11-13 22:07:18',306304,NULL), -(5919,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 22:07:18','2025-11-13 23:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763071638;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763071638;}',11,1,'2025-11-13 22:07:18','2025-11-13 23:07:18',306366,NULL), -(5920,'woocommerce_scheduled_sales','complete','2025-11-14 22:04:18','2025-11-14 23:04:18',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763157858;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763157858;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-14 22:04:19','2025-11-14 23:04:19',307834,NULL), -(5921,'woocommerce_cancel_unpaid_orders','complete','2025-11-13 23:07:18','2025-11-14 00:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763075238;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763075238;}',11,1,'2025-11-13 23:07:18','2025-11-14 00:07:18',306427,NULL), -(5922,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 00:07:18','2025-11-14 01:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763078838;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763078838;}',11,1,'2025-11-14 00:07:18','2025-11-14 01:07:18',306488,NULL), -(5923,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 01:07:18','2025-11-14 02:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763082438;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763082438;}',11,1,'2025-11-14 01:07:18','2025-11-14 02:07:18',306549,NULL), -(5924,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 02:07:18','2025-11-14 03:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763086038;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763086038;}',11,1,'2025-11-14 02:07:18','2025-11-14 03:07:18',306610,NULL), -(5925,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 03:07:18','2025-11-14 04:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763089638;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763089638;}',11,1,'2025-11-14 03:07:19','2025-11-14 04:07:19',306671,NULL), -(5926,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 04:07:18','2025-11-14 05:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763093238;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763093238;}',11,1,'2025-11-14 04:07:19','2025-11-14 05:07:19',306732,NULL), -(5927,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 05:07:18','2025-11-14 06:07:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763096838;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763096838;}',11,1,'2025-11-14 05:07:19','2025-11-14 06:07:19',306794,NULL), -(5929,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 06:07:19','2025-11-14 07:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763100439;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763100439;}',11,1,'2025-11-14 06:07:19','2025-11-14 07:07:19',306855,NULL), -(5930,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 07:07:19','2025-11-14 08:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763104039;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763104039;}',11,1,'2025-11-14 07:07:19','2025-11-14 08:07:19',306916,NULL), -(5931,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 08:07:19','2025-11-14 09:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763107639;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763107639;}',11,1,'2025-11-14 08:07:19','2025-11-14 09:07:19',306979,NULL), -(5932,'wc_admin_daily_wrapper','complete','2025-11-15 07:25:19','2025-11-15 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763191519;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763191519;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-15 07:25:19','2025-11-15 08:25:19',308407,NULL), -(5933,'woocommerce_cleanup_personal_data','complete','2025-11-15 07:25:19','2025-11-15 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763191519;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763191519;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-15 07:25:19','2025-11-15 08:25:19',308407,NULL), -(5934,'woocommerce_cleanup_sessions','complete','2025-11-15 05:00:00','2025-11-15 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763182800;s:18:\"\0*\0first_timestamp\";i:1763182800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763182800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-15 05:00:19','2025-11-15 06:00:19',308258,NULL), -(5935,'generate_category_lookup_table_wrapper','complete','2025-11-14 07:25:29','2025-11-14 08:25:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763105129;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763105129;}',11,1,'2025-11-14 07:26:19','2025-11-14 08:26:19',306937,NULL), -(5936,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-15 07:25:19','2025-11-15 08:25:19',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763191519;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763191519;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-15 07:25:19','2025-11-15 08:25:19',308407,NULL), -(5937,'woocommerce_refresh_order_count_cache','complete','2025-11-14 19:26:19','2025-11-14 20:26:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763148379;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763148379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-14 19:26:19','2025-11-14 20:26:19',307673,NULL), -(5938,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 09:07:19','2025-11-14 10:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763111239;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763111239;}',11,1,'2025-11-14 09:07:19','2025-11-14 10:07:19',307040,NULL), -(5939,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 10:07:19','2025-11-14 11:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763114839;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763114839;}',11,1,'2025-11-14 10:07:19','2025-11-14 11:07:19',307101,NULL), -(5940,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 11:07:19','2025-11-14 12:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763118439;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763118439;}',11,1,'2025-11-14 11:07:19','2025-11-14 12:07:19',307164,NULL), -(5941,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-15 10:22:19','2025-11-15 11:22:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763202139;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763202139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-15 10:22:19','2025-11-15 11:22:19',308589,NULL), -(5942,'woocommerce_cleanup_logs','complete','2025-11-15 10:24:27','2025-11-15 11:24:27',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763202267;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763202267;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-15 10:25:19','2025-11-15 11:25:19',308593,NULL), -(5943,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 12:07:19','2025-11-14 13:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763122039;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763122039;}',11,1,'2025-11-14 12:07:19','2025-11-14 13:07:19',307225,NULL), -(5944,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 13:07:19','2025-11-14 14:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763125639;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763125639;}',11,1,'2025-11-14 13:07:19','2025-11-14 14:07:19',307286,NULL), -(5945,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 14:07:19','2025-11-14 15:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763129239;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763129239;}',11,1,'2025-11-14 14:07:19','2025-11-14 15:07:19',307347,NULL), -(5946,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 15:07:19','2025-11-14 16:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763132839;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763132839;}',11,1,'2025-11-14 15:07:19','2025-11-14 16:07:19',307408,NULL), -(5947,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 16:07:19','2025-11-14 17:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763136439;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763136439;}',11,1,'2025-11-14 16:07:19','2025-11-14 17:07:19',307469,NULL), -(5948,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 17:07:19','2025-11-14 18:07:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763140039;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763140039;}',11,1,'2025-11-14 17:08:19','2025-11-14 18:08:19',307531,NULL), -(5949,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 18:08:19','2025-11-14 19:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763143699;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763143699;}',11,1,'2025-11-14 18:08:19','2025-11-14 19:08:19',307592,NULL), -(5950,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 19:08:19','2025-11-14 20:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763147299;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763147299;}',11,1,'2025-11-14 19:08:19','2025-11-14 20:08:19',307654,NULL), -(5951,'woocommerce_cleanup_draft_orders','complete','2025-11-15 18:42:19','2025-11-15 19:42:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763232139;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763232139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-15 18:42:19','2025-11-15 19:42:19',309099,NULL), -(5952,'wp_mail_smtp_admin_notifications_update','complete','2025-11-15 18:42:19','2025-11-15 19:42:19',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763232139;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763232139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-15 18:42:19','2025-11-15 19:42:19',309099,NULL), -(5953,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 20:08:19','2025-11-14 21:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763150899;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763150899;}',11,1,'2025-11-14 20:08:19','2025-11-14 21:08:19',307716,NULL), -(5954,'woocommerce_refresh_order_count_cache','complete','2025-11-15 07:26:19','2025-11-15 08:26:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763191579;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763191579;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-15 07:26:19','2025-11-15 08:26:19',308409,NULL), -(5955,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 21:08:19','2025-11-14 22:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763154499;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763154499;}',11,1,'2025-11-14 21:08:19','2025-11-14 22:08:19',307777,NULL), -(5956,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 22:08:19','2025-11-14 23:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763158099;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763158099;}',11,1,'2025-11-14 22:08:19','2025-11-14 23:08:19',307839,NULL), -(5957,'woocommerce_scheduled_sales','complete','2025-11-15 22:04:19','2025-11-15 23:04:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763244259;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763244259;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-15 22:04:19','2025-11-15 23:04:19',309306,NULL), -(5958,'woocommerce_cancel_unpaid_orders','complete','2025-11-14 23:08:19','2025-11-15 00:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763161699;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763161699;}',11,1,'2025-11-14 23:08:19','2025-11-15 00:08:19',307900,NULL), -(5959,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 00:08:19','2025-11-15 01:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763165299;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763165299;}',11,1,'2025-11-15 00:08:19','2025-11-15 01:08:19',307961,NULL), -(5960,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 01:08:19','2025-11-15 02:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763168899;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763168899;}',11,1,'2025-11-15 01:08:19','2025-11-15 02:08:19',308022,NULL), -(5961,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 02:08:19','2025-11-15 03:08:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763172499;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763172499;}',11,1,'2025-11-15 02:09:19','2025-11-15 03:09:19',308084,NULL), -(5962,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 03:09:19','2025-11-15 04:09:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763176159;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763176159;}',11,1,'2025-11-15 03:09:19','2025-11-15 04:09:19',308145,NULL), -(5963,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 04:09:19','2025-11-15 05:09:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763179759;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763179759;}',11,1,'2025-11-15 04:10:19','2025-11-15 05:10:19',308207,NULL), -(5964,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 05:10:19','2025-11-15 06:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763183419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763183419;}',11,1,'2025-11-15 05:10:19','2025-11-15 06:10:19',308269,NULL), -(5966,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 06:10:19','2025-11-15 07:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763187019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763187019;}',11,1,'2025-11-15 06:10:19','2025-11-15 07:10:19',308330,NULL), -(5967,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 07:10:19','2025-11-15 08:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763190619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763190619;}',11,1,'2025-11-15 07:10:19','2025-11-15 08:10:19',308391,NULL), -(5968,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 08:10:19','2025-11-15 09:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763194219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763194219;}',11,1,'2025-11-15 08:10:19','2025-11-15 09:10:19',308454,NULL), -(5969,'wc_admin_daily_wrapper','complete','2025-11-16 07:25:19','2025-11-16 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763277919;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763277919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-16 07:25:19','2025-11-16 08:25:19',309879,NULL), -(5970,'woocommerce_cleanup_personal_data','complete','2025-11-16 07:25:19','2025-11-16 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763277919;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763277919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-16 07:25:19','2025-11-16 08:25:19',309879,NULL), -(5971,'woocommerce_cleanup_sessions','complete','2025-11-16 05:00:00','2025-11-16 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763269200;s:18:\"\0*\0first_timestamp\";i:1763269200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763269200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-16 05:00:19','2025-11-16 06:00:19',309730,NULL), -(5972,'generate_category_lookup_table_wrapper','complete','2025-11-15 07:25:29','2025-11-15 08:25:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763191529;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763191529;}',11,1,'2025-11-15 07:26:19','2025-11-15 08:26:19',308409,NULL), -(5973,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-16 07:25:19','2025-11-16 08:25:19',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763277919;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763277919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-16 07:25:19','2025-11-16 08:25:19',309879,NULL), -(5974,'woocommerce_refresh_order_count_cache','complete','2025-11-15 19:26:19','2025-11-15 20:26:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763234779;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763234779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-15 19:26:19','2025-11-15 20:26:19',309145,NULL), -(5975,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 09:10:19','2025-11-15 10:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763197819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763197819;}',11,1,'2025-11-15 09:10:19','2025-11-15 10:10:19',308515,NULL), -(5976,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 10:10:19','2025-11-15 11:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763201419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763201419;}',11,1,'2025-11-15 10:10:19','2025-11-15 11:10:19',308576,NULL), -(5977,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 11:10:19','2025-11-15 12:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763205019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763205019;}',11,1,'2025-11-15 11:10:19','2025-11-15 12:10:19',308639,NULL), -(5978,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-16 10:22:19','2025-11-16 11:22:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763288539;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763288539;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-16 10:22:19','2025-11-16 11:22:19',310061,NULL), -(5979,'woocommerce_cleanup_logs','complete','2025-11-16 10:25:19','2025-11-16 11:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763288719;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763288719;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-16 10:25:19','2025-11-16 11:25:19',310065,NULL), -(5980,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 12:10:19','2025-11-15 13:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763208619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763208619;}',11,1,'2025-11-15 12:10:19','2025-11-15 13:10:19',308700,NULL), -(5981,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 13:10:19','2025-11-15 14:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763212219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763212219;}',11,1,'2025-11-15 13:10:19','2025-11-15 14:10:19',308761,NULL), -(5982,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 14:10:19','2025-11-15 15:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763215819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763215819;}',11,1,'2025-11-15 14:10:19','2025-11-15 15:10:19',308822,NULL), -(5983,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 15:10:19','2025-11-15 16:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763219419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763219419;}',11,1,'2025-11-15 15:10:19','2025-11-15 16:10:19',308883,NULL), -(5984,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 16:10:19','2025-11-15 17:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763223019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763223019;}',11,1,'2025-11-15 16:10:19','2025-11-15 17:10:19',308944,NULL), -(5985,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 17:10:19','2025-11-15 18:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763226619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763226619;}',11,1,'2025-11-15 17:10:19','2025-11-15 18:10:19',309005,NULL), -(5986,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 18:10:19','2025-11-15 19:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763230219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763230219;}',11,1,'2025-11-15 18:10:19','2025-11-15 19:10:19',309066,NULL), -(5987,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 19:10:19','2025-11-15 20:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763233819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763233819;}',11,1,'2025-11-15 19:10:19','2025-11-15 20:10:19',309128,NULL), -(5988,'woocommerce_cleanup_draft_orders','complete','2025-11-16 18:42:19','2025-11-16 19:42:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763318539;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763318539;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-16 18:42:19','2025-11-16 19:42:19',310571,NULL), -(5989,'wp_mail_smtp_admin_notifications_update','complete','2025-11-16 18:42:19','2025-11-16 19:42:19',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763318539;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763318539;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-16 18:42:19','2025-11-16 19:42:19',310571,NULL), -(5990,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 20:10:19','2025-11-15 21:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763237419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763237419;}',11,1,'2025-11-15 20:10:19','2025-11-15 21:10:19',309190,NULL), -(5991,'woocommerce_refresh_order_count_cache','complete','2025-11-16 07:26:19','2025-11-16 08:26:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763277979;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763277979;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-16 07:26:19','2025-11-16 08:26:19',309881,NULL), -(5992,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 21:10:19','2025-11-15 22:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763241019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763241019;}',11,1,'2025-11-15 21:10:19','2025-11-15 22:10:19',309251,NULL), -(5993,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 22:10:19','2025-11-15 23:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763244619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763244619;}',11,1,'2025-11-15 22:10:19','2025-11-15 23:10:19',309313,NULL), -(5994,'woocommerce_scheduled_sales','complete','2025-11-16 22:04:19','2025-11-16 23:04:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763330659;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763330659;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-16 22:05:19','2025-11-16 23:05:19',310779,NULL), -(5995,'woocommerce_cancel_unpaid_orders','complete','2025-11-15 23:10:19','2025-11-16 00:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763248219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763248219;}',11,1,'2025-11-15 23:10:19','2025-11-16 00:10:19',309374,NULL), -(5996,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 00:10:19','2025-11-16 01:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763251819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763251819;}',11,1,'2025-11-16 00:10:19','2025-11-16 01:10:19',309435,NULL), -(5997,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 01:10:19','2025-11-16 02:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763255419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763255419;}',11,1,'2025-11-16 01:10:19','2025-11-16 02:10:19',309496,NULL), -(5998,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 02:10:19','2025-11-16 03:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763259019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763259019;}',11,1,'2025-11-16 02:10:19','2025-11-16 03:10:19',309557,NULL), -(5999,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 03:10:19','2025-11-16 04:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763262619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763262619;}',11,1,'2025-11-16 03:10:19','2025-11-16 04:10:19',309618,NULL), -(6000,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 04:10:19','2025-11-16 05:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763266219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763266219;}',11,1,'2025-11-16 04:10:19','2025-11-16 05:10:19',309679,NULL), -(6001,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 05:10:19','2025-11-16 06:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763269819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763269819;}',11,1,'2025-11-16 05:10:19','2025-11-16 06:10:19',309741,NULL), -(6003,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 06:10:19','2025-11-16 07:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763273419;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763273419;}',11,1,'2025-11-16 06:10:19','2025-11-16 07:10:19',309802,NULL), -(6004,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 07:10:19','2025-11-16 08:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763277019;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763277019;}',11,1,'2025-11-16 07:10:19','2025-11-16 08:10:19',309863,NULL), -(6005,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 08:10:19','2025-11-16 09:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763280619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763280619;}',11,1,'2025-11-16 08:10:19','2025-11-16 09:10:19',309926,NULL), -(6006,'wc_admin_daily_wrapper','complete','2025-11-17 07:25:19','2025-11-17 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763364319;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763364319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-17 07:25:20','2025-11-17 08:25:20',311351,NULL), -(6007,'woocommerce_cleanup_personal_data','complete','2025-11-17 07:25:19','2025-11-17 08:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763364319;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763364319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-17 07:25:20','2025-11-17 08:25:20',311351,NULL), -(6008,'woocommerce_cleanup_sessions','complete','2025-11-17 05:00:00','2025-11-17 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763355600;s:18:\"\0*\0first_timestamp\";i:1763355600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763355600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-17 05:00:20','2025-11-17 06:00:20',311202,NULL), -(6009,'generate_category_lookup_table_wrapper','complete','2025-11-16 07:25:29','2025-11-16 08:25:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763277929;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763277929;}',11,1,'2025-11-16 07:26:19','2025-11-16 08:26:19',309881,NULL), -(6010,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-17 07:25:19','2025-11-17 08:25:19',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763364319;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763364319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-17 07:25:20','2025-11-17 08:25:20',311351,NULL), -(6011,'woocommerce_refresh_order_count_cache','complete','2025-11-16 19:26:19','2025-11-16 20:26:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763321179;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763321179;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-16 19:26:19','2025-11-16 20:26:19',310617,NULL), -(6012,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 09:10:19','2025-11-16 10:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763284219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763284219;}',11,1,'2025-11-16 09:10:19','2025-11-16 10:10:19',309987,NULL), -(6013,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 10:10:19','2025-11-16 11:10:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763287819;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763287819;}',11,1,'2025-11-16 10:11:19','2025-11-16 11:11:19',310049,NULL), -(6014,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 11:11:19','2025-11-16 12:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763291479;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763291479;}',11,1,'2025-11-16 11:11:19','2025-11-16 12:11:19',310112,NULL), -(6015,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-17 10:22:19','2025-11-17 11:22:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763374939;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763374939;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-17 10:22:20','2025-11-17 11:22:20',311533,NULL), -(6016,'woocommerce_cleanup_logs','complete','2025-11-17 10:25:19','2025-11-17 11:25:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763375119;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763375119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-17 10:25:20','2025-11-17 11:25:20',311537,NULL), -(6017,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 12:11:19','2025-11-16 13:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763295079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763295079;}',11,1,'2025-11-16 12:11:19','2025-11-16 13:11:19',310173,NULL), -(6018,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 13:11:19','2025-11-16 14:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763298679;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763298679;}',11,1,'2025-11-16 13:11:20','2025-11-16 14:11:20',310234,NULL), -(6019,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 14:11:19','2025-11-16 15:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763302279;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763302279;}',11,1,'2025-11-16 14:11:19','2025-11-16 15:11:19',310295,NULL), -(6020,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 15:11:19','2025-11-16 16:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763305879;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763305879;}',11,1,'2025-11-16 15:11:19','2025-11-16 16:11:19',310356,NULL), -(6021,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 16:11:19','2025-11-16 17:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763309479;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763309479;}',11,1,'2025-11-16 16:11:19','2025-11-16 17:11:19',310417,NULL), -(6022,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 17:11:19','2025-11-16 18:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763313079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763313079;}',11,1,'2025-11-16 17:11:19','2025-11-16 18:11:19',310478,NULL), -(6023,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 18:11:19','2025-11-16 19:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763316679;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763316679;}',11,1,'2025-11-16 18:11:19','2025-11-16 19:11:19',310539,NULL), -(6024,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 19:11:19','2025-11-16 20:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763320279;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763320279;}',11,1,'2025-11-16 19:11:19','2025-11-16 20:11:19',310601,NULL), -(6025,'woocommerce_cleanup_draft_orders','complete','2025-11-17 18:42:19','2025-11-17 19:42:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763404939;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763404939;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-17 18:42:20','2025-11-17 19:42:20',312043,NULL), -(6026,'wp_mail_smtp_admin_notifications_update','complete','2025-11-17 18:42:19','2025-11-17 19:42:19',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763404939;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763404939;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-17 18:42:20','2025-11-17 19:42:20',312043,NULL), -(6027,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 20:11:19','2025-11-16 21:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763323879;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763323879;}',11,1,'2025-11-16 20:11:19','2025-11-16 21:11:19',310663,NULL), -(6028,'woocommerce_refresh_order_count_cache','complete','2025-11-17 07:26:19','2025-11-17 08:26:19',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763364379;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763364379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-17 07:26:20','2025-11-17 08:26:20',311353,NULL), -(6029,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 21:11:19','2025-11-16 22:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763327479;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763327479;}',11,1,'2025-11-16 21:11:19','2025-11-16 22:11:19',310724,NULL), -(6030,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 22:11:19','2025-11-16 23:11:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763331079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763331079;}',11,1,'2025-11-16 22:11:20','2025-11-16 23:11:20',310786,NULL), -(6031,'woocommerce_scheduled_sales','complete','2025-11-17 22:05:19','2025-11-17 23:05:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763417119;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763417119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-17 22:05:20','2025-11-17 23:05:20',312251,NULL), -(6032,'woocommerce_cancel_unpaid_orders','complete','2025-11-16 23:11:20','2025-11-17 00:11:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763334680;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763334680;}',11,1,'2025-11-16 23:12:19','2025-11-17 00:12:19',310848,NULL), -(6033,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 00:12:19','2025-11-17 01:12:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763338339;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763338339;}',11,1,'2025-11-17 00:12:19','2025-11-17 01:12:19',310909,NULL), -(6034,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 01:12:19','2025-11-17 02:12:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763341939;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763341939;}',11,1,'2025-11-17 01:12:19','2025-11-17 02:12:19',310970,NULL), -(6035,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 02:12:19','2025-11-17 03:12:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763345539;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763345539;}',11,1,'2025-11-17 02:12:19','2025-11-17 03:12:19',311031,NULL), -(6036,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 03:12:19','2025-11-17 04:12:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763349139;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763349139;}',11,1,'2025-11-17 03:12:20','2025-11-17 04:12:20',311092,NULL), -(6037,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 04:12:20','2025-11-17 05:12:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763352740;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763352740;}',11,1,'2025-11-17 04:13:20','2025-11-17 05:13:20',311154,NULL), -(6038,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 05:13:20','2025-11-17 06:13:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763356400;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763356400;}',11,1,'2025-11-17 05:14:20','2025-11-17 06:14:20',311217,NULL), -(6040,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 06:14:20','2025-11-17 07:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763360060;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763360060;}',11,1,'2025-11-17 06:14:20','2025-11-17 07:14:20',311278,NULL), -(6041,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 07:14:20','2025-11-17 08:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763363660;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763363660;}',11,1,'2025-11-17 07:14:20','2025-11-17 08:14:20',311339,NULL), -(6042,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 08:14:20','2025-11-17 09:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763367260;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763367260;}',11,1,'2025-11-17 08:14:20','2025-11-17 09:14:20',311402,NULL), -(6043,'wc_admin_daily_wrapper','complete','2025-11-18 07:25:20','2025-11-18 08:25:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763450720;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763450720;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-18 07:25:20','2025-11-18 08:25:20',312824,NULL), -(6044,'woocommerce_cleanup_personal_data','complete','2025-11-18 07:25:20','2025-11-18 08:25:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763450720;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763450720;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-18 07:25:20','2025-11-18 08:25:20',312824,NULL), -(6045,'woocommerce_cleanup_sessions','complete','2025-11-18 05:00:00','2025-11-18 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763442000;s:18:\"\0*\0first_timestamp\";i:1763442000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763442000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-18 05:00:20','2025-11-18 06:00:20',312675,NULL), -(6046,'generate_category_lookup_table_wrapper','complete','2025-11-17 07:25:30','2025-11-17 08:25:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763364330;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763364330;}',11,1,'2025-11-17 07:26:20','2025-11-17 08:26:20',311353,NULL), -(6047,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-18 07:25:20','2025-11-18 08:25:20',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763450720;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763450720;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-18 07:25:20','2025-11-18 08:25:20',312824,NULL), -(6048,'woocommerce_refresh_order_count_cache','complete','2025-11-17 19:26:20','2025-11-17 20:26:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763407580;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763407580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-17 19:26:20','2025-11-17 20:26:20',312089,NULL), -(6049,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 09:14:20','2025-11-17 10:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763370860;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763370860;}',11,1,'2025-11-17 09:14:20','2025-11-17 10:14:20',311463,NULL), -(6050,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 10:14:20','2025-11-17 11:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763374460;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763374460;}',11,1,'2025-11-17 10:14:20','2025-11-17 11:14:20',311524,NULL), -(6051,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 11:14:20','2025-11-17 12:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763378060;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763378060;}',11,1,'2025-11-17 11:14:20','2025-11-17 12:14:20',311587,NULL), -(6052,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-18 10:22:20','2025-11-18 11:22:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763461340;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763461340;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-18 10:22:28','2025-11-18 11:22:28',313012,NULL), -(6053,'woocommerce_cleanup_logs','complete','2025-11-18 10:25:20','2025-11-18 11:25:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763461520;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763461520;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-18 10:25:36','2025-11-18 11:25:36',313018,NULL), -(6054,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 12:14:20','2025-11-17 13:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763381660;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763381660;}',11,1,'2025-11-17 12:14:20','2025-11-17 13:14:20',311648,NULL), -(6055,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 13:14:20','2025-11-17 14:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763385260;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763385260;}',11,1,'2025-11-17 13:14:20','2025-11-17 14:14:20',311709,NULL), -(6056,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 14:14:20','2025-11-17 15:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763388860;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763388860;}',11,1,'2025-11-17 14:14:20','2025-11-17 15:14:20',311770,NULL), -(6057,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 15:14:20','2025-11-17 16:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763392460;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763392460;}',11,1,'2025-11-17 15:14:20','2025-11-17 16:14:20',311831,NULL), -(6058,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 16:14:20','2025-11-17 17:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763396060;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763396060;}',11,1,'2025-11-17 16:14:20','2025-11-17 17:14:20',311892,NULL), -(6059,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 17:14:20','2025-11-17 18:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763399660;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763399660;}',11,1,'2025-11-17 17:14:38','2025-11-17 18:14:38',311954,NULL), -(6060,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 18:14:38','2025-11-17 19:14:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763403278;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763403278;}',11,1,'2025-11-17 18:15:20','2025-11-17 19:15:20',312015,NULL), -(6061,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 19:15:20','2025-11-17 20:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763406920;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763406920;}',11,1,'2025-11-17 19:15:20','2025-11-17 20:15:20',312077,NULL), -(6062,'woocommerce_cleanup_draft_orders','complete','2025-11-18 18:42:20','2025-11-18 19:42:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763491340;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763491340;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-18 18:42:20','2025-11-18 19:42:20',313523,NULL), -(6063,'wp_mail_smtp_admin_notifications_update','complete','2025-11-18 18:42:20','2025-11-18 19:42:20',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763491340;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763491340;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-18 18:42:20','2025-11-18 19:42:20',313523,NULL), -(6064,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 20:15:20','2025-11-17 21:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763410520;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763410520;}',11,1,'2025-11-17 20:15:20','2025-11-17 21:15:20',312139,NULL), -(6065,'woocommerce_refresh_order_count_cache','complete','2025-11-18 07:26:20','2025-11-18 08:26:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763450780;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763450780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-18 07:26:20','2025-11-18 08:26:20',312826,NULL), -(6066,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 21:15:20','2025-11-17 22:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763414120;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763414120;}',11,1,'2025-11-17 21:15:20','2025-11-17 22:15:20',312200,NULL), -(6067,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 22:15:20','2025-11-17 23:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763417720;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763417720;}',11,1,'2025-11-17 22:15:20','2025-11-17 23:15:20',312262,NULL), -(6068,'woocommerce_scheduled_sales','complete','2025-11-18 22:05:20','2025-11-18 23:05:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763503520;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763503520;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-18 22:05:20','2025-11-18 23:05:20',313731,NULL), -(6069,'woocommerce_cancel_unpaid_orders','complete','2025-11-17 23:15:20','2025-11-18 00:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763421320;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763421320;}',11,1,'2025-11-17 23:15:20','2025-11-18 00:15:20',312323,NULL), -(6070,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 00:15:20','2025-11-18 01:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763424920;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763424920;}',11,1,'2025-11-18 00:15:20','2025-11-18 01:15:20',312384,NULL), -(6071,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 01:15:20','2025-11-18 02:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763428520;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763428520;}',11,1,'2025-11-18 01:15:20','2025-11-18 02:15:20',312445,NULL), -(6072,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 02:15:20','2025-11-18 03:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763432120;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763432120;}',11,1,'2025-11-18 02:15:20','2025-11-18 03:15:20',312506,NULL), -(6073,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 03:15:20','2025-11-18 04:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763435720;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763435720;}',11,1,'2025-11-18 03:15:20','2025-11-18 04:15:20',312567,NULL), -(6074,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 04:15:20','2025-11-18 05:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763439320;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763439320;}',11,1,'2025-11-18 04:15:20','2025-11-18 05:15:20',312629,NULL), -(6075,'wp_mail_smtp_summary_report_email','complete','2025-11-25 04:07:20','2025-11-25 05:07:20',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764043640;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764043640;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-11-25 04:11:50','2025-11-25 05:11:50',318215,NULL), -(6076,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 05:15:20','2025-11-18 06:15:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763442920;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763442920;}',11,1,'2025-11-18 05:16:20','2025-11-18 06:16:20',312692,NULL), -(6078,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 06:16:20','2025-11-18 07:16:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763446580;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763446580;}',11,1,'2025-11-18 06:16:20','2025-11-18 07:16:20',312753,NULL), -(6079,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 07:16:20','2025-11-18 08:16:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763450180;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763450180;}',11,1,'2025-11-18 07:16:20','2025-11-18 08:16:20',312814,NULL), -(6080,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 08:16:20','2025-11-18 09:16:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763453780;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763453780;}',11,1,'2025-11-18 08:16:20','2025-11-18 09:16:20',312877,NULL), -(6081,'wc_admin_daily_wrapper','complete','2025-11-19 07:25:20','2025-11-19 08:25:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763537120;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763537120;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-19 07:25:21','2025-11-19 08:25:21',314311,NULL), -(6082,'woocommerce_cleanup_personal_data','complete','2025-11-19 07:25:20','2025-11-19 08:25:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763537120;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763537120;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-19 07:25:21','2025-11-19 08:25:21',314311,NULL), -(6083,'woocommerce_cleanup_sessions','complete','2025-11-19 05:00:00','2025-11-19 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763528400;s:18:\"\0*\0first_timestamp\";i:1763528400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763528400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-19 05:00:20','2025-11-19 06:00:20',314154,NULL), -(6084,'generate_category_lookup_table_wrapper','complete','2025-11-18 07:25:30','2025-11-18 08:25:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763450730;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763450730;}',11,1,'2025-11-18 07:26:20','2025-11-18 08:26:20',312826,NULL), -(6085,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-19 07:25:20','2025-11-19 08:25:20',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763537120;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763537120;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-19 07:25:21','2025-11-19 08:25:21',314311,NULL), -(6086,'woocommerce_refresh_order_count_cache','complete','2025-11-18 19:26:20','2025-11-18 20:26:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763493980;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763493980;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-18 19:26:20','2025-11-18 20:26:20',313569,NULL), -(6087,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 09:16:20','2025-11-18 10:16:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763457380;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763457380;}',11,1,'2025-11-18 09:16:20','2025-11-18 10:16:20',312940,NULL), -(6088,'wc-admin_import_orders','complete','2025-11-18 08:29:15','2025-11-18 09:29:15',10,'[1511]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763454555;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763454555;}',4,1,'2025-11-18 08:30:08','2025-11-18 09:30:08',312892,NULL), -(6089,'wc-admin_import_orders','complete','2025-11-18 08:30:13','2025-11-18 09:30:13',10,'[1511]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763454613;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763454613;}',4,1,'2025-11-18 08:31:20','2025-11-18 09:31:20',312894,NULL), -(6090,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 10:16:20','2025-11-18 11:16:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763460980;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763460980;}',11,1,'2025-11-18 10:16:27','2025-11-18 11:16:27',313004,NULL), -(6091,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-18 09:47:46','2025-11-18 10:47:46',10,'[1512,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763459266;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763459266;}',3,1,'2025-11-18 09:48:17','2025-11-18 10:48:17',312974,NULL), -(6092,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 11:16:27','2025-11-18 12:16:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763464587;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763464587;}',11,1,'2025-11-18 11:17:20','2025-11-18 12:17:20',313070,NULL), -(6093,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-18 10:18:11','2025-11-18 11:18:11',10,'[1512,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763461091;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763461091;}',3,1,'2025-11-18 10:18:27','2025-11-18 11:18:27',313007,NULL), -(6094,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-19 10:22:28','2025-11-19 11:22:28',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763547748;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763547748;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-19 10:22:34','2025-11-19 11:22:34',314501,NULL), -(6095,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-18 10:24:18','2025-11-18 11:24:18',10,'[1512,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763461458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763461458;}',3,1,'2025-11-18 10:24:20','2025-11-18 11:24:20',313015,NULL), -(6096,'woocommerce_cleanup_logs','complete','2025-11-19 10:25:36','2025-11-19 11:25:36',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763547936;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763547936;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-19 10:26:04','2025-11-19 11:26:04',314507,NULL), -(6097,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 12:17:20','2025-11-18 13:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763468240;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763468240;}',11,1,'2025-11-18 12:17:20','2025-11-18 13:17:20',313131,NULL), -(6098,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 13:17:20','2025-11-18 14:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763471840;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763471840;}',11,1,'2025-11-18 13:17:20','2025-11-18 14:17:20',313192,NULL), -(6099,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 14:17:20','2025-11-18 15:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763475440;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763475440;}',11,1,'2025-11-18 14:17:20','2025-11-18 15:17:20',313253,NULL), -(6100,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 15:17:20','2025-11-18 16:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763479040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763479040;}',11,1,'2025-11-18 15:17:20','2025-11-18 16:17:20',313314,NULL), -(6101,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 16:17:20','2025-11-18 17:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763482640;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763482640;}',11,1,'2025-11-18 16:17:20','2025-11-18 17:17:20',313375,NULL), -(6102,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 17:17:20','2025-11-18 18:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763486240;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763486240;}',11,1,'2025-11-18 17:17:20','2025-11-18 18:17:20',313436,NULL), -(6103,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 18:17:20','2025-11-18 19:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763489840;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763489840;}',11,1,'2025-11-18 18:17:20','2025-11-18 19:17:20',313497,NULL), -(6104,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 19:17:20','2025-11-18 20:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763493440;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763493440;}',11,1,'2025-11-18 19:17:20','2025-11-18 20:17:20',313559,NULL), -(6105,'woocommerce_cleanup_draft_orders','complete','2025-11-19 18:42:20','2025-11-19 19:42:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763577740;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763577740;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-19 18:42:20','2025-11-19 19:42:20',315012,NULL), -(6106,'wp_mail_smtp_admin_notifications_update','complete','2025-11-19 18:42:20','2025-11-19 19:42:20',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763577740;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763577740;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-19 18:42:20','2025-11-19 19:42:20',315012,NULL), -(6107,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 20:17:20','2025-11-18 21:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763497040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763497040;}',11,1,'2025-11-18 20:17:20','2025-11-18 21:17:20',313621,NULL), -(6108,'woocommerce_refresh_order_count_cache','complete','2025-11-19 07:26:20','2025-11-19 08:26:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763537180;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763537180;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-19 07:27:20','2025-11-19 08:27:20',314316,NULL), -(6109,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 21:17:20','2025-11-18 22:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763500640;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763500640;}',11,1,'2025-11-18 21:17:20','2025-11-18 22:17:20',313682,NULL), -(6110,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 22:17:20','2025-11-18 23:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763504240;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763504240;}',11,1,'2025-11-18 22:17:20','2025-11-18 23:17:20',313744,NULL), -(6111,'woocommerce_scheduled_sales','complete','2025-11-19 22:05:20','2025-11-19 23:05:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763589920;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763589920;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-19 22:05:20','2025-11-19 23:05:20',315220,NULL), -(6112,'woocommerce_cancel_unpaid_orders','complete','2025-11-18 23:17:20','2025-11-19 00:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763507840;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763507840;}',11,1,'2025-11-18 23:17:20','2025-11-19 00:17:20',313805,NULL), -(6113,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 00:17:20','2025-11-19 01:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763511440;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763511440;}',11,1,'2025-11-19 00:17:20','2025-11-19 01:17:20',313866,NULL), -(6114,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 01:17:20','2025-11-19 02:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763515040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763515040;}',11,1,'2025-11-19 01:17:20','2025-11-19 02:17:20',313927,NULL), -(6115,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 02:17:20','2025-11-19 03:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763518640;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763518640;}',11,1,'2025-11-19 02:17:20','2025-11-19 03:17:20',313988,NULL), -(6116,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 03:17:20','2025-11-19 04:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763522240;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763522240;}',11,1,'2025-11-19 03:17:20','2025-11-19 04:17:20',314049,NULL), -(6117,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 04:17:20','2025-11-19 05:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763525840;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763525840;}',11,1,'2025-11-19 04:17:20','2025-11-19 05:17:20',314110,NULL), -(6118,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 05:17:20','2025-11-19 06:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763529440;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763529440;}',11,1,'2025-11-19 05:17:20','2025-11-19 06:17:20',314172,NULL), -(6120,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 06:17:20','2025-11-19 07:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763533040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763533040;}',11,1,'2025-11-19 06:17:20','2025-11-19 07:17:20',314233,NULL), -(6121,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 07:17:20','2025-11-19 08:17:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536640;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536640;}',11,1,'2025-11-19 07:17:23','2025-11-19 08:17:23',314302,NULL), -(6122,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:01:24','2025-11-19 08:01:24',10,'[1516,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535684;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535684;}',3,1,'2025-11-19 07:01:26','2025-11-19 08:01:26',314279,NULL), -(6123,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:04:19','2025-11-19 08:04:19',10,'[1516,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535859;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535859;}',3,1,'2025-11-19 07:04:35','2025-11-19 08:04:35',314283,NULL), -(6124,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:05:53','2025-11-19 08:05:53',10,'[1011,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535953;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535953;}',3,1,'2025-11-19 07:06:21','2025-11-19 08:06:21',314286,NULL), -(6125,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:05:53','2025-11-19 08:05:53',10,'[1005,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535953;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535953;}',3,1,'2025-11-19 07:06:21','2025-11-19 08:06:21',314286,NULL), -(6126,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:05:53','2025-11-19 08:05:53',10,'[1004,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535953;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535953;}',3,1,'2025-11-19 07:06:21','2025-11-19 08:06:21',314286,NULL), -(6127,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:11','2025-11-19 08:06:11',10,'[926,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535971;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535971;}',3,1,'2025-11-19 07:06:21','2025-11-19 08:06:21',314286,NULL), -(6128,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:11','2025-11-19 08:06:11',10,'[523,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535971;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535971;}',3,1,'2025-11-19 07:06:21','2025-11-19 08:06:21',314286,NULL), -(6129,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:11','2025-11-19 08:06:11',10,'[521,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535971;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535971;}',3,1,'2025-11-19 07:06:21','2025-11-19 08:06:21',314286,NULL), -(6130,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:23','2025-11-19 08:06:23',10,'[515,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763535983;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763535983;}',3,1,'2025-11-19 07:06:27','2025-11-19 08:06:27',314288,NULL), -(6131,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[532,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6132,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[134,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6133,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[135,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6134,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[136,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6135,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[137,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6136,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[138,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6137,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[139,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6138,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[140,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6139,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:06:49','2025-11-19 08:06:49',10,'[133,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536009;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6140,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:07:16','2025-11-19 08:07:16',10,'[1520,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536036;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6141,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:07:16','2025-11-19 08:07:16',10,'[1521,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536036;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6142,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:07:16','2025-11-19 08:07:16',10,'[1522,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536036;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6143,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:07:16','2025-11-19 08:07:16',10,'[1523,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536036;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6144,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 07:07:16','2025-11-19 08:07:16',10,'[1520,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763536036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763536036;}',3,1,'2025-11-19 07:07:27','2025-11-19 08:07:27',314291,NULL), -(6145,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 08:17:23','2025-11-19 09:17:23',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763540243;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763540243;}',11,1,'2025-11-19 08:18:20','2025-11-19 09:18:20',314368,NULL), -(6146,'wc_admin_daily_wrapper','complete','2025-11-20 07:25:21','2025-11-20 08:25:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763623521;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763623521;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-20 07:25:21','2025-11-20 08:25:21',315792,NULL), -(6147,'woocommerce_cleanup_personal_data','complete','2025-11-20 07:25:21','2025-11-20 08:25:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763623521;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763623521;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-20 07:25:21','2025-11-20 08:25:21',315792,NULL), -(6148,'woocommerce_cleanup_sessions','complete','2025-11-20 05:00:00','2025-11-20 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763614800;s:18:\"\0*\0first_timestamp\";i:1763614800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763614800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-20 05:00:21','2025-11-20 06:00:21',315643,NULL), -(6149,'generate_category_lookup_table_wrapper','complete','2025-11-19 07:25:31','2025-11-19 08:25:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763537131;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763537131;}',11,1,'2025-11-19 07:26:01','2025-11-19 08:26:01',314313,NULL), -(6150,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-20 07:25:21','2025-11-20 08:25:21',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763623521;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763623521;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-20 07:25:21','2025-11-20 08:25:21',315792,NULL), -(6151,'woocommerce_refresh_order_count_cache','complete','2025-11-19 19:27:20','2025-11-19 20:27:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763580440;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763580440;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-19 19:27:20','2025-11-19 20:27:20',315059,NULL), -(6152,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 09:18:20','2025-11-19 10:18:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763543900;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763543900;}',11,1,'2025-11-19 09:18:20','2025-11-19 10:18:20',314429,NULL), -(6153,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 10:18:20','2025-11-19 11:18:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763547500;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763547500;}',11,1,'2025-11-19 10:18:34','2025-11-19 11:18:34',314496,NULL), -(6154,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:09:27','2025-11-19 11:09:27',10,'[1521,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763546967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763546967;}',3,1,'2025-11-19 10:09:59','2025-11-19 11:09:59',314483,NULL), -(6155,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:09:27','2025-11-19 11:09:27',10,'[1522,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763546967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763546967;}',3,1,'2025-11-19 10:09:59','2025-11-19 11:09:59',314483,NULL), -(6156,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:09:27','2025-11-19 11:09:27',10,'[1523,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763546967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763546967;}',3,1,'2025-11-19 10:09:59','2025-11-19 11:09:59',314483,NULL), -(6157,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:09:27','2025-11-19 11:09:27',10,'[1520,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763546967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763546967;}',3,1,'2025-11-19 10:09:59','2025-11-19 11:09:59',314483,NULL), -(6158,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:10:24','2025-11-19 11:10:24',10,'[638,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763547024;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763547024;}',3,1,'2025-11-19 10:10:27','2025-11-19 11:10:27',314485,NULL), -(6159,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:10:24','2025-11-19 11:10:24',10,'[637,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763547024;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763547024;}',3,1,'2025-11-19 10:10:27','2025-11-19 11:10:27',314485,NULL), -(6160,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:10:24','2025-11-19 11:10:24',10,'[639,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763547024;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763547024;}',3,1,'2025-11-19 10:10:27','2025-11-19 11:10:27',314485,NULL), -(6161,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-19 10:10:28','2025-11-19 11:10:28',10,'[202,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763547028;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763547028;}',3,1,'2025-11-19 10:11:03','2025-11-19 11:11:03',314487,NULL), -(6162,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 11:18:34','2025-11-19 12:18:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763551114;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763551114;}',11,1,'2025-11-19 11:18:36','2025-11-19 12:18:36',314561,NULL), -(6163,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-20 10:22:34','2025-11-20 11:22:34',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763634154;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763634154;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-20 10:23:21','2025-11-20 11:23:21',315976,NULL), -(6164,'woocommerce_cleanup_logs','complete','2025-11-20 10:26:04','2025-11-20 11:26:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763634364;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763634364;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-20 10:26:21','2025-11-20 11:26:21',315980,NULL), -(6165,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 12:18:36','2025-11-19 13:18:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763554716;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763554716;}',11,1,'2025-11-19 12:19:20','2025-11-19 13:19:20',314622,NULL), -(6166,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 13:19:20','2025-11-19 14:19:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763558360;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763558360;}',11,1,'2025-11-19 13:19:20','2025-11-19 14:19:20',314683,NULL), -(6167,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 14:19:20','2025-11-19 15:19:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763561960;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763561960;}',11,1,'2025-11-19 14:19:20','2025-11-19 15:19:20',314744,NULL), -(6168,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 15:19:20','2025-11-19 16:19:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763565560;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763565560;}',11,1,'2025-11-19 15:20:20','2025-11-19 16:20:20',314806,NULL), -(6169,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 16:20:20','2025-11-19 17:20:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763569220;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763569220;}',11,1,'2025-11-19 16:21:20','2025-11-19 17:21:20',314868,NULL), -(6170,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 17:21:20','2025-11-19 18:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763572880;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763572880;}',11,1,'2025-11-19 17:21:20','2025-11-19 18:21:20',314929,NULL), -(6171,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 18:21:20','2025-11-19 19:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763576480;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763576480;}',11,1,'2025-11-19 18:21:20','2025-11-19 19:21:20',314990,NULL), -(6172,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 19:21:20','2025-11-19 20:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763580080;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763580080;}',11,1,'2025-11-19 19:21:20','2025-11-19 20:21:20',315052,NULL), -(6173,'woocommerce_cleanup_draft_orders','complete','2025-11-20 18:42:20','2025-11-20 19:42:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763664140;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763664140;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-20 18:42:21','2025-11-20 19:42:21',316487,NULL), -(6174,'wp_mail_smtp_admin_notifications_update','complete','2025-11-20 18:42:20','2025-11-20 19:42:20',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763664140;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763664140;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-20 18:42:21','2025-11-20 19:42:21',316487,NULL), -(6175,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 20:21:20','2025-11-19 21:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763583680;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763583680;}',11,1,'2025-11-19 20:21:20','2025-11-19 21:21:20',315114,NULL), -(6176,'woocommerce_refresh_order_count_cache','complete','2025-11-20 07:27:20','2025-11-20 08:27:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763623640;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763623640;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-20 07:27:21','2025-11-20 08:27:21',315796,NULL), -(6177,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 21:21:20','2025-11-19 22:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763587280;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763587280;}',11,1,'2025-11-19 21:21:20','2025-11-19 22:21:20',315175,NULL), -(6178,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 22:21:20','2025-11-19 23:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763590880;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763590880;}',11,1,'2025-11-19 22:22:20','2025-11-19 23:22:20',315238,NULL), -(6179,'woocommerce_scheduled_sales','complete','2025-11-20 22:05:20','2025-11-20 23:05:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763676320;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763676320;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-20 22:06:21','2025-11-20 23:06:21',316696,NULL), -(6180,'woocommerce_cancel_unpaid_orders','complete','2025-11-19 23:22:20','2025-11-20 00:22:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763594540;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763594540;}',11,1,'2025-11-19 23:22:21','2025-11-20 00:22:21',315299,NULL), -(6181,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 00:22:20','2025-11-20 01:22:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763598140;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763598140;}',11,1,'2025-11-20 00:22:20','2025-11-20 01:22:20',315360,NULL), -(6182,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 01:22:20','2025-11-20 02:22:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763601740;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763601740;}',11,1,'2025-11-20 01:22:20','2025-11-20 02:22:20',315421,NULL), -(6183,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 02:22:20','2025-11-20 03:22:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763605340;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763605340;}',11,1,'2025-11-20 02:22:21','2025-11-20 03:22:21',315482,NULL), -(6184,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 03:22:20','2025-11-20 04:22:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763608940;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763608940;}',11,1,'2025-11-20 03:22:21','2025-11-20 04:22:21',315543,NULL), -(6185,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 04:22:21','2025-11-20 05:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763612541;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763612541;}',11,1,'2025-11-20 04:22:21','2025-11-20 05:22:21',315604,NULL), -(6186,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 05:22:21','2025-11-20 06:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763616141;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763616141;}',11,1,'2025-11-20 05:22:21','2025-11-20 06:22:21',315666,NULL), -(6188,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 06:22:21','2025-11-20 07:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763619741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763619741;}',11,1,'2025-11-20 06:22:21','2025-11-20 07:22:21',315727,NULL), -(6189,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 07:22:21','2025-11-20 08:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763623341;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763623341;}',11,1,'2025-11-20 07:22:21','2025-11-20 08:22:21',315788,NULL), -(6190,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 08:22:21','2025-11-20 09:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763626941;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763626941;}',11,1,'2025-11-20 08:22:21','2025-11-20 09:22:21',315852,NULL), -(6191,'wc_admin_daily_wrapper','complete','2025-11-21 07:25:21','2025-11-21 08:25:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763709921;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763709921;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-21 07:25:21','2025-11-21 08:25:21',317266,NULL), -(6192,'woocommerce_cleanup_personal_data','complete','2025-11-21 07:25:21','2025-11-21 08:25:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763709921;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763709921;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-21 07:25:21','2025-11-21 08:25:21',317266,NULL), -(6193,'woocommerce_cleanup_sessions','complete','2025-11-21 05:00:00','2025-11-21 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763701200;s:18:\"\0*\0first_timestamp\";i:1763701200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763701200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-21 05:00:21','2025-11-21 06:00:21',317118,NULL), -(6194,'generate_category_lookup_table_wrapper','complete','2025-11-20 07:25:31','2025-11-20 08:25:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763623531;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763623531;}',11,1,'2025-11-20 07:26:21','2025-11-20 08:26:21',315794,NULL), -(6195,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-21 07:25:21','2025-11-21 08:25:21',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763709921;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763709921;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-21 07:25:21','2025-11-21 08:25:21',317266,NULL), -(6196,'woocommerce_refresh_order_count_cache','complete','2025-11-20 19:27:21','2025-11-20 20:27:21',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763666841;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763666841;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-20 19:27:21','2025-11-20 20:27:21',316534,NULL), -(6197,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 09:22:21','2025-11-20 10:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763630541;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763630541;}',11,1,'2025-11-20 09:22:21','2025-11-20 10:22:21',315913,NULL), -(6198,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 10:22:21','2025-11-20 11:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763634141;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763634141;}',11,1,'2025-11-20 10:22:21','2025-11-20 11:22:21',315974,NULL), -(6199,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 11:22:21','2025-11-20 12:22:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763637741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763637741;}',11,1,'2025-11-20 11:22:45','2025-11-20 12:22:45',316038,NULL), -(6200,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-21 10:23:21','2025-11-21 11:23:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763720601;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763720601;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-21 10:28:47','2025-11-21 11:28:47',317418,NULL), -(6201,'woocommerce_cleanup_logs','complete','2025-11-21 10:26:21','2025-11-21 11:26:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763720781;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763720781;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-21 10:28:47','2025-11-21 11:28:47',317418,NULL), -(6202,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 12:22:45','2025-11-20 13:22:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763641365;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763641365;}',11,1,'2025-11-20 12:23:21','2025-11-20 13:23:21',316099,NULL), -(6203,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 13:23:21','2025-11-20 14:23:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763645001;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763645001;}',11,1,'2025-11-20 13:23:21','2025-11-20 14:23:21',316160,NULL), -(6204,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 14:23:21','2025-11-20 15:23:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763648601;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763648601;}',11,1,'2025-11-20 14:23:21','2025-11-20 15:23:21',316221,NULL), -(6205,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 15:23:21','2025-11-20 16:23:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763652201;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763652201;}',11,1,'2025-11-20 15:23:21','2025-11-20 16:23:21',316284,NULL), -(6206,'wc-admin_import_orders','complete','2025-11-20 14:49:53','2025-11-20 15:49:53',10,'[1528]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763650193;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763650193;}',4,1,'2025-11-20 14:51:21','2025-11-20 15:51:21',316250,NULL), -(6207,'wc-admin_import_orders','complete','2025-11-20 14:51:38','2025-11-20 15:51:38',10,'[1528]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763650298;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763650298;}',4,1,'2025-11-20 14:53:21','2025-11-20 15:53:21',316253,NULL), -(6208,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 16:23:21','2025-11-20 17:23:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763655801;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763655801;}',11,1,'2025-11-20 16:24:21','2025-11-20 17:24:21',316346,NULL), -(6209,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 17:24:21','2025-11-20 18:24:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763659461;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763659461;}',11,1,'2025-11-20 17:24:21','2025-11-20 18:24:21',316407,NULL), -(6210,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 18:24:21','2025-11-20 19:24:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763663061;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763663061;}',11,1,'2025-11-20 18:24:21','2025-11-20 19:24:21',316468,NULL), -(6211,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 19:24:21','2025-11-20 20:24:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763666661;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763666661;}',11,1,'2025-11-20 19:24:21','2025-11-20 20:24:21',316530,NULL), -(6212,'woocommerce_cleanup_draft_orders','complete','2025-11-21 18:42:21','2025-11-21 19:42:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763750541;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763750541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-21 18:44:17','2025-11-21 19:44:17',317505,NULL), -(6213,'wp_mail_smtp_admin_notifications_update','complete','2025-11-21 18:42:21','2025-11-21 19:42:21',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763750541;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763750541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-21 18:44:17','2025-11-21 19:44:17',317505,NULL), -(6214,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 20:24:21','2025-11-20 21:24:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763670261;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763670261;}',11,1,'2025-11-20 20:24:21','2025-11-20 21:24:21',316592,NULL), -(6215,'woocommerce_refresh_order_count_cache','complete','2025-11-21 07:27:21','2025-11-21 08:27:21',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763710041;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763710041;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-21 07:28:21','2025-11-21 08:28:21',317271,NULL), -(6216,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 21:24:21','2025-11-20 22:24:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763673861;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763673861;}',11,1,'2025-11-20 21:25:21','2025-11-20 22:25:21',316654,NULL), -(6217,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 22:25:21','2025-11-20 23:25:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763677521;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763677521;}',11,1,'2025-11-20 22:25:21','2025-11-20 23:25:21',316716,NULL), -(6218,'woocommerce_scheduled_sales','complete','2025-11-21 22:06:21','2025-11-21 23:06:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763762781;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763762781;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-21 22:09:41','2025-11-21 23:09:41',317543,NULL), -(6219,'woocommerce_cancel_unpaid_orders','complete','2025-11-20 23:25:21','2025-11-21 00:25:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763681121;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763681121;}',11,1,'2025-11-20 23:25:21','2025-11-21 00:25:21',316777,NULL), -(6220,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 00:25:21','2025-11-21 01:25:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763684721;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763684721;}',11,1,'2025-11-21 00:25:34','2025-11-21 01:25:34',316839,NULL), -(6221,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 01:25:34','2025-11-21 02:25:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763688334;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763688334;}',11,1,'2025-11-21 01:26:21','2025-11-21 02:26:21',316900,NULL), -(6222,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 02:26:21','2025-11-21 03:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763691981;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763691981;}',11,1,'2025-11-21 02:26:21','2025-11-21 03:26:21',316961,NULL), -(6223,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 03:26:21','2025-11-21 04:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763695581;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763695581;}',11,1,'2025-11-21 03:26:21','2025-11-21 04:26:21',317022,NULL), -(6224,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 04:26:21','2025-11-21 05:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763699181;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763699181;}',11,1,'2025-11-21 04:26:21','2025-11-21 05:26:21',317083,NULL), -(6225,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 05:26:21','2025-11-21 06:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763702781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763702781;}',11,1,'2025-11-21 05:26:21','2025-11-21 06:26:21',317145,NULL), -(6227,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 06:26:21','2025-11-21 07:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763706381;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763706381;}',11,1,'2025-11-21 06:26:21','2025-11-21 07:26:21',317206,NULL), -(6228,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 07:26:21','2025-11-21 08:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763709981;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763709981;}',11,1,'2025-11-21 07:26:21','2025-11-21 08:26:21',317268,NULL), -(6229,'wc_admin_daily_wrapper','complete','2025-11-22 07:25:21','2025-11-22 08:25:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763796321;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763796321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-22 07:34:38','2025-11-22 08:34:38',317604,NULL), -(6230,'woocommerce_cleanup_personal_data','complete','2025-11-22 07:25:21','2025-11-22 08:25:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763796321;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763796321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-22 07:34:38','2025-11-22 08:34:38',317604,NULL), -(6231,'woocommerce_cleanup_sessions','complete','2025-11-22 05:00:00','2025-11-22 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763787600;s:18:\"\0*\0first_timestamp\";i:1763787600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763787600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-22 05:03:20','2025-11-22 06:03:20',317590,NULL), -(6232,'generate_category_lookup_table_wrapper','complete','2025-11-21 07:25:31','2025-11-21 08:25:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763709931;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763709931;}',11,1,'2025-11-21 07:26:21','2025-11-21 08:26:21',317268,NULL), -(6233,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-22 07:25:21','2025-11-22 08:25:21',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763796321;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763796321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-22 07:34:38','2025-11-22 08:34:38',317604,NULL), -(6234,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 08:26:21','2025-11-21 09:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763713581;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763713581;}',11,1,'2025-11-21 08:26:21','2025-11-21 09:26:21',317330,NULL), -(6235,'woocommerce_refresh_order_count_cache','complete','2025-11-21 19:28:21','2025-11-21 20:28:21',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763753301;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763753301;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-21 19:35:54','2025-11-21 20:35:54',317511,NULL), -(6236,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 09:26:21','2025-11-21 10:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763717181;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763717181;}',11,1,'2025-11-21 09:26:21','2025-11-21 10:26:21',317391,NULL), -(6237,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 10:26:21','2025-11-21 11:26:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763720781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763720781;}',11,1,'2025-11-21 10:28:47','2025-11-21 11:28:47',317418,NULL), -(6238,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-22 10:28:47','2025-11-22 11:28:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763807327;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763807327;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-22 10:30:32','2025-11-22 11:30:32',317624,NULL), -(6239,'woocommerce_cleanup_logs','complete','2025-11-22 10:28:47','2025-11-22 11:28:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763807327;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763807327;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-22 10:30:32','2025-11-22 11:30:32',317624,NULL), -(6240,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 11:28:47','2025-11-21 12:28:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763724527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763724527;}',11,1,'2025-11-21 11:52:13','2025-11-21 12:52:13',317424,NULL), -(6241,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 12:52:13','2025-11-21 13:52:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763729533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763729533;}',11,1,'2025-11-21 12:52:48','2025-11-21 13:52:48',317440,NULL), -(6242,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 13:52:48','2025-11-21 14:52:48',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763733168;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763733168;}',11,1,'2025-11-21 14:30:11','2025-11-21 15:30:11',317449,NULL), -(6243,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 15:30:11','2025-11-21 16:30:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763739011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763739011;}',11,1,'2025-11-21 15:32:35','2025-11-21 16:32:35',317460,NULL), -(6244,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 16:32:35','2025-11-21 17:32:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763742755;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763742755;}',11,1,'2025-11-21 16:34:25','2025-11-21 17:34:25',317474,NULL), -(6245,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 17:34:25','2025-11-21 18:34:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763746465;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763746465;}',11,1,'2025-11-21 17:45:13','2025-11-21 18:45:13',317489,NULL), -(6246,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 18:45:13','2025-11-21 19:45:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763750713;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763750713;}',11,1,'2025-11-21 18:46:16','2025-11-21 19:46:16',317507,NULL), -(6247,'woocommerce_cleanup_draft_orders','complete','2025-11-22 18:44:17','2025-11-22 19:44:17',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763837057;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763837057;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-22 18:46:47','2025-11-22 19:46:47',317728,NULL), -(6248,'wp_mail_smtp_admin_notifications_update','complete','2025-11-22 18:44:17','2025-11-22 19:44:17',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763837057;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763837057;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-22 18:46:47','2025-11-22 19:46:47',317728,NULL), -(6249,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 19:46:16','2025-11-21 20:46:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763754376;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763754376;}',11,1,'2025-11-21 19:48:24','2025-11-21 20:48:24',317517,NULL), -(6250,'woocommerce_refresh_order_count_cache','complete','2025-11-22 07:35:54','2025-11-22 08:35:54',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763796954;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763796954;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-22 07:37:06','2025-11-22 08:37:06',317606,NULL), -(6251,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 20:48:24','2025-11-21 21:48:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763758104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763758104;}',11,1,'2025-11-21 20:55:42','2025-11-21 21:55:42',317529,NULL), -(6252,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 21:55:42','2025-11-21 22:55:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763762142;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763762142;}',11,1,'2025-11-21 22:05:43','2025-11-21 23:05:43',317541,NULL), -(6253,'woocommerce_cancel_unpaid_orders','complete','2025-11-21 23:05:43','2025-11-22 00:05:43',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763766343;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763766343;}',11,1,'2025-11-21 23:06:26','2025-11-22 00:06:26',317554,NULL), -(6254,'woocommerce_scheduled_sales','complete','2025-11-22 22:09:41','2025-11-22 23:09:41',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763849381;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763849381;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-22 22:18:59','2025-11-22 23:18:59',317775,NULL), -(6255,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 00:06:26','2025-11-22 01:06:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763769986;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763769986;}',11,1,'2025-11-22 00:42:41','2025-11-22 01:42:41',317560,NULL), -(6256,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 01:42:41','2025-11-22 02:42:41',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763775761;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763775761;}',11,1,'2025-11-22 01:46:16','2025-11-22 02:46:16',317569,NULL), -(6257,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 02:46:16','2025-11-22 03:46:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763779576;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763779576;}',11,1,'2025-11-22 03:19:54','2025-11-22 04:19:54',317577,NULL), -(6258,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 04:19:54','2025-11-22 05:19:54',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763785194;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763785194;}',11,1,'2025-11-22 04:22:25','2025-11-22 05:22:25',317584,NULL), -(6259,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 05:22:25','2025-11-22 06:22:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763788945;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763788945;}',11,1,'2025-11-22 05:25:25','2025-11-22 06:25:25',317593,NULL), -(6261,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 06:25:25','2025-11-22 07:25:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763792725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763792725;}',11,1,'2025-11-22 06:40:16','2025-11-22 07:40:16',317598,NULL), -(6262,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 07:40:16','2025-11-22 08:40:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763797216;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763797216;}',11,1,'2025-11-22 07:54:06','2025-11-22 08:54:06',317608,NULL), -(6263,'woocommerce_geoip_updater','pending','2025-12-07 07:34:38','2025-12-07 08:34:38',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1765092878;s:18:\"\0*\0first_timestamp\";i:1757315635;s:13:\"\0*\0recurrence\";i:1296000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1765092878;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:1296000;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6264,'wc_admin_daily_wrapper','complete','2025-11-23 07:34:38','2025-11-23 08:34:38',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763883278;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763883278;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-23 07:36:19','2025-11-23 08:36:19',317828,NULL), -(6265,'woocommerce_cleanup_personal_data','complete','2025-11-23 07:34:38','2025-11-23 08:34:38',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763883278;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763883278;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-23 07:36:19','2025-11-23 08:36:19',317828,NULL), -(6266,'woocommerce_cleanup_sessions','complete','2025-11-23 05:00:00','2025-11-23 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763874000;s:18:\"\0*\0first_timestamp\";i:1763874000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763874000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-23 05:07:58','2025-11-23 06:07:58',317810,NULL), -(6267,'generate_category_lookup_table_wrapper','complete','2025-11-22 07:34:48','2025-11-22 08:34:48',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763796888;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763796888;}',11,1,'2025-11-22 07:37:06','2025-11-22 08:37:06',317606,NULL), -(6268,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-23 07:34:38','2025-11-23 08:34:38',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763883278;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763883278;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-23 07:36:19','2025-11-23 08:36:19',317828,NULL), -(6269,'woocommerce_refresh_order_count_cache','complete','2025-11-22 19:37:06','2025-11-22 20:37:06',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763840226;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763840226;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-22 19:41:00','2025-11-22 20:41:00',317741,NULL), -(6270,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 08:54:06','2025-11-22 09:54:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763801646;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763801646;}',11,1,'2025-11-22 08:58:19','2025-11-22 09:58:19',317613,NULL), -(6271,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 09:58:19','2025-11-22 10:58:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763805499;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763805499;}',11,1,'2025-11-22 10:21:20','2025-11-22 11:21:20',317621,NULL), -(6272,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 11:21:20','2025-11-22 12:21:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763810480;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763810480;}',11,1,'2025-11-22 11:26:04','2025-11-22 12:26:04',317637,NULL), -(6273,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-23 10:30:32','2025-11-23 11:30:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763893832;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763893832;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-23 10:30:32','2025-11-23 11:30:32',317862,NULL), -(6274,'woocommerce_cleanup_logs','complete','2025-11-23 10:30:32','2025-11-23 11:30:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763893832;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763893832;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-23 10:30:32','2025-11-23 11:30:32',317862,NULL), -(6275,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 12:26:04','2025-11-22 13:26:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763814364;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763814364;}',11,1,'2025-11-22 12:34:45','2025-11-22 13:34:45',317645,NULL), -(6276,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 13:34:45','2025-11-22 14:34:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763818485;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763818485;}',11,1,'2025-11-22 13:35:36','2025-11-22 14:35:36',317659,NULL), -(6277,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 14:35:36','2025-11-22 15:35:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763822136;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763822136;}',11,1,'2025-11-22 14:39:11','2025-11-22 15:39:11',317670,NULL), -(6278,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 15:39:11','2025-11-22 16:39:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763825951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763825951;}',11,1,'2025-11-22 15:47:50','2025-11-22 16:47:50',317683,NULL), -(6279,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 16:47:50','2025-11-22 17:47:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763830070;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763830070;}',11,1,'2025-11-22 16:51:44','2025-11-22 17:51:44',317700,NULL), -(6280,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 17:51:44','2025-11-22 18:51:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763833904;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763833904;}',11,1,'2025-11-22 17:56:03','2025-11-22 18:56:03',317720,NULL), -(6281,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 18:56:03','2025-11-22 19:56:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763837763;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763837763;}',11,1,'2025-11-22 18:58:17','2025-11-22 19:58:17',317731,NULL), -(6282,'woocommerce_cleanup_draft_orders','complete','2025-11-23 18:46:47','2025-11-23 19:46:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763923607;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763923607;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-23 18:50:13','2025-11-23 19:50:13',317921,NULL), -(6283,'wp_mail_smtp_admin_notifications_update','complete','2025-11-23 18:46:47','2025-11-23 19:46:47',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763923607;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763923607;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-23 18:50:13','2025-11-23 19:50:13',317921,NULL), -(6284,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 19:58:17','2025-11-22 20:58:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763841497;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763841497;}',11,1,'2025-11-22 20:03:55','2025-11-22 21:03:55',317752,NULL), -(6285,'woocommerce_refresh_order_count_cache','complete','2025-11-23 07:41:00','2025-11-23 08:41:00',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763883660;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763883660;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-23 07:51:14','2025-11-23 08:51:14',317830,NULL), -(6286,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 21:03:55','2025-11-22 22:03:55',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763845435;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763845435;}',11,1,'2025-11-22 21:27:19','2025-11-22 22:27:19',317771,NULL), -(6287,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 22:27:19','2025-11-22 23:27:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763850439;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763850439;}',11,1,'2025-11-22 22:29:28','2025-11-22 23:29:28',317780,NULL), -(6288,'woocommerce_scheduled_sales','complete','2025-11-23 22:18:59','2025-11-23 23:18:59',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763936339;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763936339;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-23 22:19:11','2025-11-23 23:19:11',317956,NULL), -(6289,'woocommerce_cancel_unpaid_orders','complete','2025-11-22 23:29:28','2025-11-23 00:29:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763854168;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763854168;}',11,1,'2025-11-22 23:57:54','2025-11-23 00:57:54',317788,NULL), -(6290,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 00:57:54','2025-11-23 01:57:54',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763859474;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763859474;}',11,1,'2025-11-23 01:22:00','2025-11-23 02:22:00',317794,NULL), -(6291,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 02:22:00','2025-11-23 03:22:00',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763864520;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763864520;}',11,1,'2025-11-23 02:33:18','2025-11-23 03:33:18',317798,NULL), -(6292,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 03:33:18','2025-11-23 04:33:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763868798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763868798;}',11,1,'2025-11-23 03:41:34','2025-11-23 04:41:34',317805,NULL), -(6293,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 04:41:34','2025-11-23 05:41:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763872894;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763872894;}',11,1,'2025-11-23 05:07:58','2025-11-23 06:07:58',317810,NULL), -(6294,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 06:07:58','2025-11-23 07:07:58',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763878078;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763878078;}',11,1,'2025-11-23 06:15:38','2025-11-23 07:15:38',317815,NULL), -(6296,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 07:15:38','2025-11-23 08:15:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763882138;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763882138;}',11,1,'2025-11-23 07:20:06','2025-11-23 08:20:06',317823,NULL), -(6297,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 08:20:06','2025-11-23 09:20:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763886006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763886006;}',11,1,'2025-11-23 08:20:40','2025-11-23 09:20:40',317835,NULL), -(6298,'wc_admin_daily_wrapper','complete','2025-11-24 07:36:19','2025-11-24 08:36:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763969779;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763969779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-24 07:48:01','2025-11-24 08:48:01',318007,NULL), -(6299,'woocommerce_cleanup_personal_data','complete','2025-11-24 07:36:19','2025-11-24 08:36:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763969779;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763969779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-24 07:48:02','2025-11-24 08:48:02',318007,NULL), -(6300,'woocommerce_cleanup_sessions','complete','2025-11-24 05:00:00','2025-11-24 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763960400;s:18:\"\0*\0first_timestamp\";i:1763960400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763960400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-24 05:15:25','2025-11-24 06:15:25',317995,NULL), -(6301,'generate_category_lookup_table_wrapper','complete','2025-11-23 07:36:29','2025-11-23 08:36:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763883389;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763883389;}',11,1,'2025-11-23 07:51:14','2025-11-23 08:51:14',317830,NULL), -(6302,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-24 07:36:19','2025-11-24 08:36:19',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763969779;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763969779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-24 07:48:02','2025-11-24 08:48:02',318007,NULL), -(6303,'woocommerce_refresh_order_count_cache','complete','2025-11-23 19:51:14','2025-11-23 20:51:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763927474;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763927474;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-23 19:56:58','2025-11-23 20:56:58',317932,NULL), -(6304,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 09:20:40','2025-11-23 10:20:40',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763889640;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763889640;}',11,1,'2025-11-23 09:25:35','2025-11-23 10:25:35',317847,NULL), -(6305,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 10:25:35','2025-11-23 11:25:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763893535;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763893535;}',11,1,'2025-11-23 10:26:17','2025-11-23 11:26:17',317859,NULL), -(6306,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 11:26:17','2025-11-23 12:26:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763897177;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763897177;}',11,1,'2025-11-23 11:28:04','2025-11-23 12:28:04',317871,NULL), -(6307,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-24 10:30:32','2025-11-24 11:30:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763980232;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763980232;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-24 10:31:27','2025-11-24 11:31:27',318074,NULL), -(6308,'woocommerce_cleanup_logs','complete','2025-11-24 10:30:32','2025-11-24 11:30:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763980232;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763980232;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-24 10:31:27','2025-11-24 11:31:27',318074,NULL), -(6309,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 12:28:04','2025-11-23 13:28:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763900884;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763900884;}',11,1,'2025-11-23 12:38:48','2025-11-23 13:38:48',317881,NULL), -(6310,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 13:38:48','2025-11-23 14:38:48',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763905128;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763905128;}',11,1,'2025-11-23 13:58:43','2025-11-23 14:58:43',317886,NULL), -(6311,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 14:58:43','2025-11-23 15:58:43',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763909923;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763909923;}',11,1,'2025-11-23 15:18:26','2025-11-23 16:18:26',317895,NULL), -(6312,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 16:18:26','2025-11-23 17:18:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763914706;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763914706;}',11,1,'2025-11-23 16:21:50','2025-11-23 17:21:50',317907,NULL), -(6313,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 17:21:50','2025-11-23 18:21:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763918510;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763918510;}',11,1,'2025-11-23 17:26:10','2025-11-23 18:26:10',317912,NULL), -(6314,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 18:26:10','2025-11-23 19:26:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763922370;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763922370;}',11,1,'2025-11-23 18:27:59','2025-11-23 19:27:59',317917,NULL), -(6315,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 19:27:59','2025-11-23 20:27:59',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763926079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763926079;}',11,1,'2025-11-23 19:32:28','2025-11-23 20:32:28',317927,NULL), -(6316,'woocommerce_cleanup_draft_orders','complete','2025-11-24 18:50:13','2025-11-24 19:50:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764010213;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764010213;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-24 19:42:30','2025-11-24 20:42:30',318168,NULL), -(6317,'wp_mail_smtp_admin_notifications_update','complete','2025-11-24 18:50:13','2025-11-24 19:50:13',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764010213;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764010213;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-24 19:42:30','2025-11-24 20:42:30',318168,NULL), -(6318,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 20:32:28','2025-11-23 21:32:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763929948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763929948;}',11,1,'2025-11-23 20:35:49','2025-11-23 21:35:49',317938,NULL), -(6319,'woocommerce_refresh_order_count_cache','complete','2025-11-24 07:56:58','2025-11-24 08:56:58',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1763971018;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1763971018;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-24 08:02:12','2025-11-24 09:02:12',318009,NULL), -(6320,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 21:35:49','2025-11-23 22:35:49',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763933749;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763933749;}',11,1,'2025-11-23 21:36:02','2025-11-23 22:36:02',317949,NULL), -(6321,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 22:36:02','2025-11-23 23:36:02',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763937362;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763937362;}',11,1,'2025-11-23 22:43:55','2025-11-23 23:43:55',317964,NULL), -(6322,'woocommerce_scheduled_sales','complete','2025-11-24 22:19:11','2025-11-24 23:19:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764022751;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764022751;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-24 22:21:34','2025-11-24 23:21:34',318178,NULL), -(6323,'woocommerce_cancel_unpaid_orders','complete','2025-11-23 23:43:55','2025-11-24 00:43:55',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763941435;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763941435;}',11,1,'2025-11-23 23:45:41','2025-11-24 00:45:41',317969,NULL), -(6324,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 00:45:41','2025-11-24 01:45:41',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763945141;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763945141;}',11,1,'2025-11-24 00:46:15','2025-11-24 01:46:15',317977,NULL), -(6325,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 01:46:15','2025-11-24 02:46:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763948775;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763948775;}',11,1,'2025-11-24 01:47:44','2025-11-24 02:47:44',317981,NULL), -(6326,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 02:47:44','2025-11-24 03:47:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763952464;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763952464;}',11,1,'2025-11-24 03:20:47','2025-11-24 04:20:47',317984,NULL), -(6327,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 04:20:47','2025-11-24 05:20:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763958047;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763958047;}',11,1,'2025-11-24 04:26:37','2025-11-24 05:26:37',317988,NULL), -(6328,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 05:26:37','2025-11-24 06:26:37',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763961997;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763961997;}',11,1,'2025-11-24 05:42:21','2025-11-24 06:42:21',317999,NULL), -(6330,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 06:42:21','2025-11-24 07:42:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763966541;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763966541;}',11,1,'2025-11-24 07:16:16','2025-11-24 08:16:16',318003,NULL), -(6331,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 08:16:16','2025-11-24 09:16:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763972176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763972176;}',11,1,'2025-11-24 08:17:15','2025-11-24 09:17:15',318011,NULL), -(6332,'wc_admin_daily_wrapper','complete','2025-11-25 07:48:01','2025-11-25 08:48:01',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764056881;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764056881;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-25 07:49:34','2025-11-25 08:49:34',318237,NULL), -(6333,'woocommerce_cleanup_personal_data','complete','2025-11-25 07:48:02','2025-11-25 08:48:02',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764056882;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764056882;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-25 07:49:34','2025-11-25 08:49:34',318237,NULL), -(6334,'woocommerce_cleanup_sessions','complete','2025-11-25 05:00:00','2025-11-25 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764046800;s:18:\"\0*\0first_timestamp\";i:1764046800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764046800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-25 05:05:04','2025-11-25 06:05:04',318226,NULL), -(6335,'generate_category_lookup_table_wrapper','complete','2025-11-24 07:48:12','2025-11-24 08:48:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763970492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763970492;}',11,1,'2025-11-24 08:02:12','2025-11-24 09:02:12',318009,NULL), -(6336,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-25 07:48:02','2025-11-25 08:48:02',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764056882;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764056882;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-25 07:49:34','2025-11-25 08:49:34',318237,NULL), -(6337,'woocommerce_refresh_order_count_cache','complete','2025-11-24 20:02:12','2025-11-24 21:02:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764014532;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764014532;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-24 20:15:34','2025-11-24 21:15:34',318170,NULL), -(6338,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 09:17:15','2025-11-24 10:17:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763975835;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763975835;}',11,1,'2025-11-24 09:18:53','2025-11-24 10:18:53',318030,NULL), -(6339,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 10:18:53','2025-11-24 11:18:53',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763979533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763979533;}',11,1,'2025-11-24 10:23:03','2025-11-24 11:23:03',318072,NULL), -(6340,'wc-admin_import_orders','complete','2025-11-24 09:50:53','2025-11-24 10:50:53',10,'[1529]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763977853;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763977853;}',4,1,'2025-11-24 09:51:23','2025-11-24 10:51:23',318053,NULL), -(6341,'wc-admin_import_orders','complete','2025-11-24 09:53:42','2025-11-24 10:53:42',10,'[1529]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763978022;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763978022;}',4,1,'2025-11-24 09:55:10','2025-11-24 10:55:10',318058,NULL), -(6342,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 11:23:03','2025-11-24 12:23:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763983383;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763983383;}',11,1,'2025-11-24 11:26:04','2025-11-24 12:26:04',318081,NULL), -(6343,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-25 10:31:27','2025-11-25 11:31:27',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764066687;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764066687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-25 10:36:14','2025-11-25 11:36:14',318249,NULL), -(6344,'woocommerce_cleanup_logs','complete','2025-11-25 10:31:27','2025-11-25 11:31:27',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764066687;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764066687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-25 10:36:14','2025-11-25 11:36:14',318249,NULL), -(6345,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 12:26:04','2025-11-24 13:26:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763987164;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763987164;}',11,1,'2025-11-24 12:38:58','2025-11-24 13:38:58',318091,NULL), -(6346,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 13:38:58','2025-11-24 14:38:58',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763991538;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763991538;}',11,1,'2025-11-24 13:39:10','2025-11-24 14:39:10',318122,NULL), -(6347,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 14:39:10','2025-11-24 15:39:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763995150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763995150;}',11,1,'2025-11-24 14:39:41','2025-11-24 15:39:41',318131,NULL), -(6348,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 15:39:41','2025-11-24 16:39:41',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1763998781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1763998781;}',11,1,'2025-11-24 16:02:42','2025-11-24 17:02:42',318136,NULL), -(6349,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 17:02:42','2025-11-24 18:02:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764003762;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764003762;}',11,1,'2025-11-24 17:18:42','2025-11-24 18:18:42',318149,NULL), -(6350,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 18:18:42','2025-11-24 19:18:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764008322;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764008322;}',11,1,'2025-11-24 18:29:08','2025-11-24 19:29:08',318161,NULL), -(6351,'wc-admin_import_orders','complete','2025-11-24 17:43:39','2025-11-24 18:43:39',10,'[1530]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764006219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764006219;}',4,1,'2025-11-24 17:44:41','2025-11-24 18:44:41',318156,NULL), -(6352,'wc-admin_import_orders','complete','2025-11-24 17:44:47','2025-11-24 18:44:47',10,'[1530]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764006287;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764006287;}',4,1,'2025-11-24 17:54:51','2025-11-24 18:54:51',318158,NULL), -(6353,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 19:29:08','2025-11-24 20:29:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764012548;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764012548;}',11,1,'2025-11-24 19:42:30','2025-11-24 20:42:30',318168,NULL), -(6354,'wc-admin_import_orders','complete','2025-11-24 18:30:09','2025-11-24 19:30:09',10,'[1528]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764009009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764009009;}',4,1,'2025-11-24 18:30:11','2025-11-24 19:30:11',318165,NULL), -(6355,'wc-admin_import_orders','complete','2025-11-24 18:30:37','2025-11-24 19:30:37',10,'[1511]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764009037;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764009037;}',4,1,'2025-11-24 19:42:30','2025-11-24 20:42:30',318168,NULL), -(6356,'woocommerce_cleanup_draft_orders','complete','2025-11-25 19:42:30','2025-11-25 20:42:30',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764099750;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764099750;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-25 19:53:06','2025-11-25 20:53:06',318320,NULL), -(6357,'wp_mail_smtp_admin_notifications_update','complete','2025-11-25 19:42:30','2025-11-25 20:42:30',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764099750;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764099750;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-25 19:53:06','2025-11-25 20:53:06',318320,NULL), -(6358,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 20:42:30','2025-11-24 21:42:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764016950;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764016950;}',11,1,'2025-11-24 21:33:12','2025-11-24 22:33:12',318174,NULL), -(6359,'woocommerce_refresh_order_count_cache','complete','2025-11-25 08:15:34','2025-11-25 09:15:34',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764058534;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764058534;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-25 09:00:04','2025-11-25 10:00:04',318239,NULL), -(6360,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 22:33:12','2025-11-24 23:33:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764023592;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764023592;}',11,1,'2025-11-24 22:34:34','2025-11-24 23:34:34',318182,NULL), -(6361,'woocommerce_scheduled_sales','complete','2025-11-25 22:21:34','2025-11-25 23:21:34',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764109294;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764109294;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-25 22:27:32','2025-11-25 23:27:32',318331,NULL), -(6362,'woocommerce_cancel_unpaid_orders','complete','2025-11-24 23:34:34','2025-11-25 00:34:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764027274;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764027274;}',11,1,'2025-11-24 23:35:47','2025-11-25 00:35:47',318188,NULL), -(6363,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 00:35:47','2025-11-25 01:35:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764030947;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764030947;}',11,1,'2025-11-25 00:40:06','2025-11-25 01:40:06',318195,NULL), -(6364,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 01:40:06','2025-11-25 02:40:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764034806;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764034806;}',11,1,'2025-11-25 01:44:24','2025-11-25 02:44:24',318200,NULL), -(6365,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 02:44:24','2025-11-25 03:44:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764038664;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764038664;}',11,1,'2025-11-25 02:56:05','2025-11-25 03:56:05',318207,NULL), -(6366,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 03:56:05','2025-11-25 04:56:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764042965;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764042965;}',11,1,'2025-11-25 04:11:50','2025-11-25 05:11:50',318215,NULL), -(6367,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 05:11:50','2025-11-25 06:11:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764047510;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764047510;}',11,1,'2025-11-25 05:26:08','2025-11-25 06:26:08',318228,NULL), -(6368,'wp_mail_smtp_summary_report_email','complete','2025-12-02 04:11:50','2025-12-02 05:11:50',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764648710;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764648710;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-12-02 04:15:36','2025-12-02 05:15:36',322149,NULL), -(6370,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 06:26:08','2025-11-25 07:26:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764051968;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764051968;}',11,1,'2025-11-25 06:46:46','2025-11-25 07:46:46',318233,NULL), -(6371,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 07:46:46','2025-11-25 08:46:46',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764056806;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764056806;}',11,1,'2025-11-25 07:49:33','2025-11-25 08:49:33',318237,NULL), -(6372,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 08:49:33','2025-11-25 09:49:33',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764060573;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764060573;}',11,1,'2025-11-25 09:00:04','2025-11-25 10:00:04',318239,NULL), -(6373,'wc_admin_daily_wrapper','complete','2025-11-26 07:49:34','2025-11-26 08:49:34',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764143374;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764143374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-26 08:07:47','2025-11-26 09:07:47',318421,NULL), -(6374,'woocommerce_cleanup_personal_data','complete','2025-11-26 07:49:34','2025-11-26 08:49:34',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764143374;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764143374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-26 08:07:47','2025-11-26 09:07:47',318421,NULL), -(6375,'woocommerce_cleanup_sessions','complete','2025-11-26 05:00:00','2025-11-26 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764133200;s:18:\"\0*\0first_timestamp\";i:1764133200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764133200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-26 05:31:01','2025-11-26 06:31:01',318376,NULL), -(6376,'generate_category_lookup_table_wrapper','complete','2025-11-25 07:49:44','2025-11-25 08:49:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764056984;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764056984;}',11,1,'2025-11-25 09:00:04','2025-11-25 10:00:04',318239,NULL), -(6377,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-26 07:49:34','2025-11-26 08:49:34',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764143374;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764143374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-26 08:07:47','2025-11-26 09:07:47',318421,NULL), -(6378,'woocommerce_refresh_order_count_cache','complete','2025-11-25 21:00:04','2025-11-25 22:00:04',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764104404;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764104404;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-25 21:52:23','2025-11-25 22:52:23',318327,NULL), -(6379,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 10:00:04','2025-11-25 11:00:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764064804;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764064804;}',11,1,'2025-11-25 10:09:27','2025-11-25 11:09:27',318245,NULL), -(6380,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 11:09:27','2025-11-25 12:09:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764068967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764068967;}',11,1,'2025-11-25 11:13:31','2025-11-25 12:13:31',318253,NULL), -(6381,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-26 10:36:14','2025-11-26 11:36:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764153374;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764153374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-26 10:43:03','2025-11-26 11:43:03',318482,NULL), -(6382,'woocommerce_cleanup_logs','complete','2025-11-26 10:36:14','2025-11-26 11:36:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764153374;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764153374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-26 10:43:03','2025-11-26 11:43:03',318482,NULL), -(6383,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 12:13:31','2025-11-25 13:13:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764072811;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764072811;}',11,1,'2025-11-25 12:23:23','2025-11-25 13:23:23',318259,NULL), -(6384,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 13:23:23','2025-11-25 14:23:23',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764077003;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764077003;}',11,1,'2025-11-25 13:42:59','2025-11-25 14:42:59',318266,NULL), -(6385,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 14:42:59','2025-11-25 15:42:59',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764081779;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764081779;}',11,1,'2025-11-25 14:53:28','2025-11-25 15:53:28',318271,NULL), -(6386,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 15:53:28','2025-11-25 16:53:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764086008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764086008;}',11,1,'2025-11-25 15:55:41','2025-11-25 16:55:41',318283,NULL), -(6387,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 16:55:41','2025-11-25 17:55:41',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764089741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764089741;}',11,1,'2025-11-25 17:35:45','2025-11-25 18:35:45',318304,NULL), -(6388,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 18:35:45','2025-11-25 19:35:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764095745;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764095745;}',11,1,'2025-11-25 18:48:31','2025-11-25 19:48:31',318308,NULL), -(6389,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 19:48:31','2025-11-25 20:48:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764100111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764100111;}',11,1,'2025-11-25 19:53:06','2025-11-25 20:53:06',318320,NULL), -(6390,'woocommerce_cleanup_draft_orders','complete','2025-11-26 19:53:06','2025-11-26 20:53:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764186786;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764186786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-26 19:58:00','2025-11-26 20:58:00',318586,NULL), -(6391,'wp_mail_smtp_admin_notifications_update','complete','2025-11-26 19:53:06','2025-11-26 20:53:06',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764186786;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764186786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-26 19:58:00','2025-11-26 20:58:00',318586,NULL), -(6392,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 20:53:06','2025-11-25 21:53:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764103986;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764103986;}',11,1,'2025-11-25 21:52:23','2025-11-25 22:52:23',318327,NULL), -(6393,'woocommerce_cancel_unpaid_orders','complete','2025-11-25 22:52:23','2025-11-25 23:52:23',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764111143;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764111143;}',11,1,'2025-11-25 23:27:31','2025-11-26 00:27:31',318334,NULL), -(6394,'woocommerce_refresh_order_count_cache','complete','2025-11-26 09:52:23','2025-11-26 10:52:23',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764150743;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764150743;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-26 09:54:25','2025-11-26 10:54:25',318479,NULL), -(6395,'woocommerce_scheduled_sales','complete','2025-11-26 22:27:32','2025-11-26 23:27:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764196052;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764196052;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-26 22:28:34','2025-11-26 23:28:34',318602,NULL), -(6396,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 00:27:31','2025-11-26 01:27:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764116851;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764116851;}',11,1,'2025-11-26 00:39:26','2025-11-26 01:39:26',318345,NULL), -(6397,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 01:39:26','2025-11-26 02:39:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764121166;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764121166;}',11,1,'2025-11-26 02:05:16','2025-11-26 03:05:16',318348,NULL), -(6398,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 03:05:16','2025-11-26 04:05:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764126316;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764126316;}',11,1,'2025-11-26 03:06:56','2025-11-26 04:06:56',318350,NULL), -(6399,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 04:06:56','2025-11-26 05:06:56',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764130016;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764130016;}',11,1,'2025-11-26 04:18:11','2025-11-26 05:18:11',318355,NULL), -(6400,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 05:18:11','2025-11-26 06:18:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764134291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764134291;}',11,1,'2025-11-26 05:31:01','2025-11-26 06:31:01',318376,NULL), -(6402,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 06:31:01','2025-11-26 07:31:01',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764138661;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764138661;}',11,1,'2025-11-26 06:31:06','2025-11-26 07:31:06',318393,NULL), -(6403,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 07:31:06','2025-11-26 08:31:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764142266;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764142266;}',11,1,'2025-11-26 07:31:51','2025-11-26 08:31:51',318416,NULL), -(6404,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 08:31:51','2025-11-26 09:31:51',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764145911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764145911;}',11,1,'2025-11-26 08:36:11','2025-11-26 09:36:11',318423,NULL), -(6405,'wc_admin_daily_wrapper','complete','2025-11-27 08:07:47','2025-11-27 09:07:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764230867;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764230867;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-27 08:13:33','2025-11-27 09:13:33',318693,NULL), -(6406,'woocommerce_cleanup_personal_data','complete','2025-11-27 08:07:47','2025-11-27 09:07:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764230867;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764230867;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-27 08:13:34','2025-11-27 09:13:34',318693,NULL), -(6407,'woocommerce_cleanup_sessions','complete','2025-11-27 05:00:00','2025-11-27 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764219600;s:18:\"\0*\0first_timestamp\";i:1764219600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764219600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-27 05:00:38','2025-11-27 06:00:38',318637,NULL), -(6408,'generate_category_lookup_table_wrapper','complete','2025-11-26 08:07:57','2025-11-26 09:07:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764144477;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764144477;}',11,1,'2025-11-26 08:36:11','2025-11-26 09:36:11',318423,NULL), -(6409,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-27 08:07:47','2025-11-27 09:07:47',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764230867;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764230867;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-27 08:13:34','2025-11-27 09:13:34',318693,NULL), -(6410,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 09:36:11','2025-11-26 10:36:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764149771;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764149771;}',11,1,'2025-11-26 09:39:39','2025-11-26 10:39:39',318477,NULL), -(6411,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:36:37','2025-11-26 09:36:37',10,'[1512,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146197;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146197;}',3,1,'2025-11-26 08:37:13','2025-11-26 09:37:13',318427,NULL), -(6412,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:36:57','2025-11-26 09:36:57',10,'[1516,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146217;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146217;}',3,1,'2025-11-26 08:37:13','2025-11-26 09:37:13',318427,NULL), -(6413,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:37:31','2025-11-26 09:37:31',10,'[1406,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146251;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146251;}',3,1,'2025-11-26 08:38:15','2025-11-26 09:38:15',318430,NULL), -(6414,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:37:51','2025-11-26 09:37:51',10,'[1401,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146271;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146271;}',3,1,'2025-11-26 08:38:15','2025-11-26 09:38:15',318430,NULL), -(6415,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:38:55','2025-11-26 09:38:55',10,'[393,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146335;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146335;}',3,1,'2025-11-26 08:39:18','2025-11-26 09:39:18',318433,NULL), -(6416,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:39:19','2025-11-26 09:39:19',10,'[398,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146359;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146359;}',3,1,'2025-11-26 08:39:23','2025-11-26 09:39:23',318435,NULL), -(6417,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:40:29','2025-11-26 09:40:29',10,'[638,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146429;}',3,1,'2025-11-26 08:41:24','2025-11-26 09:41:24',318439,NULL), -(6418,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:40:29','2025-11-26 09:40:29',10,'[637,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146429;}',3,1,'2025-11-26 08:41:24','2025-11-26 09:41:24',318439,NULL), -(6419,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:40:29','2025-11-26 09:40:29',10,'[639,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146429;}',3,1,'2025-11-26 08:41:24','2025-11-26 09:41:24',318439,NULL), -(6420,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:40:30','2025-11-26 09:40:30',10,'[202,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146430;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146430;}',3,1,'2025-11-26 08:41:24','2025-11-26 09:41:24',318439,NULL), -(6421,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:42:16','2025-11-26 09:42:16',10,'[1531,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764146536;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764146536;}',3,1,'2025-11-26 08:42:27','2025-11-26 09:42:27',318442,NULL), -(6422,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:53:16','2025-11-26 09:53:16',10,'[1531,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764147196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764147196;}',3,1,'2025-11-26 08:53:27','2025-11-26 09:53:27',318453,NULL), -(6423,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:54:14','2025-11-26 09:54:14',10,'[1531,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764147254;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764147254;}',3,1,'2025-11-26 08:54:26','2025-11-26 09:54:26',318455,NULL), -(6424,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:54:25','2025-11-26 09:54:25',10,'[1535,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764147265;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764147265;}',3,1,'2025-11-26 08:54:26','2025-11-26 09:54:26',318455,NULL), -(6425,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:58:39','2025-11-26 09:58:39',10,'[1535,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764147519;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764147519;}',3,1,'2025-11-26 08:59:01','2025-11-26 09:59:01',318461,NULL), -(6426,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 08:59:00','2025-11-26 09:59:00',10,'[1531,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764147540;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764147540;}',3,1,'2025-11-26 08:59:01','2025-11-26 09:59:01',318461,NULL), -(6427,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 09:04:26','2025-11-26 10:04:26',10,'[1520,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764147866;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764147866;}',3,1,'2025-11-26 09:04:26','2025-11-26 10:04:26',318468,NULL), -(6428,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 10:39:39','2025-11-26 11:39:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764153579;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764153579;}',11,1,'2025-11-26 10:43:03','2025-11-26 11:43:03',318482,NULL), -(6429,'woocommerce_refresh_order_count_cache','complete','2025-11-26 21:54:25','2025-11-26 22:54:25',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764194065;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764194065;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-26 21:58:20','2025-11-26 22:58:20',318598,NULL), -(6430,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-27 10:43:03','2025-11-27 11:43:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764240183;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764240183;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-27 10:50:56','2025-11-27 11:50:56',318738,NULL), -(6431,'woocommerce_cleanup_logs','complete','2025-11-27 10:43:03','2025-11-27 11:43:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764240183;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764240183;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-27 10:50:56','2025-11-27 11:50:56',318738,NULL), -(6432,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 11:43:03','2025-11-26 12:43:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764157383;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764157383;}',11,1,'2025-11-26 12:27:03','2025-11-26 13:27:03',318493,NULL), -(6433,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 13:27:03','2025-11-26 14:27:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764163623;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764163623;}',11,1,'2025-11-26 13:37:09','2025-11-26 14:37:09',318502,NULL), -(6434,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 14:37:09','2025-11-26 15:37:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764167829;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764167829;}',11,1,'2025-11-26 14:45:55','2025-11-26 15:45:55',318535,NULL), -(6435,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:51:13','2025-11-26 14:51:13',10,'[555,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165073;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165073;}',3,1,'2025-11-26 13:51:32','2025-11-26 14:51:32',318508,NULL), -(6436,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:51:13','2025-11-26 14:51:13',10,'[556,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165073;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165073;}',3,1,'2025-11-26 13:51:32','2025-11-26 14:51:32',318508,NULL), -(6437,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:51:19','2025-11-26 14:51:19',10,'[554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165079;}',3,1,'2025-11-26 13:51:32','2025-11-26 14:51:32',318508,NULL), -(6438,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:51:52','2025-11-26 14:51:52',10,'[553,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165112;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165112;}',3,1,'2025-11-26 13:52:01','2025-11-26 14:52:01',318510,NULL), -(6439,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:51:52','2025-11-26 14:51:52',10,'[552,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165112;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165112;}',3,1,'2025-11-26 13:52:01','2025-11-26 14:52:01',318510,NULL), -(6440,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:51:56','2025-11-26 14:51:56',10,'[545,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165116;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165116;}',3,1,'2025-11-26 13:52:01','2025-11-26 14:52:01',318510,NULL), -(6441,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:52:34','2025-11-26 14:52:34',10,'[398,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165154;}',3,1,'2025-11-26 13:53:05','2025-11-26 14:53:05',318513,NULL), -(6442,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:52:56','2025-11-26 14:52:56',10,'[393,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165176;}',3,1,'2025-11-26 13:53:05','2025-11-26 14:53:05',318513,NULL), -(6443,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:58:27','2025-11-26 14:58:27',10,'[570,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165507;}',3,1,'2025-11-26 13:58:31','2025-11-26 14:58:31',318521,NULL), -(6444,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:58:27','2025-11-26 14:58:27',10,'[569,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165507;}',3,1,'2025-11-26 13:58:31','2025-11-26 14:58:31',318521,NULL), -(6445,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:58:27','2025-11-26 14:58:27',10,'[571,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165507;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165507;}',3,1,'2025-11-26 13:58:31','2025-11-26 14:58:31',318521,NULL), -(6446,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:58:32','2025-11-26 14:58:32',10,'[213,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165512;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165512;}',3,1,'2025-11-26 13:58:36','2025-11-26 14:58:36',318523,NULL), -(6447,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:59:09','2025-11-26 14:59:09',10,'[566,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165549;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165549;}',3,1,'2025-11-26 13:59:28','2025-11-26 14:59:28',318525,NULL), -(6448,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:59:09','2025-11-26 14:59:09',10,'[565,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165549;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165549;}',3,1,'2025-11-26 13:59:28','2025-11-26 14:59:28',318525,NULL), -(6449,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:59:09','2025-11-26 14:59:09',10,'[567,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165549;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165549;}',3,1,'2025-11-26 13:59:28','2025-11-26 14:59:28',318525,NULL), -(6450,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-26 13:59:13','2025-11-26 14:59:13',10,'[183,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764165553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764165553;}',3,1,'2025-11-26 13:59:28','2025-11-26 14:59:28',318525,NULL), -(6451,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 15:45:55','2025-11-26 16:45:55',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764171955;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764171955;}',11,1,'2025-11-26 15:54:38','2025-11-26 16:54:38',318543,NULL), -(6452,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 16:54:38','2025-11-26 17:54:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764176078;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764176078;}',11,1,'2025-11-26 17:28:27','2025-11-26 18:28:27',318568,NULL), -(6453,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 18:28:27','2025-11-26 19:28:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764181707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764181707;}',11,1,'2025-11-26 18:36:38','2025-11-26 19:36:38',318582,NULL), -(6454,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 19:36:38','2025-11-26 20:36:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764185798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764185798;}',11,1,'2025-11-26 19:58:00','2025-11-26 20:58:00',318586,NULL), -(6455,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 20:58:00','2025-11-26 21:58:00',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764190680;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764190680;}',11,1,'2025-11-26 21:15:22','2025-11-26 22:15:22',318595,NULL), -(6456,'woocommerce_cleanup_draft_orders','complete','2025-11-27 19:58:00','2025-11-27 20:58:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764273480;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764273480;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-27 19:59:58','2025-11-27 20:59:58',318997,NULL), -(6457,'wp_mail_smtp_admin_notifications_update','complete','2025-11-27 19:58:00','2025-11-27 20:58:00',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764273480;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764273480;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-27 19:59:58','2025-11-27 20:59:58',318997,NULL), -(6458,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 22:15:22','2025-11-26 23:15:22',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764195322;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764195322;}',11,1,'2025-11-26 22:26:22','2025-11-26 23:26:22',318600,NULL), -(6459,'woocommerce_refresh_order_count_cache','complete','2025-11-27 09:58:20','2025-11-27 10:58:20',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764237500;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764237500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-27 10:03:54','2025-11-27 11:03:54',318728,NULL), -(6460,'woocommerce_cancel_unpaid_orders','complete','2025-11-26 23:26:22','2025-11-27 00:26:22',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764199582;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764199582;}',11,1,'2025-11-26 23:40:35','2025-11-27 00:40:35',318604,NULL), -(6461,'woocommerce_scheduled_sales','complete','2025-11-27 22:28:34','2025-11-27 23:28:34',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764282514;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764282514;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-27 22:29:29','2025-11-27 23:29:29',319079,NULL), -(6462,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 00:40:35','2025-11-27 01:40:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764204035;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764204035;}',11,1,'2025-11-27 00:42:05','2025-11-27 01:42:05',318606,NULL), -(6463,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 01:42:05','2025-11-27 02:42:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764207725;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764207725;}',11,1,'2025-11-27 01:43:38','2025-11-27 02:43:38',318609,NULL), -(6464,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 02:43:38','2025-11-27 03:43:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764211418;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764211418;}',11,1,'2025-11-27 02:44:50','2025-11-27 03:44:50',318615,NULL), -(6465,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 03:44:50','2025-11-27 04:44:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764215090;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764215090;}',11,1,'2025-11-27 03:53:08','2025-11-27 04:53:08',318622,NULL), -(6466,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 04:53:08','2025-11-27 05:53:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764219188;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764219188;}',11,1,'2025-11-27 04:53:43','2025-11-27 05:53:43',318629,NULL), -(6467,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 05:53:43','2025-11-27 06:53:43',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764222823;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764222823;}',11,1,'2025-11-27 05:54:29','2025-11-27 06:54:29',318662,NULL), -(6469,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 06:54:29','2025-11-27 07:54:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764226469;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764226469;}',11,1,'2025-11-27 07:42:57','2025-11-27 08:42:57',318679,NULL), -(6470,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 08:42:57','2025-11-27 09:42:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764232977;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764232977;}',11,1,'2025-11-27 08:54:06','2025-11-27 09:54:06',318697,NULL), -(6471,'wc_admin_daily_wrapper','complete','2025-11-28 08:13:33','2025-11-28 09:13:33',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764317613;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764317613;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-28 08:17:03','2025-11-28 09:17:03',319355,NULL), -(6472,'woocommerce_cleanup_personal_data','complete','2025-11-28 08:13:34','2025-11-28 09:13:34',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764317614;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764317614;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-28 08:17:03','2025-11-28 09:17:03',319355,NULL), -(6473,'woocommerce_cleanup_sessions','complete','2025-11-28 05:00:00','2025-11-28 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764306000;s:18:\"\0*\0first_timestamp\";i:1764306000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764306000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-28 05:00:35','2025-11-28 06:00:35',319268,NULL), -(6474,'generate_category_lookup_table_wrapper','complete','2025-11-27 08:13:44','2025-11-27 09:13:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764231224;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764231224;}',11,1,'2025-11-27 08:30:53','2025-11-27 09:30:53',318695,NULL), -(6475,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-28 08:13:34','2025-11-28 09:13:34',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764317614;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764317614;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-28 08:17:03','2025-11-28 09:17:03',319355,NULL), -(6476,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 09:54:06','2025-11-27 10:54:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764237246;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764237246;}',11,1,'2025-11-27 10:03:54','2025-11-27 11:03:54',318728,NULL), -(6477,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 11:03:54','2025-11-27 12:03:54',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764241434;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764241434;}',11,1,'2025-11-27 11:04:08','2025-11-27 12:04:08',318740,NULL), -(6478,'woocommerce_refresh_order_count_cache','complete','2025-11-27 22:03:54','2025-11-27 23:03:54',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764281034;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764281034;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-27 22:09:03','2025-11-27 23:09:03',319064,NULL), -(6479,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-28 10:50:56','2025-11-28 11:50:56',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764327056;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764327056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-28 10:51:32','2025-11-28 11:51:32',319425,NULL), -(6480,'woocommerce_cleanup_logs','complete','2025-11-28 10:50:56','2025-11-28 11:50:56',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764327056;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764327056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-28 10:51:32','2025-11-28 11:51:32',319425,NULL), -(6481,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 12:04:08','2025-11-27 13:04:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764245048;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764245048;}',11,1,'2025-11-27 12:11:04','2025-11-27 13:11:04',318755,NULL), -(6482,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 13:11:04','2025-11-27 14:11:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764249064;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764249064;}',11,1,'2025-11-27 13:11:26','2025-11-27 14:11:26',318779,NULL), -(6483,'wc-admin_import_orders','complete','2025-11-27 13:01:50','2025-11-27 14:01:50',10,'[1530]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764248510;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764248510;}',4,1,'2025-11-27 13:02:12','2025-11-27 14:02:12',318766,NULL), -(6484,'wc-admin_import_orders','complete','2025-11-27 13:03:12','2025-11-27 14:03:12',10,'[1529]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764248592;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764248592;}',4,1,'2025-11-27 13:03:19','2025-11-27 14:03:19',318769,NULL), -(6485,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 14:11:26','2025-11-27 15:11:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764252686;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764252686;}',11,1,'2025-11-27 14:14:06','2025-11-27 15:14:06',318810,NULL), -(6486,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 15:14:06','2025-11-27 16:14:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764256446;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764256446;}',11,1,'2025-11-27 15:14:39','2025-11-27 16:14:39',318849,NULL), -(6487,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 16:14:39','2025-11-27 17:14:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764260079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764260079;}',11,1,'2025-11-27 16:18:46','2025-11-27 17:18:46',318881,NULL), -(6488,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 17:18:46','2025-11-27 18:18:46',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764263926;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764263926;}',11,1,'2025-11-27 17:24:17','2025-11-27 18:24:17',318924,NULL), -(6489,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 18:24:17','2025-11-27 19:24:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764267857;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764267857;}',11,1,'2025-11-27 18:25:16','2025-11-27 19:25:16',318949,NULL), -(6490,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 19:25:16','2025-11-27 20:25:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764271516;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764271516;}',11,1,'2025-11-27 19:25:37','2025-11-27 20:25:37',318986,NULL), -(6491,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 20:25:37','2025-11-27 21:25:37',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764275137;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764275137;}',11,1,'2025-11-27 20:41:18','2025-11-27 21:41:18',319021,NULL), -(6492,'woocommerce_cleanup_draft_orders','complete','2025-11-28 19:59:58','2025-11-28 20:59:58',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764359998;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764359998;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-28 20:00:08','2025-11-28 21:00:08',319672,NULL), -(6493,'wp_mail_smtp_admin_notifications_update','complete','2025-11-28 19:59:58','2025-11-28 20:59:58',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764359998;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764359998;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-28 20:00:08','2025-11-28 21:00:08',319672,NULL), -(6494,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 21:41:18','2025-11-27 22:41:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764279678;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764279678;}',11,1,'2025-11-27 21:42:18','2025-11-27 22:42:18',319048,NULL), -(6495,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 22:42:18','2025-11-27 23:42:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764283338;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764283338;}',11,1,'2025-11-27 22:46:42','2025-11-27 23:46:42',319085,NULL), -(6496,'woocommerce_refresh_order_count_cache','complete','2025-11-28 10:09:03','2025-11-28 11:09:03',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764324543;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764324543;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-28 10:09:34','2025-11-28 11:09:34',319404,NULL), -(6497,'woocommerce_scheduled_sales','complete','2025-11-28 22:29:29','2025-11-28 23:29:29',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764368969;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764368969;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-28 22:31:20','2025-11-28 23:31:20',319748,NULL), -(6498,'woocommerce_cancel_unpaid_orders','complete','2025-11-27 23:46:42','2025-11-28 00:46:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764287202;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764287202;}',11,1,'2025-11-27 23:47:39','2025-11-28 00:47:39',319117,NULL), -(6499,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 00:47:39','2025-11-28 01:47:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764290859;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764290859;}',11,1,'2025-11-28 00:48:06','2025-11-28 01:48:06',319149,NULL), -(6500,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 01:48:06','2025-11-28 02:48:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764294486;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764294486;}',11,1,'2025-11-28 01:51:57','2025-11-28 02:51:57',319173,NULL), -(6501,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 02:51:57','2025-11-28 03:51:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764298317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764298317;}',11,1,'2025-11-28 03:03:18','2025-11-28 04:03:18',319211,NULL), -(6502,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 04:03:18','2025-11-28 05:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764302598;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764302598;}',11,1,'2025-11-28 04:08:01','2025-11-28 05:08:01',319236,NULL), -(6503,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 05:08:01','2025-11-28 06:08:01',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764306481;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764306481;}',11,1,'2025-11-28 05:17:01','2025-11-28 06:17:01',319277,NULL), -(6505,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 06:17:01','2025-11-28 07:17:01',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764310621;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764310621;}',11,1,'2025-11-28 06:21:18','2025-11-28 07:21:18',319300,NULL), -(6506,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 07:21:18','2025-11-28 08:21:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764314478;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764314478;}',11,1,'2025-11-28 07:36:47','2025-11-28 08:36:47',319330,NULL), -(6507,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 08:36:47','2025-11-28 09:36:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764319007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764319007;}',11,1,'2025-11-28 08:44:13','2025-11-28 09:44:13',319374,NULL), -(6508,'wc_admin_daily_wrapper','complete','2025-11-29 08:17:03','2025-11-29 09:17:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764404223;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764404223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-29 08:22:32','2025-11-29 09:22:32',320028,NULL), -(6509,'woocommerce_cleanup_personal_data','complete','2025-11-29 08:17:03','2025-11-29 09:17:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764404223;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764404223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-29 08:22:32','2025-11-29 09:22:32',320028,NULL), -(6510,'woocommerce_cleanup_sessions','complete','2025-11-29 05:00:00','2025-11-29 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764392400;s:18:\"\0*\0first_timestamp\";i:1764392400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764392400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-29 05:00:36','2025-11-29 06:00:36',319936,NULL), -(6511,'generate_category_lookup_table_wrapper','complete','2025-11-28 08:17:13','2025-11-28 09:17:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764317833;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764317833;}',11,1,'2025-11-28 08:17:43','2025-11-28 09:17:43',319357,NULL), -(6512,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-29 08:17:03','2025-11-29 09:17:03',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764404223;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764404223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-29 08:22:32','2025-11-29 09:22:32',320028,NULL), -(6513,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 09:44:13','2025-11-28 10:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764323053;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764323053;}',11,1,'2025-11-28 10:03:18','2025-11-28 11:03:18',319396,NULL), -(6514,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 11:03:18','2025-11-28 12:03:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764327798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764327798;}',11,1,'2025-11-28 11:03:31','2025-11-28 12:03:31',319438,NULL), -(6515,'woocommerce_refresh_order_count_cache','complete','2025-11-28 22:09:34','2025-11-28 23:09:34',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764367774;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764367774;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-28 22:09:38','2025-11-28 23:09:38',319739,NULL), -(6516,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-29 10:51:32','2025-11-29 11:51:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764413492;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764413492;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-29 10:51:41','2025-11-29 11:51:41',320100,NULL), -(6517,'woocommerce_cleanup_logs','complete','2025-11-29 10:51:32','2025-11-29 11:51:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764413492;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764413492;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-29 10:51:41','2025-11-29 11:51:41',320100,NULL), -(6518,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 12:03:31','2025-11-28 13:03:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764331411;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764331411;}',11,1,'2025-11-28 12:04:42','2025-11-28 13:04:42',319466,NULL), -(6519,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 13:04:42','2025-11-28 14:04:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764335082;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764335082;}',11,1,'2025-11-28 13:07:26','2025-11-28 14:07:26',319491,NULL), -(6520,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 14:07:26','2025-11-28 15:07:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764338846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764338846;}',11,1,'2025-11-28 14:07:27','2025-11-28 15:07:27',319531,NULL), -(6521,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 15:07:27','2025-11-28 16:07:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764342447;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764342447;}',11,1,'2025-11-28 15:07:45','2025-11-28 16:07:45',319547,NULL), -(6522,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 16:07:45','2025-11-28 17:07:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764346065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764346065;}',11,1,'2025-11-28 16:10:47','2025-11-28 17:10:47',319580,NULL), -(6523,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 17:10:47','2025-11-28 18:10:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764349847;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764349847;}',11,1,'2025-11-28 17:15:07','2025-11-28 18:15:07',319604,NULL), -(6524,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 18:15:07','2025-11-28 19:15:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764353707;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764353707;}',11,1,'2025-11-28 18:15:26','2025-11-28 19:15:26',319627,NULL), -(6525,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 19:15:26','2025-11-28 20:15:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764357326;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764357326;}',11,1,'2025-11-28 19:20:29','2025-11-28 20:20:29',319649,NULL), -(6526,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 20:20:29','2025-11-28 21:20:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764361229;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764361229;}',11,1,'2025-11-28 20:20:34','2025-11-28 21:20:34',319691,NULL), -(6527,'woocommerce_cleanup_draft_orders','complete','2025-11-29 20:00:08','2025-11-29 21:00:08',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764446408;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764446408;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-29 20:08:15','2025-11-29 21:08:15',320360,NULL), -(6528,'wp_mail_smtp_admin_notifications_update','complete','2025-11-29 20:00:08','2025-11-29 21:00:08',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764446408;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764446408;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-29 20:08:15','2025-11-29 21:08:15',320360,NULL), -(6529,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[610,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6530,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[560,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6531,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[561,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6532,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[562,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6533,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[563,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6534,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[342,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6535,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[338,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6536,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[328,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6537,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[325,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6538,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-28 20:10:56','2025-11-28 21:10:56',10,'[251,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764360656;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764360656;}',3,1,'2025-11-28 20:11:34','2025-11-28 21:11:34',319681,NULL), -(6539,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 21:20:34','2025-11-28 22:20:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764364834;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764364834;}',11,1,'2025-11-28 21:30:33','2025-11-28 22:30:33',319720,NULL), -(6540,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 22:30:33','2025-11-28 23:30:33',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764369033;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764369033;}',11,1,'2025-11-28 22:31:20','2025-11-28 23:31:20',319748,NULL), -(6541,'woocommerce_refresh_order_count_cache','complete','2025-11-29 10:09:38','2025-11-29 11:09:38',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764410978;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764410978;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-29 10:10:38','2025-11-29 11:10:38',320084,NULL), -(6542,'woocommerce_scheduled_sales','complete','2025-11-29 22:31:20','2025-11-29 23:31:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764455480;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764455480;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-29 22:31:37','2025-11-29 23:31:37',320438,NULL), -(6543,'woocommerce_cancel_unpaid_orders','complete','2025-11-28 23:31:20','2025-11-29 00:31:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764372680;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764372680;}',11,1,'2025-11-28 23:31:39','2025-11-29 00:31:39',319776,NULL), -(6544,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 00:31:39','2025-11-29 01:31:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764376299;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764376299;}',11,1,'2025-11-29 00:33:09','2025-11-29 01:33:09',319809,NULL), -(6545,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 01:33:09','2025-11-29 02:33:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764379989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764379989;}',11,1,'2025-11-29 01:41:11','2025-11-29 02:41:11',319837,NULL), -(6546,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 02:41:11','2025-11-29 03:41:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764384071;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764384071;}',11,1,'2025-11-29 02:41:38','2025-11-29 03:41:38',319868,NULL), -(6547,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 03:41:38','2025-11-29 04:41:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764387698;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764387698;}',11,1,'2025-11-29 03:42:46','2025-11-29 04:42:46',319900,NULL), -(6548,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 04:42:46','2025-11-29 05:42:46',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764391366;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764391366;}',11,1,'2025-11-29 04:45:55','2025-11-29 05:45:55',319920,NULL), -(6549,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 05:45:55','2025-11-29 06:45:55',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764395155;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764395155;}',11,1,'2025-11-29 05:46:27','2025-11-29 06:46:27',319954,NULL), -(6551,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 06:46:27','2025-11-29 07:46:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764398787;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764398787;}',11,1,'2025-11-29 06:57:50','2025-11-29 07:57:50',319985,NULL), -(6552,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 07:57:50','2025-11-29 08:57:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764403070;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764403070;}',11,1,'2025-11-29 08:09:05','2025-11-29 09:09:05',320025,NULL), -(6553,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 09:09:05','2025-11-29 10:09:05',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764407345;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764407345;}',11,1,'2025-11-29 09:10:38','2025-11-29 10:10:38',320050,NULL), -(6554,'wc_admin_daily_wrapper','complete','2025-11-30 08:22:32','2025-11-30 09:22:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764490952;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764490952;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-30 08:32:50','2025-11-30 09:32:50',320690,NULL), -(6555,'woocommerce_cleanup_personal_data','complete','2025-11-30 08:22:32','2025-11-30 09:22:32',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764490952;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764490952;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-30 08:32:50','2025-11-30 09:32:50',320690,NULL), -(6556,'woocommerce_cleanup_sessions','complete','2025-11-30 05:00:00','2025-11-30 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764478800;s:18:\"\0*\0first_timestamp\";i:1764478800;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764478800;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-11-30 05:02:53','2025-11-30 06:02:53',320606,NULL), -(6557,'generate_category_lookup_table_wrapper','complete','2025-11-29 08:22:42','2025-11-29 09:22:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764404562;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764404562;}',11,1,'2025-11-29 08:32:27','2025-11-29 09:32:27',320030,NULL), -(6558,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-11-30 08:22:32','2025-11-30 09:22:32',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764490952;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764490952;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-11-30 08:32:50','2025-11-30 09:32:50',320690,NULL), -(6559,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 10:10:38','2025-11-29 11:10:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764411038;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764411038;}',11,1,'2025-11-29 10:10:38','2025-11-29 11:10:38',320084,NULL), -(6560,'woocommerce_refresh_order_count_cache','complete','2025-11-29 22:10:38','2025-11-29 23:10:38',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764454238;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764454238;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-29 22:21:00','2025-11-29 23:21:00',320429,NULL), -(6561,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 11:10:38','2025-11-29 12:10:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764414638;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764414638;}',11,1,'2025-11-29 11:18:06','2025-11-29 12:18:06',320114,NULL), -(6562,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-11-30 10:51:41','2025-11-30 11:51:41',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764499901;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764499901;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-30 10:52:31','2025-11-30 11:52:31',320769,NULL), -(6563,'woocommerce_cleanup_logs','complete','2025-11-30 10:51:41','2025-11-30 11:51:41',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764499901;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764499901;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-30 10:52:31','2025-11-30 11:52:31',320769,NULL), -(6564,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 12:18:06','2025-11-29 13:18:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764418686;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764418686;}',11,1,'2025-11-29 12:27:39','2025-11-29 13:27:39',320139,NULL), -(6565,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 13:27:39','2025-11-29 14:27:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764422859;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764422859;}',11,1,'2025-11-29 13:28:29','2025-11-29 14:28:29',320172,NULL), -(6566,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 14:28:29','2025-11-29 15:28:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764426509;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764426509;}',11,1,'2025-11-29 14:35:36','2025-11-29 15:35:36',320202,NULL), -(6567,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 15:35:36','2025-11-29 16:35:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764430536;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764430536;}',11,1,'2025-11-29 15:38:18','2025-11-29 16:38:18',320227,NULL), -(6568,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 16:38:18','2025-11-29 17:38:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764434298;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764434298;}',11,1,'2025-11-29 16:45:14','2025-11-29 17:45:14',320266,NULL), -(6569,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 17:45:14','2025-11-29 18:45:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764438314;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764438314;}',11,1,'2025-11-29 17:48:06','2025-11-29 18:48:06',320297,NULL), -(6570,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 18:48:06','2025-11-29 19:48:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764442086;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764442086;}',11,1,'2025-11-29 18:48:57','2025-11-29 19:48:57',320334,NULL), -(6571,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 19:48:57','2025-11-29 20:48:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764445737;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764445737;}',11,1,'2025-11-29 20:08:15','2025-11-29 21:08:15',320360,NULL), -(6572,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 21:08:15','2025-11-29 22:08:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764450495;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764450495;}',11,1,'2025-11-29 21:21:14','2025-11-29 22:21:14',320398,NULL), -(6573,'woocommerce_cleanup_draft_orders','complete','2025-11-30 20:08:15','2025-11-30 21:08:15',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764533295;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764533295;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-11-30 20:10:11','2025-11-30 21:10:11',321037,NULL), -(6574,'wp_mail_smtp_admin_notifications_update','complete','2025-11-30 20:08:15','2025-11-30 21:08:15',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764533295;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764533295;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-11-30 20:10:11','2025-11-30 21:10:11',321037,NULL), -(6575,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 22:21:14','2025-11-29 23:21:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764454874;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764454874;}',11,1,'2025-11-29 22:25:36','2025-11-29 23:25:36',320431,NULL), -(6576,'woocommerce_refresh_order_count_cache','complete','2025-11-30 10:21:00','2025-11-30 11:21:00',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764498060;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764498060;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-30 10:21:37','2025-11-30 11:21:37',320753,NULL), -(6577,'woocommerce_cancel_unpaid_orders','complete','2025-11-29 23:25:36','2025-11-30 00:25:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764458736;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764458736;}',11,1,'2025-11-29 23:33:15','2025-11-30 00:33:15',320470,NULL), -(6578,'woocommerce_scheduled_sales','complete','2025-11-30 22:31:37','2025-11-30 23:31:37',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764541897;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764541897;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-11-30 22:31:54','2025-11-30 23:31:54',321138,NULL), -(6579,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 00:33:15','2025-11-30 01:33:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764462795;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764462795;}',11,1,'2025-11-30 00:39:48','2025-11-30 01:39:48',320493,NULL), -(6580,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 01:39:48','2025-11-30 02:39:48',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764466788;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764466788;}',11,1,'2025-11-30 01:40:44','2025-11-30 02:40:44',320530,NULL), -(6581,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 02:40:44','2025-11-30 03:40:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764470444;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764470444;}',11,1,'2025-11-30 02:49:03','2025-11-30 03:49:03',320544,NULL), -(6582,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 03:49:03','2025-11-30 04:49:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764474543;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764474543;}',11,1,'2025-11-30 03:54:07','2025-11-30 04:54:07',320584,NULL), -(6583,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 04:54:07','2025-11-30 05:54:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764478447;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764478447;}',11,1,'2025-11-30 05:02:53','2025-11-30 06:02:53',320606,NULL), -(6584,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 06:02:53','2025-11-30 07:02:53',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764482573;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764482573;}',11,1,'2025-11-30 06:18:07','2025-11-30 07:18:07',320643,NULL), -(6586,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 07:18:07','2025-11-30 08:18:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764487087;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764487087;}',11,1,'2025-11-30 07:21:15','2025-11-30 08:21:15',320666,NULL), -(6587,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 08:21:15','2025-11-30 09:21:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764490875;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764490875;}',11,1,'2025-11-30 08:32:50','2025-11-30 09:32:50',320690,NULL), -(6588,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 09:32:50','2025-11-30 10:32:50',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764495170;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764495170;}',11,1,'2025-11-30 09:33:41','2025-11-30 10:33:41',320725,NULL), -(6589,'wc_admin_daily_wrapper','complete','2025-12-01 08:32:50','2025-12-01 09:32:50',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764577970;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764577970;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-01 08:38:47','2025-12-01 09:38:47',321500,NULL), -(6590,'woocommerce_cleanup_personal_data','complete','2025-12-01 08:32:50','2025-12-01 09:32:50',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764577970;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764577970;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-01 08:38:47','2025-12-01 09:38:47',321500,NULL), -(6591,'woocommerce_cleanup_sessions','complete','2025-12-01 05:00:00','2025-12-01 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764565200;s:18:\"\0*\0first_timestamp\";i:1764565200;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764565200;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-12-01 05:04:33','2025-12-01 06:04:33',321381,NULL), -(6592,'generate_category_lookup_table_wrapper','complete','2025-11-30 08:33:00','2025-11-30 09:33:00',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764491580;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764491580;}',11,1,'2025-11-30 08:38:20','2025-11-30 09:38:20',320692,NULL), -(6593,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-12-01 08:32:50','2025-12-01 09:32:50',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764577970;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764577970;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-12-01 08:38:47','2025-12-01 09:38:47',321500,NULL), -(6594,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 10:33:41','2025-11-30 11:33:41',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764498821;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764498821;}',11,1,'2025-11-30 10:34:38','2025-11-30 11:34:38',320755,NULL), -(6595,'woocommerce_refresh_order_count_cache','complete','2025-11-30 22:21:37','2025-11-30 23:21:37',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764541297;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764541297;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-11-30 22:22:28','2025-11-30 23:22:28',321126,NULL), -(6596,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 11:34:38','2025-11-30 12:34:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764502478;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764502478;}',11,1,'2025-11-30 11:44:13','2025-11-30 12:44:13',320785,NULL), -(6597,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-12-01 10:52:31','2025-12-01 11:52:31',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764586351;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764586351;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-01 10:53:30','2025-12-01 11:53:30',321603,NULL), -(6598,'woocommerce_cleanup_logs','complete','2025-12-01 10:52:31','2025-12-01 11:52:31',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764586351;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764586351;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-01 10:53:30','2025-12-01 11:53:30',321603,NULL), -(6599,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 12:44:13','2025-11-30 13:44:13',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764506653;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764506653;}',11,1,'2025-11-30 12:44:45','2025-11-30 13:44:45',320822,NULL), -(6600,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 13:44:45','2025-11-30 14:44:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764510285;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764510285;}',11,1,'2025-11-30 13:50:14','2025-11-30 14:50:14',320848,NULL), -(6601,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 14:50:14','2025-11-30 15:50:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764514214;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764514214;}',11,1,'2025-11-30 14:50:27','2025-11-30 15:50:27',320879,NULL), -(6602,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 15:50:27','2025-11-30 16:50:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764517827;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764517827;}',11,1,'2025-11-30 15:56:33','2025-11-30 16:56:33',320911,NULL), -(6603,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 16:56:33','2025-11-30 17:56:33',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764521793;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764521793;}',11,1,'2025-11-30 16:58:45','2025-11-30 17:58:45',320941,NULL), -(6604,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 17:58:45','2025-11-30 18:58:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764525525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764525525;}',11,1,'2025-11-30 17:59:35','2025-11-30 18:59:35',320980,NULL), -(6605,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 18:59:35','2025-11-30 19:59:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764529175;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764529175;}',11,1,'2025-11-30 18:59:37','2025-11-30 19:59:37',321003,NULL), -(6606,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 19:59:37','2025-11-30 20:59:37',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764532777;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764532777;}',11,1,'2025-11-30 19:59:58','2025-11-30 20:59:58',321035,NULL), -(6607,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 20:59:58','2025-11-30 21:59:58',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764536398;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764536398;}',11,1,'2025-11-30 21:00:35','2025-11-30 22:00:35',321073,NULL), -(6608,'woocommerce_cleanup_draft_orders','complete','2025-12-01 20:10:11','2025-12-01 21:10:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764619811;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764619811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-12-01 20:10:37','2025-12-01 21:10:37',321897,NULL), -(6609,'wp_mail_smtp_admin_notifications_update','complete','2025-12-01 20:10:11','2025-12-01 21:10:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764619811;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764619811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-12-01 20:10:37','2025-12-01 21:10:37',321897,NULL), -(6610,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 22:00:35','2025-11-30 23:00:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764540035;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764540035;}',11,1,'2025-11-30 22:02:26','2025-11-30 23:02:26',321116,NULL), -(6611,'wc-admin_import_orders','complete','2025-11-30 21:29:12','2025-11-30 22:29:12',10,'[1540]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764538152;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764538152;}',4,1,'2025-11-30 21:32:01','2025-11-30 22:32:01',321089,NULL), -(6612,'wc-admin_import_orders','complete','2025-11-30 21:33:44','2025-11-30 22:33:44',10,'[1540]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764538424;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764538424;}',4,1,'2025-11-30 21:34:42','2025-11-30 22:34:42',321093,NULL), -(6613,'woocommerce_cancel_unpaid_orders','complete','2025-11-30 23:02:26','2025-12-01 00:02:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764543746;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764543746;}',11,1,'2025-11-30 23:02:32','2025-12-01 00:02:32',321181,NULL), -(6614,'woocommerce_refresh_order_count_cache','complete','2025-12-01 10:22:28','2025-12-01 11:22:28',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764584548;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764584548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-12-01 10:22:33','2025-12-01 11:22:33',321586,NULL), -(6615,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:31:13','2025-11-30 23:31:13',10,'[1541,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764541873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764541873;}',3,1,'2025-11-30 22:31:27','2025-11-30 23:31:27',321136,NULL), -(6616,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:31:13','2025-11-30 23:31:13',10,'[1542,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764541873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764541873;}',3,1,'2025-11-30 22:31:27','2025-11-30 23:31:27',321136,NULL), -(6617,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:31:13','2025-11-30 23:31:13',10,'[1543,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764541873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764541873;}',3,1,'2025-11-30 22:31:27','2025-11-30 23:31:27',321136,NULL), -(6618,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:31:13','2025-11-30 23:31:13',10,'[1544,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764541873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764541873;}',3,1,'2025-11-30 22:31:27','2025-11-30 23:31:27',321136,NULL), -(6619,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:31:13','2025-11-30 23:31:13',10,'[1541,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764541873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764541873;}',3,1,'2025-11-30 22:31:27','2025-11-30 23:31:27',321136,NULL), -(6620,'woocommerce_scheduled_sales','complete','2025-12-01 22:31:54','2025-12-01 23:31:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764628314;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764628314;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-01 22:32:33','2025-12-01 23:32:33',321987,NULL), -(6621,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:39:06','2025-11-30 23:39:06',10,'[1542,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542346;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542346;}',3,1,'2025-11-30 22:39:27','2025-11-30 23:39:27',321147,NULL), -(6622,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:39:06','2025-11-30 23:39:06',10,'[1543,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542346;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542346;}',3,1,'2025-11-30 22:39:27','2025-11-30 23:39:27',321147,NULL), -(6623,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:39:06','2025-11-30 23:39:06',10,'[1544,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542346;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542346;}',3,1,'2025-11-30 22:39:27','2025-11-30 23:39:27',321147,NULL), -(6624,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:39:06','2025-11-30 23:39:06',10,'[1541,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542346;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542346;}',3,1,'2025-11-30 22:39:27','2025-11-30 23:39:27',321147,NULL), -(6625,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:39:18','2025-11-30 23:39:18',10,'[1549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542358;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542358;}',3,1,'2025-11-30 22:39:27','2025-11-30 23:39:27',321147,NULL), -(6626,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:44:00','2025-11-30 23:44:00',10,'[1549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542640;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542640;}',3,1,'2025-11-30 22:44:00','2025-11-30 23:44:00',321153,NULL), -(6627,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:44:21','2025-11-30 23:44:21',10,'[1549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542661;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542661;}',3,1,'2025-11-30 22:44:32','2025-11-30 23:44:32',321155,NULL), -(6628,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:44:48','2025-11-30 23:44:48',10,'[1549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542688;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542688;}',3,1,'2025-11-30 22:45:08','2025-11-30 23:45:08',321157,NULL), -(6629,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:45:44','2025-11-30 23:45:44',10,'[288,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542744;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542744;}',3,1,'2025-11-30 22:46:09','2025-11-30 23:46:09',321160,NULL), -(6630,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:46:02','2025-11-30 23:46:02',10,'[1549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542762;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542762;}',3,1,'2025-11-30 22:46:09','2025-11-30 23:46:09',321160,NULL), -(6631,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:46:58','2025-11-30 23:46:58',10,'[1555,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764542818;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764542818;}',3,1,'2025-11-30 22:47:19','2025-11-30 23:47:19',321163,NULL), -(6632,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:52:11','2025-11-30 23:52:11',10,'[1555,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764543131;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764543131;}',3,1,'2025-11-30 22:52:30','2025-11-30 23:52:30',321170,NULL), -(6633,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:52:18','2025-11-30 23:52:18',10,'[1560,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764543138;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764543138;}',3,1,'2025-11-30 22:52:30','2025-11-30 23:52:30',321170,NULL), -(6634,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 22:55:07','2025-11-30 23:55:07',10,'[1560,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764543307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764543307;}',3,1,'2025-11-30 22:55:34','2025-11-30 23:55:34',321174,NULL), -(6635,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 00:02:32','2025-12-01 01:02:32',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764547352;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764547352;}',11,1,'2025-12-01 00:03:29','2025-12-01 01:03:29',321236,NULL), -(6636,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 23:08:25','2025-12-01 00:08:25',10,'[274,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764544105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764544105;}',3,1,'2025-11-30 23:08:26','2025-12-01 00:08:26',321188,NULL), -(6637,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 23:09:16','2025-12-01 00:09:16',10,'[274,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764544156;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764544156;}',3,1,'2025-11-30 23:09:26','2025-12-01 00:09:26',321190,NULL), -(6638,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-11-30 23:19:31','2025-12-01 00:19:31',10,'[766,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764544771;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764544771;}',3,1,'2025-11-30 23:19:46','2025-12-01 00:19:46',321202,NULL), -(6639,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 01:03:29','2025-12-01 02:03:29',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764551009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764551009;}',11,1,'2025-12-01 01:05:19','2025-12-01 02:05:19',321267,NULL), -(6640,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 02:05:19','2025-12-01 03:05:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764554719;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764554719;}',11,1,'2025-12-01 02:15:15','2025-12-01 03:15:15',321289,NULL), -(6641,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 03:15:15','2025-12-01 04:15:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764558915;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764558915;}',11,1,'2025-12-01 03:15:27','2025-12-01 04:15:27',321330,NULL), -(6642,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 04:15:27','2025-12-01 05:15:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764562527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764562527;}',11,1,'2025-12-01 04:18:36','2025-12-01 05:18:36',321357,NULL), -(6643,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 05:18:36','2025-12-01 06:18:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764566316;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764566316;}',11,1,'2025-12-01 05:19:34','2025-12-01 06:19:34',321397,NULL), -(6645,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 06:19:34','2025-12-01 07:19:34',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764569974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764569974;}',11,1,'2025-12-01 06:20:19','2025-12-01 07:20:19',321427,NULL), -(6646,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 07:20:19','2025-12-01 08:20:19',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764573619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764573619;}',11,1,'2025-12-01 07:20:37','2025-12-01 08:20:37',321457,NULL), -(6647,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 08:20:37','2025-12-01 09:20:37',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764577237;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764577237;}',11,1,'2025-12-01 08:21:06','2025-12-01 09:21:06',321495,NULL), -(6648,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 09:21:06','2025-12-01 10:21:06',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764580866;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764580866;}',11,1,'2025-12-01 09:21:15','2025-12-01 10:21:15',321535,NULL), -(6649,'wc_admin_daily_wrapper','complete','2025-12-02 08:38:47','2025-12-02 09:38:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764664727;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764664727;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-02 08:39:29','2025-12-02 09:39:29',322294,NULL), -(6650,'woocommerce_cleanup_personal_data','complete','2025-12-02 08:38:47','2025-12-02 09:38:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764664727;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764664727;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-02 08:39:29','2025-12-02 09:39:29',322294,NULL), -(6651,'woocommerce_cleanup_sessions','complete','2025-12-02 05:00:00','2025-12-02 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764651600;s:18:\"\0*\0first_timestamp\";i:1764651600;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764651600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-12-02 05:00:36','2025-12-02 06:00:36',322180,NULL), -(6652,'generate_category_lookup_table_wrapper','complete','2025-12-01 08:38:57','2025-12-01 09:38:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764578337;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764578337;}',11,1,'2025-12-01 08:40:21','2025-12-01 09:40:21',321502,NULL), -(6653,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-12-02 08:38:47','2025-12-02 09:38:47',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764664727;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764664727;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-12-02 08:39:29','2025-12-02 09:39:29',322294,NULL), -(6654,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 10:21:15','2025-12-01 11:21:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764584475;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764584475;}',11,1,'2025-12-01 10:21:32','2025-12-01 11:21:32',321584,NULL), -(6655,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 11:21:32','2025-12-01 12:21:32',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764588092;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764588092;}',11,1,'2025-12-01 11:22:31','2025-12-01 12:22:31',321613,NULL), -(6656,'woocommerce_refresh_order_count_cache','complete','2025-12-01 22:22:33','2025-12-01 23:22:33',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764627753;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764627753;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-12-01 22:23:10','2025-12-01 23:23:10',321984,NULL), -(6657,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-12-02 10:53:30','2025-12-02 11:53:30',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764672810;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764672810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-02 10:54:27','2025-12-02 11:54:27',322380,NULL), -(6658,'woocommerce_cleanup_logs','complete','2025-12-02 10:53:30','2025-12-02 11:53:30',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764672810;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764672810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-02 10:54:27','2025-12-02 11:54:27',322380,NULL), -(6659,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 12:22:31','2025-12-01 13:22:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764591751;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764591751;}',11,1,'2025-12-01 12:24:08','2025-12-01 13:24:08',321653,NULL), -(6660,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 13:24:08','2025-12-01 14:24:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764595448;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764595448;}',11,1,'2025-12-01 13:24:26','2025-12-01 14:24:26',321682,NULL), -(6661,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 14:24:26','2025-12-01 15:24:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764599066;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764599066;}',11,1,'2025-12-01 14:41:12','2025-12-01 15:41:12',321710,NULL), -(6662,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 15:41:12','2025-12-01 16:41:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764603672;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764603672;}',11,1,'2025-12-01 15:41:32','2025-12-01 16:41:32',321734,NULL), -(6663,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 16:41:32','2025-12-01 17:41:32',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764607292;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764607292;}',11,1,'2025-12-01 16:50:36','2025-12-01 17:50:36',321771,NULL), -(6664,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 17:50:36','2025-12-01 18:50:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764611436;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764611436;}',11,1,'2025-12-01 17:50:36','2025-12-01 18:50:36',321806,NULL), -(6665,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 18:50:36','2025-12-01 19:50:36',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764615036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764615036;}',11,1,'2025-12-01 18:51:28','2025-12-01 19:51:28',321842,NULL), -(6666,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 19:51:28','2025-12-01 20:51:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764618688;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764618688;}',11,1,'2025-12-01 19:52:46','2025-12-01 20:52:46',321887,NULL), -(6667,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 20:52:46','2025-12-01 21:52:46',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764622366;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764622366;}',11,1,'2025-12-01 20:53:27','2025-12-01 21:53:27',321924,NULL), -(6668,'woocommerce_cleanup_draft_orders','complete','2025-12-02 20:10:37','2025-12-02 21:10:37',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764706237;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764706237;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-12-02 20:10:38','2025-12-02 21:10:38',322529,NULL), -(6669,'wp_mail_smtp_admin_notifications_update','complete','2025-12-02 20:10:37','2025-12-02 21:10:37',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764706237;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764706237;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-12-02 20:10:38','2025-12-02 21:10:38',322529,NULL), -(6670,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 21:53:27','2025-12-01 22:53:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764626007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764626007;}',11,1,'2025-12-01 21:53:44','2025-12-01 22:53:44',321962,NULL), -(6671,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 22:53:44','2025-12-01 23:53:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764629624;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764629624;}',11,1,'2025-12-01 22:57:07','2025-12-01 23:57:07',322008,NULL), -(6672,'woocommerce_refresh_order_count_cache','complete','2025-12-02 10:23:10','2025-12-02 11:23:10',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764670990;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764670990;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-12-02 10:23:33','2025-12-02 11:23:33',322361,NULL), -(6673,'woocommerce_scheduled_sales','complete','2025-12-02 22:32:33','2025-12-02 23:32:33',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764714753;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764714753;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-02 22:39:37','2025-12-02 23:39:37',322572,NULL), -(6674,'woocommerce_cancel_unpaid_orders','complete','2025-12-01 23:57:07','2025-12-02 00:57:07',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764633427;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764633427;}',11,1,'2025-12-01 23:57:08','2025-12-02 00:57:08',322038,NULL), -(6675,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 00:57:08','2025-12-02 01:57:08',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764637028;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764637028;}',11,1,'2025-12-02 00:57:31','2025-12-02 01:57:31',322067,NULL), -(6676,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 01:57:31','2025-12-02 02:57:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764640651;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764640651;}',11,1,'2025-12-02 01:57:38','2025-12-02 02:57:38',322093,NULL), -(6677,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 02:57:38','2025-12-02 03:57:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764644258;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764644258;}',11,1,'2025-12-02 02:58:03','2025-12-02 03:58:03',322124,NULL), -(6678,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 03:58:03','2025-12-02 04:58:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764647883;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764647883;}',11,1,'2025-12-02 04:04:09','2025-12-02 05:04:09',322146,NULL), -(6679,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 05:04:09','2025-12-02 06:04:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764651849;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764651849;}',11,1,'2025-12-02 05:04:40','2025-12-02 06:04:40',322185,NULL), -(6680,'wp_mail_smtp_summary_report_email','pending','2025-12-09 04:15:36','2025-12-09 05:15:36',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1765253736;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1765253736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6682,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 06:04:40','2025-12-02 07:04:40',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764655480;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764655480;}',11,1,'2025-12-02 06:09:12','2025-12-02 07:09:12',322214,NULL), -(6683,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 07:09:12','2025-12-02 08:09:12',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764659352;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764659352;}',11,1,'2025-12-02 07:09:35','2025-12-02 08:09:35',322242,NULL), -(6684,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 08:09:35','2025-12-02 09:09:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764662975;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764662975;}',11,1,'2025-12-02 08:11:35','2025-12-02 09:11:35',322280,NULL), -(6685,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 09:11:35','2025-12-02 10:11:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764666695;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764666695;}',11,1,'2025-12-02 09:14:02','2025-12-02 10:14:02',322308,NULL), -(6686,'wc_admin_daily_wrapper','complete','2025-12-03 08:39:29','2025-12-03 09:39:29',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764751169;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764751169;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-03 08:39:46','2025-12-03 09:39:46',322737,NULL), -(6687,'woocommerce_cleanup_personal_data','complete','2025-12-03 08:39:29','2025-12-03 09:39:29',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764751169;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764751169;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-03 08:39:47','2025-12-03 09:39:47',322737,NULL), -(6688,'woocommerce_cleanup_sessions','complete','2025-12-03 05:00:00','2025-12-03 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764738000;s:18:\"\0*\0first_timestamp\";i:1764738000;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764738000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,1,'2025-12-03 05:22:16','2025-12-03 06:22:16',322615,NULL), -(6689,'generate_category_lookup_table_wrapper','complete','2025-12-02 08:39:39','2025-12-02 09:39:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764664779;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764664779;}',11,1,'2025-12-02 08:40:28','2025-12-02 09:40:28',322296,NULL), -(6690,'action_scheduler_run_recurring_actions_schedule_hook','complete','2025-12-03 08:39:29','2025-12-03 09:39:29',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764751169;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764751169;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,1,'2025-12-03 08:39:47','2025-12-03 09:39:47',322737,NULL), -(6691,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 10:14:02','2025-12-02 11:14:02',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764670442;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764670442;}',11,1,'2025-12-02 10:14:39','2025-12-02 11:14:39',322352,NULL), -(6692,'wc-admin_import_orders','complete','2025-12-02 09:20:34','2025-12-02 10:20:34',10,'[1571]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764667234;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764667234;}',4,1,'2025-12-02 09:21:44','2025-12-02 10:21:44',322314,NULL), -(6693,'wc-admin_import_orders','complete','2025-12-02 09:21:59','2025-12-02 10:21:59',10,'[1571]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764667319;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764667319;}',4,1,'2025-12-02 09:22:44','2025-12-02 10:22:44',322316,NULL), -(6694,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 11:14:39','2025-12-02 12:14:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764674079;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764674079;}',11,1,'2025-12-02 11:23:03','2025-12-02 12:23:03',322387,NULL), -(6695,'woocommerce_refresh_order_count_cache','complete','2025-12-02 22:23:33','2025-12-02 23:23:33',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764714213;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764714213;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-12-02 22:28:45','2025-12-02 23:28:45',322569,NULL), -(6696,'woocommerce_cleanup_rate_limits_wrapper','complete','2025-12-03 10:54:27','2025-12-03 11:54:27',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764759267;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764759267;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-03 10:59:20','2025-12-03 11:59:20',322832,NULL), -(6697,'woocommerce_cleanup_logs','complete','2025-12-03 10:54:27','2025-12-03 11:54:27',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764759267;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764759267;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,1,'2025-12-03 10:59:20','2025-12-03 11:59:20',322832,NULL), -(6698,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 12:23:03','2025-12-02 13:23:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764678183;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764678183;}',11,1,'2025-12-02 12:23:31','2025-12-02 13:23:31',322418,NULL), -(6699,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 13:23:31','2025-12-02 14:23:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764681811;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764681811;}',11,1,'2025-12-02 13:25:35','2025-12-02 14:25:35',322453,NULL), -(6700,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 14:25:35','2025-12-02 15:25:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764685535;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764685535;}',11,1,'2025-12-02 14:34:20','2025-12-02 15:34:20',322467,NULL), -(6701,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 15:34:20','2025-12-02 16:34:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764689660;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764689660;}',11,1,'2025-12-02 15:40:38','2025-12-02 16:40:38',322479,NULL), -(6702,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 16:40:38','2025-12-02 17:40:38',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764693638;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764693638;}',11,1,'2025-12-02 17:06:18','2025-12-02 18:06:18',322493,NULL), -(6703,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 18:06:18','2025-12-02 19:06:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764698778;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764698778;}',11,1,'2025-12-02 18:11:53','2025-12-02 19:11:53',322503,NULL), -(6704,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 19:11:52','2025-12-02 20:11:52',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764702712;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764702712;}',11,1,'2025-12-02 19:21:31','2025-12-02 20:21:31',322515,NULL), -(6705,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 20:21:31','2025-12-02 21:21:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764706891;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764706891;}',11,1,'2025-12-02 20:21:35','2025-12-02 21:21:35',322532,NULL), -(6706,'woocommerce_cleanup_draft_orders','pending','2025-12-03 20:10:38','2025-12-03 21:10:38',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764792638;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764792638;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6707,'wp_mail_smtp_admin_notifications_update','pending','2025-12-03 20:10:38','2025-12-03 21:10:38',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764792638;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764792638;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6708,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 21:21:35','2025-12-02 22:21:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764710495;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764710495;}',11,1,'2025-12-02 21:23:49','2025-12-02 22:23:49',322560,NULL), -(6709,'wc-admin_import_orders','complete','2025-12-02 20:46:41','2025-12-02 21:46:41',10,'[1572]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764708401;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764708401;}',4,1,'2025-12-02 20:47:29','2025-12-02 21:47:29',322551,NULL), -(6710,'wc-admin_import_orders','complete','2025-12-02 20:47:34','2025-12-02 21:47:34',10,'[1573]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764708454;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764708454;}',4,1,'2025-12-02 20:54:51','2025-12-02 21:54:51',322553,NULL), -(6711,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 22:23:49','2025-12-02 23:23:49',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764714229;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764714229;}',11,1,'2025-12-02 22:28:45','2025-12-02 23:28:45',322569,NULL), -(6712,'woocommerce_refresh_order_count_cache','complete','2025-12-03 10:28:45','2025-12-03 11:28:45',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764757725;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764757725;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-12-03 10:39:01','2025-12-03 11:39:01',322818,NULL), -(6713,'woocommerce_cancel_unpaid_orders','complete','2025-12-02 23:28:45','2025-12-03 00:28:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764718125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764718125;}',11,1,'2025-12-02 23:42:39','2025-12-03 00:42:39',322580,NULL), -(6714,'woocommerce_scheduled_sales','pending','2025-12-03 22:39:37','2025-12-03 23:39:37',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764801577;s:18:\"\0*\0first_timestamp\";i:1757368800;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764801577;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6715,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 00:42:39','2025-12-03 01:42:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764722559;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764722559;}',11,1,'2025-12-03 00:45:57','2025-12-03 01:45:57',322588,NULL), -(6716,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 01:45:57','2025-12-03 02:45:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764726357;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764726357;}',11,1,'2025-12-03 02:22:24','2025-12-03 03:22:24',322599,NULL), -(6717,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 03:22:24','2025-12-03 04:22:24',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764732144;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764732144;}',11,1,'2025-12-03 03:35:49','2025-12-03 04:35:49',322605,NULL), -(6718,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 04:35:49','2025-12-03 05:35:49',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764736549;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764736549;}',11,1,'2025-12-03 04:56:01','2025-12-03 05:56:01',322612,NULL), -(6719,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 05:56:01','2025-12-03 06:56:01',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764741361;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764741361;}',11,1,'2025-12-03 06:07:09','2025-12-03 07:07:09',322619,NULL), -(6721,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 07:07:09','2025-12-03 08:07:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764745629;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764745629;}',11,1,'2025-12-03 07:07:31','2025-12-03 08:07:31',322633,NULL), -(6722,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 08:07:31','2025-12-03 09:07:31',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749251;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749251;}',11,1,'2025-12-03 08:07:45','2025-12-03 09:07:45',322705,NULL), -(6723,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:39:43','2025-12-03 08:39:43',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747583;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747583;}',3,1,'2025-12-03 07:40:28','2025-12-03 08:40:28',322659,NULL), -(6724,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:39:47','2025-12-03 08:39:47',10,'[1578,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747587;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747587;}',3,1,'2025-12-03 07:40:28','2025-12-03 08:40:28',322659,NULL), -(6725,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:39:47','2025-12-03 08:39:47',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747587;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747587;}',3,1,'2025-12-03 07:40:28','2025-12-03 08:40:28',322659,NULL), -(6726,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:40:03','2025-12-03 08:40:03',10,'[1578,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747603;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747603;}',3,1,'2025-12-03 07:40:28','2025-12-03 08:40:28',322659,NULL), -(6727,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:40:48','2025-12-03 08:40:48',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747648;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747648;}',3,1,'2025-12-03 07:41:28','2025-12-03 08:41:28',322661,NULL), -(6728,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:40:51','2025-12-03 08:40:51',10,'[1579,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747651;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747651;}',3,1,'2025-12-03 07:41:28','2025-12-03 08:41:28',322661,NULL), -(6729,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:40:51','2025-12-03 08:40:51',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747651;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747651;}',3,1,'2025-12-03 07:41:28','2025-12-03 08:41:28',322661,NULL), -(6730,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:40:57','2025-12-03 08:40:57',10,'[1579,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747657;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747657;}',3,1,'2025-12-03 07:41:28','2025-12-03 08:41:28',322661,NULL), -(6731,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:41:39','2025-12-03 08:41:39',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747699;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747699;}',3,1,'2025-12-03 07:41:48','2025-12-03 08:41:48',322663,NULL), -(6732,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:41:43','2025-12-03 08:41:43',10,'[1580,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747703;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747703;}',3,1,'2025-12-03 07:41:48','2025-12-03 08:41:48',322663,NULL), -(6733,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:41:43','2025-12-03 08:41:43',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747703;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747703;}',3,1,'2025-12-03 07:41:48','2025-12-03 08:41:48',322663,NULL), -(6734,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:41:58','2025-12-03 08:41:58',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747718;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747718;}',3,1,'2025-12-03 07:42:28','2025-12-03 08:42:28',322665,NULL), -(6735,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:43:30','2025-12-03 08:43:30',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764747810;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764747810;}',3,1,'2025-12-03 07:43:57','2025-12-03 08:43:57',322668,NULL), -(6736,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:46:40','2025-12-03 08:46:40',10,'[1580,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748000;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748000;}',3,1,'2025-12-03 07:47:09','2025-12-03 08:47:09',322673,NULL), -(6737,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:46:40','2025-12-03 08:46:40',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748000;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748000;}',3,1,'2025-12-03 07:47:09','2025-12-03 08:47:09',322673,NULL), -(6738,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:46:43','2025-12-03 08:46:43',10,'[1581,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748003;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748003;}',3,1,'2025-12-03 07:47:09','2025-12-03 08:47:09',322673,NULL), -(6739,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:46:49','2025-12-03 08:46:49',10,'[1581,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748009;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748009;}',3,1,'2025-12-03 07:47:09','2025-12-03 08:47:09',322673,NULL), -(6740,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:47:05','2025-12-03 08:47:05',10,'[1582,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748025;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748025;}',3,1,'2025-12-03 07:47:09','2025-12-03 08:47:09',322673,NULL), -(6741,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:47:10','2025-12-03 08:47:10',10,'[1582,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748030;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748030;}',3,1,'2025-12-03 07:47:14','2025-12-03 08:47:14',322675,NULL), -(6742,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:47:16','2025-12-03 08:47:16',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748036;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748036;}',3,1,'2025-12-03 07:47:19','2025-12-03 08:47:19',322677,NULL), -(6743,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:47:20','2025-12-03 08:47:20',10,'[1583,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748040;}',3,1,'2025-12-03 07:47:25','2025-12-03 08:47:25',322679,NULL), -(6744,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:47:21','2025-12-03 08:47:21',10,'[1584,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748041;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748041;}',3,1,'2025-12-03 07:47:25','2025-12-03 08:47:25',322679,NULL), -(6745,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:47:21','2025-12-03 08:47:21',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748041;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748041;}',3,1,'2025-12-03 07:47:25','2025-12-03 08:47:25',322679,NULL), -(6746,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:59:44','2025-12-03 08:59:44',10,'[1583,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748784;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748784;}',3,1,'2025-12-03 08:00:01','2025-12-03 09:00:01',322694,NULL), -(6747,'adjust_download_permissions','complete','2025-12-03 07:59:44','2025-12-03 08:59:44',10,'[1574]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748784;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748784;}',2,1,'2025-12-03 08:00:01','2025-12-03 09:00:01',322694,NULL), -(6748,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:59:50','2025-12-03 08:59:50',10,'[1583,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748790;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748790;}',3,1,'2025-12-03 08:00:01','2025-12-03 09:00:01',322694,NULL), -(6749,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:59:52','2025-12-03 08:59:52',10,'[1584,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748792;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748792;}',3,1,'2025-12-03 08:00:01','2025-12-03 09:00:01',322694,NULL), -(6750,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:59:52','2025-12-03 08:59:52',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748792;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748792;}',3,1,'2025-12-03 08:00:01','2025-12-03 09:00:01',322694,NULL), -(6751,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 07:59:56','2025-12-03 08:59:56',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764748796;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764748796;}',3,1,'2025-12-03 08:00:01','2025-12-03 09:00:01',322694,NULL), -(6752,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:25','2025-12-03 09:03:25',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749005;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749005;}',3,1,'2025-12-03 08:03:26','2025-12-03 09:03:26',322699,NULL), -(6753,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1585,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6754,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1586,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6755,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1587,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6756,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1588,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6757,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1589,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6758,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1590,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6759,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1591,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6760,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:03:31','2025-12-03 09:03:31',10,'[1574,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764749011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764749011;}',3,1,'2025-12-03 08:03:42','2025-12-03 09:03:42',322701,NULL), -(6761,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 09:07:45','2025-12-03 10:07:45',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764752865;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764752865;}',11,1,'2025-12-03 09:08:30','2025-12-03 10:08:30',322771,NULL), -(6762,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:37','2025-12-03 09:27:37',10,'[1585,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750457;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750457;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6763,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:37','2025-12-03 09:27:37',10,'[1586,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750457;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750457;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6764,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:38','2025-12-03 09:27:38',10,'[1587,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750458;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6765,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:38','2025-12-03 09:27:38',10,'[1588,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750458;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6766,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:38','2025-12-03 09:27:38',10,'[1589,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750458;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6767,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:38','2025-12-03 09:27:38',10,'[1590,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750458;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6768,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:27:38','2025-12-03 09:27:38',10,'[1591,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750458;}',3,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6769,'adjust_download_permissions','complete','2025-12-03 08:27:38','2025-12-03 09:27:38',10,'[1574]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764750458;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764750458;}',2,1,'2025-12-03 08:28:15','2025-12-03 09:28:15',322723,NULL), -(6770,'wc_admin_daily_wrapper','pending','2025-12-04 08:39:46','2025-12-04 09:39:46',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764837586;s:18:\"\0*\0first_timestamp\";i:1757315576;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764837586;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6771,'woocommerce_cleanup_personal_data','pending','2025-12-04 08:39:47','2025-12-04 09:39:47',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764837587;s:18:\"\0*\0first_timestamp\";i:1757315585;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764837587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6772,'woocommerce_cleanup_sessions','pending','2025-12-04 05:00:00','2025-12-04 06:00:00',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764824400;s:18:\"\0*\0first_timestamp\";i:1764824400;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764824400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6773,'generate_category_lookup_table_wrapper','complete','2025-12-03 08:39:57','2025-12-03 09:39:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764751197;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764751197;}',11,1,'2025-12-03 08:40:56','2025-12-03 09:40:56',322739,NULL), -(6774,'action_scheduler_run_recurring_actions_schedule_hook','pending','2025-12-04 08:39:47','2025-12-04 09:39:47',20,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764837587;s:18:\"\0*\0first_timestamp\";i:1755587404;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764837587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6775,'adjust_download_permissions','complete','2025-12-03 08:57:28','2025-12-03 09:57:28',10,'[1574]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764752248;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764752248;}',2,1,'2025-12-03 08:58:20','2025-12-03 09:58:20',322759,NULL), -(6776,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 08:57:28','2025-12-03 09:57:28',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764752248;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764752248;}',3,1,'2025-12-03 08:58:20','2025-12-03 09:58:20',322759,NULL), -(6777,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 10:08:30','2025-12-03 11:08:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764756510;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764756510;}',11,1,'2025-12-03 10:08:32','2025-12-03 11:08:32',322808,NULL), -(6778,'adjust_download_permissions','complete','2025-12-03 09:11:51','2025-12-03 10:11:51',10,'[1574]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753111;}',2,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6779,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:51','2025-12-03 10:11:51',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753111;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753111;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6780,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1594,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6781,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1595,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6782,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1596,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6783,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1597,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6784,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1598,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6785,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1599,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:03','2025-12-03 10:12:03',322776,NULL), -(6786,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1600,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:04','2025-12-03 10:12:04',322776,NULL), -(6787,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1601,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:04','2025-12-03 10:12:04',322776,NULL), -(6788,'adjust_download_permissions','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1594]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',2,1,'2025-12-03 09:12:04','2025-12-03 10:12:04',322776,NULL), -(6789,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:11:53','2025-12-03 10:11:53',10,'[1594,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753113;}',3,1,'2025-12-03 09:12:04','2025-12-03 10:12:04',322776,NULL), -(6790,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1595,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6791,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1596,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6792,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1597,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6793,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1598,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6794,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1599,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6795,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1600,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6796,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1601,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6797,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:12:30','2025-12-03 10:12:30',10,'[1594,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753150;}',3,1,'2025-12-03 09:13:10','2025-12-03 10:13:10',322779,NULL), -(6798,'adjust_download_permissions','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1574]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',2,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6799,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1586,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6800,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1587,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6801,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1588,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6802,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1589,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6803,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1590,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6804,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1591,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6805,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:09','2025-12-03 10:16:09',10,'[1585,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753369;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753369;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6806,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-12-03 09:16:10','2025-12-03 10:16:10',10,'[1574,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764753370;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764753370;}',3,1,'2025-12-03 09:16:23','2025-12-03 10:16:23',322784,NULL), -(6807,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 11:08:32','2025-12-03 12:08:32',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764760112;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764760112;}',11,1,'2025-12-03 11:09:15','2025-12-03 12:09:15',322840,NULL), -(6808,'woocommerce_refresh_order_count_cache','pending','2025-12-03 22:39:01','2025-12-03 23:39:01',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764801541;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764801541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6809,'woocommerce_cleanup_rate_limits_wrapper','pending','2025-12-04 10:59:20','2025-12-04 11:59:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764845960;s:18:\"\0*\0first_timestamp\";i:1757326376;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764845960;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6810,'woocommerce_cleanup_logs','pending','2025-12-04 10:59:20','2025-12-04 11:59:20',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1764845960;s:18:\"\0*\0first_timestamp\";i:1761733274;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1764845960;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), -(6811,'woocommerce_cancel_unpaid_orders','complete','2025-12-03 12:09:15','2025-12-03 13:09:15',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764763755;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764763755;}',11,1,'2025-12-03 12:10:42','2025-12-03 13:10:42',322867,NULL), -(6812,'woocommerce_cancel_unpaid_orders','pending','2025-12-03 13:10:42','2025-12-03 14:10:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1764767442;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1764767442;}',11,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL); -/*!40000 ALTER TABLE `haikuwp_actionscheduler_actions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_actionscheduler_claims` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_claims`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_claims` ( - `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`claim_id`), - KEY `date_created_gmt` (`date_created_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=322870 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_claims` --- - -LOCK TABLES `haikuwp_actionscheduler_claims` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_claims` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_claims` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_actionscheduler_groups` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_groups` ( - `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `slug` varchar(255) NOT NULL, - PRIMARY KEY (`group_id`), - KEY `slug` (`slug`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_groups` --- - -LOCK TABLES `haikuwp_actionscheduler_groups` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_groups` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_actionscheduler_groups` VALUES -(1,'action-scheduler-migration'), -(2,''), -(3,'woocommerce-db-updates'), -(4,'wc-admin-data'), -(5,'wc_update_product_default_cat'), -(6,'wp_mail_smtp'), -(7,'wc_update_product_lookup_tables'), -(8,'wc_delete_related_product_transients_group'), -(9,'count'), -(10,'ActionScheduler'), -(11,'woocommerce'); -/*!40000 ALTER TABLE `haikuwp_actionscheduler_groups` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_actionscheduler_logs` --- - -DROP TABLE IF EXISTS `haikuwp_actionscheduler_logs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_actionscheduler_logs` ( - `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `action_id` bigint(20) unsigned NOT NULL, - `message` text NOT NULL, - `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', - `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`log_id`), - KEY `action_id` (`action_id`), - KEY `log_date_gmt` (`log_date_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=20365 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_actionscheduler_logs` --- - -LOCK TABLES `haikuwp_actionscheduler_logs` WRITE; -/*!40000 ALTER TABLE `haikuwp_actionscheduler_logs` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_actionscheduler_logs` VALUES -(7521,2516,'action created','2025-06-18 06:50:55','2025-06-18 08:50:55'), -(7639,2516,'action started via WP Cron','2025-06-18 18:51:12','2025-06-18 20:51:12'), -(7640,2516,'action failed via WP Cron: Scheduled action for woocommerce_refresh_order_count_cache will not be executed as no callbacks are registered.','2025-06-18 18:51:12','2025-06-18 20:51:12'), -(7819,2616,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7820,2617,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7822,2619,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7824,2621,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), -(7827,2616,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7828,2616,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7829,2617,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7830,2617,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7831,2619,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7832,2619,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7833,2621,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(7834,2621,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), -(9699,3248,'action created','2025-09-08 07:13:56','2025-09-08 09:13:56'), -(11187,3744,'action created','2025-09-20 10:15:00','2025-09-20 12:15:00'), -(11338,3744,'action started via WP Cron','2025-09-21 10:15:00','2025-09-21 12:15:00'), -(11339,3744,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-21 10:15:00','2025-09-21 12:15:00'), -(11340,3795,'action created','2025-09-21 10:15:00','2025-09-21 12:15:00'), -(11449,3795,'action started via WP Cron','2025-09-22 10:15:00','2025-09-22 12:15:00'), -(11450,3795,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-22 10:15:00','2025-09-22 12:15:00'), -(11451,3832,'action created','2025-09-22 10:15:00','2025-09-22 12:15:00'), -(11539,3248,'action started via WP Cron','2025-09-23 07:14:01','2025-09-23 09:14:01'), -(11540,3248,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-23 07:14:01','2025-09-23 09:14:01'), -(11541,3862,'action created','2025-09-23 07:14:01','2025-09-23 09:14:01'), -(11572,3832,'action started via WP Cron','2025-09-23 10:15:01','2025-09-23 12:15:01'), -(11573,3832,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-23 10:15:01','2025-09-23 12:15:01'), -(11574,3873,'action created','2025-09-23 10:15:01','2025-09-23 12:15:01'), -(11683,3873,'action started via WP Cron','2025-09-24 10:15:01','2025-09-24 12:15:01'), -(11684,3873,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-24 10:15:01','2025-09-24 12:15:01'), -(11685,3910,'action created','2025-09-24 10:15:01','2025-09-24 12:15:01'), -(11815,3910,'action started via WP Cron','2025-09-25 10:15:01','2025-09-25 12:15:01'), -(11816,3910,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-25 10:15:01','2025-09-25 12:15:01'), -(11817,3954,'action created','2025-09-25 10:15:01','2025-09-25 12:15:01'), -(11926,3954,'action started via WP Cron','2025-09-26 10:15:02','2025-09-26 12:15:02'), -(11927,3954,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-26 10:15:02','2025-09-26 12:15:02'), -(11928,3991,'action created','2025-09-26 10:15:02','2025-09-26 12:15:02'), -(12037,3991,'action started via WP Cron','2025-09-27 10:15:02','2025-09-27 12:15:02'), -(12038,3991,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-27 10:15:02','2025-09-27 12:15:02'), -(12039,4028,'action created','2025-09-27 10:15:02','2025-09-27 12:15:02'), -(12292,4028,'action started via WP Cron','2025-09-28 10:15:02','2025-09-28 12:15:02'), -(12293,4028,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-28 10:15:02','2025-09-28 12:15:02'), -(12294,4113,'action created','2025-09-28 10:15:02','2025-09-28 12:15:02'), -(12403,4113,'action started via WP Cron','2025-09-29 10:15:03','2025-09-29 12:15:03'), -(12404,4113,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-29 10:15:03','2025-09-29 12:15:03'), -(12405,4150,'action created','2025-09-29 10:15:03','2025-09-29 12:15:03'), -(12517,4150,'action started via WP Cron','2025-09-30 10:15:03','2025-09-30 12:15:03'), -(12518,4150,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-09-30 10:15:03','2025-09-30 12:15:03'), -(12519,4188,'action created','2025-09-30 10:15:03','2025-09-30 12:15:03'), -(12628,4188,'action started via WP Cron','2025-10-01 10:15:04','2025-10-01 12:15:04'), -(12629,4188,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-01 10:15:04','2025-10-01 12:15:04'), -(12630,4225,'action created','2025-10-01 10:15:04','2025-10-01 12:15:04'), -(12745,4225,'action started via WP Cron','2025-10-02 10:15:04','2025-10-02 12:15:04'), -(12746,4225,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-02 10:15:04','2025-10-02 12:15:04'), -(12747,4264,'action created','2025-10-02 10:15:04','2025-10-02 12:15:04'), -(12856,4264,'action started via WP Cron','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12857,4264,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12858,4301,'action created','2025-10-03 10:15:04','2025-10-03 12:15:04'), -(12970,4301,'action started via WP Cron','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12971,4301,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(12972,4339,'action created','2025-10-04 10:15:05','2025-10-04 12:15:05'), -(13081,4339,'action started via WP Cron','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13082,4339,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13083,4376,'action created','2025-10-05 10:15:05','2025-10-05 12:15:05'), -(13192,4376,'action started via WP Cron','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13193,4376,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13194,4413,'action created','2025-10-06 10:15:05','2025-10-06 12:15:05'), -(13312,4413,'action started via WP Cron','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13313,4413,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13314,4453,'action created','2025-10-07 10:15:06','2025-10-07 12:15:06'), -(13399,3862,'action started via WP Cron','2025-10-08 07:14:06','2025-10-08 09:14:06'), -(13400,3862,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-08 07:14:06','2025-10-08 09:14:06'), -(13401,4482,'action created','2025-10-08 07:14:06','2025-10-08 09:14:06'), -(13426,4453,'action started via WP Cron','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13427,4453,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13428,4491,'action created','2025-10-08 10:15:31','2025-10-08 12:15:31'), -(13561,4491,'action started via WP Cron','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13562,4491,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13563,4536,'action created','2025-10-09 10:16:06','2025-10-09 12:16:06'), -(13672,4536,'action started via WP Cron','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13673,4536,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13674,4573,'action created','2025-10-10 10:16:07','2025-10-10 12:16:07'), -(13789,4573,'action started via WP Cron','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13790,4573,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13791,4612,'action created','2025-10-11 10:16:07','2025-10-11 12:16:07'), -(13903,4612,'action started via WP Cron','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13904,4612,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(13905,4650,'action created','2025-10-12 10:17:07','2025-10-12 12:17:07'), -(14026,4650,'action started via WP Cron','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14027,4650,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14028,4691,'action created','2025-10-13 10:17:08','2025-10-13 12:17:08'), -(14140,4691,'action started via WP Cron','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14141,4691,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14142,4729,'action created','2025-10-14 10:17:08','2025-10-14 12:17:08'), -(14251,4729,'action started via WP Cron','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14252,4729,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14253,4766,'action created','2025-10-15 10:17:08','2025-10-15 12:17:08'), -(14362,4766,'action started via WP Cron','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14363,4766,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14364,4803,'action created','2025-10-16 10:17:09','2025-10-16 12:17:09'), -(14482,4803,'action started via WP Cron','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14483,4803,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14484,4843,'action created','2025-10-17 10:17:09','2025-10-17 12:17:09'), -(14590,4843,'action started via WP Cron','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14591,4843,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14592,4879,'action created','2025-10-18 10:17:09','2025-10-18 12:17:09'), -(14707,4879,'action started via WP Cron','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14708,4879,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14709,4918,'action created','2025-10-19 10:17:10','2025-10-19 12:17:10'), -(14818,4918,'action started via WP Cron','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14819,4918,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14820,4955,'action created','2025-10-20 10:17:10','2025-10-20 12:17:10'), -(14932,4955,'action started via WP Cron','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14933,4955,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(14934,4955,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-21 10:17:11','2025-10-21 12:17:11'), -(15029,5024,'action created','2025-10-22 07:20:11','2025-10-22 09:20:11'), -(15047,5024,'action started via WP Cron','2025-10-22 10:20:11','2025-10-22 12:20:11'), -(15048,5024,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-22 10:20:11','2025-10-22 12:20:11'), -(15049,5024,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-22 10:20:11','2025-10-22 12:20:11'), -(15131,4482,'action started via WP Cron','2025-10-23 07:14:11','2025-10-23 09:14:11'), -(15132,4482,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-23 07:14:11','2025-10-23 09:14:11'), -(15133,5058,'action created','2025-10-23 07:14:11','2025-10-23 09:14:11'), -(15144,5062,'action created','2025-10-23 07:20:11','2025-10-23 09:20:11'), -(15162,5062,'action started via WP Cron','2025-10-23 10:20:11','2025-10-23 12:20:11'), -(15163,5062,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-23 10:20:11','2025-10-23 12:20:11'), -(15164,5062,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-23 10:20:11','2025-10-23 12:20:11'), -(15259,5100,'action created','2025-10-24 07:20:12','2025-10-24 09:20:12'), -(15277,5100,'action started via WP Cron','2025-10-24 10:21:12','2025-10-24 12:21:12'), -(15278,5100,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-24 10:21:12','2025-10-24 12:21:12'), -(15279,5100,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-24 10:21:12','2025-10-24 12:21:12'), -(15374,5138,'action created','2025-10-25 07:20:12','2025-10-25 09:20:12'), -(15395,5138,'action started via WP Cron','2025-10-25 10:20:12','2025-10-25 12:20:12'), -(15396,5138,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-25 10:20:12','2025-10-25 12:20:12'), -(15397,5138,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-25 10:20:12','2025-10-25 12:20:12'), -(15486,5175,'action created','2025-10-26 07:20:12','2025-10-26 08:20:12'), -(15507,5175,'action started via WP Cron','2025-10-26 10:20:12','2025-10-26 11:20:12'), -(15508,5175,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-26 10:20:12','2025-10-26 11:20:12'), -(15509,5175,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-26 10:20:12','2025-10-26 11:20:12'), -(15598,5212,'action created','2025-10-27 07:20:13','2025-10-27 08:20:13'), -(15619,5212,'action started via WP Cron','2025-10-27 10:20:13','2025-10-27 11:20:13'), -(15620,5212,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-27 10:20:13','2025-10-27 11:20:13'), -(15621,5212,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-27 10:20:13','2025-10-27 11:20:13'), -(15750,5262,'action created','2025-10-28 04:07:13','2025-10-28 05:07:13'), -(15767,5268,'action created','2025-10-28 07:20:35','2025-10-28 08:20:35'), -(15788,5268,'action started via WP Cron','2025-10-28 10:21:13','2025-10-28 11:21:13'), -(15789,5268,'action failed via WP Cron: ftp_nlist(): Argument #1 ($ftp) must be of type FTP\\Connection, null given','2025-10-28 10:21:13','2025-10-28 11:21:13'), -(15790,5268,'This action appears to be consistently failing. A new instance will not be scheduled.','2025-10-28 10:21:13','2025-10-28 11:21:13'), -(16307,5449,'action created','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16310,5450,'action created','2025-11-01 18:42:14','2025-11-01 19:42:14'), -(16328,5456,'action created','2025-11-01 22:03:15','2025-11-01 23:03:15'), -(16361,5467,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16364,5468,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16367,5469,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16370,5471,'action created','2025-11-02 07:22:15','2025-11-02 08:22:15'), -(16375,5472,'action created','2025-11-02 07:23:15','2025-11-02 08:23:15'), -(16387,5476,'action created','2025-11-02 10:21:15','2025-11-02 11:21:15'), -(16390,5477,'action created','2025-11-02 10:22:15','2025-11-02 11:22:15'), -(16395,5479,'action created','2025-11-02 11:49:15','2025-11-02 12:49:15'), -(16397,5479,'action started via WP Cron','2025-11-02 12:49:27','2025-11-02 13:49:27'), -(16398,5480,'action created','2025-11-02 12:49:27','2025-11-02 13:49:27'), -(16399,5479,'action complete via WP Cron','2025-11-02 12:49:27','2025-11-02 13:49:27'), -(16400,5480,'action started via WP Cron','2025-11-02 13:50:15','2025-11-02 14:50:15'), -(16401,5481,'action created','2025-11-02 13:50:15','2025-11-02 14:50:15'), -(16402,5480,'action complete via WP Cron','2025-11-02 13:50:15','2025-11-02 14:50:15'), -(16403,5481,'action started via WP Cron','2025-11-02 14:50:15','2025-11-02 15:50:15'), -(16404,5482,'action created','2025-11-02 14:50:15','2025-11-02 15:50:15'), -(16405,5481,'action complete via WP Cron','2025-11-02 14:50:15','2025-11-02 15:50:15'), -(16406,5482,'action started via WP Cron','2025-11-02 15:50:15','2025-11-02 16:50:15'), -(16407,5483,'action created','2025-11-02 15:50:15','2025-11-02 16:50:15'), -(16408,5482,'action complete via WP Cron','2025-11-02 15:50:15','2025-11-02 16:50:15'), -(16409,5483,'action started via WP Cron','2025-11-02 16:50:15','2025-11-02 17:50:15'), -(16410,5484,'action created','2025-11-02 16:50:15','2025-11-02 17:50:15'), -(16411,5483,'action complete via WP Cron','2025-11-02 16:50:15','2025-11-02 17:50:15'), -(16412,5484,'action started via WP Cron','2025-11-02 17:50:15','2025-11-02 18:50:15'), -(16413,5485,'action created','2025-11-02 17:50:15','2025-11-02 18:50:15'), -(16414,5484,'action complete via WP Cron','2025-11-02 17:50:15','2025-11-02 18:50:15'), -(16415,5449,'action started via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16416,5449,'action complete via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16417,5486,'action created','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16418,5450,'action started via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16419,5450,'action complete via WP Cron','2025-11-02 18:42:14','2025-11-02 19:42:14'), -(16420,5487,'action created','2025-11-02 18:42:15','2025-11-02 19:42:15'), -(16421,5485,'action started via WP Cron','2025-11-02 18:50:15','2025-11-02 19:50:15'), -(16422,5488,'action created','2025-11-02 18:50:15','2025-11-02 19:50:15'), -(16423,5485,'action complete via WP Cron','2025-11-02 18:50:15','2025-11-02 19:50:15'), -(16424,5472,'action started via WP Cron','2025-11-02 19:24:15','2025-11-02 20:24:15'), -(16425,5472,'action complete via WP Cron','2025-11-02 19:24:15','2025-11-02 20:24:15'), -(16426,5489,'action created','2025-11-02 19:24:15','2025-11-02 20:24:15'), -(16427,5490,'action created','2025-11-02 19:39:02','2025-11-02 20:39:02'), -(16428,5490,'action started via WP Cron','2025-11-02 19:40:07','2025-11-02 20:40:07'), -(16429,5490,'action complete via WP Cron','2025-11-02 19:40:07','2025-11-02 20:40:07'), -(16430,5491,'action created','2025-11-02 19:40:07','2025-11-02 20:40:07'), -(16431,5491,'action started via WP Cron','2025-11-02 19:41:15','2025-11-02 20:41:15'), -(16432,5491,'action complete via WP Cron','2025-11-02 19:41:15','2025-11-02 20:41:15'), -(16433,5488,'action started via WP Cron','2025-11-02 19:50:15','2025-11-02 20:50:15'), -(16434,5492,'action created','2025-11-02 19:50:15','2025-11-02 20:50:15'), -(16435,5488,'action complete via WP Cron','2025-11-02 19:50:15','2025-11-02 20:50:15'), -(16436,5492,'action started via WP Cron','2025-11-02 20:50:15','2025-11-02 21:50:15'), -(16437,5493,'action created','2025-11-02 20:50:15','2025-11-02 21:50:15'), -(16438,5492,'action complete via WP Cron','2025-11-02 20:50:15','2025-11-02 21:50:15'), -(16439,5493,'action started via WP Cron','2025-11-02 21:50:15','2025-11-02 22:50:15'), -(16440,5494,'action created','2025-11-02 21:50:15','2025-11-02 22:50:15'), -(16441,5493,'action complete via WP Cron','2025-11-02 21:50:15','2025-11-02 22:50:15'), -(16442,5456,'action started via WP Cron','2025-11-02 22:03:15','2025-11-02 23:03:15'), -(16443,5456,'action complete via WP Cron','2025-11-02 22:03:15','2025-11-02 23:03:15'), -(16444,5495,'action created','2025-11-02 22:03:15','2025-11-02 23:03:15'), -(16445,5494,'action started via WP Cron','2025-11-02 22:50:15','2025-11-02 23:50:15'), -(16446,5496,'action created','2025-11-02 22:50:15','2025-11-02 23:50:15'), -(16447,5494,'action complete via WP Cron','2025-11-02 22:50:15','2025-11-02 23:50:15'), -(16448,5496,'action started via WP Cron','2025-11-02 23:50:15','2025-11-03 00:50:15'), -(16449,5497,'action created','2025-11-02 23:50:15','2025-11-03 00:50:15'), -(16450,5496,'action complete via WP Cron','2025-11-02 23:50:15','2025-11-03 00:50:15'), -(16451,5497,'action started via WP Cron','2025-11-03 00:50:15','2025-11-03 01:50:15'), -(16452,5498,'action created','2025-11-03 00:50:15','2025-11-03 01:50:15'), -(16453,5497,'action complete via WP Cron','2025-11-03 00:50:15','2025-11-03 01:50:15'), -(16454,5498,'action started via WP Cron','2025-11-03 01:50:15','2025-11-03 02:50:15'), -(16455,5499,'action created','2025-11-03 01:50:15','2025-11-03 02:50:15'), -(16456,5498,'action complete via WP Cron','2025-11-03 01:50:15','2025-11-03 02:50:15'), -(16457,5499,'action started via WP Cron','2025-11-03 02:50:15','2025-11-03 03:50:15'), -(16458,5500,'action created','2025-11-03 02:50:15','2025-11-03 03:50:15'), -(16459,5499,'action complete via WP Cron','2025-11-03 02:50:15','2025-11-03 03:50:15'), -(16460,5500,'action started via WP Cron','2025-11-03 03:50:15','2025-11-03 04:50:15'), -(16461,5501,'action created','2025-11-03 03:50:15','2025-11-03 04:50:15'), -(16462,5500,'action complete via WP Cron','2025-11-03 03:50:15','2025-11-03 04:50:15'), -(16463,5501,'action started via WP Cron','2025-11-03 04:50:15','2025-11-03 05:50:15'), -(16464,5502,'action created','2025-11-03 04:50:15','2025-11-03 05:50:15'), -(16465,5501,'action complete via WP Cron','2025-11-03 04:50:15','2025-11-03 05:50:15'), -(16466,5469,'action started via WP Cron','2025-11-03 05:00:15','2025-11-03 06:00:15'), -(16467,5469,'action complete via WP Cron','2025-11-03 05:00:15','2025-11-03 06:00:15'), -(16469,5502,'action started via WP Cron','2025-11-03 05:50:15','2025-11-03 06:50:15'), -(16470,5504,'action created','2025-11-03 05:50:15','2025-11-03 06:50:15'), -(16471,5502,'action complete via WP Cron','2025-11-03 05:50:15','2025-11-03 06:50:15'), -(16472,5504,'action started via WP Cron','2025-11-03 06:50:15','2025-11-03 07:50:15'), -(16473,5505,'action created','2025-11-03 06:50:15','2025-11-03 07:50:15'), -(16474,5504,'action complete via WP Cron','2025-11-03 06:50:15','2025-11-03 07:50:15'), -(16475,5467,'action started via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16476,5467,'action complete via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16477,5506,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16478,5468,'action started via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16479,5468,'action complete via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16480,5507,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16481,5471,'action started via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16483,5508,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16484,5509,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16485,5471,'action complete via WP Cron','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16486,5510,'action created','2025-11-03 07:22:15','2025-11-03 08:22:15'), -(16487,5509,'action started via WP Cron','2025-11-03 07:23:10','2025-11-03 08:23:10'), -(16488,5509,'action complete via WP Cron','2025-11-03 07:23:10','2025-11-03 08:23:10'), -(16489,5489,'action started via WP Cron','2025-11-03 07:24:15','2025-11-03 08:24:15'), -(16490,5489,'action complete via WP Cron','2025-11-03 07:24:15','2025-11-03 08:24:15'), -(16491,5511,'action created','2025-11-03 07:24:15','2025-11-03 08:24:15'), -(16492,5505,'action started via WP Cron','2025-11-03 07:50:15','2025-11-03 08:50:15'), -(16493,5512,'action created','2025-11-03 07:50:15','2025-11-03 08:50:15'), -(16494,5505,'action complete via WP Cron','2025-11-03 07:50:15','2025-11-03 08:50:15'), -(16495,5512,'action started via WP Cron','2025-11-03 08:50:15','2025-11-03 09:50:15'), -(16496,5513,'action created','2025-11-03 08:50:15','2025-11-03 09:50:15'), -(16497,5512,'action complete via WP Cron','2025-11-03 08:50:15','2025-11-03 09:50:15'), -(16498,5514,'action created','2025-11-03 09:26:24','2025-11-03 10:26:24'), -(16499,5514,'action started via WP Cron','2025-11-03 09:26:26','2025-11-03 10:26:26'), -(16500,5514,'action complete via WP Cron','2025-11-03 09:26:26','2025-11-03 10:26:26'), -(16501,5515,'action created','2025-11-03 09:34:05','2025-11-03 10:34:05'), -(16502,5516,'action created','2025-11-03 09:34:05','2025-11-03 10:34:05'), -(16503,5517,'action created','2025-11-03 09:34:05','2025-11-03 10:34:05'), -(16504,5515,'action started via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16505,5515,'action complete via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16506,5516,'action started via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16507,5516,'action complete via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16508,5517,'action started via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16509,5517,'action complete via WP Cron','2025-11-03 09:34:42','2025-11-03 10:34:42'), -(16510,5513,'action started via WP Cron','2025-11-03 09:50:15','2025-11-03 10:50:15'), -(16511,5518,'action created','2025-11-03 09:50:15','2025-11-03 10:50:15'), -(16512,5513,'action complete via WP Cron','2025-11-03 09:50:15','2025-11-03 10:50:15'), -(16513,5476,'action started via WP Cron','2025-11-03 10:21:15','2025-11-03 11:21:15'), -(16514,5476,'action complete via WP Cron','2025-11-03 10:21:15','2025-11-03 11:21:15'), -(16515,5519,'action created','2025-11-03 10:21:15','2025-11-03 11:21:15'), -(16516,5477,'action started via WP Cron','2025-11-03 10:23:15','2025-11-03 11:23:15'), -(16517,5477,'action complete via WP Cron','2025-11-03 10:23:15','2025-11-03 11:23:15'), -(16518,5520,'action created','2025-11-03 10:23:15','2025-11-03 11:23:15'), -(16519,5518,'action started via WP Cron','2025-11-03 10:50:15','2025-11-03 11:50:15'), -(16520,5521,'action created','2025-11-03 10:50:15','2025-11-03 11:50:15'), -(16521,5518,'action complete via WP Cron','2025-11-03 10:50:15','2025-11-03 11:50:15'), -(16522,5521,'action started via WP Cron','2025-11-03 11:50:15','2025-11-03 12:50:15'), -(16523,5522,'action created','2025-11-03 11:50:15','2025-11-03 12:50:15'), -(16524,5521,'action complete via WP Cron','2025-11-03 11:50:15','2025-11-03 12:50:15'), -(16525,5522,'action started via WP Cron','2025-11-03 12:51:15','2025-11-03 13:51:15'), -(16526,5523,'action created','2025-11-03 12:51:15','2025-11-03 13:51:15'), -(16527,5522,'action complete via WP Cron','2025-11-03 12:51:15','2025-11-03 13:51:15'), -(16528,5523,'action started via WP Cron','2025-11-03 13:51:15','2025-11-03 14:51:15'), -(16529,5524,'action created','2025-11-03 13:51:15','2025-11-03 14:51:15'), -(16530,5523,'action complete via WP Cron','2025-11-03 13:51:15','2025-11-03 14:51:15'), -(16531,5524,'action started via WP Cron','2025-11-03 14:51:15','2025-11-03 15:51:15'), -(16532,5525,'action created','2025-11-03 14:51:15','2025-11-03 15:51:15'), -(16533,5524,'action complete via WP Cron','2025-11-03 14:51:15','2025-11-03 15:51:15'), -(16534,5525,'action started via WP Cron','2025-11-03 15:51:15','2025-11-03 16:51:15'), -(16535,5526,'action created','2025-11-03 15:51:15','2025-11-03 16:51:15'), -(16536,5525,'action complete via WP Cron','2025-11-03 15:51:15','2025-11-03 16:51:15'), -(16537,5526,'action started via WP Cron','2025-11-03 16:51:15','2025-11-03 17:51:15'), -(16538,5527,'action created','2025-11-03 16:51:15','2025-11-03 17:51:15'), -(16539,5526,'action complete via WP Cron','2025-11-03 16:51:15','2025-11-03 17:51:15'), -(16540,5527,'action started via WP Cron','2025-11-03 17:51:15','2025-11-03 18:51:15'), -(16541,5528,'action created','2025-11-03 17:51:15','2025-11-03 18:51:15'), -(16542,5527,'action complete via WP Cron','2025-11-03 17:51:15','2025-11-03 18:51:15'), -(16543,5486,'action started via WP Cron','2025-11-03 18:42:15','2025-11-03 19:42:15'), -(16544,5486,'action complete via WP Cron','2025-11-03 18:42:15','2025-11-03 19:42:15'), -(16545,5529,'action created','2025-11-03 18:42:15','2025-11-03 19:42:15'), -(16546,5487,'action started via WP Cron','2025-11-03 18:42:15','2025-11-03 19:42:15'), -(16547,5487,'action complete via WP Cron','2025-11-03 18:42:15','2025-11-03 19:42:15'), -(16548,5530,'action created','2025-11-03 18:42:15','2025-11-03 19:42:15'), -(16549,5528,'action started via WP Cron','2025-11-03 18:51:15','2025-11-03 19:51:15'), -(16550,5531,'action created','2025-11-03 18:51:15','2025-11-03 19:51:15'), -(16551,5528,'action complete via WP Cron','2025-11-03 18:51:15','2025-11-03 19:51:15'), -(16552,5511,'action started via WP Cron','2025-11-03 19:24:15','2025-11-03 20:24:15'), -(16553,5511,'action complete via WP Cron','2025-11-03 19:24:15','2025-11-03 20:24:15'), -(16554,5532,'action created','2025-11-03 19:24:15','2025-11-03 20:24:15'), -(16555,5531,'action started via WP Cron','2025-11-03 19:51:15','2025-11-03 20:51:15'), -(16556,5533,'action created','2025-11-03 19:51:15','2025-11-03 20:51:15'), -(16557,5531,'action complete via WP Cron','2025-11-03 19:51:15','2025-11-03 20:51:15'), -(16558,5533,'action started via WP Cron','2025-11-03 20:51:15','2025-11-03 21:51:15'), -(16559,5534,'action created','2025-11-03 20:51:15','2025-11-03 21:51:15'), -(16560,5533,'action complete via WP Cron','2025-11-03 20:51:15','2025-11-03 21:51:15'), -(16561,5535,'action created','2025-11-03 21:05:37','2025-11-03 22:05:37'), -(16562,5535,'action started via WP Cron','2025-11-03 21:07:01','2025-11-03 22:07:01'), -(16563,5535,'action complete via WP Cron','2025-11-03 21:07:01','2025-11-03 22:07:01'), -(16564,5536,'action created','2025-11-03 21:07:02','2025-11-03 22:07:02'), -(16565,5536,'action started via WP Cron','2025-11-03 21:08:15','2025-11-03 22:08:15'), -(16566,5536,'action complete via WP Cron','2025-11-03 21:08:15','2025-11-03 22:08:15'), -(16567,5534,'action started via WP Cron','2025-11-03 21:51:15','2025-11-03 22:51:15'), -(16568,5537,'action created','2025-11-03 21:51:15','2025-11-03 22:51:15'), -(16569,5534,'action complete via WP Cron','2025-11-03 21:51:15','2025-11-03 22:51:15'), -(16570,5495,'action started via WP Cron','2025-11-03 22:03:15','2025-11-03 23:03:15'), -(16571,5495,'action complete via WP Cron','2025-11-03 22:03:15','2025-11-03 23:03:15'), -(16572,5538,'action created','2025-11-03 22:03:15','2025-11-03 23:03:15'), -(16573,5537,'action started via WP Cron','2025-11-03 22:51:15','2025-11-03 23:51:15'), -(16574,5539,'action created','2025-11-03 22:51:15','2025-11-03 23:51:15'), -(16575,5537,'action complete via WP Cron','2025-11-03 22:51:15','2025-11-03 23:51:15'), -(16576,5539,'action started via WP Cron','2025-11-03 23:51:15','2025-11-04 00:51:15'), -(16577,5540,'action created','2025-11-03 23:51:15','2025-11-04 00:51:15'), -(16578,5539,'action complete via WP Cron','2025-11-03 23:51:15','2025-11-04 00:51:15'), -(16579,5540,'action started via WP Cron','2025-11-04 00:51:15','2025-11-04 01:51:15'), -(16580,5541,'action created','2025-11-04 00:51:15','2025-11-04 01:51:15'), -(16581,5540,'action complete via WP Cron','2025-11-04 00:51:15','2025-11-04 01:51:15'), -(16582,5541,'action started via WP Cron','2025-11-04 01:51:15','2025-11-04 02:51:15'), -(16583,5542,'action created','2025-11-04 01:51:15','2025-11-04 02:51:15'), -(16584,5541,'action complete via WP Cron','2025-11-04 01:51:15','2025-11-04 02:51:15'), -(16585,5542,'action started via WP Cron','2025-11-04 02:51:15','2025-11-04 03:51:15'), -(16586,5543,'action created','2025-11-04 02:51:15','2025-11-04 03:51:15'), -(16587,5542,'action complete via WP Cron','2025-11-04 02:51:15','2025-11-04 03:51:15'), -(16588,5543,'action started via WP Cron','2025-11-04 03:51:15','2025-11-04 04:51:15'), -(16589,5544,'action created','2025-11-04 03:51:15','2025-11-04 04:51:15'), -(16590,5543,'action complete via WP Cron','2025-11-04 03:51:15','2025-11-04 04:51:15'), -(16591,5262,'action started via WP Cron','2025-11-04 04:07:15','2025-11-04 05:07:15'), -(16592,5262,'action complete via WP Cron','2025-11-04 04:07:15','2025-11-04 05:07:15'), -(16593,5545,'action created','2025-11-04 04:07:15','2025-11-04 05:07:15'), -(16594,5544,'action started via WP Cron','2025-11-04 04:51:15','2025-11-04 05:51:15'), -(16595,5546,'action created','2025-11-04 04:51:15','2025-11-04 05:51:15'), -(16596,5544,'action complete via WP Cron','2025-11-04 04:51:15','2025-11-04 05:51:15'), -(16597,5508,'action started via WP Cron','2025-11-04 05:00:02','2025-11-04 06:00:02'), -(16598,5508,'action complete via WP Cron','2025-11-04 05:00:02','2025-11-04 06:00:02'), -(16600,5546,'action started via WP Cron','2025-11-04 05:51:15','2025-11-04 06:51:15'), -(16601,5548,'action created','2025-11-04 05:51:15','2025-11-04 06:51:15'), -(16602,5546,'action complete via WP Cron','2025-11-04 05:51:15','2025-11-04 06:51:15'), -(16603,5548,'action started via WP Cron','2025-11-04 06:51:15','2025-11-04 07:51:15'), -(16604,5549,'action created','2025-11-04 06:51:15','2025-11-04 07:51:15'), -(16605,5548,'action complete via WP Cron','2025-11-04 06:51:15','2025-11-04 07:51:15'), -(16606,5506,'action started via WP Cron','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16607,5506,'action complete via WP Cron','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16608,5550,'action created','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16609,5507,'action started via WP Cron','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16610,5507,'action complete via WP Cron','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16611,5551,'action created','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16612,5510,'action started via WP Cron','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16614,5552,'action created','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16615,5553,'action created','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16616,5510,'action complete via WP Cron','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16617,5554,'action created','2025-11-04 07:22:15','2025-11-04 08:22:15'), -(16618,5553,'action started via WP Cron','2025-11-04 07:23:15','2025-11-04 08:23:15'), -(16619,5553,'action complete via WP Cron','2025-11-04 07:23:15','2025-11-04 08:23:15'), -(16620,5532,'action started via WP Cron','2025-11-04 07:24:15','2025-11-04 08:24:15'), -(16621,5532,'action complete via WP Cron','2025-11-04 07:24:15','2025-11-04 08:24:15'), -(16622,5555,'action created','2025-11-04 07:24:15','2025-11-04 08:24:15'), -(16623,5549,'action started via WP Cron','2025-11-04 07:51:15','2025-11-04 08:51:15'), -(16624,5556,'action created','2025-11-04 07:51:15','2025-11-04 08:51:15'), -(16625,5549,'action complete via WP Cron','2025-11-04 07:51:15','2025-11-04 08:51:15'), -(16626,5556,'action started via WP Cron','2025-11-04 08:51:15','2025-11-04 09:51:15'), -(16627,5557,'action created','2025-11-04 08:51:15','2025-11-04 09:51:15'), -(16628,5556,'action complete via WP Cron','2025-11-04 08:51:15','2025-11-04 09:51:15'), -(16629,5557,'action started via WP Cron','2025-11-04 09:51:15','2025-11-04 10:51:15'), -(16630,5558,'action created','2025-11-04 09:51:15','2025-11-04 10:51:15'), -(16631,5557,'action complete via WP Cron','2025-11-04 09:51:15','2025-11-04 10:51:15'), -(16632,5519,'action started via WP Cron','2025-11-04 10:21:15','2025-11-04 11:21:15'), -(16633,5519,'action complete via WP Cron','2025-11-04 10:21:15','2025-11-04 11:21:15'), -(16634,5559,'action created','2025-11-04 10:21:15','2025-11-04 11:21:15'), -(16635,5520,'action started via WP Cron','2025-11-04 10:23:15','2025-11-04 11:23:15'), -(16636,5520,'action complete via WP Cron','2025-11-04 10:23:15','2025-11-04 11:23:15'), -(16637,5560,'action created','2025-11-04 10:23:15','2025-11-04 11:23:15'), -(16638,5558,'action started via WP Cron','2025-11-04 10:51:15','2025-11-04 11:51:15'), -(16639,5561,'action created','2025-11-04 10:51:15','2025-11-04 11:51:15'), -(16640,5558,'action complete via WP Cron','2025-11-04 10:51:15','2025-11-04 11:51:15'), -(16641,5561,'action started via WP Cron','2025-11-04 11:51:15','2025-11-04 12:51:15'), -(16642,5562,'action created','2025-11-04 11:51:15','2025-11-04 12:51:15'), -(16643,5561,'action complete via WP Cron','2025-11-04 11:51:15','2025-11-04 12:51:15'), -(16644,5562,'action started via WP Cron','2025-11-04 12:51:15','2025-11-04 13:51:15'), -(16645,5563,'action created','2025-11-04 12:51:15','2025-11-04 13:51:15'), -(16646,5562,'action complete via WP Cron','2025-11-04 12:51:15','2025-11-04 13:51:15'), -(16647,5563,'action started via WP Cron','2025-11-04 13:51:15','2025-11-04 14:51:15'), -(16648,5564,'action created','2025-11-04 13:51:15','2025-11-04 14:51:15'), -(16649,5563,'action complete via WP Cron','2025-11-04 13:51:15','2025-11-04 14:51:15'), -(16650,5564,'action started via WP Cron','2025-11-04 14:51:15','2025-11-04 15:51:15'), -(16651,5565,'action created','2025-11-04 14:51:15','2025-11-04 15:51:15'), -(16652,5564,'action complete via WP Cron','2025-11-04 14:51:15','2025-11-04 15:51:15'), -(16653,5565,'action started via WP Cron','2025-11-04 15:51:15','2025-11-04 16:51:15'), -(16654,5566,'action created','2025-11-04 15:51:15','2025-11-04 16:51:15'), -(16655,5565,'action complete via WP Cron','2025-11-04 15:51:15','2025-11-04 16:51:15'), -(16656,5566,'action started via WP Cron','2025-11-04 16:51:15','2025-11-04 17:51:15'), -(16657,5567,'action created','2025-11-04 16:51:15','2025-11-04 17:51:15'), -(16658,5566,'action complete via WP Cron','2025-11-04 16:51:15','2025-11-04 17:51:15'), -(16659,5568,'action created','2025-11-04 17:02:34','2025-11-04 18:02:34'), -(16660,5568,'action started via WP Cron','2025-11-04 17:04:15','2025-11-04 18:04:15'), -(16661,5568,'action complete via WP Cron','2025-11-04 17:04:15','2025-11-04 18:04:15'), -(16662,5567,'action started via WP Cron','2025-11-04 17:51:15','2025-11-04 18:51:15'), -(16663,5569,'action created','2025-11-04 17:51:15','2025-11-04 18:51:15'), -(16664,5567,'action complete via WP Cron','2025-11-04 17:51:15','2025-11-04 18:51:15'), -(16665,5529,'action started via WP Cron','2025-11-04 18:42:15','2025-11-04 19:42:15'), -(16666,5529,'action complete via WP Cron','2025-11-04 18:42:15','2025-11-04 19:42:15'), -(16667,5570,'action created','2025-11-04 18:42:15','2025-11-04 19:42:15'), -(16668,5530,'action started via WP Cron','2025-11-04 18:42:15','2025-11-04 19:42:15'), -(16669,5530,'action complete via WP Cron','2025-11-04 18:42:15','2025-11-04 19:42:15'), -(16670,5571,'action created','2025-11-04 18:42:15','2025-11-04 19:42:15'), -(16671,5569,'action started via WP Cron','2025-11-04 18:51:15','2025-11-04 19:51:15'), -(16672,5572,'action created','2025-11-04 18:51:15','2025-11-04 19:51:15'), -(16673,5569,'action complete via WP Cron','2025-11-04 18:51:15','2025-11-04 19:51:15'), -(16674,5555,'action started via WP Cron','2025-11-04 19:24:15','2025-11-04 20:24:15'), -(16675,5555,'action complete via WP Cron','2025-11-04 19:24:15','2025-11-04 20:24:15'), -(16676,5573,'action created','2025-11-04 19:24:15','2025-11-04 20:24:15'), -(16677,5572,'action started via WP Cron','2025-11-04 19:51:15','2025-11-04 20:51:15'), -(16678,5574,'action created','2025-11-04 19:51:15','2025-11-04 20:51:15'), -(16679,5572,'action complete via WP Cron','2025-11-04 19:51:15','2025-11-04 20:51:15'), -(16680,5574,'action started via WP Cron','2025-11-04 20:51:15','2025-11-04 21:51:15'), -(16681,5575,'action created','2025-11-04 20:51:15','2025-11-04 21:51:15'), -(16682,5574,'action complete via WP Cron','2025-11-04 20:51:15','2025-11-04 21:51:15'), -(16683,5575,'action started via WP Cron','2025-11-04 21:51:15','2025-11-04 22:51:15'), -(16684,5576,'action created','2025-11-04 21:51:15','2025-11-04 22:51:15'), -(16685,5575,'action complete via WP Cron','2025-11-04 21:51:15','2025-11-04 22:51:15'), -(16686,5538,'action started via WP Cron','2025-11-04 22:03:31','2025-11-04 23:03:31'), -(16687,5538,'action complete via WP Cron','2025-11-04 22:03:31','2025-11-04 23:03:31'), -(16688,5577,'action created','2025-11-04 22:03:31','2025-11-04 23:03:31'), -(16689,5576,'action started via WP Cron','2025-11-04 22:51:15','2025-11-04 23:51:15'), -(16690,5578,'action created','2025-11-04 22:51:15','2025-11-04 23:51:15'), -(16691,5576,'action complete via WP Cron','2025-11-04 22:51:15','2025-11-04 23:51:15'), -(16692,5578,'action started via WP Cron','2025-11-04 23:51:15','2025-11-05 00:51:15'), -(16693,5579,'action created','2025-11-04 23:51:15','2025-11-05 00:51:15'), -(16694,5578,'action complete via WP Cron','2025-11-04 23:51:15','2025-11-05 00:51:15'), -(16695,5579,'action started via WP Cron','2025-11-05 00:51:15','2025-11-05 01:51:15'), -(16696,5580,'action created','2025-11-05 00:51:15','2025-11-05 01:51:15'), -(16697,5579,'action complete via WP Cron','2025-11-05 00:51:15','2025-11-05 01:51:15'), -(16698,5580,'action started via WP Cron','2025-11-05 01:51:15','2025-11-05 02:51:15'), -(16699,5581,'action created','2025-11-05 01:51:15','2025-11-05 02:51:15'), -(16700,5580,'action complete via WP Cron','2025-11-05 01:51:15','2025-11-05 02:51:15'), -(16701,5581,'action started via WP Cron','2025-11-05 02:51:15','2025-11-05 03:51:15'), -(16702,5582,'action created','2025-11-05 02:51:15','2025-11-05 03:51:15'), -(16703,5581,'action complete via WP Cron','2025-11-05 02:51:16','2025-11-05 03:51:16'), -(16704,5582,'action started via WP Cron','2025-11-05 03:51:15','2025-11-05 04:51:15'), -(16705,5583,'action created','2025-11-05 03:51:15','2025-11-05 04:51:15'), -(16706,5582,'action complete via WP Cron','2025-11-05 03:51:16','2025-11-05 04:51:16'), -(16707,5583,'action started via WP Cron','2025-11-05 04:51:15','2025-11-05 05:51:15'), -(16708,5584,'action created','2025-11-05 04:51:15','2025-11-05 05:51:15'), -(16709,5583,'action complete via WP Cron','2025-11-05 04:51:15','2025-11-05 05:51:15'), -(16710,5552,'action started via WP Cron','2025-11-05 05:00:15','2025-11-05 06:00:15'), -(16711,5552,'action complete via WP Cron','2025-11-05 05:00:15','2025-11-05 06:00:15'), -(16713,5584,'action started via WP Cron','2025-11-05 05:51:15','2025-11-05 06:51:15'), -(16714,5586,'action created','2025-11-05 05:51:15','2025-11-05 06:51:15'), -(16715,5584,'action complete via WP Cron','2025-11-05 05:51:16','2025-11-05 06:51:16'), -(16716,5586,'action started via WP Cron','2025-11-05 06:51:15','2025-11-05 07:51:15'), -(16717,5587,'action created','2025-11-05 06:51:16','2025-11-05 07:51:16'), -(16718,5586,'action complete via WP Cron','2025-11-05 06:51:16','2025-11-05 07:51:16'), -(16719,5550,'action started via WP Cron','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16720,5550,'action complete via WP Cron','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16721,5588,'action created','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16722,5551,'action started via WP Cron','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16723,5551,'action complete via WP Cron','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16724,5589,'action created','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16725,5554,'action started via WP Cron','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16727,5590,'action created','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16728,5591,'action created','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16729,5554,'action complete via WP Cron','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16730,5592,'action created','2025-11-05 07:22:16','2025-11-05 08:22:16'), -(16731,5591,'action started via WP Cron','2025-11-05 07:23:16','2025-11-05 08:23:16'), -(16732,5591,'action complete via WP Cron','2025-11-05 07:23:16','2025-11-05 08:23:16'), -(16733,5573,'action started via WP Cron','2025-11-05 07:24:16','2025-11-05 08:24:16'), -(16734,5573,'action complete via WP Cron','2025-11-05 07:24:16','2025-11-05 08:24:16'), -(16735,5593,'action created','2025-11-05 07:24:16','2025-11-05 08:24:16'), -(16736,5587,'action started via WP Cron','2025-11-05 07:51:16','2025-11-05 08:51:16'), -(16737,5594,'action created','2025-11-05 07:51:16','2025-11-05 08:51:16'), -(16738,5587,'action complete via WP Cron','2025-11-05 07:51:16','2025-11-05 08:51:16'), -(16739,5595,'action created','2025-11-05 08:28:58','2025-11-05 09:28:58'), -(16740,5595,'action started via Async Request','2025-11-05 08:29:18','2025-11-05 09:29:18'), -(16741,5595,'action complete via Async Request','2025-11-05 08:29:18','2025-11-05 09:29:18'), -(16742,5594,'action started via WP Cron','2025-11-05 08:51:16','2025-11-05 09:51:16'), -(16743,5596,'action created','2025-11-05 08:51:16','2025-11-05 09:51:16'), -(16744,5594,'action complete via WP Cron','2025-11-05 08:51:16','2025-11-05 09:51:16'), -(16745,5597,'action created','2025-11-05 09:41:59','2025-11-05 10:41:59'), -(16746,5597,'action started via WP Cron','2025-11-05 09:43:16','2025-11-05 10:43:16'), -(16747,5597,'action complete via WP Cron','2025-11-05 09:43:16','2025-11-05 10:43:16'), -(16748,5596,'action started via WP Cron','2025-11-05 09:51:16','2025-11-05 10:51:16'), -(16749,5598,'action created','2025-11-05 09:51:16','2025-11-05 10:51:16'), -(16750,5596,'action complete via WP Cron','2025-11-05 09:51:16','2025-11-05 10:51:16'), -(16751,5559,'action started via WP Cron','2025-11-05 10:21:16','2025-11-05 11:21:16'), -(16752,5559,'action complete via WP Cron','2025-11-05 10:21:16','2025-11-05 11:21:16'), -(16753,5599,'action created','2025-11-05 10:21:16','2025-11-05 11:21:16'), -(16754,5560,'action started via WP Cron','2025-11-05 10:23:36','2025-11-05 11:23:36'), -(16755,5560,'action complete via WP Cron','2025-11-05 10:23:36','2025-11-05 11:23:36'), -(16756,5600,'action created','2025-11-05 10:23:36','2025-11-05 11:23:36'), -(16757,5598,'action started via WP Cron','2025-11-05 10:51:16','2025-11-05 11:51:16'), -(16758,5601,'action created','2025-11-05 10:51:16','2025-11-05 11:51:16'), -(16759,5598,'action complete via WP Cron','2025-11-05 10:51:16','2025-11-05 11:51:16'), -(16760,5601,'action started via WP Cron','2025-11-05 11:51:16','2025-11-05 12:51:16'), -(16761,5602,'action created','2025-11-05 11:51:16','2025-11-05 12:51:16'), -(16762,5601,'action complete via WP Cron','2025-11-05 11:51:16','2025-11-05 12:51:16'), -(16763,5602,'action started via WP Cron','2025-11-05 12:51:16','2025-11-05 13:51:16'), -(16764,5603,'action created','2025-11-05 12:51:16','2025-11-05 13:51:16'), -(16765,5602,'action complete via WP Cron','2025-11-05 12:51:16','2025-11-05 13:51:16'), -(16766,5603,'action started via WP Cron','2025-11-05 13:51:16','2025-11-05 14:51:16'), -(16767,5604,'action created','2025-11-05 13:51:16','2025-11-05 14:51:16'), -(16768,5603,'action complete via WP Cron','2025-11-05 13:51:16','2025-11-05 14:51:16'), -(16769,5604,'action started via WP Cron','2025-11-05 14:51:16','2025-11-05 15:51:16'), -(16770,5605,'action created','2025-11-05 14:51:16','2025-11-05 15:51:16'), -(16771,5604,'action complete via WP Cron','2025-11-05 14:51:16','2025-11-05 15:51:16'), -(16772,5605,'action started via WP Cron','2025-11-05 15:51:16','2025-11-05 16:51:16'), -(16773,5606,'action created','2025-11-05 15:51:16','2025-11-05 16:51:16'), -(16774,5605,'action complete via WP Cron','2025-11-05 15:51:16','2025-11-05 16:51:16'), -(16775,5606,'action started via WP Cron','2025-11-05 16:51:16','2025-11-05 17:51:16'), -(16776,5607,'action created','2025-11-05 16:51:16','2025-11-05 17:51:16'), -(16777,5606,'action complete via WP Cron','2025-11-05 16:51:16','2025-11-05 17:51:16'), -(16778,5607,'action started via WP Cron','2025-11-05 17:51:16','2025-11-05 18:51:16'), -(16779,5608,'action created','2025-11-05 17:51:16','2025-11-05 18:51:16'), -(16780,5607,'action complete via WP Cron','2025-11-05 17:51:16','2025-11-05 18:51:16'), -(16781,5570,'action started via WP Cron','2025-11-05 18:42:16','2025-11-05 19:42:16'), -(16782,5570,'action complete via WP Cron','2025-11-05 18:42:16','2025-11-05 19:42:16'), -(16783,5609,'action created','2025-11-05 18:42:16','2025-11-05 19:42:16'), -(16784,5571,'action started via WP Cron','2025-11-05 18:42:16','2025-11-05 19:42:16'), -(16785,5571,'action complete via WP Cron','2025-11-05 18:42:16','2025-11-05 19:42:16'), -(16786,5610,'action created','2025-11-05 18:42:16','2025-11-05 19:42:16'), -(16787,5608,'action started via WP Cron','2025-11-05 18:51:16','2025-11-05 19:51:16'), -(16788,5611,'action created','2025-11-05 18:51:16','2025-11-05 19:51:16'), -(16789,5608,'action complete via WP Cron','2025-11-05 18:51:16','2025-11-05 19:51:16'), -(16790,5593,'action started via WP Cron','2025-11-05 19:24:16','2025-11-05 20:24:16'), -(16791,5593,'action complete via WP Cron','2025-11-05 19:24:16','2025-11-05 20:24:16'), -(16792,5612,'action created','2025-11-05 19:24:16','2025-11-05 20:24:16'), -(16793,5611,'action started via WP Cron','2025-11-05 19:51:16','2025-11-05 20:51:16'), -(16794,5613,'action created','2025-11-05 19:51:16','2025-11-05 20:51:16'), -(16795,5611,'action complete via WP Cron','2025-11-05 19:51:16','2025-11-05 20:51:16'), -(16796,5613,'action started via WP Cron','2025-11-05 20:51:16','2025-11-05 21:51:16'), -(16797,5614,'action created','2025-11-05 20:51:16','2025-11-05 21:51:16'), -(16798,5613,'action complete via WP Cron','2025-11-05 20:51:16','2025-11-05 21:51:16'), -(16799,5614,'action started via WP Cron','2025-11-05 21:51:16','2025-11-05 22:51:16'), -(16800,5615,'action created','2025-11-05 21:51:16','2025-11-05 22:51:16'), -(16801,5614,'action complete via WP Cron','2025-11-05 21:51:16','2025-11-05 22:51:16'), -(16802,5577,'action started via WP Cron','2025-11-05 22:04:16','2025-11-05 23:04:16'), -(16803,5577,'action complete via WP Cron','2025-11-05 22:04:16','2025-11-05 23:04:16'), -(16804,5616,'action created','2025-11-05 22:04:16','2025-11-05 23:04:16'), -(16805,5615,'action started via WP Cron','2025-11-05 22:51:16','2025-11-05 23:51:16'), -(16806,5617,'action created','2025-11-05 22:51:16','2025-11-05 23:51:16'), -(16807,5615,'action complete via WP Cron','2025-11-05 22:51:16','2025-11-05 23:51:16'), -(16808,5617,'action started via WP Cron','2025-11-05 23:51:16','2025-11-06 00:51:16'), -(16809,5618,'action created','2025-11-05 23:51:16','2025-11-06 00:51:16'), -(16810,5617,'action complete via WP Cron','2025-11-05 23:51:16','2025-11-06 00:51:16'), -(16811,5618,'action started via WP Cron','2025-11-06 00:51:16','2025-11-06 01:51:16'), -(16812,5619,'action created','2025-11-06 00:51:16','2025-11-06 01:51:16'), -(16813,5618,'action complete via WP Cron','2025-11-06 00:51:16','2025-11-06 01:51:16'), -(16814,5619,'action started via WP Cron','2025-11-06 01:51:16','2025-11-06 02:51:16'), -(16815,5620,'action created','2025-11-06 01:51:16','2025-11-06 02:51:16'), -(16816,5619,'action complete via WP Cron','2025-11-06 01:51:16','2025-11-06 02:51:16'), -(16817,5620,'action started via WP Cron','2025-11-06 02:51:16','2025-11-06 03:51:16'), -(16818,5621,'action created','2025-11-06 02:51:16','2025-11-06 03:51:16'), -(16819,5620,'action complete via WP Cron','2025-11-06 02:51:16','2025-11-06 03:51:16'), -(16820,5621,'action started via WP Cron','2025-11-06 03:51:16','2025-11-06 04:51:16'), -(16821,5622,'action created','2025-11-06 03:51:16','2025-11-06 04:51:16'), -(16822,5621,'action complete via WP Cron','2025-11-06 03:51:16','2025-11-06 04:51:16'), -(16823,5622,'action started via WP Cron','2025-11-06 04:51:16','2025-11-06 05:51:16'), -(16824,5623,'action created','2025-11-06 04:51:16','2025-11-06 05:51:16'), -(16825,5622,'action complete via WP Cron','2025-11-06 04:51:16','2025-11-06 05:51:16'), -(16826,5590,'action started via WP Cron','2025-11-06 05:00:16','2025-11-06 06:00:16'), -(16827,5590,'action complete via WP Cron','2025-11-06 05:00:16','2025-11-06 06:00:16'), -(16829,5623,'action started via WP Cron','2025-11-06 05:51:16','2025-11-06 06:51:16'), -(16830,5625,'action created','2025-11-06 05:51:16','2025-11-06 06:51:16'), -(16831,5623,'action complete via WP Cron','2025-11-06 05:51:16','2025-11-06 06:51:16'), -(16832,5625,'action started via WP Cron','2025-11-06 06:51:16','2025-11-06 07:51:16'), -(16833,5626,'action created','2025-11-06 06:51:16','2025-11-06 07:51:16'), -(16834,5625,'action complete via WP Cron','2025-11-06 06:51:16','2025-11-06 07:51:16'), -(16835,5588,'action started via WP Cron','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16836,5588,'action complete via WP Cron','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16837,5627,'action created','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16838,5589,'action started via WP Cron','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16839,5589,'action complete via WP Cron','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16840,5628,'action created','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16841,5592,'action started via WP Cron','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16843,5629,'action created','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16844,5630,'action created','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16845,5592,'action complete via WP Cron','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16846,5631,'action created','2025-11-06 07:22:16','2025-11-06 08:22:16'), -(16847,5630,'action started via WP Cron','2025-11-06 07:23:16','2025-11-06 08:23:16'), -(16848,5630,'action complete via WP Cron','2025-11-06 07:23:16','2025-11-06 08:23:16'), -(16849,5612,'action started via WP Cron','2025-11-06 07:24:16','2025-11-06 08:24:16'), -(16850,5612,'action complete via WP Cron','2025-11-06 07:24:16','2025-11-06 08:24:16'), -(16851,5632,'action created','2025-11-06 07:24:16','2025-11-06 08:24:16'), -(16852,5626,'action started via WP Cron','2025-11-06 07:51:16','2025-11-06 08:51:16'), -(16853,5633,'action created','2025-11-06 07:51:16','2025-11-06 08:51:16'), -(16854,5626,'action complete via WP Cron','2025-11-06 07:51:16','2025-11-06 08:51:16'), -(16855,5633,'action started via WP Cron','2025-11-06 08:51:16','2025-11-06 09:51:16'), -(16856,5634,'action created','2025-11-06 08:51:16','2025-11-06 09:51:16'), -(16857,5633,'action complete via WP Cron','2025-11-06 08:51:16','2025-11-06 09:51:16'), -(16858,5634,'action started via WP Cron','2025-11-06 09:52:15','2025-11-06 10:52:15'), -(16859,5635,'action created','2025-11-06 09:52:15','2025-11-06 10:52:15'), -(16860,5634,'action complete via WP Cron','2025-11-06 09:52:15','2025-11-06 10:52:15'), -(16861,5599,'action started via WP Cron','2025-11-06 10:21:42','2025-11-06 11:21:42'), -(16862,5599,'action complete via WP Cron','2025-11-06 10:21:42','2025-11-06 11:21:42'), -(16863,5636,'action created','2025-11-06 10:21:42','2025-11-06 11:21:42'), -(16864,5600,'action started via Async Request','2025-11-06 10:24:02','2025-11-06 11:24:02'), -(16865,5600,'action complete via Async Request','2025-11-06 10:24:02','2025-11-06 11:24:02'), -(16866,5637,'action created','2025-11-06 10:24:02','2025-11-06 11:24:02'), -(16867,5635,'action started via WP Cron','2025-11-06 10:52:16','2025-11-06 11:52:16'), -(16868,5638,'action created','2025-11-06 10:52:16','2025-11-06 11:52:16'), -(16869,5635,'action complete via WP Cron','2025-11-06 10:52:16','2025-11-06 11:52:16'), -(16870,5638,'action started via WP Cron','2025-11-06 11:52:16','2025-11-06 12:52:16'), -(16871,5639,'action created','2025-11-06 11:52:16','2025-11-06 12:52:16'), -(16872,5638,'action complete via WP Cron','2025-11-06 11:52:16','2025-11-06 12:52:16'), -(16873,5639,'action started via WP Cron','2025-11-06 12:52:16','2025-11-06 13:52:16'), -(16874,5640,'action created','2025-11-06 12:52:16','2025-11-06 13:52:16'), -(16875,5639,'action complete via WP Cron','2025-11-06 12:52:16','2025-11-06 13:52:16'), -(16876,5641,'action created','2025-11-06 13:50:59','2025-11-06 14:50:59'), -(16877,5641,'action started via WP Cron','2025-11-06 13:51:31','2025-11-06 14:51:31'), -(16878,5641,'action complete via WP Cron','2025-11-06 13:51:31','2025-11-06 14:51:31'), -(16879,5640,'action started via WP Cron','2025-11-06 13:52:38','2025-11-06 14:52:38'), -(16880,5642,'action created','2025-11-06 13:52:38','2025-11-06 14:52:38'), -(16881,5640,'action complete via WP Cron','2025-11-06 13:52:38','2025-11-06 14:52:38'), -(16882,5643,'action created','2025-11-06 13:52:51','2025-11-06 14:52:51'), -(16883,5643,'action started via WP Cron','2025-11-06 13:54:16','2025-11-06 14:54:16'), -(16884,5643,'action complete via WP Cron','2025-11-06 13:54:16','2025-11-06 14:54:16'), -(16885,5642,'action started via WP Cron','2025-11-06 14:53:16','2025-11-06 15:53:16'), -(16886,5644,'action created','2025-11-06 14:53:16','2025-11-06 15:53:16'), -(16887,5642,'action complete via WP Cron','2025-11-06 14:53:16','2025-11-06 15:53:16'), -(16888,5644,'action started via WP Cron','2025-11-06 15:53:16','2025-11-06 16:53:16'), -(16889,5645,'action created','2025-11-06 15:53:16','2025-11-06 16:53:16'), -(16890,5644,'action complete via WP Cron','2025-11-06 15:53:16','2025-11-06 16:53:16'), -(16891,5645,'action started via WP Cron','2025-11-06 16:53:16','2025-11-06 17:53:16'), -(16892,5646,'action created','2025-11-06 16:53:16','2025-11-06 17:53:16'), -(16893,5645,'action complete via WP Cron','2025-11-06 16:53:16','2025-11-06 17:53:16'), -(16894,5646,'action started via WP Cron','2025-11-06 17:53:16','2025-11-06 18:53:16'), -(16895,5647,'action created','2025-11-06 17:53:16','2025-11-06 18:53:16'), -(16896,5646,'action complete via WP Cron','2025-11-06 17:53:16','2025-11-06 18:53:16'), -(16897,5609,'action started via WP Cron','2025-11-06 18:42:16','2025-11-06 19:42:16'), -(16898,5609,'action complete via WP Cron','2025-11-06 18:42:16','2025-11-06 19:42:16'), -(16899,5648,'action created','2025-11-06 18:42:16','2025-11-06 19:42:16'), -(16900,5610,'action started via WP Cron','2025-11-06 18:42:16','2025-11-06 19:42:16'), -(16901,5610,'action complete via WP Cron','2025-11-06 18:42:16','2025-11-06 19:42:16'), -(16902,5649,'action created','2025-11-06 18:42:16','2025-11-06 19:42:16'), -(16903,5647,'action started via WP Cron','2025-11-06 18:53:16','2025-11-06 19:53:16'), -(16904,5650,'action created','2025-11-06 18:53:16','2025-11-06 19:53:16'), -(16905,5647,'action complete via WP Cron','2025-11-06 18:53:16','2025-11-06 19:53:16'), -(16906,5632,'action started via WP Cron','2025-11-06 19:24:16','2025-11-06 20:24:16'), -(16907,5632,'action complete via WP Cron','2025-11-06 19:24:16','2025-11-06 20:24:16'), -(16908,5651,'action created','2025-11-06 19:24:16','2025-11-06 20:24:16'), -(16909,5650,'action started via WP Cron','2025-11-06 19:53:16','2025-11-06 20:53:16'), -(16910,5652,'action created','2025-11-06 19:53:16','2025-11-06 20:53:16'), -(16911,5650,'action complete via WP Cron','2025-11-06 19:53:16','2025-11-06 20:53:16'), -(16912,5652,'action started via WP Cron','2025-11-06 20:53:16','2025-11-06 21:53:16'), -(16913,5653,'action created','2025-11-06 20:53:16','2025-11-06 21:53:16'), -(16914,5652,'action complete via WP Cron','2025-11-06 20:53:16','2025-11-06 21:53:16'), -(16915,5653,'action started via WP Cron','2025-11-06 21:53:16','2025-11-06 22:53:16'), -(16916,5654,'action created','2025-11-06 21:53:16','2025-11-06 22:53:16'), -(16917,5653,'action complete via WP Cron','2025-11-06 21:53:16','2025-11-06 22:53:16'), -(16918,5616,'action started via WP Cron','2025-11-06 22:04:16','2025-11-06 23:04:16'), -(16919,5616,'action complete via WP Cron','2025-11-06 22:04:16','2025-11-06 23:04:16'), -(16920,5655,'action created','2025-11-06 22:04:16','2025-11-06 23:04:16'), -(16921,5654,'action started via WP Cron','2025-11-06 22:53:16','2025-11-06 23:53:16'), -(16922,5656,'action created','2025-11-06 22:53:16','2025-11-06 23:53:16'), -(16923,5654,'action complete via WP Cron','2025-11-06 22:53:16','2025-11-06 23:53:16'), -(16924,5656,'action started via WP Cron','2025-11-06 23:53:16','2025-11-07 00:53:16'), -(16925,5657,'action created','2025-11-06 23:53:16','2025-11-07 00:53:16'), -(16926,5656,'action complete via WP Cron','2025-11-06 23:53:16','2025-11-07 00:53:16'), -(16927,5657,'action started via WP Cron','2025-11-07 00:53:16','2025-11-07 01:53:16'), -(16928,5658,'action created','2025-11-07 00:53:16','2025-11-07 01:53:16'), -(16929,5657,'action complete via WP Cron','2025-11-07 00:53:16','2025-11-07 01:53:16'), -(16930,5658,'action started via WP Cron','2025-11-07 01:53:16','2025-11-07 02:53:16'), -(16931,5659,'action created','2025-11-07 01:53:16','2025-11-07 02:53:16'), -(16932,5658,'action complete via WP Cron','2025-11-07 01:53:16','2025-11-07 02:53:16'), -(16933,5659,'action started via WP Cron','2025-11-07 02:53:16','2025-11-07 03:53:16'), -(16934,5660,'action created','2025-11-07 02:53:16','2025-11-07 03:53:16'), -(16935,5659,'action complete via WP Cron','2025-11-07 02:53:16','2025-11-07 03:53:16'), -(16936,5660,'action started via WP Cron','2025-11-07 03:53:16','2025-11-07 04:53:16'), -(16937,5661,'action created','2025-11-07 03:53:16','2025-11-07 04:53:16'), -(16938,5660,'action complete via WP Cron','2025-11-07 03:53:16','2025-11-07 04:53:16'), -(16939,5661,'action started via WP Cron','2025-11-07 04:53:16','2025-11-07 05:53:16'), -(16940,5662,'action created','2025-11-07 04:53:16','2025-11-07 05:53:16'), -(16941,5661,'action complete via WP Cron','2025-11-07 04:53:16','2025-11-07 05:53:16'), -(16942,5629,'action started via WP Cron','2025-11-07 05:00:16','2025-11-07 06:00:16'), -(16943,5629,'action complete via WP Cron','2025-11-07 05:00:16','2025-11-07 06:00:16'), -(16945,5662,'action started via WP Cron','2025-11-07 05:53:16','2025-11-07 06:53:16'), -(16946,5664,'action created','2025-11-07 05:53:16','2025-11-07 06:53:16'), -(16947,5662,'action complete via WP Cron','2025-11-07 05:53:16','2025-11-07 06:53:16'), -(16948,5664,'action started via WP Cron','2025-11-07 06:53:16','2025-11-07 07:53:16'), -(16949,5665,'action created','2025-11-07 06:53:16','2025-11-07 07:53:16'), -(16950,5664,'action complete via WP Cron','2025-11-07 06:53:16','2025-11-07 07:53:16'), -(16951,5058,'action started via WP Cron','2025-11-07 07:14:16','2025-11-07 08:14:16'), -(16952,5058,'action complete via WP Cron','2025-11-07 07:14:16','2025-11-07 08:14:16'), -(16953,5666,'action created','2025-11-07 07:14:16','2025-11-07 08:14:16'), -(16954,5627,'action started via WP Cron','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16955,5627,'action complete via WP Cron','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16956,5667,'action created','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16957,5628,'action started via WP Cron','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16958,5628,'action complete via WP Cron','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16959,5668,'action created','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16960,5631,'action started via WP Cron','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16962,5669,'action created','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16963,5670,'action created','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16964,5631,'action complete via WP Cron','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16965,5671,'action created','2025-11-07 07:23:16','2025-11-07 08:23:16'), -(16966,5670,'action started via WP Cron','2025-11-07 07:24:16','2025-11-07 08:24:16'), -(16967,5670,'action complete via WP Cron','2025-11-07 07:24:16','2025-11-07 08:24:16'), -(16968,5651,'action started via WP Cron','2025-11-07 07:24:16','2025-11-07 08:24:16'), -(16969,5651,'action complete via WP Cron','2025-11-07 07:24:16','2025-11-07 08:24:16'), -(16970,5672,'action created','2025-11-07 07:24:16','2025-11-07 08:24:16'), -(16971,5665,'action started via WP Cron','2025-11-07 07:53:16','2025-11-07 08:53:16'), -(16972,5673,'action created','2025-11-07 07:53:16','2025-11-07 08:53:16'), -(16973,5665,'action complete via WP Cron','2025-11-07 07:53:16','2025-11-07 08:53:16'), -(16974,5673,'action started via WP Cron','2025-11-07 08:53:16','2025-11-07 09:53:16'), -(16975,5674,'action created','2025-11-07 08:53:16','2025-11-07 09:53:16'), -(16976,5673,'action complete via WP Cron','2025-11-07 08:53:16','2025-11-07 09:53:16'), -(16977,5674,'action started via WP Cron','2025-11-07 09:53:16','2025-11-07 10:53:16'), -(16978,5675,'action created','2025-11-07 09:53:16','2025-11-07 10:53:16'), -(16979,5674,'action complete via WP Cron','2025-11-07 09:53:16','2025-11-07 10:53:16'), -(16980,5636,'action started via WP Cron','2025-11-07 10:22:16','2025-11-07 11:22:16'), -(16981,5636,'action complete via WP Cron','2025-11-07 10:22:16','2025-11-07 11:22:16'), -(16982,5676,'action created','2025-11-07 10:22:16','2025-11-07 11:22:16'), -(16983,5637,'action started via WP Cron','2025-11-07 10:24:16','2025-11-07 11:24:16'), -(16984,5637,'action complete via WP Cron','2025-11-07 10:24:16','2025-11-07 11:24:16'), -(16985,5677,'action created','2025-11-07 10:24:16','2025-11-07 11:24:16'), -(16986,5675,'action started via WP Cron','2025-11-07 10:53:16','2025-11-07 11:53:16'), -(16987,5678,'action created','2025-11-07 10:53:16','2025-11-07 11:53:16'), -(16988,5675,'action complete via WP Cron','2025-11-07 10:53:16','2025-11-07 11:53:16'), -(16989,5678,'action started via WP Cron','2025-11-07 11:54:16','2025-11-07 12:54:16'), -(16990,5679,'action created','2025-11-07 11:54:16','2025-11-07 12:54:16'), -(16991,5678,'action complete via WP Cron','2025-11-07 11:54:16','2025-11-07 12:54:16'), -(16992,5679,'action started via WP Cron','2025-11-07 12:54:16','2025-11-07 13:54:16'), -(16993,5680,'action created','2025-11-07 12:54:16','2025-11-07 13:54:16'), -(16994,5679,'action complete via WP Cron','2025-11-07 12:54:16','2025-11-07 13:54:16'), -(16995,5680,'action started via WP Cron','2025-11-07 13:54:16','2025-11-07 14:54:16'), -(16996,5681,'action created','2025-11-07 13:54:16','2025-11-07 14:54:16'), -(16997,5680,'action complete via WP Cron','2025-11-07 13:54:16','2025-11-07 14:54:16'), -(16998,5681,'action started via WP Cron','2025-11-07 14:54:16','2025-11-07 15:54:16'), -(16999,5682,'action created','2025-11-07 14:54:16','2025-11-07 15:54:16'), -(17000,5681,'action complete via WP Cron','2025-11-07 14:54:16','2025-11-07 15:54:16'), -(17001,5682,'action started via WP Cron','2025-11-07 15:54:16','2025-11-07 16:54:16'), -(17002,5683,'action created','2025-11-07 15:54:16','2025-11-07 16:54:16'), -(17003,5682,'action complete via WP Cron','2025-11-07 15:54:16','2025-11-07 16:54:16'), -(17004,5683,'action started via WP Cron','2025-11-07 16:54:16','2025-11-07 17:54:16'), -(17005,5684,'action created','2025-11-07 16:54:16','2025-11-07 17:54:16'), -(17006,5683,'action complete via WP Cron','2025-11-07 16:54:16','2025-11-07 17:54:16'), -(17007,5684,'action started via WP Cron','2025-11-07 17:54:16','2025-11-07 18:54:16'), -(17008,5685,'action created','2025-11-07 17:54:16','2025-11-07 18:54:16'), -(17009,5684,'action complete via WP Cron','2025-11-07 17:54:16','2025-11-07 18:54:16'), -(17010,5648,'action started via WP Cron','2025-11-07 18:42:16','2025-11-07 19:42:16'), -(17011,5648,'action complete via WP Cron','2025-11-07 18:42:16','2025-11-07 19:42:16'), -(17012,5686,'action created','2025-11-07 18:42:16','2025-11-07 19:42:16'), -(17013,5649,'action started via WP Cron','2025-11-07 18:42:16','2025-11-07 19:42:16'), -(17014,5649,'action complete via WP Cron','2025-11-07 18:42:16','2025-11-07 19:42:16'), -(17015,5687,'action created','2025-11-07 18:42:16','2025-11-07 19:42:16'), -(17016,5685,'action started via WP Cron','2025-11-07 18:54:16','2025-11-07 19:54:16'), -(17017,5688,'action created','2025-11-07 18:54:16','2025-11-07 19:54:16'), -(17018,5685,'action complete via WP Cron','2025-11-07 18:54:16','2025-11-07 19:54:16'), -(17019,5672,'action started via WP Cron','2025-11-07 19:24:16','2025-11-07 20:24:16'), -(17020,5672,'action complete via WP Cron','2025-11-07 19:24:16','2025-11-07 20:24:16'), -(17021,5689,'action created','2025-11-07 19:24:16','2025-11-07 20:24:16'), -(17022,5688,'action started via WP Cron','2025-11-07 19:54:16','2025-11-07 20:54:16'), -(17023,5690,'action created','2025-11-07 19:54:16','2025-11-07 20:54:16'), -(17024,5688,'action complete via WP Cron','2025-11-07 19:54:16','2025-11-07 20:54:16'), -(17025,5690,'action started via WP Cron','2025-11-07 20:54:16','2025-11-07 21:54:16'), -(17026,5691,'action created','2025-11-07 20:54:16','2025-11-07 21:54:16'), -(17027,5690,'action complete via WP Cron','2025-11-07 20:54:16','2025-11-07 21:54:16'), -(17028,5691,'action started via WP Cron','2025-11-07 21:54:16','2025-11-07 22:54:16'), -(17029,5692,'action created','2025-11-07 21:54:16','2025-11-07 22:54:16'), -(17030,5691,'action complete via WP Cron','2025-11-07 21:54:16','2025-11-07 22:54:16'), -(17031,5655,'action started via WP Cron','2025-11-07 22:04:16','2025-11-07 23:04:16'), -(17032,5655,'action complete via WP Cron','2025-11-07 22:04:16','2025-11-07 23:04:16'), -(17033,5693,'action created','2025-11-07 22:04:16','2025-11-07 23:04:16'), -(17034,5692,'action started via WP Cron','2025-11-07 22:54:16','2025-11-07 23:54:16'), -(17035,5694,'action created','2025-11-07 22:54:16','2025-11-07 23:54:16'), -(17036,5692,'action complete via WP Cron','2025-11-07 22:54:16','2025-11-07 23:54:16'), -(17037,5694,'action started via WP Cron','2025-11-07 23:54:16','2025-11-08 00:54:16'), -(17038,5695,'action created','2025-11-07 23:54:16','2025-11-08 00:54:16'), -(17039,5694,'action complete via WP Cron','2025-11-07 23:54:16','2025-11-08 00:54:16'), -(17040,5695,'action started via WP Cron','2025-11-08 00:54:16','2025-11-08 01:54:16'), -(17041,5696,'action created','2025-11-08 00:54:16','2025-11-08 01:54:16'), -(17042,5695,'action complete via WP Cron','2025-11-08 00:54:16','2025-11-08 01:54:16'), -(17043,5696,'action started via WP Cron','2025-11-08 01:54:16','2025-11-08 02:54:16'), -(17044,5697,'action created','2025-11-08 01:54:16','2025-11-08 02:54:16'), -(17045,5696,'action complete via WP Cron','2025-11-08 01:54:16','2025-11-08 02:54:16'), -(17046,5697,'action started via WP Cron','2025-11-08 02:54:16','2025-11-08 03:54:16'), -(17047,5698,'action created','2025-11-08 02:54:16','2025-11-08 03:54:16'), -(17048,5697,'action complete via WP Cron','2025-11-08 02:54:16','2025-11-08 03:54:16'), -(17049,5698,'action started via WP Cron','2025-11-08 03:54:16','2025-11-08 04:54:16'), -(17050,5699,'action created','2025-11-08 03:54:16','2025-11-08 04:54:16'), -(17051,5698,'action complete via WP Cron','2025-11-08 03:54:16','2025-11-08 04:54:16'), -(17052,5699,'action started via WP Cron','2025-11-08 04:54:16','2025-11-08 05:54:16'), -(17053,5700,'action created','2025-11-08 04:54:16','2025-11-08 05:54:16'), -(17054,5699,'action complete via WP Cron','2025-11-08 04:54:16','2025-11-08 05:54:16'), -(17055,5669,'action started via WP Cron','2025-11-08 05:00:16','2025-11-08 06:00:16'), -(17056,5669,'action complete via WP Cron','2025-11-08 05:00:16','2025-11-08 06:00:16'), -(17058,5700,'action started via WP Cron','2025-11-08 05:54:17','2025-11-08 06:54:17'), -(17059,5702,'action created','2025-11-08 05:54:17','2025-11-08 06:54:17'), -(17060,5700,'action complete via WP Cron','2025-11-08 05:54:17','2025-11-08 06:54:17'), -(17061,5702,'action started via WP Cron','2025-11-08 06:55:16','2025-11-08 07:55:16'), -(17062,5703,'action created','2025-11-08 06:55:17','2025-11-08 07:55:17'), -(17063,5702,'action complete via WP Cron','2025-11-08 06:55:17','2025-11-08 07:55:17'), -(17064,5667,'action started via WP Cron','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17065,5667,'action complete via WP Cron','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17066,5704,'action created','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17067,5668,'action started via WP Cron','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17068,5668,'action complete via WP Cron','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17069,5705,'action created','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17070,5671,'action started via WP Cron','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17072,5706,'action created','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17073,5707,'action created','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17074,5671,'action complete via WP Cron','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17075,5708,'action created','2025-11-08 07:23:17','2025-11-08 08:23:17'), -(17076,5707,'action started via WP Cron','2025-11-08 07:24:17','2025-11-08 08:24:17'), -(17077,5707,'action complete via WP Cron','2025-11-08 07:24:17','2025-11-08 08:24:17'), -(17078,5689,'action started via WP Cron','2025-11-08 07:24:17','2025-11-08 08:24:17'), -(17079,5689,'action complete via WP Cron','2025-11-08 07:24:17','2025-11-08 08:24:17'), -(17080,5709,'action created','2025-11-08 07:24:17','2025-11-08 08:24:17'), -(17081,5703,'action started via WP Cron','2025-11-08 07:55:17','2025-11-08 08:55:17'), -(17082,5710,'action created','2025-11-08 07:55:17','2025-11-08 08:55:17'), -(17083,5703,'action complete via WP Cron','2025-11-08 07:55:17','2025-11-08 08:55:17'), -(17084,5710,'action started via WP Cron','2025-11-08 08:55:17','2025-11-08 09:55:17'), -(17085,5711,'action created','2025-11-08 08:55:17','2025-11-08 09:55:17'), -(17086,5710,'action complete via WP Cron','2025-11-08 08:55:17','2025-11-08 09:55:17'), -(17087,5711,'action started via WP Cron','2025-11-08 09:55:17','2025-11-08 10:55:17'), -(17088,5712,'action created','2025-11-08 09:55:17','2025-11-08 10:55:17'), -(17089,5711,'action complete via WP Cron','2025-11-08 09:55:17','2025-11-08 10:55:17'), -(17090,5676,'action started via WP Cron','2025-11-08 10:22:17','2025-11-08 11:22:17'), -(17091,5676,'action complete via WP Cron','2025-11-08 10:22:17','2025-11-08 11:22:17'), -(17092,5713,'action created','2025-11-08 10:22:17','2025-11-08 11:22:17'), -(17093,5677,'action started via WP Cron','2025-11-08 10:24:17','2025-11-08 11:24:17'), -(17094,5677,'action complete via WP Cron','2025-11-08 10:24:17','2025-11-08 11:24:17'), -(17095,5714,'action created','2025-11-08 10:24:17','2025-11-08 11:24:17'), -(17096,5712,'action started via WP Cron','2025-11-08 10:55:17','2025-11-08 11:55:17'), -(17097,5715,'action created','2025-11-08 10:55:17','2025-11-08 11:55:17'), -(17098,5712,'action complete via WP Cron','2025-11-08 10:55:17','2025-11-08 11:55:17'), -(17099,5715,'action started via WP Cron','2025-11-08 11:55:17','2025-11-08 12:55:17'), -(17100,5716,'action created','2025-11-08 11:55:17','2025-11-08 12:55:17'), -(17101,5715,'action complete via WP Cron','2025-11-08 11:55:17','2025-11-08 12:55:17'), -(17102,5716,'action started via WP Cron','2025-11-08 12:55:17','2025-11-08 13:55:17'), -(17103,5717,'action created','2025-11-08 12:55:17','2025-11-08 13:55:17'), -(17104,5716,'action complete via WP Cron','2025-11-08 12:55:17','2025-11-08 13:55:17'), -(17105,5717,'action started via WP Cron','2025-11-08 13:55:17','2025-11-08 14:55:17'), -(17106,5718,'action created','2025-11-08 13:55:17','2025-11-08 14:55:17'), -(17107,5717,'action complete via WP Cron','2025-11-08 13:55:17','2025-11-08 14:55:17'), -(17108,5718,'action started via WP Cron','2025-11-08 14:55:17','2025-11-08 15:55:17'), -(17109,5719,'action created','2025-11-08 14:55:17','2025-11-08 15:55:17'), -(17110,5718,'action complete via WP Cron','2025-11-08 14:55:17','2025-11-08 15:55:17'), -(17111,5719,'action started via WP Cron','2025-11-08 15:55:17','2025-11-08 16:55:17'), -(17112,5720,'action created','2025-11-08 15:55:17','2025-11-08 16:55:17'), -(17113,5719,'action complete via WP Cron','2025-11-08 15:55:17','2025-11-08 16:55:17'), -(17114,5720,'action started via WP Cron','2025-11-08 16:55:17','2025-11-08 17:55:17'), -(17115,5721,'action created','2025-11-08 16:55:17','2025-11-08 17:55:17'), -(17116,5720,'action complete via WP Cron','2025-11-08 16:55:17','2025-11-08 17:55:17'), -(17117,5721,'action started via WP Cron','2025-11-08 17:55:17','2025-11-08 18:55:17'), -(17118,5722,'action created','2025-11-08 17:55:17','2025-11-08 18:55:17'), -(17119,5721,'action complete via WP Cron','2025-11-08 17:55:17','2025-11-08 18:55:17'), -(17120,5686,'action started via WP Cron','2025-11-08 18:42:17','2025-11-08 19:42:17'), -(17121,5686,'action complete via WP Cron','2025-11-08 18:42:17','2025-11-08 19:42:17'), -(17122,5723,'action created','2025-11-08 18:42:17','2025-11-08 19:42:17'), -(17123,5687,'action started via WP Cron','2025-11-08 18:42:17','2025-11-08 19:42:17'), -(17124,5687,'action complete via WP Cron','2025-11-08 18:42:17','2025-11-08 19:42:17'), -(17125,5724,'action created','2025-11-08 18:42:17','2025-11-08 19:42:17'), -(17126,5722,'action started via WP Cron','2025-11-08 18:55:17','2025-11-08 19:55:17'), -(17127,5725,'action created','2025-11-08 18:55:17','2025-11-08 19:55:17'), -(17128,5722,'action complete via WP Cron','2025-11-08 18:55:17','2025-11-08 19:55:17'), -(17129,5709,'action started via WP Cron','2025-11-08 19:24:17','2025-11-08 20:24:17'), -(17130,5709,'action complete via WP Cron','2025-11-08 19:24:17','2025-11-08 20:24:17'), -(17131,5726,'action created','2025-11-08 19:24:17','2025-11-08 20:24:17'), -(17132,5725,'action started via WP Cron','2025-11-08 19:55:17','2025-11-08 20:55:17'), -(17133,5727,'action created','2025-11-08 19:55:17','2025-11-08 20:55:17'), -(17134,5725,'action complete via WP Cron','2025-11-08 19:55:17','2025-11-08 20:55:17'), -(17135,5727,'action started via WP Cron','2025-11-08 20:55:17','2025-11-08 21:55:17'), -(17136,5728,'action created','2025-11-08 20:55:17','2025-11-08 21:55:17'), -(17137,5727,'action complete via WP Cron','2025-11-08 20:55:17','2025-11-08 21:55:17'), -(17138,5728,'action started via WP Cron','2025-11-08 21:55:17','2025-11-08 22:55:17'), -(17139,5729,'action created','2025-11-08 21:55:17','2025-11-08 22:55:17'), -(17140,5728,'action complete via WP Cron','2025-11-08 21:55:17','2025-11-08 22:55:17'), -(17141,5693,'action started via WP Cron','2025-11-08 22:04:17','2025-11-08 23:04:17'), -(17142,5693,'action complete via WP Cron','2025-11-08 22:04:17','2025-11-08 23:04:17'), -(17143,5730,'action created','2025-11-08 22:04:17','2025-11-08 23:04:17'), -(17144,5729,'action started via WP Cron','2025-11-08 22:55:17','2025-11-08 23:55:17'), -(17145,5731,'action created','2025-11-08 22:55:17','2025-11-08 23:55:17'), -(17146,5729,'action complete via WP Cron','2025-11-08 22:55:17','2025-11-08 23:55:17'), -(17147,5731,'action started via WP Cron','2025-11-08 23:55:17','2025-11-09 00:55:17'), -(17148,5732,'action created','2025-11-08 23:55:17','2025-11-09 00:55:17'), -(17149,5731,'action complete via WP Cron','2025-11-08 23:55:17','2025-11-09 00:55:17'), -(17150,5732,'action started via WP Cron','2025-11-09 00:55:17','2025-11-09 01:55:17'), -(17151,5733,'action created','2025-11-09 00:55:17','2025-11-09 01:55:17'), -(17152,5732,'action complete via WP Cron','2025-11-09 00:55:17','2025-11-09 01:55:17'), -(17153,5733,'action started via WP Cron','2025-11-09 01:55:17','2025-11-09 02:55:17'), -(17154,5734,'action created','2025-11-09 01:55:17','2025-11-09 02:55:17'), -(17155,5733,'action complete via WP Cron','2025-11-09 01:55:17','2025-11-09 02:55:17'), -(17156,5734,'action started via WP Cron','2025-11-09 02:55:17','2025-11-09 03:55:17'), -(17157,5735,'action created','2025-11-09 02:55:17','2025-11-09 03:55:17'), -(17158,5734,'action complete via WP Cron','2025-11-09 02:55:17','2025-11-09 03:55:17'), -(17159,5735,'action started via WP Cron','2025-11-09 03:55:17','2025-11-09 04:55:17'), -(17160,5736,'action created','2025-11-09 03:55:17','2025-11-09 04:55:17'), -(17161,5735,'action complete via WP Cron','2025-11-09 03:55:17','2025-11-09 04:55:17'), -(17162,5736,'action started via WP Cron','2025-11-09 04:55:17','2025-11-09 05:55:17'), -(17163,5737,'action created','2025-11-09 04:55:17','2025-11-09 05:55:17'), -(17164,5736,'action complete via WP Cron','2025-11-09 04:55:17','2025-11-09 05:55:17'), -(17165,5706,'action started via WP Cron','2025-11-09 05:00:17','2025-11-09 06:00:17'), -(17166,5706,'action complete via WP Cron','2025-11-09 05:00:17','2025-11-09 06:00:17'), -(17168,5737,'action started via WP Cron','2025-11-09 05:55:17','2025-11-09 06:55:17'), -(17169,5739,'action created','2025-11-09 05:55:17','2025-11-09 06:55:17'), -(17170,5737,'action complete via WP Cron','2025-11-09 05:55:17','2025-11-09 06:55:17'), -(17171,5739,'action started via WP Cron','2025-11-09 06:55:17','2025-11-09 07:55:17'), -(17172,5740,'action created','2025-11-09 06:55:17','2025-11-09 07:55:17'), -(17173,5739,'action complete via WP Cron','2025-11-09 06:55:17','2025-11-09 07:55:17'), -(17174,5704,'action started via WP Cron','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17175,5704,'action complete via WP Cron','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17176,5741,'action created','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17177,5705,'action started via WP Cron','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17178,5705,'action complete via WP Cron','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17179,5742,'action created','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17180,5708,'action started via WP Cron','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17182,5743,'action created','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17183,5744,'action created','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17184,5708,'action complete via WP Cron','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17185,5745,'action created','2025-11-09 07:23:17','2025-11-09 08:23:17'), -(17186,5744,'action started via WP Cron','2025-11-09 07:24:17','2025-11-09 08:24:17'), -(17187,5744,'action complete via WP Cron','2025-11-09 07:24:17','2025-11-09 08:24:17'), -(17188,5726,'action started via WP Cron','2025-11-09 07:24:17','2025-11-09 08:24:17'), -(17189,5726,'action complete via WP Cron','2025-11-09 07:24:17','2025-11-09 08:24:17'), -(17190,5746,'action created','2025-11-09 07:24:17','2025-11-09 08:24:17'), -(17191,5740,'action started via WP Cron','2025-11-09 07:55:17','2025-11-09 08:55:17'), -(17192,5747,'action created','2025-11-09 07:55:17','2025-11-09 08:55:17'), -(17193,5740,'action complete via WP Cron','2025-11-09 07:55:17','2025-11-09 08:55:17'), -(17194,5747,'action started via WP Cron','2025-11-09 08:55:17','2025-11-09 09:55:17'), -(17195,5748,'action created','2025-11-09 08:55:17','2025-11-09 09:55:17'), -(17196,5747,'action complete via WP Cron','2025-11-09 08:55:17','2025-11-09 09:55:17'), -(17197,5748,'action started via WP Cron','2025-11-09 09:55:17','2025-11-09 10:55:17'), -(17198,5749,'action created','2025-11-09 09:55:17','2025-11-09 10:55:17'), -(17199,5748,'action complete via WP Cron','2025-11-09 09:55:17','2025-11-09 10:55:17'), -(17200,5713,'action started via WP Cron','2025-11-09 10:22:17','2025-11-09 11:22:17'), -(17201,5713,'action complete via WP Cron','2025-11-09 10:22:17','2025-11-09 11:22:17'), -(17202,5750,'action created','2025-11-09 10:22:17','2025-11-09 11:22:17'), -(17203,5714,'action started via WP Cron','2025-11-09 10:24:17','2025-11-09 11:24:17'), -(17204,5714,'action complete via WP Cron','2025-11-09 10:24:17','2025-11-09 11:24:17'), -(17205,5751,'action created','2025-11-09 10:24:17','2025-11-09 11:24:17'), -(17206,5749,'action started via WP Cron','2025-11-09 10:55:17','2025-11-09 11:55:17'), -(17207,5752,'action created','2025-11-09 10:55:17','2025-11-09 11:55:17'), -(17208,5749,'action complete via WP Cron','2025-11-09 10:55:17','2025-11-09 11:55:17'), -(17209,5752,'action started via WP Cron','2025-11-09 11:55:17','2025-11-09 12:55:17'), -(17210,5753,'action created','2025-11-09 11:55:17','2025-11-09 12:55:17'), -(17211,5752,'action complete via WP Cron','2025-11-09 11:55:17','2025-11-09 12:55:17'), -(17212,5753,'action started via WP Cron','2025-11-09 12:55:17','2025-11-09 13:55:17'), -(17213,5754,'action created','2025-11-09 12:55:17','2025-11-09 13:55:17'), -(17214,5753,'action complete via WP Cron','2025-11-09 12:55:17','2025-11-09 13:55:17'), -(17215,5754,'action started via WP Cron','2025-11-09 13:55:17','2025-11-09 14:55:17'), -(17216,5755,'action created','2025-11-09 13:55:17','2025-11-09 14:55:17'), -(17217,5754,'action complete via WP Cron','2025-11-09 13:55:17','2025-11-09 14:55:17'), -(17218,5755,'action started via WP Cron','2025-11-09 14:55:17','2025-11-09 15:55:17'), -(17219,5756,'action created','2025-11-09 14:55:17','2025-11-09 15:55:17'), -(17220,5755,'action complete via WP Cron','2025-11-09 14:55:17','2025-11-09 15:55:17'), -(17221,5756,'action started via WP Cron','2025-11-09 15:55:17','2025-11-09 16:55:17'), -(17222,5757,'action created','2025-11-09 15:55:17','2025-11-09 16:55:17'), -(17223,5756,'action complete via WP Cron','2025-11-09 15:55:17','2025-11-09 16:55:17'), -(17224,5757,'action started via WP Cron','2025-11-09 16:55:17','2025-11-09 17:55:17'), -(17225,5758,'action created','2025-11-09 16:55:17','2025-11-09 17:55:17'), -(17226,5757,'action complete via WP Cron','2025-11-09 16:55:17','2025-11-09 17:55:17'), -(17227,5758,'action started via WP Cron','2025-11-09 17:55:17','2025-11-09 18:55:17'), -(17228,5759,'action created','2025-11-09 17:55:17','2025-11-09 18:55:17'), -(17229,5758,'action complete via WP Cron','2025-11-09 17:55:17','2025-11-09 18:55:17'), -(17230,5723,'action started via WP Cron','2025-11-09 18:42:17','2025-11-09 19:42:17'), -(17231,5723,'action complete via WP Cron','2025-11-09 18:42:17','2025-11-09 19:42:17'), -(17232,5760,'action created','2025-11-09 18:42:17','2025-11-09 19:42:17'), -(17233,5724,'action started via WP Cron','2025-11-09 18:42:17','2025-11-09 19:42:17'), -(17234,5724,'action complete via WP Cron','2025-11-09 18:42:17','2025-11-09 19:42:17'), -(17235,5761,'action created','2025-11-09 18:42:17','2025-11-09 19:42:17'), -(17236,5759,'action started via WP Cron','2025-11-09 18:55:17','2025-11-09 19:55:17'), -(17237,5762,'action created','2025-11-09 18:55:17','2025-11-09 19:55:17'), -(17238,5759,'action complete via WP Cron','2025-11-09 18:55:17','2025-11-09 19:55:17'), -(17239,5746,'action started via WP Cron','2025-11-09 19:24:17','2025-11-09 20:24:17'), -(17240,5746,'action complete via WP Cron','2025-11-09 19:24:17','2025-11-09 20:24:17'), -(17241,5763,'action created','2025-11-09 19:24:17','2025-11-09 20:24:17'), -(17242,5762,'action started via WP Cron','2025-11-09 19:55:17','2025-11-09 20:55:17'), -(17243,5764,'action created','2025-11-09 19:55:17','2025-11-09 20:55:17'), -(17244,5762,'action complete via WP Cron','2025-11-09 19:55:17','2025-11-09 20:55:17'), -(17245,5764,'action started via WP Cron','2025-11-09 20:55:17','2025-11-09 21:55:17'), -(17246,5765,'action created','2025-11-09 20:55:17','2025-11-09 21:55:17'), -(17247,5764,'action complete via WP Cron','2025-11-09 20:55:17','2025-11-09 21:55:17'), -(17248,5765,'action started via WP Cron','2025-11-09 21:55:17','2025-11-09 22:55:17'), -(17249,5766,'action created','2025-11-09 21:55:17','2025-11-09 22:55:17'), -(17250,5765,'action complete via WP Cron','2025-11-09 21:55:17','2025-11-09 22:55:17'), -(17251,5730,'action started via WP Cron','2025-11-09 22:04:17','2025-11-09 23:04:17'), -(17252,5730,'action complete via WP Cron','2025-11-09 22:04:17','2025-11-09 23:04:17'), -(17253,5767,'action created','2025-11-09 22:04:17','2025-11-09 23:04:17'), -(17254,5766,'action started via WP Cron','2025-11-09 22:55:17','2025-11-09 23:55:17'), -(17255,5768,'action created','2025-11-09 22:55:17','2025-11-09 23:55:17'), -(17256,5766,'action complete via WP Cron','2025-11-09 22:55:17','2025-11-09 23:55:17'), -(17257,5768,'action started via WP Cron','2025-11-09 23:55:17','2025-11-10 00:55:17'), -(17258,5769,'action created','2025-11-09 23:55:17','2025-11-10 00:55:17'), -(17259,5768,'action complete via WP Cron','2025-11-09 23:55:17','2025-11-10 00:55:17'), -(17260,5769,'action started via WP Cron','2025-11-10 00:55:17','2025-11-10 01:55:17'), -(17261,5770,'action created','2025-11-10 00:55:17','2025-11-10 01:55:17'), -(17262,5769,'action complete via WP Cron','2025-11-10 00:55:17','2025-11-10 01:55:17'), -(17263,5770,'action started via WP Cron','2025-11-10 01:55:17','2025-11-10 02:55:17'), -(17264,5771,'action created','2025-11-10 01:55:17','2025-11-10 02:55:17'), -(17265,5770,'action complete via WP Cron','2025-11-10 01:55:17','2025-11-10 02:55:17'), -(17266,5771,'action started via WP Cron','2025-11-10 02:55:17','2025-11-10 03:55:17'), -(17267,5772,'action created','2025-11-10 02:55:17','2025-11-10 03:55:17'), -(17268,5771,'action complete via WP Cron','2025-11-10 02:55:17','2025-11-10 03:55:17'), -(17269,5772,'action started via WP Cron','2025-11-10 03:55:17','2025-11-10 04:55:17'), -(17270,5773,'action created','2025-11-10 03:55:17','2025-11-10 04:55:17'), -(17271,5772,'action complete via WP Cron','2025-11-10 03:55:17','2025-11-10 04:55:17'), -(17272,5773,'action started via WP Cron','2025-11-10 04:55:17','2025-11-10 05:55:17'), -(17273,5774,'action created','2025-11-10 04:55:17','2025-11-10 05:55:17'), -(17274,5773,'action complete via WP Cron','2025-11-10 04:55:17','2025-11-10 05:55:17'), -(17275,5743,'action started via WP Cron','2025-11-10 05:00:17','2025-11-10 06:00:17'), -(17276,5743,'action complete via WP Cron','2025-11-10 05:00:17','2025-11-10 06:00:17'), -(17278,5774,'action started via WP Cron','2025-11-10 05:55:17','2025-11-10 06:55:17'), -(17279,5776,'action created','2025-11-10 05:55:17','2025-11-10 06:55:17'), -(17280,5774,'action complete via WP Cron','2025-11-10 05:55:17','2025-11-10 06:55:17'), -(17281,5776,'action started via WP Cron','2025-11-10 06:55:17','2025-11-10 07:55:17'), -(17282,5777,'action created','2025-11-10 06:55:17','2025-11-10 07:55:17'), -(17283,5776,'action complete via WP Cron','2025-11-10 06:55:17','2025-11-10 07:55:17'), -(17284,5741,'action started via WP Cron','2025-11-10 07:23:17','2025-11-10 08:23:17'), -(17285,5741,'action complete via WP Cron','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17286,5778,'action created','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17287,5742,'action started via WP Cron','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17288,5742,'action complete via WP Cron','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17289,5779,'action created','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17290,5745,'action started via WP Cron','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17292,5780,'action created','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17293,5781,'action created','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17294,5745,'action complete via WP Cron','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17295,5782,'action created','2025-11-10 07:23:18','2025-11-10 08:23:18'), -(17296,5781,'action started via WP Cron','2025-11-10 07:23:37','2025-11-10 08:23:37'), -(17297,5781,'action complete via WP Cron','2025-11-10 07:23:37','2025-11-10 08:23:37'), -(17298,5763,'action started via WP Cron','2025-11-10 07:25:17','2025-11-10 08:25:17'), -(17299,5763,'action complete via WP Cron','2025-11-10 07:25:17','2025-11-10 08:25:17'), -(17300,5783,'action created','2025-11-10 07:25:17','2025-11-10 08:25:17'), -(17301,5777,'action started via WP Cron','2025-11-10 07:55:26','2025-11-10 08:55:26'), -(17302,5784,'action created','2025-11-10 07:55:26','2025-11-10 08:55:26'), -(17303,5777,'action complete via WP Cron','2025-11-10 07:55:26','2025-11-10 08:55:26'), -(17304,5784,'action started via WP Cron','2025-11-10 08:56:17','2025-11-10 09:56:17'), -(17305,5785,'action created','2025-11-10 08:56:17','2025-11-10 09:56:17'), -(17306,5784,'action complete via WP Cron','2025-11-10 08:56:17','2025-11-10 09:56:17'), -(17307,5785,'action started via WP Cron','2025-11-10 09:56:17','2025-11-10 10:56:17'), -(17308,5786,'action created','2025-11-10 09:56:17','2025-11-10 10:56:17'), -(17309,5785,'action complete via WP Cron','2025-11-10 09:56:17','2025-11-10 10:56:17'), -(17310,5750,'action started via WP Cron','2025-11-10 10:22:17','2025-11-10 11:22:17'), -(17311,5750,'action complete via WP Cron','2025-11-10 10:22:17','2025-11-10 11:22:17'), -(17312,5787,'action created','2025-11-10 10:22:17','2025-11-10 11:22:17'), -(17313,5751,'action started via WP Cron','2025-11-10 10:24:17','2025-11-10 11:24:17'), -(17314,5751,'action complete via WP Cron','2025-11-10 10:24:17','2025-11-10 11:24:17'), -(17315,5788,'action created','2025-11-10 10:24:17','2025-11-10 11:24:17'), -(17316,5786,'action started via WP Cron','2025-11-10 10:56:17','2025-11-10 11:56:17'), -(17317,5789,'action created','2025-11-10 10:56:17','2025-11-10 11:56:17'), -(17318,5786,'action complete via WP Cron','2025-11-10 10:56:17','2025-11-10 11:56:17'), -(17319,5789,'action started via WP Cron','2025-11-10 11:56:17','2025-11-10 12:56:17'), -(17320,5790,'action created','2025-11-10 11:56:17','2025-11-10 12:56:17'), -(17321,5789,'action complete via WP Cron','2025-11-10 11:56:17','2025-11-10 12:56:17'), -(17322,5791,'action created','2025-11-10 12:28:00','2025-11-10 13:28:00'), -(17323,5791,'action started via WP Cron','2025-11-10 12:28:27','2025-11-10 13:28:27'), -(17324,5791,'action complete via WP Cron','2025-11-10 12:28:27','2025-11-10 13:28:27'), -(17325,5792,'action created','2025-11-10 12:30:01','2025-11-10 13:30:01'), -(17326,5792,'action started via WP Cron','2025-11-10 12:30:27','2025-11-10 13:30:27'), -(17327,5792,'action complete via WP Cron','2025-11-10 12:30:27','2025-11-10 13:30:27'), -(17328,5790,'action started via WP Cron','2025-11-10 12:57:17','2025-11-10 13:57:17'), -(17329,5793,'action created','2025-11-10 12:57:17','2025-11-10 13:57:17'), -(17330,5790,'action complete via WP Cron','2025-11-10 12:57:17','2025-11-10 13:57:17'), -(17331,5794,'action created','2025-11-10 13:03:20','2025-11-10 14:03:20'), -(17332,5794,'action started via WP Cron','2025-11-10 13:03:26','2025-11-10 14:03:26'), -(17333,5794,'action complete via WP Cron','2025-11-10 13:03:26','2025-11-10 14:03:26'), -(17334,5795,'action created','2025-11-10 13:06:29','2025-11-10 14:06:29'), -(17335,5795,'action started via WP Cron','2025-11-10 13:08:17','2025-11-10 14:08:17'), -(17336,5795,'action complete via WP Cron','2025-11-10 13:08:17','2025-11-10 14:08:17'), -(17337,5793,'action started via WP Cron','2025-11-10 13:57:17','2025-11-10 14:57:17'), -(17338,5796,'action created','2025-11-10 13:57:17','2025-11-10 14:57:17'), -(17339,5793,'action complete via WP Cron','2025-11-10 13:57:17','2025-11-10 14:57:17'), -(17340,5796,'action started via WP Cron','2025-11-10 14:57:17','2025-11-10 15:57:17'), -(17341,5797,'action created','2025-11-10 14:57:17','2025-11-10 15:57:17'), -(17342,5796,'action complete via WP Cron','2025-11-10 14:57:17','2025-11-10 15:57:17'), -(17343,5797,'action started via WP Cron','2025-11-10 15:57:17','2025-11-10 16:57:17'), -(17344,5798,'action created','2025-11-10 15:57:17','2025-11-10 16:57:17'), -(17345,5797,'action complete via WP Cron','2025-11-10 15:57:17','2025-11-10 16:57:17'), -(17346,5799,'action created','2025-11-10 16:33:04','2025-11-10 17:33:04'), -(17347,5799,'action started via WP Cron','2025-11-10 16:33:27','2025-11-10 17:33:27'), -(17348,5799,'action complete via WP Cron','2025-11-10 16:33:27','2025-11-10 17:33:27'), -(17349,5798,'action started via WP Cron','2025-11-10 16:58:17','2025-11-10 17:58:17'), -(17350,5800,'action created','2025-11-10 16:58:17','2025-11-10 17:58:17'), -(17351,5798,'action complete via WP Cron','2025-11-10 16:58:17','2025-11-10 17:58:17'), -(17352,5800,'action started via WP Cron','2025-11-10 17:59:17','2025-11-10 18:59:17'), -(17353,5801,'action created','2025-11-10 17:59:17','2025-11-10 18:59:17'), -(17354,5800,'action complete via WP Cron','2025-11-10 17:59:17','2025-11-10 18:59:17'), -(17355,5760,'action started via WP Cron','2025-11-10 18:42:17','2025-11-10 19:42:17'), -(17356,5760,'action complete via WP Cron','2025-11-10 18:42:17','2025-11-10 19:42:17'), -(17357,5802,'action created','2025-11-10 18:42:17','2025-11-10 19:42:17'), -(17358,5761,'action started via WP Cron','2025-11-10 18:42:17','2025-11-10 19:42:17'), -(17359,5761,'action complete via WP Cron','2025-11-10 18:42:17','2025-11-10 19:42:17'), -(17360,5803,'action created','2025-11-10 18:42:17','2025-11-10 19:42:17'), -(17361,5801,'action started via WP Cron','2025-11-10 18:59:17','2025-11-10 19:59:17'), -(17362,5804,'action created','2025-11-10 18:59:17','2025-11-10 19:59:17'), -(17363,5801,'action complete via WP Cron','2025-11-10 18:59:17','2025-11-10 19:59:17'), -(17364,5783,'action started via WP Cron','2025-11-10 19:25:17','2025-11-10 20:25:17'), -(17365,5783,'action complete via WP Cron','2025-11-10 19:25:17','2025-11-10 20:25:17'), -(17366,5805,'action created','2025-11-10 19:25:17','2025-11-10 20:25:17'), -(17367,5804,'action started via WP Cron','2025-11-10 19:59:17','2025-11-10 20:59:17'), -(17368,5806,'action created','2025-11-10 19:59:17','2025-11-10 20:59:17'), -(17369,5804,'action complete via WP Cron','2025-11-10 19:59:17','2025-11-10 20:59:17'), -(17370,5806,'action started via WP Cron','2025-11-10 20:59:17','2025-11-10 21:59:17'), -(17371,5807,'action created','2025-11-10 20:59:17','2025-11-10 21:59:17'), -(17372,5806,'action complete via WP Cron','2025-11-10 20:59:17','2025-11-10 21:59:17'), -(17373,5807,'action started via WP Cron','2025-11-10 21:59:18','2025-11-10 22:59:18'), -(17374,5808,'action created','2025-11-10 21:59:18','2025-11-10 22:59:18'), -(17375,5807,'action complete via WP Cron','2025-11-10 21:59:18','2025-11-10 22:59:18'), -(17376,5767,'action started via WP Cron','2025-11-10 22:04:17','2025-11-10 23:04:17'), -(17377,5767,'action complete via WP Cron','2025-11-10 22:04:17','2025-11-10 23:04:17'), -(17378,5809,'action created','2025-11-10 22:04:17','2025-11-10 23:04:17'), -(17379,5808,'action started via WP Cron','2025-11-10 22:59:31','2025-11-10 23:59:31'), -(17380,5810,'action created','2025-11-10 22:59:31','2025-11-10 23:59:31'), -(17381,5808,'action complete via WP Cron','2025-11-10 22:59:31','2025-11-10 23:59:31'), -(17382,5810,'action started via WP Cron','2025-11-11 00:00:17','2025-11-11 01:00:17'), -(17383,5811,'action created','2025-11-11 00:00:17','2025-11-11 01:00:17'), -(17384,5810,'action complete via WP Cron','2025-11-11 00:00:17','2025-11-11 01:00:17'), -(17385,5811,'action started via WP Cron','2025-11-11 01:00:17','2025-11-11 02:00:17'), -(17386,5812,'action created','2025-11-11 01:00:17','2025-11-11 02:00:17'), -(17387,5811,'action complete via WP Cron','2025-11-11 01:00:17','2025-11-11 02:00:17'), -(17388,5812,'action started via WP Cron','2025-11-11 02:00:17','2025-11-11 03:00:17'), -(17389,5813,'action created','2025-11-11 02:00:17','2025-11-11 03:00:17'), -(17390,5812,'action complete via WP Cron','2025-11-11 02:00:17','2025-11-11 03:00:17'), -(17391,5813,'action started via WP Cron','2025-11-11 03:00:17','2025-11-11 04:00:17'), -(17392,5814,'action created','2025-11-11 03:00:17','2025-11-11 04:00:17'), -(17393,5813,'action complete via WP Cron','2025-11-11 03:00:18','2025-11-11 04:00:18'), -(17394,5814,'action started via WP Cron','2025-11-11 04:00:18','2025-11-11 05:00:18'), -(17395,5815,'action created','2025-11-11 04:00:18','2025-11-11 05:00:18'), -(17396,5814,'action complete via WP Cron','2025-11-11 04:00:18','2025-11-11 05:00:18'), -(17397,5545,'action started via WP Cron','2025-11-11 04:07:18','2025-11-11 05:07:18'), -(17398,5545,'action complete via WP Cron','2025-11-11 04:07:18','2025-11-11 05:07:18'), -(17399,5816,'action created','2025-11-11 04:07:18','2025-11-11 05:07:18'), -(17400,5780,'action started via WP Cron','2025-11-11 05:00:18','2025-11-11 06:00:18'), -(17401,5780,'action complete via WP Cron','2025-11-11 05:00:18','2025-11-11 06:00:18'), -(17403,5815,'action started via WP Cron','2025-11-11 05:00:18','2025-11-11 06:00:18'), -(17404,5818,'action created','2025-11-11 05:00:18','2025-11-11 06:00:18'), -(17405,5815,'action complete via WP Cron','2025-11-11 05:00:18','2025-11-11 06:00:18'), -(17406,5818,'action started via WP Cron','2025-11-11 06:00:18','2025-11-11 07:00:18'), -(17407,5819,'action created','2025-11-11 06:00:18','2025-11-11 07:00:18'), -(17408,5818,'action complete via WP Cron','2025-11-11 06:00:18','2025-11-11 07:00:18'), -(17409,5819,'action started via WP Cron','2025-11-11 07:01:18','2025-11-11 08:01:18'), -(17410,5820,'action created','2025-11-11 07:01:18','2025-11-11 08:01:18'), -(17411,5819,'action complete via WP Cron','2025-11-11 07:01:18','2025-11-11 08:01:18'), -(17412,5778,'action started via WP Cron','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17413,5778,'action complete via WP Cron','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17414,5821,'action created','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17415,5779,'action started via WP Cron','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17416,5779,'action complete via WP Cron','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17417,5822,'action created','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17418,5782,'action started via WP Cron','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17420,5823,'action created','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17421,5824,'action created','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17422,5782,'action complete via WP Cron','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17423,5825,'action created','2025-11-11 07:24:18','2025-11-11 08:24:18'), -(17424,5824,'action started via WP Cron','2025-11-11 07:25:18','2025-11-11 08:25:18'), -(17425,5824,'action complete via WP Cron','2025-11-11 07:25:18','2025-11-11 08:25:18'), -(17426,5805,'action started via WP Cron','2025-11-11 07:25:18','2025-11-11 08:25:18'), -(17427,5805,'action complete via WP Cron','2025-11-11 07:25:18','2025-11-11 08:25:18'), -(17428,5826,'action created','2025-11-11 07:25:18','2025-11-11 08:25:18'), -(17429,5820,'action started via WP Cron','2025-11-11 08:01:18','2025-11-11 09:01:18'), -(17430,5827,'action created','2025-11-11 08:01:18','2025-11-11 09:01:18'), -(17431,5820,'action complete via WP Cron','2025-11-11 08:01:18','2025-11-11 09:01:18'), -(17432,5827,'action started via WP Cron','2025-11-11 09:01:18','2025-11-11 10:01:18'), -(17433,5828,'action created','2025-11-11 09:01:18','2025-11-11 10:01:18'), -(17434,5827,'action complete via WP Cron','2025-11-11 09:01:18','2025-11-11 10:01:18'), -(17435,5828,'action started via WP Cron','2025-11-11 10:01:18','2025-11-11 11:01:18'), -(17436,5829,'action created','2025-11-11 10:01:18','2025-11-11 11:01:18'), -(17437,5828,'action complete via WP Cron','2025-11-11 10:01:18','2025-11-11 11:01:18'), -(17438,5787,'action started via WP Cron','2025-11-11 10:22:18','2025-11-11 11:22:18'), -(17439,5787,'action complete via WP Cron','2025-11-11 10:22:18','2025-11-11 11:22:18'), -(17440,5830,'action created','2025-11-11 10:22:18','2025-11-11 11:22:18'), -(17441,5788,'action started via WP Cron','2025-11-11 10:24:18','2025-11-11 11:24:18'), -(17442,5788,'action complete via WP Cron','2025-11-11 10:24:18','2025-11-11 11:24:18'), -(17443,5831,'action created','2025-11-11 10:24:18','2025-11-11 11:24:18'), -(17444,5829,'action started via WP Cron','2025-11-11 11:01:18','2025-11-11 12:01:18'), -(17445,5832,'action created','2025-11-11 11:01:18','2025-11-11 12:01:18'), -(17446,5829,'action complete via WP Cron','2025-11-11 11:01:18','2025-11-11 12:01:18'), -(17447,5832,'action started via WP Cron','2025-11-11 12:01:18','2025-11-11 13:01:18'), -(17448,5833,'action created','2025-11-11 12:01:18','2025-11-11 13:01:18'), -(17449,5832,'action complete via WP Cron','2025-11-11 12:01:18','2025-11-11 13:01:18'), -(17450,5833,'action started via WP Cron','2025-11-11 13:01:18','2025-11-11 14:01:18'), -(17451,5834,'action created','2025-11-11 13:01:18','2025-11-11 14:01:18'), -(17452,5833,'action complete via WP Cron','2025-11-11 13:01:18','2025-11-11 14:01:18'), -(17453,5834,'action started via WP Cron','2025-11-11 14:01:18','2025-11-11 15:01:18'), -(17454,5835,'action created','2025-11-11 14:01:18','2025-11-11 15:01:18'), -(17455,5834,'action complete via WP Cron','2025-11-11 14:01:18','2025-11-11 15:01:18'), -(17456,5835,'action started via WP Cron','2025-11-11 15:02:18','2025-11-11 16:02:18'), -(17457,5836,'action created','2025-11-11 15:02:18','2025-11-11 16:02:18'), -(17458,5835,'action complete via WP Cron','2025-11-11 15:02:18','2025-11-11 16:02:18'), -(17459,5836,'action started via WP Cron','2025-11-11 16:02:18','2025-11-11 17:02:18'), -(17460,5837,'action created','2025-11-11 16:02:18','2025-11-11 17:02:18'), -(17461,5836,'action complete via WP Cron','2025-11-11 16:02:18','2025-11-11 17:02:18'), -(17462,5837,'action started via WP Cron','2025-11-11 17:02:18','2025-11-11 18:02:18'), -(17463,5838,'action created','2025-11-11 17:02:18','2025-11-11 18:02:18'), -(17464,5837,'action complete via WP Cron','2025-11-11 17:02:18','2025-11-11 18:02:18'), -(17465,5838,'action started via WP Cron','2025-11-11 18:02:18','2025-11-11 19:02:18'), -(17466,5839,'action created','2025-11-11 18:02:18','2025-11-11 19:02:18'), -(17467,5838,'action complete via WP Cron','2025-11-11 18:02:18','2025-11-11 19:02:18'), -(17468,5802,'action started via WP Cron','2025-11-11 18:42:18','2025-11-11 19:42:18'), -(17469,5802,'action complete via WP Cron','2025-11-11 18:42:18','2025-11-11 19:42:18'), -(17470,5840,'action created','2025-11-11 18:42:18','2025-11-11 19:42:18'), -(17471,5803,'action started via WP Cron','2025-11-11 18:42:18','2025-11-11 19:42:18'), -(17472,5803,'action complete via WP Cron','2025-11-11 18:42:18','2025-11-11 19:42:18'), -(17473,5841,'action created','2025-11-11 18:42:18','2025-11-11 19:42:18'), -(17474,5839,'action started via WP Cron','2025-11-11 19:03:18','2025-11-11 20:03:18'), -(17475,5842,'action created','2025-11-11 19:03:18','2025-11-11 20:03:18'), -(17476,5839,'action complete via WP Cron','2025-11-11 19:03:18','2025-11-11 20:03:18'), -(17477,5826,'action started via WP Cron','2025-11-11 19:25:18','2025-11-11 20:25:18'), -(17478,5826,'action complete via WP Cron','2025-11-11 19:25:18','2025-11-11 20:25:18'), -(17479,5843,'action created','2025-11-11 19:25:18','2025-11-11 20:25:18'), -(17480,5842,'action started via WP Cron','2025-11-11 20:03:18','2025-11-11 21:03:18'), -(17481,5844,'action created','2025-11-11 20:03:18','2025-11-11 21:03:18'), -(17482,5842,'action complete via WP Cron','2025-11-11 20:03:18','2025-11-11 21:03:18'), -(17483,5844,'action started via WP Cron','2025-11-11 21:03:18','2025-11-11 22:03:18'), -(17484,5845,'action created','2025-11-11 21:03:18','2025-11-11 22:03:18'), -(17485,5844,'action complete via WP Cron','2025-11-11 21:03:18','2025-11-11 22:03:18'), -(17486,5845,'action started via WP Cron','2025-11-11 22:03:18','2025-11-11 23:03:18'), -(17487,5846,'action created','2025-11-11 22:03:18','2025-11-11 23:03:18'), -(17488,5845,'action complete via WP Cron','2025-11-11 22:03:18','2025-11-11 23:03:18'), -(17489,5809,'action started via WP Cron','2025-11-11 22:04:18','2025-11-11 23:04:18'), -(17490,5809,'action complete via WP Cron','2025-11-11 22:04:18','2025-11-11 23:04:18'), -(17491,5847,'action created','2025-11-11 22:04:18','2025-11-11 23:04:18'), -(17492,5846,'action started via WP Cron','2025-11-11 23:03:18','2025-11-12 00:03:18'), -(17493,5848,'action created','2025-11-11 23:03:18','2025-11-12 00:03:18'), -(17494,5846,'action complete via WP Cron','2025-11-11 23:03:18','2025-11-12 00:03:18'), -(17495,5848,'action started via WP Cron','2025-11-12 00:03:18','2025-11-12 01:03:18'), -(17496,5849,'action created','2025-11-12 00:03:18','2025-11-12 01:03:18'), -(17497,5848,'action complete via WP Cron','2025-11-12 00:03:18','2025-11-12 01:03:18'), -(17498,5849,'action started via WP Cron','2025-11-12 01:03:18','2025-11-12 02:03:18'), -(17499,5850,'action created','2025-11-12 01:03:18','2025-11-12 02:03:18'), -(17500,5849,'action complete via WP Cron','2025-11-12 01:03:18','2025-11-12 02:03:18'), -(17501,5850,'action started via WP Cron','2025-11-12 02:03:18','2025-11-12 03:03:18'), -(17502,5851,'action created','2025-11-12 02:03:18','2025-11-12 03:03:18'), -(17503,5850,'action complete via WP Cron','2025-11-12 02:03:18','2025-11-12 03:03:18'), -(17504,5851,'action started via WP Cron','2025-11-12 03:03:18','2025-11-12 04:03:18'), -(17505,5852,'action created','2025-11-12 03:03:18','2025-11-12 04:03:18'), -(17506,5851,'action complete via WP Cron','2025-11-12 03:03:18','2025-11-12 04:03:18'), -(17507,5852,'action started via WP Cron','2025-11-12 04:03:18','2025-11-12 05:03:18'), -(17508,5853,'action created','2025-11-12 04:03:18','2025-11-12 05:03:18'), -(17509,5852,'action complete via WP Cron','2025-11-12 04:03:18','2025-11-12 05:03:18'), -(17510,5823,'action started via WP Cron','2025-11-12 05:00:18','2025-11-12 06:00:18'), -(17511,5823,'action complete via WP Cron','2025-11-12 05:00:18','2025-11-12 06:00:18'), -(17513,5853,'action started via WP Cron','2025-11-12 05:03:18','2025-11-12 06:03:18'), -(17514,5855,'action created','2025-11-12 05:03:18','2025-11-12 06:03:18'), -(17515,5853,'action complete via WP Cron','2025-11-12 05:03:18','2025-11-12 06:03:18'), -(17516,5855,'action started via WP Cron','2025-11-12 06:03:18','2025-11-12 07:03:18'), -(17517,5856,'action created','2025-11-12 06:03:18','2025-11-12 07:03:18'), -(17518,5855,'action complete via WP Cron','2025-11-12 06:03:18','2025-11-12 07:03:18'), -(17519,5856,'action started via WP Cron','2025-11-12 07:03:18','2025-11-12 08:03:18'), -(17520,5857,'action created','2025-11-12 07:03:18','2025-11-12 08:03:18'), -(17521,5856,'action complete via WP Cron','2025-11-12 07:03:18','2025-11-12 08:03:18'), -(17522,5821,'action started via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17523,5821,'action complete via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17524,5858,'action created','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17525,5822,'action started via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17526,5822,'action complete via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17527,5859,'action created','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17528,5843,'action started via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17529,5843,'action complete via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17530,5860,'action created','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17531,5825,'action started via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17533,5861,'action created','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17534,5862,'action created','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17535,5825,'action complete via WP Cron','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17536,5863,'action created','2025-11-12 07:25:18','2025-11-12 08:25:18'), -(17537,5862,'action started via WP Cron','2025-11-12 07:26:18','2025-11-12 08:26:18'), -(17538,5862,'action complete via WP Cron','2025-11-12 07:26:18','2025-11-12 08:26:18'), -(17539,5857,'action started via WP Cron','2025-11-12 08:03:18','2025-11-12 09:03:18'), -(17540,5864,'action created','2025-11-12 08:03:18','2025-11-12 09:03:18'), -(17541,5857,'action complete via WP Cron','2025-11-12 08:03:18','2025-11-12 09:03:18'), -(17542,5864,'action started via WP Cron','2025-11-12 09:03:18','2025-11-12 10:03:18'), -(17543,5865,'action created','2025-11-12 09:03:18','2025-11-12 10:03:18'), -(17544,5864,'action complete via WP Cron','2025-11-12 09:03:18','2025-11-12 10:03:18'), -(17545,5865,'action started via WP Cron','2025-11-12 10:03:18','2025-11-12 11:03:18'), -(17546,5866,'action created','2025-11-12 10:03:18','2025-11-12 11:03:18'), -(17547,5865,'action complete via WP Cron','2025-11-12 10:03:18','2025-11-12 11:03:18'), -(17548,5830,'action started via WP Cron','2025-11-12 10:22:18','2025-11-12 11:22:18'), -(17549,5830,'action complete via WP Cron','2025-11-12 10:22:18','2025-11-12 11:22:18'), -(17550,5867,'action created','2025-11-12 10:22:18','2025-11-12 11:22:18'), -(17551,5831,'action started via WP Cron','2025-11-12 10:24:18','2025-11-12 11:24:18'), -(17552,5831,'action complete via WP Cron','2025-11-12 10:24:18','2025-11-12 11:24:18'), -(17553,5868,'action created','2025-11-12 10:24:18','2025-11-12 11:24:18'), -(17554,5866,'action started via WP Cron','2025-11-12 11:03:18','2025-11-12 12:03:18'), -(17555,5869,'action created','2025-11-12 11:03:18','2025-11-12 12:03:18'), -(17556,5866,'action complete via WP Cron','2025-11-12 11:03:18','2025-11-12 12:03:18'), -(17557,5869,'action started via WP Cron','2025-11-12 12:03:18','2025-11-12 13:03:18'), -(17558,5870,'action created','2025-11-12 12:03:18','2025-11-12 13:03:18'), -(17559,5869,'action complete via WP Cron','2025-11-12 12:03:18','2025-11-12 13:03:18'), -(17560,5870,'action started via WP Cron','2025-11-12 13:03:18','2025-11-12 14:03:18'), -(17561,5871,'action created','2025-11-12 13:03:18','2025-11-12 14:03:18'), -(17562,5870,'action complete via WP Cron','2025-11-12 13:03:18','2025-11-12 14:03:18'), -(17563,5871,'action started via WP Cron','2025-11-12 14:03:18','2025-11-12 15:03:18'), -(17564,5872,'action created','2025-11-12 14:03:18','2025-11-12 15:03:18'), -(17565,5871,'action complete via WP Cron','2025-11-12 14:03:18','2025-11-12 15:03:18'), -(17566,5872,'action started via WP Cron','2025-11-12 15:03:18','2025-11-12 16:03:18'), -(17567,5873,'action created','2025-11-12 15:03:18','2025-11-12 16:03:18'), -(17568,5872,'action complete via WP Cron','2025-11-12 15:03:18','2025-11-12 16:03:18'), -(17569,5873,'action started via WP Cron','2025-11-12 16:03:18','2025-11-12 17:03:18'), -(17570,5874,'action created','2025-11-12 16:03:18','2025-11-12 17:03:18'), -(17571,5873,'action complete via WP Cron','2025-11-12 16:03:18','2025-11-12 17:03:18'), -(17572,5874,'action started via WP Cron','2025-11-12 17:03:18','2025-11-12 18:03:18'), -(17573,5875,'action created','2025-11-12 17:03:18','2025-11-12 18:03:18'), -(17574,5874,'action complete via WP Cron','2025-11-12 17:03:18','2025-11-12 18:03:18'), -(17575,5875,'action started via WP Cron','2025-11-12 18:03:18','2025-11-12 19:03:18'), -(17576,5876,'action created','2025-11-12 18:03:18','2025-11-12 19:03:18'), -(17577,5875,'action complete via WP Cron','2025-11-12 18:03:18','2025-11-12 19:03:18'), -(17578,5840,'action started via WP Cron','2025-11-12 18:42:18','2025-11-12 19:42:18'), -(17579,5840,'action complete via WP Cron','2025-11-12 18:42:18','2025-11-12 19:42:18'), -(17580,5877,'action created','2025-11-12 18:42:18','2025-11-12 19:42:18'), -(17581,5841,'action started via WP Cron','2025-11-12 18:42:18','2025-11-12 19:42:18'), -(17582,5841,'action complete via WP Cron','2025-11-12 18:42:18','2025-11-12 19:42:18'), -(17583,5878,'action created','2025-11-12 18:42:18','2025-11-12 19:42:18'), -(17584,5876,'action started via WP Cron','2025-11-12 19:04:18','2025-11-12 20:04:18'), -(17585,5879,'action created','2025-11-12 19:04:18','2025-11-12 20:04:18'), -(17586,5876,'action complete via WP Cron','2025-11-12 19:04:18','2025-11-12 20:04:18'), -(17587,5860,'action started via WP Cron','2025-11-12 19:25:18','2025-11-12 20:25:18'), -(17588,5860,'action complete via WP Cron','2025-11-12 19:25:18','2025-11-12 20:25:18'), -(17589,5880,'action created','2025-11-12 19:25:18','2025-11-12 20:25:18'), -(17590,5879,'action started via WP Cron','2025-11-12 20:04:18','2025-11-12 21:04:18'), -(17591,5881,'action created','2025-11-12 20:04:18','2025-11-12 21:04:18'), -(17592,5879,'action complete via WP Cron','2025-11-12 20:04:18','2025-11-12 21:04:18'), -(17593,5881,'action started via WP Cron','2025-11-12 21:04:18','2025-11-12 22:04:18'), -(17594,5882,'action created','2025-11-12 21:04:18','2025-11-12 22:04:18'), -(17595,5881,'action complete via WP Cron','2025-11-12 21:04:18','2025-11-12 22:04:18'), -(17596,5847,'action started via WP Cron','2025-11-12 22:04:18','2025-11-12 23:04:18'), -(17597,5847,'action complete via WP Cron','2025-11-12 22:04:18','2025-11-12 23:04:18'), -(17598,5883,'action created','2025-11-12 22:04:18','2025-11-12 23:04:18'), -(17599,5882,'action started via WP Cron','2025-11-12 22:04:18','2025-11-12 23:04:18'), -(17600,5884,'action created','2025-11-12 22:04:18','2025-11-12 23:04:18'), -(17601,5882,'action complete via WP Cron','2025-11-12 22:04:18','2025-11-12 23:04:18'), -(17602,5884,'action started via WP Cron','2025-11-12 23:04:18','2025-11-13 00:04:18'), -(17603,5885,'action created','2025-11-12 23:04:18','2025-11-13 00:04:18'), -(17604,5884,'action complete via WP Cron','2025-11-12 23:04:18','2025-11-13 00:04:18'), -(17605,5885,'action started via WP Cron','2025-11-13 00:04:18','2025-11-13 01:04:18'), -(17606,5886,'action created','2025-11-13 00:04:18','2025-11-13 01:04:18'), -(17607,5885,'action complete via WP Cron','2025-11-13 00:04:18','2025-11-13 01:04:18'), -(17608,5886,'action started via WP Cron','2025-11-13 01:04:18','2025-11-13 02:04:18'), -(17609,5887,'action created','2025-11-13 01:04:18','2025-11-13 02:04:18'), -(17610,5886,'action complete via WP Cron','2025-11-13 01:04:18','2025-11-13 02:04:18'), -(17611,5887,'action started via WP Cron','2025-11-13 02:04:18','2025-11-13 03:04:18'), -(17612,5888,'action created','2025-11-13 02:04:18','2025-11-13 03:04:18'), -(17613,5887,'action complete via WP Cron','2025-11-13 02:04:18','2025-11-13 03:04:18'), -(17614,5888,'action started via WP Cron','2025-11-13 03:04:18','2025-11-13 04:04:18'), -(17615,5889,'action created','2025-11-13 03:04:18','2025-11-13 04:04:18'), -(17616,5888,'action complete via WP Cron','2025-11-13 03:04:18','2025-11-13 04:04:18'), -(17617,5889,'action started via WP Cron','2025-11-13 04:04:18','2025-11-13 05:04:18'), -(17618,5890,'action created','2025-11-13 04:04:18','2025-11-13 05:04:18'), -(17619,5889,'action complete via WP Cron','2025-11-13 04:04:18','2025-11-13 05:04:18'), -(17620,5861,'action started via WP Cron','2025-11-13 05:01:18','2025-11-13 06:01:18'), -(17621,5861,'action complete via WP Cron','2025-11-13 05:01:18','2025-11-13 06:01:18'), -(17623,5890,'action started via WP Cron','2025-11-13 05:04:18','2025-11-13 06:04:18'), -(17624,5892,'action created','2025-11-13 05:04:18','2025-11-13 06:04:18'), -(17625,5890,'action complete via WP Cron','2025-11-13 05:04:18','2025-11-13 06:04:18'), -(17626,5892,'action started via WP Cron','2025-11-13 06:04:18','2025-11-13 07:04:18'), -(17627,5893,'action created','2025-11-13 06:04:18','2025-11-13 07:04:18'), -(17628,5892,'action complete via WP Cron','2025-11-13 06:04:18','2025-11-13 07:04:18'), -(17629,5893,'action started via WP Cron','2025-11-13 07:04:18','2025-11-13 08:04:18'), -(17630,5894,'action created','2025-11-13 07:04:18','2025-11-13 08:04:18'), -(17631,5893,'action complete via WP Cron','2025-11-13 07:04:18','2025-11-13 08:04:18'), -(17632,5858,'action started via WP Cron','2025-11-13 07:25:18','2025-11-13 08:25:18'), -(17633,5858,'action complete via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17634,5895,'action created','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17635,5859,'action started via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17636,5859,'action complete via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17637,5896,'action created','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17638,5880,'action started via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17639,5880,'action complete via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17640,5897,'action created','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17641,5863,'action started via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17643,5898,'action created','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17644,5899,'action created','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17645,5863,'action complete via WP Cron','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17646,5900,'action created','2025-11-13 07:25:19','2025-11-13 08:25:19'), -(17647,5899,'action started via WP Cron','2025-11-13 07:26:18','2025-11-13 08:26:18'), -(17648,5899,'action complete via WP Cron','2025-11-13 07:26:18','2025-11-13 08:26:18'), -(17649,5894,'action started via WP Cron','2025-11-13 08:04:18','2025-11-13 09:04:18'), -(17650,5901,'action created','2025-11-13 08:04:18','2025-11-13 09:04:18'), -(17651,5894,'action complete via WP Cron','2025-11-13 08:04:18','2025-11-13 09:04:18'), -(17652,5901,'action started via WP Cron','2025-11-13 09:04:18','2025-11-13 10:04:18'), -(17653,5902,'action created','2025-11-13 09:04:18','2025-11-13 10:04:18'), -(17654,5901,'action complete via WP Cron','2025-11-13 09:04:18','2025-11-13 10:04:18'), -(17655,5902,'action started via WP Cron','2025-11-13 10:04:18','2025-11-13 11:04:18'), -(17656,5903,'action created','2025-11-13 10:04:18','2025-11-13 11:04:18'), -(17657,5902,'action complete via WP Cron','2025-11-13 10:04:18','2025-11-13 11:04:18'), -(17658,5867,'action started via WP Cron','2025-11-13 10:22:18','2025-11-13 11:22:18'), -(17659,5867,'action complete via WP Cron','2025-11-13 10:22:18','2025-11-13 11:22:18'), -(17660,5904,'action created','2025-11-13 10:22:18','2025-11-13 11:22:18'), -(17661,5868,'action started via WP Cron','2025-11-13 10:24:18','2025-11-13 11:24:18'), -(17662,5868,'action complete via WP Cron','2025-11-13 10:24:18','2025-11-13 11:24:18'), -(17663,5905,'action created','2025-11-13 10:24:18','2025-11-13 11:24:18'), -(17664,5903,'action started via WP Cron','2025-11-13 11:04:18','2025-11-13 12:04:18'), -(17665,5906,'action created','2025-11-13 11:04:18','2025-11-13 12:04:18'), -(17666,5903,'action complete via WP Cron','2025-11-13 11:04:18','2025-11-13 12:04:18'), -(17667,5906,'action started via WP Cron','2025-11-13 12:05:18','2025-11-13 13:05:18'), -(17668,5907,'action created','2025-11-13 12:05:18','2025-11-13 13:05:18'), -(17669,5906,'action complete via WP Cron','2025-11-13 12:05:18','2025-11-13 13:05:18'), -(17670,5907,'action started via WP Cron','2025-11-13 13:05:18','2025-11-13 14:05:18'), -(17671,5908,'action created','2025-11-13 13:05:18','2025-11-13 14:05:18'), -(17672,5907,'action complete via WP Cron','2025-11-13 13:05:18','2025-11-13 14:05:18'), -(17673,5908,'action started via WP Cron','2025-11-13 14:05:18','2025-11-13 15:05:18'), -(17674,5909,'action created','2025-11-13 14:05:18','2025-11-13 15:05:18'), -(17675,5908,'action complete via WP Cron','2025-11-13 14:05:18','2025-11-13 15:05:18'), -(17676,5909,'action started via WP Cron','2025-11-13 15:05:18','2025-11-13 16:05:18'), -(17677,5910,'action created','2025-11-13 15:05:18','2025-11-13 16:05:18'), -(17678,5909,'action complete via WP Cron','2025-11-13 15:05:18','2025-11-13 16:05:18'), -(17679,5910,'action started via WP Cron','2025-11-13 16:06:18','2025-11-13 17:06:18'), -(17680,5911,'action created','2025-11-13 16:06:18','2025-11-13 17:06:18'), -(17681,5910,'action complete via WP Cron','2025-11-13 16:06:19','2025-11-13 17:06:19'), -(17682,5911,'action started via WP Cron','2025-11-13 17:06:18','2025-11-13 18:06:18'), -(17683,5912,'action created','2025-11-13 17:06:18','2025-11-13 18:06:18'), -(17684,5911,'action complete via WP Cron','2025-11-13 17:06:19','2025-11-13 18:06:19'), -(17685,5912,'action started via WP Cron','2025-11-13 18:06:19','2025-11-13 19:06:19'), -(17686,5913,'action created','2025-11-13 18:06:19','2025-11-13 19:06:19'), -(17687,5912,'action complete via WP Cron','2025-11-13 18:06:19','2025-11-13 19:06:19'), -(17688,5877,'action started via WP Cron','2025-11-13 18:42:18','2025-11-13 19:42:18'), -(17689,5877,'action complete via WP Cron','2025-11-13 18:42:18','2025-11-13 19:42:18'), -(17690,5914,'action created','2025-11-13 18:42:18','2025-11-13 19:42:18'), -(17691,5878,'action started via WP Cron','2025-11-13 18:42:18','2025-11-13 19:42:18'), -(17692,5878,'action complete via WP Cron','2025-11-13 18:42:18','2025-11-13 19:42:18'), -(17693,5915,'action created','2025-11-13 18:42:18','2025-11-13 19:42:18'), -(17694,5913,'action started via WP Cron','2025-11-13 19:07:18','2025-11-13 20:07:18'), -(17695,5916,'action created','2025-11-13 19:07:18','2025-11-13 20:07:18'), -(17696,5913,'action complete via WP Cron','2025-11-13 19:07:18','2025-11-13 20:07:18'), -(17697,5897,'action started via WP Cron','2025-11-13 19:26:18','2025-11-13 20:26:18'), -(17698,5897,'action complete via WP Cron','2025-11-13 19:26:18','2025-11-13 20:26:18'), -(17699,5917,'action created','2025-11-13 19:26:18','2025-11-13 20:26:18'), -(17700,5916,'action started via WP Cron','2025-11-13 20:07:18','2025-11-13 21:07:18'), -(17701,5918,'action created','2025-11-13 20:07:18','2025-11-13 21:07:18'), -(17702,5916,'action complete via WP Cron','2025-11-13 20:07:18','2025-11-13 21:07:18'), -(17703,5918,'action started via WP Cron','2025-11-13 21:07:18','2025-11-13 22:07:18'), -(17704,5919,'action created','2025-11-13 21:07:18','2025-11-13 22:07:18'), -(17705,5918,'action complete via WP Cron','2025-11-13 21:07:18','2025-11-13 22:07:18'), -(17706,5883,'action started via WP Cron','2025-11-13 22:04:18','2025-11-13 23:04:18'), -(17707,5883,'action complete via WP Cron','2025-11-13 22:04:18','2025-11-13 23:04:18'), -(17708,5920,'action created','2025-11-13 22:04:18','2025-11-13 23:04:18'), -(17709,5919,'action started via WP Cron','2025-11-13 22:07:18','2025-11-13 23:07:18'), -(17710,5921,'action created','2025-11-13 22:07:18','2025-11-13 23:07:18'), -(17711,5919,'action complete via WP Cron','2025-11-13 22:07:18','2025-11-13 23:07:18'), -(17712,5921,'action started via WP Cron','2025-11-13 23:07:18','2025-11-14 00:07:18'), -(17713,5922,'action created','2025-11-13 23:07:18','2025-11-14 00:07:18'), -(17714,5921,'action complete via WP Cron','2025-11-13 23:07:18','2025-11-14 00:07:18'), -(17715,5922,'action started via WP Cron','2025-11-14 00:07:18','2025-11-14 01:07:18'), -(17716,5923,'action created','2025-11-14 00:07:18','2025-11-14 01:07:18'), -(17717,5922,'action complete via WP Cron','2025-11-14 00:07:18','2025-11-14 01:07:18'), -(17718,5923,'action started via WP Cron','2025-11-14 01:07:18','2025-11-14 02:07:18'), -(17719,5924,'action created','2025-11-14 01:07:18','2025-11-14 02:07:18'), -(17720,5923,'action complete via WP Cron','2025-11-14 01:07:18','2025-11-14 02:07:18'), -(17721,5924,'action started via WP Cron','2025-11-14 02:07:18','2025-11-14 03:07:18'), -(17722,5925,'action created','2025-11-14 02:07:18','2025-11-14 03:07:18'), -(17723,5924,'action complete via WP Cron','2025-11-14 02:07:18','2025-11-14 03:07:18'), -(17724,5925,'action started via WP Cron','2025-11-14 03:07:18','2025-11-14 04:07:18'), -(17725,5926,'action created','2025-11-14 03:07:18','2025-11-14 04:07:18'), -(17726,5925,'action complete via WP Cron','2025-11-14 03:07:19','2025-11-14 04:07:19'), -(17727,5926,'action started via WP Cron','2025-11-14 04:07:18','2025-11-14 05:07:18'), -(17728,5927,'action created','2025-11-14 04:07:18','2025-11-14 05:07:18'), -(17729,5926,'action complete via WP Cron','2025-11-14 04:07:19','2025-11-14 05:07:19'), -(17730,5898,'action started via WP Cron','2025-11-14 05:00:19','2025-11-14 06:00:19'), -(17731,5898,'action complete via WP Cron','2025-11-14 05:00:19','2025-11-14 06:00:19'), -(17733,5927,'action started via WP Cron','2025-11-14 05:07:19','2025-11-14 06:07:19'), -(17734,5929,'action created','2025-11-14 05:07:19','2025-11-14 06:07:19'), -(17735,5927,'action complete via WP Cron','2025-11-14 05:07:19','2025-11-14 06:07:19'), -(17736,5929,'action started via WP Cron','2025-11-14 06:07:19','2025-11-14 07:07:19'), -(17737,5930,'action created','2025-11-14 06:07:19','2025-11-14 07:07:19'), -(17738,5929,'action complete via WP Cron','2025-11-14 06:07:19','2025-11-14 07:07:19'), -(17739,5930,'action started via WP Cron','2025-11-14 07:07:19','2025-11-14 08:07:19'), -(17740,5931,'action created','2025-11-14 07:07:19','2025-11-14 08:07:19'), -(17741,5930,'action complete via WP Cron','2025-11-14 07:07:19','2025-11-14 08:07:19'), -(17742,5895,'action started via WP Cron','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17743,5895,'action complete via WP Cron','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17744,5932,'action created','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17745,5896,'action started via WP Cron','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17746,5896,'action complete via WP Cron','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17747,5933,'action created','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17748,5900,'action started via WP Cron','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17750,5934,'action created','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17751,5935,'action created','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17752,5900,'action complete via WP Cron','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17753,5936,'action created','2025-11-14 07:25:19','2025-11-14 08:25:19'), -(17754,5935,'action started via WP Cron','2025-11-14 07:26:19','2025-11-14 08:26:19'), -(17755,5935,'action complete via WP Cron','2025-11-14 07:26:19','2025-11-14 08:26:19'), -(17756,5917,'action started via WP Cron','2025-11-14 07:26:19','2025-11-14 08:26:19'), -(17757,5917,'action complete via WP Cron','2025-11-14 07:26:19','2025-11-14 08:26:19'), -(17758,5937,'action created','2025-11-14 07:26:19','2025-11-14 08:26:19'), -(17759,5931,'action started via WP Cron','2025-11-14 08:07:19','2025-11-14 09:07:19'), -(17760,5938,'action created','2025-11-14 08:07:19','2025-11-14 09:07:19'), -(17761,5931,'action complete via WP Cron','2025-11-14 08:07:19','2025-11-14 09:07:19'), -(17762,5938,'action started via WP Cron','2025-11-14 09:07:19','2025-11-14 10:07:19'), -(17763,5939,'action created','2025-11-14 09:07:19','2025-11-14 10:07:19'), -(17764,5938,'action complete via WP Cron','2025-11-14 09:07:19','2025-11-14 10:07:19'), -(17765,5939,'action started via WP Cron','2025-11-14 10:07:19','2025-11-14 11:07:19'), -(17766,5940,'action created','2025-11-14 10:07:19','2025-11-14 11:07:19'), -(17767,5939,'action complete via WP Cron','2025-11-14 10:07:19','2025-11-14 11:07:19'), -(17768,5904,'action started via WP Cron','2025-11-14 10:22:19','2025-11-14 11:22:19'), -(17769,5904,'action complete via WP Cron','2025-11-14 10:22:19','2025-11-14 11:22:19'), -(17770,5941,'action created','2025-11-14 10:22:19','2025-11-14 11:22:19'), -(17771,5905,'action started via WP Cron','2025-11-14 10:24:27','2025-11-14 11:24:27'), -(17772,5905,'action complete via WP Cron','2025-11-14 10:24:27','2025-11-14 11:24:27'), -(17773,5942,'action created','2025-11-14 10:24:27','2025-11-14 11:24:27'), -(17774,5940,'action started via WP Cron','2025-11-14 11:07:19','2025-11-14 12:07:19'), -(17775,5943,'action created','2025-11-14 11:07:19','2025-11-14 12:07:19'), -(17776,5940,'action complete via WP Cron','2025-11-14 11:07:19','2025-11-14 12:07:19'), -(17777,5943,'action started via WP Cron','2025-11-14 12:07:19','2025-11-14 13:07:19'), -(17778,5944,'action created','2025-11-14 12:07:19','2025-11-14 13:07:19'), -(17779,5943,'action complete via WP Cron','2025-11-14 12:07:19','2025-11-14 13:07:19'), -(17780,5944,'action started via WP Cron','2025-11-14 13:07:19','2025-11-14 14:07:19'), -(17781,5945,'action created','2025-11-14 13:07:19','2025-11-14 14:07:19'), -(17782,5944,'action complete via WP Cron','2025-11-14 13:07:19','2025-11-14 14:07:19'), -(17783,5945,'action started via WP Cron','2025-11-14 14:07:19','2025-11-14 15:07:19'), -(17784,5946,'action created','2025-11-14 14:07:19','2025-11-14 15:07:19'), -(17785,5945,'action complete via WP Cron','2025-11-14 14:07:19','2025-11-14 15:07:19'), -(17786,5946,'action started via WP Cron','2025-11-14 15:07:19','2025-11-14 16:07:19'), -(17787,5947,'action created','2025-11-14 15:07:19','2025-11-14 16:07:19'), -(17788,5946,'action complete via WP Cron','2025-11-14 15:07:19','2025-11-14 16:07:19'), -(17789,5947,'action started via WP Cron','2025-11-14 16:07:19','2025-11-14 17:07:19'), -(17790,5948,'action created','2025-11-14 16:07:19','2025-11-14 17:07:19'), -(17791,5947,'action complete via WP Cron','2025-11-14 16:07:19','2025-11-14 17:07:19'), -(17792,5948,'action started via WP Cron','2025-11-14 17:08:19','2025-11-14 18:08:19'), -(17793,5949,'action created','2025-11-14 17:08:19','2025-11-14 18:08:19'), -(17794,5948,'action complete via WP Cron','2025-11-14 17:08:19','2025-11-14 18:08:19'), -(17795,5949,'action started via WP Cron','2025-11-14 18:08:19','2025-11-14 19:08:19'), -(17796,5950,'action created','2025-11-14 18:08:19','2025-11-14 19:08:19'), -(17797,5949,'action complete via WP Cron','2025-11-14 18:08:19','2025-11-14 19:08:19'), -(17798,5914,'action started via WP Cron','2025-11-14 18:42:19','2025-11-14 19:42:19'), -(17799,5914,'action complete via WP Cron','2025-11-14 18:42:19','2025-11-14 19:42:19'), -(17800,5951,'action created','2025-11-14 18:42:19','2025-11-14 19:42:19'), -(17801,5915,'action started via WP Cron','2025-11-14 18:42:19','2025-11-14 19:42:19'), -(17802,5915,'action complete via WP Cron','2025-11-14 18:42:19','2025-11-14 19:42:19'), -(17803,5952,'action created','2025-11-14 18:42:19','2025-11-14 19:42:19'), -(17804,5950,'action started via WP Cron','2025-11-14 19:08:19','2025-11-14 20:08:19'), -(17805,5953,'action created','2025-11-14 19:08:19','2025-11-14 20:08:19'), -(17806,5950,'action complete via WP Cron','2025-11-14 19:08:19','2025-11-14 20:08:19'), -(17807,5937,'action started via WP Cron','2025-11-14 19:26:19','2025-11-14 20:26:19'), -(17808,5937,'action complete via WP Cron','2025-11-14 19:26:19','2025-11-14 20:26:19'), -(17809,5954,'action created','2025-11-14 19:26:19','2025-11-14 20:26:19'), -(17810,5953,'action started via WP Cron','2025-11-14 20:08:19','2025-11-14 21:08:19'), -(17811,5955,'action created','2025-11-14 20:08:19','2025-11-14 21:08:19'), -(17812,5953,'action complete via WP Cron','2025-11-14 20:08:19','2025-11-14 21:08:19'), -(17813,5955,'action started via WP Cron','2025-11-14 21:08:19','2025-11-14 22:08:19'), -(17814,5956,'action created','2025-11-14 21:08:19','2025-11-14 22:08:19'), -(17815,5955,'action complete via WP Cron','2025-11-14 21:08:19','2025-11-14 22:08:19'), -(17816,5920,'action started via WP Cron','2025-11-14 22:04:19','2025-11-14 23:04:19'), -(17817,5920,'action complete via WP Cron','2025-11-14 22:04:19','2025-11-14 23:04:19'), -(17818,5957,'action created','2025-11-14 22:04:19','2025-11-14 23:04:19'), -(17819,5956,'action started via WP Cron','2025-11-14 22:08:19','2025-11-14 23:08:19'), -(17820,5958,'action created','2025-11-14 22:08:19','2025-11-14 23:08:19'), -(17821,5956,'action complete via WP Cron','2025-11-14 22:08:19','2025-11-14 23:08:19'), -(17822,5958,'action started via WP Cron','2025-11-14 23:08:19','2025-11-15 00:08:19'), -(17823,5959,'action created','2025-11-14 23:08:19','2025-11-15 00:08:19'), -(17824,5958,'action complete via WP Cron','2025-11-14 23:08:19','2025-11-15 00:08:19'), -(17825,5959,'action started via WP Cron','2025-11-15 00:08:19','2025-11-15 01:08:19'), -(17826,5960,'action created','2025-11-15 00:08:19','2025-11-15 01:08:19'), -(17827,5959,'action complete via WP Cron','2025-11-15 00:08:19','2025-11-15 01:08:19'), -(17828,5960,'action started via WP Cron','2025-11-15 01:08:19','2025-11-15 02:08:19'), -(17829,5961,'action created','2025-11-15 01:08:19','2025-11-15 02:08:19'), -(17830,5960,'action complete via WP Cron','2025-11-15 01:08:19','2025-11-15 02:08:19'), -(17831,5961,'action started via WP Cron','2025-11-15 02:09:19','2025-11-15 03:09:19'), -(17832,5962,'action created','2025-11-15 02:09:19','2025-11-15 03:09:19'), -(17833,5961,'action complete via WP Cron','2025-11-15 02:09:19','2025-11-15 03:09:19'), -(17834,5962,'action started via WP Cron','2025-11-15 03:09:19','2025-11-15 04:09:19'), -(17835,5963,'action created','2025-11-15 03:09:19','2025-11-15 04:09:19'), -(17836,5962,'action complete via WP Cron','2025-11-15 03:09:19','2025-11-15 04:09:19'), -(17837,5963,'action started via WP Cron','2025-11-15 04:10:19','2025-11-15 05:10:19'), -(17838,5964,'action created','2025-11-15 04:10:19','2025-11-15 05:10:19'), -(17839,5963,'action complete via WP Cron','2025-11-15 04:10:19','2025-11-15 05:10:19'), -(17840,5934,'action started via WP Cron','2025-11-15 05:00:19','2025-11-15 06:00:19'), -(17841,5934,'action complete via WP Cron','2025-11-15 05:00:19','2025-11-15 06:00:19'), -(17843,5964,'action started via WP Cron','2025-11-15 05:10:19','2025-11-15 06:10:19'), -(17844,5966,'action created','2025-11-15 05:10:19','2025-11-15 06:10:19'), -(17845,5964,'action complete via WP Cron','2025-11-15 05:10:19','2025-11-15 06:10:19'), -(17846,5966,'action started via WP Cron','2025-11-15 06:10:19','2025-11-15 07:10:19'), -(17847,5967,'action created','2025-11-15 06:10:19','2025-11-15 07:10:19'), -(17848,5966,'action complete via WP Cron','2025-11-15 06:10:19','2025-11-15 07:10:19'), -(17849,5967,'action started via WP Cron','2025-11-15 07:10:19','2025-11-15 08:10:19'), -(17850,5968,'action created','2025-11-15 07:10:19','2025-11-15 08:10:19'), -(17851,5967,'action complete via WP Cron','2025-11-15 07:10:19','2025-11-15 08:10:19'), -(17852,5932,'action started via WP Cron','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17853,5932,'action complete via WP Cron','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17854,5969,'action created','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17855,5933,'action started via WP Cron','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17856,5933,'action complete via WP Cron','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17857,5970,'action created','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17858,5936,'action started via WP Cron','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17860,5971,'action created','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17861,5972,'action created','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17862,5936,'action complete via WP Cron','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17863,5973,'action created','2025-11-15 07:25:19','2025-11-15 08:25:19'), -(17864,5972,'action started via WP Cron','2025-11-15 07:26:19','2025-11-15 08:26:19'), -(17865,5972,'action complete via WP Cron','2025-11-15 07:26:19','2025-11-15 08:26:19'), -(17866,5954,'action started via WP Cron','2025-11-15 07:26:19','2025-11-15 08:26:19'), -(17867,5954,'action complete via WP Cron','2025-11-15 07:26:19','2025-11-15 08:26:19'), -(17868,5974,'action created','2025-11-15 07:26:19','2025-11-15 08:26:19'), -(17869,5968,'action started via WP Cron','2025-11-15 08:10:19','2025-11-15 09:10:19'), -(17870,5975,'action created','2025-11-15 08:10:19','2025-11-15 09:10:19'), -(17871,5968,'action complete via WP Cron','2025-11-15 08:10:19','2025-11-15 09:10:19'), -(17872,5975,'action started via WP Cron','2025-11-15 09:10:19','2025-11-15 10:10:19'), -(17873,5976,'action created','2025-11-15 09:10:19','2025-11-15 10:10:19'), -(17874,5975,'action complete via WP Cron','2025-11-15 09:10:19','2025-11-15 10:10:19'), -(17875,5976,'action started via WP Cron','2025-11-15 10:10:19','2025-11-15 11:10:19'), -(17876,5977,'action created','2025-11-15 10:10:19','2025-11-15 11:10:19'), -(17877,5976,'action complete via WP Cron','2025-11-15 10:10:19','2025-11-15 11:10:19'), -(17878,5941,'action started via WP Cron','2025-11-15 10:22:19','2025-11-15 11:22:19'), -(17879,5941,'action complete via WP Cron','2025-11-15 10:22:19','2025-11-15 11:22:19'), -(17880,5978,'action created','2025-11-15 10:22:19','2025-11-15 11:22:19'), -(17881,5942,'action started via WP Cron','2025-11-15 10:25:19','2025-11-15 11:25:19'), -(17882,5942,'action complete via WP Cron','2025-11-15 10:25:19','2025-11-15 11:25:19'), -(17883,5979,'action created','2025-11-15 10:25:19','2025-11-15 11:25:19'), -(17884,5977,'action started via WP Cron','2025-11-15 11:10:19','2025-11-15 12:10:19'), -(17885,5980,'action created','2025-11-15 11:10:19','2025-11-15 12:10:19'), -(17886,5977,'action complete via WP Cron','2025-11-15 11:10:19','2025-11-15 12:10:19'), -(17887,5980,'action started via WP Cron','2025-11-15 12:10:19','2025-11-15 13:10:19'), -(17888,5981,'action created','2025-11-15 12:10:19','2025-11-15 13:10:19'), -(17889,5980,'action complete via WP Cron','2025-11-15 12:10:19','2025-11-15 13:10:19'), -(17890,5981,'action started via WP Cron','2025-11-15 13:10:19','2025-11-15 14:10:19'), -(17891,5982,'action created','2025-11-15 13:10:19','2025-11-15 14:10:19'), -(17892,5981,'action complete via WP Cron','2025-11-15 13:10:19','2025-11-15 14:10:19'), -(17893,5982,'action started via WP Cron','2025-11-15 14:10:19','2025-11-15 15:10:19'), -(17894,5983,'action created','2025-11-15 14:10:19','2025-11-15 15:10:19'), -(17895,5982,'action complete via WP Cron','2025-11-15 14:10:19','2025-11-15 15:10:19'), -(17896,5983,'action started via WP Cron','2025-11-15 15:10:19','2025-11-15 16:10:19'), -(17897,5984,'action created','2025-11-15 15:10:19','2025-11-15 16:10:19'), -(17898,5983,'action complete via WP Cron','2025-11-15 15:10:19','2025-11-15 16:10:19'), -(17899,5984,'action started via WP Cron','2025-11-15 16:10:19','2025-11-15 17:10:19'), -(17900,5985,'action created','2025-11-15 16:10:19','2025-11-15 17:10:19'), -(17901,5984,'action complete via WP Cron','2025-11-15 16:10:19','2025-11-15 17:10:19'), -(17902,5985,'action started via WP Cron','2025-11-15 17:10:19','2025-11-15 18:10:19'), -(17903,5986,'action created','2025-11-15 17:10:19','2025-11-15 18:10:19'), -(17904,5985,'action complete via WP Cron','2025-11-15 17:10:19','2025-11-15 18:10:19'), -(17905,5986,'action started via WP Cron','2025-11-15 18:10:19','2025-11-15 19:10:19'), -(17906,5987,'action created','2025-11-15 18:10:19','2025-11-15 19:10:19'), -(17907,5986,'action complete via WP Cron','2025-11-15 18:10:19','2025-11-15 19:10:19'), -(17908,5951,'action started via WP Cron','2025-11-15 18:42:19','2025-11-15 19:42:19'), -(17909,5951,'action complete via WP Cron','2025-11-15 18:42:19','2025-11-15 19:42:19'), -(17910,5988,'action created','2025-11-15 18:42:19','2025-11-15 19:42:19'), -(17911,5952,'action started via WP Cron','2025-11-15 18:42:19','2025-11-15 19:42:19'), -(17912,5952,'action complete via WP Cron','2025-11-15 18:42:19','2025-11-15 19:42:19'), -(17913,5989,'action created','2025-11-15 18:42:19','2025-11-15 19:42:19'), -(17914,5987,'action started via WP Cron','2025-11-15 19:10:19','2025-11-15 20:10:19'), -(17915,5990,'action created','2025-11-15 19:10:19','2025-11-15 20:10:19'), -(17916,5987,'action complete via WP Cron','2025-11-15 19:10:19','2025-11-15 20:10:19'), -(17917,5974,'action started via WP Cron','2025-11-15 19:26:19','2025-11-15 20:26:19'), -(17918,5974,'action complete via WP Cron','2025-11-15 19:26:19','2025-11-15 20:26:19'), -(17919,5991,'action created','2025-11-15 19:26:19','2025-11-15 20:26:19'), -(17920,5990,'action started via WP Cron','2025-11-15 20:10:19','2025-11-15 21:10:19'), -(17921,5992,'action created','2025-11-15 20:10:19','2025-11-15 21:10:19'), -(17922,5990,'action complete via WP Cron','2025-11-15 20:10:19','2025-11-15 21:10:19'), -(17923,5992,'action started via WP Cron','2025-11-15 21:10:19','2025-11-15 22:10:19'), -(17924,5993,'action created','2025-11-15 21:10:19','2025-11-15 22:10:19'), -(17925,5992,'action complete via WP Cron','2025-11-15 21:10:19','2025-11-15 22:10:19'), -(17926,5957,'action started via WP Cron','2025-11-15 22:04:19','2025-11-15 23:04:19'), -(17927,5957,'action complete via WP Cron','2025-11-15 22:04:19','2025-11-15 23:04:19'), -(17928,5994,'action created','2025-11-15 22:04:19','2025-11-15 23:04:19'), -(17929,5993,'action started via WP Cron','2025-11-15 22:10:19','2025-11-15 23:10:19'), -(17930,5995,'action created','2025-11-15 22:10:19','2025-11-15 23:10:19'), -(17931,5993,'action complete via WP Cron','2025-11-15 22:10:19','2025-11-15 23:10:19'), -(17932,5995,'action started via WP Cron','2025-11-15 23:10:19','2025-11-16 00:10:19'), -(17933,5996,'action created','2025-11-15 23:10:19','2025-11-16 00:10:19'), -(17934,5995,'action complete via WP Cron','2025-11-15 23:10:19','2025-11-16 00:10:19'), -(17935,5996,'action started via WP Cron','2025-11-16 00:10:19','2025-11-16 01:10:19'), -(17936,5997,'action created','2025-11-16 00:10:19','2025-11-16 01:10:19'), -(17937,5996,'action complete via WP Cron','2025-11-16 00:10:19','2025-11-16 01:10:19'), -(17938,5997,'action started via WP Cron','2025-11-16 01:10:19','2025-11-16 02:10:19'), -(17939,5998,'action created','2025-11-16 01:10:19','2025-11-16 02:10:19'), -(17940,5997,'action complete via WP Cron','2025-11-16 01:10:19','2025-11-16 02:10:19'), -(17941,5998,'action started via WP Cron','2025-11-16 02:10:19','2025-11-16 03:10:19'), -(17942,5999,'action created','2025-11-16 02:10:19','2025-11-16 03:10:19'), -(17943,5998,'action complete via WP Cron','2025-11-16 02:10:19','2025-11-16 03:10:19'), -(17944,5999,'action started via WP Cron','2025-11-16 03:10:19','2025-11-16 04:10:19'), -(17945,6000,'action created','2025-11-16 03:10:19','2025-11-16 04:10:19'), -(17946,5999,'action complete via WP Cron','2025-11-16 03:10:19','2025-11-16 04:10:19'), -(17947,6000,'action started via WP Cron','2025-11-16 04:10:19','2025-11-16 05:10:19'), -(17948,6001,'action created','2025-11-16 04:10:19','2025-11-16 05:10:19'), -(17949,6000,'action complete via WP Cron','2025-11-16 04:10:19','2025-11-16 05:10:19'), -(17950,5971,'action started via WP Cron','2025-11-16 05:00:19','2025-11-16 06:00:19'), -(17951,5971,'action complete via WP Cron','2025-11-16 05:00:19','2025-11-16 06:00:19'), -(17953,6001,'action started via WP Cron','2025-11-16 05:10:19','2025-11-16 06:10:19'), -(17954,6003,'action created','2025-11-16 05:10:19','2025-11-16 06:10:19'), -(17955,6001,'action complete via WP Cron','2025-11-16 05:10:19','2025-11-16 06:10:19'), -(17956,6003,'action started via WP Cron','2025-11-16 06:10:19','2025-11-16 07:10:19'), -(17957,6004,'action created','2025-11-16 06:10:19','2025-11-16 07:10:19'), -(17958,6003,'action complete via WP Cron','2025-11-16 06:10:19','2025-11-16 07:10:19'), -(17959,6004,'action started via WP Cron','2025-11-16 07:10:19','2025-11-16 08:10:19'), -(17960,6005,'action created','2025-11-16 07:10:19','2025-11-16 08:10:19'), -(17961,6004,'action complete via WP Cron','2025-11-16 07:10:19','2025-11-16 08:10:19'), -(17962,5969,'action started via WP Cron','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17963,5969,'action complete via WP Cron','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17964,6006,'action created','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17965,5970,'action started via WP Cron','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17966,5970,'action complete via WP Cron','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17967,6007,'action created','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17968,5973,'action started via WP Cron','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17970,6008,'action created','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17971,6009,'action created','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17972,5973,'action complete via WP Cron','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17973,6010,'action created','2025-11-16 07:25:19','2025-11-16 08:25:19'), -(17974,6009,'action started via WP Cron','2025-11-16 07:26:19','2025-11-16 08:26:19'), -(17975,6009,'action complete via WP Cron','2025-11-16 07:26:19','2025-11-16 08:26:19'), -(17976,5991,'action started via WP Cron','2025-11-16 07:26:19','2025-11-16 08:26:19'), -(17977,5991,'action complete via WP Cron','2025-11-16 07:26:19','2025-11-16 08:26:19'), -(17978,6011,'action created','2025-11-16 07:26:19','2025-11-16 08:26:19'), -(17979,6005,'action started via WP Cron','2025-11-16 08:10:19','2025-11-16 09:10:19'), -(17980,6012,'action created','2025-11-16 08:10:19','2025-11-16 09:10:19'), -(17981,6005,'action complete via WP Cron','2025-11-16 08:10:19','2025-11-16 09:10:19'), -(17982,6012,'action started via WP Cron','2025-11-16 09:10:19','2025-11-16 10:10:19'), -(17983,6013,'action created','2025-11-16 09:10:19','2025-11-16 10:10:19'), -(17984,6012,'action complete via WP Cron','2025-11-16 09:10:19','2025-11-16 10:10:19'), -(17985,6013,'action started via WP Cron','2025-11-16 10:11:19','2025-11-16 11:11:19'), -(17986,6014,'action created','2025-11-16 10:11:19','2025-11-16 11:11:19'), -(17987,6013,'action complete via WP Cron','2025-11-16 10:11:19','2025-11-16 11:11:19'), -(17988,5978,'action started via WP Cron','2025-11-16 10:22:19','2025-11-16 11:22:19'), -(17989,5978,'action complete via WP Cron','2025-11-16 10:22:19','2025-11-16 11:22:19'), -(17990,6015,'action created','2025-11-16 10:22:19','2025-11-16 11:22:19'), -(17991,5979,'action started via WP Cron','2025-11-16 10:25:19','2025-11-16 11:25:19'), -(17992,5979,'action complete via WP Cron','2025-11-16 10:25:19','2025-11-16 11:25:19'), -(17993,6016,'action created','2025-11-16 10:25:19','2025-11-16 11:25:19'), -(17994,6014,'action started via WP Cron','2025-11-16 11:11:19','2025-11-16 12:11:19'), -(17995,6017,'action created','2025-11-16 11:11:19','2025-11-16 12:11:19'), -(17996,6014,'action complete via WP Cron','2025-11-16 11:11:19','2025-11-16 12:11:19'), -(17997,6017,'action started via WP Cron','2025-11-16 12:11:19','2025-11-16 13:11:19'), -(17998,6018,'action created','2025-11-16 12:11:19','2025-11-16 13:11:19'), -(17999,6017,'action complete via WP Cron','2025-11-16 12:11:19','2025-11-16 13:11:19'), -(18000,6018,'action started via WP Cron','2025-11-16 13:11:19','2025-11-16 14:11:19'), -(18001,6019,'action created','2025-11-16 13:11:19','2025-11-16 14:11:19'), -(18002,6018,'action complete via WP Cron','2025-11-16 13:11:20','2025-11-16 14:11:20'), -(18003,6019,'action started via WP Cron','2025-11-16 14:11:19','2025-11-16 15:11:19'), -(18004,6020,'action created','2025-11-16 14:11:19','2025-11-16 15:11:19'), -(18005,6019,'action complete via WP Cron','2025-11-16 14:11:19','2025-11-16 15:11:19'), -(18006,6020,'action started via WP Cron','2025-11-16 15:11:19','2025-11-16 16:11:19'), -(18007,6021,'action created','2025-11-16 15:11:19','2025-11-16 16:11:19'), -(18008,6020,'action complete via WP Cron','2025-11-16 15:11:19','2025-11-16 16:11:19'), -(18009,6021,'action started via WP Cron','2025-11-16 16:11:19','2025-11-16 17:11:19'), -(18010,6022,'action created','2025-11-16 16:11:19','2025-11-16 17:11:19'), -(18011,6021,'action complete via WP Cron','2025-11-16 16:11:19','2025-11-16 17:11:19'), -(18012,6022,'action started via WP Cron','2025-11-16 17:11:19','2025-11-16 18:11:19'), -(18013,6023,'action created','2025-11-16 17:11:19','2025-11-16 18:11:19'), -(18014,6022,'action complete via WP Cron','2025-11-16 17:11:19','2025-11-16 18:11:19'), -(18015,6023,'action started via WP Cron','2025-11-16 18:11:19','2025-11-16 19:11:19'), -(18016,6024,'action created','2025-11-16 18:11:19','2025-11-16 19:11:19'), -(18017,6023,'action complete via WP Cron','2025-11-16 18:11:19','2025-11-16 19:11:19'), -(18018,5988,'action started via WP Cron','2025-11-16 18:42:19','2025-11-16 19:42:19'), -(18019,5988,'action complete via WP Cron','2025-11-16 18:42:19','2025-11-16 19:42:19'), -(18020,6025,'action created','2025-11-16 18:42:19','2025-11-16 19:42:19'), -(18021,5989,'action started via WP Cron','2025-11-16 18:42:19','2025-11-16 19:42:19'), -(18022,5989,'action complete via WP Cron','2025-11-16 18:42:19','2025-11-16 19:42:19'), -(18023,6026,'action created','2025-11-16 18:42:19','2025-11-16 19:42:19'), -(18024,6024,'action started via WP Cron','2025-11-16 19:11:19','2025-11-16 20:11:19'), -(18025,6027,'action created','2025-11-16 19:11:19','2025-11-16 20:11:19'), -(18026,6024,'action complete via WP Cron','2025-11-16 19:11:19','2025-11-16 20:11:19'), -(18027,6011,'action started via WP Cron','2025-11-16 19:26:19','2025-11-16 20:26:19'), -(18028,6011,'action complete via WP Cron','2025-11-16 19:26:19','2025-11-16 20:26:19'), -(18029,6028,'action created','2025-11-16 19:26:19','2025-11-16 20:26:19'), -(18030,6027,'action started via WP Cron','2025-11-16 20:11:19','2025-11-16 21:11:19'), -(18031,6029,'action created','2025-11-16 20:11:19','2025-11-16 21:11:19'), -(18032,6027,'action complete via WP Cron','2025-11-16 20:11:19','2025-11-16 21:11:19'), -(18033,6029,'action started via WP Cron','2025-11-16 21:11:19','2025-11-16 22:11:19'), -(18034,6030,'action created','2025-11-16 21:11:19','2025-11-16 22:11:19'), -(18035,6029,'action complete via WP Cron','2025-11-16 21:11:19','2025-11-16 22:11:19'), -(18036,5994,'action started via WP Cron','2025-11-16 22:05:19','2025-11-16 23:05:19'), -(18037,5994,'action complete via WP Cron','2025-11-16 22:05:19','2025-11-16 23:05:19'), -(18038,6031,'action created','2025-11-16 22:05:19','2025-11-16 23:05:19'), -(18039,6030,'action started via WP Cron','2025-11-16 22:11:19','2025-11-16 23:11:19'), -(18040,6032,'action created','2025-11-16 22:11:20','2025-11-16 23:11:20'), -(18041,6030,'action complete via WP Cron','2025-11-16 22:11:20','2025-11-16 23:11:20'), -(18042,6032,'action started via WP Cron','2025-11-16 23:12:19','2025-11-17 00:12:19'), -(18043,6033,'action created','2025-11-16 23:12:19','2025-11-17 00:12:19'), -(18044,6032,'action complete via WP Cron','2025-11-16 23:12:19','2025-11-17 00:12:19'), -(18045,6033,'action started via WP Cron','2025-11-17 00:12:19','2025-11-17 01:12:19'), -(18046,6034,'action created','2025-11-17 00:12:19','2025-11-17 01:12:19'), -(18047,6033,'action complete via WP Cron','2025-11-17 00:12:19','2025-11-17 01:12:19'), -(18048,6034,'action started via WP Cron','2025-11-17 01:12:19','2025-11-17 02:12:19'), -(18049,6035,'action created','2025-11-17 01:12:19','2025-11-17 02:12:19'), -(18050,6034,'action complete via WP Cron','2025-11-17 01:12:19','2025-11-17 02:12:19'), -(18051,6035,'action started via WP Cron','2025-11-17 02:12:19','2025-11-17 03:12:19'), -(18052,6036,'action created','2025-11-17 02:12:19','2025-11-17 03:12:19'), -(18053,6035,'action complete via WP Cron','2025-11-17 02:12:19','2025-11-17 03:12:19'), -(18054,6036,'action started via WP Cron','2025-11-17 03:12:20','2025-11-17 04:12:20'), -(18055,6037,'action created','2025-11-17 03:12:20','2025-11-17 04:12:20'), -(18056,6036,'action complete via WP Cron','2025-11-17 03:12:20','2025-11-17 04:12:20'), -(18057,6037,'action started via WP Cron','2025-11-17 04:13:19','2025-11-17 05:13:19'), -(18058,6038,'action created','2025-11-17 04:13:20','2025-11-17 05:13:20'), -(18059,6037,'action complete via WP Cron','2025-11-17 04:13:20','2025-11-17 05:13:20'), -(18060,6008,'action started via WP Cron','2025-11-17 05:00:20','2025-11-17 06:00:20'), -(18061,6008,'action complete via WP Cron','2025-11-17 05:00:20','2025-11-17 06:00:20'), -(18063,6038,'action started via WP Cron','2025-11-17 05:14:20','2025-11-17 06:14:20'), -(18064,6040,'action created','2025-11-17 05:14:20','2025-11-17 06:14:20'), -(18065,6038,'action complete via WP Cron','2025-11-17 05:14:20','2025-11-17 06:14:20'), -(18066,6040,'action started via WP Cron','2025-11-17 06:14:20','2025-11-17 07:14:20'), -(18067,6041,'action created','2025-11-17 06:14:20','2025-11-17 07:14:20'), -(18068,6040,'action complete via WP Cron','2025-11-17 06:14:20','2025-11-17 07:14:20'), -(18069,6041,'action started via WP Cron','2025-11-17 07:14:20','2025-11-17 08:14:20'), -(18070,6042,'action created','2025-11-17 07:14:20','2025-11-17 08:14:20'), -(18071,6041,'action complete via WP Cron','2025-11-17 07:14:20','2025-11-17 08:14:20'), -(18072,6006,'action started via WP Cron','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18073,6006,'action complete via WP Cron','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18074,6043,'action created','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18075,6007,'action started via WP Cron','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18076,6007,'action complete via WP Cron','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18077,6044,'action created','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18078,6010,'action started via WP Cron','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18080,6045,'action created','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18081,6046,'action created','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18082,6010,'action complete via WP Cron','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18083,6047,'action created','2025-11-17 07:25:20','2025-11-17 08:25:20'), -(18084,6046,'action started via WP Cron','2025-11-17 07:26:20','2025-11-17 08:26:20'), -(18085,6046,'action complete via WP Cron','2025-11-17 07:26:20','2025-11-17 08:26:20'), -(18086,6028,'action started via WP Cron','2025-11-17 07:26:20','2025-11-17 08:26:20'), -(18087,6028,'action complete via WP Cron','2025-11-17 07:26:20','2025-11-17 08:26:20'), -(18088,6048,'action created','2025-11-17 07:26:20','2025-11-17 08:26:20'), -(18089,6042,'action started via WP Cron','2025-11-17 08:14:20','2025-11-17 09:14:20'), -(18090,6049,'action created','2025-11-17 08:14:20','2025-11-17 09:14:20'), -(18091,6042,'action complete via WP Cron','2025-11-17 08:14:20','2025-11-17 09:14:20'), -(18092,6049,'action started via WP Cron','2025-11-17 09:14:20','2025-11-17 10:14:20'), -(18093,6050,'action created','2025-11-17 09:14:20','2025-11-17 10:14:20'), -(18094,6049,'action complete via WP Cron','2025-11-17 09:14:20','2025-11-17 10:14:20'), -(18095,6050,'action started via WP Cron','2025-11-17 10:14:20','2025-11-17 11:14:20'), -(18096,6051,'action created','2025-11-17 10:14:20','2025-11-17 11:14:20'), -(18097,6050,'action complete via WP Cron','2025-11-17 10:14:20','2025-11-17 11:14:20'), -(18098,6015,'action started via WP Cron','2025-11-17 10:22:20','2025-11-17 11:22:20'), -(18099,6015,'action complete via WP Cron','2025-11-17 10:22:20','2025-11-17 11:22:20'), -(18100,6052,'action created','2025-11-17 10:22:20','2025-11-17 11:22:20'), -(18101,6016,'action started via WP Cron','2025-11-17 10:25:20','2025-11-17 11:25:20'), -(18102,6016,'action complete via WP Cron','2025-11-17 10:25:20','2025-11-17 11:25:20'), -(18103,6053,'action created','2025-11-17 10:25:20','2025-11-17 11:25:20'), -(18104,6051,'action started via WP Cron','2025-11-17 11:14:20','2025-11-17 12:14:20'), -(18105,6054,'action created','2025-11-17 11:14:20','2025-11-17 12:14:20'), -(18106,6051,'action complete via WP Cron','2025-11-17 11:14:20','2025-11-17 12:14:20'), -(18107,6054,'action started via WP Cron','2025-11-17 12:14:20','2025-11-17 13:14:20'), -(18108,6055,'action created','2025-11-17 12:14:20','2025-11-17 13:14:20'), -(18109,6054,'action complete via WP Cron','2025-11-17 12:14:20','2025-11-17 13:14:20'), -(18110,6055,'action started via WP Cron','2025-11-17 13:14:20','2025-11-17 14:14:20'), -(18111,6056,'action created','2025-11-17 13:14:20','2025-11-17 14:14:20'), -(18112,6055,'action complete via WP Cron','2025-11-17 13:14:20','2025-11-17 14:14:20'), -(18113,6056,'action started via WP Cron','2025-11-17 14:14:20','2025-11-17 15:14:20'), -(18114,6057,'action created','2025-11-17 14:14:20','2025-11-17 15:14:20'), -(18115,6056,'action complete via WP Cron','2025-11-17 14:14:20','2025-11-17 15:14:20'), -(18116,6057,'action started via WP Cron','2025-11-17 15:14:20','2025-11-17 16:14:20'), -(18117,6058,'action created','2025-11-17 15:14:20','2025-11-17 16:14:20'), -(18118,6057,'action complete via WP Cron','2025-11-17 15:14:20','2025-11-17 16:14:20'), -(18119,6058,'action started via WP Cron','2025-11-17 16:14:20','2025-11-17 17:14:20'), -(18120,6059,'action created','2025-11-17 16:14:20','2025-11-17 17:14:20'), -(18121,6058,'action complete via WP Cron','2025-11-17 16:14:20','2025-11-17 17:14:20'), -(18122,6059,'action started via WP Cron','2025-11-17 17:14:38','2025-11-17 18:14:38'), -(18123,6060,'action created','2025-11-17 17:14:38','2025-11-17 18:14:38'), -(18124,6059,'action complete via WP Cron','2025-11-17 17:14:38','2025-11-17 18:14:38'), -(18125,6060,'action started via WP Cron','2025-11-17 18:15:20','2025-11-17 19:15:20'), -(18126,6061,'action created','2025-11-17 18:15:20','2025-11-17 19:15:20'), -(18127,6060,'action complete via WP Cron','2025-11-17 18:15:20','2025-11-17 19:15:20'), -(18128,6025,'action started via WP Cron','2025-11-17 18:42:20','2025-11-17 19:42:20'), -(18129,6025,'action complete via WP Cron','2025-11-17 18:42:20','2025-11-17 19:42:20'), -(18130,6062,'action created','2025-11-17 18:42:20','2025-11-17 19:42:20'), -(18131,6026,'action started via WP Cron','2025-11-17 18:42:20','2025-11-17 19:42:20'), -(18132,6026,'action complete via WP Cron','2025-11-17 18:42:20','2025-11-17 19:42:20'), -(18133,6063,'action created','2025-11-17 18:42:20','2025-11-17 19:42:20'), -(18134,6061,'action started via WP Cron','2025-11-17 19:15:20','2025-11-17 20:15:20'), -(18135,6064,'action created','2025-11-17 19:15:20','2025-11-17 20:15:20'), -(18136,6061,'action complete via WP Cron','2025-11-17 19:15:20','2025-11-17 20:15:20'), -(18137,6048,'action started via WP Cron','2025-11-17 19:26:20','2025-11-17 20:26:20'), -(18138,6048,'action complete via WP Cron','2025-11-17 19:26:20','2025-11-17 20:26:20'), -(18139,6065,'action created','2025-11-17 19:26:20','2025-11-17 20:26:20'), -(18140,6064,'action started via WP Cron','2025-11-17 20:15:20','2025-11-17 21:15:20'), -(18141,6066,'action created','2025-11-17 20:15:20','2025-11-17 21:15:20'), -(18142,6064,'action complete via WP Cron','2025-11-17 20:15:20','2025-11-17 21:15:20'), -(18143,6066,'action started via WP Cron','2025-11-17 21:15:20','2025-11-17 22:15:20'), -(18144,6067,'action created','2025-11-17 21:15:20','2025-11-17 22:15:20'), -(18145,6066,'action complete via WP Cron','2025-11-17 21:15:20','2025-11-17 22:15:20'), -(18146,6031,'action started via WP Cron','2025-11-17 22:05:20','2025-11-17 23:05:20'), -(18147,6031,'action complete via WP Cron','2025-11-17 22:05:20','2025-11-17 23:05:20'), -(18148,6068,'action created','2025-11-17 22:05:20','2025-11-17 23:05:20'), -(18149,6067,'action started via WP Cron','2025-11-17 22:15:20','2025-11-17 23:15:20'), -(18150,6069,'action created','2025-11-17 22:15:20','2025-11-17 23:15:20'), -(18151,6067,'action complete via WP Cron','2025-11-17 22:15:20','2025-11-17 23:15:20'), -(18152,6069,'action started via WP Cron','2025-11-17 23:15:20','2025-11-18 00:15:20'), -(18153,6070,'action created','2025-11-17 23:15:20','2025-11-18 00:15:20'), -(18154,6069,'action complete via WP Cron','2025-11-17 23:15:20','2025-11-18 00:15:20'), -(18155,6070,'action started via WP Cron','2025-11-18 00:15:20','2025-11-18 01:15:20'), -(18156,6071,'action created','2025-11-18 00:15:20','2025-11-18 01:15:20'), -(18157,6070,'action complete via WP Cron','2025-11-18 00:15:20','2025-11-18 01:15:20'), -(18158,6071,'action started via WP Cron','2025-11-18 01:15:20','2025-11-18 02:15:20'), -(18159,6072,'action created','2025-11-18 01:15:20','2025-11-18 02:15:20'), -(18160,6071,'action complete via WP Cron','2025-11-18 01:15:20','2025-11-18 02:15:20'), -(18161,6072,'action started via WP Cron','2025-11-18 02:15:20','2025-11-18 03:15:20'), -(18162,6073,'action created','2025-11-18 02:15:20','2025-11-18 03:15:20'), -(18163,6072,'action complete via WP Cron','2025-11-18 02:15:20','2025-11-18 03:15:20'), -(18164,6073,'action started via WP Cron','2025-11-18 03:15:20','2025-11-18 04:15:20'), -(18165,6074,'action created','2025-11-18 03:15:20','2025-11-18 04:15:20'), -(18166,6073,'action complete via WP Cron','2025-11-18 03:15:20','2025-11-18 04:15:20'), -(18167,5816,'action started via WP Cron','2025-11-18 04:07:20','2025-11-18 05:07:20'), -(18168,5816,'action complete via WP Cron','2025-11-18 04:07:20','2025-11-18 05:07:20'), -(18169,6075,'action created','2025-11-18 04:07:20','2025-11-18 05:07:20'), -(18170,6074,'action started via WP Cron','2025-11-18 04:15:20','2025-11-18 05:15:20'), -(18171,6076,'action created','2025-11-18 04:15:20','2025-11-18 05:15:20'), -(18172,6074,'action complete via WP Cron','2025-11-18 04:15:20','2025-11-18 05:15:20'), -(18173,6045,'action started via WP Cron','2025-11-18 05:00:20','2025-11-18 06:00:20'), -(18174,6045,'action complete via WP Cron','2025-11-18 05:00:20','2025-11-18 06:00:20'), -(18176,6076,'action started via WP Cron','2025-11-18 05:16:20','2025-11-18 06:16:20'), -(18177,6078,'action created','2025-11-18 05:16:20','2025-11-18 06:16:20'), -(18178,6076,'action complete via WP Cron','2025-11-18 05:16:20','2025-11-18 06:16:20'), -(18179,6078,'action started via WP Cron','2025-11-18 06:16:20','2025-11-18 07:16:20'), -(18180,6079,'action created','2025-11-18 06:16:20','2025-11-18 07:16:20'), -(18181,6078,'action complete via WP Cron','2025-11-18 06:16:20','2025-11-18 07:16:20'), -(18182,6079,'action started via WP Cron','2025-11-18 07:16:20','2025-11-18 08:16:20'), -(18183,6080,'action created','2025-11-18 07:16:20','2025-11-18 08:16:20'), -(18184,6079,'action complete via WP Cron','2025-11-18 07:16:20','2025-11-18 08:16:20'), -(18185,6043,'action started via WP Cron','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18186,6043,'action complete via WP Cron','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18187,6081,'action created','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18188,6044,'action started via WP Cron','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18189,6044,'action complete via WP Cron','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18190,6082,'action created','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18191,6047,'action started via WP Cron','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18193,6083,'action created','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18194,6084,'action created','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18195,6047,'action complete via WP Cron','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18196,6085,'action created','2025-11-18 07:25:20','2025-11-18 08:25:20'), -(18197,6084,'action started via WP Cron','2025-11-18 07:26:20','2025-11-18 08:26:20'), -(18198,6084,'action complete via WP Cron','2025-11-18 07:26:20','2025-11-18 08:26:20'), -(18199,6065,'action started via WP Cron','2025-11-18 07:26:20','2025-11-18 08:26:20'), -(18200,6065,'action complete via WP Cron','2025-11-18 07:26:20','2025-11-18 08:26:20'), -(18201,6086,'action created','2025-11-18 07:26:20','2025-11-18 08:26:20'), -(18202,6080,'action started via WP Cron','2025-11-18 08:16:20','2025-11-18 09:16:20'), -(18203,6087,'action created','2025-11-18 08:16:20','2025-11-18 09:16:20'), -(18204,6080,'action complete via WP Cron','2025-11-18 08:16:20','2025-11-18 09:16:20'), -(18205,6088,'action created','2025-11-18 08:29:10','2025-11-18 09:29:10'), -(18206,6088,'action started via WP Cron','2025-11-18 08:30:08','2025-11-18 09:30:08'), -(18207,6088,'action complete via WP Cron','2025-11-18 08:30:08','2025-11-18 09:30:08'), -(18208,6089,'action created','2025-11-18 08:30:08','2025-11-18 09:30:08'), -(18209,6089,'action started via WP Cron','2025-11-18 08:31:20','2025-11-18 09:31:20'), -(18210,6089,'action complete via WP Cron','2025-11-18 08:31:20','2025-11-18 09:31:20'), -(18211,6087,'action started via WP Cron','2025-11-18 09:16:20','2025-11-18 10:16:20'), -(18212,6090,'action created','2025-11-18 09:16:20','2025-11-18 10:16:20'), -(18213,6087,'action complete via WP Cron','2025-11-18 09:16:20','2025-11-18 10:16:20'), -(18214,6091,'action created','2025-11-18 09:47:45','2025-11-18 10:47:45'), -(18215,6091,'action started via Async Request','2025-11-18 09:48:17','2025-11-18 10:48:17'), -(18216,6091,'action complete via Async Request','2025-11-18 09:48:17','2025-11-18 10:48:17'), -(18217,6090,'action started via WP Cron','2025-11-18 10:16:27','2025-11-18 11:16:27'), -(18218,6092,'action created','2025-11-18 10:16:27','2025-11-18 11:16:27'), -(18219,6090,'action complete via WP Cron','2025-11-18 10:16:27','2025-11-18 11:16:27'), -(18220,6093,'action created','2025-11-18 10:18:10','2025-11-18 11:18:10'), -(18221,6093,'action started via WP Cron','2025-11-18 10:18:27','2025-11-18 11:18:27'), -(18222,6093,'action complete via WP Cron','2025-11-18 10:18:27','2025-11-18 11:18:27'), -(18223,6052,'action started via WP Cron','2025-11-18 10:22:28','2025-11-18 11:22:28'), -(18224,6052,'action complete via WP Cron','2025-11-18 10:22:28','2025-11-18 11:22:28'), -(18225,6094,'action created','2025-11-18 10:22:28','2025-11-18 11:22:28'), -(18226,6095,'action created','2025-11-18 10:24:17','2025-11-18 11:24:17'), -(18227,6095,'action started via Async Request','2025-11-18 10:24:20','2025-11-18 11:24:20'), -(18228,6095,'action complete via Async Request','2025-11-18 10:24:20','2025-11-18 11:24:20'), -(18229,6053,'action started via WP Cron','2025-11-18 10:25:36','2025-11-18 11:25:36'), -(18230,6053,'action complete via WP Cron','2025-11-18 10:25:36','2025-11-18 11:25:36'), -(18231,6096,'action created','2025-11-18 10:25:36','2025-11-18 11:25:36'), -(18232,6092,'action started via WP Cron','2025-11-18 11:17:20','2025-11-18 12:17:20'), -(18233,6097,'action created','2025-11-18 11:17:20','2025-11-18 12:17:20'), -(18234,6092,'action complete via WP Cron','2025-11-18 11:17:20','2025-11-18 12:17:20'), -(18235,6097,'action started via WP Cron','2025-11-18 12:17:20','2025-11-18 13:17:20'), -(18236,6098,'action created','2025-11-18 12:17:20','2025-11-18 13:17:20'), -(18237,6097,'action complete via WP Cron','2025-11-18 12:17:20','2025-11-18 13:17:20'), -(18238,6098,'action started via WP Cron','2025-11-18 13:17:20','2025-11-18 14:17:20'), -(18239,6099,'action created','2025-11-18 13:17:20','2025-11-18 14:17:20'), -(18240,6098,'action complete via WP Cron','2025-11-18 13:17:20','2025-11-18 14:17:20'), -(18241,6099,'action started via WP Cron','2025-11-18 14:17:20','2025-11-18 15:17:20'), -(18242,6100,'action created','2025-11-18 14:17:20','2025-11-18 15:17:20'), -(18243,6099,'action complete via WP Cron','2025-11-18 14:17:20','2025-11-18 15:17:20'), -(18244,6100,'action started via WP Cron','2025-11-18 15:17:20','2025-11-18 16:17:20'), -(18245,6101,'action created','2025-11-18 15:17:20','2025-11-18 16:17:20'), -(18246,6100,'action complete via WP Cron','2025-11-18 15:17:20','2025-11-18 16:17:20'), -(18247,6101,'action started via WP Cron','2025-11-18 16:17:20','2025-11-18 17:17:20'), -(18248,6102,'action created','2025-11-18 16:17:20','2025-11-18 17:17:20'), -(18249,6101,'action complete via WP Cron','2025-11-18 16:17:20','2025-11-18 17:17:20'), -(18250,6102,'action started via WP Cron','2025-11-18 17:17:20','2025-11-18 18:17:20'), -(18251,6103,'action created','2025-11-18 17:17:20','2025-11-18 18:17:20'), -(18252,6102,'action complete via WP Cron','2025-11-18 17:17:20','2025-11-18 18:17:20'), -(18253,6103,'action started via WP Cron','2025-11-18 18:17:20','2025-11-18 19:17:20'), -(18254,6104,'action created','2025-11-18 18:17:20','2025-11-18 19:17:20'), -(18255,6103,'action complete via WP Cron','2025-11-18 18:17:20','2025-11-18 19:17:20'), -(18256,6062,'action started via WP Cron','2025-11-18 18:42:20','2025-11-18 19:42:20'), -(18257,6062,'action complete via WP Cron','2025-11-18 18:42:20','2025-11-18 19:42:20'), -(18258,6105,'action created','2025-11-18 18:42:20','2025-11-18 19:42:20'), -(18259,6063,'action started via WP Cron','2025-11-18 18:42:20','2025-11-18 19:42:20'), -(18260,6063,'action complete via WP Cron','2025-11-18 18:42:20','2025-11-18 19:42:20'), -(18261,6106,'action created','2025-11-18 18:42:20','2025-11-18 19:42:20'), -(18262,6104,'action started via WP Cron','2025-11-18 19:17:20','2025-11-18 20:17:20'), -(18263,6107,'action created','2025-11-18 19:17:20','2025-11-18 20:17:20'), -(18264,6104,'action complete via WP Cron','2025-11-18 19:17:20','2025-11-18 20:17:20'), -(18265,6086,'action started via WP Cron','2025-11-18 19:26:20','2025-11-18 20:26:20'), -(18266,6086,'action complete via WP Cron','2025-11-18 19:26:20','2025-11-18 20:26:20'), -(18267,6108,'action created','2025-11-18 19:26:20','2025-11-18 20:26:20'), -(18268,6107,'action started via WP Cron','2025-11-18 20:17:20','2025-11-18 21:17:20'), -(18269,6109,'action created','2025-11-18 20:17:20','2025-11-18 21:17:20'), -(18270,6107,'action complete via WP Cron','2025-11-18 20:17:20','2025-11-18 21:17:20'), -(18271,6109,'action started via WP Cron','2025-11-18 21:17:20','2025-11-18 22:17:20'), -(18272,6110,'action created','2025-11-18 21:17:20','2025-11-18 22:17:20'), -(18273,6109,'action complete via WP Cron','2025-11-18 21:17:20','2025-11-18 22:17:20'), -(18274,6068,'action started via WP Cron','2025-11-18 22:05:20','2025-11-18 23:05:20'), -(18275,6068,'action complete via WP Cron','2025-11-18 22:05:20','2025-11-18 23:05:20'), -(18276,6111,'action created','2025-11-18 22:05:20','2025-11-18 23:05:20'), -(18277,6110,'action started via WP Cron','2025-11-18 22:17:20','2025-11-18 23:17:20'), -(18278,6112,'action created','2025-11-18 22:17:20','2025-11-18 23:17:20'), -(18279,6110,'action complete via WP Cron','2025-11-18 22:17:20','2025-11-18 23:17:20'), -(18280,6112,'action started via WP Cron','2025-11-18 23:17:20','2025-11-19 00:17:20'), -(18281,6113,'action created','2025-11-18 23:17:20','2025-11-19 00:17:20'), -(18282,6112,'action complete via WP Cron','2025-11-18 23:17:20','2025-11-19 00:17:20'), -(18283,6113,'action started via WP Cron','2025-11-19 00:17:20','2025-11-19 01:17:20'), -(18284,6114,'action created','2025-11-19 00:17:20','2025-11-19 01:17:20'), -(18285,6113,'action complete via WP Cron','2025-11-19 00:17:20','2025-11-19 01:17:20'), -(18286,6114,'action started via WP Cron','2025-11-19 01:17:20','2025-11-19 02:17:20'), -(18287,6115,'action created','2025-11-19 01:17:20','2025-11-19 02:17:20'), -(18288,6114,'action complete via WP Cron','2025-11-19 01:17:20','2025-11-19 02:17:20'), -(18289,6115,'action started via WP Cron','2025-11-19 02:17:20','2025-11-19 03:17:20'), -(18290,6116,'action created','2025-11-19 02:17:20','2025-11-19 03:17:20'), -(18291,6115,'action complete via WP Cron','2025-11-19 02:17:20','2025-11-19 03:17:20'), -(18292,6116,'action started via WP Cron','2025-11-19 03:17:20','2025-11-19 04:17:20'), -(18293,6117,'action created','2025-11-19 03:17:20','2025-11-19 04:17:20'), -(18294,6116,'action complete via WP Cron','2025-11-19 03:17:20','2025-11-19 04:17:20'), -(18295,6117,'action started via WP Cron','2025-11-19 04:17:20','2025-11-19 05:17:20'), -(18296,6118,'action created','2025-11-19 04:17:20','2025-11-19 05:17:20'), -(18297,6117,'action complete via WP Cron','2025-11-19 04:17:20','2025-11-19 05:17:20'), -(18298,6083,'action started via WP Cron','2025-11-19 05:00:20','2025-11-19 06:00:20'), -(18299,6083,'action complete via WP Cron','2025-11-19 05:00:20','2025-11-19 06:00:20'), -(18301,6118,'action started via WP Cron','2025-11-19 05:17:20','2025-11-19 06:17:20'), -(18302,6120,'action created','2025-11-19 05:17:20','2025-11-19 06:17:20'), -(18303,6118,'action complete via WP Cron','2025-11-19 05:17:20','2025-11-19 06:17:20'), -(18304,6120,'action started via WP Cron','2025-11-19 06:17:20','2025-11-19 07:17:20'), -(18305,6121,'action created','2025-11-19 06:17:20','2025-11-19 07:17:20'), -(18306,6120,'action complete via WP Cron','2025-11-19 06:17:20','2025-11-19 07:17:20'), -(18307,6122,'action created','2025-11-19 07:01:23','2025-11-19 08:01:23'), -(18308,6122,'action started via WP Cron','2025-11-19 07:01:26','2025-11-19 08:01:26'), -(18309,6122,'action complete via WP Cron','2025-11-19 07:01:26','2025-11-19 08:01:26'), -(18310,6123,'action created','2025-11-19 07:04:18','2025-11-19 08:04:18'), -(18311,6123,'action started via WP Cron','2025-11-19 07:04:35','2025-11-19 08:04:35'), -(18312,6123,'action complete via WP Cron','2025-11-19 07:04:35','2025-11-19 08:04:35'), -(18313,6124,'action created','2025-11-19 07:05:52','2025-11-19 08:05:52'), -(18314,6125,'action created','2025-11-19 07:05:52','2025-11-19 08:05:52'), -(18315,6126,'action created','2025-11-19 07:05:52','2025-11-19 08:05:52'), -(18316,6127,'action created','2025-11-19 07:06:10','2025-11-19 08:06:10'), -(18317,6128,'action created','2025-11-19 07:06:10','2025-11-19 08:06:10'), -(18318,6129,'action created','2025-11-19 07:06:10','2025-11-19 08:06:10'), -(18319,6124,'action started via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18320,6124,'action complete via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18321,6125,'action started via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18322,6125,'action complete via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18323,6126,'action started via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18324,6126,'action complete via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18325,6127,'action started via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18326,6127,'action complete via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18327,6128,'action started via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18328,6128,'action complete via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18329,6129,'action started via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18330,6129,'action complete via Async Request','2025-11-19 07:06:21','2025-11-19 08:06:21'), -(18331,6130,'action created','2025-11-19 07:06:22','2025-11-19 08:06:22'), -(18332,6130,'action started via Async Request','2025-11-19 07:06:27','2025-11-19 08:06:27'), -(18333,6130,'action complete via Async Request','2025-11-19 07:06:27','2025-11-19 08:06:27'), -(18334,6131,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18335,6132,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18336,6133,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18337,6134,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18338,6135,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18339,6136,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18340,6137,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18341,6138,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18342,6139,'action created','2025-11-19 07:06:48','2025-11-19 08:06:48'), -(18343,6140,'action created','2025-11-19 07:07:15','2025-11-19 08:07:15'), -(18344,6141,'action created','2025-11-19 07:07:15','2025-11-19 08:07:15'), -(18345,6142,'action created','2025-11-19 07:07:15','2025-11-19 08:07:15'), -(18346,6143,'action created','2025-11-19 07:07:15','2025-11-19 08:07:15'), -(18347,6144,'action created','2025-11-19 07:07:15','2025-11-19 08:07:15'), -(18348,6131,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18349,6131,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18350,6132,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18351,6132,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18352,6133,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18353,6133,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18354,6134,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18355,6134,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18356,6135,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18357,6135,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18358,6136,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18359,6136,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18360,6137,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18361,6137,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18362,6138,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18363,6138,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18364,6139,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18365,6139,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18366,6140,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18367,6140,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18368,6141,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18369,6141,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18370,6142,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18371,6142,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18372,6143,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18373,6143,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18374,6144,'action started via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18375,6144,'action complete via WP Cron','2025-11-19 07:07:27','2025-11-19 08:07:27'), -(18376,6121,'action started via Async Request','2025-11-19 07:17:23','2025-11-19 08:17:23'), -(18377,6145,'action created','2025-11-19 07:17:23','2025-11-19 08:17:23'), -(18378,6121,'action complete via Async Request','2025-11-19 07:17:23','2025-11-19 08:17:23'), -(18379,6081,'action started via WP Cron','2025-11-19 07:25:20','2025-11-19 08:25:20'), -(18380,6081,'action complete via WP Cron','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18381,6146,'action created','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18382,6082,'action started via WP Cron','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18383,6082,'action complete via WP Cron','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18384,6147,'action created','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18385,6085,'action started via WP Cron','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18387,6148,'action created','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18388,6149,'action created','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18389,6085,'action complete via WP Cron','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18390,6150,'action created','2025-11-19 07:25:21','2025-11-19 08:25:21'), -(18391,6149,'action started via WP Cron','2025-11-19 07:26:01','2025-11-19 08:26:01'), -(18392,6149,'action complete via WP Cron','2025-11-19 07:26:01','2025-11-19 08:26:01'), -(18393,6108,'action started via WP Cron','2025-11-19 07:27:20','2025-11-19 08:27:20'), -(18394,6108,'action complete via WP Cron','2025-11-19 07:27:20','2025-11-19 08:27:20'), -(18395,6151,'action created','2025-11-19 07:27:20','2025-11-19 08:27:20'), -(18396,6145,'action started via WP Cron','2025-11-19 08:18:20','2025-11-19 09:18:20'), -(18397,6152,'action created','2025-11-19 08:18:20','2025-11-19 09:18:20'), -(18398,6145,'action complete via WP Cron','2025-11-19 08:18:20','2025-11-19 09:18:20'), -(18399,6152,'action started via WP Cron','2025-11-19 09:18:20','2025-11-19 10:18:20'), -(18400,6153,'action created','2025-11-19 09:18:20','2025-11-19 10:18:20'), -(18401,6152,'action complete via WP Cron','2025-11-19 09:18:20','2025-11-19 10:18:20'), -(18402,6154,'action created','2025-11-19 10:09:26','2025-11-19 11:09:26'), -(18403,6155,'action created','2025-11-19 10:09:26','2025-11-19 11:09:26'), -(18404,6156,'action created','2025-11-19 10:09:26','2025-11-19 11:09:26'), -(18405,6157,'action created','2025-11-19 10:09:26','2025-11-19 11:09:26'), -(18406,6154,'action started via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18407,6154,'action complete via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18408,6155,'action started via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18409,6155,'action complete via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18410,6156,'action started via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18411,6156,'action complete via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18412,6157,'action started via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18413,6157,'action complete via Async Request','2025-11-19 10:09:59','2025-11-19 11:09:59'), -(18414,6158,'action created','2025-11-19 10:10:23','2025-11-19 11:10:23'), -(18415,6159,'action created','2025-11-19 10:10:23','2025-11-19 11:10:23'), -(18416,6160,'action created','2025-11-19 10:10:23','2025-11-19 11:10:23'), -(18417,6158,'action started via WP Cron','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18418,6158,'action complete via WP Cron','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18419,6159,'action started via WP Cron','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18420,6159,'action complete via WP Cron','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18421,6160,'action started via WP Cron','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18422,6160,'action complete via WP Cron','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18423,6161,'action created','2025-11-19 10:10:27','2025-11-19 11:10:27'), -(18424,6161,'action started via Async Request','2025-11-19 10:11:03','2025-11-19 11:11:03'), -(18425,6161,'action complete via Async Request','2025-11-19 10:11:03','2025-11-19 11:11:03'), -(18426,6153,'action started via WP Cron','2025-11-19 10:18:34','2025-11-19 11:18:34'), -(18427,6162,'action created','2025-11-19 10:18:34','2025-11-19 11:18:34'), -(18428,6153,'action complete via WP Cron','2025-11-19 10:18:34','2025-11-19 11:18:34'), -(18429,6094,'action started via WP Cron','2025-11-19 10:22:34','2025-11-19 11:22:34'), -(18430,6094,'action complete via WP Cron','2025-11-19 10:22:34','2025-11-19 11:22:34'), -(18431,6163,'action created','2025-11-19 10:22:34','2025-11-19 11:22:34'), -(18432,6096,'action started via Async Request','2025-11-19 10:26:04','2025-11-19 11:26:04'), -(18433,6096,'action complete via Async Request','2025-11-19 10:26:04','2025-11-19 11:26:04'), -(18434,6164,'action created','2025-11-19 10:26:04','2025-11-19 11:26:04'), -(18435,6162,'action started via WP Cron','2025-11-19 11:18:36','2025-11-19 12:18:36'), -(18436,6165,'action created','2025-11-19 11:18:36','2025-11-19 12:18:36'), -(18437,6162,'action complete via WP Cron','2025-11-19 11:18:36','2025-11-19 12:18:36'), -(18438,6165,'action started via WP Cron','2025-11-19 12:19:20','2025-11-19 13:19:20'), -(18439,6166,'action created','2025-11-19 12:19:20','2025-11-19 13:19:20'), -(18440,6165,'action complete via WP Cron','2025-11-19 12:19:20','2025-11-19 13:19:20'), -(18441,6166,'action started via WP Cron','2025-11-19 13:19:20','2025-11-19 14:19:20'), -(18442,6167,'action created','2025-11-19 13:19:20','2025-11-19 14:19:20'), -(18443,6166,'action complete via WP Cron','2025-11-19 13:19:20','2025-11-19 14:19:20'), -(18444,6167,'action started via WP Cron','2025-11-19 14:19:20','2025-11-19 15:19:20'), -(18445,6168,'action created','2025-11-19 14:19:20','2025-11-19 15:19:20'), -(18446,6167,'action complete via WP Cron','2025-11-19 14:19:20','2025-11-19 15:19:20'), -(18447,6168,'action started via WP Cron','2025-11-19 15:20:20','2025-11-19 16:20:20'), -(18448,6169,'action created','2025-11-19 15:20:20','2025-11-19 16:20:20'), -(18449,6168,'action complete via WP Cron','2025-11-19 15:20:20','2025-11-19 16:20:20'), -(18450,6169,'action started via WP Cron','2025-11-19 16:21:20','2025-11-19 17:21:20'), -(18451,6170,'action created','2025-11-19 16:21:20','2025-11-19 17:21:20'), -(18452,6169,'action complete via WP Cron','2025-11-19 16:21:20','2025-11-19 17:21:20'), -(18453,6170,'action started via WP Cron','2025-11-19 17:21:20','2025-11-19 18:21:20'), -(18454,6171,'action created','2025-11-19 17:21:20','2025-11-19 18:21:20'), -(18455,6170,'action complete via WP Cron','2025-11-19 17:21:20','2025-11-19 18:21:20'), -(18456,6171,'action started via WP Cron','2025-11-19 18:21:20','2025-11-19 19:21:20'), -(18457,6172,'action created','2025-11-19 18:21:20','2025-11-19 19:21:20'), -(18458,6171,'action complete via WP Cron','2025-11-19 18:21:20','2025-11-19 19:21:20'), -(18459,6105,'action started via WP Cron','2025-11-19 18:42:20','2025-11-19 19:42:20'), -(18460,6105,'action complete via WP Cron','2025-11-19 18:42:20','2025-11-19 19:42:20'), -(18461,6173,'action created','2025-11-19 18:42:20','2025-11-19 19:42:20'), -(18462,6106,'action started via WP Cron','2025-11-19 18:42:20','2025-11-19 19:42:20'), -(18463,6106,'action complete via WP Cron','2025-11-19 18:42:20','2025-11-19 19:42:20'), -(18464,6174,'action created','2025-11-19 18:42:20','2025-11-19 19:42:20'), -(18465,6172,'action started via WP Cron','2025-11-19 19:21:20','2025-11-19 20:21:20'), -(18466,6175,'action created','2025-11-19 19:21:20','2025-11-19 20:21:20'), -(18467,6172,'action complete via WP Cron','2025-11-19 19:21:20','2025-11-19 20:21:20'), -(18468,6151,'action started via WP Cron','2025-11-19 19:27:20','2025-11-19 20:27:20'), -(18469,6151,'action complete via WP Cron','2025-11-19 19:27:20','2025-11-19 20:27:20'), -(18470,6176,'action created','2025-11-19 19:27:20','2025-11-19 20:27:20'), -(18471,6175,'action started via WP Cron','2025-11-19 20:21:20','2025-11-19 21:21:20'), -(18472,6177,'action created','2025-11-19 20:21:20','2025-11-19 21:21:20'), -(18473,6175,'action complete via WP Cron','2025-11-19 20:21:20','2025-11-19 21:21:20'), -(18474,6177,'action started via WP Cron','2025-11-19 21:21:20','2025-11-19 22:21:20'), -(18475,6178,'action created','2025-11-19 21:21:20','2025-11-19 22:21:20'), -(18476,6177,'action complete via WP Cron','2025-11-19 21:21:20','2025-11-19 22:21:20'), -(18477,6111,'action started via WP Cron','2025-11-19 22:05:20','2025-11-19 23:05:20'), -(18478,6111,'action complete via WP Cron','2025-11-19 22:05:20','2025-11-19 23:05:20'), -(18479,6179,'action created','2025-11-19 22:05:20','2025-11-19 23:05:20'), -(18480,6178,'action started via WP Cron','2025-11-19 22:22:20','2025-11-19 23:22:20'), -(18481,6180,'action created','2025-11-19 22:22:20','2025-11-19 23:22:20'), -(18482,6178,'action complete via WP Cron','2025-11-19 22:22:20','2025-11-19 23:22:20'), -(18483,6180,'action started via WP Cron','2025-11-19 23:22:20','2025-11-20 00:22:20'), -(18484,6181,'action created','2025-11-19 23:22:20','2025-11-20 00:22:20'), -(18485,6180,'action complete via WP Cron','2025-11-19 23:22:21','2025-11-20 00:22:21'), -(18486,6181,'action started via WP Cron','2025-11-20 00:22:20','2025-11-20 01:22:20'), -(18487,6182,'action created','2025-11-20 00:22:20','2025-11-20 01:22:20'), -(18488,6181,'action complete via WP Cron','2025-11-20 00:22:20','2025-11-20 01:22:20'), -(18489,6182,'action started via WP Cron','2025-11-20 01:22:20','2025-11-20 02:22:20'), -(18490,6183,'action created','2025-11-20 01:22:20','2025-11-20 02:22:20'), -(18491,6182,'action complete via WP Cron','2025-11-20 01:22:20','2025-11-20 02:22:20'), -(18492,6183,'action started via WP Cron','2025-11-20 02:22:20','2025-11-20 03:22:20'), -(18493,6184,'action created','2025-11-20 02:22:20','2025-11-20 03:22:20'), -(18494,6183,'action complete via WP Cron','2025-11-20 02:22:21','2025-11-20 03:22:21'), -(18495,6184,'action started via WP Cron','2025-11-20 03:22:21','2025-11-20 04:22:21'), -(18496,6185,'action created','2025-11-20 03:22:21','2025-11-20 04:22:21'), -(18497,6184,'action complete via WP Cron','2025-11-20 03:22:21','2025-11-20 04:22:21'), -(18498,6185,'action started via WP Cron','2025-11-20 04:22:21','2025-11-20 05:22:21'), -(18499,6186,'action created','2025-11-20 04:22:21','2025-11-20 05:22:21'), -(18500,6185,'action complete via WP Cron','2025-11-20 04:22:21','2025-11-20 05:22:21'), -(18501,6148,'action started via WP Cron','2025-11-20 05:00:21','2025-11-20 06:00:21'), -(18502,6148,'action complete via WP Cron','2025-11-20 05:00:21','2025-11-20 06:00:21'), -(18504,6186,'action started via WP Cron','2025-11-20 05:22:21','2025-11-20 06:22:21'), -(18505,6188,'action created','2025-11-20 05:22:21','2025-11-20 06:22:21'), -(18506,6186,'action complete via WP Cron','2025-11-20 05:22:21','2025-11-20 06:22:21'), -(18507,6188,'action started via WP Cron','2025-11-20 06:22:21','2025-11-20 07:22:21'), -(18508,6189,'action created','2025-11-20 06:22:21','2025-11-20 07:22:21'), -(18509,6188,'action complete via WP Cron','2025-11-20 06:22:21','2025-11-20 07:22:21'), -(18510,6189,'action started via WP Cron','2025-11-20 07:22:21','2025-11-20 08:22:21'), -(18511,6190,'action created','2025-11-20 07:22:21','2025-11-20 08:22:21'), -(18512,6189,'action complete via WP Cron','2025-11-20 07:22:21','2025-11-20 08:22:21'), -(18513,6146,'action started via WP Cron','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18514,6146,'action complete via WP Cron','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18515,6191,'action created','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18516,6147,'action started via WP Cron','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18517,6147,'action complete via WP Cron','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18518,6192,'action created','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18519,6150,'action started via WP Cron','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18521,6193,'action created','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18522,6194,'action created','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18523,6150,'action complete via WP Cron','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18524,6195,'action created','2025-11-20 07:25:21','2025-11-20 08:25:21'), -(18525,6194,'action started via WP Cron','2025-11-20 07:26:21','2025-11-20 08:26:21'), -(18526,6194,'action complete via WP Cron','2025-11-20 07:26:21','2025-11-20 08:26:21'), -(18527,6176,'action started via WP Cron','2025-11-20 07:27:21','2025-11-20 08:27:21'), -(18528,6176,'action complete via WP Cron','2025-11-20 07:27:21','2025-11-20 08:27:21'), -(18529,6196,'action created','2025-11-20 07:27:21','2025-11-20 08:27:21'), -(18530,6190,'action started via WP Cron','2025-11-20 08:22:21','2025-11-20 09:22:21'), -(18531,6197,'action created','2025-11-20 08:22:21','2025-11-20 09:22:21'), -(18532,6190,'action complete via WP Cron','2025-11-20 08:22:21','2025-11-20 09:22:21'), -(18533,6197,'action started via WP Cron','2025-11-20 09:22:21','2025-11-20 10:22:21'), -(18534,6198,'action created','2025-11-20 09:22:21','2025-11-20 10:22:21'), -(18535,6197,'action complete via WP Cron','2025-11-20 09:22:21','2025-11-20 10:22:21'), -(18536,6198,'action started via WP Cron','2025-11-20 10:22:21','2025-11-20 11:22:21'), -(18537,6199,'action created','2025-11-20 10:22:21','2025-11-20 11:22:21'), -(18538,6198,'action complete via WP Cron','2025-11-20 10:22:21','2025-11-20 11:22:21'), -(18539,6163,'action started via WP Cron','2025-11-20 10:23:21','2025-11-20 11:23:21'), -(18540,6163,'action complete via WP Cron','2025-11-20 10:23:21','2025-11-20 11:23:21'), -(18541,6200,'action created','2025-11-20 10:23:21','2025-11-20 11:23:21'), -(18542,6164,'action started via WP Cron','2025-11-20 10:26:21','2025-11-20 11:26:21'), -(18543,6164,'action complete via WP Cron','2025-11-20 10:26:21','2025-11-20 11:26:21'), -(18544,6201,'action created','2025-11-20 10:26:21','2025-11-20 11:26:21'), -(18545,6199,'action started via WP Cron','2025-11-20 11:22:45','2025-11-20 12:22:45'), -(18546,6202,'action created','2025-11-20 11:22:45','2025-11-20 12:22:45'), -(18547,6199,'action complete via WP Cron','2025-11-20 11:22:45','2025-11-20 12:22:45'), -(18548,6202,'action started via WP Cron','2025-11-20 12:23:21','2025-11-20 13:23:21'), -(18549,6203,'action created','2025-11-20 12:23:21','2025-11-20 13:23:21'), -(18550,6202,'action complete via WP Cron','2025-11-20 12:23:21','2025-11-20 13:23:21'), -(18551,6203,'action started via WP Cron','2025-11-20 13:23:21','2025-11-20 14:23:21'), -(18552,6204,'action created','2025-11-20 13:23:21','2025-11-20 14:23:21'), -(18553,6203,'action complete via WP Cron','2025-11-20 13:23:21','2025-11-20 14:23:21'), -(18554,6204,'action started via WP Cron','2025-11-20 14:23:21','2025-11-20 15:23:21'), -(18555,6205,'action created','2025-11-20 14:23:21','2025-11-20 15:23:21'), -(18556,6204,'action complete via WP Cron','2025-11-20 14:23:21','2025-11-20 15:23:21'), -(18557,6206,'action created','2025-11-20 14:49:48','2025-11-20 15:49:48'), -(18558,6206,'action started via WP Cron','2025-11-20 14:51:21','2025-11-20 15:51:21'), -(18559,6206,'action complete via WP Cron','2025-11-20 14:51:21','2025-11-20 15:51:21'), -(18560,6207,'action created','2025-11-20 14:51:33','2025-11-20 15:51:33'), -(18561,6207,'action started via WP Cron','2025-11-20 14:53:21','2025-11-20 15:53:21'), -(18562,6207,'action complete via WP Cron','2025-11-20 14:53:21','2025-11-20 15:53:21'), -(18563,6205,'action started via WP Cron','2025-11-20 15:23:21','2025-11-20 16:23:21'), -(18564,6208,'action created','2025-11-20 15:23:21','2025-11-20 16:23:21'), -(18565,6205,'action complete via WP Cron','2025-11-20 15:23:21','2025-11-20 16:23:21'), -(18566,6208,'action started via WP Cron','2025-11-20 16:24:21','2025-11-20 17:24:21'), -(18567,6209,'action created','2025-11-20 16:24:21','2025-11-20 17:24:21'), -(18568,6208,'action complete via WP Cron','2025-11-20 16:24:21','2025-11-20 17:24:21'), -(18569,6209,'action started via WP Cron','2025-11-20 17:24:21','2025-11-20 18:24:21'), -(18570,6210,'action created','2025-11-20 17:24:21','2025-11-20 18:24:21'), -(18571,6209,'action complete via WP Cron','2025-11-20 17:24:21','2025-11-20 18:24:21'), -(18572,6210,'action started via WP Cron','2025-11-20 18:24:21','2025-11-20 19:24:21'), -(18573,6211,'action created','2025-11-20 18:24:21','2025-11-20 19:24:21'), -(18574,6210,'action complete via WP Cron','2025-11-20 18:24:21','2025-11-20 19:24:21'), -(18575,6173,'action started via WP Cron','2025-11-20 18:42:21','2025-11-20 19:42:21'), -(18576,6173,'action complete via WP Cron','2025-11-20 18:42:21','2025-11-20 19:42:21'), -(18577,6212,'action created','2025-11-20 18:42:21','2025-11-20 19:42:21'), -(18578,6174,'action started via WP Cron','2025-11-20 18:42:21','2025-11-20 19:42:21'), -(18579,6174,'action complete via WP Cron','2025-11-20 18:42:21','2025-11-20 19:42:21'), -(18580,6213,'action created','2025-11-20 18:42:21','2025-11-20 19:42:21'), -(18581,6211,'action started via WP Cron','2025-11-20 19:24:21','2025-11-20 20:24:21'), -(18582,6214,'action created','2025-11-20 19:24:21','2025-11-20 20:24:21'), -(18583,6211,'action complete via WP Cron','2025-11-20 19:24:21','2025-11-20 20:24:21'), -(18584,6196,'action started via WP Cron','2025-11-20 19:27:21','2025-11-20 20:27:21'), -(18585,6196,'action complete via WP Cron','2025-11-20 19:27:21','2025-11-20 20:27:21'), -(18586,6215,'action created','2025-11-20 19:27:21','2025-11-20 20:27:21'), -(18587,6214,'action started via WP Cron','2025-11-20 20:24:21','2025-11-20 21:24:21'), -(18588,6216,'action created','2025-11-20 20:24:21','2025-11-20 21:24:21'), -(18589,6214,'action complete via WP Cron','2025-11-20 20:24:21','2025-11-20 21:24:21'), -(18590,6216,'action started via WP Cron','2025-11-20 21:25:21','2025-11-20 22:25:21'), -(18591,6217,'action created','2025-11-20 21:25:21','2025-11-20 22:25:21'), -(18592,6216,'action complete via WP Cron','2025-11-20 21:25:21','2025-11-20 22:25:21'), -(18593,6179,'action started via WP Cron','2025-11-20 22:06:21','2025-11-20 23:06:21'), -(18594,6179,'action complete via WP Cron','2025-11-20 22:06:21','2025-11-20 23:06:21'), -(18595,6218,'action created','2025-11-20 22:06:21','2025-11-20 23:06:21'), -(18596,6217,'action started via WP Cron','2025-11-20 22:25:21','2025-11-20 23:25:21'), -(18597,6219,'action created','2025-11-20 22:25:21','2025-11-20 23:25:21'), -(18598,6217,'action complete via WP Cron','2025-11-20 22:25:21','2025-11-20 23:25:21'), -(18599,6219,'action started via WP Cron','2025-11-20 23:25:21','2025-11-21 00:25:21'), -(18600,6220,'action created','2025-11-20 23:25:21','2025-11-21 00:25:21'), -(18601,6219,'action complete via WP Cron','2025-11-20 23:25:21','2025-11-21 00:25:21'), -(18602,6220,'action started via WP Cron','2025-11-21 00:25:34','2025-11-21 01:25:34'), -(18603,6221,'action created','2025-11-21 00:25:34','2025-11-21 01:25:34'), -(18604,6220,'action complete via WP Cron','2025-11-21 00:25:34','2025-11-21 01:25:34'), -(18605,6221,'action started via WP Cron','2025-11-21 01:26:21','2025-11-21 02:26:21'), -(18606,6222,'action created','2025-11-21 01:26:21','2025-11-21 02:26:21'), -(18607,6221,'action complete via WP Cron','2025-11-21 01:26:21','2025-11-21 02:26:21'), -(18608,6222,'action started via WP Cron','2025-11-21 02:26:21','2025-11-21 03:26:21'), -(18609,6223,'action created','2025-11-21 02:26:21','2025-11-21 03:26:21'), -(18610,6222,'action complete via WP Cron','2025-11-21 02:26:21','2025-11-21 03:26:21'), -(18611,6223,'action started via WP Cron','2025-11-21 03:26:21','2025-11-21 04:26:21'), -(18612,6224,'action created','2025-11-21 03:26:21','2025-11-21 04:26:21'), -(18613,6223,'action complete via WP Cron','2025-11-21 03:26:21','2025-11-21 04:26:21'), -(18614,6224,'action started via WP Cron','2025-11-21 04:26:21','2025-11-21 05:26:21'), -(18615,6225,'action created','2025-11-21 04:26:21','2025-11-21 05:26:21'), -(18616,6224,'action complete via WP Cron','2025-11-21 04:26:21','2025-11-21 05:26:21'), -(18617,6193,'action started via WP Cron','2025-11-21 05:00:21','2025-11-21 06:00:21'), -(18618,6193,'action complete via WP Cron','2025-11-21 05:00:21','2025-11-21 06:00:21'), -(18620,6225,'action started via WP Cron','2025-11-21 05:26:21','2025-11-21 06:26:21'), -(18621,6227,'action created','2025-11-21 05:26:21','2025-11-21 06:26:21'), -(18622,6225,'action complete via WP Cron','2025-11-21 05:26:21','2025-11-21 06:26:21'), -(18623,6227,'action started via WP Cron','2025-11-21 06:26:21','2025-11-21 07:26:21'), -(18624,6228,'action created','2025-11-21 06:26:21','2025-11-21 07:26:21'), -(18625,6227,'action complete via WP Cron','2025-11-21 06:26:21','2025-11-21 07:26:21'), -(18626,6191,'action started via WP Cron','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18627,6191,'action complete via WP Cron','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18628,6229,'action created','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18629,6192,'action started via WP Cron','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18630,6192,'action complete via WP Cron','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18631,6230,'action created','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18632,6195,'action started via WP Cron','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18634,6231,'action created','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18635,6232,'action created','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18636,6195,'action complete via WP Cron','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18637,6233,'action created','2025-11-21 07:25:21','2025-11-21 08:25:21'), -(18638,6232,'action started via WP Cron','2025-11-21 07:26:21','2025-11-21 08:26:21'), -(18639,6232,'action complete via WP Cron','2025-11-21 07:26:21','2025-11-21 08:26:21'), -(18640,6228,'action started via WP Cron','2025-11-21 07:26:21','2025-11-21 08:26:21'), -(18641,6234,'action created','2025-11-21 07:26:21','2025-11-21 08:26:21'), -(18642,6228,'action complete via WP Cron','2025-11-21 07:26:21','2025-11-21 08:26:21'), -(18643,6215,'action started via WP Cron','2025-11-21 07:28:21','2025-11-21 08:28:21'), -(18644,6215,'action complete via WP Cron','2025-11-21 07:28:21','2025-11-21 08:28:21'), -(18645,6235,'action created','2025-11-21 07:28:21','2025-11-21 08:28:21'), -(18646,6234,'action started via WP Cron','2025-11-21 08:26:21','2025-11-21 09:26:21'), -(18647,6236,'action created','2025-11-21 08:26:21','2025-11-21 09:26:21'), -(18648,6234,'action complete via WP Cron','2025-11-21 08:26:21','2025-11-21 09:26:21'), -(18649,6236,'action started via WP Cron','2025-11-21 09:26:21','2025-11-21 10:26:21'), -(18650,6237,'action created','2025-11-21 09:26:21','2025-11-21 10:26:21'), -(18651,6236,'action complete via WP Cron','2025-11-21 09:26:21','2025-11-21 10:26:21'), -(18652,6200,'action started via WP Cron','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18653,6200,'action complete via WP Cron','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18654,6238,'action created','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18655,6201,'action started via WP Cron','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18656,6201,'action complete via WP Cron','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18657,6239,'action created','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18658,6237,'action started via WP Cron','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18659,6240,'action created','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18660,6237,'action complete via WP Cron','2025-11-21 10:28:47','2025-11-21 11:28:47'), -(18661,6240,'action started via WP Cron','2025-11-21 11:52:13','2025-11-21 12:52:13'), -(18662,6241,'action created','2025-11-21 11:52:13','2025-11-21 12:52:13'), -(18663,6240,'action complete via WP Cron','2025-11-21 11:52:13','2025-11-21 12:52:13'), -(18664,6241,'action started via WP Cron','2025-11-21 12:52:48','2025-11-21 13:52:48'), -(18665,6242,'action created','2025-11-21 12:52:48','2025-11-21 13:52:48'), -(18666,6241,'action complete via WP Cron','2025-11-21 12:52:48','2025-11-21 13:52:48'), -(18667,6242,'action started via WP Cron','2025-11-21 14:30:11','2025-11-21 15:30:11'), -(18668,6243,'action created','2025-11-21 14:30:11','2025-11-21 15:30:11'), -(18669,6242,'action complete via WP Cron','2025-11-21 14:30:11','2025-11-21 15:30:11'), -(18670,6243,'action started via WP Cron','2025-11-21 15:32:35','2025-11-21 16:32:35'), -(18671,6244,'action created','2025-11-21 15:32:35','2025-11-21 16:32:35'), -(18672,6243,'action complete via WP Cron','2025-11-21 15:32:35','2025-11-21 16:32:35'), -(18673,6244,'action started via WP Cron','2025-11-21 16:34:25','2025-11-21 17:34:25'), -(18674,6245,'action created','2025-11-21 16:34:25','2025-11-21 17:34:25'), -(18675,6244,'action complete via WP Cron','2025-11-21 16:34:25','2025-11-21 17:34:25'), -(18676,6245,'action started via WP Cron','2025-11-21 17:45:13','2025-11-21 18:45:13'), -(18677,6246,'action created','2025-11-21 17:45:13','2025-11-21 18:45:13'), -(18678,6245,'action complete via WP Cron','2025-11-21 17:45:13','2025-11-21 18:45:13'), -(18679,6212,'action started via WP Cron','2025-11-21 18:44:17','2025-11-21 19:44:17'), -(18680,6212,'action complete via WP Cron','2025-11-21 18:44:17','2025-11-21 19:44:17'), -(18681,6247,'action created','2025-11-21 18:44:17','2025-11-21 19:44:17'), -(18682,6213,'action started via WP Cron','2025-11-21 18:44:17','2025-11-21 19:44:17'), -(18683,6213,'action complete via WP Cron','2025-11-21 18:44:17','2025-11-21 19:44:17'), -(18684,6248,'action created','2025-11-21 18:44:17','2025-11-21 19:44:17'), -(18685,6246,'action started via WP Cron','2025-11-21 18:46:16','2025-11-21 19:46:16'), -(18686,6249,'action created','2025-11-21 18:46:16','2025-11-21 19:46:16'), -(18687,6246,'action complete via WP Cron','2025-11-21 18:46:16','2025-11-21 19:46:16'), -(18688,6235,'action started via WP Cron','2025-11-21 19:35:54','2025-11-21 20:35:54'), -(18689,6235,'action complete via WP Cron','2025-11-21 19:35:54','2025-11-21 20:35:54'), -(18690,6250,'action created','2025-11-21 19:35:54','2025-11-21 20:35:54'), -(18691,6249,'action started via WP Cron','2025-11-21 19:48:24','2025-11-21 20:48:24'), -(18692,6251,'action created','2025-11-21 19:48:24','2025-11-21 20:48:24'), -(18693,6249,'action complete via WP Cron','2025-11-21 19:48:24','2025-11-21 20:48:24'), -(18694,6251,'action started via WP Cron','2025-11-21 20:55:42','2025-11-21 21:55:42'), -(18695,6252,'action created','2025-11-21 20:55:42','2025-11-21 21:55:42'), -(18696,6251,'action complete via WP Cron','2025-11-21 20:55:42','2025-11-21 21:55:42'), -(18697,6252,'action started via WP Cron','2025-11-21 22:05:43','2025-11-21 23:05:43'), -(18698,6253,'action created','2025-11-21 22:05:43','2025-11-21 23:05:43'), -(18699,6252,'action complete via WP Cron','2025-11-21 22:05:43','2025-11-21 23:05:43'), -(18700,6218,'action started via WP Cron','2025-11-21 22:09:41','2025-11-21 23:09:41'), -(18701,6218,'action complete via WP Cron','2025-11-21 22:09:41','2025-11-21 23:09:41'), -(18702,6254,'action created','2025-11-21 22:09:41','2025-11-21 23:09:41'), -(18703,6253,'action started via WP Cron','2025-11-21 23:06:26','2025-11-22 00:06:26'), -(18704,6255,'action created','2025-11-21 23:06:26','2025-11-22 00:06:26'), -(18705,6253,'action complete via WP Cron','2025-11-21 23:06:26','2025-11-22 00:06:26'), -(18706,6255,'action started via WP Cron','2025-11-22 00:42:41','2025-11-22 01:42:41'), -(18707,6256,'action created','2025-11-22 00:42:41','2025-11-22 01:42:41'), -(18708,6255,'action complete via WP Cron','2025-11-22 00:42:41','2025-11-22 01:42:41'), -(18709,6256,'action started via WP Cron','2025-11-22 01:46:16','2025-11-22 02:46:16'), -(18710,6257,'action created','2025-11-22 01:46:16','2025-11-22 02:46:16'), -(18711,6256,'action complete via WP Cron','2025-11-22 01:46:16','2025-11-22 02:46:16'), -(18712,6257,'action started via WP Cron','2025-11-22 03:19:54','2025-11-22 04:19:54'), -(18713,6258,'action created','2025-11-22 03:19:54','2025-11-22 04:19:54'), -(18714,6257,'action complete via WP Cron','2025-11-22 03:19:54','2025-11-22 04:19:54'), -(18715,6258,'action started via WP Cron','2025-11-22 04:22:25','2025-11-22 05:22:25'), -(18716,6259,'action created','2025-11-22 04:22:25','2025-11-22 05:22:25'), -(18717,6258,'action complete via WP Cron','2025-11-22 04:22:25','2025-11-22 05:22:25'), -(18718,6231,'action started via WP Cron','2025-11-22 05:03:20','2025-11-22 06:03:20'), -(18719,6231,'action complete via WP Cron','2025-11-22 05:03:20','2025-11-22 06:03:20'), -(18721,6259,'action started via WP Cron','2025-11-22 05:25:25','2025-11-22 06:25:25'), -(18722,6261,'action created','2025-11-22 05:25:25','2025-11-22 06:25:25'), -(18723,6259,'action complete via WP Cron','2025-11-22 05:25:25','2025-11-22 06:25:25'), -(18724,6261,'action started via WP Cron','2025-11-22 06:40:16','2025-11-22 07:40:16'), -(18725,6262,'action created','2025-11-22 06:40:16','2025-11-22 07:40:16'), -(18726,6261,'action complete via WP Cron','2025-11-22 06:40:16','2025-11-22 07:40:16'), -(18727,5666,'action started via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18728,5666,'action complete via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18729,6263,'action created','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18730,6229,'action started via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18731,6229,'action complete via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18732,6264,'action created','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18733,6230,'action started via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18734,6230,'action complete via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18735,6265,'action created','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18736,6233,'action started via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18738,6266,'action created','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18739,6267,'action created','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18740,6233,'action complete via WP Cron','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18741,6268,'action created','2025-11-22 07:34:38','2025-11-22 08:34:38'), -(18742,6267,'action started via WP Cron','2025-11-22 07:37:06','2025-11-22 08:37:06'), -(18743,6267,'action complete via WP Cron','2025-11-22 07:37:06','2025-11-22 08:37:06'), -(18744,6250,'action started via WP Cron','2025-11-22 07:37:06','2025-11-22 08:37:06'), -(18745,6250,'action complete via WP Cron','2025-11-22 07:37:06','2025-11-22 08:37:06'), -(18746,6269,'action created','2025-11-22 07:37:06','2025-11-22 08:37:06'), -(18747,6262,'action started via WP Cron','2025-11-22 07:54:06','2025-11-22 08:54:06'), -(18748,6270,'action created','2025-11-22 07:54:06','2025-11-22 08:54:06'), -(18749,6262,'action complete via WP Cron','2025-11-22 07:54:06','2025-11-22 08:54:06'), -(18750,6270,'action started via WP Cron','2025-11-22 08:58:19','2025-11-22 09:58:19'), -(18751,6271,'action created','2025-11-22 08:58:19','2025-11-22 09:58:19'), -(18752,6270,'action complete via WP Cron','2025-11-22 08:58:19','2025-11-22 09:58:19'), -(18753,6271,'action started via WP Cron','2025-11-22 10:21:20','2025-11-22 11:21:20'), -(18754,6272,'action created','2025-11-22 10:21:20','2025-11-22 11:21:20'), -(18755,6271,'action complete via WP Cron','2025-11-22 10:21:20','2025-11-22 11:21:20'), -(18756,6238,'action started via WP Cron','2025-11-22 10:30:32','2025-11-22 11:30:32'), -(18757,6238,'action complete via WP Cron','2025-11-22 10:30:32','2025-11-22 11:30:32'), -(18758,6273,'action created','2025-11-22 10:30:32','2025-11-22 11:30:32'), -(18759,6239,'action started via WP Cron','2025-11-22 10:30:32','2025-11-22 11:30:32'), -(18760,6239,'action complete via WP Cron','2025-11-22 10:30:32','2025-11-22 11:30:32'), -(18761,6274,'action created','2025-11-22 10:30:32','2025-11-22 11:30:32'), -(18762,6272,'action started via WP Cron','2025-11-22 11:26:04','2025-11-22 12:26:04'), -(18763,6275,'action created','2025-11-22 11:26:04','2025-11-22 12:26:04'), -(18764,6272,'action complete via WP Cron','2025-11-22 11:26:04','2025-11-22 12:26:04'), -(18765,6275,'action started via WP Cron','2025-11-22 12:34:45','2025-11-22 13:34:45'), -(18766,6276,'action created','2025-11-22 12:34:45','2025-11-22 13:34:45'), -(18767,6275,'action complete via WP Cron','2025-11-22 12:34:45','2025-11-22 13:34:45'), -(18768,6276,'action started via WP Cron','2025-11-22 13:35:36','2025-11-22 14:35:36'), -(18769,6277,'action created','2025-11-22 13:35:36','2025-11-22 14:35:36'), -(18770,6276,'action complete via WP Cron','2025-11-22 13:35:36','2025-11-22 14:35:36'), -(18771,6277,'action started via WP Cron','2025-11-22 14:39:11','2025-11-22 15:39:11'), -(18772,6278,'action created','2025-11-22 14:39:11','2025-11-22 15:39:11'), -(18773,6277,'action complete via WP Cron','2025-11-22 14:39:11','2025-11-22 15:39:11'), -(18774,6278,'action started via WP Cron','2025-11-22 15:47:50','2025-11-22 16:47:50'), -(18775,6279,'action created','2025-11-22 15:47:50','2025-11-22 16:47:50'), -(18776,6278,'action complete via WP Cron','2025-11-22 15:47:50','2025-11-22 16:47:50'), -(18777,6279,'action started via WP Cron','2025-11-22 16:51:44','2025-11-22 17:51:44'), -(18778,6280,'action created','2025-11-22 16:51:44','2025-11-22 17:51:44'), -(18779,6279,'action complete via WP Cron','2025-11-22 16:51:44','2025-11-22 17:51:44'), -(18780,6280,'action started via WP Cron','2025-11-22 17:56:03','2025-11-22 18:56:03'), -(18781,6281,'action created','2025-11-22 17:56:03','2025-11-22 18:56:03'), -(18782,6280,'action complete via WP Cron','2025-11-22 17:56:03','2025-11-22 18:56:03'), -(18783,6247,'action started via WP Cron','2025-11-22 18:46:47','2025-11-22 19:46:47'), -(18784,6247,'action complete via WP Cron','2025-11-22 18:46:47','2025-11-22 19:46:47'), -(18785,6282,'action created','2025-11-22 18:46:47','2025-11-22 19:46:47'), -(18786,6248,'action started via WP Cron','2025-11-22 18:46:47','2025-11-22 19:46:47'), -(18787,6248,'action complete via WP Cron','2025-11-22 18:46:47','2025-11-22 19:46:47'), -(18788,6283,'action created','2025-11-22 18:46:47','2025-11-22 19:46:47'), -(18789,6281,'action started via WP Cron','2025-11-22 18:58:17','2025-11-22 19:58:17'), -(18790,6284,'action created','2025-11-22 18:58:17','2025-11-22 19:58:17'), -(18791,6281,'action complete via WP Cron','2025-11-22 18:58:17','2025-11-22 19:58:17'), -(18792,6269,'action started via WP Cron','2025-11-22 19:41:00','2025-11-22 20:41:00'), -(18793,6269,'action complete via WP Cron','2025-11-22 19:41:00','2025-11-22 20:41:00'), -(18794,6285,'action created','2025-11-22 19:41:00','2025-11-22 20:41:00'), -(18795,6284,'action started via WP Cron','2025-11-22 20:03:55','2025-11-22 21:03:55'), -(18796,6286,'action created','2025-11-22 20:03:55','2025-11-22 21:03:55'), -(18797,6284,'action complete via WP Cron','2025-11-22 20:03:55','2025-11-22 21:03:55'), -(18798,6286,'action started via WP Cron','2025-11-22 21:27:19','2025-11-22 22:27:19'), -(18799,6287,'action created','2025-11-22 21:27:19','2025-11-22 22:27:19'), -(18800,6286,'action complete via WP Cron','2025-11-22 21:27:19','2025-11-22 22:27:19'), -(18801,6254,'action started via WP Cron','2025-11-22 22:18:59','2025-11-22 23:18:59'), -(18802,6254,'action complete via WP Cron','2025-11-22 22:18:59','2025-11-22 23:18:59'), -(18803,6288,'action created','2025-11-22 22:18:59','2025-11-22 23:18:59'), -(18804,6287,'action started via WP Cron','2025-11-22 22:29:28','2025-11-22 23:29:28'), -(18805,6289,'action created','2025-11-22 22:29:28','2025-11-22 23:29:28'), -(18806,6287,'action complete via WP Cron','2025-11-22 22:29:28','2025-11-22 23:29:28'), -(18807,6289,'action started via WP Cron','2025-11-22 23:57:54','2025-11-23 00:57:54'), -(18808,6290,'action created','2025-11-22 23:57:54','2025-11-23 00:57:54'), -(18809,6289,'action complete via WP Cron','2025-11-22 23:57:54','2025-11-23 00:57:54'), -(18810,6290,'action started via WP Cron','2025-11-23 01:22:00','2025-11-23 02:22:00'), -(18811,6291,'action created','2025-11-23 01:22:00','2025-11-23 02:22:00'), -(18812,6290,'action complete via WP Cron','2025-11-23 01:22:00','2025-11-23 02:22:00'), -(18813,6291,'action started via WP Cron','2025-11-23 02:33:18','2025-11-23 03:33:18'), -(18814,6292,'action created','2025-11-23 02:33:18','2025-11-23 03:33:18'), -(18815,6291,'action complete via WP Cron','2025-11-23 02:33:18','2025-11-23 03:33:18'), -(18816,6292,'action started via WP Cron','2025-11-23 03:41:34','2025-11-23 04:41:34'), -(18817,6293,'action created','2025-11-23 03:41:34','2025-11-23 04:41:34'), -(18818,6292,'action complete via WP Cron','2025-11-23 03:41:34','2025-11-23 04:41:34'), -(18819,6293,'action started via WP Cron','2025-11-23 05:07:58','2025-11-23 06:07:58'), -(18820,6294,'action created','2025-11-23 05:07:58','2025-11-23 06:07:58'), -(18821,6293,'action complete via WP Cron','2025-11-23 05:07:58','2025-11-23 06:07:58'), -(18822,6266,'action started via WP Cron','2025-11-23 05:07:58','2025-11-23 06:07:58'), -(18823,6266,'action complete via WP Cron','2025-11-23 05:07:58','2025-11-23 06:07:58'), -(18825,6294,'action started via WP Cron','2025-11-23 06:15:38','2025-11-23 07:15:38'), -(18826,6296,'action created','2025-11-23 06:15:38','2025-11-23 07:15:38'), -(18827,6294,'action complete via WP Cron','2025-11-23 06:15:38','2025-11-23 07:15:38'), -(18828,6296,'action started via WP Cron','2025-11-23 07:20:06','2025-11-23 08:20:06'), -(18829,6297,'action created','2025-11-23 07:20:06','2025-11-23 08:20:06'), -(18830,6296,'action complete via WP Cron','2025-11-23 07:20:06','2025-11-23 08:20:06'), -(18831,6264,'action started via WP Cron','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18832,6264,'action complete via WP Cron','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18833,6298,'action created','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18834,6265,'action started via WP Cron','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18835,6265,'action complete via WP Cron','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18836,6299,'action created','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18837,6268,'action started via WP Cron','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18839,6300,'action created','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18840,6301,'action created','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18841,6268,'action complete via WP Cron','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18842,6302,'action created','2025-11-23 07:36:19','2025-11-23 08:36:19'), -(18843,6301,'action started via WP Cron','2025-11-23 07:51:14','2025-11-23 08:51:14'), -(18844,6301,'action complete via WP Cron','2025-11-23 07:51:14','2025-11-23 08:51:14'), -(18845,6285,'action started via WP Cron','2025-11-23 07:51:14','2025-11-23 08:51:14'), -(18846,6285,'action complete via WP Cron','2025-11-23 07:51:14','2025-11-23 08:51:14'), -(18847,6303,'action created','2025-11-23 07:51:14','2025-11-23 08:51:14'), -(18848,6297,'action started via WP Cron','2025-11-23 08:20:40','2025-11-23 09:20:40'), -(18849,6304,'action created','2025-11-23 08:20:40','2025-11-23 09:20:40'), -(18850,6297,'action complete via WP Cron','2025-11-23 08:20:40','2025-11-23 09:20:40'), -(18851,6304,'action started via WP Cron','2025-11-23 09:25:35','2025-11-23 10:25:35'), -(18852,6305,'action created','2025-11-23 09:25:35','2025-11-23 10:25:35'), -(18853,6304,'action complete via WP Cron','2025-11-23 09:25:35','2025-11-23 10:25:35'), -(18854,6305,'action started via WP Cron','2025-11-23 10:26:17','2025-11-23 11:26:17'), -(18855,6306,'action created','2025-11-23 10:26:17','2025-11-23 11:26:17'), -(18856,6305,'action complete via WP Cron','2025-11-23 10:26:17','2025-11-23 11:26:17'), -(18857,6273,'action started via WP Cron','2025-11-23 10:30:32','2025-11-23 11:30:32'), -(18858,6273,'action complete via WP Cron','2025-11-23 10:30:32','2025-11-23 11:30:32'), -(18859,6307,'action created','2025-11-23 10:30:32','2025-11-23 11:30:32'), -(18860,6274,'action started via WP Cron','2025-11-23 10:30:32','2025-11-23 11:30:32'), -(18861,6274,'action complete via WP Cron','2025-11-23 10:30:32','2025-11-23 11:30:32'), -(18862,6308,'action created','2025-11-23 10:30:32','2025-11-23 11:30:32'), -(18863,6306,'action started via WP Cron','2025-11-23 11:28:04','2025-11-23 12:28:04'), -(18864,6309,'action created','2025-11-23 11:28:04','2025-11-23 12:28:04'), -(18865,6306,'action complete via WP Cron','2025-11-23 11:28:04','2025-11-23 12:28:04'), -(18866,6309,'action started via WP Cron','2025-11-23 12:38:48','2025-11-23 13:38:48'), -(18867,6310,'action created','2025-11-23 12:38:48','2025-11-23 13:38:48'), -(18868,6309,'action complete via WP Cron','2025-11-23 12:38:48','2025-11-23 13:38:48'), -(18869,6310,'action started via WP Cron','2025-11-23 13:58:43','2025-11-23 14:58:43'), -(18870,6311,'action created','2025-11-23 13:58:43','2025-11-23 14:58:43'), -(18871,6310,'action complete via WP Cron','2025-11-23 13:58:43','2025-11-23 14:58:43'), -(18872,6311,'action started via WP Cron','2025-11-23 15:18:26','2025-11-23 16:18:26'), -(18873,6312,'action created','2025-11-23 15:18:26','2025-11-23 16:18:26'), -(18874,6311,'action complete via WP Cron','2025-11-23 15:18:26','2025-11-23 16:18:26'), -(18875,6312,'action started via WP Cron','2025-11-23 16:21:50','2025-11-23 17:21:50'), -(18876,6313,'action created','2025-11-23 16:21:50','2025-11-23 17:21:50'), -(18877,6312,'action complete via WP Cron','2025-11-23 16:21:50','2025-11-23 17:21:50'), -(18878,6313,'action started via WP Cron','2025-11-23 17:26:10','2025-11-23 18:26:10'), -(18879,6314,'action created','2025-11-23 17:26:10','2025-11-23 18:26:10'), -(18880,6313,'action complete via WP Cron','2025-11-23 17:26:10','2025-11-23 18:26:10'), -(18881,6314,'action started via WP Cron','2025-11-23 18:27:59','2025-11-23 19:27:59'), -(18882,6315,'action created','2025-11-23 18:27:59','2025-11-23 19:27:59'), -(18883,6314,'action complete via WP Cron','2025-11-23 18:27:59','2025-11-23 19:27:59'), -(18884,6282,'action started via WP Cron','2025-11-23 18:50:13','2025-11-23 19:50:13'), -(18885,6282,'action complete via WP Cron','2025-11-23 18:50:13','2025-11-23 19:50:13'), -(18886,6316,'action created','2025-11-23 18:50:13','2025-11-23 19:50:13'), -(18887,6283,'action started via WP Cron','2025-11-23 18:50:13','2025-11-23 19:50:13'), -(18888,6283,'action complete via WP Cron','2025-11-23 18:50:13','2025-11-23 19:50:13'), -(18889,6317,'action created','2025-11-23 18:50:13','2025-11-23 19:50:13'), -(18890,6315,'action started via WP Cron','2025-11-23 19:32:28','2025-11-23 20:32:28'), -(18891,6318,'action created','2025-11-23 19:32:28','2025-11-23 20:32:28'), -(18892,6315,'action complete via WP Cron','2025-11-23 19:32:28','2025-11-23 20:32:28'), -(18893,6303,'action started via WP Cron','2025-11-23 19:56:58','2025-11-23 20:56:58'), -(18894,6303,'action complete via WP Cron','2025-11-23 19:56:58','2025-11-23 20:56:58'), -(18895,6319,'action created','2025-11-23 19:56:58','2025-11-23 20:56:58'), -(18896,6318,'action started via WP Cron','2025-11-23 20:35:49','2025-11-23 21:35:49'), -(18897,6320,'action created','2025-11-23 20:35:49','2025-11-23 21:35:49'), -(18898,6318,'action complete via WP Cron','2025-11-23 20:35:49','2025-11-23 21:35:49'), -(18899,6320,'action started via WP Cron','2025-11-23 21:36:02','2025-11-23 22:36:02'), -(18900,6321,'action created','2025-11-23 21:36:02','2025-11-23 22:36:02'), -(18901,6320,'action complete via WP Cron','2025-11-23 21:36:02','2025-11-23 22:36:02'), -(18902,6288,'action started via WP Cron','2025-11-23 22:19:11','2025-11-23 23:19:11'), -(18903,6288,'action complete via WP Cron','2025-11-23 22:19:11','2025-11-23 23:19:11'), -(18904,6322,'action created','2025-11-23 22:19:11','2025-11-23 23:19:11'), -(18905,6321,'action started via WP Cron','2025-11-23 22:43:55','2025-11-23 23:43:55'), -(18906,6323,'action created','2025-11-23 22:43:55','2025-11-23 23:43:55'), -(18907,6321,'action complete via WP Cron','2025-11-23 22:43:55','2025-11-23 23:43:55'), -(18908,6323,'action started via WP Cron','2025-11-23 23:45:41','2025-11-24 00:45:41'), -(18909,6324,'action created','2025-11-23 23:45:41','2025-11-24 00:45:41'), -(18910,6323,'action complete via WP Cron','2025-11-23 23:45:41','2025-11-24 00:45:41'), -(18911,6324,'action started via WP Cron','2025-11-24 00:46:15','2025-11-24 01:46:15'), -(18912,6325,'action created','2025-11-24 00:46:15','2025-11-24 01:46:15'), -(18913,6324,'action complete via WP Cron','2025-11-24 00:46:15','2025-11-24 01:46:15'), -(18914,6325,'action started via WP Cron','2025-11-24 01:47:44','2025-11-24 02:47:44'), -(18915,6326,'action created','2025-11-24 01:47:44','2025-11-24 02:47:44'), -(18916,6325,'action complete via WP Cron','2025-11-24 01:47:44','2025-11-24 02:47:44'), -(18917,6326,'action started via WP Cron','2025-11-24 03:20:47','2025-11-24 04:20:47'), -(18918,6327,'action created','2025-11-24 03:20:47','2025-11-24 04:20:47'), -(18919,6326,'action complete via WP Cron','2025-11-24 03:20:47','2025-11-24 04:20:47'), -(18920,6327,'action started via WP Cron','2025-11-24 04:26:37','2025-11-24 05:26:37'), -(18921,6328,'action created','2025-11-24 04:26:37','2025-11-24 05:26:37'), -(18922,6327,'action complete via WP Cron','2025-11-24 04:26:37','2025-11-24 05:26:37'), -(18923,6300,'action started via WP Cron','2025-11-24 05:15:25','2025-11-24 06:15:25'), -(18924,6300,'action complete via WP Cron','2025-11-24 05:15:25','2025-11-24 06:15:25'), -(18926,6328,'action started via WP Cron','2025-11-24 05:42:21','2025-11-24 06:42:21'), -(18927,6330,'action created','2025-11-24 05:42:21','2025-11-24 06:42:21'), -(18928,6328,'action complete via WP Cron','2025-11-24 05:42:21','2025-11-24 06:42:21'), -(18929,6330,'action started via WP Cron','2025-11-24 07:16:16','2025-11-24 08:16:16'), -(18930,6331,'action created','2025-11-24 07:16:16','2025-11-24 08:16:16'), -(18931,6330,'action complete via WP Cron','2025-11-24 07:16:16','2025-11-24 08:16:16'), -(18932,6298,'action started via WP Cron','2025-11-24 07:48:01','2025-11-24 08:48:01'), -(18933,6298,'action complete via WP Cron','2025-11-24 07:48:01','2025-11-24 08:48:01'), -(18934,6332,'action created','2025-11-24 07:48:01','2025-11-24 08:48:01'), -(18935,6299,'action started via WP Cron','2025-11-24 07:48:01','2025-11-24 08:48:01'), -(18936,6299,'action complete via WP Cron','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18937,6333,'action created','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18938,6302,'action started via WP Cron','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18940,6334,'action created','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18941,6335,'action created','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18942,6302,'action complete via WP Cron','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18943,6336,'action created','2025-11-24 07:48:02','2025-11-24 08:48:02'), -(18944,6335,'action started via WP Cron','2025-11-24 08:02:12','2025-11-24 09:02:12'), -(18945,6335,'action complete via WP Cron','2025-11-24 08:02:12','2025-11-24 09:02:12'), -(18946,6319,'action started via WP Cron','2025-11-24 08:02:12','2025-11-24 09:02:12'), -(18947,6319,'action complete via WP Cron','2025-11-24 08:02:12','2025-11-24 09:02:12'), -(18948,6337,'action created','2025-11-24 08:02:12','2025-11-24 09:02:12'), -(18949,6331,'action started via WP Cron','2025-11-24 08:17:15','2025-11-24 09:17:15'), -(18950,6338,'action created','2025-11-24 08:17:15','2025-11-24 09:17:15'), -(18951,6331,'action complete via WP Cron','2025-11-24 08:17:15','2025-11-24 09:17:15'), -(18952,6338,'action started via WP Cron','2025-11-24 09:18:53','2025-11-24 10:18:53'), -(18953,6339,'action created','2025-11-24 09:18:53','2025-11-24 10:18:53'), -(18954,6338,'action complete via WP Cron','2025-11-24 09:18:53','2025-11-24 10:18:53'), -(18955,6340,'action created','2025-11-24 09:50:48','2025-11-24 10:50:48'), -(18956,6340,'action started via Async Request','2025-11-24 09:51:23','2025-11-24 10:51:23'), -(18957,6340,'action complete via Async Request','2025-11-24 09:51:23','2025-11-24 10:51:23'), -(18958,6341,'action created','2025-11-24 09:53:37','2025-11-24 10:53:37'), -(18959,6341,'action started via WP Cron','2025-11-24 09:55:10','2025-11-24 10:55:10'), -(18960,6341,'action complete via WP Cron','2025-11-24 09:55:10','2025-11-24 10:55:10'), -(18961,6339,'action started via WP Cron','2025-11-24 10:23:03','2025-11-24 11:23:03'), -(18962,6342,'action created','2025-11-24 10:23:03','2025-11-24 11:23:03'), -(18963,6339,'action complete via WP Cron','2025-11-24 10:23:03','2025-11-24 11:23:03'), -(18964,6307,'action started via WP Cron','2025-11-24 10:31:27','2025-11-24 11:31:27'), -(18965,6307,'action complete via WP Cron','2025-11-24 10:31:27','2025-11-24 11:31:27'), -(18966,6343,'action created','2025-11-24 10:31:27','2025-11-24 11:31:27'), -(18967,6308,'action started via WP Cron','2025-11-24 10:31:27','2025-11-24 11:31:27'), -(18968,6308,'action complete via WP Cron','2025-11-24 10:31:27','2025-11-24 11:31:27'), -(18969,6344,'action created','2025-11-24 10:31:27','2025-11-24 11:31:27'), -(18970,6342,'action started via WP Cron','2025-11-24 11:26:04','2025-11-24 12:26:04'), -(18971,6345,'action created','2025-11-24 11:26:04','2025-11-24 12:26:04'), -(18972,6342,'action complete via WP Cron','2025-11-24 11:26:04','2025-11-24 12:26:04'), -(18973,6345,'action started via WP Cron','2025-11-24 12:38:58','2025-11-24 13:38:58'), -(18974,6346,'action created','2025-11-24 12:38:58','2025-11-24 13:38:58'), -(18975,6345,'action complete via WP Cron','2025-11-24 12:38:58','2025-11-24 13:38:58'), -(18976,6346,'action started via WP Cron','2025-11-24 13:39:10','2025-11-24 14:39:10'), -(18977,6347,'action created','2025-11-24 13:39:10','2025-11-24 14:39:10'), -(18978,6346,'action complete via WP Cron','2025-11-24 13:39:10','2025-11-24 14:39:10'), -(18979,6347,'action started via WP Cron','2025-11-24 14:39:41','2025-11-24 15:39:41'), -(18980,6348,'action created','2025-11-24 14:39:41','2025-11-24 15:39:41'), -(18981,6347,'action complete via WP Cron','2025-11-24 14:39:41','2025-11-24 15:39:41'), -(18982,6348,'action started via WP Cron','2025-11-24 16:02:42','2025-11-24 17:02:42'), -(18983,6349,'action created','2025-11-24 16:02:42','2025-11-24 17:02:42'), -(18984,6348,'action complete via WP Cron','2025-11-24 16:02:42','2025-11-24 17:02:42'), -(18985,6349,'action started via WP Cron','2025-11-24 17:18:42','2025-11-24 18:18:42'), -(18986,6350,'action created','2025-11-24 17:18:42','2025-11-24 18:18:42'), -(18987,6349,'action complete via WP Cron','2025-11-24 17:18:42','2025-11-24 18:18:42'), -(18988,6351,'action created','2025-11-24 17:43:34','2025-11-24 18:43:34'), -(18989,6351,'action started via WP Cron','2025-11-24 17:44:41','2025-11-24 18:44:41'), -(18990,6351,'action complete via WP Cron','2025-11-24 17:44:41','2025-11-24 18:44:41'), -(18991,6352,'action created','2025-11-24 17:44:42','2025-11-24 18:44:42'), -(18992,6352,'action started via WP Cron','2025-11-24 17:54:51','2025-11-24 18:54:51'), -(18993,6352,'action complete via WP Cron','2025-11-24 17:54:51','2025-11-24 18:54:51'), -(18994,6350,'action started via WP Cron','2025-11-24 18:29:08','2025-11-24 19:29:08'), -(18995,6353,'action created','2025-11-24 18:29:08','2025-11-24 19:29:08'), -(18996,6350,'action complete via WP Cron','2025-11-24 18:29:08','2025-11-24 19:29:08'), -(18997,6354,'action created','2025-11-24 18:30:04','2025-11-24 19:30:04'), -(18998,6354,'action started via Async Request','2025-11-24 18:30:11','2025-11-24 19:30:11'), -(18999,6354,'action complete via Async Request','2025-11-24 18:30:11','2025-11-24 19:30:11'), -(19000,6355,'action created','2025-11-24 18:30:32','2025-11-24 19:30:32'), -(19001,6355,'action started via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19002,6355,'action complete via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19003,6316,'action started via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19004,6316,'action complete via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19005,6356,'action created','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19006,6317,'action started via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19007,6317,'action complete via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19008,6357,'action created','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19009,6353,'action started via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19010,6358,'action created','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19011,6353,'action complete via WP Cron','2025-11-24 19:42:30','2025-11-24 20:42:30'), -(19012,6337,'action started via WP Cron','2025-11-24 20:15:34','2025-11-24 21:15:34'), -(19013,6337,'action complete via WP Cron','2025-11-24 20:15:34','2025-11-24 21:15:34'), -(19014,6359,'action created','2025-11-24 20:15:34','2025-11-24 21:15:34'), -(19015,6358,'action started via WP Cron','2025-11-24 21:33:12','2025-11-24 22:33:12'), -(19016,6360,'action created','2025-11-24 21:33:12','2025-11-24 22:33:12'), -(19017,6358,'action complete via WP Cron','2025-11-24 21:33:12','2025-11-24 22:33:12'), -(19018,6322,'action started via WP Cron','2025-11-24 22:21:34','2025-11-24 23:21:34'), -(19019,6322,'action complete via WP Cron','2025-11-24 22:21:34','2025-11-24 23:21:34'), -(19020,6361,'action created','2025-11-24 22:21:34','2025-11-24 23:21:34'), -(19021,6360,'action started via WP Cron','2025-11-24 22:34:34','2025-11-24 23:34:34'), -(19022,6362,'action created','2025-11-24 22:34:34','2025-11-24 23:34:34'), -(19023,6360,'action complete via WP Cron','2025-11-24 22:34:34','2025-11-24 23:34:34'), -(19024,6362,'action started via WP Cron','2025-11-24 23:35:47','2025-11-25 00:35:47'), -(19025,6363,'action created','2025-11-24 23:35:47','2025-11-25 00:35:47'), -(19026,6362,'action complete via WP Cron','2025-11-24 23:35:47','2025-11-25 00:35:47'), -(19027,6363,'action started via WP Cron','2025-11-25 00:40:06','2025-11-25 01:40:06'), -(19028,6364,'action created','2025-11-25 00:40:06','2025-11-25 01:40:06'), -(19029,6363,'action complete via WP Cron','2025-11-25 00:40:06','2025-11-25 01:40:06'), -(19030,6364,'action started via WP Cron','2025-11-25 01:44:24','2025-11-25 02:44:24'), -(19031,6365,'action created','2025-11-25 01:44:24','2025-11-25 02:44:24'), -(19032,6364,'action complete via WP Cron','2025-11-25 01:44:24','2025-11-25 02:44:24'), -(19033,6365,'action started via WP Cron','2025-11-25 02:56:05','2025-11-25 03:56:05'), -(19034,6366,'action created','2025-11-25 02:56:05','2025-11-25 03:56:05'), -(19035,6365,'action complete via WP Cron','2025-11-25 02:56:05','2025-11-25 03:56:05'), -(19036,6366,'action started via WP Cron','2025-11-25 04:11:50','2025-11-25 05:11:50'), -(19037,6367,'action created','2025-11-25 04:11:50','2025-11-25 05:11:50'), -(19038,6366,'action complete via WP Cron','2025-11-25 04:11:50','2025-11-25 05:11:50'), -(19039,6075,'action started via WP Cron','2025-11-25 04:11:50','2025-11-25 05:11:50'), -(19040,6075,'action complete via WP Cron','2025-11-25 04:11:50','2025-11-25 05:11:50'), -(19041,6368,'action created','2025-11-25 04:11:50','2025-11-25 05:11:50'), -(19042,6334,'action started via WP Cron','2025-11-25 05:05:04','2025-11-25 06:05:04'), -(19043,6334,'action complete via WP Cron','2025-11-25 05:05:04','2025-11-25 06:05:04'), -(19045,6367,'action started via WP Cron','2025-11-25 05:26:08','2025-11-25 06:26:08'), -(19046,6370,'action created','2025-11-25 05:26:08','2025-11-25 06:26:08'), -(19047,6367,'action complete via WP Cron','2025-11-25 05:26:08','2025-11-25 06:26:08'), -(19048,6370,'action started via WP Cron','2025-11-25 06:46:46','2025-11-25 07:46:46'), -(19049,6371,'action created','2025-11-25 06:46:46','2025-11-25 07:46:46'), -(19050,6370,'action complete via WP Cron','2025-11-25 06:46:46','2025-11-25 07:46:46'), -(19051,6371,'action started via WP Cron','2025-11-25 07:49:33','2025-11-25 08:49:33'), -(19052,6372,'action created','2025-11-25 07:49:33','2025-11-25 08:49:33'), -(19053,6371,'action complete via WP Cron','2025-11-25 07:49:33','2025-11-25 08:49:33'), -(19054,6332,'action started via WP Cron','2025-11-25 07:49:33','2025-11-25 08:49:33'), -(19055,6332,'action complete via WP Cron','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19056,6373,'action created','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19057,6333,'action started via WP Cron','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19058,6333,'action complete via WP Cron','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19059,6374,'action created','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19060,6336,'action started via WP Cron','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19062,6375,'action created','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19063,6376,'action created','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19064,6336,'action complete via WP Cron','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19065,6377,'action created','2025-11-25 07:49:34','2025-11-25 08:49:34'), -(19066,6376,'action started via WP Cron','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19067,6376,'action complete via WP Cron','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19068,6359,'action started via WP Cron','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19069,6359,'action complete via WP Cron','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19070,6378,'action created','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19071,6372,'action started via WP Cron','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19072,6379,'action created','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19073,6372,'action complete via WP Cron','2025-11-25 09:00:04','2025-11-25 10:00:04'), -(19074,6379,'action started via WP Cron','2025-11-25 10:09:27','2025-11-25 11:09:27'), -(19075,6380,'action created','2025-11-25 10:09:27','2025-11-25 11:09:27'), -(19076,6379,'action complete via WP Cron','2025-11-25 10:09:27','2025-11-25 11:09:27'), -(19077,6343,'action started via WP Cron','2025-11-25 10:36:14','2025-11-25 11:36:14'), -(19078,6343,'action complete via WP Cron','2025-11-25 10:36:14','2025-11-25 11:36:14'), -(19079,6381,'action created','2025-11-25 10:36:14','2025-11-25 11:36:14'), -(19080,6344,'action started via WP Cron','2025-11-25 10:36:14','2025-11-25 11:36:14'), -(19081,6344,'action complete via WP Cron','2025-11-25 10:36:14','2025-11-25 11:36:14'), -(19082,6382,'action created','2025-11-25 10:36:14','2025-11-25 11:36:14'), -(19083,6380,'action started via WP Cron','2025-11-25 11:13:31','2025-11-25 12:13:31'), -(19084,6383,'action created','2025-11-25 11:13:31','2025-11-25 12:13:31'), -(19085,6380,'action complete via WP Cron','2025-11-25 11:13:31','2025-11-25 12:13:31'), -(19086,6383,'action started via WP Cron','2025-11-25 12:23:23','2025-11-25 13:23:23'), -(19087,6384,'action created','2025-11-25 12:23:23','2025-11-25 13:23:23'), -(19088,6383,'action complete via WP Cron','2025-11-25 12:23:23','2025-11-25 13:23:23'), -(19089,6384,'action started via WP Cron','2025-11-25 13:42:59','2025-11-25 14:42:59'), -(19090,6385,'action created','2025-11-25 13:42:59','2025-11-25 14:42:59'), -(19091,6384,'action complete via WP Cron','2025-11-25 13:42:59','2025-11-25 14:42:59'), -(19092,6385,'action started via WP Cron','2025-11-25 14:53:28','2025-11-25 15:53:28'), -(19093,6386,'action created','2025-11-25 14:53:28','2025-11-25 15:53:28'), -(19094,6385,'action complete via WP Cron','2025-11-25 14:53:28','2025-11-25 15:53:28'), -(19095,6386,'action started via WP Cron','2025-11-25 15:55:41','2025-11-25 16:55:41'), -(19096,6387,'action created','2025-11-25 15:55:41','2025-11-25 16:55:41'), -(19097,6386,'action complete via WP Cron','2025-11-25 15:55:41','2025-11-25 16:55:41'), -(19098,6387,'action started via WP Cron','2025-11-25 17:35:45','2025-11-25 18:35:45'), -(19099,6388,'action created','2025-11-25 17:35:45','2025-11-25 18:35:45'), -(19100,6387,'action complete via WP Cron','2025-11-25 17:35:45','2025-11-25 18:35:45'), -(19101,6388,'action started via WP Cron','2025-11-25 18:48:31','2025-11-25 19:48:31'), -(19102,6389,'action created','2025-11-25 18:48:31','2025-11-25 19:48:31'), -(19103,6388,'action complete via WP Cron','2025-11-25 18:48:31','2025-11-25 19:48:31'), -(19104,6356,'action started via WP Cron','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19105,6356,'action complete via WP Cron','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19106,6390,'action created','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19107,6357,'action started via WP Cron','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19108,6357,'action complete via WP Cron','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19109,6391,'action created','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19110,6389,'action started via WP Cron','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19111,6392,'action created','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19112,6389,'action complete via WP Cron','2025-11-25 19:53:06','2025-11-25 20:53:06'), -(19113,6392,'action started via WP Cron','2025-11-25 21:52:23','2025-11-25 22:52:23'), -(19114,6393,'action created','2025-11-25 21:52:23','2025-11-25 22:52:23'), -(19115,6392,'action complete via WP Cron','2025-11-25 21:52:23','2025-11-25 22:52:23'), -(19116,6378,'action started via WP Cron','2025-11-25 21:52:23','2025-11-25 22:52:23'), -(19117,6378,'action complete via WP Cron','2025-11-25 21:52:23','2025-11-25 22:52:23'), -(19118,6394,'action created','2025-11-25 21:52:23','2025-11-25 22:52:23'), -(19119,6361,'action started via WP Cron','2025-11-25 22:27:32','2025-11-25 23:27:32'), -(19120,6361,'action complete via WP Cron','2025-11-25 22:27:32','2025-11-25 23:27:32'), -(19121,6395,'action created','2025-11-25 22:27:32','2025-11-25 23:27:32'), -(19122,6393,'action started via WP Cron','2025-11-25 23:27:31','2025-11-26 00:27:31'), -(19123,6396,'action created','2025-11-25 23:27:31','2025-11-26 00:27:31'), -(19124,6393,'action complete via WP Cron','2025-11-25 23:27:31','2025-11-26 00:27:31'), -(19125,6396,'action started via WP Cron','2025-11-26 00:39:26','2025-11-26 01:39:26'), -(19126,6397,'action created','2025-11-26 00:39:26','2025-11-26 01:39:26'), -(19127,6396,'action complete via WP Cron','2025-11-26 00:39:26','2025-11-26 01:39:26'), -(19128,6397,'action started via WP Cron','2025-11-26 02:05:16','2025-11-26 03:05:16'), -(19129,6398,'action created','2025-11-26 02:05:16','2025-11-26 03:05:16'), -(19130,6397,'action complete via WP Cron','2025-11-26 02:05:16','2025-11-26 03:05:16'), -(19131,6398,'action started via WP Cron','2025-11-26 03:06:56','2025-11-26 04:06:56'), -(19132,6399,'action created','2025-11-26 03:06:56','2025-11-26 04:06:56'), -(19133,6398,'action complete via WP Cron','2025-11-26 03:06:56','2025-11-26 04:06:56'), -(19134,6399,'action started via WP Cron','2025-11-26 04:18:11','2025-11-26 05:18:11'), -(19135,6400,'action created','2025-11-26 04:18:11','2025-11-26 05:18:11'), -(19136,6399,'action complete via WP Cron','2025-11-26 04:18:11','2025-11-26 05:18:11'), -(19137,6375,'action started via WP Cron','2025-11-26 05:31:01','2025-11-26 06:31:01'), -(19138,6375,'action complete via WP Cron','2025-11-26 05:31:01','2025-11-26 06:31:01'), -(19140,6400,'action started via WP Cron','2025-11-26 05:31:01','2025-11-26 06:31:01'), -(19141,6402,'action created','2025-11-26 05:31:01','2025-11-26 06:31:01'), -(19142,6400,'action complete via WP Cron','2025-11-26 05:31:01','2025-11-26 06:31:01'), -(19143,6402,'action started via WP Cron','2025-11-26 06:31:06','2025-11-26 07:31:06'), -(19144,6403,'action created','2025-11-26 06:31:06','2025-11-26 07:31:06'), -(19145,6402,'action complete via WP Cron','2025-11-26 06:31:06','2025-11-26 07:31:06'), -(19146,6403,'action started via WP Cron','2025-11-26 07:31:51','2025-11-26 08:31:51'), -(19147,6404,'action created','2025-11-26 07:31:51','2025-11-26 08:31:51'), -(19148,6403,'action complete via WP Cron','2025-11-26 07:31:51','2025-11-26 08:31:51'), -(19149,6373,'action started via WP Cron','2025-11-26 08:07:46','2025-11-26 09:07:46'), -(19150,6373,'action complete via WP Cron','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19151,6405,'action created','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19152,6374,'action started via WP Cron','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19153,6374,'action complete via WP Cron','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19154,6406,'action created','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19155,6377,'action started via WP Cron','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19157,6407,'action created','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19158,6408,'action created','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19159,6377,'action complete via WP Cron','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19160,6409,'action created','2025-11-26 08:07:47','2025-11-26 09:07:47'), -(19161,6408,'action started via WP Cron','2025-11-26 08:36:11','2025-11-26 09:36:11'), -(19162,6408,'action complete via WP Cron','2025-11-26 08:36:11','2025-11-26 09:36:11'), -(19163,6404,'action started via WP Cron','2025-11-26 08:36:11','2025-11-26 09:36:11'), -(19164,6410,'action created','2025-11-26 08:36:11','2025-11-26 09:36:11'), -(19165,6404,'action complete via WP Cron','2025-11-26 08:36:11','2025-11-26 09:36:11'), -(19166,6411,'action created','2025-11-26 08:36:36','2025-11-26 09:36:36'), -(19167,6412,'action created','2025-11-26 08:36:56','2025-11-26 09:36:56'), -(19168,6411,'action started via Async Request','2025-11-26 08:37:13','2025-11-26 09:37:13'), -(19169,6411,'action complete via Async Request','2025-11-26 08:37:13','2025-11-26 09:37:13'), -(19170,6412,'action started via Async Request','2025-11-26 08:37:13','2025-11-26 09:37:13'), -(19171,6412,'action complete via Async Request','2025-11-26 08:37:13','2025-11-26 09:37:13'), -(19172,6413,'action created','2025-11-26 08:37:30','2025-11-26 09:37:30'), -(19173,6414,'action created','2025-11-26 08:37:50','2025-11-26 09:37:50'), -(19174,6413,'action started via Async Request','2025-11-26 08:38:15','2025-11-26 09:38:15'), -(19175,6413,'action complete via Async Request','2025-11-26 08:38:15','2025-11-26 09:38:15'), -(19176,6414,'action started via Async Request','2025-11-26 08:38:15','2025-11-26 09:38:15'), -(19177,6414,'action complete via Async Request','2025-11-26 08:38:15','2025-11-26 09:38:15'), -(19178,6415,'action created','2025-11-26 08:38:54','2025-11-26 09:38:54'), -(19179,6416,'action created','2025-11-26 08:39:18','2025-11-26 09:39:18'), -(19180,6415,'action started via Async Request','2025-11-26 08:39:18','2025-11-26 09:39:18'), -(19181,6415,'action complete via Async Request','2025-11-26 08:39:18','2025-11-26 09:39:18'), -(19182,6416,'action started via Async Request','2025-11-26 08:39:23','2025-11-26 09:39:23'), -(19183,6416,'action complete via Async Request','2025-11-26 08:39:23','2025-11-26 09:39:23'), -(19184,6417,'action created','2025-11-26 08:40:28','2025-11-26 09:40:28'), -(19185,6418,'action created','2025-11-26 08:40:28','2025-11-26 09:40:28'), -(19186,6419,'action created','2025-11-26 08:40:28','2025-11-26 09:40:28'), -(19187,6420,'action created','2025-11-26 08:40:29','2025-11-26 09:40:29'), -(19188,6417,'action started via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19189,6417,'action complete via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19190,6418,'action started via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19191,6418,'action complete via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19192,6419,'action started via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19193,6419,'action complete via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19194,6420,'action started via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19195,6420,'action complete via Async Request','2025-11-26 08:41:24','2025-11-26 09:41:24'), -(19196,6421,'action created','2025-11-26 08:42:15','2025-11-26 09:42:15'), -(19197,6421,'action started via WP Cron','2025-11-26 08:42:27','2025-11-26 09:42:27'), -(19198,6421,'action complete via WP Cron','2025-11-26 08:42:27','2025-11-26 09:42:27'), -(19199,6422,'action created','2025-11-26 08:53:15','2025-11-26 09:53:15'), -(19200,6422,'action started via WP Cron','2025-11-26 08:53:27','2025-11-26 09:53:27'), -(19201,6422,'action complete via WP Cron','2025-11-26 08:53:27','2025-11-26 09:53:27'), -(19202,6423,'action created','2025-11-26 08:54:13','2025-11-26 09:54:13'), -(19203,6424,'action created','2025-11-26 08:54:24','2025-11-26 09:54:24'), -(19204,6423,'action started via WP Cron','2025-11-26 08:54:26','2025-11-26 09:54:26'), -(19205,6423,'action complete via WP Cron','2025-11-26 08:54:26','2025-11-26 09:54:26'), -(19206,6424,'action started via WP Cron','2025-11-26 08:54:26','2025-11-26 09:54:26'), -(19207,6424,'action complete via WP Cron','2025-11-26 08:54:26','2025-11-26 09:54:26'), -(19208,6425,'action created','2025-11-26 08:58:38','2025-11-26 09:58:38'), -(19209,6426,'action created','2025-11-26 08:58:59','2025-11-26 09:58:59'), -(19210,6425,'action started via Async Request','2025-11-26 08:59:01','2025-11-26 09:59:01'), -(19211,6425,'action complete via Async Request','2025-11-26 08:59:01','2025-11-26 09:59:01'), -(19212,6426,'action started via Async Request','2025-11-26 08:59:01','2025-11-26 09:59:01'), -(19213,6426,'action complete via Async Request','2025-11-26 08:59:01','2025-11-26 09:59:01'), -(19214,6427,'action created','2025-11-26 09:04:25','2025-11-26 10:04:25'), -(19215,6427,'action started via WP Cron','2025-11-26 09:04:26','2025-11-26 10:04:26'), -(19216,6427,'action complete via WP Cron','2025-11-26 09:04:26','2025-11-26 10:04:26'), -(19217,6410,'action started via WP Cron','2025-11-26 09:39:39','2025-11-26 10:39:39'), -(19218,6428,'action created','2025-11-26 09:39:39','2025-11-26 10:39:39'), -(19219,6410,'action complete via WP Cron','2025-11-26 09:39:39','2025-11-26 10:39:39'), -(19220,6394,'action started via WP Cron','2025-11-26 09:54:25','2025-11-26 10:54:25'), -(19221,6394,'action complete via WP Cron','2025-11-26 09:54:25','2025-11-26 10:54:25'), -(19222,6429,'action created','2025-11-26 09:54:25','2025-11-26 10:54:25'), -(19223,6381,'action started via WP Cron','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19224,6381,'action complete via WP Cron','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19225,6430,'action created','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19226,6382,'action started via WP Cron','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19227,6382,'action complete via WP Cron','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19228,6431,'action created','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19229,6428,'action started via WP Cron','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19230,6432,'action created','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19231,6428,'action complete via WP Cron','2025-11-26 10:43:03','2025-11-26 11:43:03'), -(19232,6432,'action started via WP Cron','2025-11-26 12:27:03','2025-11-26 13:27:03'), -(19233,6433,'action created','2025-11-26 12:27:03','2025-11-26 13:27:03'), -(19234,6432,'action complete via WP Cron','2025-11-26 12:27:03','2025-11-26 13:27:03'), -(19235,6433,'action started via WP Cron','2025-11-26 13:37:09','2025-11-26 14:37:09'), -(19236,6434,'action created','2025-11-26 13:37:09','2025-11-26 14:37:09'), -(19237,6433,'action complete via WP Cron','2025-11-26 13:37:09','2025-11-26 14:37:09'), -(19238,6435,'action created','2025-11-26 13:51:12','2025-11-26 14:51:12'), -(19239,6436,'action created','2025-11-26 13:51:12','2025-11-26 14:51:12'), -(19240,6437,'action created','2025-11-26 13:51:18','2025-11-26 14:51:18'), -(19241,6435,'action started via WP Cron','2025-11-26 13:51:32','2025-11-26 14:51:32'), -(19242,6435,'action complete via WP Cron','2025-11-26 13:51:32','2025-11-26 14:51:32'), -(19243,6436,'action started via WP Cron','2025-11-26 13:51:32','2025-11-26 14:51:32'), -(19244,6436,'action complete via WP Cron','2025-11-26 13:51:32','2025-11-26 14:51:32'), -(19245,6437,'action started via WP Cron','2025-11-26 13:51:32','2025-11-26 14:51:32'), -(19246,6437,'action complete via WP Cron','2025-11-26 13:51:32','2025-11-26 14:51:32'), -(19247,6438,'action created','2025-11-26 13:51:51','2025-11-26 14:51:51'), -(19248,6439,'action created','2025-11-26 13:51:51','2025-11-26 14:51:51'), -(19249,6440,'action created','2025-11-26 13:51:55','2025-11-26 14:51:55'), -(19250,6438,'action started via Async Request','2025-11-26 13:52:01','2025-11-26 14:52:01'), -(19251,6438,'action complete via Async Request','2025-11-26 13:52:01','2025-11-26 14:52:01'), -(19252,6439,'action started via Async Request','2025-11-26 13:52:01','2025-11-26 14:52:01'), -(19253,6439,'action complete via Async Request','2025-11-26 13:52:01','2025-11-26 14:52:01'), -(19254,6440,'action started via Async Request','2025-11-26 13:52:01','2025-11-26 14:52:01'), -(19255,6440,'action complete via Async Request','2025-11-26 13:52:01','2025-11-26 14:52:01'), -(19256,6441,'action created','2025-11-26 13:52:33','2025-11-26 14:52:33'), -(19257,6442,'action created','2025-11-26 13:52:55','2025-11-26 14:52:55'), -(19258,6441,'action started via Async Request','2025-11-26 13:53:05','2025-11-26 14:53:05'), -(19259,6441,'action complete via Async Request','2025-11-26 13:53:05','2025-11-26 14:53:05'), -(19260,6442,'action started via Async Request','2025-11-26 13:53:05','2025-11-26 14:53:05'), -(19261,6442,'action complete via Async Request','2025-11-26 13:53:05','2025-11-26 14:53:05'), -(19262,6443,'action created','2025-11-26 13:58:26','2025-11-26 14:58:26'), -(19263,6444,'action created','2025-11-26 13:58:26','2025-11-26 14:58:26'), -(19264,6445,'action created','2025-11-26 13:58:26','2025-11-26 14:58:26'), -(19265,6446,'action created','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19266,6443,'action started via Async Request','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19267,6443,'action complete via Async Request','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19268,6444,'action started via Async Request','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19269,6444,'action complete via Async Request','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19270,6445,'action started via Async Request','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19271,6445,'action complete via Async Request','2025-11-26 13:58:31','2025-11-26 14:58:31'), -(19272,6446,'action started via Async Request','2025-11-26 13:58:36','2025-11-26 14:58:36'), -(19273,6446,'action complete via Async Request','2025-11-26 13:58:36','2025-11-26 14:58:36'), -(19274,6447,'action created','2025-11-26 13:59:08','2025-11-26 14:59:08'), -(19275,6448,'action created','2025-11-26 13:59:08','2025-11-26 14:59:08'), -(19276,6449,'action created','2025-11-26 13:59:08','2025-11-26 14:59:08'), -(19277,6450,'action created','2025-11-26 13:59:12','2025-11-26 14:59:12'), -(19278,6447,'action started via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19279,6447,'action complete via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19280,6448,'action started via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19281,6448,'action complete via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19282,6449,'action started via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19283,6449,'action complete via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19284,6450,'action started via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19285,6450,'action complete via WP Cron','2025-11-26 13:59:28','2025-11-26 14:59:28'), -(19286,6434,'action started via WP Cron','2025-11-26 14:45:55','2025-11-26 15:45:55'), -(19287,6451,'action created','2025-11-26 14:45:55','2025-11-26 15:45:55'), -(19288,6434,'action complete via WP Cron','2025-11-26 14:45:55','2025-11-26 15:45:55'), -(19289,6451,'action started via WP Cron','2025-11-26 15:54:38','2025-11-26 16:54:38'), -(19290,6452,'action created','2025-11-26 15:54:38','2025-11-26 16:54:38'), -(19291,6451,'action complete via WP Cron','2025-11-26 15:54:38','2025-11-26 16:54:38'), -(19292,6452,'action started via WP Cron','2025-11-26 17:28:27','2025-11-26 18:28:27'), -(19293,6453,'action created','2025-11-26 17:28:27','2025-11-26 18:28:27'), -(19294,6452,'action complete via WP Cron','2025-11-26 17:28:27','2025-11-26 18:28:27'), -(19295,6453,'action started via WP Cron','2025-11-26 18:36:38','2025-11-26 19:36:38'), -(19296,6454,'action created','2025-11-26 18:36:38','2025-11-26 19:36:38'), -(19297,6453,'action complete via WP Cron','2025-11-26 18:36:38','2025-11-26 19:36:38'), -(19298,6454,'action started via WP Cron','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19299,6455,'action created','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19300,6454,'action complete via WP Cron','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19301,6390,'action started via WP Cron','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19302,6390,'action complete via WP Cron','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19303,6456,'action created','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19304,6391,'action started via WP Cron','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19305,6391,'action complete via WP Cron','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19306,6457,'action created','2025-11-26 19:58:00','2025-11-26 20:58:00'), -(19307,6455,'action started via WP Cron','2025-11-26 21:15:22','2025-11-26 22:15:22'), -(19308,6458,'action created','2025-11-26 21:15:22','2025-11-26 22:15:22'), -(19309,6455,'action complete via WP Cron','2025-11-26 21:15:22','2025-11-26 22:15:22'), -(19310,6429,'action started via WP Cron','2025-11-26 21:58:20','2025-11-26 22:58:20'), -(19311,6429,'action complete via WP Cron','2025-11-26 21:58:20','2025-11-26 22:58:20'), -(19312,6459,'action created','2025-11-26 21:58:20','2025-11-26 22:58:20'), -(19313,6458,'action started via WP Cron','2025-11-26 22:26:22','2025-11-26 23:26:22'), -(19314,6460,'action created','2025-11-26 22:26:22','2025-11-26 23:26:22'), -(19315,6458,'action complete via WP Cron','2025-11-26 22:26:22','2025-11-26 23:26:22'), -(19316,6395,'action started via WP Cron','2025-11-26 22:28:34','2025-11-26 23:28:34'), -(19317,6395,'action complete via WP Cron','2025-11-26 22:28:34','2025-11-26 23:28:34'), -(19318,6461,'action created','2025-11-26 22:28:34','2025-11-26 23:28:34'), -(19319,6460,'action started via WP Cron','2025-11-26 23:40:35','2025-11-27 00:40:35'), -(19320,6462,'action created','2025-11-26 23:40:35','2025-11-27 00:40:35'), -(19321,6460,'action complete via WP Cron','2025-11-26 23:40:35','2025-11-27 00:40:35'), -(19322,6462,'action started via WP Cron','2025-11-27 00:42:05','2025-11-27 01:42:05'), -(19323,6463,'action created','2025-11-27 00:42:05','2025-11-27 01:42:05'), -(19324,6462,'action complete via WP Cron','2025-11-27 00:42:05','2025-11-27 01:42:05'), -(19325,6463,'action started via WP Cron','2025-11-27 01:43:38','2025-11-27 02:43:38'), -(19326,6464,'action created','2025-11-27 01:43:38','2025-11-27 02:43:38'), -(19327,6463,'action complete via WP Cron','2025-11-27 01:43:38','2025-11-27 02:43:38'), -(19328,6464,'action started via WP Cron','2025-11-27 02:44:50','2025-11-27 03:44:50'), -(19329,6465,'action created','2025-11-27 02:44:50','2025-11-27 03:44:50'), -(19330,6464,'action complete via WP Cron','2025-11-27 02:44:50','2025-11-27 03:44:50'), -(19331,6465,'action started via WP Cron','2025-11-27 03:53:08','2025-11-27 04:53:08'), -(19332,6466,'action created','2025-11-27 03:53:08','2025-11-27 04:53:08'), -(19333,6465,'action complete via WP Cron','2025-11-27 03:53:08','2025-11-27 04:53:08'), -(19334,6466,'action started via WP Cron','2025-11-27 04:53:43','2025-11-27 05:53:43'), -(19335,6467,'action created','2025-11-27 04:53:43','2025-11-27 05:53:43'), -(19336,6466,'action complete via WP Cron','2025-11-27 04:53:43','2025-11-27 05:53:43'), -(19337,6407,'action started via WP Cron','2025-11-27 05:00:38','2025-11-27 06:00:38'), -(19338,6407,'action complete via WP Cron','2025-11-27 05:00:38','2025-11-27 06:00:38'), -(19340,6467,'action started via WP Cron','2025-11-27 05:54:29','2025-11-27 06:54:29'), -(19341,6469,'action created','2025-11-27 05:54:29','2025-11-27 06:54:29'), -(19342,6467,'action complete via WP Cron','2025-11-27 05:54:29','2025-11-27 06:54:29'), -(19343,6469,'action started via WP Cron','2025-11-27 07:42:57','2025-11-27 08:42:57'), -(19344,6470,'action created','2025-11-27 07:42:57','2025-11-27 08:42:57'), -(19345,6469,'action complete via WP Cron','2025-11-27 07:42:57','2025-11-27 08:42:57'), -(19346,6405,'action started via WP Cron','2025-11-27 08:13:33','2025-11-27 09:13:33'), -(19347,6405,'action complete via WP Cron','2025-11-27 08:13:33','2025-11-27 09:13:33'), -(19348,6471,'action created','2025-11-27 08:13:33','2025-11-27 09:13:33'), -(19349,6406,'action started via WP Cron','2025-11-27 08:13:33','2025-11-27 09:13:33'), -(19350,6406,'action complete via WP Cron','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19351,6472,'action created','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19352,6409,'action started via WP Cron','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19354,6473,'action created','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19355,6474,'action created','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19356,6409,'action complete via WP Cron','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19357,6475,'action created','2025-11-27 08:13:34','2025-11-27 09:13:34'), -(19358,6474,'action started via WP Cron','2025-11-27 08:30:53','2025-11-27 09:30:53'), -(19359,6474,'action complete via WP Cron','2025-11-27 08:30:53','2025-11-27 09:30:53'), -(19360,6470,'action started via WP Cron','2025-11-27 08:54:06','2025-11-27 09:54:06'), -(19361,6476,'action created','2025-11-27 08:54:06','2025-11-27 09:54:06'), -(19362,6470,'action complete via WP Cron','2025-11-27 08:54:06','2025-11-27 09:54:06'), -(19363,6476,'action started via WP Cron','2025-11-27 10:03:54','2025-11-27 11:03:54'), -(19364,6477,'action created','2025-11-27 10:03:54','2025-11-27 11:03:54'), -(19365,6476,'action complete via WP Cron','2025-11-27 10:03:54','2025-11-27 11:03:54'), -(19366,6459,'action started via WP Cron','2025-11-27 10:03:54','2025-11-27 11:03:54'), -(19367,6459,'action complete via WP Cron','2025-11-27 10:03:54','2025-11-27 11:03:54'), -(19368,6478,'action created','2025-11-27 10:03:54','2025-11-27 11:03:54'), -(19369,6430,'action started via WP Cron','2025-11-27 10:50:56','2025-11-27 11:50:56'), -(19370,6430,'action complete via WP Cron','2025-11-27 10:50:56','2025-11-27 11:50:56'), -(19371,6479,'action created','2025-11-27 10:50:56','2025-11-27 11:50:56'), -(19372,6431,'action started via WP Cron','2025-11-27 10:50:56','2025-11-27 11:50:56'), -(19373,6431,'action complete via WP Cron','2025-11-27 10:50:56','2025-11-27 11:50:56'), -(19374,6480,'action created','2025-11-27 10:50:56','2025-11-27 11:50:56'), -(19375,6477,'action started via WP Cron','2025-11-27 11:04:08','2025-11-27 12:04:08'), -(19376,6481,'action created','2025-11-27 11:04:08','2025-11-27 12:04:08'), -(19377,6477,'action complete via WP Cron','2025-11-27 11:04:08','2025-11-27 12:04:08'), -(19378,6481,'action started via WP Cron','2025-11-27 12:11:04','2025-11-27 13:11:04'), -(19379,6482,'action created','2025-11-27 12:11:04','2025-11-27 13:11:04'), -(19380,6481,'action complete via WP Cron','2025-11-27 12:11:04','2025-11-27 13:11:04'), -(19381,6483,'action created','2025-11-27 13:01:45','2025-11-27 14:01:45'), -(19382,6483,'action started via Async Request','2025-11-27 13:02:12','2025-11-27 14:02:12'), -(19383,6483,'action complete via Async Request','2025-11-27 13:02:12','2025-11-27 14:02:12'), -(19384,6484,'action created','2025-11-27 13:03:07','2025-11-27 14:03:07'), -(19385,6484,'action started via Async Request','2025-11-27 13:03:19','2025-11-27 14:03:19'), -(19386,6484,'action complete via Async Request','2025-11-27 13:03:19','2025-11-27 14:03:19'), -(19387,6482,'action started via WP Cron','2025-11-27 13:11:26','2025-11-27 14:11:26'), -(19388,6485,'action created','2025-11-27 13:11:26','2025-11-27 14:11:26'), -(19389,6482,'action complete via WP Cron','2025-11-27 13:11:26','2025-11-27 14:11:26'), -(19390,6485,'action started via WP Cron','2025-11-27 14:14:06','2025-11-27 15:14:06'), -(19391,6486,'action created','2025-11-27 14:14:06','2025-11-27 15:14:06'), -(19392,6485,'action complete via WP Cron','2025-11-27 14:14:06','2025-11-27 15:14:06'), -(19393,6486,'action started via WP Cron','2025-11-27 15:14:39','2025-11-27 16:14:39'), -(19394,6487,'action created','2025-11-27 15:14:39','2025-11-27 16:14:39'), -(19395,6486,'action complete via WP Cron','2025-11-27 15:14:39','2025-11-27 16:14:39'), -(19396,6487,'action started via WP Cron','2025-11-27 16:18:46','2025-11-27 17:18:46'), -(19397,6488,'action created','2025-11-27 16:18:46','2025-11-27 17:18:46'), -(19398,6487,'action complete via WP Cron','2025-11-27 16:18:46','2025-11-27 17:18:46'), -(19399,6488,'action started via WP Cron','2025-11-27 17:24:17','2025-11-27 18:24:17'), -(19400,6489,'action created','2025-11-27 17:24:17','2025-11-27 18:24:17'), -(19401,6488,'action complete via WP Cron','2025-11-27 17:24:17','2025-11-27 18:24:17'), -(19402,6489,'action started via WP Cron','2025-11-27 18:25:16','2025-11-27 19:25:16'), -(19403,6490,'action created','2025-11-27 18:25:16','2025-11-27 19:25:16'), -(19404,6489,'action complete via WP Cron','2025-11-27 18:25:16','2025-11-27 19:25:16'), -(19405,6490,'action started via WP Cron','2025-11-27 19:25:37','2025-11-27 20:25:37'), -(19406,6491,'action created','2025-11-27 19:25:37','2025-11-27 20:25:37'), -(19407,6490,'action complete via WP Cron','2025-11-27 19:25:37','2025-11-27 20:25:37'), -(19408,6456,'action started via WP Cron','2025-11-27 19:59:58','2025-11-27 20:59:58'), -(19409,6456,'action complete via WP Cron','2025-11-27 19:59:58','2025-11-27 20:59:58'), -(19410,6492,'action created','2025-11-27 19:59:58','2025-11-27 20:59:58'), -(19411,6457,'action started via WP Cron','2025-11-27 19:59:58','2025-11-27 20:59:58'), -(19412,6457,'action complete via WP Cron','2025-11-27 19:59:58','2025-11-27 20:59:58'), -(19413,6493,'action created','2025-11-27 19:59:58','2025-11-27 20:59:58'), -(19414,6491,'action started via WP Cron','2025-11-27 20:41:18','2025-11-27 21:41:18'), -(19415,6494,'action created','2025-11-27 20:41:18','2025-11-27 21:41:18'), -(19416,6491,'action complete via WP Cron','2025-11-27 20:41:18','2025-11-27 21:41:18'), -(19417,6494,'action started via WP Cron','2025-11-27 21:42:18','2025-11-27 22:42:18'), -(19418,6495,'action created','2025-11-27 21:42:18','2025-11-27 22:42:18'), -(19419,6494,'action complete via WP Cron','2025-11-27 21:42:18','2025-11-27 22:42:18'), -(19420,6478,'action started via WP Cron','2025-11-27 22:09:03','2025-11-27 23:09:03'), -(19421,6478,'action complete via WP Cron','2025-11-27 22:09:03','2025-11-27 23:09:03'), -(19422,6496,'action created','2025-11-27 22:09:03','2025-11-27 23:09:03'), -(19423,6461,'action started via WP Cron','2025-11-27 22:29:29','2025-11-27 23:29:29'), -(19424,6461,'action complete via WP Cron','2025-11-27 22:29:29','2025-11-27 23:29:29'), -(19425,6497,'action created','2025-11-27 22:29:29','2025-11-27 23:29:29'), -(19426,6495,'action started via WP Cron','2025-11-27 22:46:42','2025-11-27 23:46:42'), -(19427,6498,'action created','2025-11-27 22:46:42','2025-11-27 23:46:42'), -(19428,6495,'action complete via WP Cron','2025-11-27 22:46:42','2025-11-27 23:46:42'), -(19429,6498,'action started via WP Cron','2025-11-27 23:47:39','2025-11-28 00:47:39'), -(19430,6499,'action created','2025-11-27 23:47:39','2025-11-28 00:47:39'), -(19431,6498,'action complete via WP Cron','2025-11-27 23:47:39','2025-11-28 00:47:39'), -(19432,6499,'action started via WP Cron','2025-11-28 00:48:06','2025-11-28 01:48:06'), -(19433,6500,'action created','2025-11-28 00:48:06','2025-11-28 01:48:06'), -(19434,6499,'action complete via WP Cron','2025-11-28 00:48:06','2025-11-28 01:48:06'), -(19435,6500,'action started via WP Cron','2025-11-28 01:51:57','2025-11-28 02:51:57'), -(19436,6501,'action created','2025-11-28 01:51:57','2025-11-28 02:51:57'), -(19437,6500,'action complete via WP Cron','2025-11-28 01:51:57','2025-11-28 02:51:57'), -(19438,6501,'action started via WP Cron','2025-11-28 03:03:18','2025-11-28 04:03:18'), -(19439,6502,'action created','2025-11-28 03:03:18','2025-11-28 04:03:18'), -(19440,6501,'action complete via WP Cron','2025-11-28 03:03:18','2025-11-28 04:03:18'), -(19441,6502,'action started via WP Cron','2025-11-28 04:08:01','2025-11-28 05:08:01'), -(19442,6503,'action created','2025-11-28 04:08:01','2025-11-28 05:08:01'), -(19443,6502,'action complete via WP Cron','2025-11-28 04:08:01','2025-11-28 05:08:01'), -(19444,6473,'action started via WP Cron','2025-11-28 05:00:35','2025-11-28 06:00:35'), -(19445,6473,'action complete via WP Cron','2025-11-28 05:00:35','2025-11-28 06:00:35'), -(19447,6503,'action started via WP Cron','2025-11-28 05:17:01','2025-11-28 06:17:01'), -(19448,6505,'action created','2025-11-28 05:17:01','2025-11-28 06:17:01'), -(19449,6503,'action complete via WP Cron','2025-11-28 05:17:01','2025-11-28 06:17:01'), -(19450,6505,'action started via WP Cron','2025-11-28 06:21:18','2025-11-28 07:21:18'), -(19451,6506,'action created','2025-11-28 06:21:18','2025-11-28 07:21:18'), -(19452,6505,'action complete via WP Cron','2025-11-28 06:21:18','2025-11-28 07:21:18'), -(19453,6506,'action started via WP Cron','2025-11-28 07:36:47','2025-11-28 08:36:47'), -(19454,6507,'action created','2025-11-28 07:36:47','2025-11-28 08:36:47'), -(19455,6506,'action complete via WP Cron','2025-11-28 07:36:47','2025-11-28 08:36:47'), -(19456,6471,'action started via WP Cron','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19457,6471,'action complete via WP Cron','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19458,6508,'action created','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19459,6472,'action started via WP Cron','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19460,6472,'action complete via WP Cron','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19461,6509,'action created','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19462,6475,'action started via WP Cron','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19464,6510,'action created','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19465,6511,'action created','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19466,6475,'action complete via WP Cron','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19467,6512,'action created','2025-11-28 08:17:03','2025-11-28 09:17:03'), -(19468,6511,'action started via WP Cron','2025-11-28 08:17:43','2025-11-28 09:17:43'), -(19469,6511,'action complete via WP Cron','2025-11-28 08:17:43','2025-11-28 09:17:43'), -(19470,6507,'action started via WP Cron','2025-11-28 08:44:13','2025-11-28 09:44:13'), -(19471,6513,'action created','2025-11-28 08:44:13','2025-11-28 09:44:13'), -(19472,6507,'action complete via WP Cron','2025-11-28 08:44:13','2025-11-28 09:44:13'), -(19473,6513,'action started via WP Cron','2025-11-28 10:03:18','2025-11-28 11:03:18'), -(19474,6514,'action created','2025-11-28 10:03:18','2025-11-28 11:03:18'), -(19475,6513,'action complete via WP Cron','2025-11-28 10:03:18','2025-11-28 11:03:18'), -(19476,6496,'action started via WP Cron','2025-11-28 10:09:34','2025-11-28 11:09:34'), -(19477,6496,'action complete via WP Cron','2025-11-28 10:09:34','2025-11-28 11:09:34'), -(19478,6515,'action created','2025-11-28 10:09:34','2025-11-28 11:09:34'), -(19479,6479,'action started via WP Cron','2025-11-28 10:51:32','2025-11-28 11:51:32'), -(19480,6479,'action complete via WP Cron','2025-11-28 10:51:32','2025-11-28 11:51:32'), -(19481,6516,'action created','2025-11-28 10:51:32','2025-11-28 11:51:32'), -(19482,6480,'action started via WP Cron','2025-11-28 10:51:32','2025-11-28 11:51:32'), -(19483,6480,'action complete via WP Cron','2025-11-28 10:51:32','2025-11-28 11:51:32'), -(19484,6517,'action created','2025-11-28 10:51:32','2025-11-28 11:51:32'), -(19485,6514,'action started via WP Cron','2025-11-28 11:03:31','2025-11-28 12:03:31'), -(19486,6518,'action created','2025-11-28 11:03:31','2025-11-28 12:03:31'), -(19487,6514,'action complete via WP Cron','2025-11-28 11:03:31','2025-11-28 12:03:31'), -(19488,6518,'action started via WP Cron','2025-11-28 12:04:42','2025-11-28 13:04:42'), -(19489,6519,'action created','2025-11-28 12:04:42','2025-11-28 13:04:42'), -(19490,6518,'action complete via WP Cron','2025-11-28 12:04:42','2025-11-28 13:04:42'), -(19491,6519,'action started via WP Cron','2025-11-28 13:07:26','2025-11-28 14:07:26'), -(19492,6520,'action created','2025-11-28 13:07:26','2025-11-28 14:07:26'), -(19493,6519,'action complete via WP Cron','2025-11-28 13:07:26','2025-11-28 14:07:26'), -(19494,6520,'action started via WP Cron','2025-11-28 14:07:27','2025-11-28 15:07:27'), -(19495,6521,'action created','2025-11-28 14:07:27','2025-11-28 15:07:27'), -(19496,6520,'action complete via WP Cron','2025-11-28 14:07:27','2025-11-28 15:07:27'), -(19497,6521,'action started via WP Cron','2025-11-28 15:07:45','2025-11-28 16:07:45'), -(19498,6522,'action created','2025-11-28 15:07:45','2025-11-28 16:07:45'), -(19499,6521,'action complete via WP Cron','2025-11-28 15:07:45','2025-11-28 16:07:45'), -(19500,6522,'action started via WP Cron','2025-11-28 16:10:47','2025-11-28 17:10:47'), -(19501,6523,'action created','2025-11-28 16:10:47','2025-11-28 17:10:47'), -(19502,6522,'action complete via WP Cron','2025-11-28 16:10:47','2025-11-28 17:10:47'), -(19503,6523,'action started via WP Cron','2025-11-28 17:15:07','2025-11-28 18:15:07'), -(19504,6524,'action created','2025-11-28 17:15:07','2025-11-28 18:15:07'), -(19505,6523,'action complete via WP Cron','2025-11-28 17:15:07','2025-11-28 18:15:07'), -(19506,6524,'action started via WP Cron','2025-11-28 18:15:26','2025-11-28 19:15:26'), -(19507,6525,'action created','2025-11-28 18:15:26','2025-11-28 19:15:26'), -(19508,6524,'action complete via WP Cron','2025-11-28 18:15:26','2025-11-28 19:15:26'), -(19509,6525,'action started via WP Cron','2025-11-28 19:20:29','2025-11-28 20:20:29'), -(19510,6526,'action created','2025-11-28 19:20:29','2025-11-28 20:20:29'), -(19511,6525,'action complete via WP Cron','2025-11-28 19:20:29','2025-11-28 20:20:29'), -(19512,6492,'action started via WP Cron','2025-11-28 20:00:08','2025-11-28 21:00:08'), -(19513,6492,'action complete via WP Cron','2025-11-28 20:00:08','2025-11-28 21:00:08'), -(19514,6527,'action created','2025-11-28 20:00:08','2025-11-28 21:00:08'), -(19515,6493,'action started via WP Cron','2025-11-28 20:00:08','2025-11-28 21:00:08'), -(19516,6493,'action complete via WP Cron','2025-11-28 20:00:08','2025-11-28 21:00:08'), -(19517,6528,'action created','2025-11-28 20:00:08','2025-11-28 21:00:08'), -(19518,6529,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19519,6530,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19520,6531,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19521,6532,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19522,6533,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19523,6534,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19524,6535,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19525,6536,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19526,6537,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19527,6538,'action created','2025-11-28 20:10:55','2025-11-28 21:10:55'), -(19528,6529,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19529,6529,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19530,6530,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19531,6530,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19532,6531,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19533,6531,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19534,6532,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19535,6532,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19536,6533,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19537,6533,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19538,6534,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19539,6534,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19540,6535,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19541,6535,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19542,6536,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19543,6536,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19544,6537,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19545,6537,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19546,6538,'action started via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19547,6538,'action complete via WP Cron','2025-11-28 20:11:34','2025-11-28 21:11:34'), -(19548,6526,'action started via WP Cron','2025-11-28 20:20:34','2025-11-28 21:20:34'), -(19549,6539,'action created','2025-11-28 20:20:34','2025-11-28 21:20:34'), -(19550,6526,'action complete via WP Cron','2025-11-28 20:20:34','2025-11-28 21:20:34'), -(19551,6539,'action started via WP Cron','2025-11-28 21:30:33','2025-11-28 22:30:33'), -(19552,6540,'action created','2025-11-28 21:30:33','2025-11-28 22:30:33'), -(19553,6539,'action complete via WP Cron','2025-11-28 21:30:33','2025-11-28 22:30:33'), -(19554,6515,'action started via WP Cron','2025-11-28 22:09:38','2025-11-28 23:09:38'), -(19555,6515,'action complete via WP Cron','2025-11-28 22:09:38','2025-11-28 23:09:38'), -(19556,6541,'action created','2025-11-28 22:09:38','2025-11-28 23:09:38'), -(19557,6497,'action started via WP Cron','2025-11-28 22:31:20','2025-11-28 23:31:20'), -(19558,6497,'action complete via WP Cron','2025-11-28 22:31:20','2025-11-28 23:31:20'), -(19559,6542,'action created','2025-11-28 22:31:20','2025-11-28 23:31:20'), -(19560,6540,'action started via WP Cron','2025-11-28 22:31:20','2025-11-28 23:31:20'), -(19561,6543,'action created','2025-11-28 22:31:20','2025-11-28 23:31:20'), -(19562,6540,'action complete via WP Cron','2025-11-28 22:31:20','2025-11-28 23:31:20'), -(19563,6543,'action started via WP Cron','2025-11-28 23:31:39','2025-11-29 00:31:39'), -(19564,6544,'action created','2025-11-28 23:31:39','2025-11-29 00:31:39'), -(19565,6543,'action complete via WP Cron','2025-11-28 23:31:39','2025-11-29 00:31:39'), -(19566,6544,'action started via WP Cron','2025-11-29 00:33:09','2025-11-29 01:33:09'), -(19567,6545,'action created','2025-11-29 00:33:09','2025-11-29 01:33:09'), -(19568,6544,'action complete via WP Cron','2025-11-29 00:33:09','2025-11-29 01:33:09'), -(19569,6545,'action started via WP Cron','2025-11-29 01:41:11','2025-11-29 02:41:11'), -(19570,6546,'action created','2025-11-29 01:41:11','2025-11-29 02:41:11'), -(19571,6545,'action complete via WP Cron','2025-11-29 01:41:11','2025-11-29 02:41:11'), -(19572,6546,'action started via WP Cron','2025-11-29 02:41:38','2025-11-29 03:41:38'), -(19573,6547,'action created','2025-11-29 02:41:38','2025-11-29 03:41:38'), -(19574,6546,'action complete via WP Cron','2025-11-29 02:41:38','2025-11-29 03:41:38'), -(19575,6547,'action started via WP Cron','2025-11-29 03:42:46','2025-11-29 04:42:46'), -(19576,6548,'action created','2025-11-29 03:42:46','2025-11-29 04:42:46'), -(19577,6547,'action complete via WP Cron','2025-11-29 03:42:46','2025-11-29 04:42:46'), -(19578,6548,'action started via WP Cron','2025-11-29 04:45:55','2025-11-29 05:45:55'), -(19579,6549,'action created','2025-11-29 04:45:55','2025-11-29 05:45:55'), -(19580,6548,'action complete via WP Cron','2025-11-29 04:45:55','2025-11-29 05:45:55'), -(19581,6510,'action started via WP Cron','2025-11-29 05:00:36','2025-11-29 06:00:36'), -(19582,6510,'action complete via WP Cron','2025-11-29 05:00:36','2025-11-29 06:00:36'), -(19584,6549,'action started via WP Cron','2025-11-29 05:46:27','2025-11-29 06:46:27'), -(19585,6551,'action created','2025-11-29 05:46:27','2025-11-29 06:46:27'), -(19586,6549,'action complete via WP Cron','2025-11-29 05:46:27','2025-11-29 06:46:27'), -(19587,6551,'action started via WP Cron','2025-11-29 06:57:50','2025-11-29 07:57:50'), -(19588,6552,'action created','2025-11-29 06:57:50','2025-11-29 07:57:50'), -(19589,6551,'action complete via WP Cron','2025-11-29 06:57:50','2025-11-29 07:57:50'), -(19590,6552,'action started via WP Cron','2025-11-29 08:09:05','2025-11-29 09:09:05'), -(19591,6553,'action created','2025-11-29 08:09:05','2025-11-29 09:09:05'), -(19592,6552,'action complete via WP Cron','2025-11-29 08:09:05','2025-11-29 09:09:05'), -(19593,6508,'action started via WP Cron','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19594,6508,'action complete via WP Cron','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19595,6554,'action created','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19596,6509,'action started via WP Cron','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19597,6509,'action complete via WP Cron','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19598,6555,'action created','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19599,6512,'action started via WP Cron','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19601,6556,'action created','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19602,6557,'action created','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19603,6512,'action complete via WP Cron','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19604,6558,'action created','2025-11-29 08:22:32','2025-11-29 09:22:32'), -(19605,6557,'action started via WP Cron','2025-11-29 08:32:27','2025-11-29 09:32:27'), -(19606,6557,'action complete via WP Cron','2025-11-29 08:32:27','2025-11-29 09:32:27'), -(19607,6553,'action started via WP Cron','2025-11-29 09:10:38','2025-11-29 10:10:38'), -(19608,6559,'action created','2025-11-29 09:10:38','2025-11-29 10:10:38'), -(19609,6553,'action complete via WP Cron','2025-11-29 09:10:38','2025-11-29 10:10:38'), -(19610,6541,'action started via WP Cron','2025-11-29 10:10:38','2025-11-29 11:10:38'), -(19611,6541,'action complete via WP Cron','2025-11-29 10:10:38','2025-11-29 11:10:38'), -(19612,6560,'action created','2025-11-29 10:10:38','2025-11-29 11:10:38'), -(19613,6559,'action started via WP Cron','2025-11-29 10:10:38','2025-11-29 11:10:38'), -(19614,6561,'action created','2025-11-29 10:10:38','2025-11-29 11:10:38'), -(19615,6559,'action complete via WP Cron','2025-11-29 10:10:38','2025-11-29 11:10:38'), -(19616,6516,'action started via WP Cron','2025-11-29 10:51:41','2025-11-29 11:51:41'), -(19617,6516,'action complete via WP Cron','2025-11-29 10:51:41','2025-11-29 11:51:41'), -(19618,6562,'action created','2025-11-29 10:51:41','2025-11-29 11:51:41'), -(19619,6517,'action started via WP Cron','2025-11-29 10:51:41','2025-11-29 11:51:41'), -(19620,6517,'action complete via WP Cron','2025-11-29 10:51:41','2025-11-29 11:51:41'), -(19621,6563,'action created','2025-11-29 10:51:41','2025-11-29 11:51:41'), -(19622,6561,'action started via WP Cron','2025-11-29 11:18:06','2025-11-29 12:18:06'), -(19623,6564,'action created','2025-11-29 11:18:06','2025-11-29 12:18:06'), -(19624,6561,'action complete via WP Cron','2025-11-29 11:18:06','2025-11-29 12:18:06'), -(19625,6564,'action started via WP Cron','2025-11-29 12:27:39','2025-11-29 13:27:39'), -(19626,6565,'action created','2025-11-29 12:27:39','2025-11-29 13:27:39'), -(19627,6564,'action complete via WP Cron','2025-11-29 12:27:39','2025-11-29 13:27:39'), -(19628,6565,'action started via WP Cron','2025-11-29 13:28:29','2025-11-29 14:28:29'), -(19629,6566,'action created','2025-11-29 13:28:29','2025-11-29 14:28:29'), -(19630,6565,'action complete via WP Cron','2025-11-29 13:28:29','2025-11-29 14:28:29'), -(19631,6566,'action started via WP Cron','2025-11-29 14:35:36','2025-11-29 15:35:36'), -(19632,6567,'action created','2025-11-29 14:35:36','2025-11-29 15:35:36'), -(19633,6566,'action complete via WP Cron','2025-11-29 14:35:36','2025-11-29 15:35:36'), -(19634,6567,'action started via WP Cron','2025-11-29 15:38:18','2025-11-29 16:38:18'), -(19635,6568,'action created','2025-11-29 15:38:18','2025-11-29 16:38:18'), -(19636,6567,'action complete via WP Cron','2025-11-29 15:38:18','2025-11-29 16:38:18'), -(19637,6568,'action started via WP Cron','2025-11-29 16:45:14','2025-11-29 17:45:14'), -(19638,6569,'action created','2025-11-29 16:45:14','2025-11-29 17:45:14'), -(19639,6568,'action complete via WP Cron','2025-11-29 16:45:14','2025-11-29 17:45:14'), -(19640,6569,'action started via WP Cron','2025-11-29 17:48:06','2025-11-29 18:48:06'), -(19641,6570,'action created','2025-11-29 17:48:06','2025-11-29 18:48:06'), -(19642,6569,'action complete via WP Cron','2025-11-29 17:48:06','2025-11-29 18:48:06'), -(19643,6570,'action started via WP Cron','2025-11-29 18:48:57','2025-11-29 19:48:57'), -(19644,6571,'action created','2025-11-29 18:48:57','2025-11-29 19:48:57'), -(19645,6570,'action complete via WP Cron','2025-11-29 18:48:57','2025-11-29 19:48:57'), -(19646,6571,'action started via WP Cron','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19647,6572,'action created','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19648,6571,'action complete via WP Cron','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19649,6527,'action started via WP Cron','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19650,6527,'action complete via WP Cron','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19651,6573,'action created','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19652,6528,'action started via WP Cron','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19653,6528,'action complete via WP Cron','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19654,6574,'action created','2025-11-29 20:08:15','2025-11-29 21:08:15'), -(19655,6572,'action started via WP Cron','2025-11-29 21:21:14','2025-11-29 22:21:14'), -(19656,6575,'action created','2025-11-29 21:21:14','2025-11-29 22:21:14'), -(19657,6572,'action complete via WP Cron','2025-11-29 21:21:14','2025-11-29 22:21:14'), -(19658,6560,'action started via WP Cron','2025-11-29 22:21:00','2025-11-29 23:21:00'), -(19659,6560,'action complete via WP Cron','2025-11-29 22:21:00','2025-11-29 23:21:00'), -(19660,6576,'action created','2025-11-29 22:21:00','2025-11-29 23:21:00'), -(19661,6575,'action started via WP Cron','2025-11-29 22:25:36','2025-11-29 23:25:36'), -(19662,6577,'action created','2025-11-29 22:25:36','2025-11-29 23:25:36'), -(19663,6575,'action complete via WP Cron','2025-11-29 22:25:36','2025-11-29 23:25:36'), -(19664,6542,'action started via WP Cron','2025-11-29 22:31:37','2025-11-29 23:31:37'), -(19665,6542,'action complete via WP Cron','2025-11-29 22:31:37','2025-11-29 23:31:37'), -(19666,6578,'action created','2025-11-29 22:31:37','2025-11-29 23:31:37'), -(19667,6577,'action started via WP Cron','2025-11-29 23:33:15','2025-11-30 00:33:15'), -(19668,6579,'action created','2025-11-29 23:33:15','2025-11-30 00:33:15'), -(19669,6577,'action complete via WP Cron','2025-11-29 23:33:15','2025-11-30 00:33:15'), -(19670,6579,'action started via WP Cron','2025-11-30 00:39:48','2025-11-30 01:39:48'), -(19671,6580,'action created','2025-11-30 00:39:48','2025-11-30 01:39:48'), -(19672,6579,'action complete via WP Cron','2025-11-30 00:39:48','2025-11-30 01:39:48'), -(19673,6580,'action started via WP Cron','2025-11-30 01:40:44','2025-11-30 02:40:44'), -(19674,6581,'action created','2025-11-30 01:40:44','2025-11-30 02:40:44'), -(19675,6580,'action complete via WP Cron','2025-11-30 01:40:44','2025-11-30 02:40:44'), -(19676,6581,'action started via WP Cron','2025-11-30 02:49:03','2025-11-30 03:49:03'), -(19677,6582,'action created','2025-11-30 02:49:03','2025-11-30 03:49:03'), -(19678,6581,'action complete via WP Cron','2025-11-30 02:49:03','2025-11-30 03:49:03'), -(19679,6582,'action started via WP Cron','2025-11-30 03:54:07','2025-11-30 04:54:07'), -(19680,6583,'action created','2025-11-30 03:54:07','2025-11-30 04:54:07'), -(19681,6582,'action complete via WP Cron','2025-11-30 03:54:07','2025-11-30 04:54:07'), -(19682,6583,'action started via WP Cron','2025-11-30 05:02:53','2025-11-30 06:02:53'), -(19683,6584,'action created','2025-11-30 05:02:53','2025-11-30 06:02:53'), -(19684,6583,'action complete via WP Cron','2025-11-30 05:02:53','2025-11-30 06:02:53'), -(19685,6556,'action started via WP Cron','2025-11-30 05:02:53','2025-11-30 06:02:53'), -(19686,6556,'action complete via WP Cron','2025-11-30 05:02:53','2025-11-30 06:02:53'), -(19688,6584,'action started via WP Cron','2025-11-30 06:18:07','2025-11-30 07:18:07'), -(19689,6586,'action created','2025-11-30 06:18:07','2025-11-30 07:18:07'), -(19690,6584,'action complete via WP Cron','2025-11-30 06:18:07','2025-11-30 07:18:07'), -(19691,6586,'action started via WP Cron','2025-11-30 07:21:15','2025-11-30 08:21:15'), -(19692,6587,'action created','2025-11-30 07:21:15','2025-11-30 08:21:15'), -(19693,6586,'action complete via WP Cron','2025-11-30 07:21:15','2025-11-30 08:21:15'), -(19694,6587,'action started via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19695,6588,'action created','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19696,6587,'action complete via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19697,6554,'action started via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19698,6554,'action complete via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19699,6589,'action created','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19700,6555,'action started via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19701,6555,'action complete via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19702,6590,'action created','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19703,6558,'action started via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19705,6591,'action created','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19706,6592,'action created','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19707,6558,'action complete via WP Cron','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19708,6593,'action created','2025-11-30 08:32:50','2025-11-30 09:32:50'), -(19709,6592,'action started via WP Cron','2025-11-30 08:38:20','2025-11-30 09:38:20'), -(19710,6592,'action complete via WP Cron','2025-11-30 08:38:20','2025-11-30 09:38:20'), -(19711,6588,'action started via WP Cron','2025-11-30 09:33:41','2025-11-30 10:33:41'), -(19712,6594,'action created','2025-11-30 09:33:41','2025-11-30 10:33:41'), -(19713,6588,'action complete via WP Cron','2025-11-30 09:33:41','2025-11-30 10:33:41'), -(19714,6576,'action started via WP Cron','2025-11-30 10:21:37','2025-11-30 11:21:37'), -(19715,6576,'action complete via WP Cron','2025-11-30 10:21:37','2025-11-30 11:21:37'), -(19716,6595,'action created','2025-11-30 10:21:37','2025-11-30 11:21:37'), -(19717,6594,'action started via WP Cron','2025-11-30 10:34:38','2025-11-30 11:34:38'), -(19718,6596,'action created','2025-11-30 10:34:38','2025-11-30 11:34:38'), -(19719,6594,'action complete via WP Cron','2025-11-30 10:34:38','2025-11-30 11:34:38'), -(19720,6562,'action started via WP Cron','2025-11-30 10:52:31','2025-11-30 11:52:31'), -(19721,6562,'action complete via WP Cron','2025-11-30 10:52:31','2025-11-30 11:52:31'), -(19722,6597,'action created','2025-11-30 10:52:31','2025-11-30 11:52:31'), -(19723,6563,'action started via WP Cron','2025-11-30 10:52:31','2025-11-30 11:52:31'), -(19724,6563,'action complete via WP Cron','2025-11-30 10:52:31','2025-11-30 11:52:31'), -(19725,6598,'action created','2025-11-30 10:52:31','2025-11-30 11:52:31'), -(19726,6596,'action started via WP Cron','2025-11-30 11:44:13','2025-11-30 12:44:13'), -(19727,6599,'action created','2025-11-30 11:44:13','2025-11-30 12:44:13'), -(19728,6596,'action complete via WP Cron','2025-11-30 11:44:13','2025-11-30 12:44:13'), -(19729,6599,'action started via WP Cron','2025-11-30 12:44:45','2025-11-30 13:44:45'), -(19730,6600,'action created','2025-11-30 12:44:45','2025-11-30 13:44:45'), -(19731,6599,'action complete via WP Cron','2025-11-30 12:44:45','2025-11-30 13:44:45'), -(19732,6600,'action started via WP Cron','2025-11-30 13:50:14','2025-11-30 14:50:14'), -(19733,6601,'action created','2025-11-30 13:50:14','2025-11-30 14:50:14'), -(19734,6600,'action complete via WP Cron','2025-11-30 13:50:14','2025-11-30 14:50:14'), -(19735,6601,'action started via WP Cron','2025-11-30 14:50:27','2025-11-30 15:50:27'), -(19736,6602,'action created','2025-11-30 14:50:27','2025-11-30 15:50:27'), -(19737,6601,'action complete via WP Cron','2025-11-30 14:50:27','2025-11-30 15:50:27'), -(19738,6602,'action started via WP Cron','2025-11-30 15:56:33','2025-11-30 16:56:33'), -(19739,6603,'action created','2025-11-30 15:56:33','2025-11-30 16:56:33'), -(19740,6602,'action complete via WP Cron','2025-11-30 15:56:33','2025-11-30 16:56:33'), -(19741,6603,'action started via WP Cron','2025-11-30 16:58:45','2025-11-30 17:58:45'), -(19742,6604,'action created','2025-11-30 16:58:45','2025-11-30 17:58:45'), -(19743,6603,'action complete via WP Cron','2025-11-30 16:58:45','2025-11-30 17:58:45'), -(19744,6604,'action started via WP Cron','2025-11-30 17:59:35','2025-11-30 18:59:35'), -(19745,6605,'action created','2025-11-30 17:59:35','2025-11-30 18:59:35'), -(19746,6604,'action complete via WP Cron','2025-11-30 17:59:35','2025-11-30 18:59:35'), -(19747,6605,'action started via WP Cron','2025-11-30 18:59:37','2025-11-30 19:59:37'), -(19748,6606,'action created','2025-11-30 18:59:37','2025-11-30 19:59:37'), -(19749,6605,'action complete via WP Cron','2025-11-30 18:59:37','2025-11-30 19:59:37'), -(19750,6606,'action started via WP Cron','2025-11-30 19:59:58','2025-11-30 20:59:58'), -(19751,6607,'action created','2025-11-30 19:59:58','2025-11-30 20:59:58'), -(19752,6606,'action complete via WP Cron','2025-11-30 19:59:58','2025-11-30 20:59:58'), -(19753,6573,'action started via WP Cron','2025-11-30 20:10:11','2025-11-30 21:10:11'), -(19754,6573,'action complete via WP Cron','2025-11-30 20:10:11','2025-11-30 21:10:11'), -(19755,6608,'action created','2025-11-30 20:10:11','2025-11-30 21:10:11'), -(19756,6574,'action started via WP Cron','2025-11-30 20:10:11','2025-11-30 21:10:11'), -(19757,6574,'action complete via WP Cron','2025-11-30 20:10:11','2025-11-30 21:10:11'), -(19758,6609,'action created','2025-11-30 20:10:11','2025-11-30 21:10:11'), -(19759,6607,'action started via WP Cron','2025-11-30 21:00:35','2025-11-30 22:00:35'), -(19760,6610,'action created','2025-11-30 21:00:35','2025-11-30 22:00:35'), -(19761,6607,'action complete via WP Cron','2025-11-30 21:00:35','2025-11-30 22:00:35'), -(19762,6611,'action created','2025-11-30 21:29:07','2025-11-30 22:29:07'), -(19763,6611,'action started via WP Cron','2025-11-30 21:32:01','2025-11-30 22:32:01'), -(19764,6611,'action complete via WP Cron','2025-11-30 21:32:01','2025-11-30 22:32:01'), -(19765,6612,'action created','2025-11-30 21:33:39','2025-11-30 22:33:39'), -(19766,6612,'action started via WP Cron','2025-11-30 21:34:42','2025-11-30 22:34:42'), -(19767,6612,'action complete via WP Cron','2025-11-30 21:34:42','2025-11-30 22:34:42'), -(19768,6610,'action started via WP Cron','2025-11-30 22:02:26','2025-11-30 23:02:26'), -(19769,6613,'action created','2025-11-30 22:02:26','2025-11-30 23:02:26'), -(19770,6610,'action complete via WP Cron','2025-11-30 22:02:26','2025-11-30 23:02:26'), -(19771,6595,'action started via WP Cron','2025-11-30 22:22:28','2025-11-30 23:22:28'), -(19772,6595,'action complete via WP Cron','2025-11-30 22:22:28','2025-11-30 23:22:28'), -(19773,6614,'action created','2025-11-30 22:22:28','2025-11-30 23:22:28'), -(19774,6615,'action created','2025-11-30 22:31:12','2025-11-30 23:31:12'), -(19775,6616,'action created','2025-11-30 22:31:12','2025-11-30 23:31:12'), -(19776,6617,'action created','2025-11-30 22:31:12','2025-11-30 23:31:12'), -(19777,6618,'action created','2025-11-30 22:31:12','2025-11-30 23:31:12'), -(19778,6619,'action created','2025-11-30 22:31:12','2025-11-30 23:31:12'), -(19779,6615,'action started via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19780,6615,'action complete via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19781,6616,'action started via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19782,6616,'action complete via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19783,6617,'action started via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19784,6617,'action complete via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19785,6618,'action started via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19786,6618,'action complete via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19787,6619,'action started via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19788,6619,'action complete via WP Cron','2025-11-30 22:31:27','2025-11-30 23:31:27'), -(19789,6578,'action started via Async Request','2025-11-30 22:31:54','2025-11-30 23:31:54'), -(19790,6578,'action complete via Async Request','2025-11-30 22:31:54','2025-11-30 23:31:54'), -(19791,6620,'action created','2025-11-30 22:31:54','2025-11-30 23:31:54'), -(19792,6621,'action created','2025-11-30 22:39:05','2025-11-30 23:39:05'), -(19793,6622,'action created','2025-11-30 22:39:05','2025-11-30 23:39:05'), -(19794,6623,'action created','2025-11-30 22:39:05','2025-11-30 23:39:05'), -(19795,6624,'action created','2025-11-30 22:39:05','2025-11-30 23:39:05'), -(19796,6625,'action created','2025-11-30 22:39:17','2025-11-30 23:39:17'), -(19797,6621,'action started via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19798,6621,'action complete via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19799,6622,'action started via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19800,6622,'action complete via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19801,6623,'action started via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19802,6623,'action complete via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19803,6624,'action started via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19804,6624,'action complete via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19805,6625,'action started via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19806,6625,'action complete via WP Cron','2025-11-30 22:39:27','2025-11-30 23:39:27'), -(19807,6626,'action created','2025-11-30 22:43:59','2025-11-30 23:43:59'), -(19808,6626,'action started via Async Request','2025-11-30 22:44:00','2025-11-30 23:44:00'), -(19809,6626,'action complete via Async Request','2025-11-30 22:44:00','2025-11-30 23:44:00'), -(19810,6627,'action created','2025-11-30 22:44:20','2025-11-30 23:44:20'), -(19811,6627,'action started via WP Cron','2025-11-30 22:44:32','2025-11-30 23:44:32'), -(19812,6627,'action complete via WP Cron','2025-11-30 22:44:32','2025-11-30 23:44:32'), -(19813,6628,'action created','2025-11-30 22:44:47','2025-11-30 23:44:47'), -(19814,6628,'action started via Async Request','2025-11-30 22:45:08','2025-11-30 23:45:08'), -(19815,6628,'action complete via Async Request','2025-11-30 22:45:08','2025-11-30 23:45:08'), -(19816,6629,'action created','2025-11-30 22:45:43','2025-11-30 23:45:43'), -(19817,6630,'action created','2025-11-30 22:46:01','2025-11-30 23:46:01'), -(19818,6629,'action started via Async Request','2025-11-30 22:46:09','2025-11-30 23:46:09'), -(19819,6629,'action complete via Async Request','2025-11-30 22:46:09','2025-11-30 23:46:09'), -(19820,6630,'action started via Async Request','2025-11-30 22:46:09','2025-11-30 23:46:09'), -(19821,6630,'action complete via Async Request','2025-11-30 22:46:09','2025-11-30 23:46:09'), -(19822,6631,'action created','2025-11-30 22:46:57','2025-11-30 23:46:57'), -(19823,6631,'action started via Async Request','2025-11-30 22:47:19','2025-11-30 23:47:19'), -(19824,6631,'action complete via Async Request','2025-11-30 22:47:19','2025-11-30 23:47:19'), -(19825,6632,'action created','2025-11-30 22:52:10','2025-11-30 23:52:10'), -(19826,6633,'action created','2025-11-30 22:52:17','2025-11-30 23:52:17'), -(19827,6632,'action started via WP Cron','2025-11-30 22:52:30','2025-11-30 23:52:30'), -(19828,6632,'action complete via WP Cron','2025-11-30 22:52:30','2025-11-30 23:52:30'), -(19829,6633,'action started via WP Cron','2025-11-30 22:52:30','2025-11-30 23:52:30'), -(19830,6633,'action complete via WP Cron','2025-11-30 22:52:30','2025-11-30 23:52:30'), -(19831,6634,'action created','2025-11-30 22:55:06','2025-11-30 23:55:06'), -(19832,6634,'action started via WP Cron','2025-11-30 22:55:34','2025-11-30 23:55:34'), -(19833,6634,'action complete via WP Cron','2025-11-30 22:55:34','2025-11-30 23:55:34'), -(19834,6613,'action started via WP Cron','2025-11-30 23:02:32','2025-12-01 00:02:32'), -(19835,6635,'action created','2025-11-30 23:02:32','2025-12-01 00:02:32'), -(19836,6613,'action complete via WP Cron','2025-11-30 23:02:32','2025-12-01 00:02:32'), -(19837,6636,'action created','2025-11-30 23:08:24','2025-12-01 00:08:24'), -(19838,6636,'action started via WP Cron','2025-11-30 23:08:26','2025-12-01 00:08:26'), -(19839,6636,'action complete via WP Cron','2025-11-30 23:08:26','2025-12-01 00:08:26'), -(19840,6637,'action created','2025-11-30 23:09:15','2025-12-01 00:09:15'), -(19841,6637,'action started via WP Cron','2025-11-30 23:09:26','2025-12-01 00:09:26'), -(19842,6637,'action complete via WP Cron','2025-11-30 23:09:26','2025-12-01 00:09:26'), -(19843,6638,'action created','2025-11-30 23:19:30','2025-12-01 00:19:30'), -(19844,6638,'action started via Async Request','2025-11-30 23:19:46','2025-12-01 00:19:46'), -(19845,6638,'action complete via Async Request','2025-11-30 23:19:46','2025-12-01 00:19:46'), -(19846,6635,'action started via WP Cron','2025-12-01 00:03:29','2025-12-01 01:03:29'), -(19847,6639,'action created','2025-12-01 00:03:29','2025-12-01 01:03:29'), -(19848,6635,'action complete via WP Cron','2025-12-01 00:03:29','2025-12-01 01:03:29'), -(19849,6639,'action started via WP Cron','2025-12-01 01:05:19','2025-12-01 02:05:19'), -(19850,6640,'action created','2025-12-01 01:05:19','2025-12-01 02:05:19'), -(19851,6639,'action complete via WP Cron','2025-12-01 01:05:19','2025-12-01 02:05:19'), -(19852,6640,'action started via WP Cron','2025-12-01 02:15:15','2025-12-01 03:15:15'), -(19853,6641,'action created','2025-12-01 02:15:15','2025-12-01 03:15:15'), -(19854,6640,'action complete via WP Cron','2025-12-01 02:15:15','2025-12-01 03:15:15'), -(19855,6641,'action started via WP Cron','2025-12-01 03:15:27','2025-12-01 04:15:27'), -(19856,6642,'action created','2025-12-01 03:15:27','2025-12-01 04:15:27'), -(19857,6641,'action complete via WP Cron','2025-12-01 03:15:27','2025-12-01 04:15:27'), -(19858,6642,'action started via WP Cron','2025-12-01 04:18:36','2025-12-01 05:18:36'), -(19859,6643,'action created','2025-12-01 04:18:36','2025-12-01 05:18:36'), -(19860,6642,'action complete via WP Cron','2025-12-01 04:18:36','2025-12-01 05:18:36'), -(19861,6591,'action started via WP Cron','2025-12-01 05:04:33','2025-12-01 06:04:33'), -(19862,6591,'action complete via WP Cron','2025-12-01 05:04:33','2025-12-01 06:04:33'), -(19864,6643,'action started via WP Cron','2025-12-01 05:19:34','2025-12-01 06:19:34'), -(19865,6645,'action created','2025-12-01 05:19:34','2025-12-01 06:19:34'), -(19866,6643,'action complete via WP Cron','2025-12-01 05:19:34','2025-12-01 06:19:34'), -(19867,6645,'action started via WP Cron','2025-12-01 06:20:19','2025-12-01 07:20:19'), -(19868,6646,'action created','2025-12-01 06:20:19','2025-12-01 07:20:19'), -(19869,6645,'action complete via WP Cron','2025-12-01 06:20:19','2025-12-01 07:20:19'), -(19870,6646,'action started via WP Cron','2025-12-01 07:20:37','2025-12-01 08:20:37'), -(19871,6647,'action created','2025-12-01 07:20:37','2025-12-01 08:20:37'), -(19872,6646,'action complete via WP Cron','2025-12-01 07:20:37','2025-12-01 08:20:37'), -(19873,6647,'action started via WP Cron','2025-12-01 08:21:06','2025-12-01 09:21:06'), -(19874,6648,'action created','2025-12-01 08:21:06','2025-12-01 09:21:06'), -(19875,6647,'action complete via WP Cron','2025-12-01 08:21:06','2025-12-01 09:21:06'), -(19876,6589,'action started via WP Cron','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19877,6589,'action complete via WP Cron','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19878,6649,'action created','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19879,6590,'action started via WP Cron','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19880,6590,'action complete via WP Cron','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19881,6650,'action created','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19882,6593,'action started via WP Cron','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19884,6651,'action created','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19885,6652,'action created','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19886,6593,'action complete via WP Cron','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19887,6653,'action created','2025-12-01 08:38:47','2025-12-01 09:38:47'), -(19888,6652,'action started via WP Cron','2025-12-01 08:40:21','2025-12-01 09:40:21'), -(19889,6652,'action complete via WP Cron','2025-12-01 08:40:21','2025-12-01 09:40:21'), -(19890,6648,'action started via Async Request','2025-12-01 09:21:15','2025-12-01 10:21:15'), -(19891,6654,'action created','2025-12-01 09:21:15','2025-12-01 10:21:15'), -(19892,6648,'action complete via Async Request','2025-12-01 09:21:15','2025-12-01 10:21:15'), -(19893,6654,'action started via WP Cron','2025-12-01 10:21:32','2025-12-01 11:21:32'), -(19894,6655,'action created','2025-12-01 10:21:32','2025-12-01 11:21:32'), -(19895,6654,'action complete via WP Cron','2025-12-01 10:21:32','2025-12-01 11:21:32'), -(19896,6614,'action started via WP Cron','2025-12-01 10:22:33','2025-12-01 11:22:33'), -(19897,6614,'action complete via WP Cron','2025-12-01 10:22:33','2025-12-01 11:22:33'), -(19898,6656,'action created','2025-12-01 10:22:33','2025-12-01 11:22:33'), -(19899,6597,'action started via WP Cron','2025-12-01 10:53:30','2025-12-01 11:53:30'), -(19900,6597,'action complete via WP Cron','2025-12-01 10:53:30','2025-12-01 11:53:30'), -(19901,6657,'action created','2025-12-01 10:53:30','2025-12-01 11:53:30'), -(19902,6598,'action started via WP Cron','2025-12-01 10:53:30','2025-12-01 11:53:30'), -(19903,6598,'action complete via WP Cron','2025-12-01 10:53:30','2025-12-01 11:53:30'), -(19904,6658,'action created','2025-12-01 10:53:30','2025-12-01 11:53:30'), -(19905,6655,'action started via WP Cron','2025-12-01 11:22:31','2025-12-01 12:22:31'), -(19906,6659,'action created','2025-12-01 11:22:31','2025-12-01 12:22:31'), -(19907,6655,'action complete via WP Cron','2025-12-01 11:22:31','2025-12-01 12:22:31'), -(19908,6659,'action started via WP Cron','2025-12-01 12:24:08','2025-12-01 13:24:08'), -(19909,6660,'action created','2025-12-01 12:24:08','2025-12-01 13:24:08'), -(19910,6659,'action complete via WP Cron','2025-12-01 12:24:08','2025-12-01 13:24:08'), -(19911,6660,'action started via WP Cron','2025-12-01 13:24:26','2025-12-01 14:24:26'), -(19912,6661,'action created','2025-12-01 13:24:26','2025-12-01 14:24:26'), -(19913,6660,'action complete via WP Cron','2025-12-01 13:24:26','2025-12-01 14:24:26'), -(19914,6661,'action started via WP Cron','2025-12-01 14:41:12','2025-12-01 15:41:12'), -(19915,6662,'action created','2025-12-01 14:41:12','2025-12-01 15:41:12'), -(19916,6661,'action complete via WP Cron','2025-12-01 14:41:12','2025-12-01 15:41:12'), -(19917,6662,'action started via WP Cron','2025-12-01 15:41:32','2025-12-01 16:41:32'), -(19918,6663,'action created','2025-12-01 15:41:32','2025-12-01 16:41:32'), -(19919,6662,'action complete via WP Cron','2025-12-01 15:41:32','2025-12-01 16:41:32'), -(19920,6663,'action started via WP Cron','2025-12-01 16:50:36','2025-12-01 17:50:36'), -(19921,6664,'action created','2025-12-01 16:50:36','2025-12-01 17:50:36'), -(19922,6663,'action complete via WP Cron','2025-12-01 16:50:36','2025-12-01 17:50:36'), -(19923,6664,'action started via WP Cron','2025-12-01 17:50:36','2025-12-01 18:50:36'), -(19924,6665,'action created','2025-12-01 17:50:36','2025-12-01 18:50:36'), -(19925,6664,'action complete via WP Cron','2025-12-01 17:50:36','2025-12-01 18:50:36'), -(19926,6665,'action started via WP Cron','2025-12-01 18:51:28','2025-12-01 19:51:28'), -(19927,6666,'action created','2025-12-01 18:51:28','2025-12-01 19:51:28'), -(19928,6665,'action complete via WP Cron','2025-12-01 18:51:28','2025-12-01 19:51:28'), -(19929,6666,'action started via WP Cron','2025-12-01 19:52:46','2025-12-01 20:52:46'), -(19930,6667,'action created','2025-12-01 19:52:46','2025-12-01 20:52:46'), -(19931,6666,'action complete via WP Cron','2025-12-01 19:52:46','2025-12-01 20:52:46'), -(19932,6608,'action started via WP Cron','2025-12-01 20:10:37','2025-12-01 21:10:37'), -(19933,6608,'action complete via WP Cron','2025-12-01 20:10:37','2025-12-01 21:10:37'), -(19934,6668,'action created','2025-12-01 20:10:37','2025-12-01 21:10:37'), -(19935,6609,'action started via WP Cron','2025-12-01 20:10:37','2025-12-01 21:10:37'), -(19936,6609,'action complete via WP Cron','2025-12-01 20:10:37','2025-12-01 21:10:37'), -(19937,6669,'action created','2025-12-01 20:10:37','2025-12-01 21:10:37'), -(19938,6667,'action started via WP Cron','2025-12-01 20:53:27','2025-12-01 21:53:27'), -(19939,6670,'action created','2025-12-01 20:53:27','2025-12-01 21:53:27'), -(19940,6667,'action complete via WP Cron','2025-12-01 20:53:27','2025-12-01 21:53:27'), -(19941,6670,'action started via WP Cron','2025-12-01 21:53:44','2025-12-01 22:53:44'), -(19942,6671,'action created','2025-12-01 21:53:44','2025-12-01 22:53:44'), -(19943,6670,'action complete via WP Cron','2025-12-01 21:53:44','2025-12-01 22:53:44'), -(19944,6656,'action started via WP Cron','2025-12-01 22:23:10','2025-12-01 23:23:10'), -(19945,6656,'action complete via WP Cron','2025-12-01 22:23:10','2025-12-01 23:23:10'), -(19946,6672,'action created','2025-12-01 22:23:10','2025-12-01 23:23:10'), -(19947,6620,'action started via WP Cron','2025-12-01 22:32:33','2025-12-01 23:32:33'), -(19948,6620,'action complete via WP Cron','2025-12-01 22:32:33','2025-12-01 23:32:33'), -(19949,6673,'action created','2025-12-01 22:32:33','2025-12-01 23:32:33'), -(19950,6671,'action started via WP Cron','2025-12-01 22:57:07','2025-12-01 23:57:07'), -(19951,6674,'action created','2025-12-01 22:57:07','2025-12-01 23:57:07'), -(19952,6671,'action complete via WP Cron','2025-12-01 22:57:07','2025-12-01 23:57:07'), -(19953,6674,'action started via WP Cron','2025-12-01 23:57:08','2025-12-02 00:57:08'), -(19954,6675,'action created','2025-12-01 23:57:08','2025-12-02 00:57:08'), -(19955,6674,'action complete via WP Cron','2025-12-01 23:57:08','2025-12-02 00:57:08'), -(19956,6675,'action started via WP Cron','2025-12-02 00:57:31','2025-12-02 01:57:31'), -(19957,6676,'action created','2025-12-02 00:57:31','2025-12-02 01:57:31'), -(19958,6675,'action complete via WP Cron','2025-12-02 00:57:31','2025-12-02 01:57:31'), -(19959,6676,'action started via WP Cron','2025-12-02 01:57:38','2025-12-02 02:57:38'), -(19960,6677,'action created','2025-12-02 01:57:38','2025-12-02 02:57:38'), -(19961,6676,'action complete via WP Cron','2025-12-02 01:57:38','2025-12-02 02:57:38'), -(19962,6677,'action started via WP Cron','2025-12-02 02:58:03','2025-12-02 03:58:03'), -(19963,6678,'action created','2025-12-02 02:58:03','2025-12-02 03:58:03'), -(19964,6677,'action complete via WP Cron','2025-12-02 02:58:03','2025-12-02 03:58:03'), -(19965,6678,'action started via WP Cron','2025-12-02 04:04:09','2025-12-02 05:04:09'), -(19966,6679,'action created','2025-12-02 04:04:09','2025-12-02 05:04:09'), -(19967,6678,'action complete via WP Cron','2025-12-02 04:04:09','2025-12-02 05:04:09'), -(19968,6368,'action started via WP Cron','2025-12-02 04:15:36','2025-12-02 05:15:36'), -(19969,6368,'action complete via WP Cron','2025-12-02 04:15:36','2025-12-02 05:15:36'), -(19970,6680,'action created','2025-12-02 04:15:36','2025-12-02 05:15:36'), -(19971,6651,'action started via WP Cron','2025-12-02 05:00:36','2025-12-02 06:00:36'), -(19972,6651,'action complete via WP Cron','2025-12-02 05:00:36','2025-12-02 06:00:36'), -(19974,6679,'action started via WP Cron','2025-12-02 05:04:40','2025-12-02 06:04:40'), -(19975,6682,'action created','2025-12-02 05:04:40','2025-12-02 06:04:40'), -(19976,6679,'action complete via WP Cron','2025-12-02 05:04:40','2025-12-02 06:04:40'), -(19977,6682,'action started via WP Cron','2025-12-02 06:09:12','2025-12-02 07:09:12'), -(19978,6683,'action created','2025-12-02 06:09:12','2025-12-02 07:09:12'), -(19979,6682,'action complete via WP Cron','2025-12-02 06:09:12','2025-12-02 07:09:12'), -(19980,6683,'action started via WP Cron','2025-12-02 07:09:35','2025-12-02 08:09:35'), -(19981,6684,'action created','2025-12-02 07:09:35','2025-12-02 08:09:35'), -(19982,6683,'action complete via WP Cron','2025-12-02 07:09:35','2025-12-02 08:09:35'), -(19983,6684,'action started via WP Cron','2025-12-02 08:11:35','2025-12-02 09:11:35'), -(19984,6685,'action created','2025-12-02 08:11:35','2025-12-02 09:11:35'), -(19985,6684,'action complete via WP Cron','2025-12-02 08:11:35','2025-12-02 09:11:35'), -(19986,6649,'action started via WP Cron','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19987,6649,'action complete via WP Cron','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19988,6686,'action created','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19989,6650,'action started via WP Cron','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19990,6650,'action complete via WP Cron','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19991,6687,'action created','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19992,6653,'action started via WP Cron','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19994,6688,'action created','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19995,6689,'action created','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19996,6653,'action complete via WP Cron','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19997,6690,'action created','2025-12-02 08:39:29','2025-12-02 09:39:29'), -(19998,6689,'action started via WP Cron','2025-12-02 08:40:28','2025-12-02 09:40:28'), -(19999,6689,'action complete via WP Cron','2025-12-02 08:40:28','2025-12-02 09:40:28'), -(20000,6685,'action started via WP Cron','2025-12-02 09:14:02','2025-12-02 10:14:02'), -(20001,6691,'action created','2025-12-02 09:14:02','2025-12-02 10:14:02'), -(20002,6685,'action complete via WP Cron','2025-12-02 09:14:02','2025-12-02 10:14:02'), -(20003,6692,'action created','2025-12-02 09:20:29','2025-12-02 10:20:29'), -(20004,6692,'action started via WP Cron','2025-12-02 09:21:44','2025-12-02 10:21:44'), -(20005,6692,'action complete via WP Cron','2025-12-02 09:21:44','2025-12-02 10:21:44'), -(20006,6693,'action created','2025-12-02 09:21:54','2025-12-02 10:21:54'), -(20007,6693,'action started via WP Cron','2025-12-02 09:22:44','2025-12-02 10:22:44'), -(20008,6693,'action complete via WP Cron','2025-12-02 09:22:44','2025-12-02 10:22:44'), -(20009,6691,'action started via WP Cron','2025-12-02 10:14:39','2025-12-02 11:14:39'), -(20010,6694,'action created','2025-12-02 10:14:39','2025-12-02 11:14:39'), -(20011,6691,'action complete via WP Cron','2025-12-02 10:14:39','2025-12-02 11:14:39'), -(20012,6672,'action started via WP Cron','2025-12-02 10:23:33','2025-12-02 11:23:33'), -(20013,6672,'action complete via WP Cron','2025-12-02 10:23:33','2025-12-02 11:23:33'), -(20014,6695,'action created','2025-12-02 10:23:33','2025-12-02 11:23:33'), -(20015,6657,'action started via WP Cron','2025-12-02 10:54:27','2025-12-02 11:54:27'), -(20016,6657,'action complete via WP Cron','2025-12-02 10:54:27','2025-12-02 11:54:27'), -(20017,6696,'action created','2025-12-02 10:54:27','2025-12-02 11:54:27'), -(20018,6658,'action started via WP Cron','2025-12-02 10:54:27','2025-12-02 11:54:27'), -(20019,6658,'action complete via WP Cron','2025-12-02 10:54:27','2025-12-02 11:54:27'), -(20020,6697,'action created','2025-12-02 10:54:27','2025-12-02 11:54:27'), -(20021,6694,'action started via WP Cron','2025-12-02 11:23:03','2025-12-02 12:23:03'), -(20022,6698,'action created','2025-12-02 11:23:03','2025-12-02 12:23:03'), -(20023,6694,'action complete via WP Cron','2025-12-02 11:23:03','2025-12-02 12:23:03'), -(20024,6698,'action started via WP Cron','2025-12-02 12:23:31','2025-12-02 13:23:31'), -(20025,6699,'action created','2025-12-02 12:23:31','2025-12-02 13:23:31'), -(20026,6698,'action complete via WP Cron','2025-12-02 12:23:31','2025-12-02 13:23:31'), -(20027,6699,'action started via WP Cron','2025-12-02 13:25:35','2025-12-02 14:25:35'), -(20028,6700,'action created','2025-12-02 13:25:35','2025-12-02 14:25:35'), -(20029,6699,'action complete via WP Cron','2025-12-02 13:25:35','2025-12-02 14:25:35'), -(20030,6700,'action started via WP Cron','2025-12-02 14:34:20','2025-12-02 15:34:20'), -(20031,6701,'action created','2025-12-02 14:34:20','2025-12-02 15:34:20'), -(20032,6700,'action complete via WP Cron','2025-12-02 14:34:20','2025-12-02 15:34:20'), -(20033,6701,'action started via WP Cron','2025-12-02 15:40:38','2025-12-02 16:40:38'), -(20034,6702,'action created','2025-12-02 15:40:38','2025-12-02 16:40:38'), -(20035,6701,'action complete via WP Cron','2025-12-02 15:40:38','2025-12-02 16:40:38'), -(20036,6702,'action started via WP Cron','2025-12-02 17:06:18','2025-12-02 18:06:18'), -(20037,6703,'action created','2025-12-02 17:06:18','2025-12-02 18:06:18'), -(20038,6702,'action complete via WP Cron','2025-12-02 17:06:18','2025-12-02 18:06:18'), -(20039,6703,'action started via WP Cron','2025-12-02 18:11:52','2025-12-02 19:11:52'), -(20040,6704,'action created','2025-12-02 18:11:52','2025-12-02 19:11:52'), -(20041,6703,'action complete via WP Cron','2025-12-02 18:11:53','2025-12-02 19:11:53'), -(20042,6704,'action started via WP Cron','2025-12-02 19:21:31','2025-12-02 20:21:31'), -(20043,6705,'action created','2025-12-02 19:21:31','2025-12-02 20:21:31'), -(20044,6704,'action complete via WP Cron','2025-12-02 19:21:31','2025-12-02 20:21:31'), -(20045,6668,'action started via WP Cron','2025-12-02 20:10:38','2025-12-02 21:10:38'), -(20046,6668,'action complete via WP Cron','2025-12-02 20:10:38','2025-12-02 21:10:38'), -(20047,6706,'action created','2025-12-02 20:10:38','2025-12-02 21:10:38'), -(20048,6669,'action started via WP Cron','2025-12-02 20:10:38','2025-12-02 21:10:38'), -(20049,6669,'action complete via WP Cron','2025-12-02 20:10:38','2025-12-02 21:10:38'), -(20050,6707,'action created','2025-12-02 20:10:38','2025-12-02 21:10:38'), -(20051,6705,'action started via WP Cron','2025-12-02 20:21:35','2025-12-02 21:21:35'), -(20052,6708,'action created','2025-12-02 20:21:35','2025-12-02 21:21:35'), -(20053,6705,'action complete via WP Cron','2025-12-02 20:21:35','2025-12-02 21:21:35'), -(20054,6709,'action created','2025-12-02 20:46:36','2025-12-02 21:46:36'), -(20055,6709,'action started via WP Cron','2025-12-02 20:47:29','2025-12-02 21:47:29'), -(20056,6709,'action complete via WP Cron','2025-12-02 20:47:29','2025-12-02 21:47:29'), -(20057,6710,'action created','2025-12-02 20:47:29','2025-12-02 21:47:29'), -(20058,6710,'action started via WP Cron','2025-12-02 20:54:51','2025-12-02 21:54:51'), -(20059,6710,'action complete via WP Cron','2025-12-02 20:54:51','2025-12-02 21:54:51'), -(20060,6708,'action started via WP Cron','2025-12-02 21:23:49','2025-12-02 22:23:49'), -(20061,6711,'action created','2025-12-02 21:23:49','2025-12-02 22:23:49'), -(20062,6708,'action complete via WP Cron','2025-12-02 21:23:49','2025-12-02 22:23:49'), -(20063,6695,'action started via WP Cron','2025-12-02 22:28:45','2025-12-02 23:28:45'), -(20064,6695,'action complete via WP Cron','2025-12-02 22:28:45','2025-12-02 23:28:45'), -(20065,6712,'action created','2025-12-02 22:28:45','2025-12-02 23:28:45'), -(20066,6711,'action started via WP Cron','2025-12-02 22:28:45','2025-12-02 23:28:45'), -(20067,6713,'action created','2025-12-02 22:28:45','2025-12-02 23:28:45'), -(20068,6711,'action complete via WP Cron','2025-12-02 22:28:45','2025-12-02 23:28:45'), -(20069,6673,'action started via WP Cron','2025-12-02 22:39:37','2025-12-02 23:39:37'), -(20070,6673,'action complete via WP Cron','2025-12-02 22:39:37','2025-12-02 23:39:37'), -(20071,6714,'action created','2025-12-02 22:39:37','2025-12-02 23:39:37'), -(20072,6713,'action started via WP Cron','2025-12-02 23:42:39','2025-12-03 00:42:39'), -(20073,6715,'action created','2025-12-02 23:42:39','2025-12-03 00:42:39'), -(20074,6713,'action complete via WP Cron','2025-12-02 23:42:39','2025-12-03 00:42:39'), -(20075,6715,'action started via WP Cron','2025-12-03 00:45:57','2025-12-03 01:45:57'), -(20076,6716,'action created','2025-12-03 00:45:57','2025-12-03 01:45:57'), -(20077,6715,'action complete via WP Cron','2025-12-03 00:45:57','2025-12-03 01:45:57'), -(20078,6716,'action started via WP Cron','2025-12-03 02:22:24','2025-12-03 03:22:24'), -(20079,6717,'action created','2025-12-03 02:22:24','2025-12-03 03:22:24'), -(20080,6716,'action complete via WP Cron','2025-12-03 02:22:24','2025-12-03 03:22:24'), -(20081,6717,'action started via WP Cron','2025-12-03 03:35:49','2025-12-03 04:35:49'), -(20082,6718,'action created','2025-12-03 03:35:49','2025-12-03 04:35:49'), -(20083,6717,'action complete via WP Cron','2025-12-03 03:35:49','2025-12-03 04:35:49'), -(20084,6718,'action started via WP Cron','2025-12-03 04:56:01','2025-12-03 05:56:01'), -(20085,6719,'action created','2025-12-03 04:56:01','2025-12-03 05:56:01'), -(20086,6718,'action complete via WP Cron','2025-12-03 04:56:01','2025-12-03 05:56:01'), -(20087,6688,'action started via WP Cron','2025-12-03 05:22:16','2025-12-03 06:22:16'), -(20088,6688,'action complete via WP Cron','2025-12-03 05:22:16','2025-12-03 06:22:16'), -(20090,6719,'action started via WP Cron','2025-12-03 06:07:09','2025-12-03 07:07:09'), -(20091,6721,'action created','2025-12-03 06:07:09','2025-12-03 07:07:09'), -(20092,6719,'action complete via WP Cron','2025-12-03 06:07:09','2025-12-03 07:07:09'), -(20093,6721,'action started via WP Cron','2025-12-03 07:07:31','2025-12-03 08:07:31'), -(20094,6722,'action created','2025-12-03 07:07:31','2025-12-03 08:07:31'), -(20095,6721,'action complete via WP Cron','2025-12-03 07:07:31','2025-12-03 08:07:31'), -(20096,6723,'action created','2025-12-03 07:39:42','2025-12-03 08:39:42'), -(20097,6724,'action created','2025-12-03 07:39:46','2025-12-03 08:39:46'), -(20098,6725,'action created','2025-12-03 07:39:46','2025-12-03 08:39:46'), -(20099,6726,'action created','2025-12-03 07:40:02','2025-12-03 08:40:02'), -(20100,6723,'action started via WP Cron','2025-12-03 07:40:27','2025-12-03 08:40:27'), -(20101,6723,'action complete via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20102,6724,'action started via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20103,6724,'action complete via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20104,6725,'action started via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20105,6725,'action complete via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20106,6726,'action started via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20107,6726,'action complete via WP Cron','2025-12-03 07:40:28','2025-12-03 08:40:28'), -(20108,6727,'action created','2025-12-03 07:40:47','2025-12-03 08:40:47'), -(20109,6728,'action created','2025-12-03 07:40:50','2025-12-03 08:40:50'), -(20110,6729,'action created','2025-12-03 07:40:50','2025-12-03 08:40:50'), -(20111,6730,'action created','2025-12-03 07:40:56','2025-12-03 08:40:56'), -(20112,6727,'action started via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20113,6727,'action complete via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20114,6728,'action started via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20115,6728,'action complete via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20116,6729,'action started via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20117,6729,'action complete via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20118,6730,'action started via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20119,6730,'action complete via WP Cron','2025-12-03 07:41:28','2025-12-03 08:41:28'), -(20120,6731,'action created','2025-12-03 07:41:38','2025-12-03 08:41:38'), -(20121,6732,'action created','2025-12-03 07:41:42','2025-12-03 08:41:42'), -(20122,6733,'action created','2025-12-03 07:41:42','2025-12-03 08:41:42'), -(20123,6731,'action started via Async Request','2025-12-03 07:41:48','2025-12-03 08:41:48'), -(20124,6731,'action complete via Async Request','2025-12-03 07:41:48','2025-12-03 08:41:48'), -(20125,6732,'action started via Async Request','2025-12-03 07:41:48','2025-12-03 08:41:48'), -(20126,6732,'action complete via Async Request','2025-12-03 07:41:48','2025-12-03 08:41:48'), -(20127,6733,'action started via Async Request','2025-12-03 07:41:48','2025-12-03 08:41:48'), -(20128,6733,'action complete via Async Request','2025-12-03 07:41:48','2025-12-03 08:41:48'), -(20129,6734,'action created','2025-12-03 07:41:57','2025-12-03 08:41:57'), -(20130,6734,'action started via WP Cron','2025-12-03 07:42:28','2025-12-03 08:42:28'), -(20131,6734,'action complete via WP Cron','2025-12-03 07:42:28','2025-12-03 08:42:28'), -(20132,6735,'action created','2025-12-03 07:43:29','2025-12-03 08:43:29'), -(20133,6735,'action started via Async Request','2025-12-03 07:43:57','2025-12-03 08:43:57'), -(20134,6735,'action complete via Async Request','2025-12-03 07:43:57','2025-12-03 08:43:57'), -(20135,6736,'action created','2025-12-03 07:46:39','2025-12-03 08:46:39'), -(20136,6737,'action created','2025-12-03 07:46:39','2025-12-03 08:46:39'), -(20137,6738,'action created','2025-12-03 07:46:42','2025-12-03 08:46:42'), -(20138,6739,'action created','2025-12-03 07:46:48','2025-12-03 08:46:48'), -(20139,6740,'action created','2025-12-03 07:47:04','2025-12-03 08:47:04'), -(20140,6741,'action created','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20141,6736,'action started via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20142,6736,'action complete via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20143,6737,'action started via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20144,6737,'action complete via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20145,6738,'action started via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20146,6738,'action complete via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20147,6739,'action started via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20148,6739,'action complete via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20149,6740,'action started via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20150,6740,'action complete via Async Request','2025-12-03 07:47:09','2025-12-03 08:47:09'), -(20151,6741,'action started via Async Request','2025-12-03 07:47:14','2025-12-03 08:47:14'), -(20152,6741,'action complete via Async Request','2025-12-03 07:47:14','2025-12-03 08:47:14'), -(20153,6742,'action created','2025-12-03 07:47:15','2025-12-03 08:47:15'), -(20154,6742,'action started via Async Request','2025-12-03 07:47:19','2025-12-03 08:47:19'), -(20155,6742,'action complete via Async Request','2025-12-03 07:47:19','2025-12-03 08:47:19'), -(20156,6743,'action created','2025-12-03 07:47:19','2025-12-03 08:47:19'), -(20157,6744,'action created','2025-12-03 07:47:20','2025-12-03 08:47:20'), -(20158,6745,'action created','2025-12-03 07:47:20','2025-12-03 08:47:20'), -(20159,6743,'action started via Async Request','2025-12-03 07:47:25','2025-12-03 08:47:25'), -(20160,6743,'action complete via Async Request','2025-12-03 07:47:25','2025-12-03 08:47:25'), -(20161,6744,'action started via Async Request','2025-12-03 07:47:25','2025-12-03 08:47:25'), -(20162,6744,'action complete via Async Request','2025-12-03 07:47:25','2025-12-03 08:47:25'), -(20163,6745,'action started via Async Request','2025-12-03 07:47:25','2025-12-03 08:47:25'), -(20164,6745,'action complete via Async Request','2025-12-03 07:47:25','2025-12-03 08:47:25'), -(20165,6746,'action created','2025-12-03 07:59:43','2025-12-03 08:59:43'), -(20166,6747,'action created','2025-12-03 07:59:43','2025-12-03 08:59:43'), -(20167,6748,'action created','2025-12-03 07:59:49','2025-12-03 08:59:49'), -(20168,6749,'action created','2025-12-03 07:59:51','2025-12-03 08:59:51'), -(20169,6750,'action created','2025-12-03 07:59:51','2025-12-03 08:59:51'), -(20170,6751,'action created','2025-12-03 07:59:55','2025-12-03 08:59:55'), -(20171,6746,'action started via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20172,6746,'action complete via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20173,6747,'action started via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20174,6747,'action complete via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20175,6748,'action started via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20176,6748,'action complete via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20177,6749,'action started via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20178,6749,'action complete via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20179,6750,'action started via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20180,6750,'action complete via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20181,6751,'action started via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20182,6751,'action complete via Async Request','2025-12-03 08:00:01','2025-12-03 09:00:01'), -(20183,6752,'action created','2025-12-03 08:03:24','2025-12-03 09:03:24'), -(20184,6752,'action started via WP Cron','2025-12-03 08:03:26','2025-12-03 09:03:26'), -(20185,6752,'action complete via WP Cron','2025-12-03 08:03:26','2025-12-03 09:03:26'), -(20186,6753,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20187,6754,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20188,6755,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20189,6756,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20190,6757,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20191,6758,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20192,6759,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20193,6760,'action created','2025-12-03 08:03:30','2025-12-03 09:03:30'), -(20194,6753,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20195,6753,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20196,6754,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20197,6754,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20198,6755,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20199,6755,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20200,6756,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20201,6756,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20202,6757,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20203,6757,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20204,6758,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20205,6758,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20206,6759,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20207,6759,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20208,6760,'action started via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20209,6760,'action complete via Async Request','2025-12-03 08:03:42','2025-12-03 09:03:42'), -(20210,6722,'action started via WP Cron','2025-12-03 08:07:45','2025-12-03 09:07:45'), -(20211,6761,'action created','2025-12-03 08:07:45','2025-12-03 09:07:45'), -(20212,6722,'action complete via WP Cron','2025-12-03 08:07:45','2025-12-03 09:07:45'), -(20213,6762,'action created','2025-12-03 08:27:36','2025-12-03 09:27:36'), -(20214,6763,'action created','2025-12-03 08:27:36','2025-12-03 09:27:36'), -(20215,6764,'action created','2025-12-03 08:27:37','2025-12-03 09:27:37'), -(20216,6765,'action created','2025-12-03 08:27:37','2025-12-03 09:27:37'), -(20217,6766,'action created','2025-12-03 08:27:37','2025-12-03 09:27:37'), -(20218,6767,'action created','2025-12-03 08:27:37','2025-12-03 09:27:37'), -(20219,6768,'action created','2025-12-03 08:27:37','2025-12-03 09:27:37'), -(20220,6769,'action created','2025-12-03 08:27:37','2025-12-03 09:27:37'), -(20221,6762,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20222,6762,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20223,6763,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20224,6763,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20225,6764,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20226,6764,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20227,6765,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20228,6765,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20229,6766,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20230,6766,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20231,6767,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20232,6767,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20233,6768,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20234,6768,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20235,6769,'action started via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20236,6769,'action complete via Async Request','2025-12-03 08:28:15','2025-12-03 09:28:15'), -(20237,6686,'action started via Async Request','2025-12-03 08:39:46','2025-12-03 09:39:46'), -(20238,6686,'action complete via Async Request','2025-12-03 08:39:46','2025-12-03 09:39:46'), -(20239,6770,'action created','2025-12-03 08:39:46','2025-12-03 09:39:46'), -(20240,6687,'action started via Async Request','2025-12-03 08:39:46','2025-12-03 09:39:46'), -(20241,6687,'action complete via Async Request','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20242,6771,'action created','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20243,6690,'action started via Async Request','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20245,6772,'action created','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20246,6773,'action created','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20247,6690,'action complete via Async Request','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20248,6774,'action created','2025-12-03 08:39:47','2025-12-03 09:39:47'), -(20249,6773,'action started via WP Cron','2025-12-03 08:40:56','2025-12-03 09:40:56'), -(20250,6773,'action complete via WP Cron','2025-12-03 08:40:56','2025-12-03 09:40:56'), -(20251,6775,'action created','2025-12-03 08:57:27','2025-12-03 09:57:27'), -(20252,6776,'action created','2025-12-03 08:57:27','2025-12-03 09:57:27'), -(20253,6775,'action started via Async Request','2025-12-03 08:58:20','2025-12-03 09:58:20'), -(20254,6775,'action complete via Async Request','2025-12-03 08:58:20','2025-12-03 09:58:20'), -(20255,6776,'action started via Async Request','2025-12-03 08:58:20','2025-12-03 09:58:20'), -(20256,6776,'action complete via Async Request','2025-12-03 08:58:20','2025-12-03 09:58:20'), -(20257,6761,'action started via WP Cron','2025-12-03 09:08:30','2025-12-03 10:08:30'), -(20258,6777,'action created','2025-12-03 09:08:30','2025-12-03 10:08:30'), -(20259,6761,'action complete via WP Cron','2025-12-03 09:08:30','2025-12-03 10:08:30'), -(20260,6778,'action created','2025-12-03 09:11:50','2025-12-03 10:11:50'), -(20261,6779,'action created','2025-12-03 09:11:50','2025-12-03 10:11:50'), -(20262,6780,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20263,6781,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20264,6782,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20265,6783,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20266,6784,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20267,6785,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20268,6786,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20269,6787,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20270,6788,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20271,6789,'action created','2025-12-03 09:11:52','2025-12-03 10:11:52'), -(20272,6778,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20273,6778,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20274,6779,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20275,6779,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20276,6780,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20277,6780,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20278,6781,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20279,6781,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20280,6782,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20281,6782,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20282,6783,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20283,6783,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20284,6784,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20285,6784,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20286,6785,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20287,6785,'action complete via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20288,6786,'action started via Async Request','2025-12-03 09:12:03','2025-12-03 10:12:03'), -(20289,6786,'action complete via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20290,6787,'action started via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20291,6787,'action complete via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20292,6788,'action started via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20293,6788,'action complete via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20294,6789,'action started via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20295,6789,'action complete via Async Request','2025-12-03 09:12:04','2025-12-03 10:12:04'), -(20296,6790,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20297,6791,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20298,6792,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20299,6793,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20300,6794,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20301,6795,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20302,6796,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20303,6797,'action created','2025-12-03 09:12:29','2025-12-03 10:12:29'), -(20304,6790,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20305,6790,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20306,6791,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20307,6791,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20308,6792,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20309,6792,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20310,6793,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20311,6793,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20312,6794,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20313,6794,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20314,6795,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20315,6795,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20316,6796,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20317,6796,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20318,6797,'action started via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20319,6797,'action complete via Async Request','2025-12-03 09:13:10','2025-12-03 10:13:10'), -(20320,6798,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20321,6799,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20322,6800,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20323,6801,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20324,6802,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20325,6803,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20326,6804,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20327,6805,'action created','2025-12-03 09:16:08','2025-12-03 10:16:08'), -(20328,6806,'action created','2025-12-03 09:16:09','2025-12-03 10:16:09'), -(20329,6798,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20330,6798,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20331,6799,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20332,6799,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20333,6800,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20334,6800,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20335,6801,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20336,6801,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20337,6802,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20338,6802,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20339,6803,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20340,6803,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20341,6804,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20342,6804,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20343,6805,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20344,6805,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20345,6806,'action started via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20346,6806,'action complete via Async Request','2025-12-03 09:16:23','2025-12-03 10:16:23'), -(20347,6777,'action started via WP Cron','2025-12-03 10:08:32','2025-12-03 11:08:32'), -(20348,6807,'action created','2025-12-03 10:08:32','2025-12-03 11:08:32'), -(20349,6777,'action complete via WP Cron','2025-12-03 10:08:32','2025-12-03 11:08:32'), -(20350,6712,'action started via WP Cron','2025-12-03 10:39:01','2025-12-03 11:39:01'), -(20351,6712,'action complete via WP Cron','2025-12-03 10:39:01','2025-12-03 11:39:01'), -(20352,6808,'action created','2025-12-03 10:39:01','2025-12-03 11:39:01'), -(20353,6696,'action started via WP Cron','2025-12-03 10:59:20','2025-12-03 11:59:20'), -(20354,6696,'action complete via WP Cron','2025-12-03 10:59:20','2025-12-03 11:59:20'), -(20355,6809,'action created','2025-12-03 10:59:20','2025-12-03 11:59:20'), -(20356,6697,'action started via WP Cron','2025-12-03 10:59:20','2025-12-03 11:59:20'), -(20357,6697,'action complete via WP Cron','2025-12-03 10:59:20','2025-12-03 11:59:20'), -(20358,6810,'action created','2025-12-03 10:59:20','2025-12-03 11:59:20'), -(20359,6807,'action started via WP Cron','2025-12-03 11:09:15','2025-12-03 12:09:15'), -(20360,6811,'action created','2025-12-03 11:09:15','2025-12-03 12:09:15'), -(20361,6807,'action complete via WP Cron','2025-12-03 11:09:15','2025-12-03 12:09:15'), -(20362,6811,'action started via WP Cron','2025-12-03 12:10:42','2025-12-03 13:10:42'), -(20363,6812,'action created','2025-12-03 12:10:42','2025-12-03 13:10:42'), -(20364,6811,'action complete via WP Cron','2025-12-03 12:10:42','2025-12-03 13:10:42'); -/*!40000 ALTER TABLE `haikuwp_actionscheduler_logs` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_commentmeta` --- - -DROP TABLE IF EXISTS `haikuwp_commentmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_commentmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `comment_id` (`comment_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_commentmeta` --- - -LOCK TABLES `haikuwp_commentmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_commentmeta` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_commentmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_comments` --- - -DROP TABLE IF EXISTS `haikuwp_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_comments` ( - `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, - `comment_author` tinytext NOT NULL, - `comment_author_email` varchar(100) NOT NULL DEFAULT '', - `comment_author_url` varchar(200) NOT NULL DEFAULT '', - `comment_author_IP` varchar(100) NOT NULL DEFAULT '', - `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `comment_content` text NOT NULL, - `comment_karma` int(11) NOT NULL DEFAULT 0, - `comment_approved` varchar(20) NOT NULL DEFAULT '1', - `comment_agent` varchar(255) NOT NULL DEFAULT '', - `comment_type` varchar(20) NOT NULL DEFAULT 'comment', - `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`comment_ID`), - KEY `comment_post_ID` (`comment_post_ID`), - KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), - KEY `comment_date_gmt` (`comment_date_gmt`), - KEY `comment_parent` (`comment_parent`), - KEY `comment_author_email` (`comment_author_email`(10)), - KEY `woo_idx_comment_type` (`comment_type`), - KEY `woo_idx_comment_date_type` (`comment_date_gmt`,`comment_type`,`comment_approved`,`comment_post_ID`) -) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_comments` --- - -LOCK TABLES `haikuwp_comments` WRITE; -/*!40000 ALTER TABLE `haikuwp_comments` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_comments` VALUES -(1,1,'Un commentateur ou commentatrice WordPress','wapuu@wordpress.example','https://fr.wordpress.org/','','2024-08-04 22:10:39','2024-08-04 20:10:39','Bonjour, ceci est un commentaire.\nPour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\nLes avatars des personnes qui commentent arrivent depuis Gravatar.',0,'1','','comment',0,0), -(2,543,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 09:48:32','2024-11-13 08:48:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(3,544,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 12:45:12','2024-11-13 11:45:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(4,609,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 18:17:59','2024-11-13 17:17:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(5,640,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 19:43:49','2024-11-13 18:43:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(6,657,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-14 11:55:59','2024-11-14 10:55:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(7,678,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-16 19:45:11','2024-11-16 18:45:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(8,687,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 10:44:59','2024-11-17 09:44:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(9,701,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:10:45','2024-11-17 10:10:45','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(10,706,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:23:11','2024-11-17 10:23:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(11,777,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 17:12:14','2024-11-21 16:12:14','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(12,782,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 23:23:47','2024-11-21 22:23:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(13,784,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 15:12:26','2024-11-22 14:12:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(14,785,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 18:37:30','2024-11-22 17:37:30','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(15,786,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 19:24:28','2024-11-22 18:24:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(16,838,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 08:58:17','2024-11-25 07:58:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(17,850,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 12:20:02','2024-11-25 11:20:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(18,854,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 18:18:15','2024-11-25 17:18:15','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(19,862,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 16:42:54','2024-11-28 15:42:54','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(20,861,'gcch','contact@gcch.fr','','','2024-11-28 18:00:31','2024-11-28 17:00:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(21,863,'gcch','contact@gcch.fr','','','2024-11-28 18:14:12','2024-11-28 17:14:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(22,863,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 20:33:49','2024-11-28 19:33:49','Order status changed from trash to Processing.',0,'1','WooCommerce','order_note',0,0), -(23,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), -(24,863,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), -(25,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:39','2024-11-28 19:40:39','Order status changed from On hold to Pending payment.',0,'1','WooCommerce','order_note',0,0), -(26,866,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 10:07:40','2024-11-29 09:07:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(27,868,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 18:26:38','2024-11-29 17:26:38','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(28,869,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 11:06:46','2024-12-02 10:06:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(29,871,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 17:34:12','2024-12-02 16:34:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(30,872,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 18:04:43','2024-12-03 17:04:43','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(31,873,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 23:55:58','2024-12-03 22:55:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(32,875,'gcch','contact@gcch.fr','','','2024-12-04 00:15:44','2024-12-03 23:15:44','Coupon applied: "zzzzzz".',0,'1','WooCommerce','order_note',0,0), -(33,878,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 14:10:02','2024-12-06 13:10:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(34,879,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 15:22:12','2024-12-06 14:22:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(35,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-12 17:59:06','2024-12-12 16:59:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(36,879,'gcch','contact@gcch.fr','','','2024-12-12 22:43:43','2024-12-12 21:43:43','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(37,878,'gcch','contact@gcch.fr','','','2024-12-12 23:07:34','2024-12-12 22:07:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(38,881,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-13 09:39:25','2024-12-13 08:39:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(39,884,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-14 11:10:27','2024-12-14 10:10:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(40,878,'gcch','contact@gcch.fr','','','2024-12-15 10:35:42','2024-12-15 09:35:42','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0), -(41,880,'gcch','contact@gcch.fr','','','2024-12-15 10:59:40','2024-12-15 09:59:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(42,885,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-16 10:17:25','2024-12-16 09:17:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(43,884,'gcch','contact@gcch.fr','','','2024-12-16 15:13:02','2024-12-16 14:13:02','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(44,881,'gcch','contact@gcch.fr','','','2024-12-16 15:13:35','2024-12-16 14:13:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(45,886,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-17 09:40:36','2024-12-17 08:40:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(46,887,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-18 16:14:07','2024-12-18 15:14:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(47,886,'gcch','contact@gcch.fr','','','2024-12-18 18:16:41','2024-12-18 17:16:41','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(48,885,'gcch','contact@gcch.fr','','','2024-12-18 18:19:20','2024-12-18 17:19:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(49,888,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-19 10:09:28','2024-12-19 09:09:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(50,888,'gcch','contact@gcch.fr','','','2024-12-20 19:55:35','2024-12-20 18:55:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(51,889,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-26 13:41:16','2024-12-26 12:41:16','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(52,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-30 11:40:43','2024-12-30 10:40:43','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), -(53,889,'gcch','contact@gcch.fr','','','2024-12-31 12:59:04','2024-12-31 11:59:04','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(54,887,'gcch','contact@gcch.fr','','','2024-12-31 12:59:53','2024-12-31 11:59:53','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(55,894,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-03 10:04:36','2025-01-03 09:04:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(56,894,'gcch','contact@gcch.fr','','','2025-01-07 15:56:35','2025-01-07 14:56:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(57,895,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-09 13:03:17','2025-01-09 12:03:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(58,895,'gcch','contact@gcch.fr','','','2025-01-14 20:47:46','2025-01-14 19:47:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(59,884,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-23 22:51:50','2025-01-23 21:51:50','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), -(60,897,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-29 11:33:02','2025-01-29 10:33:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(61,899,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-30 09:57:27','2025-01-30 08:57:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(62,897,'gcch','contact@gcch.fr','','','2025-02-03 18:36:20','2025-02-03 17:36:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(63,899,'gcch','contact@gcch.fr','','','2025-02-03 18:37:03','2025-02-03 17:37:03','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(64,901,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-23 18:08:48','2025-02-23 17:08:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(65,903,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-26 13:53:34','2025-02-26 12:53:34','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(66,903,'gcch','contact@gcch.fr','','','2025-03-01 09:14:28','2025-03-01 08:14:28','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(67,905,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 11:46:58','2025-03-03 10:46:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(68,906,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 12:11:31','2025-03-03 11:11:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(69,907,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-05 12:05:44','2025-03-05 11:05:44','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(70,905,'gcch','contact@gcch.fr','','','2025-03-06 09:24:34','2025-03-06 08:24:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(71,906,'gcch','contact@gcch.fr','','','2025-03-06 09:25:37','2025-03-06 08:25:37','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(72,907,'gcch','contact@gcch.fr','','','2025-03-18 10:40:40','2025-03-18 09:40:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(73,908,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-23 22:41:40','2025-03-23 21:41:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(74,908,'gcch','contact@gcch.fr','','','2025-04-04 08:41:40','2025-04-04 06:41:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(75,910,'WooCommerce','woocommerce@haikuatelier.com','','','2025-04-08 13:45:10','2025-04-08 11:45:10','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(76,912,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 11:50:58','2025-05-09 09:50:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(77,921,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 21:57:36','2025-05-09 19:57:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(78,910,'gcch','contact@gcch.fr','','','2025-05-11 15:35:33','2025-05-11 13:35:33','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(79,912,'gcch','contact@gcch.fr','','','2025-05-16 07:54:01','2025-05-16 05:54:01','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(80,921,'gcch','contact@gcch.fr','','','2025-05-16 07:54:27','2025-05-16 05:54:27','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(81,922,'gcch','contact@gcch.fr','','','2025-05-16 07:54:37','2025-05-16 05:54:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(82,922,'gcch','contact@gcch.fr','','','2025-05-16 07:55:05','2025-05-16 05:55:05','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(83,924,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-05 09:45:48','2025-06-05 07:45:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(84,924,'gcch','contact@gcch.fr','','','2025-06-09 12:59:57','2025-06-09 10:59:57','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(85,997,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-21 11:56:06','2025-06-21 09:56:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(86,997,'gcch','contact@gcch.fr','','','2025-06-28 16:32:24','2025-06-28 14:32:24','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(87,1013,'WooCommerce','woocommerce@haikuatelier.com','','','2025-07-14 14:39:22','2025-07-14 12:39:22','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(88,1013,'gcch','contact@gcch.fr','','','2025-07-16 10:59:10','2025-07-16 08:59:10','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(89,1443,'WooCommerce','woocommerce@haikuatelier.com','','','2025-09-17 20:13:41','2025-09-17 18:13:41','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(90,1443,'gcch','contact@gcch.fr','','','2025-09-23 11:29:46','2025-09-23 09:29:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(91,1480,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-02 06:41:49','2025-10-02 04:41:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(92,1480,'gcch','contact@gcch.fr','','','2025-10-03 21:49:57','2025-10-03 19:49:57','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(93,1486,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-10 17:55:44','2025-10-10 15:55:44','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(94,1487,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-11 17:07:01','2025-10-11 15:07:01','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(95,1488,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-12 16:50:29','2025-10-12 14:50:29','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(96,1489,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-12 23:04:26','2025-10-12 21:04:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(97,1489,'gcch','contact@gcch.fr','','','2025-10-16 13:01:51','2025-10-16 11:01:51','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(98,1487,'gcch','contact@gcch.fr','','','2025-10-16 13:02:20','2025-10-16 11:02:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(99,1486,'gcch','contact@gcch.fr','','','2025-10-16 13:02:41','2025-10-16 11:02:41','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(100,1490,'WooCommerce','woocommerce@haikuatelier.com','','','2025-10-18 15:36:45','2025-10-18 13:36:45','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(101,1488,'gcch','contact@gcch.fr','','','2025-10-24 08:59:47','2025-10-24 06:59:47','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(102,1490,'gcch','contact@gcch.fr','','','2025-10-24 19:36:03','2025-10-24 17:36:03','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(103,1496,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-02 20:40:07','2025-11-02 19:40:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(104,1498,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-03 22:07:02','2025-11-03 21:07:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(105,1496,'gcch','contact@gcch.fr','','','2025-11-06 14:51:00','2025-11-06 13:51:00','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(106,1498,'gcch','contact@gcch.fr','','','2025-11-06 14:52:52','2025-11-06 13:52:52','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(107,1511,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-18 09:30:08','2025-11-18 08:30:08','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(108,1528,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-20 15:51:33','2025-11-20 14:51:33','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(109,1529,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-24 10:53:38','2025-11-24 09:53:38','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(110,1530,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-24 18:44:42','2025-11-24 17:44:42','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(111,1528,'gcch','contact@gcch.fr','','','2025-11-24 19:30:04','2025-11-24 18:30:04','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(112,1511,'gcch','contact@gcch.fr','','','2025-11-24 19:30:32','2025-11-24 18:30:32','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(113,1530,'gcch','contact@gcch.fr','','','2025-11-27 14:01:46','2025-11-27 13:01:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(114,1529,'gcch','contact@gcch.fr','','','2025-11-27 14:03:08','2025-11-27 13:03:08','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), -(115,1540,'WooCommerce','woocommerce@haikuatelier.com','','','2025-11-30 22:33:39','2025-11-30 21:33:39','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(116,1571,'WooCommerce','woocommerce@haikuatelier.com','','','2025-12-02 10:21:54','2025-12-02 09:21:54','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), -(117,1573,'WooCommerce','woocommerce@haikuatelier.com','','','2025-12-02 21:47:47','2025-12-02 20:47:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0); -/*!40000 ALTER TABLE `haikuwp_comments` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_links` --- - -DROP TABLE IF EXISTS `haikuwp_links`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_links` ( - `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `link_url` varchar(255) NOT NULL DEFAULT '', - `link_name` varchar(255) NOT NULL DEFAULT '', - `link_image` varchar(255) NOT NULL DEFAULT '', - `link_target` varchar(25) NOT NULL DEFAULT '', - `link_description` varchar(255) NOT NULL DEFAULT '', - `link_visible` varchar(20) NOT NULL DEFAULT 'Y', - `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, - `link_rating` int(11) NOT NULL DEFAULT 0, - `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `link_rel` varchar(255) NOT NULL DEFAULT '', - `link_notes` mediumtext NOT NULL, - `link_rss` varchar(255) NOT NULL DEFAULT '', - PRIMARY KEY (`link_id`), - KEY `link_visible` (`link_visible`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_links` --- - -LOCK TABLES `haikuwp_links` WRITE; -/*!40000 ALTER TABLE `haikuwp_links` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_links` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_mclean_refs` --- - -DROP TABLE IF EXISTS `haikuwp_mclean_refs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_mclean_refs` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `mediaId` bigint(20) DEFAULT NULL, - `mediaUrl` tinytext DEFAULT NULL, - `originType` tinytext NOT NULL, - `parentId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_mclean_refs` --- - -LOCK TABLES `haikuwp_mclean_refs` WRITE; -/*!40000 ALTER TABLE `haikuwp_mclean_refs` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_mclean_refs` VALUES -(1,506,NULL,'WOOCOOMMERCE (ID)',NULL), -(2,81,NULL,'META (ID) [72]',NULL), -(3,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [72]',NULL), -(4,420,NULL,'META (ID) [86]',NULL), -(5,110,NULL,'META (ID) [102]',NULL), -(6,121,NULL,'META (ID) [113]',NULL), -(7,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [113]',NULL), -(8,219,NULL,'META (ID) [123]',NULL), -(9,141,NULL,'META (ID) [133]',NULL), -(10,152,NULL,'META (ID) [144]',NULL), -(11,163,NULL,'META (ID) [155]',NULL), -(12,176,NULL,'META (ID) [168]',NULL), -(13,564,NULL,'META (ID) [183]',NULL), -(14,206,NULL,'META (ID) [202]',NULL), -(15,568,NULL,'META (ID) [213]',NULL), -(16,604,NULL,'META (ID) [220]',NULL), -(17,606,NULL,'META (ID) [226]',NULL), -(18,668,NULL,'META (ID) [232]',NULL), -(19,243,NULL,'META (ID) [240]',NULL), -(20,249,NULL,'META (ID) [246]',NULL), -(21,601,NULL,'META (ID) [251]',NULL), -(22,259,NULL,'META (ID) [258]',NULL), -(23,262,NULL,'META (ID) [261]',NULL), -(24,600,NULL,'META (ID) [263]',NULL), -(25,603,NULL,'META (ID) [268]',NULL), -(26,602,NULL,'META (ID) [271]',NULL), -(27,275,NULL,'META (ID) [274]',NULL), -(28,280,NULL,'META (ID) [276]',NULL), -(29,283,NULL,'META (ID) [282]',NULL), -(30,286,NULL,'META (ID) [285]',NULL), -(31,289,NULL,'META (ID) [288]',NULL), -(32,292,NULL,'META (ID) [291]',NULL), -(33,310,NULL,'META (ID) [306]',NULL), -(34,316,NULL,'META (ID) [312]',NULL), -(35,503,NULL,'META (ID) [318]',NULL), -(36,326,NULL,'META (ID) [325]',NULL), -(37,329,NULL,'META (ID) [328]',NULL), -(38,332,NULL,'META (ID) [331]',NULL), -(39,336,NULL,'META (ID) [335]',NULL), -(40,339,NULL,'META (ID) [338]',NULL), -(41,559,NULL,'META (ID) [342]',NULL), -(42,360,NULL,'META (ID) [356]',NULL), -(43,369,NULL,'META (ID) [365]',NULL), -(44,375,NULL,'META (ID) [372]',NULL), -(45,378,NULL,'META (ID) [377]',NULL), -(46,382,NULL,'META (ID) [381]',NULL), -(47,486,NULL,'META (ID) [385]',NULL), -(48,396,NULL,'META (ID) [393]',NULL), -(49,399,NULL,'META (ID) [398]',NULL), -(50,403,NULL,'META (ID) [402]',NULL), -(51,407,NULL,'META (ID) [406]',NULL), -(52,431,NULL,'META (ID) [430]',NULL), -(53,475,NULL,'META (ID) [433]',NULL), -(54,436,NULL,'META (ID) [435]',NULL), -(55,449,NULL,'META (ID) [447]',NULL), -(56,482,NULL,'META (ID) [481]',NULL), -(57,491,NULL,'META (ID) [490]',NULL), -(58,500,NULL,'META (ID) [496]',NULL), -(59,516,NULL,'META (ID) [515]',NULL), -(60,524,NULL,'META (ID) [521]',NULL), -(61,536,NULL,'META (ID) [535]',NULL), -(62,547,NULL,'META (ID) [545]',NULL), -(63,665,NULL,'META (ID) [554]',NULL), -(64,575,NULL,'META (ID) [572]',NULL), -(65,598,NULL,'META (ID) [589]',NULL), -(66,611,NULL,'META (ID) [610]',NULL), -(67,621,NULL,'META (ID) [613]',NULL), -(68,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [613]',NULL), -(69,634,NULL,'META (ID) [625]',NULL), -(70,176,NULL,'META (ID) [200]',NULL), -(71,178,NULL,'META (ID) [201]',NULL), -(72,243,NULL,'META (ID) [241]',NULL), -(73,249,NULL,'META (ID) [247]',NULL), -(74,475,NULL,'META (ID) [478]',NULL), -(75,476,NULL,'META (ID) [479]',NULL), -(76,477,NULL,'META (ID) [480]',NULL); -/*!40000 ALTER TABLE `haikuwp_mclean_refs` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_mclean_scan` --- - -DROP TABLE IF EXISTS `haikuwp_mclean_scan`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_mclean_scan` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `type` tinyint(1) NOT NULL, - `postId` bigint(20) DEFAULT NULL, - `path` tinytext DEFAULT NULL, - `size` int(9) DEFAULT NULL, - `ignored` tinyint(1) NOT NULL DEFAULT 0, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `issue` tinytext NOT NULL, - `parentId` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `IgnoredIndex` (`ignored`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_mclean_scan` --- - -LOCK TABLES `haikuwp_mclean_scan` WRITE; -/*!40000 ALTER TABLE `haikuwp_mclean_scan` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_mclean_scan` VALUES -(1,'2024-11-15 17:19:13',1,100,'2024/09/HADOU-B-mix.jpg (+ 2 files)',633426,0,0,'NO_CONTENT',NULL), -(2,'2024-11-15 17:19:13',1,101,'2024/09/HADOU-BKIGEN-Bo.jpg (+ 2 files)',992102,0,0,'NO_CONTENT',NULL), -(3,'2024-11-15 17:19:13',1,111,'2024/09/IKKAN-B-arg.jpg (+ 2 files)',181582,0,0,'NO_CONTENT',NULL), -(4,'2024-11-15 17:19:13',1,112,'2024/09/IKKAN-BaKIGEN-Ba.jpg (+ 2 files)',474986,0,0,'NO_CONTENT',NULL), -(5,'2024-11-15 17:19:13',1,122,'2024/09/IKKAN-B-g.jpg (+ 1 files)',575848,0,0,'NO_CONTENT',NULL), -(6,'2024-11-15 17:19:13',1,132,'2024/09/DSC9928.jpg (+ 2 files)',659968,0,0,'NO_CONTENT',NULL), -(7,'2024-11-15 17:19:13',1,142,'2024/09/DSC9269.jpg (+ 2 files)',461644,0,0,'NO_CONTENT',NULL), -(8,'2024-11-15 17:19:13',1,143,'2024/09/DSC9148.jpg (+ 2 files)',432058,0,0,'NO_CONTENT',NULL), -(9,'2024-11-15 17:19:13',1,153,'2024/10/KISHOU-B-arg-1.jpg (+ 2 files)',159416,0,0,'NO_CONTENT',NULL), -(10,'2024-11-15 17:19:13',1,154,'2024/10/KIGEN-BaIKKANBa.jpg (+ 2 files)',456438,0,0,'NO_CONTENT',NULL), -(11,'2024-11-15 17:19:13',1,164,'2024/10/KISHOU-B-vrm-1.jpg (+ 2 files)',252118,0,0,'NO_CONTENT',NULL), -(12,'2024-11-15 17:19:13',1,165,'2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg (+ 2 files)',524168,0,0,'NO_CONTENT',NULL), -(13,'2024-11-15 17:19:13',1,166,'2024/09/DSC9760.jpg (+ 2 files)',705900,0,0,'NO_CONTENT',NULL), -(14,'2024-11-15 17:19:13',1,167,'2024/09/DSC9339.jpg (+ 2 files)',515504,0,0,'NO_CONTENT',NULL), -(15,'2024-11-15 17:19:13',1,177,'2024/10/ROKKU-B-malachite-1.jpg (+ 2 files)',171466,0,0,'NO_CONTENT',NULL), -(16,'2024-11-15 17:19:13',1,179,'2024/10/ROKKU-B-tigereye-1.jpg (+ 2 files)',175398,0,0,'NO_CONTENT',NULL), -(17,'2024-11-15 17:19:13',1,180,'2024/10/DSC9710.jpg (+ 2 files)',843748,0,0,'NO_CONTENT',NULL), -(18,'2024-11-15 17:19:13',1,182,'2024/10/DSC9190.jpg (+ 2 files)',459310,0,0,'NO_CONTENT',NULL), -(19,'2024-11-15 17:19:13',1,199,'2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg (+ 1 files)',236038,0,0,'NO_CONTENT',NULL), -(20,'2024-11-15 17:19:13',1,207,'2024/10/PIASU-BO-1.jpg (+ 2 files)',675740,0,0,'NO_CONTENT',NULL), -(21,'2024-11-15 17:19:13',1,212,'2024/10/PIASU-BO-2.jpg (+ 2 files)',374094,0,0,'NO_CONTENT',NULL), -(22,'2024-11-15 17:19:13',1,225,'2024/10/TAMANORI-BO-s-1.jpg (+ 2 files)',337094,0,0,'NO_CONTENT',NULL), -(23,'2024-11-15 17:19:13',1,231,'2024/10/TAMANORI-BO-g-1.jpg (+ 2 files)',376868,0,0,'NO_CONTENT',NULL), -(24,'2024-11-15 17:19:13',1,237,'2024/10/HADOU-BR.jpg (+ 2 files)',1045562,0,0,'NO_CONTENT',NULL), -(25,'2024-11-15 17:19:13',1,244,'2024/10/IKKAN-BR-s.jpg (+ 2 files)',877486,0,0,'NO_CONTENT',NULL), -(26,'2024-11-15 17:19:13',1,245,'2024/10/IKKAN-BR-s-1.jpg (+ 2 files)',1073188,0,0,'NO_CONTENT',NULL), -(27,'2024-11-15 17:19:13',1,250,'2024/10/IKKAN-BR-g.jpg (+ 2 files)',374178,0,0,'NO_CONTENT',NULL), -(28,'2024-11-15 17:19:13',1,255,'2024/10/TANEMAKI-BR-1.jpg (+ 2 files)',1028916,0,0,'NO_CONTENT',NULL), -(29,'2024-11-15 17:19:13',1,260,'2024/10/DSC9225.jpg (+ 2 files)',696974,0,0,'NO_CONTENT',NULL), -(30,'2024-11-15 17:19:13',1,265,'2024/10/IKKAN-C.jpg (+ 2 files)',1066054,0,0,'NO_CONTENT',NULL), -(31,'2024-11-15 17:19:13',1,266,'2024/10/IKKAN-C-1.jpg (+ 1 files)',554660,0,0,'NO_CONTENT',NULL), -(32,'2024-11-15 17:19:13',1,267,'2024/10/IKKAN-C-2.jpg (+ 2 files)',1012194,0,0,'NO_CONTENT',NULL), -(33,'2024-11-15 17:19:13',1,270,'2024/10/PIASU-C-arg-opti.jpg (+ 2 files)',532206,0,0,'NO_CONTENT',NULL), -(34,'2024-11-15 17:19:13',1,273,'2024/10/TANEMAKI-C.jpg (+ 2 files)',997056,0,0,'NO_CONTENT',NULL), -(35,'2024-11-15 17:19:13',1,281,'2024/10/HADOU-CR-s.jpg (+ 2 files)',965156,0,0,'NO_CONTENT',NULL), -(36,'2024-11-15 17:19:13',1,284,'2024/10/HADOU-CR-g.jpg (+ 1 files)',325294,0,0,'NO_CONTENT',NULL), -(37,'2024-11-15 17:19:13',1,287,'2024/10/HATTARI-CR1-s-1.jpg (+ 2 files)',647238,0,0,'NO_CONTENT',NULL), -(38,'2024-11-15 17:19:13',1,290,'2024/10/DSC9336.jpg (+ 2 files)',561068,0,0,'NO_CONTENT',NULL), -(39,'2024-11-15 17:19:13',1,293,'2024/10/HATTARI-CR2.jpg (+ 2 files)',535282,0,0,'NO_CONTENT',NULL), -(40,'2024-11-15 17:19:13',1,311,'2024/10/DSC9378.jpg (+ 2 files)',541902,0,0,'NO_CONTENT',NULL), -(41,'2024-11-15 17:19:13',1,317,'2024/10/TAMANORI-CR2-vrm-1.jpg (+ 1 files)',408918,0,0,'NO_CONTENT',NULL), -(42,'2024-11-15 17:19:13',1,323,'2024/10/FUYOU-CR.jpg (+ 1 files)',546040,0,0,'NO_CONTENT',NULL), -(43,'2024-11-15 17:19:13',1,324,'2024/10/DSC9542.jpg (+ 2 files)',876338,0,0,'NO_CONTENT',NULL), -(44,'2024-11-15 17:19:13',1,327,'2024/10/HADOU-EC.jpg (+ 2 files)',711176,0,0,'NO_CONTENT',NULL), -(45,'2024-11-15 17:19:13',1,330,'2024/10/HADOU-EC-vrm-1.jpg (+ 2 files)',447956,0,0,'NO_CONTENT',NULL), -(46,'2024-11-15 17:19:13',1,334,'2024/10/HATTARI-EC-arg-1.jpg (+ 2 files)',369024,0,0,'NO_CONTENT',NULL), -(47,'2024-11-15 17:19:13',1,337,'2024/10/DSC9472.jpg (+ 2 files)',713526,0,0,'NO_CONTENT',NULL), -(48,'2024-11-15 17:19:13',1,340,'2024/10/PIASU-BRC-1.jpg (+ 2 files)',474200,0,0,'NO_CONTENT',NULL), -(49,'2024-11-15 17:19:13',1,341,'2024/10/PIASU-BRC-2.jpg (+ 2 files)',652362,0,0,'NO_CONTENT',NULL), -(50,'2024-11-15 17:19:13',1,347,'2024/10/DSC9763.jpg (+ 2 files)',804254,0,0,'NO_CONTENT',NULL), -(51,'2024-11-15 17:19:13',1,348,'2024/10/DSC9781.jpg (+ 1 files)',372455,0,0,'NO_CONTENT',NULL), -(52,'2024-11-15 17:19:13',1,349,'2024/10/DSC9748.jpg (+ 2 files)',842826,0,0,'NO_CONTENT',NULL), -(53,'2024-11-15 17:19:13',1,361,'2024/10/DSC9354.jpg (+ 2 files)',565222,0,0,'NO_CONTENT',NULL), -(54,'2024-11-15 17:19:13',1,376,'2024/10/DSC9300.jpg (+ 2 files)',469948,0,0,'NO_CONTENT',NULL), -(55,'2024-11-15 17:19:13',1,379,'2024/10/DSC9260.jpg (+ 1 files)',232862,0,0,'NO_CONTENT',NULL), -(56,'2024-11-15 17:19:13',1,380,'2024/10/DSC9262.jpg (+ 2 files)',394188,0,0,'NO_CONTENT',NULL), -(57,'2024-11-15 17:19:13',1,383,'2024/10/DSC9772.jpg (+ 1 files)',602490,0,0,'NO_CONTENT',NULL), -(58,'2024-11-15 17:19:13',1,384,'2024/10/DSC9775.jpg (+ 1 files)',559293,0,0,'NO_CONTENT',NULL), -(59,'2024-11-15 17:19:13',1,388,'2024/10/ROKKU-C-arg.jpg (+ 2 files)',656360,0,0,'NO_CONTENT',NULL), -(60,'2024-11-15 17:19:13',1,397,'2024/10/DSC9733.jpg (+ 1 files)',373189,0,0,'NO_CONTENT',NULL), -(61,'2024-11-15 17:19:13',1,400,'2024/10/DSC9723.jpg (+ 2 files)',775076,0,0,'NO_CONTENT',NULL), -(62,'2024-11-15 17:19:13',1,401,'2024/10/DSC9730.jpg (+ 2 files)',776178,0,0,'NO_CONTENT',NULL), -(63,'2024-11-15 17:19:13',1,404,'2024/10/DSC9216.jpg (+ 2 files)',407382,0,0,'NO_CONTENT',NULL), -(64,'2024-11-15 17:19:13',1,405,'2024/10/IMG_9077.jpg (+ 2 files)',493806,0,0,'NO_CONTENT',NULL), -(65,'2024-11-15 17:19:14',1,408,'2024/10/DSC9485.jpg (+ 1 files)',509856,0,0,'NO_CONTENT',NULL), -(66,'2024-11-15 17:19:14',1,409,'2024/10/MUGURA-NAIL-.jpg (+ 2 files)',610030,0,0,'NO_CONTENT',NULL), -(67,'2024-11-15 17:19:14',1,410,'2024/10/MUGURA-FEU-arg.jpg (+ 2 files)',86010,0,0,'NO_CONTENT',NULL), -(68,'2024-11-15 17:19:14',1,411,'2024/09/DSC8400-copie.jpg (+ 2 files)',995626,0,0,'NO_CONTENT',NULL), -(69,'2024-11-15 17:19:14',1,412,'2024/09/HATTARI-B-2-1.jpg (+ 2 files)',1069220,0,0,'NO_CONTENT',NULL), -(70,'2024-11-15 17:19:14',1,419,'2024/09/HATTARI-B-1.jpg (+ 2 files)',1071022,0,0,'NO_CONTENT',NULL), -(71,'2024-11-15 17:19:14',1,424,'2024/10/DSC9376.jpg (+ 2 files)',626712,0,0,'NO_CONTENT',NULL), -(72,'2024-11-15 17:19:14',1,425,'2024/10/DSC9156.jpg (+ 2 files)',821022,0,0,'NO_CONTENT',NULL), -(73,'2024-11-15 17:19:14',1,432,'2024/10/DSC9297.jpg (+ 2 files)',594618,0,0,'NO_CONTENT',NULL), -(74,'2024-11-15 17:19:14',1,437,'2024/10/DSC9781-1.jpg (+ 2 files)',749844,0,0,'NO_CONTENT',NULL), -(75,'2024-11-15 17:19:14',1,440,'2024/09/IMG_1423.jpg (+ 1 files)',539259,0,0,'NO_CONTENT',NULL), -(76,'2024-11-15 17:19:14',1,441,'2024/10/IMG_1428.jpg (+ 1 files)',739647,0,0,'NO_CONTENT',NULL), -(77,'2024-11-15 17:19:14',1,442,'2024/10/IMG_1431.jpg (+ 1 files)',774253,0,0,'NO_CONTENT',NULL), -(78,'2024-11-15 17:19:14',1,443,'2024/10/IMG_1432.jpg (+ 1 files)',886014,0,0,'NO_CONTENT',NULL), -(79,'2024-11-15 17:19:14',1,448,'2024/11/IMG_1473.jpg (+ 1 files)',1448749,0,0,'NO_CONTENT',NULL), -(80,'2024-11-15 17:19:14',1,450,'2024/09/IMG_1478.jpg (+ 1 files)',1770683,0,0,'NO_CONTENT',NULL), -(81,'2024-11-15 17:19:14',1,451,'2024/10/IMG_1493.jpg (+ 1 files)',955698,0,0,'NO_CONTENT',NULL), -(82,'2024-11-15 17:19:14',1,452,'2024/10/IMG_1505.jpg (+ 1 files)',1160791,0,0,'NO_CONTENT',NULL), -(83,'2024-11-15 17:19:14',1,455,'2024/10/IMG_1531.jpg (+ 1 files)',1498668,0,0,'NO_CONTENT',NULL), -(84,'2024-11-15 17:19:14',1,456,'2024/10/IMG_1543.jpg (+ 1 files)',779634,0,0,'NO_CONTENT',NULL), -(85,'2024-11-15 17:19:14',1,457,'2024/10/IMG_1565.jpg (+ 1 files)',569995,0,0,'NO_CONTENT',NULL), -(86,'2024-11-15 17:19:14',1,459,'2024/10/IMG_1586.jpg (+ 1 files)',1749377,0,0,'NO_CONTENT',NULL), -(87,'2024-11-15 17:19:14',1,460,'2024/10/IMG_1588.jpg (+ 1 files)',1183645,0,0,'NO_CONTENT',NULL), -(88,'2024-11-15 17:19:14',1,461,'2024/10/IMG_1600.jpg (+ 1 files)',1339797,0,0,'NO_CONTENT',NULL), -(89,'2024-11-15 17:19:14',1,463,'2024/10/IMG_1638.jpg (+ 1 files)',960703,0,0,'NO_CONTENT',NULL), -(90,'2024-11-15 17:19:14',1,464,'2024/10/IMG_1647.jpg (+ 1 files)',782793,0,0,'NO_CONTENT',NULL), -(91,'2024-11-15 17:19:14',1,465,'2024/10/IMG_1651.jpg (+ 1 files)',1518958,0,0,'NO_CONTENT',NULL), -(92,'2024-11-15 17:19:14',1,468,'2024/10/IMG_1673.jpg (+ 1 files)',1651578,0,0,'NO_CONTENT',NULL), -(93,'2024-11-15 17:19:14',1,469,'2024/10/IMG_1669.jpg (+ 1 files)',1454981,0,0,'NO_CONTENT',NULL), -(94,'2024-11-15 17:19:14',1,470,'2024/10/IMG_1675.jpg (+ 1 files)',228383,0,0,'NO_CONTENT',NULL), -(95,'2024-11-15 17:19:14',1,471,'2024/10/IMG_1680.jpg (+ 1 files)',1422287,0,0,'NO_CONTENT',NULL), -(96,'2024-11-15 17:19:14',1,472,'2024/10/IMG_1746.jpg (+ 1 files)',1224686,0,0,'NO_CONTENT',NULL), -(97,'2024-11-15 17:19:14',1,473,'2024/10/IMG_1747.jpg (+ 1 files)',1254904,0,0,'NO_CONTENT',NULL), -(98,'2024-11-15 17:19:14',1,474,'2024/10/IMG_1748.jpg (+ 1 files)',1443067,0,0,'NO_CONTENT',NULL), -(99,'2024-11-15 17:19:14',1,483,'2024/11/IMG_1619.jpg (+ 1 files)',1626994,0,0,'NO_CONTENT',NULL), -(100,'2024-11-15 17:19:14',1,487,'2024/10/DSC9138.jpg (+ 1 files)',283469,0,0,'NO_CONTENT',NULL), -(101,'2024-11-15 17:19:14',1,488,'2024/10/ROKKU-C-lapis.jpg (+ 1 files)',800553,0,0,'NO_CONTENT',NULL), -(102,'2024-11-15 17:19:14',1,489,'2024/10/ROKKU-C-jaspe.jpg (+ 1 files)',750940,0,0,'NO_CONTENT',NULL), -(103,'2024-11-15 17:19:14',1,492,'2024/11/IMG_1474.jpg (+ 1 files)',1552782,0,0,'NO_CONTENT',NULL), -(104,'2024-11-15 17:19:14',1,501,'2024/11/IMG_1481.jpg (+ 1 files)',1930791,0,0,'NO_CONTENT',NULL), -(105,'2024-11-15 17:19:14',1,502,'2024/11/IMG_1484.jpg (+ 1 files)',547048,0,0,'NO_CONTENT',NULL), -(106,'2024-11-15 17:19:14',1,504,'2024/10/FUYOU-C-1.jpg (+ 1 files)',984668,0,0,'NO_CONTENT',NULL), -(107,'2024-11-15 17:19:14',1,518,'2024/11/BOROBORO-BO1-g-brown.jpg (+ 1 files)',720777,0,0,'NO_CONTENT',NULL), -(108,'2024-11-15 17:19:14',1,526,'2024/11/BOROBORO-BO1-s-green.jpg (+ 1 files)',685626,0,0,'NO_CONTENT',NULL), -(109,'2024-11-15 17:19:14',1,531,'2024/09/DSC9897.jpg (+ 1 files)',1361665,0,0,'NO_CONTENT',NULL), -(110,'2024-11-15 17:19:14',1,537,'2024/11/IMG_1703.jpg (+ 1 files)',1901030,0,0,'NO_CONTENT',NULL), -(111,'2024-11-15 17:19:14',1,538,'2024/11/BOROBORO-BLT-crystal.jpg (+ 1 files)',778439,0,0,'NO_CONTENT',NULL), -(112,'2024-11-15 17:19:14',1,539,'2024/11/IMG_1715.jpg (+ 1 files)',1313772,0,0,'NO_CONTENT',NULL), -(113,'2024-11-15 17:19:14',1,548,'2024/11/IMG_1563.jpg (+ 1 files)',1718895,0,0,'NO_CONTENT',NULL), -(114,'2024-11-15 17:19:14',1,558,'2024/11/DSC9463.jpg (+ 1 files)',1886628,0,0,'NO_CONTENT',NULL), -(115,'2024-11-15 17:19:14',1,576,'2024/11/IMG_1419.jpg (+ 1 files)',566675,0,0,'NO_CONTENT',NULL), -(116,'2024-11-15 17:19:14',1,599,'2024/11/BOROBORO-B-s-1.jpg (+ 1 files)',1671625,0,0,'NO_CONTENT',NULL), -(117,'2024-11-15 17:19:14',1,622,'2024/11/IMG_1504.jpg (+ 1 files)',642992,0,0,'NO_CONTENT',NULL), -(118,'2024-11-15 17:19:14',1,623,'2024/11/IMG_1554.jpg (+ 1 files)',1406586,0,0,'NO_CONTENT',NULL), -(119,'2024-11-15 17:19:14',1,635,'2024/11/IMG_1501.jpg (+ 1 files)',573637,0,0,'NO_CONTENT',NULL), -(120,'2024-11-15 17:19:14',1,636,'2024/11/IMG_1506.jpg (+ 1 files)',1149564,0,0,'NO_CONTENT',NULL), -(121,'2024-11-15 17:19:14',1,644,'2024/10/DSC9341.jpg (+ 1 files)',1492187,0,0,'NO_CONTENT',NULL), -(122,'2024-11-15 17:19:14',1,658,'2024/10/BOROBORO-BOaTANEMAKI-BO1a.jpg (+ 1 files)',1088937,0,0,'NO_CONTENT',NULL), -(123,'2024-11-15 17:19:14',1,659,'2024/09/HADOU-B-opti.jpg (+ 1 files)',0,0,1,'ORPHAN_MEDIA',NULL), -(124,'2024-11-15 17:19:14',1,660,'2024/10/IMG_1442.jpg (+ 1 files)',1029972,0,0,'NO_CONTENT',NULL), -(125,'2024-11-15 17:19:14',1,661,'2024/10/IMG_1454.jpg (+ 1 files)',849459,0,0,'NO_CONTENT',NULL), -(126,'2024-11-15 17:19:14',1,662,'2024/10/IMG_1456.jpg (+ 1 files)',730806,0,0,'NO_CONTENT',NULL), -(127,'2024-11-15 17:19:14',1,663,'2024/11/IMG_1460.jpg (+ 1 files)',98598,0,0,'NO_CONTENT',NULL), -(128,'2024-11-15 17:19:14',1,664,'2024/10/IMG_1512.jpg (+ 1 files)',873482,0,0,'NO_CONTENT',NULL), -(129,'2024-11-15 17:19:14',1,666,'2024/11/IMG_1525.jpg (+ 1 files)',173470,0,0,'NO_CONTENT',NULL), -(130,'2024-11-15 17:19:14',1,667,'2024/11/IMG_1524.jpg (+ 1 files)',172887,0,0,'NO_CONTENT',NULL), -(131,'2024-11-15 17:19:14',1,669,'2024/10/IMG_1528.jpg (+ 1 files)',958548,0,0,'NO_CONTENT',NULL), -(132,'2024-11-15 17:19:14',1,670,'2024/10/IMG_1582.jpg (+ 1 files)',1167334,0,0,'NO_CONTENT',NULL), -(133,'2024-11-15 17:19:14',1,671,'2024/10/IMG_1604.jpg (+ 1 files)',876712,0,0,'NO_CONTENT',NULL), -(134,'2024-11-15 17:19:14',1,672,'2024/10/IMG_1656-1.jpg (+ 1 files)',1095755,0,0,'NO_CONTENT',NULL), -(135,'2024-11-15 17:19:14',1,673,'2024/10/IMG_1657.jpg (+ 1 files)',901473,0,0,'NO_CONTENT',NULL); -/*!40000 ALTER TABLE `haikuwp_mclean_scan` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_options` --- - -DROP TABLE IF EXISTS `haikuwp_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_options` ( - `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `option_name` varchar(191) NOT NULL DEFAULT '', - `option_value` longtext NOT NULL, - `autoload` varchar(20) NOT NULL DEFAULT 'yes', - PRIMARY KEY (`option_id`), - UNIQUE KEY `option_name` (`option_name`), - KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=34298 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_options` --- - -LOCK TABLES `haikuwp_options` WRITE; -/*!40000 ALTER TABLE `haikuwp_options` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_options` VALUES -(1,'cron','a:17:{i:1764764606;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1764765514;a:2:{s:19:\"update_wms_statuses\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:17:\"check_wms_license\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1764767439;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1764767555;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1764767556;a:2:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1764767557;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1764767567;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1764767832;a:2:{s:45:\"woocommerce_marketplace_cron_fetch_promotions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:26:\"rediscache_discard_metrics\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1764792650;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1764792653;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1764796239;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1764798039;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1764799839;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1764828526;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765138305;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1765224639;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'), -(2,'siteurl','https://haikuatelier.fr.ddev.site/wp','on'), -(3,'home','https://haikuatelier.fr.ddev.site/wp','on'), -(4,'blogname','Haiku Atelier','on'), -(5,'blogdescription','Handcrafted, poetic & minimalist silver jewelry.','on'), -(6,'users_can_register','0','on'), -(7,'admin_email','haiku.atelier@gmail.com','on'), -(8,'start_of_week','1','on'), -(9,'use_balanceTags','0','on'), -(10,'use_smilies','1','on'), -(11,'require_name_email','1','on'), -(12,'comments_notify','1','on'), -(13,'posts_per_rss','10','on'), -(14,'rss_use_excerpt','1','on'), -(15,'mailserver_url','mail.example.com','on'), -(16,'mailserver_login','login@example.com','on'), -(17,'mailserver_pass','password','on'), -(18,'mailserver_port','110','on'), -(19,'default_category','1','on'), -(20,'default_comment_status','open','on'), -(21,'default_ping_status','open','on'), -(22,'default_pingback_flag','1','on'), -(23,'posts_per_page','10','on'), -(24,'date_format','Y-m-d','on'), -(25,'time_format','H:i','on'), -(26,'links_updated_date_format','d F Y G\\hi','on'), -(27,'comment_moderation','0','on'), -(28,'moderation_notify','1','on'), -(29,'permalink_structure','/%postname%/','on'), -(31,'hack_file','0','on'), -(32,'blog_charset','UTF-8','on'), -(33,'moderation_keys','','off'), -(34,'active_plugins','a:6:{i:0;s:17:\"falcon/falcon.php\";i:1;s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";i:2;s:27:\"redis-cache/redis-cache.php\";i:3;s:37:\"wc-multishipping/wc-multishipping.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','on'), -(35,'category_base','/category','on'), -(36,'ping_sites','https://rpc.pingomatic.com/','on'), -(37,'comment_max_links','2','on'), -(38,'gmt_offset','','on'), -(39,'default_email_category','1','on'), -(40,'recently_edited','','off'), -(41,'template','haiku-atelier-2024','on'), -(42,'stylesheet','haiku-atelier-2024','on'), -(43,'comment_registration','0','on'), -(44,'html_type','text/html','on'), -(45,'use_trackback','0','on'), -(46,'default_role','customer','on'), -(47,'db_version','60421','on'), -(48,'uploads_use_yearmonth_folders','1','on'), -(49,'upload_path','','on'), -(50,'blog_public','1','on'), -(51,'default_link_category','2','on'), -(52,'show_on_front','page','on'), -(53,'tag_base','/tag','on'), -(54,'show_avatars','1','on'), -(55,'avatar_rating','G','on'), -(56,'upload_url_path','','on'), -(57,'thumbnail_size_w','300','on'), -(58,'thumbnail_size_h','300','on'), -(59,'thumbnail_crop','1','on'), -(60,'medium_size_w','9999','on'), -(61,'medium_size_h','9999','on'), -(62,'avatar_default','mystery','on'), -(63,'large_size_w','9999','on'), -(64,'large_size_h','9999','on'), -(65,'image_default_link_type','','on'), -(66,'image_default_size','','on'), -(67,'image_default_align','','on'), -(68,'close_comments_for_old_posts','0','on'), -(69,'close_comments_days_old','14','on'), -(70,'thread_comments','1','on'), -(71,'thread_comments_depth','5','on'), -(72,'page_comments','0','on'), -(73,'comments_per_page','50','on'), -(74,'default_comments_page','newest','on'), -(75,'comment_order','asc','on'), -(76,'sticky_posts','a:0:{}','on'), -(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), -(80,'uninstall_plugins','a:0:{}','off'), -(81,'timezone_string','Europe/Brussels','on'), -(82,'page_for_posts','0','on'), -(83,'page_on_front','13','on'), -(84,'default_post_format','0','on'), -(85,'link_manager_enabled','0','on'), -(86,'finished_splitting_shared_terms','1','on'), -(87,'site_icon','0','on'), -(88,'medium_large_size_w','768','on'), -(89,'medium_large_size_h','0','on'), -(90,'wp_page_for_privacy_policy','3','on'), -(91,'show_comments_cookies_opt_in','1','on'), -(92,'admin_email_lifespan','1738354239','on'), -(93,'disallowed_keys','','off'), -(94,'comment_previously_approved','1','on'), -(95,'auto_plugin_theme_update_emails','a:0:{}','off'), -(96,'auto_update_core_dev','enabled','on'), -(97,'auto_update_core_minor','enabled','on'), -(98,'auto_update_core_major','enabled','on'), -(99,'wp_force_deactivated_plugins','a:0:{}','off'), -(100,'wp_attachment_pages_enabled','0','on'), -(101,'initial_db_version','57155','on'), -(102,'haikuwp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:93:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}}','auto'), -(103,'fresh_site','0','off'), -(104,'WPLANG','en_GB','auto'), -(105,'user_count','2','off'), -(106,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:159:\"

Articles récents

\";}i:4;a:1:{s:7:\"content\";s:233:\"

Commentaires récents

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:151:\"

Catégories

\";}s:12:\"_multiwidget\";i:1;}','auto'), -(107,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'), -(108,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:1:{s:55:\"bedrock-disallow-indexing/bedrock-disallow-indexing.php\";a:15:{s:4:\"Name\";s:17:\"Disallow Indexing\";s:9:\"PluginURI\";s:25:\"https://roots.io/bedrock/\";s:7:\"Version\";s:5:\"2.0.0\";s:11:\"Description\";s:62:\"Disallow indexing of your site on non-production environments.\";s:6:\"Author\";s:5:\"Roots\";s:9:\"AuthorURI\";s:17:\"https://roots.io/\";s:10:\"TextDomain\";s:5:\"roots\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:17:\"Disallow Indexing\";s:10:\"AuthorName\";s:5:\"Roots\";}}s:5:\"count\";i:1;}','off'), -(109,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(110,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(111,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(112,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(113,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(114,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(115,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(116,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(117,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(118,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(119,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(120,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(121,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(122,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.1\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'), -(127,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1722802261;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'), -(153,'current_theme','','auto'), -(154,'theme_mods_haiku-atelier-2024','a:9:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:14:\"lien_instagram\";s:39:\"https://www.instagram.com/haiku.atelier\";s:26:\"texte_conditions_livraison\";s:450:\"Products will be shipped to you within 14 days after the order has been placed, depending on stock and complexity of production. However, we strive to prepare your order for the quickest delivery possible.\n
    \n
  • Belgium and France: free shipping.
  • \n
  • Worldwide: free shipping on orders above 150€.
  • \n
\nFor return inquiries, please contact us within 14 days after the item\'s reception.\";s:23:\"texte_entretien_produit\";s:404:\"Our jewelry are waterproof but it is preferable to avoid contact with perfume, beauty products, cleaning products, especially for your gold plated pieces.\n\nWipe dry with a soft cloth.\n\nPlease contact us for after sale services. Haiku pieces are guaranteed for a year. We can also repair your pieces after the year guarantee, the cost will depend on each case.\";s:21:\"sample_tinymce_editor\";s:8:\"zozozozo\";s:13:\"lien_facebook\";s:38:\"https://www.facebook.com/haiku.atelier\";s:14:\"lien_pinterest\";s:38:\"https://www.pinterest.com/haikuatelier\";}','on'), -(155,'theme_switched','','auto'), -(163,'finished_updating_comment_type','1','auto'), -(211,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'), -(212,'recently_activated','a:0:{}','off'), -(215,'polylang','a:14:{s:7:\"browser\";b:1;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:1;s:10:\"force_lang\";i:1;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";b:1;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:0:{}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:0:{}s:7:\"version\";s:5:\"3.6.4\";s:16:\"first_activation\";i:1722863554;s:12:\"default_lang\";s:2:\"en\";}','auto'), -(216,'polylang_wpml_strings','a:0:{}','auto'), -(217,'action_scheduler_hybrid_store_demarkation','6','auto'), -(218,'schema-ActionScheduler_StoreSchema','8.0.1755587404','auto'), -(219,'schema-ActionScheduler_LoggerSchema','3.0.1722863555','auto'), -(222,'woocommerce_newly_installed','no','auto'), -(223,'woocommerce_schema_version','920','auto'), -(224,'woocommerce_store_address','','on'), -(225,'woocommerce_store_address_2','','on'), -(226,'woocommerce_store_city','','on'), -(227,'woocommerce_default_country','BE','on'), -(228,'woocommerce_store_postcode','','on'), -(229,'woocommerce_allowed_countries','all','on'), -(230,'woocommerce_all_except_countries','a:0:{}','on'), -(231,'woocommerce_specific_allowed_countries','a:0:{}','on'), -(232,'woocommerce_ship_to_countries','','on'), -(233,'woocommerce_specific_ship_to_countries','a:0:{}','on'), -(234,'woocommerce_default_customer_address','base','on'), -(235,'woocommerce_calc_taxes','no','on'), -(236,'woocommerce_enable_coupons','yes','on'), -(237,'woocommerce_calc_discounts_sequentially','no','off'), -(238,'woocommerce_currency','EUR','on'), -(239,'woocommerce_currency_pos','left_space','on'), -(240,'woocommerce_price_thousand_sep','.','on'), -(241,'woocommerce_price_decimal_sep',',','on'), -(242,'woocommerce_price_num_decimals','2','on'), -(243,'woocommerce_shop_page_id','14','on'), -(244,'woocommerce_cart_redirect_after_add','no','on'), -(245,'woocommerce_enable_ajax_add_to_cart','yes','on'), -(246,'woocommerce_placeholder_image','506','on'), -(247,'woocommerce_weight_unit','kg','on'), -(248,'woocommerce_dimension_unit','cm','on'), -(249,'woocommerce_enable_reviews','no','on'), -(250,'woocommerce_review_rating_verification_label','no','off'), -(251,'woocommerce_review_rating_verification_required','no','off'), -(252,'woocommerce_enable_review_rating','no','on'), -(253,'woocommerce_review_rating_required','no','off'), -(254,'woocommerce_manage_stock','yes','on'), -(255,'woocommerce_hold_stock_minutes','60','off'), -(256,'woocommerce_notify_low_stock','yes','off'), -(257,'woocommerce_notify_no_stock','yes','off'), -(258,'woocommerce_stock_email_recipient','contact@gcch.fr','off'), -(259,'woocommerce_notify_low_stock_amount','2','off'), -(260,'woocommerce_notify_no_stock_amount','0','on'), -(261,'woocommerce_hide_out_of_stock_items','no','on'), -(262,'woocommerce_stock_format','','on'), -(263,'woocommerce_file_download_method','force','off'), -(264,'woocommerce_downloads_redirect_fallback_allowed','no','off'), -(265,'woocommerce_downloads_require_login','no','off'), -(266,'woocommerce_downloads_grant_access_after_payment','yes','off'), -(267,'woocommerce_downloads_deliver_inline','','off'), -(268,'woocommerce_downloads_add_hash_to_filename','yes','on'), -(270,'woocommerce_attribute_lookup_direct_updates','no','on'), -(271,'woocommerce_attribute_lookup_optimized_updates','no','on'), -(272,'woocommerce_product_match_featured_image_by_sku','no','on'), -(273,'woocommerce_prices_include_tax','no','on'), -(274,'woocommerce_tax_based_on','shipping','on'), -(275,'woocommerce_shipping_tax_class','inherit','on'), -(276,'woocommerce_tax_round_at_subtotal','no','on'), -(277,'woocommerce_tax_classes','','on'), -(278,'woocommerce_tax_display_shop','excl','on'), -(279,'woocommerce_tax_display_cart','excl','on'), -(280,'woocommerce_price_display_suffix','','on'), -(281,'woocommerce_tax_total_display','itemized','off'), -(282,'woocommerce_enable_shipping_calc','yes','off'), -(283,'woocommerce_shipping_cost_requires_address','no','on'), -(284,'woocommerce_ship_to_destination','shipping','off'), -(285,'woocommerce_shipping_debug_mode','no','on'), -(286,'woocommerce_enable_guest_checkout','yes','off'), -(287,'woocommerce_enable_checkout_login_reminder','yes','off'), -(288,'woocommerce_enable_signup_and_login_from_checkout','no','off'), -(289,'woocommerce_enable_myaccount_registration','no','off'), -(290,'woocommerce_registration_generate_username','no','off'), -(291,'woocommerce_registration_generate_password','no','off'), -(292,'woocommerce_erasure_request_removes_order_data','yes','off'), -(293,'woocommerce_erasure_request_removes_download_data','yes','off'), -(294,'woocommerce_allow_bulk_remove_personal_data','yes','off'), -(295,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on'), -(296,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on'), -(297,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(298,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(299,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(300,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), -(301,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(302,'woocommerce_email_from_name','Haiku Atelier','off'), -(303,'woocommerce_email_from_address','haiku.atelier@gmail.com','off'), -(304,'woocommerce_email_header_image','','off'), -(305,'woocommerce_email_footer_text','{site_title}','off'), -(306,'woocommerce_email_base_color','#720eec','off'), -(307,'woocommerce_email_background_color','#f7f7f7','off'), -(308,'woocommerce_email_body_background_color','#ffffff','off'), -(309,'woocommerce_email_text_color','#3c3c3c','off'), -(310,'woocommerce_merchant_email_notifications','no','off'), -(311,'woocommerce_cart_page_id','16','off'), -(312,'woocommerce_checkout_page_id','17','off'), -(313,'woocommerce_myaccount_page_id','15','off'), -(314,'woocommerce_terms_page_id','19','off'), -(315,'woocommerce_checkout_pay_endpoint','order-pay','on'), -(316,'woocommerce_checkout_order_received_endpoint','order-received','on'), -(317,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on'), -(318,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on'), -(319,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on'), -(320,'woocommerce_myaccount_orders_endpoint','orders','on'), -(321,'woocommerce_myaccount_view_order_endpoint','view-order','on'), -(322,'woocommerce_myaccount_downloads_endpoint','downloads','on'), -(323,'woocommerce_myaccount_edit_account_endpoint','edit-account','on'), -(324,'woocommerce_myaccount_edit_address_endpoint','edit-address','on'), -(325,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on'), -(326,'woocommerce_myaccount_lost_password_endpoint','lost-password','on'), -(327,'woocommerce_logout_endpoint','customer-logout','on'), -(328,'woocommerce_api_enabled','no','on'), -(329,'woocommerce_allow_tracking','no','on'), -(330,'woocommerce_show_marketplace_suggestions','no','off'), -(331,'woocommerce_custom_orders_table_enabled','yes','on'), -(332,'woocommerce_analytics_enabled','yes','on'), -(333,'woocommerce_feature_order_attribution_enabled','','on'), -(334,'woocommerce_feature_product_block_editor_enabled','no','on'), -(335,'woocommerce_hpos_fts_index_enabled','no','on'), -(336,'woocommerce_single_image_width','600','on'), -(337,'woocommerce_thumbnail_image_width','300','on'), -(338,'woocommerce_checkout_highlight_required_fields','yes','on'), -(339,'woocommerce_demo_store','no','off'), -(340,'wc_downloads_approved_directories_mode','enabled','auto'), -(341,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','auto'), -(342,'current_theme_supports_woocommerce','yes','auto'), -(343,'woocommerce_queue_flush_rewrite_rules','no','auto'), -(347,'default_product_cat','15','auto'), -(349,'woocommerce_refund_returns_page_id','11','auto'), -(352,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:15:\"contact@gcch.fr\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on'), -(353,'woocommerce_version','10.3.4','auto'), -(354,'woocommerce_db_version','10.3.4','auto'), -(355,'woocommerce_store_id','e041283c-a0c6-45fe-8c78-d326f5284551','auto'), -(356,'woocommerce_admin_install_timestamp','1722863556','auto'), -(357,'woocommerce_inbox_variant_assignment','7','auto'), -(358,'woocommerce_remote_variant_assignment','102','auto'), -(363,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','on'), -(364,'action_scheduler_lock_async-request-runner','6930197a7a36d5.38581287|1764759990','no'), -(365,'woocommerce_admin_notices','a:0:{}','auto'), -(366,'wc_blocks_version','11.8.0-dev','auto'), -(367,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'), -(368,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"n9PIFnp4zKp5KnjKvWdyoOort7Umdclh\";}','on'), -(369,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on'), -(370,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(371,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(372,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(373,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(374,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(375,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(376,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(377,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(378,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(379,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(380,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(381,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(382,'widget_polylang','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(391,'wcpay_was_in_use','no','auto'), -(400,'wc_admin_show_legacy_coupon_menu','0','auto'), -(401,'woocommerce_custom_orders_table_created','yes','auto'), -(404,'wc_blocks_db_schema_version','260','auto'), -(405,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','off'), -(414,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1764681341;}','auto'), -(415,'_transient_woocommerce_reports-transient-version','1750690595','on'), -(423,'_transient_product_query-transient-version','1750363871','on'), -(430,'category_children','a:0:{}','auto'), -(433,'pll_dismissed_notices','a:2:{i:0;s:6:\"wizard\";i:1;s:5:\"pllwc\";}','auto'), -(449,'woocommerce_task_list_tracked_completed_tasks','a:5:{i:0;s:17:\"launch-your-store\";i:1;s:8:\"products\";i:2;s:15:\"customize-store\";i:3;s:8:\"shipping\";i:4;s:15:\"review-shipping\";}','auto'), -(450,'woocommerce_onboarding_profile','a:9:{s:15:\"business_choice\";s:18:\"im_already_selling\";s:21:\"selling_online_answer\";s:21:\"yes_im_selling_online\";s:17:\"selling_platforms\";a:1:{i:0;s:3:\"wix\";}s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;s:15:\"arts_and_crafts\";}s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:15:\"contact@gcch.fr\";s:9:\"completed\";b:1;s:23:\"is_plugins_page_skipped\";b:1;}','auto'), -(452,'woocommerce_coming_soon','no','auto'), -(453,'woocommerce_store_pages_only','no','auto'), -(454,'woocommerce_private_link','no','auto'), -(455,'woocommerce_share_key','F7pud5vmFEcHk1bhNgS9GiTlfxeNx7K4','auto'), -(479,'falcon','a:3:{s:8:\"features\";a:39:{i:0;s:12:\"no_gutenberg\";i:1;s:9:\"no_embeds\";i:2;s:11:\"no_comments\";i:3;s:14:\"no_comment_url\";i:4;s:12:\"no_revisions\";i:5;s:13:\"no_self_pings\";i:6;s:10:\"no_privacy\";i:7;s:15:\"no_auto_updates\";i:8;s:17:\"search_posts_only\";i:9;s:12:\"no_texturize\";i:10;s:13:\"no_feed_links\";i:11;s:11:\"no_rsd_link\";i:12;s:19:\"no_wlwmanifest_link\";i:13;s:23:\"no_adjacent_posts_links\";i:14;s:15:\"no_wp_generator\";i:15;s:12:\"no_shortlink\";i:16;s:12:\"no_rest_link\";i:17;s:17:\"no_jquery_migrate\";i:18;s:16:\"schema_less_urls\";i:19;s:31:\"no_recent_comments_widget_style\";i:20;s:12:\"cleanup_menu\";i:21;s:9:\"no_emojis\";i:22;s:18:\"no_image_threshold\";i:23;s:14:\"no_exif_rotate\";i:24;s:22:\"no_admin_email_confirm\";i:25;s:16:\"no_update_emails\";i:26;s:18:\"no_new_user_emails\";i:27;s:24:\"no_password_reset_emails\";i:28;s:20:\"change_default_email\";i:29;s:15:\"login_site_icon\";i:30;s:14:\"no_update_nags\";i:31;s:14:\"no_footer_text\";i:32;s:20:\"no_dashboard_widgets\";i:33;s:10:\"no_wp_logo\";i:34;s:24:\"no_application_passwords\";i:35;s:9:\"no_xmlrpc\";i:36;s:15:\"restrict_upload\";i:37;s:15:\"no_login_errors\";i:38;s:13:\"block_ai_bots\";}s:13:\"default_email\";a:2:{s:9:\"from_name\";s:13:\"Haiku Atelier\";s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";}s:4:\"smtp\";a:5:{s:4:\"host\";s:15:\"smtp.migadu.com\";s:4:\"port\";s:3:\"465\";s:8:\"username\";s:17:\"admin@minima.haus\";s:8:\"password\";s:32:\"ILDwXJpxhfgc0SfEQIUGhHlGmb7KuGkl\";s:10:\"encryption\";s:3:\"tls\";}}','auto'), -(520,'wcpay_welcome_page_viewed_timestamp','1722865333','auto'), -(521,'wcpay_welcome_page_incentives_dismissed','a:1:{i:0;s:32:\"wcpay-promo-2023-action-discount\";}','auto'), -(565,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','on'), -(604,'_transient_product-transient-version','1750363871','on'), -(701,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','auto'), -(706,'_transient_shipping-transient-version','1733267802','on'), -(809,'_transient_pll_languages_list','a:1:{i:0;a:22:{s:4:\"name\";s:7:\"English\";s:4:\"slug\";s:2:\"en\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:16;s:6:\"locale\";s:5:\"en_GB\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:5:\"en-GB\";s:8:\"facebook\";s:5:\"en_GB\";s:8:\"home_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:10:\"search_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:4:\"host\";N;s:13:\"page_on_front\";i:0;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"gb\";s:8:\"flag_url\";s:67:\"https://haikuatelier.fr.ddev.site/app/plugins/polylang/flags/gb.png\";s:4:\"flag\";s:636:\"\"English\"\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:1;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:16;s:16:\"term_taxonomy_id\";i:16;s:5:\"count\";i:7;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:17;s:16:\"term_taxonomy_id\";i:17;s:5:\"count\";i:1;}}}}','on'), -(825,'rewrite_rules','a:193:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:15:\"^checkout-link$\";s:28:\"index.php?checkout-link=true\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:44:\"brand/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:39:\"brand/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:20:\"brand/(.+?)/embed/?$\";s:46:\"index.php?product_brand=$matches[1]&embed=true\";s:32:\"brand/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?product_brand=$matches[1]&paged=$matches[2]\";s:14:\"brand/(.+?)/?$\";s:35:\"index.php?product_brand=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$matches[3]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"collection/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=collection&term=$matches[1]&feed=$matches[2]\";s:46:\"collection/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=collection&term=$matches[1]&feed=$matches[2]\";s:27:\"collection/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=collection&term=$matches[1]&embed=true\";s:39:\"collection/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=collection&term=$matches[1]&paged=$matches[2]\";s:21:\"collection/([^/]+)/?$\";s:46:\"index.php?taxonomy=collection&term=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=13&cpage=$matches[1]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$matches[5]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$matches[4]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:36:\"([^/]+)/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?name=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\"[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','auto'), -(832,'woocommerce_pre_install_woocommerce_payments_promotion_settings','a:1:{s:12:\"is_dismissed\";s:3:\"yes\";}','auto'), -(833,'woocommerce_gateway_order','a:6:{s:19:\"_wc_pes_woopayments\";i:0;s:25:\"_wc_pes_paypal_full_stack\";i:1;s:33:\"_wc_offline_payment_methods_group\";i:2;s:4:\"bacs\";i:3;s:6:\"cheque\";i:4;s:3:\"cod\";i:5;}','auto'), -(840,'_transient_timeout_dirsize_cache','2045680880','off'), -(841,'_transient_dirsize_cache','a:2179:{s:37:\"/var/www/html/web/wp/wp-admin/network\";i:125999;s:40:\"/var/www/html/web/wp/wp-admin/js/widgets\";i:139432;s:32:\"/var/www/html/web/wp/wp-admin/js\";i:1971224;s:34:\"/var/www/html/web/wp/wp-admin/user\";i:3685;s:45:\"/var/www/html/web/wp/wp-admin/css/colors/blue\";i:77778;s:49:\"/var/www/html/web/wp/wp-admin/css/colors/midnight\";i:78486;s:48:\"/var/www/html/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/modern\";i:77989;s:50:\"/var/www/html/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/ocean\";i:75229;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/coffee\";i:75892;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/light\";i:78474;s:40:\"/var/www/html/web/wp/wp-admin/css/colors\";i:643556;s:33:\"/var/www/html/web/wp/wp-admin/css\";i:2542173;s:36:\"/var/www/html/web/wp/wp-admin/images\";i:426821;s:35:\"/var/www/html/web/wp/wp-admin/maint\";i:7592;s:38:\"/var/www/html/web/wp/wp-admin/includes\";i:3068919;s:29:\"/var/www/html/web/wp/wp-admin\";i:9070949;s:37:\"/var/www/html/web/wp/wp-includes/l10n\";i:30499;s:42:\"/var/www/html/web/wp/wp-includes/customize\";i:177349;s:47:\"/var/www/html/web/wp/wp-includes/block-patterns\";i:8843;s:36:\"/var/www/html/web/wp/wp-includes/ID3\";i:1160011;s:47:\"/var/www/html/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:52:\"/var/www/html/web/wp/wp-includes/js/dist/development\";i:179848;s:40:\"/var/www/html/web/wp/wp-includes/js/dist\";i:21234878;s:44:\"/var/www/html/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/html/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:48:\"/var/www/html/web/wp/wp-includes/js/mediaelement\";i:721307;s:45:\"/var/www/html/web/wp/wp-includes/js/swfupload\";i:8715;s:40:\"/var/www/html/web/wp/wp-includes/js/crop\";i:20004;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:54:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:62:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:56:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:51:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:50:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:43:\"/var/www/html/web/wp/wp-includes/js/tinymce\";i:2854127;s:46:\"/var/www/html/web/wp/wp-includes/js/codemirror\";i:1287141;s:45:\"/var/www/html/web/wp/wp-includes/js/jquery/ui\";i:787634;s:42:\"/var/www/html/web/wp/wp-includes/js/jquery\";i:1305370;s:49:\"/var/www/html/web/wp/wp-includes/js/imgareaselect\";i:49553;s:41:\"/var/www/html/web/wp/wp-includes/js/jcrop\";i:24976;s:44:\"/var/www/html/web/wp/wp-includes/js/thickbox\";i:31323;s:35:\"/var/www/html/web/wp/wp-includes/js\";i:30443441;s:50:\"/var/www/html/web/wp/wp-includes/interactivity-api\";i:55221;s:47:\"/var/www/html/web/wp/wp-includes/block-supports\";i:130165;s:51:\"/var/www/html/web/wp/wp-includes/sitemaps/providers\";i:17593;s:41:\"/var/www/html/web/wp/wp-includes/sitemaps\";i:47491;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-title\";i:1823;s:49:\"/var/www/html/web/wp/wp-includes/blocks/footnotes\";i:2642;s:47:\"/var/www/html/web/wp/wp-includes/blocks/buttons\";i:11183;s:45:\"/var/www/html/web/wp/wp-includes/blocks/group\";i:9055;s:45:\"/var/www/html/web/wp/wp-includes/blocks/query\";i:14007;s:46:\"/var/www/html/web/wp/wp-includes/blocks/search\";i:19592;s:55:\"/var/www/html/web/wp/wp-includes/blocks/comment-content\";i:1369;s:54:\"/var/www/html/web/wp/wp-includes/blocks/comments-title\";i:1701;s:48:\"/var/www/html/web/wp/wp-includes/blocks/archives\";i:1725;s:46:\"/var/www/html/web/wp/wp-includes/blocks/avatar\";i:2296;s:52:\"/var/www/html/web/wp/wp-includes/blocks/text-columns\";i:3034;s:52:\"/var/www/html/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:54:\"/var/www/html/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/html/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:44:\"/var/www/html/web/wp/wp-includes/blocks/file\";i:11514;s:50:\"/var/www/html/web/wp/wp-includes/blocks/categories\";i:2825;s:48:\"/var/www/html/web/wp/wp-includes/blocks/nextpage\";i:3039;s:64:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:45:\"/var/www/html/web/wp/wp-includes/blocks/video\";i:11619;s:51:\"/var/www/html/web/wp/wp-includes/blocks/social-link\";i:3474;s:49:\"/var/www/html/web/wp/wp-includes/blocks/post-date\";i:1377;s:49:\"/var/www/html/web/wp/wp-includes/blocks/page-list\";i:7663;s:56:\"/var/www/html/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:51:\"/var/www/html/web/wp/wp-includes/blocks/post-author\";i:2895;s:44:\"/var/www/html/web/wp/wp-includes/blocks/more\";i:3770;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-no-results\";i:899;s:49:\"/var/www/html/web/wp/wp-includes/blocks/home-link\";i:1130;s:50:\"/var/www/html/web/wp/wp-includes/blocks/site-title\";i:2289;s:45:\"/var/www/html/web/wp/wp-includes/blocks/block\";i:587;s:45:\"/var/www/html/web/wp/wp-includes/blocks/embed\";i:11232;s:45:\"/var/www/html/web/wp/wp-includes/blocks/audio\";i:3660;s:47:\"/var/www/html/web/wp/wp-includes/blocks/details\";i:2030;s:47:\"/var/www/html/web/wp/wp-includes/blocks/gallery\";i:80571;s:67:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:49:\"/var/www/html/web/wp/wp-includes/blocks/pullquote\";i:8267;s:49:\"/var/www/html/web/wp/wp-includes/blocks/paragraph\";i:6904;s:49:\"/var/www/html/web/wp/wp-includes/blocks/list-item\";i:1137;s:45:\"/var/www/html/web/wp/wp-includes/blocks/cover\";i:83346;s:50:\"/var/www/html/web/wp/wp-includes/blocks/media-text\";i:14445;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-content\";i:1389;s:58:\"/var/www/html/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:49:\"/var/www/html/web/wp/wp-includes/blocks/shortcode\";i:2918;s:45:\"/var/www/html/web/wp/wp-includes/blocks/table\";i:27351;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:46:\"/var/www/html/web/wp/wp-includes/blocks/button\";i:14416;s:53:\"/var/www/html/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-terms\";i:1715;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:44:\"/var/www/html/web/wp/wp-includes/blocks/list\";i:2173;s:49:\"/var/www/html/web/wp/wp-includes/blocks/read-more\";i:2526;s:56:\"/var/www/html/web/wp/wp-includes/blocks/term-description\";i:1751;s:46:\"/var/www/html/web/wp/wp-includes/blocks/spacer\";i:4737;s:56:\"/var/www/html/web/wp/wp-includes/blocks/comment-template\";i:2910;s:51:\"/var/www/html/web/wp/wp-includes/blocks/query-title\";i:1392;s:48:\"/var/www/html/web/wp/wp-includes/blocks/loginout\";i:1026;s:43:\"/var/www/html/web/wp/wp-includes/blocks/rss\";i:4491;s:52:\"/var/www/html/web/wp/wp-includes/blocks/widget-group\";i:400;s:52:\"/var/www/html/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:48:\"/var/www/html/web/wp/wp-includes/blocks/comments\";i:28882;s:47:\"/var/www/html/web/wp/wp-includes/blocks/heading\";i:5731;s:47:\"/var/www/html/web/wp/wp-includes/blocks/columns\";i:9193;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:45:\"/var/www/html/web/wp/wp-includes/blocks/quote\";i:6526;s:58:\"/var/www/html/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:44:\"/var/www/html/web/wp/wp-includes/blocks/html\";i:3770;s:57:\"/var/www/html/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/html/web/wp/wp-includes/blocks/post-featured-image\";i:29684;s:49:\"/var/www/html/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:53:\"/var/www/html/web/wp/wp-includes/blocks/template-part\";i:7986;s:53:\"/var/www/html/web/wp/wp-includes/blocks/post-template\";i:8072;s:52:\"/var/www/html/web/wp/wp-includes/blocks/social-links\";i:58808;s:46:\"/var/www/html/web/wp/wp-includes/blocks/column\";i:1597;s:61:\"/var/www/html/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:45:\"/var/www/html/web/wp/wp-includes/blocks/image\";i:64157;s:49:\"/var/www/html/web/wp/wp-includes/blocks/site-logo\";i:17033;s:65:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:50:\"/var/www/html/web/wp/wp-includes/blocks/navigation\";i:132149;s:68:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:55:\"/var/www/html/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:47:\"/var/www/html/web/wp/wp-includes/blocks/pattern\";i:411;s:48:\"/var/www/html/web/wp/wp-includes/blocks/calendar\";i:3804;s:49:\"/var/www/html/web/wp/wp-includes/blocks/separator\";i:5038;s:45:\"/var/www/html/web/wp/wp-includes/blocks/verse\";i:1860;s:64:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:55:\"/var/www/html/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:52:\"/var/www/html/web/wp/wp-includes/blocks/comment-date\";i:1112;s:47:\"/var/www/html/web/wp/wp-includes/blocks/missing\";i:617;s:52:\"/var/www/html/web/wp/wp-includes/blocks/preformatted\";i:1696;s:61:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:48:\"/var/www/html/web/wp/wp-includes/blocks/freeform\";i:41824;s:60:\"/var/www/html/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:44:\"/var/www/html/web/wp/wp-includes/blocks/code\";i:2638;s:39:\"/var/www/html/web/wp/wp-includes/blocks\";i:1503913;s:39:\"/var/www/html/web/wp/wp-includes/assets\";i:24990;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:49:\"/var/www/html/web/wp/wp-includes/css/dist/widgets\";i:23740;s:56:\"/var/www/html/web/wp/wp-includes/css/dist/format-library\";i:5556;s:48:\"/var/www/html/web/wp/wp-includes/css/dist/editor\";i:249100;s:59:\"/var/www/html/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:52:\"/var/www/html/web/wp/wp-includes/css/dist/components\";i:357993;s:62:\"/var/www/html/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/patterns\";i:7442;s:45:\"/var/www/html/web/wp/wp-includes/css/dist/nux\";i:11624;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/commands\";i:13442;s:53:\"/var/www/html/web/wp/wp-includes/css/dist/preferences\";i:8474;s:55:\"/var/www/html/web/wp/wp-includes/css/dist/block-library\";i:805380;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-post\";i:52240;s:41:\"/var/www/html/web/wp/wp-includes/css/dist\";i:2644068;s:36:\"/var/www/html/web/wp/wp-includes/css\";i:3289825;s:40:\"/var/www/html/web/wp/wp-includes/widgets\";i:158524;s:43:\"/var/www/html/web/wp/wp-includes/php-compat\";i:1253;s:58:\"/var/www/html/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/XML\";i:7098;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/Net\";i:7493;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/html/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:50:\"/var/www/html/web/wp/wp-includes/SimplePie/Content\";i:8015;s:54:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:49:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:47:\"/var/www/html/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:42:\"/var/www/html/web/wp/wp-includes/SimplePie\";i:458625;s:38:\"/var/www/html/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/html/web/wp/wp-includes/images/media\";i:5263;s:47:\"/var/www/html/web/wp/wp-includes/images/crystal\";i:15541;s:47:\"/var/www/html/web/wp/wp-includes/images/smilies\";i:10082;s:39:\"/var/www/html/web/wp/wp-includes/images\";i:102178;s:49:\"/var/www/html/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/html/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:42:\"/var/www/html/web/wp/wp-includes/Text/Diff\";i:44136;s:37:\"/var/www/html/web/wp/wp-includes/Text\";i:57049;s:37:\"/var/www/html/web/wp/wp-includes/pomo\";i:57146;s:45:\"/var/www/html/web/wp/wp-includes/style-engine\";i:47528;s:45:\"/var/www/html/web/wp/wp-includes/theme-compat\";i:15656;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/search\";i:16749;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/fields\";i:22510;s:51:\"/var/www/html/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:41:\"/var/www/html/web/wp/wp-includes/rest-api\";i:977234;s:36:\"/var/www/html/web/wp/wp-includes/IXR\";i:33915;s:45:\"/var/www/html/web/wp/wp-includes/certificates\";i:233231;s:42:\"/var/www/html/web/wp/wp-includes/PHPMailer\";i:233227;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:69:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:55:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:70:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:56:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:76:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:73:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:46:\"/var/www/html/web/wp/wp-includes/sodium_compat\";i:1303525;s:41:\"/var/www/html/web/wp/wp-includes/html-api\";i:330488;s:47:\"/var/www/html/web/wp/wp-includes/block-bindings\";i:3610;s:60:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:65:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:54:\"/var/www/html/web/wp/wp-includes/Requests/src/Response\";i:3101;s:51:\"/var/www/html/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:53:\"/var/www/html/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:52:\"/var/www/html/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:50:\"/var/www/html/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:45:\"/var/www/html/web/wp/wp-includes/Requests/src\";i:214849;s:49:\"/var/www/html/web/wp/wp-includes/Requests/library\";i:261;s:41:\"/var/www/html/web/wp/wp-includes/Requests\";i:215110;s:32:\"/var/www/html/web/wp/wp-includes\";i:48794197;s:20:\"/var/www/html/web/wp\";i:58049099;s:55:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/inc\";i:1242;s:69:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:3890;s:70:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:3094;s:61:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base\";i:8317;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:5543;s:66:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:261;s:56:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass\";i:14611;s:51:\"/var/www/html/web/app/themes/haiku-atelier-2024/src\";i:18883;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27943;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:643;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img\";i:28586;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/css\";i:34494;s:67:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:65:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:775316;s:60:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts\";i:998860;s:54:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets\";i:1061940;s:59:\"/var/www/html/web/app/themes/haiku-atelier-2024/views/parts\";i:2562;s:53:\"/var/www/html/web/app/themes/haiku-atelier-2024/views\";i:3229;s:47:\"/var/www/html/web/app/themes/haiku-atelier-2024\";i:1087153;s:51:\"/var/www/html/web/app/themes/twentytwentyfour/parts\";i:1473;s:56:\"/var/www/html/web/app/themes/twentytwentyfour/assets/css\";i:357;s:63:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:74:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:58:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:59:\"/var/www/html/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/assets\";i:2176015;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/styles\";i:33892;s:54:\"/var/www/html/web/app/themes/twentytwentyfour/patterns\";i:158957;s:55:\"/var/www/html/web/app/themes/twentytwentyfour/templates\";i:12953;s:45:\"/var/www/html/web/app/themes/twentytwentyfour\";i:3137090;s:28:\"/var/www/html/web/app/themes\";i:4224243;s:51:\"/var/www/html/web/app/plugins/falcon/src/Components\";i:3084;s:40:\"/var/www/html/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/html/web/app/plugins/falcon/vendor/composer\";i:37088;s:43:\"/var/www/html/web/app/plugins/falcon/vendor\";i:37859;s:43:\"/var/www/html/web/app/plugins/falcon/assets\";i:6377;s:56:\"/var/www/html/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:51:\"/var/www/html/web/app/plugins/falcon/views/settings\";i:13902;s:42:\"/var/www/html/web/app/plugins/falcon/views\";i:13902;s:36:\"/var/www/html/web/app/plugins/falcon\";i:97092;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:71:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:78:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:100907;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83933;s:83:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25699;s:75:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:354350;s:67:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler\";i:475782;s:68:\"/var/www/html/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:50:\"/var/www/html/web/app/plugins/woocommerce/packages\";i:475985;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:57:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Notes\";i:73813;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:62957;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:70693;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:89:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:47816;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9968;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8866;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25560;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:31578;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:57385;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:69829;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:113247;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:24158;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:44181;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:18932;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22026;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77212;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9963;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11562;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:18406;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:47160;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:23874;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29657;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:60372;s:80:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:31208;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:65298;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:690145;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API\";i:1009815;s:87:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:13900;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:86:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:48662;s:96:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43908;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21180;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:47117;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:57661;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:101089;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features\";i:303951;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:51:\"/var/www/html/web/app/plugins/woocommerce/src/Admin\";i:1668946;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:21817;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:176197;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:176533;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:144845;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:3796;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:5159;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:178544;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:189515;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi\";i:566738;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10471;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout\";i:10471;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Utilities\";i:50817;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:64889;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations\";i:130927;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Database\";i:130927;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:8936;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50559;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97298;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:105527;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:126187;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:38047;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47641;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:8879;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin\";i:764610;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Orders\";i:32575;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Utilities\";i:74076;s:97:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:30612;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:49112;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:72833;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95073;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:99:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:63353;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:63353;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features\";i:115099;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25054;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:284749;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores\";i:291991;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2480;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Internal\";i:1676491;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Caching\";i:20668;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Caches\";i:3406;s:58:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Utils\";i:78378;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25738;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:19338;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:52098;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:502024;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:61720;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Templates\";i:68111;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:8901;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:84:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101360;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain\";i:122574;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks\";i:1051533;s:45:\"/var/www/html/web/app/plugins/woocommerce/src\";i:5207127;s:64:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:68:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:58:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:82:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:80:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:87:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:71:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:61:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:54:\"/var/www/html/web/app/plugins/woocommerce/lib/packages\";i:126313;s:45:\"/var/www/html/web/app/plugins/woocommerce/lib\";i:126313;s:53:\"/var/www/html/web/app/plugins/woocommerce/sample-data\";i:220042;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:71:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:79:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42755;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:75:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39841;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17182;s:69:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107180;s:56:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony\";i:117710;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:55:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:161410;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:162514;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm\";i:162514;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6664;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25080;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:43599;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:62015;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2602;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21018;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3414;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21830;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:73:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:2191;s:91:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6218;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:262401;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:85946;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:368954;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic\";i:672051;s:52:\"/var/www/html/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:92:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:72:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:68:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:57:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer\";i:834582;s:67:\"/var/www/html/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:88:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:48:\"/var/www/html/web/app/plugins/woocommerce/vendor\";i:2029798;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/flexslider\";i:74711;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/selectWoo\";i:463933;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:59:\"/var/www/html/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/admin\";i:483578;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:60:\"/var/www/html/web/app/plugins/woocommerce/assets/js/frontend\";i:203314;s:56:\"/var/www/html/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:51:\"/var/www/html/web/app/plugins/woocommerce/assets/js\";i:2328886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:52:\"/var/www/html/web/app/plugins/woocommerce/assets/css\";i:2093041;s:54:\"/var/www/html/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:9410678;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/images/core-profiler\";i:307207;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/images/previews\";i:522602;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:36070;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons\";i:41143;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/images/onboarding\";i:178839;s:67:\"/var/www/html/web/app/plugins/woocommerce/assets/images/admin_notes\";i:30986;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment-methods\";i:61832;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/task_list\";i:99632;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/images\";i:11811898;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:993;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1334;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:927;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:624;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:782;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:290;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1141;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1195;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:616;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:670;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:300374;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:544;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:431;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1843;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:684;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:621;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1564;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:541;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1407;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1262;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1117;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:632;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:636;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:498;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:457;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:879;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1364;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:852;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:931;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1595;s:82:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1422;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1155;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1212;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1590;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:870;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1511;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:612;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:727;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1581;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:955;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1567;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:761;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:432;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:766;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:865;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1345;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1513;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:440;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:355;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:462;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:918;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:193714;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:66484;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:811;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:1022;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1603;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:540;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1878;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:461;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:785;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1378;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:470;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:813;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:530;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:478;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:589;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:750;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:469;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:617;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:651;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:663;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:662;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:616;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:590;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:618;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:622;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:612;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:628;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:603;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:619;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:714;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:586;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:617;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:578;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:624;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:566;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:641;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:625;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:570;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:660;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:583;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:682;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:837;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:674;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:633;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:587;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:827;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:633;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:598;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:588;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:816;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:593;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:715;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:600;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:612;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:573;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:640;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:633;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:672;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:641;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:627;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:744;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:614;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:659;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:442;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:677;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33477;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1367;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:641;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:641;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks\";i:5183022;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation-opt-out\";i:1123;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/data\";i:148336;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86621;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8027;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127309;s:70:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4673;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/app\";i:784133;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/components\";i:1088012;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:383066;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:161259;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:44202;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1733;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2640;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2158;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:572;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3422;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:2980;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3007;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5594;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5554;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3205;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3197;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:136:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22908;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8741;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3830;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2295;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2467;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:702;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:727;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6632;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:6717;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2058;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2233;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3397;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2093;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3469;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2395;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3197;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:1978;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13811;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:633;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5244;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:622;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7250;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7549;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4007;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7662;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:1995;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21670;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8858;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2471;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2864;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1652;s:124:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:572;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4850;s:126:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2241;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3595;s:130:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1698;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2037;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:627;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:211809;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:604;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2701;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1762;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:592;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2123;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:868;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7133;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3523;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2080;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4088;s:95:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:3912;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:992;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1942;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2050;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2621;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1822;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2244;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1858;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8184;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2674;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:832;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3354;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5482;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:617;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:8852;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3495;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2685;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3645;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:755;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1165;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1370;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:90628;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:310482;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1142135;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1904551;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:6773;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin\";i:6622059;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/client\";i:11805081;s:48:\"/var/www/html/web/app/plugins/woocommerce/assets\";i:28591795;s:61:\"/var/www/html/web/app/plugins/woocommerce/client/admin/config\";i:2299;s:54:\"/var/www/html/web/app/plugins/woocommerce/client/admin\";i:2299;s:48:\"/var/www/html/web/app/plugins/woocommerce/client\";i:2299;s:56:\"/var/www/html/web/app/plugins/woocommerce/i18n/languages\";i:1747540;s:46:\"/var/www/html/web/app/plugins/woocommerce/i18n\";i:2013376;s:50:\"/var/www/html/web/app/plugins/woocommerce/patterns\";i:208652;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/queue\";i:8898;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/shortcodes\";i:54308;s:54:\"/var/www/html/web/app/plugins/woocommerce/includes/cli\";i:38423;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks/events\";i:51376;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks\";i:75507;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/data-stores\";i:346017;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11577;s:70:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17839;s:93:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:74:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site\";i:57477;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/interfaces\";i:35472;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:128486;s:67:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:219869;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings/views\";i:54972;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings\";i:172360;s:68:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers\";i:58181;s:86:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:90:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper\";i:148126;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/views\";i:121333;s:77:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/admin\";i:1508682;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:83:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54515;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77527;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways\";i:116815;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin\";i:34566;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:365908;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:396739;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:453924;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1221250;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api\";i:1234915;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/export\";i:40330;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/emails\";i:100280;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/import\";i:56176;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/abstracts\";i:267717;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/traits\";i:2124;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:79:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:78:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:85:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:50:\"/var/www/html/web/app/plugins/woocommerce/includes\";i:6512655;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/loop\";i:12067;s:71:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:78:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15543;s:66:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product\";i:42783;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/auth\";i:7033;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/parts\";i:10431;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:59:\"/var/www/html/web/app/plugins/woocommerce/templates/notices\";i:2933;s:60:\"/var/www/html/web/app/plugins/woocommerce/templates/checkout\";i:36481;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/myaccount\";i:48888;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/cart\";i:32420;s:65:\"/var/www/html/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/order\";i:24189;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/emails/plain\";i:38216;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/emails\";i:91533;s:72:\"/var/www/html/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/templates\";i:23448;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/global\";i:10121;s:51:\"/var/www/html/web/app/plugins/woocommerce/templates\";i:373790;s:41:\"/var/www/html/web/app/plugins/woocommerce\";i:45825103;s:66:\"/var/www/html/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:55:\"/var/www/html/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:51:\"/var/www/html/web/app/plugins/polylang/modules/sync\";i:44536;s:56:\"/var/www/html/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:57:\"/var/www/html/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:60:\"/var/www/html/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:53:\"/var/www/html/web/app/plugins/polylang/modules/wizard\";i:130236;s:51:\"/var/www/html/web/app/plugins/polylang/modules/wpml\";i:66958;s:57:\"/var/www/html/web/app/plugins/polylang/modules/share-slug\";i:1565;s:58:\"/var/www/html/web/app/plugins/polylang/modules/site-health\";i:14557;s:62:\"/var/www/html/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:46:\"/var/www/html/web/app/plugins/polylang/modules\";i:272125;s:47:\"/var/www/html/web/app/plugins/polylang/settings\";i:119552;s:46:\"/var/www/html/web/app/plugins/polylang/install\";i:39475;s:47:\"/var/www/html/web/app/plugins/polylang/js/build\";i:103657;s:41:\"/var/www/html/web/app/plugins/polylang/js\";i:103657;s:44:\"/var/www/html/web/app/plugins/polylang/flags\";i:74931;s:54:\"/var/www/html/web/app/plugins/polylang/vendor/composer\";i:58432;s:45:\"/var/www/html/web/app/plugins/polylang/vendor\";i:59203;s:48:\"/var/www/html/web/app/plugins/polylang/css/build\";i:65766;s:42:\"/var/www/html/web/app/plugins/polylang/css\";i:65766;s:44:\"/var/www/html/web/app/plugins/polylang/admin\";i:161850;s:47:\"/var/www/html/web/app/plugins/polylang/frontend\";i:110448;s:73:\"/var/www/html/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:60:\"/var/www/html/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:63:\"/var/www/html/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:59:\"/var/www/html/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/yarpp\";i:719;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/cache\";i:3629;s:64:\"/var/www/html/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:51:\"/var/www/html/web/app/plugins/polylang/integrations\";i:53022;s:46:\"/var/www/html/web/app/plugins/polylang/include\";i:356041;s:38:\"/var/www/html/web/app/plugins/polylang\";i:1566178;s:29:\"/var/www/html/web/app/plugins\";i:47488373;s:37:\"/var/www/html/web/app/uploads/2024/08\";i:0;s:34:\"/var/www/html/web/app/uploads/2024\";i:0;s:49:\"/var/www/html/web/app/uploads/woocommerce_uploads\";i:13;s:37:\"/var/www/html/web/app/uploads/wc-logs\";i:5283;s:29:\"/var/www/html/web/app/uploads\";i:285118;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/customize\";i:177349;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/IXR\";i:33915;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-supports\";i:130165;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps/providers\";i:17593;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps\";i:47491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/theme-compat\";i:15656;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/php-compat\";i:1253;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/interactivity-api\";i:55295;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Response\";i:3101;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src\";i:214849;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/library\";i:261;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests\";i:215110;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/html-api\";i:330662;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/button\";i:14416;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query\";i:14007;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments\";i:28882;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-content\";i:1389;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/buttons\";i:11183;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/nextpage\";i:3039;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/rss\";i:4491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/table\";i:27351;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-date\";i:1377;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/html\";i:3770;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-date\";i:1112;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/search\";i:19592;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-terms\";i:1715;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/footnotes\";i:2642;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pattern\";i:411;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/categories\";i:2825;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list-item\";i:1137;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/file\";i:11514;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/widget-group\";i:400;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/more\";i:3770;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/cover\";i:83346;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/quote\";i:6526;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-featured-image\";i:29716;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-link\";i:3474;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/heading\";i:5731;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/paragraph\";i:6904;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list\";i:2173;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/columns\";i:9193;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/read-more\";i:2526;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/block\";i:587;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/image\";i:64157;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-title\";i:1823;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-content\";i:1369;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-logo\";i:17033;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/template-part\";i:7986;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/spacer\";i:4737;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list\";i:7663;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/loginout\";i:1026;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/preformatted\";i:1696;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/home-link\";i:1130;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-template\";i:8072;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/embed\";i:11232;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation\";i:132149;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/avatar\";i:2296;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-title\";i:1701;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-no-results\";i:899;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/separator\";i:5038;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/code\";i:2638;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-title\";i:2289;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/gallery\";i:80571;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/missing\";i:617;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:76:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/media-text\";i:14445;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/verse\";i:1860;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/shortcode\";i:2918;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pullquote\";i:8267;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/freeform\";i:41824;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/term-description\";i:1751;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-title\";i:1392;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-template\";i:2910;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/details\";i:2030;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/video\";i:11619;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/calendar\";i:3804;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-links\";i:58808;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author\";i:2895;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/audio\";i:3660;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/text-columns\";i:3034;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/archives\";i:1725;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/column\";i:1597;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/group\";i:9055;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks\";i:1503945;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/style-engine\";i:47528;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/pomo\";i:57146;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/assets\";i:24990;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/widgets\";i:158524;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML\";i:7098;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Net\";i:7493;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content\";i:8015;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie\";i:458625;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-bindings\";i:3610;s:47:\"/var/www/haiku-atelier/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/ID3\";i:1160011;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/PHPMailer\";i:233227;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/search\";i:16749;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/fields\";i:22510;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api\";i:977234;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/certificates\";i:233231;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery/ui\";i:787634;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery\";i:1305370;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/thickbox\";i:31323;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce\";i:2854127;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jcrop\";i:24976;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/swfupload\";i:8715;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/imgareaselect\";i:49553;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement\";i:721307;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/development\";i:179848;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist\";i:21236724;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/crop\";i:20004;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/js/codemirror\";i:1287141;s:44:\"/var/www/haiku-atelier/web/wp/wp-includes/js\";i:30445287;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-post\";i:51948;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/patterns\";i:7442;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/editor\";i:249468;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/commands\";i:13442;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-library\";i:805412;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/widgets\";i:23740;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/format-library\";i:5556;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/preferences\";i:8474;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/components\";i:357993;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/nux\";i:11624;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist\";i:2644176;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/css\";i:3289933;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff\";i:44136;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/Text\";i:57049;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/crystal\";i:15541;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/images/media\";i:5263;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/smilies\";i:10082;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/images\";i:102178;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-patterns\";i:8843;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:79:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:78:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:85:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:82:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat\";i:1303525;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/l10n\";i:30499;s:41:\"/var/www/haiku-atelier/web/wp/wp-includes\";i:48797833;s:43:\"/var/www/haiku-atelier/web/wp/wp-admin/user\";i:3685;s:46:\"/var/www/haiku-atelier/web/wp/wp-admin/network\";i:125999;s:47:\"/var/www/haiku-atelier/web/wp/wp-admin/includes\";i:3069241;s:44:\"/var/www/haiku-atelier/web/wp/wp-admin/maint\";i:7592;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/js/widgets\";i:139432;s:41:\"/var/www/haiku-atelier/web/wp/wp-admin/js\";i:1971286;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ocean\";i:75229;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/coffee\";i:75892;s:58:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/midnight\";i:78486;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/light\";i:78474;s:59:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:57:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:54:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/blue\";i:77778;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/modern\";i:77989;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors\";i:643556;s:42:\"/var/www/haiku-atelier/web/wp/wp-admin/css\";i:2542439;s:45:\"/var/www/haiku-atelier/web/wp/wp-admin/images\";i:426821;s:38:\"/var/www/haiku-atelier/web/wp/wp-admin\";i:9072296;s:29:\"/var/www/haiku-atelier/web/wp\";i:58054082;s:64:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/inc\";i:16246;s:87:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api/v3\";i:6589;s:84:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api\";i:16970;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas\";i:17870;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api/v3\";i:383;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api\";i:2909;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types\";i:4106;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib\";i:42733;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/constantes\";i:6552;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts\";i:99856;s:71:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/pages\";i:9304;s:75:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:1400;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:32926;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:7819;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:6185;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base\";i:16318;s:65:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass\";i:60709;s:60:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src\";i:182905;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/vendor\";i:1155;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:2681684;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts\";i:2905228;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27641;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/storytelling\";i:17708051;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/paypal\";i:3161;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/about\";i:41602782;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:2965;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TAMANORI\";i:28185358;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/BOROBORO\";i:12198378;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TANEMAKI\";i:51708624;s:90:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KARA\";i:20206872;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KISHOU\";i:1117321;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/IKKAN\";i:7522617;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/MUGURA\";i:48966844;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/ROKKU\";i:30061913;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KAGUN\";i:39437895;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/PIASU\";i:41429239;s:93:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HATTARI\";i:11237555;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HADOU\";i:14508333;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS\";i:306580949;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/HADOU\";i:927234;s:86:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/SIZECHART\";i:60067;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products\";i:308169029;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img\";i:367546884;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js/.vite\";i:23402;s:66:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js\";i:187659;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css/pages\";i:60815;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css\";i:168929;s:63:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets\";i:370810363;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/macros\";i:696;s:81:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/panier\";i:13142;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/produit\";i:5012;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/shop\";i:1199;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages\";i:19353;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts\";i:26003;s:62:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views\";i:45157;s:56:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024\";i:371054731;s:64:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/templates\";i:12953;s:63:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/patterns\";i:158957;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:72:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:83:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:67:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:65:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/css\";i:357;s:68:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets\";i:2176015;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/styles\";i:33892;s:60:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/parts\";i:1473;s:54:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour\";i:3137090;s:37:\"/var/www/haiku-atelier/web/app/themes\";i:374191821;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/src/Components\";i:3084;s:49:\"/var/www/haiku-atelier/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/assets\";i:6377;s:61:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor/composer\";i:37088;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor\";i:37859;s:65:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings\";i:13902;s:51:\"/var/www/haiku-atelier/web/app/plugins/falcon/views\";i:13902;s:45:\"/var/www/haiku-atelier/web/app/plugins/falcon\";i:97092;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/collectors\";i:146052;s:60:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/classes\";i:98467;s:57:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/data\";i:15807;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/wp-content\";i:2403;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/html\";i:165089;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/raw\";i:9533;s:67:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/headers\";i:4820;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output\";i:197727;s:65:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets/icons\";i:2156;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets\";i:73257;s:68:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor/composer\";i:26857;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor\";i:27628;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/dispatchers\";i:37910;s:52:\"/var/www/haiku-atelier/web/app/plugins/query-monitor\";i:636645;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/include\";i:356041;s:65:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:62:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard\";i:130236;s:64:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:67:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/site-health\";i:14557;s:71:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sync\";i:44536;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/share-slug\";i:1565;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wpml\";i:66958;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules\";i:272125;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/admin\";i:161850;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/frontend\";i:110448;s:63:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor/composer\";i:58432;s:54:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor\";i:59203;s:73:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/yarpp\";i:719;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:68:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:72:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:82:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/cache\";i:3629;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations\";i:53022;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/install\";i:39475;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/js/build\";i:103657;s:50:\"/var/www/haiku-atelier/web/app/plugins/polylang/js\";i:103657;s:57:\"/var/www/haiku-atelier/web/app/plugins/polylang/css/build\";i:65766;s:51:\"/var/www/haiku-atelier/web/app/plugins/polylang/css\";i:65766;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/flags\";i:74931;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/settings\";i:119552;s:47:\"/var/www/haiku-atelier/web/app/plugins/polylang\";i:1566178;s:73:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails/assets\";i:10275;s:66:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails\";i:55299;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15556;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product\";i:42878;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/checkout\";i:36451;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates\";i:23448;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails/plain\";i:38319;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails\";i:91920;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/cart\";i:32634;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/myaccount\";i:50782;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/global\";i:10397;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/order\";i:24189;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/notices\";i:2933;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/auth\";i:7309;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/parts\";i:10043;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/loop\";i:12321;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates\";i:376768;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages\";i:126313;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib\";i:126313;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/sample-data\";i:220042;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/patterns\";i:124277;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:4658;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:145254;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:828;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:174869;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:185840;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:5335;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:163674;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:164010;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi\";i:551266;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:51416;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Notes\";i:73841;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22904;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9309;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11036;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29290;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:61183;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:21403;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:62498;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:103155;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8958;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25687;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:30273;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:62825;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:17498;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:44458;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:30490;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:56521;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:23175;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:43714;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:19096;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:694872;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/AI\";i:16436;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API\";i:1031204;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9819;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Importers\";i:9932;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Exporters\";i:16010;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Steps\";i:12826;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint\";i:47719;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:14445;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:58486;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:102236;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21179;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:57851;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43946;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:37775;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features\";i:354011;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:63415;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:71728;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin\";i:1747611;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Utilities\";i:53577;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ImportExport\";i:6146;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:12470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50566;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97520;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47801;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:104650;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:128350;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:41004;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin\";i:778158;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Utilities\";i:78473;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:12349;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Logging\";i:15828;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:73593;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:285676;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores\";i:292918;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25545;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95406;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Orders\";i:32870;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:32478;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:50978;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:66833;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:66833;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features\";i:120939;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2474;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal\";i:1726157;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:69217;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations\";i:135204;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database\";i:135204;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101382;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain\";i:123033;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:22111;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:53330;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:521539;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:68267;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25904;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Utils\";i:80715;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Templates\";i:69877;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:10100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks\";i:1091452;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caches\";i:3406;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caching\";i:20668;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10472;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout\";i:10472;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src\";i:5367285;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:101713;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25700;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83943;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:355164;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler\";i:477051;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages\";i:477254;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:7131;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4746;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/app\";i:722758;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/data\";i:148210;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:750;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:145:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22944;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3203;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2100;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5296;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2059;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8748;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3061;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3839;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2764;s:133:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:576;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2165;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:635;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:2008;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3517;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3417;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4934;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7590;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:3010;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13768;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2496;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:5766;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3219;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:713;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:578;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6722;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4093;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7690;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2873;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2333;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2302;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:2002;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2649;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3458;s:135:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2248;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2511;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7272;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1737;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3216;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5644;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:642;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8902;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3671;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5559;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21738;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:626;s:139:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1702;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2064;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1661;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:212471;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1864;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2766;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:877;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3559;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1415;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1843;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5590;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1949;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:616;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2251;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7325;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:776;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:4363;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8443;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1945;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2134;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1172;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:610;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3390;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2110;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:9171;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2080;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2793;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2665;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3809;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:1001;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:598;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4132;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:841;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3705;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2729;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:93125;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:313641;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1155516;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86614;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:43966;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:263375;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/woo-product-usage-notice\";i:6028;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8655;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1908969;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/remote-logging\";i:21615;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127314;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:333496;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/components\";i:1108294;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin\";i:6638361;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:594;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:618;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:882;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:1012;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:965;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1434;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:635;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:633;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:31358;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1162;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:651;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1147;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:28151;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:625;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:905;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:867;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:479;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:634;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:771;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:933;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:613;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1842;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:446;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1585;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:357;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1523;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:441;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:535;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1605;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:870;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:791;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:1467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1596;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:588;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:643;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:583;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:627;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:818;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:444;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:575;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:624;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:635;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:746;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:614;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:836;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:665;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:642;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:572;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:643;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:614;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:602;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:605;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:618;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:626;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:717;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:583;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:664;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:635;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:619;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:590;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:635;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:829;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:619;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:580;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:629;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:662;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:595;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:661;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:679;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:630;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:676;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:594;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:471;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:634;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:621;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:616;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:605;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:674;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:620;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:716;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:592;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:568;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:684;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:653;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:585;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:634;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33590;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:2045;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1119;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1613;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1174;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:978;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:642;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1577;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:546;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:737;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1358;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:436;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:854;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:62928;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1365;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1374;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:672;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1417;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:311;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:442;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1888;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:937;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:542;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1272;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:815;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:543;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:508;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1521;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1377;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1304;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:464;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1388;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:680;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:623;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay-navigation\";i:2137;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1591;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:826;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks\";i:4700944;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client\";i:11339305;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/admin\";i:488725;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/frontend\";i:209838;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/flexslider\";i:74805;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/selectWoo\";i:464613;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js\";i:2341331;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css\";i:2096198;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/core-profiler\";i:33862;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/task_list\";i:83458;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/previews\";i:413623;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/onboarding\";i:240417;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment-methods\";i:67316;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:27486;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons\";i:31521;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:4053200;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/admin_notes\";i:22969;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images\";i:5767572;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets\";i:22097295;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin/config\";i:2432;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin\";i:2432;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client\";i:2432;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39842;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42756;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17185;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107185;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony\";i:117715;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:13039;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10209;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:17616;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:30074;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:37869;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:42613;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:171568;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:172672;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm\";i:172672;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer\";i:986889;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Info\";i:5464;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Formats\";i:9455;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Resolvers\";i:26657;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Schemas\";i:11417;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Filters\";i:14233;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Pragmas\";i:6839;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Keywords\";i:104211;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Drafts\";i:16672;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/KeywordValidators\";i:2046;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers\";i:168548;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Pragmas\";i:9060;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Keywords\";i:149538;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Exceptions\";i:14049;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Errors\";i:19102;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Variables\";i:6949;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/KeywordValidators\";i:4676;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src\";i:512100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema\";i:523262;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src/Exception\";i:3792;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src\";i:45510;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/res\";i:85488;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string\";i:141477;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri/src\";i:50158;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri\";i:61761;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis\";i:726500;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Cli\";i:2787;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs/json-examples\";i:578;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs\";i:578;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Schemas\";i:3561;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Importers\";i:13706;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Exporters\";i:5124;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResultFormatters\";i:2804;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResourceStorages\";i:5077;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Steps\";i:14199;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src\";i:87257;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/fixtures\";i:595;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit/Schemas\";i:2144;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit\";i:6049;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs/Exporters\";i:643;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs\";i:643;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests\";i:8499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint\";i:96039;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce\";i:96039;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis/_inc\";i:2116;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis\";i:45720;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6554;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/sso\";i:113495;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:462283;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:82512;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:86764;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:649975;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3465;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21881;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6809;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25225;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/build\";i:8948;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src/js\";i:2330;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src\";i:40444;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets\";i:68778;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2606;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21022;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:50948;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:69364;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic\";i:1029399;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor\";i:3372155;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/data-stores\";i:354754;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin\";i:34639;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/product-usage\";i:3082;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/import\";i:56176;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/views\";i:121662;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers\";i:62849;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:131617;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:223285;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings/views\";i:55620;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings\";i:181942;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper\";i:165129;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin\";i:1542031;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/interfaces\";i:35473;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/emails\";i:100280;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/traits\";i:2124;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/cli\";i:38423;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/queue\";i:8898;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/abstracts\";i:268729;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks/events\";i:62168;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks\";i:87347;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/export\";i:40330;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:373774;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:456837;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:397047;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1232337;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api\";i:1246552;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11576;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17838;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site\";i:57476;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54634;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77646;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways\";i:116934;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shortcodes\";i:53973;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes\";i:6609222;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n/languages\";i:1753660;s:55:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n\";i:2019496;s:50:\"/var/www/haiku-atelier/web/app/plugins/woocommerce\";i:40855736;s:73:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/scripts\";i:2058766;s:69:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/css\";i:1445;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources\";i:2060211;s:55:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build\";i:2060211;s:61:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Filters\";i:1300;s:58:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Spec\";i:16940;s:57:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/CLI\";i:2060;s:53:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src\";i:32330;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/assets\";i:417779;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor/composer\";i:36281;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor\";i:37052;s:67:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/scripts\";i:1193;s:68:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/elements\";i:2149767;s:64:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/sass\";i:401;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/views\";i:1979;s:59:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources\";i:2153340;s:49:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi\";i:4718989;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/chronopost\";i:21790;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/mondial_relay\";i:14027;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/ups\";i:14871;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods\";i:55876;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI/filters\";i:5896;s:68:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI\";i:100646;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/include\";i:952612;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/config\";i:1194;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/fonts\";i:2529;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/tools\";i:7413;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf\";i:2322586;s:63:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib\";i:2426416;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/chronopost\";i:80783;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/abstract_classes\";i:69630;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/config\";i:350;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/mondial_relay\";i:76867;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/ups\";i:70178;s:73:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes\";i:299338;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/openstreetmap\";i:2964;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/mondial_relay\";i:3251;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/google_maps\";i:2540;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups\";i:9732;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/shipping\";i:6384;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/config\";i:2233;s:92:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/chronopost\";i:6964;s:98:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/abstract_classes\";i:16698;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/mondial_relay\";i:5948;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/ups\";i:5812;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders\";i:35422;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/settings\";i:799;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials\";i:54570;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/chronopost\";i:12119;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/openstreetmap\";i:15136;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/mondial_relay\";i:5469;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/google_maps\";i:14868;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups\";i:37647;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/mondial_relay\";i:3080;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/dhl\";i:1381;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/ups\";i:3109;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js\";i:61179;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/chronopost\";i:55;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/pickups\";i:4890;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/mondial_relay\";i:55;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/ups\";i:55;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css\";i:5055;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets\";i:66234;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/views\";i:254;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin\";i:421863;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/woocommerce_block\";i:42885;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email/templates\";i:1248;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email\";i:1248;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources\";i:108037;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/chronopost\";i:4973;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/abstract_classes\";i:12853;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/mondial_relay\";i:4668;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/ups\";i:6516;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup\";i:29010;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/openstreetmap\";i:3603;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/mondial_relay\";i:3812;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/google_maps\";i:3461;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups\";i:10876;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials\";i:10876;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/openstreetmap\";i:11083;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/mondial_relay\";i:4894;s:102:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/woocommerce_blocks\";i:2911;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/google_maps\";i:11001;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups\";i:29889;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js\";i:29889;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css/pickups\";i:3911;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css\";i:3911;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets\";i:33800;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front\";i:75274;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/classes\";i:374;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/helper\";i:7996;s:67:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers\";i:10238;s:59:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc\";i:3140589;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor/composer\";i:35612;s:62:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor\";i:35751;s:55:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping\";i:3194686;s:38:\"/var/www/haiku-atelier/web/app/plugins\";i:51124625;s:58:\"/var/www/haiku-atelier/web/app/uploads/woocommerce_uploads\";i:14;s:46:\"/var/www/haiku-atelier/web/app/uploads/wc-logs\";i:4441;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/10\";i:122283131;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/09\";i:30092056;s:43:\"/var/www/haiku-atelier/web/app/uploads/2024\";i:152375187;s:38:\"/var/www/haiku-atelier/web/app/uploads\";i:152379642;}','off'), -(992,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1723037545;}','off'), -(1266,'woocommerce_task_list_reminder_bar_hidden','yes','auto'), -(1844,'nonce_key','Qe9)bK=%I]xCh./VgqP J~76af%z[ GJpRMI$H9^BE!rApKAVk}7rw._BQRV:.}4','off'), -(1845,'nonce_salt',' 3%/;I6>tVBcX^+ei0X(f07Fy}xZy9-W4;4Hp]+9c|7Lu9OyH*vDy<$[ ZFupt-K','off'), -(1855,'auth_key','+_xd+>H[lp.sF$h(0~tRw(*Mc3fU~j;oy5**DrV8N`:&oeE`[aW31h{1+sbj%m/9','off'), -(1856,'auth_salt','*g5A.#_L{&a+3G-HjFNXK!,lkIl{fp%Yk!b9LatvPCB_-oCx^?R~k^3X-*wzC T^','off'), -(1865,'secure_auth_key','_OJ{C5_dNeer{F8)-EMc@BG;IG#6FB*f!A=pxe@1kq:jG','off'), -(1866,'secure_auth_salt','0zE{&JkB]rz&F(6gC,sYm42s?Y~I(@wIuB%wVd$!r0IUEf2X|wWAAu,+t?NC[jQ','off'), -(1868,'logged_in_salt','%;$7@^LKY|%V>x95!VT;|+ 6qCn}f2Nxf9~0@ucl:o_B1@mP_KR XTC=lW~sDsX.','off'), -(2018,'woocommerce_downloads_count_partial','yes','on'), -(2230,'wp-openapi-rewrite-flushed','1','auto'), -(2232,'wp-openapi-options','','auto'), -(2594,'woocommerce_email_footer_text_color','#3c3c3c','off'), -(3107,'recovery_keys','a:0:{}','off'), -(5596,'woocommerce_admin_customize_store_completed','yes','auto'), -(6061,'site_logo','','auto'), -(8528,'woocommerce_feature_site_visibility_badge_enabled','yes','on'), -(8589,'woocommerce_admin_created_default_shipping_zones','yes','auto'), -(8590,'woocommerce_admin_reviewed_default_shipping_zones','yes','auto'), -(8603,'_transient_orders-transient-version','1750690587','on'), -(8610,'woocommerce_admin_last_orders_milestone','10','auto'), -(8759,'wc_shop_order_list_table_months_filter_cache_date','1749466779','auto'), -(8760,'wc_shop_order_list_table_months_filter_cache_value','a:8:{i:0;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"6\";}i:1;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"5\";}i:2;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"4\";}i:3;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"3\";}i:4;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"2\";}i:5;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"1\";}i:6;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"12\";}i:7;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"11\";}}','auto'), -(9197,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"dd429dffcb518f90fe1f9ce99f485c58\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'), -(9202,'db_upgraded','','on'), -(9217,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:8:\"extended\";i:1;s:5:\"setup\";}','auto'), -(9218,'woocommerce_default_homepage_layout','two_columns','auto'), -(10216,'woocommerce_sales_record_date','2024-11-26','auto'), -(10217,'woocommerce_sales_record_amount','1525','auto'), -(10790,'wpmc_options','a:27:{s:6:\"method\";s:5:\"media\";s:7:\"content\";b:1;s:18:\"filesystem_content\";b:0;s:13:\"media_library\";b:1;s:12:\"live_content\";b:0;s:9:\"debuglogs\";b:0;s:11:\"images_only\";b:0;s:13:\"attach_is_use\";b:0;s:15:\"thumbnails_only\";b:0;s:11:\"dirs_filter\";s:0:\"\";s:12:\"files_filter\";s:0:\"\";s:15:\"hide_thumbnails\";b:0;s:12:\"hide_warning\";b:0;s:10:\"skip_trash\";b:0;s:13:\"medias_buffer\";i:100;s:12:\"posts_buffer\";i:5;s:15:\"analysis_buffer\";i:100;s:14:\"file_op_buffer\";i:20;s:5:\"delay\";i:100;s:19:\"shortcodes_disabled\";b:0;s:31:\"output_buffer_cleaning_disabled\";b:0;s:14:\"php_error_logs\";b:0;s:14:\"posts_per_page\";i:1000;s:15:\"clean_uninstall\";b:0;s:11:\"repair_mode\";b:0;s:11:\"expert_mode\";b:0;s:9:\"logs_path\";N;}','off'), -(10791,'wpmc_rating_date','1732931640','off'), -(10793,'product_cat_children','a:0:{}','auto'), -(10807,'wms_mondial_relay_enable','yes','on'), -(10808,'wms_mondial_relay_customer_code','','on'), -(10809,'wms_mondial_relay_private_key','','on'), -(10810,'wms_mondial_relay_brand_code','','on'), -(10811,'wms_mondial_relay_section_pickup_points_map_type','openstreetmap','on'), -(10812,'wms_mondial_relay_section_pickup_points_google_maps_api_key','','on'), -(10813,'wms_mondial_relay_section_label_generation_status','a:0:{}','on'), -(10814,'wms_mondial_relay_section_label_status_post_generation','','on'), -(10815,'wms_mondial_relay_section_label_send_email','no','on'), -(10816,'wms_mondial_relay_price_before_discount','no','on'), -(10817,'wms_mondial_relay_shipper_civility','MLLE','on'), -(10818,'wms_mondial_relay_shipper_name','','on'), -(10819,'wms_mondial_relay_shipper_name_2','','on'), -(10820,'wms_mondial_relay_shipper_address_1','','on'), -(10821,'wms_mondial_relay_shipper_address_2','','on'), -(10822,'wms_mondial_relay_shipper_zip_code','','on'), -(10823,'wms_mondial_relay_shipper_city','','on'), -(10824,'wms_mondial_relay_shipper_country','AF','on'), -(10825,'wms_mondial_relay_shipper_email','','on'), -(10826,'wms_mondial_relay_shipper_phone','','on'), -(10827,'wms_mondial_relay_shipper_mobile_phone','','on'), -(10828,'wms_mondial_relay_section_parcel_insurance','0','on'), -(10829,'wms_mondial_relay_section_parcel_installation_duration','','on'), -(10830,'wms_mondial_relay_section_parcel_shipping_value','','on'), -(10831,'wms_mondial_relay_debug_mode','1','on'), -(10832,'wms_chronopost_enable','no','on'), -(10833,'wms_chronopost_account_number','','on'), -(10834,'wms_chronopost_account_name','','on'), -(10835,'wms_chronopost_account_password','','on'), -(10836,'wms_chronopost_section_pickup_points_map_type','openstreetmap','on'), -(10837,'wms_chronopost_section_pickup_points_google_maps_api_key','','on'), -(10838,'wms_chronopost_label_format','PDF','on'), -(10839,'wms_chronopost_section_label_generation_status','a:0:{}','on'), -(10840,'wms_chronopost_section_label_status_post_generation','','on'), -(10841,'wms_chronopost_section_label_send_email','no','on'), -(10842,'wms_chronopost_price_before_discount','yes','on'), -(10843,'wms_chronopost_shipper_civility','E','on'), -(10844,'wms_chronopost_shipper_name','','on'), -(10845,'wms_chronopost_shipper_name_2','','on'), -(10846,'wms_chronopost_shipper_address_1','','on'), -(10847,'wms_chronopost_shipper_address_2','','on'), -(10848,'wms_chronopost_shipper_zip_code','','on'), -(10849,'wms_chronopost_shipper_city','','on'), -(10850,'wms_chronopost_shipper_country','AF','on'), -(10851,'wms_chronopost_shipper_contact_name','','on'), -(10852,'wms_chronopost_shipper_email','','on'), -(10853,'wms_chronopost_shipper_phone','','on'), -(10854,'wms_chronopost_shipper_mobile_phone','','on'), -(10855,'wms_chronopost_customer_civility','E','on'), -(10856,'wms_chronopost_customer_name','','on'), -(10857,'wms_chronopost_customer_name_2','','on'), -(10858,'wms_chronopost_customer_address_1','','on'), -(10859,'wms_chronopost_customer_address_2','','on'), -(10860,'wms_chronopost_customer_zip_code','','on'), -(10861,'wms_chronopost_customer_city','','on'), -(10862,'wms_chronopost_customer_country','AF','on'), -(10863,'wms_chronopost_customer_contact_name','','on'), -(10864,'wms_chronopost_customer_email','','on'), -(10865,'wms_chronopost_customer_phone','','on'), -(10866,'wms_chronopost_customer_mobile_phone','','on'), -(10867,'wms_chronopost_section_insurance_ad_valorem_enabled','1','on'), -(10868,'wms_chronopost_section_insurance_ad_valorem_min_amount','0','on'), -(10869,'wms_chronopost_saturday_shipping_start_day','monday','on'), -(10870,'wms_chronopost_saturday_shipping_start_time','0','on'), -(10871,'wms_chronopost_saturday_shipping_end_day','monday','on'), -(10872,'wms_chronopost_saturday_shipping_end_time','0','on'), -(10873,'wms_chronopost_debug_mode','0','on'), -(10874,'wms_ups_enable','yes','on'), -(10875,'wms_ups_account_username','','on'), -(10876,'wms_ups_password','','on'), -(10877,'wms_ups_account_number','','on'), -(10878,'wms_ups_api_access_key','','on'), -(10879,'wms_ups_section_pickup_points_map_type','openstreetmap','on'), -(10880,'wms_ups_section_pickup_points_google_maps_api_key','','on'), -(10881,'wms_ups_section_label_generation_status','a:0:{}','on'), -(10882,'wms_ups_section_label_status_post_generation','','on'), -(10883,'wms_ups_section_label_send_email','no','on'), -(10884,'wms_ups_shipper_civility','MLLE','on'), -(10885,'wms_ups_shipper_name','','on'), -(10886,'wms_ups_shipper_name_2','','on'), -(10887,'wms_ups_shipper_company_name','','on'), -(10888,'wms_ups_shipper_vat_number','','on'), -(10889,'wms_ups_shipper_address_1','','on'), -(10890,'wms_ups_shipper_address_2','','on'), -(10891,'wms_ups_shipper_zip_code','','on'), -(10892,'wms_ups_shipper_city','','on'), -(10893,'wms_ups_shipper_country','AF','on'), -(10894,'wms_ups_shipper_email','','on'), -(10895,'wms_ups_shipper_phone','','on'), -(10896,'wms_ups_shipper_mobile_phone','','on'), -(10897,'wms_ups_debug_mode','1','on'), -(10899,'woocommerce_ups_standard_4_settings','a:8:{s:5:\"title\";s:14:\"UPS - Standard\";s:13:\"title_if_free\";s:13:\"Free Shipping\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:12;}}}','on'), -(10900,'woocommerce_mondial_relay_point_relais_5_settings','a:8:{s:5:\"title\";s:26:\"Mondial Relay Point Relais\";s:13:\"title_if_free\";s:33:\"Mondial Relay Point Relais (Free)\";s:17:\"pricing_condition\";s:11:\"cart_amount\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:6;}}}','on'), -(10901,'woocommerce_mondial_relay_point_relais_6_settings','a:8:{s:5:\"title\";s:28:\"Mondial Relay - Point Relais\";s:13:\"title_if_free\";s:35:\"Mondial Relay - Point Relais (Free)\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:50;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:3;}}}','on'), -(12053,'wp_mail_logging_activated_time','1732552283','auto'), -(12054,'wp_mail_logging_db_version','2','off'), -(12055,'WPML_Plugin__version','1.13.1','auto'), -(12059,'wp_mail_logging_user_feedback_notice','a:2:{s:4:\"time\";i:1732552283;s:9:\"dismissed\";b:0;}','auto'), -(12077,'wp_mail_smtp_initial_version','4.2.0','off'), -(12078,'wp_mail_smtp_version','4.2.0','off'), -(12079,'wp_mail_smtp','a:19:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";s:9:\"from_name\";s:13:\"Haiku Atelier\";s:6:\"mailer\";s:5:\"gmail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:15:\"smtp.google.com\";s:4:\"port\";i:587;s:10:\"encryption\";s:3:\"tls\";s:4:\"user\";s:23:\"haiku.atelier@gmail.com\";s:4:\"pass\";s:8:\"jD091299\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:7:\"mailjet\";a:2:{s:7:\"api_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"smtp2go\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"amazonses\";a:3:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"region\";s:9:\"us-east-1\";}s:5:\"gmail\";a:10:{s:9:\"client_id\";s:72:\"402628219773-hl8niqniiiklf15f9biou8g06pbm9sac.apps.googleusercontent.com\";s:13:\"client_secret\";s:35:\"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\";s:12:\"access_token\";a:6:{s:12:\"access_token\";s:256:\"ya29.a0ATi6K2t3dpJbud4OhBbNXR-TIhdsVN5p2jHx6qoervpvY5F0DtBLQ8lxd7l3cOO64uEZZ2yUw-uSsPVXRlJ8OHJW0ezfu8MGmQ11uq1CfaHwA06ILuRRVwWHc5llpvnDe8agx0NxD2PQevxLjHzt_1RBAGHBhDYPdo2UOU-6m6SL343zRUMEJBup6BWNSO9IFFTL8WvlMwaCgYKAU4SARASFQHGX2Miwjzuw-FLZtx6uSjUlj5Fcg0209\";s:10:\"expires_in\";i:3599;s:5:\"scope\";s:24:\"https://mail.google.com/\";s:10:\"token_type\";s:6:\"Bearer\";s:7:\"created\";i:1764752990;s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";}s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";s:12:\"user_details\";a:1:{s:5:\"email\";s:23:\"haiku.atelier@gmail.com\";}s:23:\"one_click_setup_enabled\";b:0;s:27:\"one_click_setup_credentials\";a:2:{s:3:\"key\";s:0:\"\";s:5:\"token\";s:0:\"\";}s:28:\"one_click_setup_user_details\";a:1:{s:5:\"email\";s:0:\"\";}s:20:\"is_setup_wizard_auth\";b:0;s:9:\"auth_code\";s:73:\"4/0AeanS0ZUssWZn8hNjBZJEuEFDL9SMb5c1tjzffcTAVb5e2L-B_PRnuKLBa88D022Uumzmw\";}s:7:\"outlook\";a:5:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"zoho\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"domain\";s:3:\"com\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"logs\";a:5:{s:7:\"enabled\";b:0;s:17:\"log_email_content\";b:0;s:16:\"save_attachments\";b:0;s:19:\"open_email_tracking\";b:0;s:19:\"click_link_tracking\";b:0;}s:11:\"alert_email\";a:2:{s:7:\"enabled\";b:0;s:11:\"connections\";a:0:{}}s:7:\"license\";a:4:{s:3:\"key\";s:0:\"\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}}','off'), -(12080,'wp_mail_smtp_activated_time','1732553202','off'), -(12081,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1732553202;}','auto'), -(12087,'wp_mail_smtp_migration_version','5','on'), -(12088,'wp_mail_smtp_debug_events_db_version','1','on'), -(12089,'wp_mail_smtp_activation_prevent_redirect','1','auto'), -(12090,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1732821999;s:14:\"completed_time\";i:1732822044;s:14:\"was_successful\";b:1;}','off'), -(12092,'wp_mail_smtp_mail_key','b4X/o2Jlr+B6fYssiy4aNvSjL0y5sT0DeDNxw9gANsE=','auto'), -(12094,'wp_mail_smtp_debug','a:0:{}','off'), -(12097,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1733769473;s:9:\"dismissed\";b:1;}','auto'), -(12100,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1764706238;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:59:\"Black Friday is Live: The Email Upgrade You’ve Waited For\";s:7:\"content\";s:281:\"

No more guessing if your emails were sent. Upgrade to Pro for complete visibility, instant failure alerts, and backup connections that keep your messages flowing even when your primary service fails.

\r\n

This Black Friday offer ends soon — secure your upgrade today.

\r\n\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:47;s:4:\"btns\";a:1:{s:4:\"main\";a:2:{s:3:\"url\";s:147:\"https://wpmailsmtp.com/wpmailsmtp-lite-upgrade/?utm_source=WordPress&utm_medium=liteplugin&utm_campaign=Plugin Notification&utm_content=BF2025 Lite\";s:4:\"text\";s:14:\"Upgrade & Save\";}}s:5:\"start\";s:20:\"2025-11-25 10:51:40 \";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'), -(12490,'woocommerce_flat_rate_7_settings','a:3:{s:5:\"title\";s:12:\"UPS Standard\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"12,00\";}','on'), -(12492,'woocommerce_free_shipping_8_settings','a:4:{s:5:\"title\";s:19:\"UPS Standard (Free)\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:3:\"100\";s:16:\"ignore_discounts\";s:2:\"no\";}','on'), -(12503,'wp_mail_logging_product_education','a:1:{s:9:\"dismissed\";a:1:{s:17:\"email-logs-bottom\";b:1;}}','off'), -(12504,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:39:\"haiku.atelier@gmail.com,contact@gcch.fr\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(13305,'woocommerce_revenue_report_date_tour_shown','yes','auto'), -(13521,'wp_mail_smtp_lite_sent_email_counter','142','on'), -(13522,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:38;i:2;i:39;i:1;i:40;i:3;i:41;i:8;i:42;i:5;i:43;i:2;i:44;i:2;i:45;i:4;i:46;i:1;i:47;i:4;i:48;i:10;i:49;i:4;}','on'), -(20569,'woocommerce_clear_ces_tracks_queue_for_page','a:2:{s:7:\"pagenow\";s:25:\"woocommerce_page_wc-admin\";s:9:\"adminpage\";s:25:\"woocommerce_page_wc-admin\";}','auto'), -(20640,'_transient_woocommerce_product_task_product_count_transient','66','on'), -(21366,'woocommerce_customer_on_hold_order_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:46:\"We look forward to fulfilling your order soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21367,'woocommerce_customer_processing_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for using {site_url}!\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21368,'woocommerce_customer_completed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for shopping with us.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21369,'woocommerce_customer_refunded_order_settings','a:7:{s:7:\"enabled\";s:2:\"no\";s:12:\"subject_full\";s:0:\"\";s:15:\"subject_partial\";s:0:\"\";s:12:\"heading_full\";s:0:\"\";s:15:\"heading_partial\";s:0:\"\";s:18:\"additional_content\";s:30:\"We hope to see you again soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21370,'woocommerce_mondial_relay_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), -(21371,'woocommerce_ups_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), -(25278,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','on'), -(28660,'woocommerce_customer_note_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:19:\"Thanks for reading.\";s:10:\"email_type\";s:4:\"html\";}','on'), -(30281,'woocommerce_hpos_address_fts_index_created','yes','off'), -(30418,'widget_wc_brands_brand_description','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30419,'widget_woocommerce_brand_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30420,'widget_wc_brands_brand_thumbnails','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), -(30421,'woocommerce_anonymize_refunded_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), -(30422,'woocommerce_email_auto_sync_with_theme','no','off'), -(30423,'woocommerce_feature_rate_limit_checkout_enabled','no','on'), -(30424,'woocommerce_feature_remote_logging_enabled','yes','on'), -(30425,'woocommerce_feature_email_improvements_enabled','no','on'), -(30426,'woocommerce_feature_reactify-classic-payments-settings_enabled','yes','on'), -(30427,'woocommerce_feature_cost_of_goods_sold_enabled','no','on'), -(30437,'new_admin_email','haiku.atelier@gmail.com','auto'), -(30451,'woocommerce_admin_pes_incentive_woopayments_store_had_woopayments','no','auto'), -(30480,'woocommerce_shipping_hide_rates_when_free','no','off'), -(30481,'woocommerce_email_header_image_width','120','on'), -(30482,'woocommerce_email_header_alignment','left','on'), -(30483,'woocommerce_email_font_family','Helvetica','on'), -(30484,'woocommerce_feature_blueprint_enabled','yes','on'), -(30485,'woocommerce_hpos_datastore_caching_enabled','no','on'), -(30486,'woocommerce_feature_block_email_editor_enabled','no','on'), -(30853,'_transient_timeout_woocommerce_analytics_orders_statuses_all','1781339871','off'), -(30854,'_transient_woocommerce_analytics_orders_statuses_all','a:4:{i:0;s:10:\"wc-pending\";i:1;s:13:\"wc-processing\";i:2;s:12:\"wc-completed\";i:3;s:11:\"wc-refunded\";}','off'), -(31724,'_transient_filter_data-transient-version','1750363871','on'), -(32731,'_transient_wc_attribute_taxonomies','a:3:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:4:\"side\";s:15:\"attribute_label\";s:4:\"Side\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:2;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:5:\"stone\";s:15:\"attribute_label\";s:5:\"Stone\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"0\";}}','on'), -(32767,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1750690595;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'), -(32768,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750690595;s:8:\"response\";a:0:{}s:12:\"translations\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"query-monitor\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"3.18.0\";s:7:\"updated\";s:19:\"2024-04-22 15:16:58\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/query-monitor/3.18.0/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"query-monitor\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"3.18.0\";s:7:\"updated\";s:19:\"2025-02-23 13:55:57\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/query-monitor/3.18.0/fr_FR.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"9.9.4\";s:7:\"updated\";s:19:\"2024-10-02 16:14:23\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.9.4/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"9.9.4\";s:7:\"updated\";s:19:\"2022-05-20 05:27:20\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.9.4/fr_BE.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"9.9.4\";s:7:\"updated\";s:19:\"2025-06-20 10:20:52\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/9.9.4/fr_FR.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/wc-multishipping\";s:4:\"slug\";s:16:\"wc-multishipping\";s:6:\"plugin\";s:37:\"wc-multishipping/wc-multishipping.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wc-multishipping/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wc-multishipping.2.5.7.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wc-multishipping/assets/icon-128x128.png?rev=2477036\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:17:\"falcon/falcon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/falcon\";s:4:\"slug\";s:6:\"falcon\";s:6:\"plugin\";s:17:\"falcon/falcon.php\";s:11:\"new_version\";s:5:\"2.8.5\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/falcon/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/falcon.2.8.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";s:3:\"svg\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/falcon/assets/banner-1544x500.png?rev=3052567\";s:2:\"1x\";s:61:\"https://ps.w.org/falcon/assets/banner-772x250.png?rev=3052567\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/force-regenerate-thumbnails\";s:4:\"slug\";s:27:\"force-regenerate-thumbnails\";s:6:\"plugin\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/force-regenerate-thumbnails/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/force-regenerate-thumbnails.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-256x256.jpg?rev=2816275\";s:2:\"1x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-128x128.jpg?rev=2816275\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-1544x500.jpg?rev=2816275\";s:2:\"1x\";s:82:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-772x250.jpg?rev=2816275\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/woo-preview-emails\";s:4:\"slug\";s:18:\"woo-preview-emails\";s:6:\"plugin\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:11:\"new_version\";s:6:\"2.2.14\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/woo-preview-emails/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/woo-preview-emails.2.2.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";s:2:\"1x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.1.0\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.18.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.18.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.9.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}s:25:\"wp-openapi/wp-openapi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-openapi\";s:4:\"slug\";s:10:\"wp-openapi\";s:6:\"plugin\";s:25:\"wp-openapi/wp-openapi.php\";s:11:\"new_version\";s:6:\"1.0.20\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-openapi/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-openapi.1.0.20.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:54:\"https://s.w.org/plugins/geopattern-icon/wp-openapi.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}}s:7:\"checked\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";s:5:\"2.5.7\";s:17:\"falcon/falcon.php\";s:5:\"2.8.5\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:5:\"2.2.2\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:6:\"2.2.14\";s:31:\"query-monitor/query-monitor.php\";s:6:\"3.18.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.4\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.9.5\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:6:\"1.14.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.5.0\";s:25:\"wp-openapi/wp-openapi.php\";s:6:\"1.0.20\";}}','off'), -(32769,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750690595;s:7:\"checked\";a:2:{s:18:\"haiku-atelier-2024\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','off'), -(34088,'recovery_mode_email_last_sent','1762792321','auto'), -(34183,'woocommerce_pos_store_name','Haiku Atelier','on'), -(34184,'woocommerce_pos_store_address','','on'), -(34185,'woocommerce_pos_store_phone','','on'), -(34186,'woocommerce_pos_store_email','haiku.atelier@gmail.com','on'), -(34187,'woocommerce_pos_refund_returns_policy','','on'), -(34188,'woocommerce_feature_point_of_sale_enabled','yes','on'), -(34189,'woocommerce_feature_experimental-iapi-mini-cart_enabled','no','on'), -(34208,'can_compress_scripts','1','on'), -(34250,'woocommerce_address_autocomplete_enabled','no','on'), -(34251,'woocommerce_feature_mcp_integration_enabled','no','on'), -(34253,'woocommerce_feature_destroy-empty-sessions_enabled','no','on'), -(34254,'action_scheduler_migration_status','complete','auto'), -(34255,'as_has_wp_comment_logs','no','on'), -(34261,'woocommerce_attribute_lookup_enabled','yes','auto'), -(34262,'woocommerce_analytics_uses_old_full_refund_data','yes','auto'), -(34264,'woocommerce_orders_report_date_tour_shown','yes','auto'), -(34271,'woocommerce_admin_dismissed_try_email_improvements_modal','yes','auto'); -/*!40000 ALTER TABLE `haikuwp_options` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_postmeta` --- - -DROP TABLE IF EXISTS `haikuwp_postmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_postmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `post_id` (`post_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=16574 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_postmeta` --- - -LOCK TABLES `haikuwp_postmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_postmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_postmeta` VALUES -(22,13,'_edit_last','1'), -(23,13,'_edit_lock','1746463848:1'), -(24,14,'_edit_last','1'), -(25,14,'_edit_lock','1722975574:1'), -(28,16,'_edit_last','1'), -(29,16,'_edit_lock','1722958355:1'), -(30,17,'_edit_last','1'), -(31,17,'_edit_lock','1731277749:1'), -(32,18,'_wp_page_template','default'), -(33,18,'_edit_last','1'), -(34,18,'_edit_lock','1722864017:1'), -(35,19,'_edit_last','1'), -(36,19,'_edit_lock','1732548394:1'), -(71,22,'_variation_description',''), -(72,22,'total_sales','0'), -(73,22,'_tax_status','taxable'), -(74,22,'_tax_class','parent'), -(75,22,'_manage_stock','no'), -(76,22,'_backorders','no'), -(77,22,'_sold_individually','no'), -(78,22,'_virtual','no'), -(79,22,'_downloadable','no'), -(80,22,'_download_limit','-1'), -(81,22,'_download_expiry','-1'), -(82,22,'_stock',NULL), -(83,22,'_stock_status','instock'), -(84,22,'_wc_average_rating','0'), -(85,22,'_wc_review_count','0'), -(86,22,'attribute_matiere','Or'), -(87,22,'_product_version','9.1.4'), -(88,23,'_variation_description',''), -(89,23,'total_sales','0'), -(90,23,'_tax_status','taxable'), -(91,23,'_tax_class','parent'), -(92,23,'_manage_stock','no'), -(93,23,'_backorders','no'), -(94,23,'_sold_individually','no'), -(95,23,'_virtual','no'), -(96,23,'_downloadable','no'), -(97,23,'_download_limit','-1'), -(98,23,'_download_expiry','-1'), -(99,23,'_stock',NULL), -(100,23,'_stock_status','instock'), -(101,23,'_wc_average_rating','0'), -(102,23,'_wc_review_count','0'), -(103,23,'attribute_matiere','Argent'), -(104,23,'_product_version','9.1.4'), -(147,26,'_edit_last','1'), -(148,26,'_edit_lock','1722975540:1'), -(149,27,'_edit_last','1'), -(150,27,'_edit_lock','1722975561:1'), -(915,81,'_wp_attached_file','2024/09/HADOU-B.jpg'), -(916,81,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/09/HADOU-B.jpg\";s:8:\"filesize\";i:40136;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"HADOU-B.jpg\";}'), -(917,81,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), -(1183,100,'_wp_attached_file','2024/09/HADOU-B-mix.jpg'), -(1184,100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/HADOU-B-mix.jpg\";s:8:\"filesize\";i:316713;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-B-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"HADOU-B-mix.jpg\";}'), -(1185,100,'_wp_attachment_image_alt','Hadou wavy silver ring and Kishou signet ring'), -(1194,102,'_sku','HADOU-B-s'), -(1195,102,'total_sales','0'), -(1196,102,'_tax_status','taxable'), -(1197,102,'_tax_class',''), -(1198,102,'_manage_stock','no'), -(1199,102,'_backorders','no'), -(1200,102,'_sold_individually','no'), -(1201,102,'_virtual','no'), -(1202,102,'_downloadable','no'), -(1203,102,'_download_limit','-1'), -(1204,102,'_download_expiry','-1'), -(1205,102,'_thumbnail_id','110'), -(1206,102,'_stock',NULL), -(1207,102,'_stock_status','instock'), -(1208,102,'_wc_average_rating','0'), -(1209,102,'_wc_review_count','0'), -(1210,102,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1211,102,'_product_version','9.4.2'), -(1216,103,'_variation_description',''), -(1217,103,'_regular_price','85'), -(1218,103,'total_sales','0'), -(1219,103,'_tax_status','taxable'), -(1220,103,'_tax_class','parent'), -(1221,103,'_manage_stock','no'), -(1222,103,'_backorders','no'), -(1223,103,'_sold_individually','no'), -(1224,103,'_virtual','no'), -(1225,103,'_downloadable','no'), -(1226,103,'_download_limit','-1'), -(1227,103,'_download_expiry','-1'), -(1228,103,'_thumbnail_id','0'), -(1229,103,'_stock',NULL), -(1230,103,'_stock_status','instock'), -(1231,103,'_wc_average_rating','0'), -(1232,103,'_wc_review_count','0'), -(1233,103,'attribute_pa_size','50'), -(1234,103,'_price','85'), -(1235,103,'_product_version','9.3.3'), -(1236,104,'_variation_description',''), -(1237,104,'_regular_price','85'), -(1238,104,'total_sales','0'), -(1239,104,'_tax_status','taxable'), -(1240,104,'_tax_class','parent'), -(1241,104,'_manage_stock','no'), -(1242,104,'_backorders','no'), -(1243,104,'_sold_individually','no'), -(1244,104,'_virtual','no'), -(1245,104,'_downloadable','no'), -(1246,104,'_download_limit','-1'), -(1247,104,'_download_expiry','-1'), -(1248,104,'_thumbnail_id','0'), -(1249,104,'_stock',NULL), -(1250,104,'_stock_status','instock'), -(1251,104,'_wc_average_rating','0'), -(1252,104,'_wc_review_count','0'), -(1253,104,'attribute_pa_size','52'), -(1254,104,'_price','85'), -(1255,104,'_product_version','9.3.3'), -(1256,105,'_variation_description',''), -(1257,105,'_regular_price','85'), -(1258,105,'total_sales','0'), -(1259,105,'_tax_status','taxable'), -(1260,105,'_tax_class','parent'), -(1261,105,'_manage_stock','no'), -(1262,105,'_backorders','no'), -(1263,105,'_sold_individually','no'), -(1264,105,'_virtual','no'), -(1265,105,'_downloadable','no'), -(1266,105,'_download_limit','-1'), -(1267,105,'_download_expiry','-1'), -(1268,105,'_thumbnail_id','0'), -(1269,105,'_stock',NULL), -(1270,105,'_stock_status','instock'), -(1271,105,'_wc_average_rating','0'), -(1272,105,'_wc_review_count','0'), -(1273,105,'attribute_pa_size','54'), -(1274,105,'_price','85'), -(1275,105,'_product_version','9.3.3'), -(1276,106,'_variation_description',''), -(1277,106,'_regular_price','85'), -(1278,106,'total_sales','0'), -(1279,106,'_tax_status','taxable'), -(1280,106,'_tax_class','parent'), -(1281,106,'_manage_stock','no'), -(1282,106,'_backorders','no'), -(1283,106,'_sold_individually','no'), -(1284,106,'_virtual','no'), -(1285,106,'_downloadable','no'), -(1286,106,'_download_limit','-1'), -(1287,106,'_download_expiry','-1'), -(1288,106,'_thumbnail_id','0'), -(1289,106,'_stock',NULL), -(1290,106,'_stock_status','instock'), -(1291,106,'_wc_average_rating','0'), -(1292,106,'_wc_review_count','0'), -(1293,106,'attribute_pa_size','56'), -(1294,106,'_price','85'), -(1295,106,'_product_version','9.3.3'), -(1296,107,'_variation_description',''), -(1297,107,'_regular_price','85'), -(1298,107,'total_sales','0'), -(1299,107,'_tax_status','taxable'), -(1300,107,'_tax_class','parent'), -(1301,107,'_manage_stock','no'), -(1302,107,'_backorders','no'), -(1303,107,'_sold_individually','no'), -(1304,107,'_virtual','no'), -(1305,107,'_downloadable','no'), -(1306,107,'_download_limit','-1'), -(1307,107,'_download_expiry','-1'), -(1308,107,'_thumbnail_id','0'), -(1309,107,'_stock',NULL), -(1310,107,'_stock_status','instock'), -(1311,107,'_wc_average_rating','0'), -(1312,107,'_wc_review_count','0'), -(1313,107,'attribute_pa_size','58'), -(1314,107,'_price','85'), -(1315,107,'_product_version','9.3.3'), -(1316,108,'_variation_description',''), -(1317,108,'_regular_price','85'), -(1318,108,'total_sales','0'), -(1319,108,'_tax_status','taxable'), -(1320,108,'_tax_class','parent'), -(1321,108,'_manage_stock','no'), -(1322,108,'_backorders','no'), -(1323,108,'_sold_individually','no'), -(1324,108,'_virtual','no'), -(1325,108,'_downloadable','no'), -(1326,108,'_download_limit','-1'), -(1327,108,'_download_expiry','-1'), -(1328,108,'_thumbnail_id','0'), -(1329,108,'_stock',NULL), -(1330,108,'_stock_status','instock'), -(1331,108,'_wc_average_rating','0'), -(1332,108,'_wc_review_count','0'), -(1333,108,'attribute_pa_size','60'), -(1334,108,'_price','85'), -(1335,108,'_product_version','9.3.3'), -(1336,109,'_variation_description',''), -(1337,109,'_regular_price','85'), -(1338,109,'total_sales','0'), -(1339,109,'_tax_status','taxable'), -(1340,109,'_tax_class','parent'), -(1341,109,'_manage_stock','no'), -(1342,109,'_backorders','no'), -(1343,109,'_sold_individually','no'), -(1344,109,'_virtual','no'), -(1345,109,'_downloadable','no'), -(1346,109,'_download_limit','-1'), -(1347,109,'_download_expiry','-1'), -(1348,109,'_thumbnail_id','0'), -(1349,109,'_stock',NULL), -(1350,109,'_stock_status','instock'), -(1351,109,'_wc_average_rating','0'), -(1352,109,'_wc_review_count','0'), -(1353,109,'attribute_pa_size','62'), -(1354,109,'_price','85'), -(1355,109,'_product_version','9.3.3'), -(1357,102,'_edit_lock','1750279209:1'), -(1358,110,'_wp_attached_file','2024/09/IKKAN-B2-arg.jpg'), -(1359,110,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/09/IKKAN-B2-arg.jpg\";s:8:\"filesize\";i:39627;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-B2-arg.jpg\";}'), -(1360,110,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), -(1361,111,'_wp_attached_file','2024/09/IKKAN-B-arg.jpg'), -(1362,111,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/IKKAN-B-arg.jpg\";s:8:\"filesize\";i:90791;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"IKKAN-B-arg.jpg\";}'), -(1363,111,'_wp_attachment_image_alt','Ikkan'), -(1364,112,'_wp_attached_file','2024/09/IKKAN-BaKIGEN-Ba.jpg'), -(1365,112,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/09/IKKAN-BaKIGEN-Ba.jpg\";s:8:\"filesize\";i:237493;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"IKKAN-BaKIGEN-Ba-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"IKKAN-BaKIGEN-Ba.jpg\";}'), -(1366,112,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), -(1369,102,'_edit_last','1'), -(1382,113,'_sku','HADOU-B-g'), -(1383,113,'total_sales','0'), -(1384,113,'_tax_status','taxable'), -(1385,113,'_tax_class',''), -(1386,113,'_manage_stock','no'), -(1387,113,'_backorders','no'), -(1388,113,'_sold_individually','no'), -(1389,113,'_virtual','no'), -(1390,113,'_downloadable','no'), -(1391,113,'_download_limit','-1'), -(1392,113,'_download_expiry','-1'), -(1394,113,'_stock',NULL), -(1395,113,'_stock_status','instock'), -(1396,113,'_wc_average_rating','0'), -(1397,113,'_wc_review_count','0'), -(1398,113,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1399,113,'_product_version','9.4.2'), -(1404,114,'_variation_description',''), -(1405,114,'_regular_price','90'), -(1406,114,'total_sales','0'), -(1407,114,'_tax_status','taxable'), -(1408,114,'_tax_class','parent'), -(1409,114,'_manage_stock','no'), -(1410,114,'_backorders','no'), -(1411,114,'_sold_individually','no'), -(1412,114,'_virtual','no'), -(1413,114,'_downloadable','no'), -(1414,114,'_download_limit','-1'), -(1415,114,'_download_expiry','-1'), -(1416,114,'_thumbnail_id','0'), -(1417,114,'_stock',NULL), -(1418,114,'_stock_status','instock'), -(1419,114,'_wc_average_rating','0'), -(1420,114,'_wc_review_count','0'), -(1421,114,'attribute_pa_size','50'), -(1422,114,'_price','90'), -(1423,114,'_product_version','9.3.3'), -(1424,115,'_variation_description',''), -(1425,115,'_regular_price','90'), -(1426,115,'total_sales','0'), -(1427,115,'_tax_status','taxable'), -(1428,115,'_tax_class','parent'), -(1429,115,'_manage_stock','no'), -(1430,115,'_backorders','no'), -(1431,115,'_sold_individually','no'), -(1432,115,'_virtual','no'), -(1433,115,'_downloadable','no'), -(1434,115,'_download_limit','-1'), -(1435,115,'_download_expiry','-1'), -(1436,115,'_thumbnail_id','0'), -(1437,115,'_stock',NULL), -(1438,115,'_stock_status','instock'), -(1439,115,'_wc_average_rating','0'), -(1440,115,'_wc_review_count','0'), -(1441,115,'attribute_pa_size','52'), -(1442,115,'_price','90'), -(1443,115,'_product_version','9.3.3'), -(1444,116,'_variation_description',''), -(1445,116,'_regular_price','90'), -(1446,116,'total_sales','0'), -(1447,116,'_tax_status','taxable'), -(1448,116,'_tax_class','parent'), -(1449,116,'_manage_stock','no'), -(1450,116,'_backorders','no'), -(1451,116,'_sold_individually','no'), -(1452,116,'_virtual','no'), -(1453,116,'_downloadable','no'), -(1454,116,'_download_limit','-1'), -(1455,116,'_download_expiry','-1'), -(1456,116,'_thumbnail_id','0'), -(1457,116,'_stock',NULL), -(1458,116,'_stock_status','instock'), -(1459,116,'_wc_average_rating','0'), -(1460,116,'_wc_review_count','0'), -(1461,116,'attribute_pa_size','54'), -(1462,116,'_price','90'), -(1463,116,'_product_version','9.3.3'), -(1464,117,'_variation_description',''), -(1465,117,'_regular_price','90'), -(1466,117,'total_sales','0'), -(1467,117,'_tax_status','taxable'), -(1468,117,'_tax_class','parent'), -(1469,117,'_manage_stock','no'), -(1470,117,'_backorders','no'), -(1471,117,'_sold_individually','no'), -(1472,117,'_virtual','no'), -(1473,117,'_downloadable','no'), -(1474,117,'_download_limit','-1'), -(1475,117,'_download_expiry','-1'), -(1476,117,'_thumbnail_id','0'), -(1477,117,'_stock',NULL), -(1478,117,'_stock_status','instock'), -(1479,117,'_wc_average_rating','0'), -(1480,117,'_wc_review_count','0'), -(1481,117,'attribute_pa_size','56'), -(1482,117,'_price','90'), -(1483,117,'_product_version','9.3.3'), -(1484,118,'_variation_description',''), -(1485,118,'_regular_price','90'), -(1486,118,'total_sales','0'), -(1487,118,'_tax_status','taxable'), -(1488,118,'_tax_class','parent'), -(1489,118,'_manage_stock','no'), -(1490,118,'_backorders','no'), -(1491,118,'_sold_individually','no'), -(1492,118,'_virtual','no'), -(1493,118,'_downloadable','no'), -(1494,118,'_download_limit','-1'), -(1495,118,'_download_expiry','-1'), -(1496,118,'_thumbnail_id','0'), -(1497,118,'_stock',NULL), -(1498,118,'_stock_status','instock'), -(1499,118,'_wc_average_rating','0'), -(1500,118,'_wc_review_count','0'), -(1501,118,'attribute_pa_size','58'), -(1502,118,'_price','90'), -(1503,118,'_product_version','9.3.3'), -(1504,119,'_variation_description',''), -(1505,119,'_regular_price','90'), -(1506,119,'total_sales','0'), -(1507,119,'_tax_status','taxable'), -(1508,119,'_tax_class','parent'), -(1509,119,'_manage_stock','no'), -(1510,119,'_backorders','no'), -(1511,119,'_sold_individually','no'), -(1512,119,'_virtual','no'), -(1513,119,'_downloadable','no'), -(1514,119,'_download_limit','-1'), -(1515,119,'_download_expiry','-1'), -(1516,119,'_thumbnail_id','0'), -(1517,119,'_stock',NULL), -(1518,119,'_stock_status','instock'), -(1519,119,'_wc_average_rating','0'), -(1520,119,'_wc_review_count','0'), -(1521,119,'attribute_pa_size','60'), -(1522,119,'_price','90'), -(1523,119,'_product_version','9.3.3'), -(1524,120,'_variation_description',''), -(1525,120,'_regular_price','90'), -(1526,120,'total_sales','0'), -(1527,120,'_tax_status','taxable'), -(1528,120,'_tax_class','parent'), -(1529,120,'_manage_stock','no'), -(1530,120,'_backorders','no'), -(1531,120,'_sold_individually','no'), -(1532,120,'_virtual','no'), -(1533,120,'_downloadable','no'), -(1534,120,'_download_limit','-1'), -(1535,120,'_download_expiry','-1'), -(1536,120,'_thumbnail_id','0'), -(1537,120,'_stock',NULL), -(1538,120,'_stock_status','instock'), -(1539,120,'_wc_average_rating','0'), -(1540,120,'_wc_review_count','0'), -(1541,120,'attribute_pa_size','62'), -(1542,120,'_price','90'), -(1543,120,'_product_version','9.3.3'), -(1545,113,'_edit_lock','1732521826:1'), -(1549,122,'_wp_attached_file','2024/09/IKKAN-B-g.jpg'), -(1550,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/IKKAN-B-g.jpg\";s:8:\"filesize\";i:575848;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(1551,122,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top'), -(1554,113,'_edit_last','1'), -(1724,132,'_wp_attached_file','2024/09/DSC9928.jpg'), -(1725,132,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9928.jpg\";s:8:\"filesize\";i:329984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9928-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9928.jpg\";}'), -(1726,132,'_wp_attachment_image_alt','Piasu wide ring in sterling silver with three small rings on top, one in 18k gold'), -(1736,133,'_sku','KARA-B'), -(1737,133,'total_sales','0'), -(1738,133,'_tax_status','taxable'), -(1739,133,'_tax_class',''), -(1740,133,'_manage_stock','no'), -(1741,133,'_backorders','no'), -(1742,133,'_sold_individually','no'), -(1743,133,'_virtual','no'), -(1744,133,'_downloadable','no'), -(1745,133,'_download_limit','-1'), -(1746,133,'_download_expiry','-1'), -(1748,133,'_stock',NULL), -(1749,133,'_stock_status','outofstock'), -(1750,133,'_wc_average_rating','0'), -(1751,133,'_wc_review_count','0'), -(1752,133,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(1753,133,'_product_version','10.1.0'), -(1757,134,'_variation_description',''), -(1758,134,'_regular_price','95'), -(1759,134,'total_sales','0'), -(1760,134,'_tax_status','taxable'), -(1761,134,'_tax_class','parent'), -(1762,134,'_manage_stock','no'), -(1763,134,'_backorders','no'), -(1764,134,'_sold_individually','no'), -(1765,134,'_virtual','no'), -(1766,134,'_downloadable','no'), -(1767,134,'_download_limit','-1'), -(1768,134,'_download_expiry','-1'), -(1769,134,'_thumbnail_id','0'), -(1770,134,'_stock',NULL), -(1771,134,'_stock_status','outofstock'), -(1772,134,'_wc_average_rating','0'), -(1773,134,'_wc_review_count','0'), -(1774,134,'attribute_pa_size','50'), -(1775,134,'_price','95'), -(1776,134,'_product_version','10.1.0'), -(1777,135,'_variation_description',''), -(1778,135,'_regular_price','95'), -(1779,135,'total_sales','0'), -(1780,135,'_tax_status','taxable'), -(1781,135,'_tax_class','parent'), -(1782,135,'_manage_stock','no'), -(1783,135,'_backorders','no'), -(1784,135,'_sold_individually','no'), -(1785,135,'_virtual','no'), -(1786,135,'_downloadable','no'), -(1787,135,'_download_limit','-1'), -(1788,135,'_download_expiry','-1'), -(1789,135,'_thumbnail_id','0'), -(1790,135,'_stock',NULL), -(1791,135,'_stock_status','outofstock'), -(1792,135,'_wc_average_rating','0'), -(1793,135,'_wc_review_count','0'), -(1794,135,'attribute_pa_size','52'), -(1795,135,'_price','95'), -(1796,135,'_product_version','10.1.0'), -(1797,136,'_variation_description',''), -(1798,136,'_regular_price','95'), -(1799,136,'total_sales','0'), -(1800,136,'_tax_status','taxable'), -(1801,136,'_tax_class','parent'), -(1802,136,'_manage_stock','no'), -(1803,136,'_backorders','no'), -(1804,136,'_sold_individually','no'), -(1805,136,'_virtual','no'), -(1806,136,'_downloadable','no'), -(1807,136,'_download_limit','-1'), -(1808,136,'_download_expiry','-1'), -(1809,136,'_thumbnail_id','0'), -(1810,136,'_stock',NULL), -(1811,136,'_stock_status','outofstock'), -(1812,136,'_wc_average_rating','0'), -(1813,136,'_wc_review_count','0'), -(1814,136,'attribute_pa_size','54'), -(1815,136,'_price','95'), -(1816,136,'_product_version','10.1.0'), -(1817,137,'_variation_description',''), -(1818,137,'_regular_price','95'), -(1819,137,'total_sales','0'), -(1820,137,'_tax_status','taxable'), -(1821,137,'_tax_class','parent'), -(1822,137,'_manage_stock','no'), -(1823,137,'_backorders','no'), -(1824,137,'_sold_individually','no'), -(1825,137,'_virtual','no'), -(1826,137,'_downloadable','no'), -(1827,137,'_download_limit','-1'), -(1828,137,'_download_expiry','-1'), -(1829,137,'_thumbnail_id','0'), -(1830,137,'_stock',NULL), -(1831,137,'_stock_status','outofstock'), -(1832,137,'_wc_average_rating','0'), -(1833,137,'_wc_review_count','0'), -(1834,137,'attribute_pa_size','56'), -(1835,137,'_price','95'), -(1836,137,'_product_version','10.1.0'), -(1837,138,'_variation_description',''), -(1838,138,'_regular_price','95'), -(1839,138,'total_sales','0'), -(1840,138,'_tax_status','taxable'), -(1841,138,'_tax_class','parent'), -(1842,138,'_manage_stock','no'), -(1843,138,'_backorders','no'), -(1844,138,'_sold_individually','no'), -(1845,138,'_virtual','no'), -(1846,138,'_downloadable','no'), -(1847,138,'_download_limit','-1'), -(1848,138,'_download_expiry','-1'), -(1849,138,'_thumbnail_id','0'), -(1850,138,'_stock',NULL), -(1851,138,'_stock_status','outofstock'), -(1852,138,'_wc_average_rating','0'), -(1853,138,'_wc_review_count','0'), -(1854,138,'attribute_pa_size','58'), -(1855,138,'_price','95'), -(1856,138,'_product_version','10.1.0'), -(1857,139,'_variation_description',''), -(1858,139,'_regular_price','95'), -(1859,139,'total_sales','0'), -(1860,139,'_tax_status','taxable'), -(1861,139,'_tax_class','parent'), -(1862,139,'_manage_stock','no'), -(1863,139,'_backorders','no'), -(1864,139,'_sold_individually','no'), -(1865,139,'_virtual','no'), -(1866,139,'_downloadable','no'), -(1867,139,'_download_limit','-1'), -(1868,139,'_download_expiry','-1'), -(1869,139,'_thumbnail_id','0'), -(1870,139,'_stock',NULL), -(1871,139,'_stock_status','outofstock'), -(1872,139,'_wc_average_rating','0'), -(1873,139,'_wc_review_count','0'), -(1874,139,'attribute_pa_size','60'), -(1875,139,'_price','95'), -(1876,139,'_product_version','10.1.0'), -(1877,140,'_variation_description',''), -(1878,140,'_regular_price','95'), -(1879,140,'total_sales','0'), -(1880,140,'_tax_status','taxable'), -(1881,140,'_tax_class','parent'), -(1882,140,'_manage_stock','no'), -(1883,140,'_backorders','no'), -(1884,140,'_sold_individually','no'), -(1885,140,'_virtual','no'), -(1886,140,'_downloadable','no'), -(1887,140,'_download_limit','-1'), -(1888,140,'_download_expiry','-1'), -(1889,140,'_thumbnail_id','0'), -(1890,140,'_stock',NULL), -(1891,140,'_stock_status','outofstock'), -(1892,140,'_wc_average_rating','0'), -(1893,140,'_wc_review_count','0'), -(1894,140,'attribute_pa_size','62'), -(1895,140,'_price','95'), -(1896,140,'_product_version','10.1.0'), -(1898,133,'_edit_lock','1755761533:1'), -(1902,142,'_wp_attached_file','2024/09/DSC9269.jpg'), -(1903,142,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9269.jpg\";s:8:\"filesize\";i:230822;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9269-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9269.jpg\";}'), -(1904,142,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(1905,143,'_wp_attached_file','2024/09/DSC9148.jpg'), -(1906,143,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9148.jpg\";s:8:\"filesize\";i:216029;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9148-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9148.jpg\";}'), -(1907,143,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(1910,133,'_edit_last','1'), -(2087,154,'_wp_attached_file','2024/10/KIGEN-BaIKKANBa.jpg'), -(2088,154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/KIGEN-BaIKKANBa.jpg\";s:8:\"filesize\";i:228219;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"KIGEN-BaIKKANBa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12630;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"KIGEN-BaIKKANBa.jpg\";}'), -(2090,154,'_wp_attachment_image_alt','Kishou signet ring in silver, with three engrave lines'), -(2272,165,'_wp_attached_file','2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg'), -(2273,165,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";s:8:\"filesize\";i:262084;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";}'), -(2274,165,'_wp_attachment_image_alt','Kishou signet ring in gold plated silver, with three engrave lines'), -(2282,166,'_wp_attached_file','2024/09/DSC9760.jpg'), -(2283,166,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9760.jpg\";s:8:\"filesize\";i:352950;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9760-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9760.jpg\";}'), -(2284,166,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(2285,167,'_wp_attached_file','2024/09/DSC9339.jpg'), -(2286,167,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9339.jpg\";s:8:\"filesize\";i:257752;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9339-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9339.jpg\";}'), -(2287,167,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(2294,168,'_sku','Rokku-B'), -(2295,168,'total_sales','2'), -(2296,168,'_tax_status','taxable'), -(2297,168,'_tax_class',''), -(2298,168,'_manage_stock','no'), -(2299,168,'_backorders','no'), -(2300,168,'_sold_individually','no'), -(2301,168,'_virtual','no'), -(2302,168,'_downloadable','no'), -(2303,168,'_download_limit','-1'), -(2304,168,'_download_expiry','-1'), -(2306,168,'_stock',NULL), -(2307,168,'_stock_status','instock'), -(2308,168,'_wc_average_rating','0'), -(2309,168,'_wc_review_count','0'), -(2310,168,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2311,168,'_product_version','9.9.3'), -(2457,168,'_edit_lock','1750279422:1'), -(2461,177,'_wp_attached_file','2024/10/ROKKU-B-malachite-1.jpg'), -(2462,177,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-B-malachite-1.jpg\";s:8:\"filesize\";i:85733;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-B-malachite-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"ROKKU-B-malachite-1.jpg\";}'), -(2463,177,'_wp_attachment_image_alt',''), -(2464,178,'_wp_attached_file','2024/10/ROKKU-B-tigereye.jpg'), -(2465,178,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/ROKKU-B-tigereye.jpg\";s:8:\"filesize\";i:51905;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"ROKKU-B-tigereye.jpg\";}'), -(2466,178,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2467,179,'_wp_attached_file','2024/10/ROKKU-B-tigereye-1.jpg'), -(2468,179,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-B-tigereye-1.jpg\";s:8:\"filesize\";i:87699;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-B-tigereye-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"ROKKU-B-tigereye-1.jpg\";}'), -(2469,179,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2470,180,'_wp_attached_file','2024/10/DSC9710.jpg'), -(2471,180,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9710.jpg\";s:8:\"filesize\";i:421874;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9710-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9710.jpg\";}'), -(2472,180,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), -(2475,182,'_wp_attached_file','2024/10/DSC9190.jpg'), -(2476,182,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9190.jpg\";s:8:\"filesize\";i:229655;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9190-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9190.jpg\";}'), -(2477,182,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), -(2480,168,'_edit_last','1'), -(2488,183,'_sku','BOROBORO-BO2-s'), -(2489,183,'total_sales','1'), -(2490,183,'_tax_status','taxable'), -(2491,183,'_tax_class',''), -(2492,183,'_manage_stock','no'), -(2493,183,'_backorders','no'), -(2494,183,'_sold_individually','no'), -(2495,183,'_virtual','no'), -(2496,183,'_downloadable','no'), -(2497,183,'_download_limit','-1'), -(2498,183,'_download_expiry','-1'), -(2500,183,'_stock',NULL), -(2501,183,'_stock_status','instock'), -(2502,183,'_wc_average_rating','0'), -(2503,183,'_wc_review_count','0'), -(2504,183,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2505,183,'_product_version','10.3.4'), -(2654,183,'_edit_lock','1764165413:1'), -(2772,199,'_wp_attached_file','2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg'), -(2773,199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:42:\"2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg\";s:8:\"filesize\";i:236038;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"BOROBORO-BOaTANEMAKI-BO1a-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19871;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(2775,199,'_wp_attachment_image_alt','Boroboro long silver earrings. right side'), -(2790,183,'_edit_last','1'), -(2805,200,'_variation_description',''), -(2806,200,'total_sales','0'), -(2807,200,'_tax_status','taxable'), -(2808,200,'_tax_class','parent'), -(2809,200,'_manage_stock','no'), -(2810,200,'_backorders','no'), -(2811,200,'_sold_individually','no'), -(2812,200,'_virtual','no'), -(2813,200,'_downloadable','no'), -(2814,200,'_download_limit','-1'), -(2815,200,'_download_expiry','-1'), -(2816,200,'_stock',NULL), -(2817,200,'_stock_status','instock'), -(2818,200,'_wc_average_rating','0'), -(2819,200,'_wc_review_count','0'), -(2820,200,'attribute_pa_stone','malachite'), -(2821,200,'_product_version','9.9.3'), -(2822,201,'_variation_description',''), -(2823,201,'total_sales','0'), -(2824,201,'_tax_status','taxable'), -(2825,201,'_tax_class','parent'), -(2826,201,'_manage_stock','no'), -(2827,201,'_backorders','no'), -(2828,201,'_sold_individually','no'), -(2829,201,'_virtual','no'), -(2830,201,'_downloadable','no'), -(2831,201,'_download_limit','-1'), -(2832,201,'_download_expiry','-1'), -(2833,201,'_stock',NULL), -(2834,201,'_stock_status','instock'), -(2835,201,'_wc_average_rating','0'), -(2836,201,'_wc_review_count','0'), -(2837,201,'attribute_pa_stone','tiger-eye'), -(2838,201,'_product_version','9.9.3'), -(2839,200,'_regular_price','100'), -(2841,200,'_price','100'), -(2842,201,'_regular_price','110'), -(2843,201,'_thumbnail_id','178'), -(2844,201,'_price','110'), -(2854,202,'_sku','PIASU-BO2'), -(2855,202,'total_sales','7'), -(2856,202,'_tax_status','taxable'), -(2857,202,'_tax_class',''), -(2858,202,'_manage_stock','no'), -(2859,202,'_backorders','no'), -(2860,202,'_sold_individually','no'), -(2861,202,'_virtual','no'), -(2862,202,'_downloadable','no'), -(2863,202,'_download_limit','-1'), -(2864,202,'_download_expiry','-1'), -(2865,202,'_thumbnail_id','1485'), -(2866,202,'_stock',NULL), -(2867,202,'_stock_status','instock'), -(2868,202,'_wc_average_rating','0'), -(2869,202,'_wc_review_count','0'), -(2870,202,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2871,202,'_product_version','10.3.4'), -(2941,202,'_edit_lock','1764146287:1'), -(2942,206,'_wp_attached_file','2024/10/PIASU-BO.jpg'), -(2943,206,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/10/PIASU-BO.jpg\";s:8:\"filesize\";i:56620;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"PIASU-BO.jpg\";}'), -(2944,206,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), -(2956,202,'_edit_last','1'), -(2977,213,'_sku','BOROBORO-BO2-g'), -(2978,213,'total_sales','1'), -(2979,213,'_tax_status','taxable'), -(2980,213,'_tax_class',''), -(2981,213,'_manage_stock','no'), -(2982,213,'_backorders','no'), -(2983,213,'_sold_individually','no'), -(2984,213,'_virtual','no'), -(2985,213,'_downloadable','no'), -(2986,213,'_download_limit','-1'), -(2987,213,'_download_expiry','-1'), -(2989,213,'_stock',NULL), -(2990,213,'_stock_status','instock'), -(2991,213,'_wc_average_rating','0'), -(2992,213,'_wc_review_count','0'), -(2993,213,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(2994,213,'_product_version','10.3.4'), -(3064,213,'_edit_lock','1764165371:1'), -(3070,213,'_edit_last','1'), -(3440,240,'_sku','IKKAN-BR-s'), -(3441,240,'total_sales','0'), -(3442,240,'_tax_status','taxable'), -(3443,240,'_tax_class',''), -(3444,240,'_manage_stock','no'), -(3445,240,'_backorders','no'), -(3446,240,'_sold_individually','no'), -(3447,240,'_virtual','no'), -(3448,240,'_downloadable','no'), -(3449,240,'_download_limit','-1'), -(3450,240,'_download_expiry','-1'), -(3451,240,'_thumbnail_id','243'), -(3452,240,'_stock',NULL), -(3453,240,'_stock_status','outofstock'), -(3454,240,'_wc_average_rating','0'), -(3455,240,'_wc_review_count','0'), -(3456,240,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(3457,240,'_product_version','10.1.0'), -(3461,241,'_variation_description',''), -(3462,241,'_sku','IKKAN-BR-s-1'), -(3463,241,'_regular_price','80'), -(3464,241,'total_sales','0'), -(3465,241,'_tax_status','taxable'), -(3466,241,'_tax_class','parent'), -(3467,241,'_manage_stock','no'), -(3468,241,'_backorders','no'), -(3469,241,'_sold_individually','no'), -(3470,241,'_virtual','no'), -(3471,241,'_downloadable','no'), -(3472,241,'_download_limit','-1'), -(3473,241,'_download_expiry','-1'), -(3474,241,'_thumbnail_id','243'), -(3475,241,'_stock',NULL), -(3476,241,'_stock_status','outofstock'), -(3477,241,'_wc_average_rating','0'), -(3478,241,'_wc_review_count','0'), -(3479,241,'attribute_pa_size','size-1'), -(3480,241,'_price','80'), -(3481,241,'_product_version','10.1.0'), -(3482,242,'_variation_description',''), -(3483,242,'_sku','IKKAN-BR-s-2'), -(3484,242,'_regular_price','80'), -(3485,242,'total_sales','0'), -(3486,242,'_tax_status','taxable'), -(3487,242,'_tax_class','parent'), -(3488,242,'_manage_stock','no'), -(3489,242,'_backorders','no'), -(3490,242,'_sold_individually','no'), -(3491,242,'_virtual','no'), -(3492,242,'_downloadable','no'), -(3493,242,'_download_limit','-1'), -(3494,242,'_download_expiry','-1'), -(3495,242,'_thumbnail_id','243'), -(3496,242,'_stock',NULL), -(3497,242,'_stock_status','outofstock'), -(3498,242,'_wc_average_rating','0'), -(3499,242,'_wc_review_count','0'), -(3500,242,'attribute_pa_size','size-2'), -(3501,242,'_price','80'), -(3502,242,'_product_version','10.1.0'), -(3504,240,'_edit_lock','1755679894:1'), -(3505,243,'_wp_attached_file','2024/10/IKKAN-BR-arg.jpg'), -(3506,243,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-arg.jpg\";s:8:\"filesize\";i:51107;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6101;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IKKAN-BR-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6101;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-arg.jpg\";}'), -(3507,243,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3508,244,'_wp_attached_file','2024/10/IKKAN-BR-s.jpg'), -(3509,244,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-s.jpg\";s:8:\"filesize\";i:438743;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-s.jpg\";}'), -(3510,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3511,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3512,245,'_wp_attached_file','2024/10/IKKAN-BR-s-1.jpg'), -(3513,245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-s-1.jpg\";s:8:\"filesize\";i:536594;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-s-1.jpg\";}'), -(3514,245,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), -(3516,240,'_edit_last','1'), -(3587,249,'_wp_attached_file','2024/10/IKKAN-BR-vrm.jpg'), -(3588,249,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-vrm.jpg\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-vrm.jpg\";}'), -(3589,249,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), -(3590,250,'_wp_attached_file','2024/10/IKKAN-BR-g.jpg'), -(3591,250,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-g.jpg\";s:8:\"filesize\";i:187089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-g.jpg\";}'), -(3592,250,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), -(3669,255,'_wp_attached_file','2024/10/TANEMAKI-BR-1.jpg'), -(3670,255,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2835;s:6:\"height\";i:2835;s:4:\"file\";s:25:\"2024/10/TANEMAKI-BR-1.jpg\";s:8:\"filesize\";i:514458;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TANEMAKI-BR-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"TANEMAKI-BR-1.jpg\";}'), -(3671,255,'_wp_attachment_image_alt',''), -(3713,258,'_sku','FUYOU-BR-s'), -(3714,258,'_regular_price','75'), -(3715,258,'total_sales','0'), -(3716,258,'_tax_status','taxable'), -(3717,258,'_tax_class',''), -(3718,258,'_manage_stock','no'), -(3719,258,'_backorders','no'), -(3720,258,'_sold_individually','no'), -(3721,258,'_virtual','no'), -(3722,258,'_downloadable','no'), -(3723,258,'_download_limit','-1'), -(3724,258,'_download_expiry','-1'), -(3726,258,'_stock',NULL), -(3727,258,'_stock_status','instock'), -(3728,258,'_wc_average_rating','0'), -(3729,258,'_wc_review_count','0'), -(3730,258,'_product_version','9.9.5'), -(3731,258,'_price','75'), -(3735,258,'_edit_lock','1764174362:1'), -(3742,258,'_edit_last','1'), -(3782,263,'_sku','IKKAN-C'), -(3783,263,'_regular_price','100'), -(3784,263,'total_sales','1'), -(3785,263,'_tax_status','taxable'), -(3786,263,'_tax_class',''), -(3787,263,'_manage_stock','no'), -(3788,263,'_backorders','no'), -(3789,263,'_sold_individually','no'), -(3790,263,'_virtual','no'), -(3791,263,'_downloadable','no'), -(3792,263,'_download_limit','-1'), -(3793,263,'_download_expiry','-1'), -(3795,263,'_stock',NULL), -(3796,263,'_stock_status','instock'), -(3797,263,'_wc_average_rating','0'), -(3798,263,'_wc_review_count','0'), -(3799,263,'_product_version','10.1.0'), -(3800,263,'_price','100'), -(3804,263,'_edit_lock','1757145921:1'), -(3817,263,'_edit_last','1'), -(3828,268,'_sku','PIASU-C'), -(3829,268,'_regular_price','100'), -(3830,268,'total_sales','0'), -(3831,268,'_tax_status','taxable'), -(3832,268,'_tax_class',''), -(3833,268,'_manage_stock','no'), -(3834,268,'_backorders','no'), -(3835,268,'_sold_individually','no'), -(3836,268,'_virtual','no'), -(3837,268,'_downloadable','no'), -(3838,268,'_download_limit','-1'), -(3839,268,'_download_expiry','-1'), -(3841,268,'_stock',NULL), -(3842,268,'_stock_status','instock'), -(3843,268,'_wc_average_rating','0'), -(3844,268,'_wc_review_count','0'), -(3845,268,'_product_version','9.9.3'), -(3846,268,'_price','100'), -(3852,268,'_edit_lock','1750278425:1'), -(3856,270,'_wp_attached_file','2024/10/PIASU-C-arg-opti.jpg'), -(3857,270,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/10/PIASU-C-arg-opti.jpg\";s:8:\"filesize\";i:266103;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"PIASU-C-arg-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"PIASU-C-arg-opti.jpg\";}'), -(3858,270,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), -(3859,268,'_edit_last','1'), -(3889,273,'_wp_attached_file','2024/10/TANEMAKI-C.jpg'), -(3890,273,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/TANEMAKI-C.jpg\";s:8:\"filesize\";i:498528;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TANEMAKI-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"TANEMAKI-C.jpg\";}'), -(3891,273,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), -(3899,274,'_sku','FUYOU-C'), -(3900,274,'_regular_price','125'), -(3901,274,'total_sales','3'), -(3902,274,'_tax_status','taxable'), -(3903,274,'_tax_class',''), -(3904,274,'_manage_stock','no'), -(3905,274,'_backorders','no'), -(3906,274,'_sold_individually','no'), -(3907,274,'_virtual','no'), -(3908,274,'_downloadable','no'), -(3909,274,'_download_limit','-1'), -(3910,274,'_download_expiry','-1'), -(3911,274,'_thumbnail_id','1382'), -(3912,274,'_stock',NULL), -(3913,274,'_stock_status','instock'), -(3914,274,'_wc_average_rating','0'), -(3915,274,'_wc_review_count','0'), -(3916,274,'_product_version','10.3.4'), -(3917,274,'_price','125'), -(3921,274,'_edit_lock','1764544081:1'), -(3925,274,'_edit_last','1'), -(4071,285,'_sku','HATTARI-CR2-s'), -(4073,285,'total_sales','3'), -(4074,285,'_tax_status','taxable'), -(4075,285,'_tax_class',''), -(4076,285,'_manage_stock','no'), -(4077,285,'_backorders','no'), -(4078,285,'_sold_individually','no'), -(4079,285,'_virtual','no'), -(4080,285,'_downloadable','no'), -(4081,285,'_download_limit','-1'), -(4082,285,'_download_expiry','-1'), -(4084,285,'_stock',NULL), -(4085,285,'_stock_status','instock'), -(4086,285,'_wc_average_rating','0'), -(4087,285,'_wc_review_count','0'), -(4088,285,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4089,285,'_product_version','10.1.0'), -(4094,285,'_edit_lock','1764543361:1'), -(4098,287,'_wp_attached_file','2024/10/HATTARI-CR1-s-1.jpg'), -(4099,287,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/HATTARI-CR1-s-1.jpg\";s:8:\"filesize\";i:323619;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HATTARI-CR1-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15492;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"HATTARI-CR1-s-1.jpg\";}'), -(4100,287,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver'), -(4101,285,'_edit_last','1'), -(4105,288,'_sku','HATTARI-CR2-g'), -(4107,288,'total_sales','3'), -(4108,288,'_tax_status','taxable'), -(4109,288,'_tax_class',''), -(4110,288,'_manage_stock','no'), -(4111,288,'_backorders','no'), -(4112,288,'_sold_individually','no'), -(4113,288,'_virtual','no'), -(4114,288,'_downloadable','no'), -(4115,288,'_download_limit','-1'), -(4116,288,'_download_expiry','-1'), -(4118,288,'_stock',NULL), -(4119,288,'_stock_status','instock'), -(4120,288,'_wc_average_rating','0'), -(4121,288,'_wc_review_count','0'), -(4122,288,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4123,288,'_product_version','10.3.4'), -(4128,288,'_edit_lock','1764542601:1'), -(4132,290,'_wp_attached_file','2024/10/DSC9336.jpg'), -(4133,290,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9336.jpg\";s:8:\"filesize\";i:280534;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9336-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9336.jpg\";}'), -(4134,290,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(4135,288,'_edit_last','1'), -(4381,306,'_sku','TAMANORI-CR-s'), -(4382,306,'total_sales','6'), -(4383,306,'_tax_status','taxable'), -(4384,306,'_tax_class',''), -(4385,306,'_manage_stock','no'), -(4386,306,'_backorders','no'), -(4387,306,'_sold_individually','no'), -(4388,306,'_virtual','no'), -(4389,306,'_downloadable','no'), -(4390,306,'_download_limit','-1'), -(4391,306,'_download_expiry','-1'), -(4392,306,'_thumbnail_id','310'), -(4393,306,'_stock',NULL), -(4394,306,'_stock_status','instock'), -(4395,306,'_wc_average_rating','0'), -(4396,306,'_wc_review_count','0'), -(4397,306,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4398,306,'_product_version','9.4.1'), -(4467,306,'_edit_lock','1732523141:1'), -(4468,310,'_wp_attached_file','2024/10/TAMANORI-CR2-arg.jpg'), -(4469,310,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-arg.jpg\";s:8:\"filesize\";i:33849;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"TAMANORI-CR2-arg.jpg\";}'), -(4470,310,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(4471,311,'_wp_attached_file','2024/10/DSC9378.jpg'), -(4472,311,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9378.jpg\";s:8:\"filesize\";i:270951;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9378-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9378.jpg\";}'), -(4473,311,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(4477,306,'_edit_last','1'), -(4481,312,'_sku','TAMANORI-CR-g'), -(4482,312,'total_sales','1'), -(4483,312,'_tax_status','taxable'), -(4484,312,'_tax_class',''), -(4485,312,'_manage_stock','no'), -(4486,312,'_backorders','no'), -(4487,312,'_sold_individually','no'), -(4488,312,'_virtual','no'), -(4489,312,'_downloadable','no'), -(4490,312,'_download_limit','-1'), -(4491,312,'_download_expiry','-1'), -(4493,312,'_stock',NULL), -(4494,312,'_stock_status','instock'), -(4495,312,'_wc_average_rating','0'), -(4496,312,'_wc_review_count','0'), -(4497,312,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(4498,312,'_product_version','9.4.2'), -(4568,312,'_edit_lock','1764165067:1'), -(4572,317,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm-1.jpg'), -(4573,317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2440;s:6:\"height\";i:2440;s:4:\"file\";s:30:\"2024/10/TAMANORI-CR2-vrm-1.jpg\";s:8:\"filesize\";i:408918;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"TAMANORI-CR2-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4574,317,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(4578,312,'_edit_last','1'), -(4585,318,'_sku','FUYOU-CR'), -(4586,318,'total_sales','3'), -(4587,318,'_tax_status','taxable'), -(4588,318,'_tax_class',''), -(4589,318,'_manage_stock','no'), -(4590,318,'_backorders','no'), -(4591,318,'_sold_individually','no'), -(4592,318,'_virtual','no'), -(4593,318,'_downloadable','no'), -(4594,318,'_download_limit','-1'), -(4595,318,'_download_expiry','-1'), -(4597,318,'_stock',NULL), -(4598,318,'_stock_status','instock'), -(4599,318,'_wc_average_rating','0'), -(4600,318,'_wc_review_count','0'), -(4602,318,'_product_version','10.1.0'), -(4669,318,'_price','45'), -(4670,318,'_price','45'), -(4671,318,'_price','45'), -(4672,318,'_edit_lock','1755854214:1'), -(4676,323,'_wp_attached_file','2024/10/FUYOU-CR.jpg'), -(4677,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/FUYOU-CR.jpg\";s:8:\"filesize\";i:546040;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-CR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4678,323,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), -(4679,324,'_wp_attached_file','2024/10/DSC9542.jpg'), -(4680,324,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9542.jpg\";s:8:\"filesize\";i:438169;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9542-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18806;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9542.jpg\";}'), -(4681,324,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), -(4682,318,'_edit_last','1'), -(4683,318,'_regular_price','45'), -(4736,326,'_wp_attached_file','2024/10/HADOU-EC-arg.jpg'), -(4737,326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-arg.jpg\";s:8:\"filesize\";i:27956;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-arg.jpg\";}'), -(4738,326,'_wp_attachment_image_alt','Hadou earcuff in sterling silver.'), -(4739,327,'_wp_attached_file','2024/10/HADOU-EC.jpg'), -(4740,327,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/HADOU-EC.jpg\";s:8:\"filesize\";i:355588;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"HADOU-EC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"HADOU-EC.jpg\";}'), -(4741,327,'_wp_attachment_image_alt','Hadou earcuff in sterling silver'), -(4769,329,'_wp_attached_file','2024/10/HADOU-EC-vrm.jpg'), -(4770,329,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-vrm.jpg\";s:8:\"filesize\";i:28932;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-vrm.jpg\";}'), -(4771,329,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), -(4772,330,'_wp_attached_file','2024/10/HADOU-EC-vrm-1.jpg'), -(4773,330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/HADOU-EC-vrm-1.jpg\";s:8:\"filesize\";i:223978;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"HADOU-EC-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"HADOU-EC-vrm-1.jpg\";}'), -(4774,330,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), -(4876,339,'_wp_attached_file','2024/10/PIASU-BRC.jpg'), -(4877,339,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/PIASU-BRC.jpg\";s:8:\"filesize\";i:38982;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"PIASU-BRC.jpg\";}'), -(4878,339,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4879,340,'_wp_attached_file','2024/10/PIASU-BRC-1.jpg'), -(4880,340,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-1.jpg\";s:8:\"filesize\";i:237100;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-1.jpg\";}'), -(4881,340,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4882,341,'_wp_attached_file','2024/10/PIASU-BRC-2.jpg'), -(4883,341,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-2.jpg\";s:8:\"filesize\";i:326181;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10210;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-2.jpg\";}'), -(4884,341,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), -(4981,347,'_wp_attached_file','2024/10/DSC9763.jpg'), -(4982,347,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9763.jpg\";s:8:\"filesize\";i:402127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9763-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19294;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9763.jpg\";}'), -(4983,347,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(4984,348,'_wp_attached_file','2024/10/DSC9781.jpg'), -(4985,348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1919;s:4:\"file\";s:19:\"2024/10/DSC9781.jpg\";s:8:\"filesize\";i:372455;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9781-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(4986,348,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(4987,349,'_wp_attached_file','2024/10/DSC9748.jpg'), -(4988,349,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9748.jpg\";s:8:\"filesize\";i:421413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9748-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9748.jpg\";}'), -(4989,349,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(5608,385,'_sku','ROKKU-C'), -(5610,385,'total_sales','0'), -(5611,385,'_tax_status','taxable'), -(5612,385,'_tax_class',''), -(5613,385,'_manage_stock','no'), -(5614,385,'_backorders','no'), -(5615,385,'_sold_individually','no'), -(5616,385,'_virtual','no'), -(5617,385,'_downloadable','no'), -(5618,385,'_download_limit','-1'), -(5619,385,'_download_expiry','-1'), -(5621,385,'_stock',NULL), -(5622,385,'_stock_status','instock'), -(5623,385,'_wc_average_rating','0'), -(5624,385,'_wc_review_count','0'), -(5625,385,'_product_version','9.8.4'), -(5630,385,'_edit_lock','1750342713:1'), -(5637,388,'_wp_attached_file','2024/10/ROKKU-C-arg.jpg'), -(5638,388,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/ROKKU-C-arg.jpg\";s:8:\"filesize\";i:328180;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ROKKU-C-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16682;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"ROKKU-C-arg.jpg\";}'), -(5639,388,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(5640,385,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5641,389,'_variation_description',''), -(5642,389,'total_sales','0'), -(5643,389,'_tax_status','taxable'), -(5644,389,'_tax_class','parent'), -(5645,389,'_manage_stock','no'), -(5646,389,'_backorders','no'), -(5647,389,'_sold_individually','no'), -(5648,389,'_virtual','no'), -(5649,389,'_downloadable','no'), -(5650,389,'_download_limit','-1'), -(5651,389,'_download_expiry','-1'), -(5652,389,'_stock',NULL), -(5653,389,'_stock_status','instock'), -(5654,389,'_wc_average_rating','0'), -(5655,389,'_wc_review_count','0'), -(5656,389,'attribute_pa_stone','green-jaspe'), -(5657,389,'_product_version','9.8.4'), -(5675,391,'_variation_description',''), -(5676,391,'total_sales','0'), -(5677,391,'_tax_status','taxable'), -(5678,391,'_tax_class','parent'), -(5679,391,'_manage_stock','no'), -(5680,391,'_backorders','no'), -(5681,391,'_sold_individually','no'), -(5682,391,'_virtual','no'), -(5683,391,'_downloadable','no'), -(5684,391,'_download_limit','-1'), -(5685,391,'_download_expiry','-1'), -(5686,391,'_stock',NULL), -(5687,391,'_stock_status','instock'), -(5688,391,'_wc_average_rating','0'), -(5689,391,'_wc_review_count','0'), -(5690,391,'attribute_pa_stone','lapis-lazuli'), -(5691,391,'_product_version','9.8.4'), -(5692,392,'_variation_description',''), -(5693,392,'total_sales','0'), -(5694,392,'_tax_status','taxable'), -(5695,392,'_tax_class','parent'), -(5696,392,'_manage_stock','no'), -(5697,392,'_backorders','no'), -(5698,392,'_sold_individually','no'), -(5699,392,'_virtual','no'), -(5700,392,'_downloadable','no'), -(5701,392,'_download_limit','-1'), -(5702,392,'_download_expiry','-1'), -(5703,392,'_stock',NULL), -(5704,392,'_stock_status','instock'), -(5705,392,'_wc_average_rating','0'), -(5706,392,'_wc_review_count','0'), -(5707,392,'attribute_pa_stone','tiger-eye'), -(5708,392,'_product_version','9.8.4'), -(5709,389,'_sku','ROKKU-C-jaspe'), -(5710,389,'_regular_price','120'), -(5711,389,'_thumbnail_id','0'), -(5712,389,'_price','120'), -(5717,391,'_sku','ROKKU-C-lapis'), -(5718,391,'_regular_price','120'), -(5719,391,'_thumbnail_id','0'), -(5720,391,'_price','120'), -(5721,392,'_sku','ROKKU-C-tiger'), -(5722,392,'_regular_price','120'), -(5723,392,'_thumbnail_id','0'), -(5724,392,'_price','120'), -(5726,385,'_edit_last','1'), -(5736,393,'_sku','MUGURA-CR-s'), -(5737,393,'total_sales','0'), -(5738,393,'_tax_status','taxable'), -(5739,393,'_tax_class',''), -(5740,393,'_manage_stock','no'), -(5741,393,'_backorders','no'), -(5742,393,'_sold_individually','no'), -(5743,393,'_virtual','no'), -(5744,393,'_downloadable','no'), -(5745,393,'_download_limit','-1'), -(5746,393,'_download_expiry','-1'), -(5748,393,'_stock',NULL), -(5749,393,'_stock_status','instock'), -(5750,393,'_wc_average_rating','0'), -(5751,393,'_wc_review_count','0'), -(5752,393,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5753,393,'_product_version','10.3.4'), -(5801,393,'_edit_lock','1764165041:1'), -(5802,396,'_wp_attached_file','2024/10/MUGURA-CR2-arg.jpg'), -(5803,396,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-arg.jpg\";s:8:\"filesize\";i:33386;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"MUGURA-CR2-arg.jpg\";}'), -(5804,396,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5805,397,'_wp_attached_file','2024/10/DSC9733.jpg'), -(5806,397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9733.jpg\";s:8:\"filesize\";i:373189;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9733-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14866;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(5807,397,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5808,393,'_edit_last','1'), -(5816,398,'_sku','MUGURA-CR-g'), -(5818,398,'total_sales','0'), -(5819,398,'_tax_status','taxable'), -(5820,398,'_tax_class',''), -(5821,398,'_manage_stock','no'), -(5822,398,'_backorders','no'), -(5823,398,'_sold_individually','no'), -(5824,398,'_virtual','no'), -(5825,398,'_downloadable','no'), -(5826,398,'_download_limit','-1'), -(5827,398,'_download_expiry','-1'), -(5829,398,'_stock',NULL), -(5830,398,'_stock_status','instock'), -(5831,398,'_wc_average_rating','0'), -(5832,398,'_wc_review_count','0'), -(5833,398,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(5834,398,'_product_version','10.3.4'), -(5839,398,'_edit_lock','1764165013:1'), -(5843,400,'_wp_attached_file','2024/10/DSC9723.jpg'), -(5844,400,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9723.jpg\";s:8:\"filesize\";i:387538;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9723-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9723.jpg\";}'), -(5845,400,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5846,401,'_wp_attached_file','2024/10/DSC9730.jpg'), -(5847,401,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9730.jpg\";s:8:\"filesize\";i:388089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9730-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9730.jpg\";}'), -(5848,401,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(5849,398,'_edit_last','1'), -(5946,411,'_wp_attached_file','2024/09/DSC8400-copie.jpg'), -(5947,411,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2024/09/DSC8400-copie.jpg\";s:8:\"filesize\";i:497813;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"DSC8400-copie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"DSC8400-copie.jpg\";}'), -(5948,411,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), -(6121,424,'_wp_attached_file','2024/10/DSC9376.jpg'), -(6122,424,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9376.jpg\";s:8:\"filesize\";i:313356;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9376-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13739;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9376.jpg\";}'), -(6123,424,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), -(6201,393,'_price','70'), -(6202,393,'_price','70'), -(6322,435,'_sku','KARA-EC-s'), -(6323,435,'_regular_price','40'), -(6324,435,'total_sales','4'), -(6325,435,'_tax_status','taxable'), -(6326,435,'_tax_class',''), -(6327,435,'_manage_stock','no'), -(6328,435,'_backorders','no'), -(6329,435,'_sold_individually','no'), -(6330,435,'_virtual','no'), -(6331,435,'_downloadable','no'), -(6332,435,'_download_limit','-1'), -(6333,435,'_download_expiry','-1'), -(6334,435,'_thumbnail_id','940'), -(6335,435,'_stock',NULL), -(6336,435,'_stock_status','instock'), -(6337,435,'_wc_average_rating','0'), -(6338,435,'_wc_review_count','0'), -(6339,435,'_product_version','9.9.3'), -(6340,435,'_price','40'), -(6344,435,'_edit_lock','1750342713:1'), -(6345,436,'_wp_attached_file','2024/10/KARA-EC-arg.jpg'), -(6346,436,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/KARA-EC-arg.jpg\";s:8:\"filesize\";i:27162;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"KARA-EC-arg.jpg\";}'), -(6347,436,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), -(6348,437,'_wp_attached_file','2024/10/DSC9781-1.jpg'), -(6349,437,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/DSC9781-1.jpg\";s:8:\"filesize\";i:374922;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9781-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"DSC9781-1.jpg\";}'), -(6350,437,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), -(6351,435,'_edit_last','1'), -(6364,398,'_price','75'), -(6365,398,'_regular_price','75'), -(6370,393,'_regular_price','70'), -(6501,447,'_sku','KARA-EC-s-1'), -(6502,447,'_regular_price','45'), -(6503,447,'total_sales','3'), -(6504,447,'_tax_status','taxable'), -(6505,447,'_tax_class',''), -(6506,447,'_manage_stock','no'), -(6507,447,'_backorders','no'), -(6508,447,'_sold_individually','no'), -(6509,447,'_virtual','no'), -(6510,447,'_downloadable','no'), -(6511,447,'_download_limit','-1'), -(6512,447,'_download_expiry','-1'), -(6514,447,'_stock',NULL), -(6515,447,'_stock_status','instock'), -(6516,447,'_wc_average_rating','0'), -(6517,447,'_wc_review_count','0'), -(6518,447,'_product_version','9.9.3'), -(6519,447,'_price','45'), -(6523,447,'_edit_lock','1750342713:1'), -(6530,447,'_edit_last','1'), -(6868,487,'_wp_attached_file','2024/10/DSC9138.jpg'), -(6869,487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9138.jpg\";s:8:\"filesize\";i:283469;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9138-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16095;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(6870,487,'_wp_attachment_image_alt','Rokku statement necklace in silver with semi tiger\'s eye stone pendant and gold plated clasp.'), -(6887,490,'_sku','HADOU-BOP'), -(6889,490,'total_sales','1'), -(6890,490,'_tax_status','taxable'), -(6891,490,'_tax_class',''), -(6892,490,'_manage_stock','no'), -(6893,490,'_backorders','no'), -(6894,490,'_sold_individually','no'), -(6895,490,'_virtual','no'), -(6896,490,'_downloadable','no'), -(6897,490,'_download_limit','-1'), -(6898,490,'_download_expiry','-1'), -(6900,490,'_stock',NULL), -(6901,490,'_stock_status','instock'), -(6902,490,'_wc_average_rating','0'), -(6903,490,'_wc_review_count','0'), -(6904,490,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(6905,490,'_product_version','9.9.3'), -(6912,490,'_edit_lock','1750342713:1'), -(6919,493,'_variation_description',''), -(6920,493,'total_sales','0'), -(6921,493,'_tax_status','taxable'), -(6922,493,'_tax_class','parent'), -(6923,493,'_manage_stock','no'), -(6924,493,'_backorders','no'), -(6925,493,'_sold_individually','no'), -(6926,493,'_virtual','no'), -(6927,493,'_downloadable','no'), -(6928,493,'_download_limit','-1'), -(6929,493,'_download_expiry','-1'), -(6930,493,'_stock',NULL), -(6931,493,'_stock_status','instock'), -(6932,493,'_wc_average_rating','0'), -(6933,493,'_wc_review_count','0'), -(6934,493,'attribute_pa_side','left-side'), -(6935,493,'_product_version','9.8.4'), -(6936,494,'_variation_description',''), -(6937,494,'total_sales','0'), -(6938,494,'_tax_status','taxable'), -(6939,494,'_tax_class','parent'), -(6940,494,'_manage_stock','no'), -(6941,494,'_backorders','no'), -(6942,494,'_sold_individually','no'), -(6943,494,'_virtual','no'), -(6944,494,'_downloadable','no'), -(6945,494,'_download_limit','-1'), -(6946,494,'_download_expiry','-1'), -(6947,494,'_stock',NULL), -(6948,494,'_stock_status','instock'), -(6949,494,'_wc_average_rating','0'), -(6950,494,'_wc_review_count','0'), -(6951,494,'attribute_pa_side','pair'), -(6952,494,'_product_version','9.8.4'), -(6953,495,'_variation_description',''), -(6954,495,'total_sales','0'), -(6955,495,'_tax_status','taxable'), -(6956,495,'_tax_class','parent'), -(6957,495,'_manage_stock','no'), -(6958,495,'_backorders','no'), -(6959,495,'_sold_individually','no'), -(6960,495,'_virtual','no'), -(6961,495,'_downloadable','no'), -(6962,495,'_download_limit','-1'), -(6963,495,'_download_expiry','-1'), -(6964,495,'_stock',NULL), -(6965,495,'_stock_status','instock'), -(6966,495,'_wc_average_rating','0'), -(6967,495,'_wc_review_count','0'), -(6968,495,'attribute_pa_side','right-side'), -(6969,495,'_product_version','9.8.4'), -(6970,493,'_sku','HADOU-BOP-left'), -(6971,493,'_regular_price','35'), -(6972,493,'_thumbnail_id','0'), -(6973,493,'_price','35'), -(6974,494,'_sku','HADOU-BOP-pair'), -(6975,494,'_regular_price','50'), -(6976,494,'_thumbnail_id','0'), -(6977,494,'_price','50'), -(6978,495,'_sku','HADOU-BOP-right'), -(6979,495,'_regular_price','35'), -(6980,495,'_thumbnail_id','0'), -(6981,495,'_price','35'), -(6984,490,'_edit_last','1'), -(6989,496,'_sku','MUGURA-CR1'), -(6990,496,'total_sales','0'), -(6991,496,'_tax_status','taxable'), -(6992,496,'_tax_class',''), -(6993,496,'_manage_stock','no'), -(6994,496,'_backorders','no'), -(6995,496,'_sold_individually','no'), -(6996,496,'_virtual','no'), -(6997,496,'_downloadable','no'), -(6998,496,'_download_limit','-1'), -(6999,496,'_download_expiry','-1'), -(7001,496,'_stock',NULL), -(7002,496,'_stock_status','instock'), -(7003,496,'_wc_average_rating','0'), -(7004,496,'_wc_review_count','0'), -(7006,496,'_product_version','10.1.0'), -(7069,496,'_edit_lock','1761728899:1'), -(7079,496,'_edit_last','1'), -(7080,496,'_regular_price','45'), -(7081,496,'_price','45'), -(7109,506,'_wp_attached_file','woocommerce-placeholder.png'), -(7110,506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:48149;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(7111,510,'_edit_last','1'), -(7112,510,'_edit_lock','1731429269:1'), -(7113,511,'_edit_last','1'), -(7114,511,'_edit_lock','1731429286:1'), -(7120,515,'_sku','BOROBORO-BO1-g'), -(7122,515,'total_sales','0'), -(7123,515,'_tax_status','taxable'), -(7124,515,'_tax_class',''), -(7125,515,'_manage_stock','no'), -(7126,515,'_backorders','no'), -(7127,515,'_sold_individually','no'), -(7128,515,'_virtual','no'), -(7129,515,'_downloadable','no'), -(7130,515,'_download_limit','-1'), -(7131,515,'_download_expiry','-1'), -(7133,515,'_stock',NULL), -(7134,515,'_stock_status','instock'), -(7135,515,'_wc_average_rating','0'), -(7136,515,'_wc_review_count','0'), -(7137,515,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7138,515,'_product_version','9.9.4'), -(7145,515,'_edit_lock','1750342713:1'), -(7197,515,'_price','65'), -(7198,515,'_edit_last','1'), -(7199,515,'_regular_price','65'), -(7204,521,'_sku','BOROBORO-BO1-s'), -(7205,521,'total_sales','2'), -(7206,521,'_tax_status','taxable'), -(7207,521,'_tax_class',''), -(7208,521,'_manage_stock','no'), -(7209,521,'_backorders','no'), -(7210,521,'_sold_individually','no'), -(7211,521,'_virtual','no'), -(7212,521,'_downloadable','no'), -(7213,521,'_download_limit','-1'), -(7214,521,'_download_expiry','-1'), -(7216,521,'_stock',NULL), -(7217,521,'_stock_status','instock'), -(7218,521,'_wc_average_rating','0'), -(7219,521,'_wc_review_count','0'), -(7220,521,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7221,521,'_product_version','9.9.4'), -(7247,523,'_variation_description',''), -(7248,523,'_sku','BOROBORO-BO1-s-brown'), -(7249,523,'_regular_price','60'), -(7250,523,'total_sales','0'), -(7251,523,'_tax_status','taxable'), -(7252,523,'_tax_class','parent'), -(7253,523,'_manage_stock','no'), -(7254,523,'_backorders','no'), -(7255,523,'_sold_individually','no'), -(7256,523,'_virtual','no'), -(7257,523,'_downloadable','no'), -(7258,523,'_download_limit','-1'), -(7259,523,'_download_expiry','-1'), -(7260,523,'_thumbnail_id','0'), -(7261,523,'_stock',NULL), -(7262,523,'_stock_status','instock'), -(7263,523,'_wc_average_rating','0'), -(7264,523,'_wc_review_count','0'), -(7265,523,'attribute_pa_stone','tiger-eye'), -(7266,523,'_price','60'), -(7267,523,'_product_version','9.3.3'), -(7269,521,'_edit_lock','1750342713:1'), -(7280,521,'_edit_last','1'), -(7320,528,'_variation_description',''), -(7321,528,'total_sales','0'), -(7322,528,'_tax_status','taxable'), -(7323,528,'_tax_class','parent'), -(7324,528,'_manage_stock','no'), -(7325,528,'_backorders','no'), -(7326,528,'_sold_individually','no'), -(7327,528,'_virtual','no'), -(7328,528,'_downloadable','no'), -(7329,528,'_download_limit','-1'), -(7330,528,'_download_expiry','-1'), -(7331,528,'_stock',NULL), -(7332,528,'_stock_status','instock'), -(7333,528,'_wc_average_rating','0'), -(7334,528,'_wc_review_count','0'), -(7335,528,'attribute_pa_size','64'), -(7336,528,'_product_version','9.3.3'), -(7338,528,'_thumbnail_id','0'), -(7339,102,'_price','85'), -(7344,529,'_variation_description',''), -(7345,529,'total_sales','0'), -(7346,529,'_tax_status','taxable'), -(7347,529,'_tax_class','parent'), -(7348,529,'_manage_stock','no'), -(7349,529,'_backorders','no'), -(7350,529,'_sold_individually','no'), -(7351,529,'_virtual','no'), -(7352,529,'_downloadable','no'), -(7353,529,'_download_limit','-1'), -(7354,529,'_download_expiry','-1'), -(7355,529,'_stock',NULL), -(7356,529,'_stock_status','instock'), -(7357,529,'_wc_average_rating','0'), -(7358,529,'_wc_review_count','0'), -(7359,529,'attribute_pa_size','64'), -(7360,529,'_product_version','9.3.3'), -(7362,529,'_thumbnail_id','0'), -(7363,113,'_price','90'), -(7395,532,'_variation_description',''), -(7396,532,'total_sales','0'), -(7397,532,'_tax_status','taxable'), -(7398,532,'_tax_class','parent'), -(7399,532,'_manage_stock','no'), -(7400,532,'_backorders','no'), -(7401,532,'_sold_individually','no'), -(7402,532,'_virtual','no'), -(7403,532,'_downloadable','no'), -(7404,532,'_download_limit','-1'), -(7405,532,'_download_expiry','-1'), -(7406,532,'_stock',NULL), -(7407,532,'_stock_status','outofstock'), -(7408,532,'_wc_average_rating','0'), -(7409,532,'_wc_review_count','0'), -(7410,532,'attribute_pa_size','64'), -(7411,532,'_product_version','10.1.0'), -(7413,532,'_thumbnail_id','0'), -(7568,545,'_sku','KARA-CR1-g'), -(7570,545,'total_sales','2'), -(7571,545,'_tax_status','taxable'), -(7572,545,'_tax_class',''), -(7573,545,'_manage_stock','no'), -(7574,545,'_backorders','no'), -(7575,545,'_sold_individually','no'), -(7576,545,'_virtual','no'), -(7577,545,'_downloadable','no'), -(7578,545,'_download_limit','-1'), -(7579,545,'_download_expiry','-1'), -(7581,545,'_stock',NULL), -(7582,545,'_stock_status','instock'), -(7583,545,'_wc_average_rating','0'), -(7584,545,'_wc_review_count','0'), -(7585,545,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7586,545,'_product_version','10.3.4'), -(7592,545,'_edit_lock','1764164977:1'), -(7602,545,'_edit_last','1'), -(7681,552,'_variation_description',''), -(7682,552,'total_sales','0'), -(7683,552,'_tax_status','taxable'), -(7684,552,'_tax_class','parent'), -(7685,552,'_manage_stock','no'), -(7686,552,'_backorders','no'), -(7687,552,'_sold_individually','no'), -(7688,552,'_virtual','no'), -(7689,552,'_downloadable','no'), -(7690,552,'_download_limit','-1'), -(7691,552,'_download_expiry','-1'), -(7692,552,'_stock',NULL), -(7693,552,'_stock_status','instock'), -(7694,552,'_wc_average_rating','0'), -(7695,552,'_wc_review_count','0'), -(7696,552,'attribute_pa_side','one'), -(7697,552,'_product_version','10.3.4'), -(7698,553,'_variation_description',''), -(7699,553,'total_sales','0'), -(7700,553,'_tax_status','taxable'), -(7701,553,'_tax_class','parent'), -(7702,553,'_manage_stock','no'), -(7703,553,'_backorders','no'), -(7704,553,'_sold_individually','no'), -(7705,553,'_virtual','no'), -(7706,553,'_downloadable','no'), -(7707,553,'_download_limit','-1'), -(7708,553,'_download_expiry','-1'), -(7709,553,'_stock',NULL), -(7710,553,'_stock_status','instock'), -(7711,553,'_wc_average_rating','0'), -(7712,553,'_wc_review_count','0'), -(7713,553,'attribute_pa_side','pair'), -(7714,553,'_product_version','10.3.4'), -(7715,552,'_sku','KARA-CR-g-one'), -(7716,552,'_regular_price','50'), -(7717,552,'_thumbnail_id','0'), -(7718,552,'_price','50'), -(7719,553,'_sku','KARA-CR-g-pair'), -(7720,553,'_regular_price','75'), -(7721,553,'_thumbnail_id','0'), -(7722,553,'_price','75'), -(7729,554,'_sku','KARA-CR1-s'), -(7730,554,'total_sales','2'), -(7731,554,'_tax_status','taxable'), -(7732,554,'_tax_class',''), -(7733,554,'_manage_stock','no'), -(7734,554,'_backorders','no'), -(7735,554,'_sold_individually','no'), -(7736,554,'_virtual','no'), -(7737,554,'_downloadable','no'), -(7738,554,'_download_limit','-1'), -(7739,554,'_download_expiry','-1'), -(7741,554,'_stock',NULL), -(7742,554,'_stock_status','instock'), -(7743,554,'_wc_average_rating','0'), -(7744,554,'_wc_review_count','0'), -(7745,554,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(7746,554,'_product_version','10.3.4'), -(7750,555,'_variation_description',''), -(7751,555,'_sku','KARA-CR-s-pair'), -(7752,555,'_regular_price','70'), -(7753,555,'total_sales','0'), -(7754,555,'_tax_status','taxable'), -(7755,555,'_tax_class','parent'), -(7756,555,'_manage_stock','no'), -(7757,555,'_backorders','no'), -(7758,555,'_sold_individually','no'), -(7759,555,'_virtual','no'), -(7760,555,'_downloadable','no'), -(7761,555,'_download_limit','-1'), -(7762,555,'_download_expiry','-1'), -(7763,555,'_thumbnail_id','0'), -(7764,555,'_stock',NULL), -(7765,555,'_stock_status','instock'), -(7766,555,'_wc_average_rating','0'), -(7767,555,'_wc_review_count','0'), -(7768,555,'attribute_pa_side','pair'), -(7769,555,'_price','70'), -(7770,555,'_product_version','10.3.4'), -(7771,556,'_variation_description',''), -(7772,556,'_sku','KARA-CR-s-one'), -(7773,556,'_regular_price','45'), -(7774,556,'total_sales','0'), -(7775,556,'_tax_status','taxable'), -(7776,556,'_tax_class','parent'), -(7777,556,'_manage_stock','no'), -(7778,556,'_backorders','no'), -(7779,556,'_sold_individually','no'), -(7780,556,'_virtual','no'), -(7781,556,'_downloadable','no'), -(7782,556,'_download_limit','-1'), -(7783,556,'_download_expiry','-1'), -(7784,556,'_thumbnail_id','0'), -(7785,556,'_stock',NULL), -(7786,556,'_stock_status','instock'), -(7787,556,'_wc_average_rating','0'), -(7788,556,'_wc_review_count','0'), -(7789,556,'attribute_pa_side','one'), -(7790,556,'_price','45'), -(7791,556,'_product_version','10.3.4'), -(7794,554,'_edit_lock','1764164938:1'), -(7803,554,'_edit_last','1'), -(7909,565,'_variation_description',''), -(7910,565,'total_sales','0'), -(7911,565,'_tax_status','taxable'), -(7912,565,'_tax_class','parent'), -(7913,565,'_manage_stock','no'), -(7914,565,'_backorders','no'), -(7915,565,'_sold_individually','no'), -(7916,565,'_virtual','no'), -(7917,565,'_downloadable','no'), -(7918,565,'_download_limit','-1'), -(7919,565,'_download_expiry','-1'), -(7920,565,'_stock',NULL), -(7921,565,'_stock_status','instock'), -(7922,565,'_wc_average_rating','0'), -(7923,565,'_wc_review_count','0'), -(7924,565,'attribute_pa_side','one-element-side'), -(7925,565,'_product_version','10.3.4'), -(7926,566,'_variation_description',''), -(7927,566,'total_sales','0'), -(7928,566,'_tax_status','taxable'), -(7929,566,'_tax_class','parent'), -(7930,566,'_manage_stock','no'), -(7931,566,'_backorders','no'), -(7932,566,'_sold_individually','no'), -(7933,566,'_virtual','no'), -(7934,566,'_downloadable','no'), -(7935,566,'_download_limit','-1'), -(7936,566,'_download_expiry','-1'), -(7937,566,'_stock',NULL), -(7938,566,'_stock_status','instock'), -(7939,566,'_wc_average_rating','0'), -(7940,566,'_wc_review_count','0'), -(7941,566,'attribute_pa_side','pair'), -(7942,566,'_product_version','10.3.4'), -(7943,567,'_variation_description',''), -(7944,567,'total_sales','0'), -(7945,567,'_tax_status','taxable'), -(7946,567,'_tax_class','parent'), -(7947,567,'_manage_stock','no'), -(7948,567,'_backorders','no'), -(7949,567,'_sold_individually','no'), -(7950,567,'_virtual','no'), -(7951,567,'_downloadable','no'), -(7952,567,'_download_limit','-1'), -(7953,567,'_download_expiry','-1'), -(7954,567,'_stock',NULL), -(7955,567,'_stock_status','instock'), -(7956,567,'_wc_average_rating','0'), -(7957,567,'_wc_review_count','0'), -(7958,567,'attribute_pa_side','two-elements-side'), -(7959,567,'_product_version','10.3.4'), -(7960,565,'_regular_price','50'), -(7961,565,'_thumbnail_id','1454'), -(7962,565,'_price','50'), -(7963,566,'_regular_price','75'), -(7964,566,'_thumbnail_id','0'), -(7965,566,'_price','75'), -(7966,567,'_regular_price','50'), -(7967,567,'_thumbnail_id','1455'), -(7968,567,'_price','50'), -(7980,569,'_variation_description',''), -(7981,569,'total_sales','0'), -(7982,569,'_tax_status','taxable'), -(7983,569,'_tax_class','parent'), -(7984,569,'_manage_stock','no'), -(7985,569,'_backorders','no'), -(7986,569,'_sold_individually','no'), -(7987,569,'_virtual','no'), -(7988,569,'_downloadable','no'), -(7989,569,'_download_limit','-1'), -(7990,569,'_download_expiry','-1'), -(7991,569,'_stock',NULL), -(7992,569,'_stock_status','instock'), -(7993,569,'_wc_average_rating','0'), -(7994,569,'_wc_review_count','0'), -(7995,569,'attribute_pa_side','one-element-side'), -(7996,569,'_product_version','10.3.4'), -(7997,570,'_variation_description',''), -(7998,570,'total_sales','0'), -(7999,570,'_tax_status','taxable'), -(8000,570,'_tax_class','parent'), -(8001,570,'_manage_stock','no'), -(8002,570,'_backorders','no'), -(8003,570,'_sold_individually','no'), -(8004,570,'_virtual','no'), -(8005,570,'_downloadable','no'), -(8006,570,'_download_limit','-1'), -(8007,570,'_download_expiry','-1'), -(8008,570,'_stock',NULL), -(8009,570,'_stock_status','instock'), -(8010,570,'_wc_average_rating','0'), -(8011,570,'_wc_review_count','0'), -(8012,570,'attribute_pa_side','pair'), -(8013,570,'_product_version','10.3.4'), -(8014,571,'_variation_description',''), -(8015,571,'total_sales','0'), -(8016,571,'_tax_status','taxable'), -(8017,571,'_tax_class','parent'), -(8018,571,'_manage_stock','no'), -(8019,571,'_backorders','no'), -(8020,571,'_sold_individually','no'), -(8021,571,'_virtual','no'), -(8022,571,'_downloadable','no'), -(8023,571,'_download_limit','-1'), -(8024,571,'_download_expiry','-1'), -(8025,571,'_stock',NULL), -(8026,571,'_stock_status','instock'), -(8027,571,'_wc_average_rating','0'), -(8028,571,'_wc_review_count','0'), -(8029,571,'attribute_pa_side','two-elements-side'), -(8030,571,'_product_version','10.3.4'), -(8031,569,'_sku','BOROBORO-BO2-g-one'), -(8032,569,'_regular_price','55'), -(8033,569,'_thumbnail_id','1456'), -(8034,569,'_price','55'), -(8035,570,'_sku','BOROBORO-BO2-g-pair'), -(8036,570,'_regular_price','80'), -(8037,570,'_thumbnail_id','0'), -(8038,570,'_price','80'), -(8039,571,'_sku','BOROBORO-BO2-g-two'), -(8040,571,'_regular_price','55'), -(8041,571,'_thumbnail_id','1457'), -(8042,571,'_price','55'), -(8052,566,'_sku','BOROBORO-BO2-s-pair'), -(8053,565,'_sku','BOROBORO-BO2-s-one'), -(8054,567,'_sku','BOROBORO-BO2-s-two'), -(8686,613,'_sku','BOROBORO-B2-g'), -(8687,613,'total_sales','0'), -(8688,613,'_tax_status','taxable'), -(8689,613,'_tax_class',''), -(8690,613,'_manage_stock','no'), -(8691,613,'_backorders','no'), -(8692,613,'_sold_individually','no'), -(8693,613,'_virtual','no'), -(8694,613,'_downloadable','no'), -(8695,613,'_download_limit','-1'), -(8696,613,'_download_expiry','-1'), -(8698,613,'_stock',NULL), -(8699,613,'_stock_status','instock'), -(8700,613,'_wc_average_rating','0'), -(8701,613,'_wc_review_count','0'), -(8702,613,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(8703,613,'_product_version','10.1.2'), -(8710,614,'_variation_description',''), -(8711,614,'_regular_price','70'), -(8712,614,'total_sales','0'), -(8713,614,'_tax_status','taxable'), -(8714,614,'_tax_class','parent'), -(8715,614,'_manage_stock','no'), -(8716,614,'_backorders','no'), -(8717,614,'_sold_individually','no'), -(8718,614,'_virtual','no'), -(8719,614,'_downloadable','no'), -(8720,614,'_download_limit','-1'), -(8721,614,'_download_expiry','-1'), -(8722,614,'_thumbnail_id','0'), -(8723,614,'_stock',NULL), -(8724,614,'_stock_status','instock'), -(8725,614,'_wc_average_rating','0'), -(8726,614,'_wc_review_count','0'), -(8727,614,'attribute_pa_size','50'), -(8728,614,'_price','70'), -(8729,614,'_product_version','9.3.3'), -(8730,615,'_variation_description',''), -(8731,615,'_regular_price','70'), -(8732,615,'total_sales','0'), -(8733,615,'_tax_status','taxable'), -(8734,615,'_tax_class','parent'), -(8735,615,'_manage_stock','no'), -(8736,615,'_backorders','no'), -(8737,615,'_sold_individually','no'), -(8738,615,'_virtual','no'), -(8739,615,'_downloadable','no'), -(8740,615,'_download_limit','-1'), -(8741,615,'_download_expiry','-1'), -(8742,615,'_thumbnail_id','0'), -(8743,615,'_stock',NULL), -(8744,615,'_stock_status','instock'), -(8745,615,'_wc_average_rating','0'), -(8746,615,'_wc_review_count','0'), -(8747,615,'attribute_pa_size','52'), -(8748,615,'_price','70'), -(8749,615,'_product_version','9.3.3'), -(8750,616,'_variation_description',''), -(8751,616,'_regular_price','70'), -(8752,616,'total_sales','0'), -(8753,616,'_tax_status','taxable'), -(8754,616,'_tax_class','parent'), -(8755,616,'_manage_stock','no'), -(8756,616,'_backorders','no'), -(8757,616,'_sold_individually','no'), -(8758,616,'_virtual','no'), -(8759,616,'_downloadable','no'), -(8760,616,'_download_limit','-1'), -(8761,616,'_download_expiry','-1'), -(8762,616,'_thumbnail_id','0'), -(8763,616,'_stock',NULL), -(8764,616,'_stock_status','instock'), -(8765,616,'_wc_average_rating','0'), -(8766,616,'_wc_review_count','0'), -(8767,616,'attribute_pa_size','54'), -(8768,616,'_price','70'), -(8769,616,'_product_version','9.3.3'), -(8770,617,'_variation_description',''), -(8771,617,'_regular_price','70'), -(8772,617,'total_sales','0'), -(8773,617,'_tax_status','taxable'), -(8774,617,'_tax_class','parent'), -(8775,617,'_manage_stock','no'), -(8776,617,'_backorders','no'), -(8777,617,'_sold_individually','no'), -(8778,617,'_virtual','no'), -(8779,617,'_downloadable','no'), -(8780,617,'_download_limit','-1'), -(8781,617,'_download_expiry','-1'), -(8782,617,'_thumbnail_id','0'), -(8783,617,'_stock',NULL), -(8784,617,'_stock_status','instock'), -(8785,617,'_wc_average_rating','0'), -(8786,617,'_wc_review_count','0'), -(8787,617,'attribute_pa_size','56'), -(8788,617,'_price','70'), -(8789,617,'_product_version','9.3.3'), -(8790,618,'_variation_description',''), -(8791,618,'_regular_price','70'), -(8792,618,'total_sales','0'), -(8793,618,'_tax_status','taxable'), -(8794,618,'_tax_class','parent'), -(8795,618,'_manage_stock','no'), -(8796,618,'_backorders','no'), -(8797,618,'_sold_individually','no'), -(8798,618,'_virtual','no'), -(8799,618,'_downloadable','no'), -(8800,618,'_download_limit','-1'), -(8801,618,'_download_expiry','-1'), -(8802,618,'_thumbnail_id','0'), -(8803,618,'_stock',NULL), -(8804,618,'_stock_status','instock'), -(8805,618,'_wc_average_rating','0'), -(8806,618,'_wc_review_count','0'), -(8807,618,'attribute_pa_size','58'), -(8808,618,'_price','70'), -(8809,618,'_product_version','9.3.3'), -(8810,619,'_variation_description',''), -(8811,619,'_regular_price','70'), -(8812,619,'total_sales','0'), -(8813,619,'_tax_status','taxable'), -(8814,619,'_tax_class','parent'), -(8815,619,'_manage_stock','no'), -(8816,619,'_backorders','no'), -(8817,619,'_sold_individually','no'), -(8818,619,'_virtual','no'), -(8819,619,'_downloadable','no'), -(8820,619,'_download_limit','-1'), -(8821,619,'_download_expiry','-1'), -(8822,619,'_thumbnail_id','0'), -(8823,619,'_stock',NULL), -(8824,619,'_stock_status','instock'), -(8825,619,'_wc_average_rating','0'), -(8826,619,'_wc_review_count','0'), -(8827,619,'attribute_pa_size','60'), -(8828,619,'_price','70'), -(8829,619,'_product_version','9.3.3'), -(8830,620,'_variation_description',''), -(8831,620,'_regular_price','70'), -(8832,620,'total_sales','0'), -(8833,620,'_tax_status','taxable'), -(8834,620,'_tax_class','parent'), -(8835,620,'_manage_stock','no'), -(8836,620,'_backorders','no'), -(8837,620,'_sold_individually','no'), -(8838,620,'_virtual','no'), -(8839,620,'_downloadable','no'), -(8840,620,'_download_limit','-1'), -(8841,620,'_download_expiry','-1'), -(8842,620,'_thumbnail_id','0'), -(8843,620,'_stock',NULL), -(8844,620,'_stock_status','instock'), -(8845,620,'_wc_average_rating','0'), -(8846,620,'_wc_review_count','0'), -(8847,620,'attribute_pa_size','62'), -(8848,620,'_price','70'), -(8849,620,'_product_version','9.4.1'), -(8851,613,'_edit_lock','1757322798:1'), -(8861,624,'_variation_description',''), -(8862,624,'total_sales','0'), -(8863,624,'_tax_status','taxable'), -(8864,624,'_tax_class','parent'), -(8865,624,'_manage_stock','no'), -(8866,624,'_backorders','no'), -(8867,624,'_sold_individually','no'), -(8868,624,'_virtual','no'), -(8869,624,'_downloadable','no'), -(8870,624,'_download_limit','-1'), -(8871,624,'_download_expiry','-1'), -(8872,624,'_stock',NULL), -(8873,624,'_stock_status','instock'), -(8874,624,'_wc_average_rating','0'), -(8875,624,'_wc_review_count','0'), -(8876,624,'attribute_pa_size','64'), -(8877,624,'_product_version','9.3.3'), -(8879,624,'_sku','BOROBORO-B2-g-60'), -(8880,624,'_regular_price','70'), -(8881,624,'_thumbnail_id','0'), -(8882,624,'_price','70'), -(8883,614,'_sku','BOROBORO-B2-g-50'), -(8884,615,'_sku','BOROBORO-B2-g-52'), -(8885,616,'_sku','BOROBORO-B2-g-54'), -(8886,617,'_sku','BOROBORO-B2-g-56'), -(8887,618,'_sku','BOROBORO-B2-g-58'), -(8890,613,'_edit_last','1'), -(8895,625,'_sku','BOROBORO-B2-sj'), -(8896,625,'total_sales','0'), -(8897,625,'_tax_status','taxable'), -(8898,625,'_tax_class',''), -(8899,625,'_manage_stock','no'), -(8900,625,'_backorders','no'), -(8901,625,'_sold_individually','no'), -(8902,625,'_virtual','no'), -(8903,625,'_downloadable','no'), -(8904,625,'_download_limit','-1'), -(8905,625,'_download_expiry','-1'), -(8907,625,'_stock',NULL), -(8908,625,'_stock_status','instock'), -(8909,625,'_wc_average_rating','0'), -(8910,625,'_wc_review_count','0'), -(8911,625,'_product_attributes','a:2:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(8912,625,'_product_version','10.1.2'), -(8917,626,'_variation_description',''), -(8918,626,'_sku','BOROBORO-B2-s-50'), -(8919,626,'_regular_price','65'), -(8920,626,'total_sales','0'), -(8921,626,'_tax_status','taxable'), -(8922,626,'_tax_class','parent'), -(8923,626,'_manage_stock','no'), -(8924,626,'_backorders','no'), -(8925,626,'_sold_individually','no'), -(8926,626,'_virtual','no'), -(8927,626,'_downloadable','no'), -(8928,626,'_download_limit','-1'), -(8929,626,'_download_expiry','-1'), -(8930,626,'_thumbnail_id','0'), -(8931,626,'_stock',NULL), -(8932,626,'_stock_status','instock'), -(8933,626,'_wc_average_rating','0'), -(8934,626,'_wc_review_count','0'), -(8935,626,'attribute_pa_size','50'), -(8936,626,'_price','65'), -(8937,626,'_product_version','9.3.3'), -(8938,627,'_variation_description',''), -(8939,627,'_sku','BOROBORO-B2-s-52'), -(8940,627,'_regular_price','65'), -(8941,627,'total_sales','0'), -(8942,627,'_tax_status','taxable'), -(8943,627,'_tax_class','parent'), -(8944,627,'_manage_stock','no'), -(8945,627,'_backorders','no'), -(8946,627,'_sold_individually','no'), -(8947,627,'_virtual','no'), -(8948,627,'_downloadable','no'), -(8949,627,'_download_limit','-1'), -(8950,627,'_download_expiry','-1'), -(8951,627,'_thumbnail_id','0'), -(8952,627,'_stock',NULL), -(8953,627,'_stock_status','instock'), -(8954,627,'_wc_average_rating','0'), -(8955,627,'_wc_review_count','0'), -(8956,627,'attribute_pa_size','52'), -(8957,627,'_price','65'), -(8958,627,'_product_version','9.3.3'), -(8959,628,'_variation_description',''), -(8960,628,'_sku','BOROBORO-B2-s-54'), -(8961,628,'_regular_price','65'), -(8962,628,'total_sales','0'), -(8963,628,'_tax_status','taxable'), -(8964,628,'_tax_class','parent'), -(8965,628,'_manage_stock','no'), -(8966,628,'_backorders','no'), -(8967,628,'_sold_individually','no'), -(8968,628,'_virtual','no'), -(8969,628,'_downloadable','no'), -(8970,628,'_download_limit','-1'), -(8971,628,'_download_expiry','-1'), -(8972,628,'_thumbnail_id','0'), -(8973,628,'_stock',NULL), -(8974,628,'_stock_status','instock'), -(8975,628,'_wc_average_rating','0'), -(8976,628,'_wc_review_count','0'), -(8977,628,'attribute_pa_size','54'), -(8978,628,'_price','65'), -(8979,628,'_product_version','9.3.3'), -(8980,629,'_variation_description',''), -(8981,629,'_sku','BOROBORO-B2-s-56'), -(8982,629,'_regular_price','65'), -(8983,629,'total_sales','0'), -(8984,629,'_tax_status','taxable'), -(8985,629,'_tax_class','parent'), -(8986,629,'_manage_stock','no'), -(8987,629,'_backorders','no'), -(8988,629,'_sold_individually','no'), -(8989,629,'_virtual','no'), -(8990,629,'_downloadable','no'), -(8991,629,'_download_limit','-1'), -(8992,629,'_download_expiry','-1'), -(8993,629,'_thumbnail_id','0'), -(8994,629,'_stock',NULL), -(8995,629,'_stock_status','instock'), -(8996,629,'_wc_average_rating','0'), -(8997,629,'_wc_review_count','0'), -(8998,629,'attribute_pa_size','56'), -(8999,629,'_price','65'), -(9000,629,'_product_version','9.3.3'), -(9001,630,'_variation_description',''), -(9002,630,'_sku','BOROBORO-B2-s-58'), -(9003,630,'_regular_price','65'), -(9004,630,'total_sales','0'), -(9005,630,'_tax_status','taxable'), -(9006,630,'_tax_class','parent'), -(9007,630,'_manage_stock','no'), -(9008,630,'_backorders','no'), -(9009,630,'_sold_individually','no'), -(9010,630,'_virtual','no'), -(9011,630,'_downloadable','no'), -(9012,630,'_download_limit','-1'), -(9013,630,'_download_expiry','-1'), -(9014,630,'_thumbnail_id','0'), -(9015,630,'_stock',NULL), -(9016,630,'_stock_status','instock'), -(9017,630,'_wc_average_rating','0'), -(9018,630,'_wc_review_count','0'), -(9019,630,'attribute_pa_size','58'), -(9020,630,'_price','65'), -(9021,630,'_product_version','9.3.3'), -(9022,631,'_variation_description',''), -(9023,631,'_regular_price','65'), -(9024,631,'total_sales','0'), -(9025,631,'_tax_status','taxable'), -(9026,631,'_tax_class','parent'), -(9027,631,'_manage_stock','no'), -(9028,631,'_backorders','no'), -(9029,631,'_sold_individually','no'), -(9030,631,'_virtual','no'), -(9031,631,'_downloadable','no'), -(9032,631,'_download_limit','-1'), -(9033,631,'_download_expiry','-1'), -(9034,631,'_thumbnail_id','0'), -(9035,631,'_stock',NULL), -(9036,631,'_stock_status','instock'), -(9037,631,'_wc_average_rating','0'), -(9038,631,'_wc_review_count','0'), -(9039,631,'attribute_pa_size','60'), -(9040,631,'_price','65'), -(9041,631,'_product_version','9.3.3'), -(9042,632,'_variation_description',''), -(9043,632,'_regular_price','65'), -(9044,632,'total_sales','0'), -(9045,632,'_tax_status','taxable'), -(9046,632,'_tax_class','parent'), -(9047,632,'_manage_stock','no'), -(9048,632,'_backorders','no'), -(9049,632,'_sold_individually','no'), -(9050,632,'_virtual','no'), -(9051,632,'_downloadable','no'), -(9052,632,'_download_limit','-1'), -(9053,632,'_download_expiry','-1'), -(9054,632,'_thumbnail_id','0'), -(9055,632,'_stock',NULL), -(9056,632,'_stock_status','instock'), -(9057,632,'_wc_average_rating','0'), -(9058,632,'_wc_review_count','0'), -(9059,632,'attribute_pa_size','62'), -(9060,632,'_price','65'), -(9061,632,'_product_version','9.3.3'), -(9062,633,'_variation_description',''), -(9063,633,'_sku','BOROBORO-B2-s-64'), -(9064,633,'_regular_price','65'), -(9065,633,'total_sales','0'), -(9066,633,'_tax_status','taxable'), -(9067,633,'_tax_class','parent'), -(9068,633,'_manage_stock','no'), -(9069,633,'_backorders','no'), -(9070,633,'_sold_individually','no'), -(9071,633,'_virtual','no'), -(9072,633,'_downloadable','no'), -(9073,633,'_download_limit','-1'), -(9074,633,'_download_expiry','-1'), -(9075,633,'_thumbnail_id','0'), -(9076,633,'_stock',NULL), -(9077,633,'_stock_status','instock'), -(9078,633,'_wc_average_rating','0'), -(9079,633,'_wc_review_count','0'), -(9080,633,'attribute_pa_size','64'), -(9081,633,'_price','65'), -(9082,633,'_product_version','9.3.3'), -(9085,625,'_edit_lock','1761727631:1'), -(9095,631,'_sku','BOROBORO-B2-s-60'), -(9096,625,'_price','65'), -(9097,625,'_edit_last','1'), -(9102,637,'_variation_description',''), -(9103,637,'total_sales','0'), -(9104,637,'_tax_status','taxable'), -(9105,637,'_tax_class','parent'), -(9106,637,'_manage_stock','no'), -(9107,637,'_backorders','no'), -(9108,637,'_sold_individually','no'), -(9109,637,'_virtual','no'), -(9110,637,'_downloadable','no'), -(9111,637,'_download_limit','-1'), -(9112,637,'_download_expiry','-1'), -(9113,637,'_stock',NULL), -(9114,637,'_stock_status','instock'), -(9115,637,'_wc_average_rating','0'), -(9116,637,'_wc_review_count','0'), -(9117,637,'attribute_pa_side','left-side'), -(9118,637,'_product_version','10.3.4'), -(9119,638,'_variation_description',''), -(9120,638,'total_sales','0'), -(9121,638,'_tax_status','taxable'), -(9122,638,'_tax_class','parent'), -(9123,638,'_manage_stock','no'), -(9124,638,'_backorders','no'), -(9125,638,'_sold_individually','no'), -(9126,638,'_virtual','no'), -(9127,638,'_downloadable','no'), -(9128,638,'_download_limit','-1'), -(9129,638,'_download_expiry','-1'), -(9130,638,'_stock',NULL), -(9131,638,'_stock_status','instock'), -(9132,638,'_wc_average_rating','0'), -(9133,638,'_wc_review_count','0'), -(9134,638,'attribute_pa_side','pair'), -(9135,638,'_product_version','10.3.4'), -(9136,639,'_variation_description',''), -(9137,639,'total_sales','0'), -(9138,639,'_tax_status','taxable'), -(9139,639,'_tax_class','parent'), -(9140,639,'_manage_stock','no'), -(9141,639,'_backorders','no'), -(9142,639,'_sold_individually','no'), -(9143,639,'_virtual','no'), -(9144,639,'_downloadable','no'), -(9145,639,'_download_limit','-1'), -(9146,639,'_download_expiry','-1'), -(9147,639,'_stock',NULL), -(9148,639,'_stock_status','instock'), -(9149,639,'_wc_average_rating','0'), -(9150,639,'_wc_review_count','0'), -(9151,639,'attribute_pa_side','right-side'), -(9152,639,'_product_version','10.3.4'), -(9153,637,'_sku','PIASU-BO2-left'), -(9154,637,'_regular_price','55'), -(9155,637,'_thumbnail_id','0'), -(9156,637,'_price','55'), -(9157,638,'_sku','PIASU-BO2-pair'), -(9158,638,'_regular_price','90'), -(9159,638,'_thumbnail_id','0'), -(9160,638,'_price','90'), -(9161,639,'_sku','PIASU-BO2-right'), -(9162,639,'_regular_price','55'), -(9163,639,'_thumbnail_id','0'), -(9164,639,'_price','55'), -(9214,641,'_variation_description',''), -(9215,641,'total_sales','0'), -(9216,641,'_tax_status','taxable'), -(9217,641,'_tax_class','parent'), -(9218,641,'_manage_stock','no'), -(9219,641,'_backorders','no'), -(9220,641,'_sold_individually','no'), -(9221,641,'_virtual','no'), -(9222,641,'_downloadable','no'), -(9223,641,'_download_limit','-1'), -(9224,641,'_download_expiry','-1'), -(9225,641,'_stock',NULL), -(9226,641,'_stock_status','instock'), -(9227,641,'_wc_average_rating','0'), -(9228,641,'_wc_review_count','0'), -(9229,641,'attribute_pa_side','left-side'), -(9230,641,'_product_version','9.8.4'), -(9231,642,'_variation_description',''), -(9232,642,'total_sales','0'), -(9233,642,'_tax_status','taxable'), -(9234,642,'_tax_class','parent'), -(9235,642,'_manage_stock','no'), -(9236,642,'_backorders','no'), -(9237,642,'_sold_individually','no'), -(9238,642,'_virtual','no'), -(9239,642,'_downloadable','no'), -(9240,642,'_download_limit','-1'), -(9241,642,'_download_expiry','-1'), -(9242,642,'_stock',NULL), -(9243,642,'_stock_status','instock'), -(9244,642,'_wc_average_rating','0'), -(9245,642,'_wc_review_count','0'), -(9246,642,'attribute_pa_side','pair'), -(9247,642,'_product_version','9.9.3'), -(9248,643,'_variation_description',''), -(9249,643,'total_sales','0'), -(9250,643,'_tax_status','taxable'), -(9251,643,'_tax_class','parent'), -(9252,643,'_manage_stock','no'), -(9253,643,'_backorders','no'), -(9254,643,'_sold_individually','no'), -(9255,643,'_virtual','no'), -(9256,643,'_downloadable','no'), -(9257,643,'_download_limit','-1'), -(9258,643,'_download_expiry','-1'), -(9259,643,'_stock',NULL), -(9260,643,'_stock_status','instock'), -(9261,643,'_wc_average_rating','0'), -(9262,643,'_wc_review_count','0'), -(9263,643,'attribute_pa_side','right-side'), -(9264,643,'_product_version','9.8.4'), -(9265,641,'_sku','HATTARI-CR1-s-left'), -(9266,641,'_regular_price','55'), -(9267,641,'_thumbnail_id','0'), -(9268,641,'_price','55'), -(9269,642,'_sku','HATTARI-CR1-s-pair'), -(9270,642,'_regular_price','85'), -(9271,642,'_thumbnail_id','0'), -(9272,642,'_price','85'), -(9273,643,'_sku','HATTARI-CR1-s-right'), -(9274,643,'_regular_price','55'), -(9275,643,'_thumbnail_id','0'), -(9276,643,'_price','55'), -(9286,645,'_variation_description',''), -(9287,645,'total_sales','0'), -(9288,645,'_tax_status','taxable'), -(9289,645,'_tax_class','parent'), -(9290,645,'_manage_stock','no'), -(9291,645,'_backorders','no'), -(9292,645,'_sold_individually','no'), -(9293,645,'_virtual','no'), -(9294,645,'_downloadable','no'), -(9295,645,'_download_limit','-1'), -(9296,645,'_download_expiry','-1'), -(9297,645,'_stock',NULL), -(9298,645,'_stock_status','instock'), -(9299,645,'_wc_average_rating','0'), -(9300,645,'_wc_review_count','0'), -(9301,645,'attribute_pa_side','left-side'), -(9302,645,'_product_version','9.8.4'), -(9303,646,'_variation_description',''), -(9304,646,'total_sales','0'), -(9305,646,'_tax_status','taxable'), -(9306,646,'_tax_class','parent'), -(9307,646,'_manage_stock','no'), -(9308,646,'_backorders','no'), -(9309,646,'_sold_individually','no'), -(9310,646,'_virtual','no'), -(9311,646,'_downloadable','no'), -(9312,646,'_download_limit','-1'), -(9313,646,'_download_expiry','-1'), -(9314,646,'_stock',NULL), -(9315,646,'_stock_status','instock'), -(9316,646,'_wc_average_rating','0'), -(9317,646,'_wc_review_count','0'), -(9318,646,'attribute_pa_side','pair'), -(9319,646,'_product_version','9.9.3'), -(9320,647,'_variation_description',''), -(9321,647,'total_sales','0'), -(9322,647,'_tax_status','taxable'), -(9323,647,'_tax_class','parent'), -(9324,647,'_manage_stock','no'), -(9325,647,'_backorders','no'), -(9326,647,'_sold_individually','no'), -(9327,647,'_virtual','no'), -(9328,647,'_downloadable','no'), -(9329,647,'_download_limit','-1'), -(9330,647,'_download_expiry','-1'), -(9331,647,'_stock',NULL), -(9332,647,'_stock_status','instock'), -(9333,647,'_wc_average_rating','0'), -(9334,647,'_wc_review_count','0'), -(9335,647,'attribute_pa_side','right-side'), -(9336,647,'_product_version','9.8.4'), -(9337,645,'_sku','HATTARI-CR1-g-left'), -(9338,645,'_regular_price','60'), -(9339,645,'_thumbnail_id','0'), -(9340,645,'_price','60'), -(9341,646,'_sku','HATTARI-CR1-g-pair'), -(9342,646,'_regular_price','90'), -(9343,646,'_thumbnail_id','0'), -(9344,646,'_price','90'), -(9345,647,'_sku','HATTARI-CR1-g-right'), -(9346,647,'_regular_price','60'), -(9347,647,'_thumbnail_id','0'), -(9348,647,'_price','60'), -(9427,651,'_variation_description',''), -(9428,651,'total_sales','0'), -(9429,651,'_tax_status','taxable'), -(9430,651,'_tax_class','parent'), -(9431,651,'_manage_stock','no'), -(9432,651,'_backorders','no'), -(9433,651,'_sold_individually','no'), -(9434,651,'_virtual','no'), -(9435,651,'_downloadable','no'), -(9436,651,'_download_limit','-1'), -(9437,651,'_download_expiry','-1'), -(9438,651,'_stock',NULL), -(9439,651,'_stock_status','instock'), -(9440,651,'_wc_average_rating','0'), -(9441,651,'_wc_review_count','0'), -(9442,651,'attribute_pa_side','long'), -(9443,651,'_product_version','9.3.3'), -(9444,652,'_variation_description',''), -(9445,652,'total_sales','0'), -(9446,652,'_tax_status','taxable'), -(9447,652,'_tax_class','parent'), -(9448,652,'_manage_stock','no'), -(9449,652,'_backorders','no'), -(9450,652,'_sold_individually','no'), -(9451,652,'_virtual','no'), -(9452,652,'_downloadable','no'), -(9453,652,'_download_limit','-1'), -(9454,652,'_download_expiry','-1'), -(9455,652,'_stock',NULL), -(9456,652,'_stock_status','instock'), -(9457,652,'_wc_average_rating','0'), -(9458,652,'_wc_review_count','0'), -(9459,652,'attribute_pa_side','pair'), -(9460,652,'_product_version','9.3.3'), -(9461,653,'_variation_description',''), -(9462,653,'total_sales','0'), -(9463,653,'_tax_status','taxable'), -(9464,653,'_tax_class','parent'), -(9465,653,'_manage_stock','no'), -(9466,653,'_backorders','no'), -(9467,653,'_sold_individually','no'), -(9468,653,'_virtual','no'), -(9469,653,'_downloadable','no'), -(9470,653,'_download_limit','-1'), -(9471,653,'_download_expiry','-1'), -(9472,653,'_stock',NULL), -(9473,653,'_stock_status','instock'), -(9474,653,'_wc_average_rating','0'), -(9475,653,'_wc_review_count','0'), -(9476,653,'attribute_pa_side','short'), -(9477,653,'_product_version','9.4.1'), -(9478,651,'_sku','TAMANORI-CR-s-long'), -(9479,651,'_regular_price','50'), -(9480,651,'_thumbnail_id','0'), -(9481,651,'_price','50'), -(9482,652,'_sku','TAMANORI-CR-s-pair'), -(9483,652,'_regular_price','70'), -(9484,652,'_thumbnail_id','0'), -(9485,652,'_price','70'), -(9486,653,'_sku','TAMANORI-CR-s-short'), -(9487,653,'_regular_price','48'), -(9488,653,'_thumbnail_id','0'), -(9489,653,'_price','48'), -(9498,654,'_variation_description',''), -(9499,654,'total_sales','0'), -(9500,654,'_tax_status','taxable'), -(9501,654,'_tax_class','parent'), -(9502,654,'_manage_stock','no'), -(9503,654,'_backorders','no'), -(9504,654,'_sold_individually','no'), -(9505,654,'_virtual','no'), -(9506,654,'_downloadable','no'), -(9507,654,'_download_limit','-1'), -(9508,654,'_download_expiry','-1'), -(9509,654,'_stock',NULL), -(9510,654,'_stock_status','instock'), -(9511,654,'_wc_average_rating','0'), -(9512,654,'_wc_review_count','0'), -(9513,654,'attribute_pa_side','long'), -(9514,654,'_product_version','9.4.1'), -(9515,655,'_variation_description',''), -(9516,655,'total_sales','0'), -(9517,655,'_tax_status','taxable'), -(9518,655,'_tax_class','parent'), -(9519,655,'_manage_stock','no'), -(9520,655,'_backorders','no'), -(9521,655,'_sold_individually','no'), -(9522,655,'_virtual','no'), -(9523,655,'_downloadable','no'), -(9524,655,'_download_limit','-1'), -(9525,655,'_download_expiry','-1'), -(9526,655,'_stock',NULL), -(9527,655,'_stock_status','instock'), -(9528,655,'_wc_average_rating','0'), -(9529,655,'_wc_review_count','0'), -(9530,655,'attribute_pa_side','pair'), -(9531,655,'_product_version','9.3.3'), -(9532,656,'_variation_description',''), -(9533,656,'total_sales','0'), -(9534,656,'_tax_status','taxable'), -(9535,656,'_tax_class','parent'), -(9536,656,'_manage_stock','no'), -(9537,656,'_backorders','no'), -(9538,656,'_sold_individually','no'), -(9539,656,'_virtual','no'), -(9540,656,'_downloadable','no'), -(9541,656,'_download_limit','-1'), -(9542,656,'_download_expiry','-1'), -(9543,656,'_stock',NULL), -(9544,656,'_stock_status','instock'), -(9545,656,'_wc_average_rating','0'), -(9546,656,'_wc_review_count','0'), -(9547,656,'attribute_pa_side','short'), -(9548,656,'_product_version','9.4.1'), -(9549,654,'_sku','TAMANORI-CR-g-long'), -(9550,654,'_regular_price','52'), -(9551,654,'_thumbnail_id','0'), -(9552,654,'_price','52'), -(9553,655,'_sku','TAMANORI-CR-g-pair'), -(9554,655,'_regular_price','75'), -(9555,655,'_thumbnail_id','0'), -(9556,655,'_price','75'), -(9557,656,'_sku','TAMANORI-CR-g-short'), -(9558,656,'_regular_price','50'), -(9559,656,'_thumbnail_id','0'), -(9560,656,'_price','50'), -(9575,659,'_wp_attached_file','2024/09/HADOU-B-opti.jpg'), -(9576,659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/09/HADOU-B-opti.jpg\";s:8:\"filesize\";i:249510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9577,659,'_wp_attachment_image_alt','Hadou wavy ring mix of silver and gold plated silver.'), -(9584,660,'_wp_attached_file','2024/10/IMG_1442.jpg'), -(9585,660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1442.jpg\";s:8:\"filesize\";i:1029972;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1442-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19538;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9586,660,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(9587,306,'_price','48'), -(9588,306,'_price','50'), -(9589,306,'_price','70'), -(9590,306,'_photos_colonne_gauche|||0|value','310'), -(9591,306,'_photos_colonne_droite|||0|value','311'), -(9592,306,'_photos_colonne_droite|||1|value','424'), -(9593,306,'_haiku_details_produit',''), -(9594,312,'_price','50'), -(9595,312,'_price','52'), -(9596,312,'_price','75'), -(9627,664,'_wp_attached_file','2024/10/IMG_1512.jpg'), -(9628,664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1512.jpg\";s:8:\"filesize\";i:873482;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1512-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17996;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9629,664,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), -(9693,671,'_wp_attached_file','2024/10/IMG_1604.jpg'), -(9694,671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1604.jpg\";s:8:\"filesize\";i:876712;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1604-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16608;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9695,671,'_wp_attachment_image_alt','pair of Boroboro long gold plated silver earrings with asymmetrical shapes.'), -(9701,672,'_wp_attached_file','2024/10/IMG_1656-1.jpg'), -(9702,672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IMG_1656-1.jpg\";s:8:\"filesize\";i:1095755;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1656-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9703,672,'_wp_attachment_image_alt','Hattari ear cuff gold plated.'), -(9713,673,'_wp_attached_file','2024/10/IMG_1657.jpg'), -(9714,673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1657.jpg\";s:8:\"filesize\";i:901473;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1657-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16418;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9715,673,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(9850,613,'_price','70'), -(9892,681,'_wp_attached_file','2024/09/DSC9897.jpg'), -(9893,681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9897.jpg\";s:8:\"filesize\";i:689413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9897-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9894,681,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops, one in 18K gold.'), -(9915,684,'_wp_attached_file','2024/09/IMG_1478.jpg'), -(9916,684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/09/IMG_1478.jpg\";s:8:\"filesize\";i:867867;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1478-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9917,684,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), -(9947,689,'_wp_attached_file','2024/10/DSC9341.jpg'), -(9948,689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9341.jpg\";s:8:\"filesize\";i:635454;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9341-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(9949,689,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(9991,263,'_thumbnail_id','1383'), -(10004,700,'_wp_attached_file','2024/10/IMG_1431.jpg'), -(10005,700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1431.jpg\";s:8:\"filesize\";i:1757156;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1431-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10006,700,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10011,702,'_wp_attached_file','2024/10/IMG_1432.jpg'), -(10012,702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1432.jpg\";s:8:\"filesize\";i:540692;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1432-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10013,702,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10021,704,'_wp_attached_file','2024/10/IMG_1493.jpg'), -(10022,704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1493.jpg\";s:8:\"filesize\";i:985049;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1493-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10023,704,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), -(10028,705,'_wp_attached_file','2024/10/IMG_1531.jpg'), -(10029,705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1531.jpg\";s:8:\"filesize\";i:774222;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1531-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10030,705,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(10031,707,'_wp_attached_file','2024/10/IMG_1543.jpg'), -(10032,707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1543.jpg\";s:8:\"filesize\";i:776895;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1543-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10033,707,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), -(10089,714,'_wp_attached_file','2024/10/IMG_1651.jpg'), -(10090,714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1651.jpg\";s:8:\"filesize\";i:639347;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1651-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10091,714,'_wp_attachment_image_alt','Fuyou solo hoop and Hadou ear cuff in sterling silver'), -(10097,715,'_wp_attached_file','2024/10/IMG_1669.jpg'), -(10098,715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1669.jpg\";s:8:\"filesize\";i:642926;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1669-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10099,715,'_wp_attachment_image_alt','Rokku solo hoop silver with tiger\'s eye and Tamanori earrings gold plated silver.'), -(10126,718,'_wp_attached_file','2024/10/IMG_1746.jpg'), -(10127,718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1746.jpg\";s:8:\"filesize\";i:684400;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1746-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10128,718,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings sterling silver.'), -(10159,722,'_wp_attached_file','2024/10/MUGURA-CR2-vrm.jpg'), -(10160,722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-vrm.jpg\";s:8:\"filesize\";i:254284;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10161,722,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), -(10183,725,'_wp_attached_file','2024/10/PIASU-C.jpg'), -(10184,725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/10/PIASU-C.jpg\";s:8:\"filesize\";i:391561;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10185,725,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains.'), -(10186,268,'_thumbnail_id','725'), -(10191,726,'_wp_attached_file','2024/10/ROKKU-B-malachite.jpg'), -(10192,726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:29:\"2024/10/ROKKU-B-malachite.jpg\";s:8:\"filesize\";i:287899;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10193,726,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), -(10194,168,'_thumbnail_id','726'), -(10203,727,'_wp_attached_file','2024/10/ROKKU-C-jaspe.jpg'), -(10204,727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-jaspe.jpg\";s:8:\"filesize\";i:324080;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-jaspe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10205,727,'_wp_attachment_image_alt','Rokku statement necklace in silver with jaspe stone pendant and gold plated clasp.'), -(10209,729,'_wp_attached_file','2024/10/ROKKU-C-tiger.jpg'), -(10210,729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-tiger.jpg\";s:8:\"filesize\";i:325348;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10211,729,'_wp_attachment_image_alt','Rokku statement necklace in silver with tiger\'s eye stone pendant and gold plated clasp.'), -(10212,385,'_thumbnail_id','729'), -(10227,730,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-lapis.jpg'), -(10228,730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-lapis.jpg\";s:8:\"filesize\";i:243829;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10229,730,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with lapis lazuli stone.'), -(10230,731,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-malachite.jpg'), -(10231,731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:35:\"2024/10/ROKKU-CR1-vrm-malachite.jpg\";s:8:\"filesize\";i:224150;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"ROKKU-CR1-vrm-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3790;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10232,731,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with malachite stone.'), -(10233,732,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-tiger.jpg'), -(10234,732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-tiger.jpg\";s:8:\"filesize\";i:239111;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10235,732,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with tiger\'s eye stone.'), -(10260,735,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm.jpg'), -(10261,735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-vrm.jpg\";s:8:\"filesize\";i:262704;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10262,735,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), -(10267,736,'_wp_attached_file','2024/10/TANEMAKI-BR.jpg'), -(10268,736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/TANEMAKI-BR.jpg\";s:8:\"filesize\";i:287017;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10269,736,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), -(10313,743,'_wp_attached_file','2024/11/BOROBORO-B2-g.jpg'), -(10314,743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-g.jpg\";s:8:\"filesize\";i:237826;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4182;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10315,743,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10316,613,'_thumbnail_id','1351'), -(10321,744,'_wp_attached_file','2024/11/BOROBORO-B2-s.jpg'), -(10322,744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-s.jpg\";s:8:\"filesize\";i:221635;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3652;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10323,744,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10324,625,'_thumbnail_id','1349'), -(10341,747,'_wp_attached_file','2024/11/BOROBORO-BO1-g-green.jpg'), -(10342,747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-green.jpg\";s:8:\"filesize\";i:292196;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5376;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10343,747,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), -(10344,748,'_wp_attached_file','2024/11/BOROBORO-BO1-g-brown.jpg'), -(10345,748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-brown.jpg\";s:8:\"filesize\";i:290704;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10346,748,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with tiger\'s eye.'), -(10347,515,'_thumbnail_id','927'), -(10352,749,'_wp_attached_file','2024/11/BOROBORO-BO1-s-brown.jpg'), -(10353,749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-brown.jpg\";s:8:\"filesize\";i:265471;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10354,749,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), -(10355,750,'_wp_attached_file','2024/11/BOROBORO-BO1-s-green.jpg'), -(10356,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-green.jpg\";s:8:\"filesize\";i:266105;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10357,750,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with green aventurine.'), -(10358,521,'_thumbnail_id','925'), -(10363,751,'_wp_attached_file','2024/11/DSC9463.jpg'), -(10364,751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC9463.jpg\";s:8:\"filesize\";i:888805;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9463-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10365,751,'_wp_attachment_image_alt','Kara textured silver hoops'), -(10369,752,'_wp_attached_file','2024/11/HADOU-BOP.jpg'), -(10370,752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/HADOU-BOP.jpg\";s:8:\"filesize\";i:248309;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10371,752,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), -(10372,490,'_thumbnail_id','934'), -(10376,753,'_wp_attached_file','2024/11/HATTARI-BR.jpg'), -(10377,753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/11/HATTARI-BR.jpg\";s:8:\"filesize\";i:302897;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10378,753,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), -(10389,755,'_wp_attached_file','2024/11/IMG_1474.jpg'), -(10390,755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1474.jpg\";s:8:\"filesize\";i:625708;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1474-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10391,755,'_wp_attachment_image_alt','Hadou wavy stud earrings mixing gold and silver.'), -(10395,756,'_wp_attached_file','2024/11/IMG_1481.jpg'), -(10396,756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1481.jpg\";s:8:\"filesize\";i:841107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1481-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10397,756,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), -(10398,757,'_wp_attached_file','2024/11/IMG_1484.jpg'), -(10399,757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1484.jpg\";s:8:\"filesize\";i:691565;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1484-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10400,757,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), -(10405,758,'_wp_attached_file','2024/11/IMG_1501.jpg'), -(10406,758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1501.jpg\";s:8:\"filesize\";i:582559;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1501-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10407,758,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), -(10408,759,'_wp_attached_file','2024/11/IMG_1506.jpg'), -(10409,759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1506.jpg\";s:8:\"filesize\";i:606859;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1506-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10410,759,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), -(10418,761,'_wp_attached_file','2024/11/IMG_1554.jpg'), -(10419,761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1554.jpg\";s:8:\"filesize\";i:648391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1554-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10420,761,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), -(10425,762,'_wp_attached_file','2024/11/IMG_1563.jpg'), -(10426,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1563.jpg\";s:8:\"filesize\";i:711087;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1563-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14072;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(10427,762,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(10448,766,'_sku','FUYOU-BO'), -(10449,766,'total_sales','1'), -(10450,766,'_tax_status','taxable'), -(10451,766,'_tax_class',''), -(10452,766,'_manage_stock','no'), -(10453,766,'_backorders','no'), -(10454,766,'_sold_individually','no'), -(10455,766,'_virtual','no'), -(10456,766,'_downloadable','no'), -(10457,766,'_download_limit','-1'), -(10458,766,'_download_expiry','-1'), -(10460,766,'_stock',NULL), -(10461,766,'_stock_status','instock'), -(10462,766,'_wc_average_rating','0'), -(10463,766,'_wc_review_count','0'), -(10464,766,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(10465,766,'_product_version','10.3.4'), -(10513,766,'_edit_lock','1764544628:1'), -(10559,766,'_edit_last','1'), -(11354,819,'_wp_attached_file','2024/11/HAIKU-ringsizes.jpg'), -(11355,819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:595;s:6:\"height\";i:842;s:4:\"file\";s:27:\"2024/11/HAIKU-ringsizes.jpg\";s:8:\"filesize\";i:41989;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HAIKU-ringsizes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11356,819,'_wp_attachment_image_alt','Ring size guide'), -(11368,102,'_photos_colonne_gauche|||0|value','110'), -(11369,102,'_photos_colonne_droite|||0|value','112'), -(11370,102,'_photos_colonne_droite|||1|value','111'), -(11371,102,'_haiku_details_produit',''), -(11420,820,'_wp_attached_file','2024/09/IKKAN-B-vrm.jpg'), -(11421,820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1277;s:4:\"file\";s:23:\"2024/09/IKKAN-B-vrm.jpg\";s:8:\"filesize\";i:393112;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27681;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5054;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11422,820,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), -(11423,113,'_thumbnail_id','820'), -(11424,113,'_photos_colonne_gauche|||0|value','820'), -(11425,113,'_photos_colonne_droite|||0|value','122'), -(11426,113,'_photos_colonne_droite|||1|value','684'), -(11427,113,'_haiku_details_produit',''), -(11428,821,'_wp_attached_file','2024/09/KARA-B.jpg'), -(11429,821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:18:\"2024/09/KARA-B.jpg\";s:8:\"filesize\";i:460992;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"KARA-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11430,822,'_wp_attached_file','2024/09/KARA-B-1.jpg'), -(11431,822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/09/KARA-B-1.jpg\";s:8:\"filesize\";i:429750;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22093;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11432,821,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(11433,822,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), -(11456,825,'_wp_attached_file','2024/10/IMG_1505.jpg'), -(11457,825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1505.jpg\";s:8:\"filesize\";i:460176;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1505-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11458,825,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire.'), -(11463,826,'_wp_attached_file','2024/10/IMG_1582.jpg'), -(11464,826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1195;s:6:\"height\";i:1195;s:4:\"file\";s:20:\"2024/10/IMG_1582.jpg\";s:8:\"filesize\";i:1286747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1582-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1729428985\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11465,826,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold.'), -(11485,828,'_wp_attached_file','2024/10/ROKKU-C-lapis-copy.jpg'), -(11486,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-C-lapis-copy.jpg\";s:8:\"filesize\";i:546484;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-C-lapis-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11487,828,'_wp_attachment_image_alt','Rokku statement necklace in silver with lapis lazuli stone pendant and gold plated clasp.'), -(11495,312,'_thumbnail_id','735'), -(11496,312,'_photos_colonne_gauche|||0|value','735'), -(11497,312,'_photos_colonne_droite|||0|value','660'), -(11498,312,'_photos_colonne_droite|||1|value','317'), -(11499,312,'_haiku_details_produit',''), -(11500,829,'_wp_attached_file','2024/11/IMG_1460.jpg'), -(11501,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1460.jpg\";s:8:\"filesize\";i:934957;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1460-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11502,829,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), -(11509,830,'_wp_attached_file','2024/11/IMG_1473.jpg'), -(11510,830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1473.jpg\";s:8:\"filesize\";i:632613;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1473-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11511,830,'_wp_attachment_image_alt','Kara textured ear cuff in silver and gold plated'), -(11515,133,'_thumbnail_id','822'), -(11524,831,'_wp_attached_file','2024/11/IMG_1524.jpg'), -(11525,831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1921;s:4:\"file\";s:20:\"2024/11/IMG_1524.jpg\";s:8:\"filesize\";i:911352;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1524-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11526,831,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), -(11531,832,'_wp_attached_file','2024/11/IMG_1525.jpg'), -(11532,832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1525.jpg\";s:8:\"filesize\";i:985758;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(11533,832,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), -(11545,834,'_wp_attached_file','2024/11/KARA-CR-g.jpg'), -(11546,834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-g.jpg\";s:8:\"filesize\";i:407384;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22482;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4712;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11547,834,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(11551,835,'_wp_attached_file','2024/11/KARA-CR-s.jpg'), -(11552,835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-s.jpg\";s:8:\"filesize\";i:384089;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24691;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3818;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11553,835,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), -(11554,554,'_thumbnail_id','935'), -(11558,545,'_thumbnail_id','938'), -(11567,836,'_wp_attached_file','2024/11/KARA-EC-vrm.jpg'), -(11568,836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/11/KARA-EC-vrm.jpg\";s:8:\"filesize\";i:361036;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3165;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(11569,836,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver'), -(11570,447,'_thumbnail_id','939'), -(11730,851,'_edit_lock','1733268183:1'), -(11731,851,'_edit_last','1'), -(11732,851,'discount_type','percent'), -(11733,851,'coupon_amount','20'), -(11734,851,'individual_use','no'), -(11735,851,'usage_limit','0'), -(11736,851,'usage_limit_per_user','1'), -(11737,851,'limit_usage_to_x_items','0'), -(11738,851,'usage_count','0'), -(11739,851,'date_expires','1733266800'), -(11740,851,'free_shipping','no'), -(11741,851,'exclude_sale_items','no'), -(11951,532,'_regular_price','95'), -(11952,532,'_price','95'), -(11955,133,'_photos_colonne_gauche|||0|value','822'), -(11956,133,'_photos_colonne_droite|||0|value','166'), -(11957,133,'_photos_colonne_droite|||1|value','142'), -(11958,133,'_photos_colonne_droite|||2|value','821'), -(11959,133,'_photos_colonne_droite|||3|value','167'), -(11960,133,'_photos_colonne_droite|||4|value','143'), -(11961,133,'_haiku_details_produit',''), -(11962,200,'_thumbnail_id','0'), -(12017,240,'_photos_colonne_gauche|||0|value','243'), -(12018,240,'_photos_colonne_droite|||0|value','244'), -(12019,240,'_photos_colonne_droite|||1|value','245'), -(12020,240,'_haiku_details_produit',''), -(12025,385,'_price','120'), -(12026,385,'_photos_colonne_gauche|||0|value','729'), -(12027,385,'_photos_colonne_droite|||0|value','487'), -(12028,385,'_photos_colonne_droite|||1|value','727'), -(12029,385,'_photos_colonne_droite|||2|value','705'), -(12030,385,'_photos_colonne_droite|||3|value','828'), -(12031,385,'_photos_colonne_droite|||4|value','707'), -(12032,385,'_haiku_details_produit',''), -(12095,490,'_price','35'), -(12096,490,'_price','50'), -(12200,925,'_wp_attached_file','2024/11/BORO-BO1-arg.jpg'), -(12201,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/11/BORO-BO1-arg.jpg\";s:8:\"filesize\";i:162384;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BORO-BO1-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12202,925,'_wp_attachment_image_alt','Boroboro asymmetrical silver earrings with honey calcite beads.'), -(12203,926,'_variation_description',''), -(12204,926,'total_sales','0'), -(12205,926,'_tax_status','taxable'), -(12206,926,'_tax_class','parent'), -(12207,926,'_manage_stock','no'), -(12208,926,'_backorders','no'), -(12209,926,'_sold_individually','no'), -(12210,926,'_virtual','no'), -(12211,926,'_downloadable','no'), -(12212,926,'_download_limit','-1'), -(12213,926,'_download_expiry','-1'), -(12214,926,'_stock',NULL), -(12215,926,'_stock_status','instock'), -(12216,926,'_wc_average_rating','0'), -(12217,926,'_wc_review_count','0'), -(12218,926,'attribute_pa_stone','honey-jade'), -(12219,926,'_product_version','9.9.3'), -(12221,926,'_sku','BOROBORO-BO1-s-honey'), -(12222,926,'_regular_price','60'), -(12223,926,'_thumbnail_id','0'), -(12224,926,'_price','60'), -(12225,521,'_price','60'), -(12230,927,'_wp_attached_file','2024/11/BORO-BO1-or.jpg'), -(12231,927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/BORO-BO1-or.jpg\";s:8:\"filesize\";i:168334;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"BORO-BO1-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12232,927,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated silver earrings with green aventurine beads.'), -(12237,928,'_wp_attached_file','2024/10/MUGURA-BOP.jpg'), -(12238,928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/MUGURA-BOP.jpg\";s:8:\"filesize\";i:155395;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MUGURA-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12239,928,'_wp_attachment_image_alt','Mugura trio of stud earrings in silver and gold plated silver with dangling pearls.'), -(12300,934,'_wp_attached_file','2024/11/HADOU-BOP-1.jpg'), -(12301,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/HADOU-BOP-1.jpg\";s:8:\"filesize\";i:160091;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-BOP-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18088;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12302,934,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), -(12303,490,'_photos_colonne_gauche|||0|value','934'), -(12304,490,'_photos_colonne_droite|||0|value','755'), -(12305,490,'_photos_colonne_droite|||1|value','752'), -(12306,490,'_haiku_details_produit',''), -(12307,935,'_wp_attached_file','2024/11/KARA-CR-s-1.jpg'), -(12308,935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-s-1.jpg\";s:8:\"filesize\";i:173653;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12309,935,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), -(12310,936,'_wp_attached_file','2024/11/DSC00650.jpg'), -(12311,936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00650.jpg\";s:8:\"filesize\";i:1683107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00650-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989922\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12312,936,'_wp_attachment_image_alt','Kara small textured silver hoops.'), -(12313,937,'_wp_attached_file','2024/11/DSC00655.jpg'), -(12314,937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00655.jpg\";s:8:\"filesize\";i:1563690;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00655-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12315,937,'_wp_attachment_image_alt','Kara small textured silver hoops.'), -(12321,938,'_wp_attached_file','2024/11/KARA-CR-g-1.jpg'), -(12322,938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-g-1.jpg\";s:8:\"filesize\";i:170852;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12323,938,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), -(12328,939,'_wp_attached_file','2024/11/KARA-EC-g.jpg'), -(12329,939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/KARA-EC-g.jpg\";s:8:\"filesize\";i:162501;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12330,939,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver.'), -(12331,447,'_photos_colonne_gauche|||0|value','939'), -(12332,447,'_photos_colonne_droite|||0|value','830'), -(12333,447,'_photos_colonne_droite|||1|value','939'), -(12334,447,'_haiku_details_produit',''), -(12335,940,'_wp_attached_file','2024/10/KARA-EC-s.jpg'), -(12336,940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/KARA-EC-s.jpg\";s:8:\"filesize\";i:157285;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12337,940,'_wp_attachment_image_alt','Kara textured ear cuff in silver.'), -(12338,435,'_photos_colonne_gauche|||0|value','940'), -(12339,435,'_photos_colonne_droite|||0|value','437'), -(12340,435,'_photos_colonne_droite|||1|value','940'), -(12341,435,'_haiku_details_produit',''), -(12342,941,'_edit_lock','1762779661:1'), -(12343,941,'_edit_last','1'), -(12347,943,'_wp_attached_file','2025/06/DSC00671.jpg'), -(12348,943,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00671.jpg\";s:8:\"filesize\";i:1219328;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00671-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31560;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12349,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), -(12350,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), -(12351,941,'total_sales','0'), -(12352,941,'_tax_status','taxable'), -(12353,941,'_tax_class',''), -(12354,941,'_manage_stock','no'), -(12355,941,'_backorders','no'), -(12356,941,'_sold_individually','no'), -(12357,941,'_virtual','no'), -(12358,941,'_downloadable','no'), -(12359,941,'_download_limit','-1'), -(12360,941,'_download_expiry','-1'), -(12361,941,'_stock',NULL), -(12362,941,'_stock_status','instock'), -(12363,941,'_wc_average_rating','0'), -(12364,941,'_wc_review_count','0'), -(12365,941,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12366,941,'_product_version','10.3.4'), -(12367,944,'_variation_description',''), -(12368,944,'total_sales','0'), -(12369,944,'_tax_status','taxable'), -(12370,944,'_tax_class','parent'), -(12371,944,'_manage_stock','no'), -(12372,944,'_backorders','no'), -(12373,944,'_sold_individually','no'), -(12374,944,'_virtual','no'), -(12375,944,'_downloadable','no'), -(12376,944,'_download_limit','-1'), -(12377,944,'_download_expiry','-1'), -(12378,944,'_stock',NULL), -(12379,944,'_stock_status','instock'), -(12380,944,'_wc_average_rating','0'), -(12381,944,'_wc_review_count','0'), -(12382,944,'attribute_pa_size','50'), -(12383,944,'_product_version','9.9.3'), -(12384,945,'_variation_description',''), -(12385,945,'total_sales','0'), -(12386,945,'_tax_status','taxable'), -(12387,945,'_tax_class','parent'), -(12388,945,'_manage_stock','no'), -(12389,945,'_backorders','no'), -(12390,945,'_sold_individually','no'), -(12391,945,'_virtual','no'), -(12392,945,'_downloadable','no'), -(12393,945,'_download_limit','-1'), -(12394,945,'_download_expiry','-1'), -(12395,945,'_stock',NULL), -(12396,945,'_stock_status','instock'), -(12397,945,'_wc_average_rating','0'), -(12398,945,'_wc_review_count','0'), -(12399,945,'attribute_pa_size','52'), -(12400,945,'_product_version','9.9.3'), -(12401,946,'_variation_description',''), -(12402,946,'total_sales','0'), -(12403,946,'_tax_status','taxable'), -(12404,946,'_tax_class','parent'), -(12405,946,'_manage_stock','no'), -(12406,946,'_backorders','no'), -(12407,946,'_sold_individually','no'), -(12408,946,'_virtual','no'), -(12409,946,'_downloadable','no'), -(12410,946,'_download_limit','-1'), -(12411,946,'_download_expiry','-1'), -(12412,946,'_stock',NULL), -(12413,946,'_stock_status','instock'), -(12414,946,'_wc_average_rating','0'), -(12415,946,'_wc_review_count','0'), -(12416,946,'attribute_pa_size','54'), -(12417,946,'_product_version','9.9.3'), -(12418,947,'_variation_description',''), -(12419,947,'total_sales','0'), -(12420,947,'_tax_status','taxable'), -(12421,947,'_tax_class','parent'), -(12422,947,'_manage_stock','no'), -(12423,947,'_backorders','no'), -(12424,947,'_sold_individually','no'), -(12425,947,'_virtual','no'), -(12426,947,'_downloadable','no'), -(12427,947,'_download_limit','-1'), -(12428,947,'_download_expiry','-1'), -(12429,947,'_stock',NULL), -(12430,947,'_stock_status','instock'), -(12431,947,'_wc_average_rating','0'), -(12432,947,'_wc_review_count','0'), -(12433,947,'attribute_pa_size','56'), -(12434,947,'_product_version','9.9.3'), -(12435,948,'_variation_description',''), -(12436,948,'total_sales','0'), -(12437,948,'_tax_status','taxable'), -(12438,948,'_tax_class','parent'), -(12439,948,'_manage_stock','no'), -(12440,948,'_backorders','no'), -(12441,948,'_sold_individually','no'), -(12442,948,'_virtual','no'), -(12443,948,'_downloadable','no'), -(12444,948,'_download_limit','-1'), -(12445,948,'_download_expiry','-1'), -(12446,948,'_stock',NULL), -(12447,948,'_stock_status','instock'), -(12448,948,'_wc_average_rating','0'), -(12449,948,'_wc_review_count','0'), -(12450,948,'attribute_pa_size','58'), -(12451,948,'_product_version','9.9.3'), -(12452,949,'_variation_description',''), -(12453,949,'total_sales','0'), -(12454,949,'_tax_status','taxable'), -(12455,949,'_tax_class','parent'), -(12456,949,'_manage_stock','no'), -(12457,949,'_backorders','no'), -(12458,949,'_sold_individually','no'), -(12459,949,'_virtual','no'), -(12460,949,'_downloadable','no'), -(12461,949,'_download_limit','-1'), -(12462,949,'_download_expiry','-1'), -(12463,949,'_stock',NULL), -(12464,949,'_stock_status','instock'), -(12465,949,'_wc_average_rating','0'), -(12466,949,'_wc_review_count','0'), -(12467,949,'attribute_pa_size','60'), -(12468,949,'_product_version','9.9.3'), -(12469,950,'_variation_description',''), -(12470,950,'total_sales','0'), -(12471,950,'_tax_status','taxable'), -(12472,950,'_tax_class','parent'), -(12473,950,'_manage_stock','no'), -(12474,950,'_backorders','no'), -(12475,950,'_sold_individually','no'), -(12476,950,'_virtual','no'), -(12477,950,'_downloadable','no'), -(12478,950,'_download_limit','-1'), -(12479,950,'_download_expiry','-1'), -(12480,950,'_stock',NULL), -(12481,950,'_stock_status','instock'), -(12482,950,'_wc_average_rating','0'), -(12483,950,'_wc_review_count','0'), -(12484,950,'attribute_pa_size','62'), -(12485,950,'_product_version','9.9.3'), -(12486,951,'_variation_description',''), -(12487,951,'total_sales','0'), -(12488,951,'_tax_status','taxable'), -(12489,951,'_tax_class','parent'), -(12490,951,'_manage_stock','no'), -(12491,951,'_backorders','no'), -(12492,951,'_sold_individually','no'), -(12493,951,'_virtual','no'), -(12494,951,'_downloadable','no'), -(12495,951,'_download_limit','-1'), -(12496,951,'_download_expiry','-1'), -(12497,951,'_stock',NULL), -(12498,951,'_stock_status','instock'), -(12499,951,'_wc_average_rating','0'), -(12500,951,'_wc_review_count','0'), -(12501,951,'attribute_pa_size','64'), -(12502,951,'_product_version','9.9.3'), -(12503,944,'_sku','UTEKI-B-s-50'), -(12504,944,'_regular_price','110'), -(12505,944,'_thumbnail_id','0'), -(12506,944,'_price','110'), -(12507,945,'_sku','UTEKI-B-s-52'), -(12508,945,'_regular_price','110'), -(12509,945,'_thumbnail_id','0'), -(12510,945,'_price','110'), -(12511,946,'_sku','UTEKI-B-s-54'), -(12512,946,'_regular_price','110'), -(12513,946,'_thumbnail_id','0'), -(12514,946,'_price','110'), -(12515,947,'_sku','UTEKI-B-s-56'), -(12516,947,'_regular_price','110'), -(12517,947,'_thumbnail_id','0'), -(12518,947,'_price','110'), -(12519,948,'_sku','UTEKI-B-s-58'), -(12520,948,'_regular_price','110'), -(12521,948,'_thumbnail_id','0'), -(12522,948,'_price','110'), -(12523,949,'_sku','UTEKI-B-s-60'), -(12524,949,'_regular_price','110'), -(12525,949,'_thumbnail_id','0'), -(12526,949,'_price','110'), -(12527,950,'_sku','UTEKI-B-s-62'), -(12528,950,'_regular_price','110'), -(12529,950,'_thumbnail_id','0'), -(12530,950,'_price','110'), -(12531,951,'_sku','UTEKI-B-s-64'), -(12532,951,'_regular_price','110'), -(12533,951,'_thumbnail_id','0'), -(12534,951,'_price','110'), -(12535,941,'_price','110'), -(12537,941,'_regular_price','110'), -(12548,953,'total_sales','0'), -(12549,953,'_tax_status','taxable'), -(12550,953,'_tax_class',''), -(12551,953,'_manage_stock','no'), -(12552,953,'_backorders','no'), -(12553,953,'_sold_individually','no'), -(12554,953,'_virtual','no'), -(12555,953,'_downloadable','no'), -(12556,953,'_download_limit','-1'), -(12557,953,'_download_expiry','-1'), -(12558,953,'_thumbnail_id','1342'), -(12559,953,'_stock',NULL), -(12560,953,'_stock_status','instock'), -(12561,953,'_wc_average_rating','0'), -(12562,953,'_wc_review_count','0'), -(12563,953,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12564,953,'_product_version','10.3.4'), -(12568,954,'_variation_description',''), -(12569,954,'_sku','UTEKI-B-s-50-1'), -(12570,954,'_regular_price','115'), -(12571,954,'total_sales','0'), -(12572,954,'_tax_status','taxable'), -(12573,954,'_tax_class','parent'), -(12574,954,'_manage_stock','no'), -(12575,954,'_backorders','no'), -(12576,954,'_sold_individually','no'), -(12577,954,'_virtual','no'), -(12578,954,'_downloadable','no'), -(12579,954,'_download_limit','-1'), -(12580,954,'_download_expiry','-1'), -(12581,954,'_thumbnail_id','0'), -(12582,954,'_stock',NULL), -(12583,954,'_stock_status','instock'), -(12584,954,'_wc_average_rating','0'), -(12585,954,'_wc_review_count','0'), -(12586,954,'attribute_pa_size','50'), -(12587,954,'_price','115'), -(12588,954,'_product_version','9.9.3'), -(12589,955,'_variation_description',''), -(12590,955,'_sku','UTEKI-B-s-52-1'), -(12591,955,'_regular_price','115'), -(12592,955,'total_sales','0'), -(12593,955,'_tax_status','taxable'), -(12594,955,'_tax_class','parent'), -(12595,955,'_manage_stock','no'), -(12596,955,'_backorders','no'), -(12597,955,'_sold_individually','no'), -(12598,955,'_virtual','no'), -(12599,955,'_downloadable','no'), -(12600,955,'_download_limit','-1'), -(12601,955,'_download_expiry','-1'), -(12602,955,'_thumbnail_id','0'), -(12603,955,'_stock',NULL), -(12604,955,'_stock_status','instock'), -(12605,955,'_wc_average_rating','0'), -(12606,955,'_wc_review_count','0'), -(12607,955,'attribute_pa_size','52'), -(12608,955,'_price','115'), -(12609,955,'_product_version','9.9.3'), -(12610,956,'_variation_description',''), -(12611,956,'_sku','UTEKI-B-s-54-1'), -(12612,956,'_regular_price','115'), -(12613,956,'total_sales','0'), -(12614,956,'_tax_status','taxable'), -(12615,956,'_tax_class','parent'), -(12616,956,'_manage_stock','no'), -(12617,956,'_backorders','no'), -(12618,956,'_sold_individually','no'), -(12619,956,'_virtual','no'), -(12620,956,'_downloadable','no'), -(12621,956,'_download_limit','-1'), -(12622,956,'_download_expiry','-1'), -(12623,956,'_thumbnail_id','0'), -(12624,956,'_stock',NULL), -(12625,956,'_stock_status','instock'), -(12626,956,'_wc_average_rating','0'), -(12627,956,'_wc_review_count','0'), -(12628,956,'attribute_pa_size','54'), -(12629,956,'_price','115'), -(12630,956,'_product_version','9.9.3'), -(12631,957,'_variation_description',''), -(12632,957,'_sku','UTEKI-B-s-56-1'), -(12633,957,'_regular_price','115'), -(12634,957,'total_sales','0'), -(12635,957,'_tax_status','taxable'), -(12636,957,'_tax_class','parent'), -(12637,957,'_manage_stock','no'), -(12638,957,'_backorders','no'), -(12639,957,'_sold_individually','no'), -(12640,957,'_virtual','no'), -(12641,957,'_downloadable','no'), -(12642,957,'_download_limit','-1'), -(12643,957,'_download_expiry','-1'), -(12644,957,'_thumbnail_id','0'), -(12645,957,'_stock',NULL), -(12646,957,'_stock_status','instock'), -(12647,957,'_wc_average_rating','0'), -(12648,957,'_wc_review_count','0'), -(12649,957,'attribute_pa_size','56'), -(12650,957,'_price','115'), -(12651,957,'_product_version','9.9.3'), -(12652,958,'_variation_description',''), -(12653,958,'_sku','UTEKI-B-s-58-1'), -(12654,958,'_regular_price','115'), -(12655,958,'total_sales','0'), -(12656,958,'_tax_status','taxable'), -(12657,958,'_tax_class','parent'), -(12658,958,'_manage_stock','no'), -(12659,958,'_backorders','no'), -(12660,958,'_sold_individually','no'), -(12661,958,'_virtual','no'), -(12662,958,'_downloadable','no'), -(12663,958,'_download_limit','-1'), -(12664,958,'_download_expiry','-1'), -(12665,958,'_thumbnail_id','0'), -(12666,958,'_stock',NULL), -(12667,958,'_stock_status','instock'), -(12668,958,'_wc_average_rating','0'), -(12669,958,'_wc_review_count','0'), -(12670,958,'attribute_pa_size','58'), -(12671,958,'_price','115'), -(12672,958,'_product_version','9.9.3'), -(12673,959,'_variation_description',''), -(12674,959,'_sku','UTEKI-B-s-60-1'), -(12675,959,'_regular_price','115'), -(12676,959,'total_sales','0'), -(12677,959,'_tax_status','taxable'), -(12678,959,'_tax_class','parent'), -(12679,959,'_manage_stock','no'), -(12680,959,'_backorders','no'), -(12681,959,'_sold_individually','no'), -(12682,959,'_virtual','no'), -(12683,959,'_downloadable','no'), -(12684,959,'_download_limit','-1'), -(12685,959,'_download_expiry','-1'), -(12686,959,'_thumbnail_id','0'), -(12687,959,'_stock',NULL), -(12688,959,'_stock_status','instock'), -(12689,959,'_wc_average_rating','0'), -(12690,959,'_wc_review_count','0'), -(12691,959,'attribute_pa_size','60'), -(12692,959,'_price','115'), -(12693,959,'_product_version','9.9.3'), -(12694,960,'_variation_description',''), -(12695,960,'_sku','UTEKI-B-s-62-1'), -(12696,960,'_regular_price','115'), -(12697,960,'total_sales','0'), -(12698,960,'_tax_status','taxable'), -(12699,960,'_tax_class','parent'), -(12700,960,'_manage_stock','no'), -(12701,960,'_backorders','no'), -(12702,960,'_sold_individually','no'), -(12703,960,'_virtual','no'), -(12704,960,'_downloadable','no'), -(12705,960,'_download_limit','-1'), -(12706,960,'_download_expiry','-1'), -(12707,960,'_thumbnail_id','0'), -(12708,960,'_stock',NULL), -(12709,960,'_stock_status','instock'), -(12710,960,'_wc_average_rating','0'), -(12711,960,'_wc_review_count','0'), -(12712,960,'attribute_pa_size','62'), -(12713,960,'_price','115'), -(12714,960,'_product_version','9.9.3'), -(12715,961,'_variation_description',''), -(12716,961,'_sku','UTEKI-B-s-64-1'), -(12717,961,'_regular_price','115'), -(12718,961,'total_sales','0'), -(12719,961,'_tax_status','taxable'), -(12720,961,'_tax_class','parent'), -(12721,961,'_manage_stock','no'), -(12722,961,'_backorders','no'), -(12723,961,'_sold_individually','no'), -(12724,961,'_virtual','no'), -(12725,961,'_downloadable','no'), -(12726,961,'_download_limit','-1'), -(12727,961,'_download_expiry','-1'), -(12728,961,'_thumbnail_id','0'), -(12729,961,'_stock',NULL), -(12730,961,'_stock_status','instock'), -(12731,961,'_wc_average_rating','0'), -(12732,961,'_wc_review_count','0'), -(12733,961,'attribute_pa_size','64'), -(12734,961,'_price','115'), -(12735,961,'_product_version','9.9.3'), -(12737,953,'_edit_lock','1762779847:1'), -(12738,962,'_wp_attached_file','2025/06/UTEKI-B-g.jpg'), -(12739,962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-B-g.jpg\";s:8:\"filesize\";i:181915;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12740,953,'_edit_last','1'), -(12741,962,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated sterling silver'), -(12742,963,'_wp_attached_file','2025/06/DSC00670.jpg'), -(12743,963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00670.jpg\";s:8:\"filesize\";i:1396939;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00670-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990764\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12744,963,'_wp_attachment_image_alt',''), -(12745,953,'_price','115'), -(12754,268,'_photos_colonne_gauche|||0|value','725'), -(12755,268,'_photos_colonne_droite|||0|value','704'), -(12756,268,'_photos_colonne_droite|||1|value','270'), -(12757,268,'_haiku_details_produit',''), -(12758,288,'_price','60'), -(12759,288,'_price','90'), -(12764,285,'_price','55'), -(12765,285,'_price','85'), -(12798,968,'_wp_attached_file','2024/09/PIASU-B-s.jpg'), -(12799,968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/PIASU-B-s.jpg\";s:8:\"filesize\";i:187836;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12800,968,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops.'), -(12807,168,'_price','100'), -(12808,168,'_price','110'), -(12809,168,'_photos_colonne_gauche|||0|value','726'), -(12810,168,'_photos_colonne_droite|||0|value','180'), -(12811,168,'_photos_colonne_droite|||1|value','177'), -(12812,168,'_photos_colonne_droite|||2|value','178'), -(12813,168,'_photos_colonne_droite|||3|value','182'), -(12814,168,'_photos_colonne_droite|||4|value','179'), -(12815,168,'_photos_colonne_droite|||5|value','826'), -(12816,168,'_haiku_details_produit',''), -(12817,969,'_wp_attached_file','2024/10/TANEMAKI-C-1.jpg'), -(12818,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/TANEMAKI-C-1.jpg\";s:8:\"filesize\";i:581610;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"TANEMAKI-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(12819,969,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), -(12828,521,'_photos_colonne_gauche|||0|value','925'), -(12829,521,'_photos_colonne_droite|||0|value','831'), -(12830,521,'_photos_colonne_droite|||1|value','749'), -(12831,521,'_haiku_details_produit',''), -(12832,515,'_photos_colonne_gauche|||0|value','927'), -(12833,515,'_photos_colonne_droite|||0|value','832'), -(12834,515,'_photos_colonne_droite|||1|value','747'), -(12835,515,'_haiku_details_produit',''), -(12836,982,'total_sales','0'), -(12837,982,'_tax_status','taxable'), -(12838,982,'_tax_class',''), -(12839,982,'_manage_stock','no'), -(12840,982,'_backorders','no'), -(12841,982,'_sold_individually','no'), -(12842,982,'_virtual','no'), -(12843,982,'_downloadable','no'), -(12844,982,'_download_limit','-1'), -(12845,982,'_download_expiry','-1'), -(12847,982,'_stock',NULL), -(12848,982,'_stock_status','instock'), -(12849,982,'_wc_average_rating','0'), -(12850,982,'_wc_review_count','0'), -(12851,982,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(12852,982,'_product_version','10.1.2'), -(13024,982,'_price','95'), -(13025,982,'_edit_lock','1758717424:1'), -(13026,982,'_edit_last','1'), -(13030,992,'_wp_attached_file','2025/06/DSC00689.jpg'), -(13031,992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4912;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00689.jpg\";s:8:\"filesize\";i:1445969;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00689-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13032,992,'_wp_attachment_image_alt','Uteki necklaces with a droplet pendant and prehnite oval stone.'), -(13033,993,'_wp_attached_file','2025/06/DSC00684.jpg'), -(13034,993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2137;s:6:\"height\";i:2138;s:4:\"file\";s:20:\"2025/06/DSC00684.jpg\";s:8:\"filesize\";i:950776;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00684-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13035,993,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. Silver version'), -(13036,982,'_sku','UTEKI-C-s'), -(13037,982,'_regular_price','95'), -(13042,994,'_sku','UTEKI-C-g'), -(13043,994,'_regular_price','100'), -(13044,994,'total_sales','0'), -(13045,994,'_tax_status','taxable'), -(13046,994,'_tax_class',''), -(13047,994,'_manage_stock','no'), -(13048,994,'_backorders','no'), -(13049,994,'_sold_individually','no'), -(13050,994,'_virtual','no'), -(13051,994,'_downloadable','no'), -(13052,994,'_download_limit','-1'), -(13053,994,'_download_expiry','-1'), -(13054,994,'_thumbnail_id','1345'), -(13055,994,'_stock',NULL), -(13056,994,'_stock_status','instock'), -(13057,994,'_wc_average_rating','0'), -(13058,994,'_wc_review_count','0'), -(13059,994,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(13060,994,'_product_version','9.9.5'), -(13061,994,'_price','100'), -(13066,994,'_edit_lock','1755446838:1'), -(13070,994,'_edit_last','1'), -(13071,996,'_wp_attached_file','2025/06/DSC00699.jpg'), -(13072,996,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00699.jpg\";s:8:\"filesize\";i:1161535;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00699-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13073,996,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone.'), -(13078,941,'_sku','UTEKI-B-s'), -(13082,953,'_sku','UTEKI-B-g'), -(13100,1004,'_sku','PIASU-CR'), -(13101,1004,'total_sales','1'), -(13102,1004,'_tax_status','taxable'), -(13103,1004,'_tax_class',''), -(13104,1004,'_manage_stock','no'), -(13105,1004,'_backorders','no'), -(13106,1004,'_sold_individually','no'), -(13107,1004,'_virtual','no'), -(13108,1004,'_downloadable','no'), -(13109,1004,'_download_limit','-1'), -(13110,1004,'_download_expiry','-1'), -(13112,1004,'_stock',NULL), -(13113,1004,'_stock_status','instock'), -(13114,1004,'_wc_average_rating','0'), -(13115,1004,'_wc_review_count','0'), -(13116,1004,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(13117,1004,'_product_version','10.1.0'), -(13124,1005,'_variation_description',''), -(13125,1005,'_sku','PIASU-CR-pair'), -(13126,1005,'_regular_price','70'), -(13127,1005,'total_sales','0'), -(13128,1005,'_tax_status','taxable'), -(13129,1005,'_tax_class','parent'), -(13130,1005,'_manage_stock','no'), -(13131,1005,'_backorders','no'), -(13132,1005,'_sold_individually','no'), -(13133,1005,'_virtual','no'), -(13134,1005,'_downloadable','no'), -(13135,1005,'_download_limit','-1'), -(13136,1005,'_download_expiry','-1'), -(13137,1005,'_thumbnail_id','0'), -(13138,1005,'_stock',NULL), -(13139,1005,'_stock_status','instock'), -(13140,1005,'_wc_average_rating','0'), -(13141,1005,'_wc_review_count','0'), -(13142,1005,'attribute_pa_side','pair'), -(13143,1005,'_price','70'), -(13144,1005,'_product_version','9.9.5'), -(13189,1004,'_edit_lock','1757163627:1'), -(13190,1004,'_edit_last','1'), -(13191,1008,'_wp_attached_file','2025/07/PIASU-CR.jpg'), -(13192,1008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2025/07/PIASU-CR.jpg\";s:8:\"filesize\";i:167258;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PIASU-CR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17860;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13193,1008,'_wp_attachment_image_alt','Piasu open hoops in sterling silver'), -(13194,1009,'_wp_attached_file','2025/07/IMG_4071.jpg'), -(13195,1009,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2098;s:6:\"height\";i:2800;s:4:\"file\";s:20:\"2025/07/IMG_4071.jpg\";s:8:\"filesize\";i:1221354;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_4071-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28289;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:4:\"1.78\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 14 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1751569172\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.86\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13196,1009,'_wp_attachment_image_alt',''), -(13197,1010,'_wp_attached_file','2025/07/DSC00642.jpg'), -(13198,1010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2688;s:6:\"height\";i:2688;s:4:\"file\";s:20:\"2025/07/DSC00642.jpg\";s:8:\"filesize\";i:1374954;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00642-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989772\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13199,1010,'_wp_attachment_image_alt','Piasu open hoops in sterling silver'), -(13200,1011,'_variation_description',''), -(13201,1011,'total_sales','0'), -(13202,1011,'_tax_status','taxable'), -(13203,1011,'_tax_class','parent'), -(13204,1011,'_manage_stock','no'), -(13205,1011,'_backorders','no'), -(13206,1011,'_sold_individually','no'), -(13207,1011,'_virtual','no'), -(13208,1011,'_downloadable','no'), -(13209,1011,'_download_limit','-1'), -(13210,1011,'_download_expiry','-1'), -(13211,1011,'_stock',NULL), -(13212,1011,'_stock_status','instock'), -(13213,1011,'_wc_average_rating','0'), -(13214,1011,'_wc_review_count','0'), -(13215,1011,'attribute_pa_side','one'), -(13216,1011,'_product_version','9.9.5'), -(13222,1011,'_sku','PIASU-CR-one'), -(13223,1011,'_regular_price','45'), -(13224,1011,'_thumbnail_id','0'), -(13225,1011,'_price','45'), -(13226,1004,'_price','45'), -(13227,1004,'_price','70'), -(13902,1342,'_wp_attached_file','2025/08/UTEKI-B-g.jpg'), -(13903,1342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2025/08/UTEKI-B-g.jpg\";s:8:\"filesize\";i:1066961;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18584;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5046;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390728870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13904,1342,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated sterling silver'), -(13905,1343,'_wp_attached_file','2025/08/UTEKI-B-s.jpg'), -(13906,1343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2025/08/UTEKI-B-s.jpg\";s:8:\"filesize\";i:1181300;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17819;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"UTEKI-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4375;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390728769\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13907,1343,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver'), -(13908,941,'_thumbnail_id','1343'), -(13917,1345,'_wp_attached_file','2025/06/UTEKI-C-g-1.jpg'), -(13918,1345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:23:\"2025/06/UTEKI-C-g-1.jpg\";s:8:\"filesize\";i:1597909;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"UTEKI-C-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19736;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"UTEKI-C-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6035;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390800588\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13919,1345,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In gold plated silver'), -(13920,994,'_photos_colonne_gauche|||0|value','1345'), -(13921,994,'_photos_colonne_droite|||0|value','992'), -(13922,994,'_photos_colonne_droite|||1|value','996'), -(13923,994,'_haiku_details_produit',''), -(13924,1346,'_wp_attached_file','2025/06/UTEKI-C-s-1.jpg'), -(13925,1346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3717;s:6:\"height\";i:2974;s:4:\"file\";s:23:\"2025/06/UTEKI-C-s-1.jpg\";s:8:\"filesize\";i:753912;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"UTEKI-C-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14436;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"UTEKI-C-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4119;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390800746\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13926,1346,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In gold plated silver.'), -(13927,982,'_thumbnail_id','1346'), -(13932,1347,'_wp_attached_file','2024/11/BOROBORO-B-st.jpg'), -(13933,1347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3651;s:6:\"height\";i:2921;s:4:\"file\";s:25:\"2024/11/BOROBORO-B-st.jpg\";s:8:\"filesize\";i:764276;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"BOROBORO-B-st-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16603;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B-st-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3355;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729086\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13934,1347,'_wp_attachment_image_alt','BoroBoro minimalist sterling silver ring with movable tiger eye bead.'), -(13935,1348,'_wp_attached_file','2024/11/BOROBORO-B.jpg'), -(13936,1348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:22:\"2024/11/BOROBORO-B.jpg\";s:8:\"filesize\";i:964649;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"BOROBORO-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729277\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13937,1348,'_wp_attachment_image_alt','BoroBoro minimalist rings with movable bead.'), -(13943,1349,'_wp_attached_file','2024/11/BOROBORO-B-sj.jpg'), -(13944,1349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3844;s:6:\"height\";i:3076;s:4:\"file\";s:25:\"2024/11/BOROBORO-B-sj.jpg\";s:8:\"filesize\";i:942770;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"BOROBORO-B-sj-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16514;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B-sj-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3313;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729118\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13945,1349,'_wp_attachment_image_alt','BoroBoro bead ring silver and honey jade.'), -(13952,1351,'_wp_attached_file','2024/11/BOROBORO-B-g.jpg'), -(13953,1351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3852;s:6:\"height\";i:3081;s:4:\"file\";s:24:\"2024/11/BOROBORO-B-g.jpg\";s:8:\"filesize\";i:896746;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BOROBORO-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16930;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"BOROBORO-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3647;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390729212\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13954,1351,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable prehnite bead.'), -(13960,1353,'_wp_attached_file','2024/10/DSC9237-1.jpg'), -(13961,1353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/DSC9237-1.jpg\";s:8:\"filesize\";i:711273;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9237-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14622;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13962,1354,'_wp_attached_file','2024/10/DSC9240.jpg'), -(13963,1354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3752;s:6:\"height\";i:3002;s:4:\"file\";s:19:\"2024/10/DSC9240.jpg\";s:8:\"filesize\";i:1559638;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9240-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13619;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13964,1355,'_wp_attached_file','2024/10/DSC9242-1.jpg'), -(13965,1355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:21:\"2024/10/DSC9242-1.jpg\";s:8:\"filesize\";i:299229;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9242-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12533;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(13966,1353,'_wp_attachment_image_alt','Fuyou sterling silver chain bracelet with fluid element and gold plated details.'), -(13967,1354,'_wp_attachment_image_alt','Fuyou sterling silver chain bracelet with fluid element and gold plated details.'), -(13968,1355,'_wp_attachment_image_alt','Fuyou sterling silver chain bracelet with fluid element and gold plated details.'), -(13969,1356,'_wp_attached_file','2024/10/FUYOU-BR.jpg'), -(13970,1356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4029;s:6:\"height\";i:3223;s:4:\"file\";s:20:\"2024/10/FUYOU-BR.jpg\";s:8:\"filesize\";i:904391;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19450;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"FUYOU-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5622;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390801216\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13971,1356,'_wp_attachment_image_alt',''), -(13972,258,'_thumbnail_id','1356'), -(13973,258,'_photos_colonne_gauche|||0|value','1356'), -(13975,258,'_photos_colonne_droite|||1|value','1354'), -(13976,258,'_photos_colonne_droite|||2|value','1353'), -(13977,258,'_haiku_details_produit',''), -(13993,1365,'_wp_attached_file','2024/11/FUYOU-B0.jpg'), -(13994,1365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3920;s:6:\"height\";i:3136;s:4:\"file\";s:20:\"2024/11/FUYOU-B0.jpg\";s:8:\"filesize\";i:910436;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-B0-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19325;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"FUYOU-B0-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5479;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390810915\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(13995,1365,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(13999,1367,'_wp_attached_file','2024/11/DSC0249-1.jpg'), -(14000,1367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/DSC0249-1.jpg\";s:8:\"filesize\";i:483245;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC0249-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16779;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14001,1367,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(14002,766,'_price','85'), -(14003,766,'_price','85'), -(14004,766,'_thumbnail_id','1365'), -(14005,766,'_regular_price','85'), -(14012,1369,'_wp_attached_file','2024/10/HATTARI-CR2-arg.jpg'), -(14013,1369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3922;s:6:\"height\";i:3138;s:4:\"file\";s:27:\"2024/10/HATTARI-CR2-arg.jpg\";s:8:\"filesize\";i:802503;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HATTARI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17671;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"HATTARI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17671;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390810186\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14014,1369,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver.'), -(14020,1371,'_wp_attached_file','2024/10/HATTARI-CR2-or.jpg'), -(14021,1371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3704;s:6:\"height\";i:2963;s:4:\"file\";s:26:\"2024/10/HATTARI-CR2-or.jpg\";s:8:\"filesize\";i:763800;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"HATTARI-CR2-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19395;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"HATTARI-CR2-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5700;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390810363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14022,1371,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), -(14023,288,'_thumbnail_id','1371'), -(14028,285,'_thumbnail_id','1369'), -(14029,285,'_photos_colonne_gauche|||0|value','1369'), -(14030,285,'_photos_colonne_droite|||0|value','287'), -(14031,285,'_haiku_details_produit',''), -(14046,1377,'_wp_attached_file','2024/11/MUGURA-CR1solo.jpg'), -(14047,1377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:26:\"2024/11/MUGURA-CR1solo.jpg\";s:8:\"filesize\";i:906768;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR1solo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16182;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"MUGURA-CR1solo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16182;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390809607\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14048,1377,'_wp_attachment_image_alt','Mugura solo hoop with wavy gold plated element.'), -(14049,496,'_thumbnail_id','1377'), -(14054,496,'_photos_colonne_gauche|||0|value','1377'), -(14055,496,'_photos_colonne_droite|||0|value','756'), -(14056,496,'_photos_colonne_droite|||1|value','757'), -(14057,496,'_haiku_details_produit',''), -(14062,1378,'_wp_attached_file','2025/08/PIASU-CR-1.jpg'), -(14063,1378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3682;s:6:\"height\";i:2946;s:4:\"file\";s:22:\"2025/08/PIASU-CR-1.jpg\";s:8:\"filesize\";i:233367;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-CR-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4549;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14064,1379,'_wp_attached_file','2025/08/PIASU-CR-2.jpg'), -(14065,1379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3768;s:6:\"height\";i:3015;s:4:\"file\";s:22:\"2025/08/PIASU-CR-2.jpg\";s:8:\"filesize\";i:733914;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-CR-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5855;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14066,1378,'_wp_attachment_image_alt','Piasu open hoops ending with a silver bead.'), -(14067,1379,'_wp_attachment_image_alt','Piasu open hoops ending with a silver bead.'), -(14068,1004,'_thumbnail_id','1378'), -(14069,1004,'_photos_colonne_gauche|||0|value','1378'), -(14070,1004,'_photos_colonne_droite|||0|value','1010'), -(14071,1004,'_photos_colonne_droite|||1|value','1379'), -(14072,1004,'_photos_colonne_droite|||2|value','1009'), -(14073,1004,'_haiku_details_produit',''), -(14075,240,'_price','80'), -(14079,1381,'_wp_attached_file','2024/10/FUYOU-C-2.jpg'), -(14080,1381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:21:\"2024/10/FUYOU-C-2.jpg\";s:8:\"filesize\";i:987866;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-C-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804372\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14081,1381,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(14082,1382,'_wp_attached_file','2024/10/FUYOU-C-1-1.jpg'), -(14083,1382,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:23:\"2024/10/FUYOU-C-1-1.jpg\";s:8:\"filesize\";i:1186192;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"FUYOU-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20218;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"FUYOU-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6150;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804434\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14084,1382,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(14085,1382,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(14095,133,'_price','95'), -(14096,1383,'_wp_attached_file','2024/10/IKKAN-C-1-1.jpg'), -(14097,1383,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:23:\"2024/10/IKKAN-C-1-1.jpg\";s:8:\"filesize\";i:1089765;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19467;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"IKKAN-C-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5780;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804098\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14098,1383,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with a mix of links gold plated details.'), -(14099,1384,'_wp_attached_file','2024/10/IKKAN-C-2-1.jpg'), -(14100,1384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3814;s:6:\"height\";i:3051;s:4:\"file\";s:23:\"2024/10/IKKAN-C-2-1.jpg\";s:8:\"filesize\";i:835517;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-C-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390804077\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14101,1384,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with a mix of links gold plated details.'), -(14116,1388,'_wp_attached_file','2025/08/FUYOU-CR1.jpg'), -(14117,1388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3127;s:6:\"height\";i:2502;s:4:\"file\";s:21:\"2025/08/FUYOU-CR1.jpg\";s:8:\"filesize\";i:557492;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16077;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16077;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390808402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14118,1388,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with gold plated rings hanging.'), -(14119,318,'_thumbnail_id','1388'), -(14120,318,'_photos_colonne_gauche|||0|value','1388'), -(14121,318,'_photos_colonne_droite|||0|value','714'), -(14122,318,'_photos_colonne_droite|||1|value','324'), -(14123,318,'_photos_colonne_droite|||2|value','323'), -(14124,318,'_haiku_details_produit',''), -(14132,1391,'_wp_attached_file','2025/08/MUGURA-CR2-g.jpg'), -(14133,1391,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3973;s:6:\"height\";i:3179;s:4:\"file\";s:24:\"2025/08/MUGURA-CR2-g.jpg\";s:8:\"filesize\";i:864612;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17606;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"MUGURA-CR2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4221;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390808566\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14134,1391,'_wp_attachment_image_alt','Mugura minimalist gold plated silver hoops.'), -(14135,398,'_thumbnail_id','1391'), -(14147,1393,'_wp_attached_file','2025/08/MUGURA-CR2-s.jpg'), -(14148,1393,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:24:\"2025/08/MUGURA-CR2-s.jpg\";s:8:\"filesize\";i:901135;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16952;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"MUGURA-CR2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3585;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390808580\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14149,1393,'_wp_attachment_image_alt','Mugura minimalist sterling silver hoops.'), -(14150,393,'_thumbnail_id','1393'), -(14161,1395,'_wp_attached_file','2025/08/BOROBORO-BO2-s.jpg'), -(14162,1395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3904;s:6:\"height\";i:3124;s:4:\"file\";s:26:\"2025/08/BOROBORO-BO2-s.jpg\";s:8:\"filesize\";i:842962;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18681;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"BOROBORO-BO2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18681;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807710\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14163,1395,'_wp_attachment_image_alt','pair of Boroboro long sterling silver earrings with asymmetrical shapes.'), -(14164,183,'_thumbnail_id','1395'), -(14177,1396,'_wp_attached_file','2025/08/BOROBORO-BO2-g.jpg'), -(14178,1396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3887;s:6:\"height\";i:3109;s:4:\"file\";s:26:\"2025/08/BOROBORO-BO2-g.jpg\";s:8:\"filesize\";i:810245;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20806;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"BOROBORO-BO2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20806;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807479\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14179,1396,'_wp_attachment_image_alt','pair of Boroboro long gold plated earrings with asymmetrical shapes.'), -(14180,213,'_thumbnail_id','1396'), -(14186,1397,'_wp_attached_file','2024/10/DSCF7880.jpg'), -(14187,1397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3648;s:6:\"height\";i:4560;s:4:\"file\";s:20:\"2024/10/DSCF7880.jpg\";s:8:\"filesize\";i:1214559;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7880-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11851;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14188,1397,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(14189,1398,'_wp_attached_file','2024/10/DSCF7869.jpg'), -(14190,1398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4560;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2024/10/DSCF7869.jpg\";s:8:\"filesize\";i:881724;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7869-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14191,1398,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(14192,1399,'_wp_attached_file','2024/10/DSCF7860.jpg'), -(14193,1399,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4560;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2024/10/DSCF7860.jpg\";s:8:\"filesize\";i:703862;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7860-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14194,1399,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), -(14201,1400,'_photos_colonne_gauche|||0|value','1383'), -(14202,1400,'_photos_colonne_droite|||0|value','1397'), -(14203,1400,'_photos_colonne_droite|||1|value','1399'), -(14204,1400,'_photos_colonne_droite|||2|value','1384'), -(14205,1400,'_photos_colonne_droite|||3|value','1398'), -(14206,1400,'_haiku_details_produit',''), -(14207,263,'_photos_colonne_gauche|||0|value','1383'), -(14208,263,'_photos_colonne_droite|||0|value','1397'), -(14209,263,'_photos_colonne_droite|||1|value','1398'), -(14210,263,'_photos_colonne_droite|||2|value','1399'), -(14211,263,'_photos_colonne_droite|||3|value','1384'), -(14212,263,'_haiku_details_produit',''), -(14213,1401,'_sku','UTEKI-C-g-1'), -(14214,1401,'_regular_price','80'), -(14215,1401,'total_sales','0'), -(14216,1401,'_tax_status','taxable'), -(14217,1401,'_tax_class',''), -(14218,1401,'_manage_stock','no'), -(14219,1401,'_backorders','no'), -(14220,1401,'_sold_individually','no'), -(14221,1401,'_virtual','no'), -(14222,1401,'_downloadable','no'), -(14223,1401,'_download_limit','-1'), -(14224,1401,'_download_expiry','-1'), -(14225,1401,'_thumbnail_id','1402'), -(14226,1401,'_stock',NULL), -(14227,1401,'_stock_status','instock'), -(14228,1401,'_wc_average_rating','0'), -(14229,1401,'_wc_review_count','0'), -(14230,1401,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14231,1401,'_product_version','10.3.4'), -(14232,1401,'_price','80'), -(14237,1401,'_edit_lock','1764164881:1'), -(14238,1401,'_edit_last','1'), -(14239,1402,'_wp_attached_file','2025/09/UTEKI-CR-g.jpg'), -(14240,1402,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3851;s:6:\"height\";i:3081;s:4:\"file\";s:22:\"2025/09/UTEKI-CR-g.jpg\";s:8:\"filesize\";i:762160;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"UTEKI-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19207;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"UTEKI-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5415;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807161\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14241,1402,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14242,1403,'_wp_attached_file','2025/09/DSCF8538.jpg'), -(14243,1403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3238;s:6:\"height\";i:2591;s:4:\"file\";s:20:\"2025/09/DSCF8538.jpg\";s:8:\"filesize\";i:823345;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8538-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14244,1404,'_wp_attached_file','2025/09/DSCF8521.jpg'), -(14245,1404,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3432;s:6:\"height\";i:4290;s:4:\"file\";s:20:\"2025/09/DSCF8521.jpg\";s:8:\"filesize\";i:1379543;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8521-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14246,1405,'_wp_attached_file','2025/09/DSCF8493.jpg'), -(14247,1405,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2968;s:6:\"height\";i:3711;s:4:\"file\";s:20:\"2025/09/DSCF8493.jpg\";s:8:\"filesize\";i:1254939;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8493-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14248,1403,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14249,1404,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14250,1405,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(14261,1406,'_sku','UTEKI-C-g-1-1'), -(14262,1406,'_regular_price','75'), -(14263,1406,'total_sales','0'), -(14264,1406,'_tax_status','taxable'), -(14265,1406,'_tax_class',''), -(14266,1406,'_manage_stock','no'), -(14267,1406,'_backorders','no'), -(14268,1406,'_sold_individually','no'), -(14269,1406,'_virtual','no'), -(14270,1406,'_downloadable','no'), -(14271,1406,'_download_limit','-1'), -(14272,1406,'_download_expiry','-1'), -(14273,1406,'_thumbnail_id','1407'), -(14274,1406,'_stock',NULL), -(14275,1406,'_stock_status','instock'), -(14276,1406,'_wc_average_rating','0'), -(14277,1406,'_wc_review_count','0'), -(14278,1406,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14279,1406,'_product_version','10.3.4'), -(14280,1406,'_price','75'), -(14286,1406,'_edit_lock','1764146110:1'), -(14287,1407,'_wp_attached_file','2025/09/UTEKI-CR-s.jpg'), -(14288,1407,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3673;s:6:\"height\";i:2938;s:4:\"file\";s:22:\"2025/09/UTEKI-CR-s.jpg\";s:8:\"filesize\";i:700775;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"UTEKI-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17756;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"UTEKI-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4304;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390807140\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14289,1407,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14290,1406,'_edit_last','1'), -(14293,1409,'_wp_attached_file','2025/09/DSCF8461.jpg'), -(14294,1409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2554;s:6:\"height\";i:3192;s:4:\"file\";s:20:\"2025/09/DSCF8461.jpg\";s:8:\"filesize\";i:918417;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8461-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19078;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14295,1410,'_wp_attached_file','2025/09/DSCF8462.jpg'), -(14296,1410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3463;s:6:\"height\";i:4329;s:4:\"file\";s:20:\"2025/09/DSCF8462.jpg\";s:8:\"filesize\";i:1288706;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8462-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18916;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14299,1409,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14300,1410,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14311,1411,'_wp_attached_file','2025/09/DSCF8447.jpg'), -(14312,1411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2474;s:6:\"height\";i:3092;s:4:\"file\";s:20:\"2025/09/DSCF8447.jpg\";s:8:\"filesize\";i:811986;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8447-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15566;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14313,1411,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(14320,1412,'_sku','BOROBORO-B2-st'), -(14321,1412,'total_sales','0'), -(14322,1412,'_tax_status','taxable'), -(14323,1412,'_tax_class',''), -(14324,1412,'_manage_stock','no'), -(14325,1412,'_backorders','no'), -(14326,1412,'_sold_individually','no'), -(14327,1412,'_virtual','no'), -(14328,1412,'_downloadable','no'), -(14329,1412,'_download_limit','-1'), -(14330,1412,'_download_expiry','-1'), -(14331,1412,'_thumbnail_id','1347'), -(14332,1412,'_stock',NULL), -(14333,1412,'_stock_status','instock'), -(14334,1412,'_wc_average_rating','0'), -(14335,1412,'_wc_review_count','0'), -(14336,1412,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14337,1412,'_product_version','10.1.2'), -(14344,1413,'_variation_description',''), -(14345,1413,'_sku','BOROBORO-B2-s-50-1'), -(14346,1413,'_regular_price','65'), -(14347,1413,'total_sales','0'), -(14348,1413,'_tax_status','taxable'), -(14349,1413,'_tax_class','parent'), -(14350,1413,'_manage_stock','no'), -(14351,1413,'_backorders','no'), -(14352,1413,'_sold_individually','no'), -(14353,1413,'_virtual','no'), -(14354,1413,'_downloadable','no'), -(14355,1413,'_download_limit','-1'), -(14356,1413,'_download_expiry','-1'), -(14357,1413,'_thumbnail_id','0'), -(14358,1413,'_stock',NULL), -(14359,1413,'_stock_status','instock'), -(14360,1413,'_wc_average_rating','0'), -(14361,1413,'_wc_review_count','0'), -(14362,1413,'attribute_pa_size','50'), -(14363,1413,'attribute_pa_stone',''), -(14364,1413,'_price','65'), -(14365,1413,'_product_version','10.1.2'), -(14366,1414,'_variation_description',''), -(14367,1414,'_sku','BOROBORO-B2-s-52-1'), -(14368,1414,'_regular_price','65'), -(14369,1414,'total_sales','0'), -(14370,1414,'_tax_status','taxable'), -(14371,1414,'_tax_class','parent'), -(14372,1414,'_manage_stock','no'), -(14373,1414,'_backorders','no'), -(14374,1414,'_sold_individually','no'), -(14375,1414,'_virtual','no'), -(14376,1414,'_downloadable','no'), -(14377,1414,'_download_limit','-1'), -(14378,1414,'_download_expiry','-1'), -(14379,1414,'_thumbnail_id','0'), -(14380,1414,'_stock',NULL), -(14381,1414,'_stock_status','instock'), -(14382,1414,'_wc_average_rating','0'), -(14383,1414,'_wc_review_count','0'), -(14384,1414,'attribute_pa_size','52'), -(14385,1414,'attribute_pa_stone',''), -(14386,1414,'_price','65'), -(14387,1414,'_product_version','10.1.2'), -(14388,1415,'_variation_description',''), -(14389,1415,'_sku','BOROBORO-B2-s-54-1'), -(14390,1415,'_regular_price','65'), -(14391,1415,'total_sales','0'), -(14392,1415,'_tax_status','taxable'), -(14393,1415,'_tax_class','parent'), -(14394,1415,'_manage_stock','no'), -(14395,1415,'_backorders','no'), -(14396,1415,'_sold_individually','no'), -(14397,1415,'_virtual','no'), -(14398,1415,'_downloadable','no'), -(14399,1415,'_download_limit','-1'), -(14400,1415,'_download_expiry','-1'), -(14401,1415,'_thumbnail_id','0'), -(14402,1415,'_stock',NULL), -(14403,1415,'_stock_status','instock'), -(14404,1415,'_wc_average_rating','0'), -(14405,1415,'_wc_review_count','0'), -(14406,1415,'attribute_pa_size','54'), -(14407,1415,'attribute_pa_stone',''), -(14408,1415,'_price','65'), -(14409,1415,'_product_version','10.1.2'), -(14410,1416,'_variation_description',''), -(14411,1416,'_sku','BOROBORO-B2-s-56-1'), -(14412,1416,'_regular_price','65'), -(14413,1416,'total_sales','0'), -(14414,1416,'_tax_status','taxable'), -(14415,1416,'_tax_class','parent'), -(14416,1416,'_manage_stock','no'), -(14417,1416,'_backorders','no'), -(14418,1416,'_sold_individually','no'), -(14419,1416,'_virtual','no'), -(14420,1416,'_downloadable','no'), -(14421,1416,'_download_limit','-1'), -(14422,1416,'_download_expiry','-1'), -(14423,1416,'_thumbnail_id','0'), -(14424,1416,'_stock',NULL), -(14425,1416,'_stock_status','instock'), -(14426,1416,'_wc_average_rating','0'), -(14427,1416,'_wc_review_count','0'), -(14428,1416,'attribute_pa_size','56'), -(14429,1416,'attribute_pa_stone',''), -(14430,1416,'_price','65'), -(14431,1416,'_product_version','10.1.2'), -(14432,1417,'_variation_description',''), -(14433,1417,'_sku','BOROBORO-B2-s-58-1'), -(14434,1417,'_regular_price','65'), -(14435,1417,'total_sales','0'), -(14436,1417,'_tax_status','taxable'), -(14437,1417,'_tax_class','parent'), -(14438,1417,'_manage_stock','no'), -(14439,1417,'_backorders','no'), -(14440,1417,'_sold_individually','no'), -(14441,1417,'_virtual','no'), -(14442,1417,'_downloadable','no'), -(14443,1417,'_download_limit','-1'), -(14444,1417,'_download_expiry','-1'), -(14445,1417,'_thumbnail_id','0'), -(14446,1417,'_stock',NULL), -(14447,1417,'_stock_status','instock'), -(14448,1417,'_wc_average_rating','0'), -(14449,1417,'_wc_review_count','0'), -(14450,1417,'attribute_pa_size','58'), -(14451,1417,'attribute_pa_stone',''), -(14452,1417,'_price','65'), -(14453,1417,'_product_version','10.1.2'), -(14454,1418,'_variation_description',''), -(14455,1418,'_sku','BOROBORO-B2-s-60-1'), -(14456,1418,'_regular_price','65'), -(14457,1418,'total_sales','0'), -(14458,1418,'_tax_status','taxable'), -(14459,1418,'_tax_class','parent'), -(14460,1418,'_manage_stock','no'), -(14461,1418,'_backorders','no'), -(14462,1418,'_sold_individually','no'), -(14463,1418,'_virtual','no'), -(14464,1418,'_downloadable','no'), -(14465,1418,'_download_limit','-1'), -(14466,1418,'_download_expiry','-1'), -(14467,1418,'_thumbnail_id','0'), -(14468,1418,'_stock',NULL), -(14469,1418,'_stock_status','instock'), -(14470,1418,'_wc_average_rating','0'), -(14471,1418,'_wc_review_count','0'), -(14472,1418,'attribute_pa_size','60'), -(14473,1418,'attribute_pa_stone',''), -(14474,1418,'_price','65'), -(14475,1418,'_product_version','10.1.2'), -(14476,1419,'_variation_description',''), -(14477,1419,'_regular_price','65'), -(14478,1419,'total_sales','0'), -(14479,1419,'_tax_status','taxable'), -(14480,1419,'_tax_class','parent'), -(14481,1419,'_manage_stock','no'), -(14482,1419,'_backorders','no'), -(14483,1419,'_sold_individually','no'), -(14484,1419,'_virtual','no'), -(14485,1419,'_downloadable','no'), -(14486,1419,'_download_limit','-1'), -(14487,1419,'_download_expiry','-1'), -(14488,1419,'_thumbnail_id','0'), -(14489,1419,'_stock',NULL), -(14490,1419,'_stock_status','instock'), -(14491,1419,'_wc_average_rating','0'), -(14492,1419,'_wc_review_count','0'), -(14493,1419,'attribute_pa_size','62'), -(14494,1419,'attribute_pa_stone',''), -(14495,1419,'_price','65'), -(14496,1419,'_product_version','10.1.2'), -(14497,1420,'_variation_description',''), -(14498,1420,'_sku','BOROBORO-B2-s-64-1'), -(14499,1420,'_regular_price','65'), -(14500,1420,'total_sales','0'), -(14501,1420,'_tax_status','taxable'), -(14502,1420,'_tax_class','parent'), -(14503,1420,'_manage_stock','no'), -(14504,1420,'_backorders','no'), -(14505,1420,'_sold_individually','no'), -(14506,1420,'_virtual','no'), -(14507,1420,'_downloadable','no'), -(14508,1420,'_download_limit','-1'), -(14509,1420,'_download_expiry','-1'), -(14510,1420,'_thumbnail_id','0'), -(14511,1420,'_stock',NULL), -(14512,1420,'_stock_status','instock'), -(14513,1420,'_wc_average_rating','0'), -(14514,1420,'_wc_review_count','0'), -(14515,1420,'attribute_pa_size','64'), -(14516,1420,'attribute_pa_stone',''), -(14517,1420,'_price','65'), -(14518,1420,'_product_version','10.1.2'), -(14519,1412,'_price','65'), -(14520,1412,'_edit_lock','1761726553:1'), -(14521,1412,'_edit_last','1'), -(14522,1412,'_photos_colonne_gauche|||0|value','1347'), -(14523,1412,'_photos_colonne_droite|||0|value','758'), -(14524,1412,'_photos_colonne_droite|||1|value','1348'), -(14525,1412,'_haiku_details_produit',''), -(14526,613,'_photos_colonne_gauche|||0|value','1351'), -(14527,613,'_photos_colonne_droite|||0|value','761'), -(14528,613,'_photos_colonne_droite|||1|value','1348'), -(14529,613,'_haiku_details_produit',''), -(14530,1422,'_wp_attached_file','2024/11/IMG_1504-1.jpg'), -(14531,1422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/11/IMG_1504-1.jpg\";s:8:\"filesize\";i:542654;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1504-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14532,1422,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable honey jade bead.'), -(14533,625,'_photos_colonne_gauche|||0|value','1349'), -(14534,625,'_photos_colonne_droite|||0|value','1422'), -(14535,625,'_photos_colonne_droite|||1|value','1348'), -(14536,625,'_haiku_details_produit',''), -(14561,1444,'_sku','PISHI-BO'), -(14563,1444,'total_sales','0'), -(14564,1444,'_tax_status','taxable'), -(14565,1444,'_tax_class',''), -(14566,1444,'_manage_stock','no'), -(14567,1444,'_backorders','no'), -(14568,1444,'_sold_individually','no'), -(14569,1444,'_virtual','no'), -(14570,1444,'_downloadable','no'), -(14571,1444,'_download_limit','-1'), -(14572,1444,'_download_expiry','-1'), -(14573,1444,'_thumbnail_id','1445'), -(14574,1444,'_stock',NULL), -(14575,1444,'_stock_status','instock'), -(14576,1444,'_wc_average_rating','0'), -(14577,1444,'_wc_review_count','0'), -(14578,1444,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14579,1444,'_product_version','10.3.3'), -(14587,1444,'_edit_lock','1764234297:1'), -(14588,1444,'_edit_last','1'), -(14589,1445,'_wp_attached_file','2025/09/PISHI-BO.jpg'), -(14590,1445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3855;s:6:\"height\";i:3084;s:4:\"file\";s:20:\"2025/09/PISHI-BO.jpg\";s:8:\"filesize\";i:1111576;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PISHI-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22221;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PISHI-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7449;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393636870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(14591,1445,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14592,1446,'_wp_attached_file','2025/09/DSCF8198.jpg'), -(14593,1446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3037;s:6:\"height\";i:3680;s:4:\"file\";s:20:\"2025/09/DSCF8198.jpg\";s:8:\"filesize\";i:1641696;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8198-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14594,1446,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14595,1446,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14596,1447,'_wp_attached_file','2025/09/DSCF8226-e1758365681430.jpg'), -(14597,1447,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1946;s:6:\"height\";i:2570;s:4:\"file\";s:35:\"2025/09/DSCF8226-e1758365681430.jpg\";s:8:\"filesize\";i:885477;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"DSCF8226-e1758365681430-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18375;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14598,1447,'_wp_attachment_image_alt','Pishi Pishi earrings made of tied ball chains in sterling silver.'), -(14599,1447,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:3648;s:6:\"height\";i:4560;s:8:\"filesize\";i:1826940;s:4:\"file\";s:12:\"DSCF8226.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:20:\"DSCF8226-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15288;}}'), -(14600,1448,'_wp_attached_file','2025/09/DSCF8277.jpg'), -(14601,1448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3648;s:6:\"height\";i:4864;s:4:\"file\";s:20:\"2025/09/DSCF8277.jpg\";s:8:\"filesize\";i:1711248;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8277-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18232;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14602,1448,'_wp_attachment_image_alt',''), -(14603,1449,'_variation_description',''), -(14604,1449,'total_sales','0'), -(14605,1449,'_tax_status','taxable'), -(14606,1449,'_tax_class','parent'), -(14607,1449,'_manage_stock','no'), -(14608,1449,'_backorders','no'), -(14609,1449,'_sold_individually','no'), -(14610,1449,'_virtual','no'), -(14611,1449,'_downloadable','no'), -(14612,1449,'_download_limit','-1'), -(14613,1449,'_download_expiry','-1'), -(14614,1449,'_stock',NULL), -(14615,1449,'_stock_status','instock'), -(14616,1449,'_wc_average_rating','0'), -(14617,1449,'_wc_review_count','0'), -(14618,1449,'attribute_pa_side','all'), -(14619,1449,'_product_version','10.1.2'), -(14620,1450,'_variation_description',''), -(14621,1450,'total_sales','0'), -(14622,1450,'_tax_status','taxable'), -(14623,1450,'_tax_class','parent'), -(14624,1450,'_manage_stock','no'), -(14625,1450,'_backorders','no'), -(14626,1450,'_sold_individually','no'), -(14627,1450,'_virtual','no'), -(14628,1450,'_downloadable','no'), -(14629,1450,'_download_limit','-1'), -(14630,1450,'_download_expiry','-1'), -(14631,1450,'_stock',NULL), -(14632,1450,'_stock_status','instock'), -(14633,1450,'_wc_average_rating','0'), -(14634,1450,'_wc_review_count','0'), -(14635,1450,'attribute_pa_side','left-side'), -(14636,1450,'_product_version','10.1.2'), -(14637,1451,'_variation_description',''), -(14638,1451,'total_sales','0'), -(14639,1451,'_tax_status','taxable'), -(14640,1451,'_tax_class','parent'), -(14641,1451,'_manage_stock','no'), -(14642,1451,'_backorders','no'), -(14643,1451,'_sold_individually','no'), -(14644,1451,'_virtual','no'), -(14645,1451,'_downloadable','no'), -(14646,1451,'_download_limit','-1'), -(14647,1451,'_download_expiry','-1'), -(14648,1451,'_stock',NULL), -(14649,1451,'_stock_status','instock'), -(14650,1451,'_wc_average_rating','0'), -(14651,1451,'_wc_review_count','0'), -(14652,1451,'attribute_pa_side','right-side'), -(14653,1451,'_product_version','10.1.2'), -(14654,1449,'_sku','PISHI-BO-all'), -(14655,1449,'_regular_price','85'), -(14656,1449,'_thumbnail_id','0'), -(14657,1449,'_price','85'), -(14658,1450,'_sku','PISHI-BO-left'), -(14659,1450,'_regular_price','50'), -(14660,1450,'_thumbnail_id','0'), -(14661,1450,'_price','50'), -(14662,1451,'_sku','PISHI-BO-right'), -(14663,1451,'_regular_price','50'), -(14664,1451,'_thumbnail_id','0'), -(14665,1451,'_price','50'), -(14666,1444,'_price','50'), -(14667,1444,'_price','85'), -(14668,1444,'_regular_price','85'), -(14691,1452,'_wp_attached_file','2025/06/DSCF8669.jpg'), -(14692,1452,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4403;s:6:\"height\";i:3523;s:4:\"file\";s:20:\"2025/06/DSCF8669.jpg\";s:8:\"filesize\";i:1187727;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8669-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14693,1452,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. Silver version'), -(14694,982,'_photos_colonne_gauche|||0|value','1346'), -(14695,982,'_photos_colonne_droite|||0|value','1452'), -(14696,982,'_photos_colonne_droite|||1|value','992'), -(14697,982,'_photos_colonne_droite|||2|value','993'), -(14698,982,'_haiku_details_produit',''), -(14707,1454,'_wp_attached_file','2024/10/DSCF8686.jpg'), -(14708,1454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2024/10/DSCF8686.jpg\";s:8:\"filesize\";i:985661;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8686-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16385;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14709,1454,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings sterling silver.'), -(14710,1455,'_wp_attached_file','2024/10/DSCF8674.jpg'), -(14711,1455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2768;s:6:\"height\";i:3459;s:4:\"file\";s:20:\"2024/10/DSCF8674.jpg\";s:8:\"filesize\";i:929535;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8674-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14712,1455,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings sterling silver.'), -(14720,1456,'_wp_attached_file','2024/10/DSCF8693.jpg'), -(14721,1456,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2440;s:6:\"height\";i:3049;s:4:\"file\";s:20:\"2024/10/DSCF8693.jpg\";s:8:\"filesize\";i:680909;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8693-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14366;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14722,1456,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings gold plated silver.'), -(14723,1457,'_wp_attached_file','2024/10/DSCF8676.jpg'), -(14724,1457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1970;s:6:\"height\";i:2462;s:4:\"file\";s:20:\"2024/10/DSCF8676.jpg\";s:8:\"filesize\";i:671776;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8676-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(14725,1457,'_wp_attachment_image_alt','BoroBoro asymmetrical oval shaped earrings gold plated silver.'), -(14951,1467,'_sku','PIASU-B'), -(14952,1467,'total_sales','2'), -(14953,1467,'_tax_status','taxable'), -(14954,1467,'_tax_class',''), -(14955,1467,'_manage_stock','no'), -(14956,1467,'_backorders','no'), -(14957,1467,'_sold_individually','no'), -(14958,1467,'_virtual','no'), -(14959,1467,'_downloadable','no'), -(14960,1467,'_download_limit','-1'), -(14961,1467,'_download_expiry','-1'), -(14962,1467,'_thumbnail_id','1476'), -(14963,1467,'_stock',NULL), -(14964,1467,'_stock_status','instock'), -(14965,1467,'_wc_average_rating','0'), -(14966,1467,'_wc_review_count','0'), -(14967,1467,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(14968,1467,'_product_version','10.3.3'), -(14973,1468,'_variation_description',''), -(14974,1468,'_regular_price','120'), -(14975,1468,'total_sales','0'), -(14976,1468,'_tax_status','taxable'), -(14977,1468,'_tax_class','parent'), -(14978,1468,'_manage_stock','no'), -(14979,1468,'_backorders','no'), -(14980,1468,'_sold_individually','no'), -(14981,1468,'_virtual','no'), -(14982,1468,'_downloadable','no'), -(14983,1468,'_download_limit','-1'), -(14984,1468,'_download_expiry','-1'), -(14985,1468,'_thumbnail_id','0'), -(14986,1468,'_stock',NULL), -(14987,1468,'_stock_status','instock'), -(14988,1468,'_wc_average_rating','0'), -(14989,1468,'_wc_review_count','0'), -(14990,1468,'attribute_pa_size','50'), -(14991,1468,'_price','120'), -(14992,1468,'_product_version','10.1.2'), -(14993,1469,'_variation_description',''), -(14994,1469,'_regular_price','120'), -(14995,1469,'total_sales','0'), -(14996,1469,'_tax_status','taxable'), -(14997,1469,'_tax_class','parent'), -(14998,1469,'_manage_stock','no'), -(14999,1469,'_backorders','no'), -(15000,1469,'_sold_individually','no'), -(15001,1469,'_virtual','no'), -(15002,1469,'_downloadable','no'), -(15003,1469,'_download_limit','-1'), -(15004,1469,'_download_expiry','-1'), -(15005,1469,'_thumbnail_id','0'), -(15006,1469,'_stock',NULL), -(15007,1469,'_stock_status','instock'), -(15008,1469,'_wc_average_rating','0'), -(15009,1469,'_wc_review_count','0'), -(15010,1469,'attribute_pa_size','52'), -(15011,1469,'_price','120'), -(15012,1469,'_product_version','10.1.2'), -(15013,1470,'_variation_description',''), -(15014,1470,'_regular_price','120'), -(15015,1470,'total_sales','0'), -(15016,1470,'_tax_status','taxable'), -(15017,1470,'_tax_class','parent'), -(15018,1470,'_manage_stock','no'), -(15019,1470,'_backorders','no'), -(15020,1470,'_sold_individually','no'), -(15021,1470,'_virtual','no'), -(15022,1470,'_downloadable','no'), -(15023,1470,'_download_limit','-1'), -(15024,1470,'_download_expiry','-1'), -(15025,1470,'_thumbnail_id','0'), -(15026,1470,'_stock',NULL), -(15027,1470,'_stock_status','instock'), -(15028,1470,'_wc_average_rating','0'), -(15029,1470,'_wc_review_count','0'), -(15030,1470,'attribute_pa_size','54'), -(15031,1470,'_price','120'), -(15032,1470,'_product_version','10.1.2'), -(15033,1471,'_variation_description',''), -(15034,1471,'_regular_price','120'), -(15035,1471,'total_sales','0'), -(15036,1471,'_tax_status','taxable'), -(15037,1471,'_tax_class','parent'), -(15038,1471,'_manage_stock','no'), -(15039,1471,'_backorders','no'), -(15040,1471,'_sold_individually','no'), -(15041,1471,'_virtual','no'), -(15042,1471,'_downloadable','no'), -(15043,1471,'_download_limit','-1'), -(15044,1471,'_download_expiry','-1'), -(15045,1471,'_thumbnail_id','0'), -(15046,1471,'_stock',NULL), -(15047,1471,'_stock_status','instock'), -(15048,1471,'_wc_average_rating','0'), -(15049,1471,'_wc_review_count','0'), -(15050,1471,'attribute_pa_size','56'), -(15051,1471,'_price','120'), -(15052,1471,'_product_version','10.1.2'), -(15053,1472,'_variation_description',''), -(15054,1472,'_regular_price','120'), -(15055,1472,'total_sales','0'), -(15056,1472,'_tax_status','taxable'), -(15057,1472,'_tax_class','parent'), -(15058,1472,'_manage_stock','no'), -(15059,1472,'_backorders','no'), -(15060,1472,'_sold_individually','no'), -(15061,1472,'_virtual','no'), -(15062,1472,'_downloadable','no'), -(15063,1472,'_download_limit','-1'), -(15064,1472,'_download_expiry','-1'), -(15065,1472,'_thumbnail_id','0'), -(15066,1472,'_stock',NULL), -(15067,1472,'_stock_status','instock'), -(15068,1472,'_wc_average_rating','0'), -(15069,1472,'_wc_review_count','0'), -(15070,1472,'attribute_pa_size','58'), -(15071,1472,'_price','120'), -(15072,1472,'_product_version','10.1.2'), -(15073,1473,'_variation_description',''), -(15074,1473,'_regular_price','120'), -(15075,1473,'total_sales','0'), -(15076,1473,'_tax_status','taxable'), -(15077,1473,'_tax_class','parent'), -(15078,1473,'_manage_stock','no'), -(15079,1473,'_backorders','no'), -(15080,1473,'_sold_individually','no'), -(15081,1473,'_virtual','no'), -(15082,1473,'_downloadable','no'), -(15083,1473,'_download_limit','-1'), -(15084,1473,'_download_expiry','-1'), -(15085,1473,'_thumbnail_id','0'), -(15086,1473,'_stock',NULL), -(15087,1473,'_stock_status','instock'), -(15088,1473,'_wc_average_rating','0'), -(15089,1473,'_wc_review_count','0'), -(15090,1473,'attribute_pa_size','60'), -(15091,1473,'_price','120'), -(15092,1473,'_product_version','10.1.2'), -(15093,1474,'_variation_description',''), -(15094,1474,'_regular_price','120'), -(15095,1474,'total_sales','0'), -(15096,1474,'_tax_status','taxable'), -(15097,1474,'_tax_class','parent'), -(15098,1474,'_manage_stock','no'), -(15099,1474,'_backorders','no'), -(15100,1474,'_sold_individually','no'), -(15101,1474,'_virtual','no'), -(15102,1474,'_downloadable','no'), -(15103,1474,'_download_limit','-1'), -(15104,1474,'_download_expiry','-1'), -(15105,1474,'_thumbnail_id','0'), -(15106,1474,'_stock',NULL), -(15107,1474,'_stock_status','instock'), -(15108,1474,'_wc_average_rating','0'), -(15109,1474,'_wc_review_count','0'), -(15110,1474,'attribute_pa_size','62'), -(15111,1474,'_price','120'), -(15112,1474,'_product_version','10.1.2'), -(15113,1475,'_variation_description',''), -(15114,1475,'_regular_price','120'), -(15115,1475,'total_sales','0'), -(15116,1475,'_tax_status','taxable'), -(15117,1475,'_tax_class','parent'), -(15118,1475,'_manage_stock','no'), -(15119,1475,'_backorders','no'), -(15120,1475,'_sold_individually','no'), -(15121,1475,'_virtual','no'), -(15122,1475,'_downloadable','no'), -(15123,1475,'_download_limit','-1'), -(15124,1475,'_download_expiry','-1'), -(15125,1475,'_thumbnail_id','0'), -(15126,1475,'_stock',NULL), -(15127,1475,'_stock_status','instock'), -(15128,1475,'_wc_average_rating','0'), -(15129,1475,'_wc_review_count','0'), -(15130,1475,'attribute_pa_size','64'), -(15131,1475,'_price','120'), -(15132,1475,'_product_version','10.1.2'), -(15134,1467,'_edit_lock','1764747619:1'), -(15135,1467,'_edit_last','1'), -(15136,1476,'_wp_attached_file','2025/09/PIASU-B.jpg'), -(15137,1476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3920;s:6:\"height\";i:3136;s:4:\"file\";s:19:\"2025/09/PIASU-B.jpg\";s:8:\"filesize\";i:1419521;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PIASU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17404;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"PIASU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3592;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393569664\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15138,1476,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15139,1477,'_wp_attached_file','2025/09/DSCF7789.jpg'), -(15140,1477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2276;s:6:\"height\";i:2845;s:4:\"file\";s:20:\"2025/09/DSCF7789.jpg\";s:8:\"filesize\";i:478890;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7789-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15141,1477,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15142,1478,'_wp_attached_file','2025/09/DSCF7842.jpg'), -(15143,1478,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2744;s:6:\"height\";i:3429;s:4:\"file\";s:20:\"2025/09/DSCF7842.jpg\";s:8:\"filesize\";i:501714;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7842-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10632;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15144,1478,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15145,1479,'_wp_attached_file','2025/09/DSCF7809.jpg'), -(15146,1479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2545;s:6:\"height\";i:3181;s:4:\"file\";s:20:\"2025/09/DSCF7809.jpg\";s:8:\"filesize\";i:566391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7809-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16420;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15147,1479,'_wp_attachment_image_alt','Piasu ring with four silver balls and a mother of pearl detail, in sterling silver.'), -(15148,1467,'_price','120'), -(15191,1482,'_wp_attached_file','2024/10/DSCF8158.jpg'), -(15192,1482,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3427;s:6:\"height\";i:4284;s:4:\"file\";s:20:\"2024/10/DSCF8158.jpg\";s:8:\"filesize\";i:1398601;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8158-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15193,1482,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15194,1483,'_wp_attached_file','2024/10/DSCF8069.jpg'), -(15195,1483,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1412;s:6:\"height\";i:1765;s:4:\"file\";s:20:\"2024/10/DSCF8069.jpg\";s:8:\"filesize\";i:379321;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8069-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15196,1483,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15197,1484,'_wp_attached_file','2024/10/DSCF8026.jpg'), -(15198,1484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2556;s:6:\"height\";i:3195;s:4:\"file\";s:20:\"2024/10/DSCF8026.jpg\";s:8:\"filesize\";i:914261;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8026-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15199,1484,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15200,1485,'_wp_attached_file','2024/10/PIASU-BO2.jpg'), -(15201,1485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3767;s:6:\"height\";i:3013;s:4:\"file\";s:21:\"2024/10/PIASU-BO2.jpg\";s:8:\"filesize\";i:881946;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-BO2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17694;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PIASU-BO2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17694;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393637278\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15202,1485,'_wp_attachment_image_alt','Piasu earrings covering the ear lobe with three hoops hanging on it.'), -(15213,1444,'_photos_colonne_gauche|||0|value','1445'), -(15214,1444,'_photos_colonne_droite|||0|value','1446'), -(15215,1444,'_photos_colonne_droite|||1|value','1448'), -(15216,1444,'_photos_colonne_droite|||2|value','1447'), -(15217,1444,'_haiku_details_produit',''), -(15248,1491,'_edit_lock','1762792241:1'), -(15249,1491,'_edit_last','1'), -(15250,1492,'_wp_attached_file','2025/10/IKKAN-CR1.jpg'), -(15251,1492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1536;s:4:\"file\";s:21:\"2025/10/IKKAN-CR1.jpg\";s:8:\"filesize\";i:244496;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"IKKAN-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3056;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15252,1492,'_wp_attachment_image_alt','Kime solo hoop in gold plated with a marine link element in sterling silver.'), -(15253,1493,'_wp_attached_file','2025/10/DSCF7652.jpg'), -(15254,1493,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3534;s:6:\"height\";i:4418;s:4:\"file\";s:20:\"2025/10/DSCF7652.jpg\";s:8:\"filesize\";i:808925;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7652-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15255,1493,'_wp_attachment_image_alt','Kime solo hoop in gold plated with a marine link element in sterling silver.'), -(15256,1494,'_wp_attached_file','2025/10/DSCF7675.jpg'), -(15257,1494,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1364;s:6:\"height\";i:1706;s:4:\"file\";s:20:\"2025/10/DSCF7675.jpg\";s:8:\"filesize\";i:192623;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7675-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15258,1494,'_wp_attachment_image_alt',''), -(15259,1495,'_wp_attached_file','2025/10/DSCF7638.jpg'), -(15260,1495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3429;s:6:\"height\";i:4287;s:4:\"file\";s:20:\"2025/10/DSCF7638.jpg\";s:8:\"filesize\";i:810228;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7638-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15261,1495,'_wp_attachment_image_alt','Kime solo hoop in gold plated with a marine link element in sterling silver.'), -(15262,1491,'_thumbnail_id','1492'), -(15263,1491,'_sku','KIME-CR1'), -(15264,1491,'_regular_price','45'), -(15265,1491,'total_sales','0'), -(15266,1491,'_tax_status','taxable'), -(15267,1491,'_tax_class',''), -(15268,1491,'_manage_stock','no'), -(15269,1491,'_backorders','no'), -(15270,1491,'_sold_individually','no'), -(15271,1491,'_virtual','no'), -(15272,1491,'_downloadable','no'), -(15273,1491,'_download_limit','-1'), -(15274,1491,'_download_expiry','-1'), -(15275,1491,'_stock',NULL), -(15276,1491,'_stock_status','instock'), -(15277,1491,'_wc_average_rating','0'), -(15278,1491,'_wc_review_count','0'), -(15279,1491,'_product_version','10.3.4'), -(15280,1491,'_price','45'), -(15286,1497,'_edit_lock','1762161731:1'), -(15287,1497,'_edit_last','1'), -(15288,1467,'_photos_colonne_gauche|||0|value','1476'), -(15289,1467,'_photos_colonne_droite|||0|value','1477'), -(15290,1467,'_photos_colonne_droite|||1|value','1478'), -(15291,1467,'_photos_colonne_droite|||2|value','1479'), -(15292,1467,'_haiku_details_produit',''), -(15293,1499,'_wp_attached_file','2025/11/HAIKU-sizechart.pdf'), -(15294,1499,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:826408;}'), -(15303,1503,'_wp_attached_file','2025/09/DSCF8521-1.jpg'), -(15304,1503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3257;s:6:\"height\";i:4072;s:4:\"file\";s:22:\"2025/09/DSCF8521-1.jpg\";s:8:\"filesize\";i:1339844;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"DSCF8521-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17596;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15305,1503,'_wp_attachment_image_alt','Uteki hoops with intertwined silver wire.'), -(15311,1504,'_wp_attached_file','2025/09/DSCF8490.jpg'), -(15312,1504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2726;s:6:\"height\";i:3407;s:4:\"file\";s:20:\"2025/09/DSCF8490.jpg\";s:8:\"filesize\";i:1027009;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8490-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17905;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15313,1504,'_wp_attachment_image_alt','Uteki hoops with intertwined gold plated silver wire.'), -(15319,1505,'_wp_attached_file','2025/06/2025HAIKU_00079.jpg'), -(15320,1505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:3125;s:4:\"file\";s:27:\"2025/06/2025HAIKU_00079.jpg\";s:8:\"filesize\";i:1945332;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00079-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18798;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15321,1505,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver.'), -(15322,1506,'_wp_attached_file','2025/06/2025HAIKU_00050.jpg'), -(15323,1506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:3125;s:4:\"file\";s:27:\"2025/06/2025HAIKU_00050.jpg\";s:8:\"filesize\";i:1353438;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00050-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15608;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15324,1507,'_wp_attached_file','2025/06/2025HAIKU_0006.jpg'), -(15325,1507,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:3125;s:4:\"file\";s:26:\"2025/06/2025HAIKU_0006.jpg\";s:8:\"filesize\";i:1004545;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2025HAIKU_0006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14318;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15326,1506,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver.'), -(15327,1507,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver.'), -(15328,941,'_photos_colonne_gauche|||0|value','1343'), -(15329,941,'_photos_colonne_droite|||0|value','1506'), -(15330,941,'_photos_colonne_droite|||1|value','1507'), -(15331,941,'_photos_colonne_droite|||2|value','1505'), -(15332,941,'_haiku_details_produit',''), -(15333,1508,'_wp_attached_file','2025/06/2025HAIKU_0004.jpg'), -(15334,1508,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:3125;s:4:\"file\";s:26:\"2025/06/2025HAIKU_0004.jpg\";s:8:\"filesize\";i:713512;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2025HAIKU_0004-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15335,1508,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated silver.'), -(15336,1509,'_wp_attached_file','2025/06/2025HAIKU_00020.jpg'), -(15337,1509,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:3125;s:4:\"file\";s:27:\"2025/06/2025HAIKU_00020.jpg\";s:8:\"filesize\";i:1780828;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00020-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23306;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15338,1510,'_wp_attached_file','2025/06/2025HAIKU_00013.jpg'), -(15339,1510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:3125;s:4:\"file\";s:27:\"2025/06/2025HAIKU_00013.jpg\";s:8:\"filesize\";i:1095811;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00013-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13374;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15340,1509,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated silver.'), -(15341,1510,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated silver.'), -(15342,953,'_photos_colonne_gauche|||0|value','1342'), -(15343,953,'_photos_colonne_droite|||0|value','1508'), -(15344,953,'_photos_colonne_droite|||1|value','1509'), -(15345,953,'_photos_colonne_droite|||2|value','1510'), -(15346,953,'_haiku_details_produit',''), -(15347,1491,'_photos_colonne_gauche|||0|value','1492'), -(15348,1491,'_photos_colonne_droite|||0|value','1493'), -(15349,1491,'_photos_colonne_droite|||1|value','1494'), -(15350,1491,'_photos_colonne_droite|||2|value','1495'), -(15351,1491,'_haiku_details_produit',''), -(15352,1512,'_sku','PIASU-EC-s'), -(15353,1512,'_regular_price','50'), -(15354,1512,'total_sales','2'), -(15355,1512,'_tax_status','taxable'), -(15356,1512,'_tax_class',''), -(15357,1512,'_manage_stock','no'), -(15358,1512,'_backorders','no'), -(15359,1512,'_sold_individually','no'), -(15360,1512,'_virtual','no'), -(15361,1512,'_downloadable','no'), -(15362,1512,'_download_limit','-1'), -(15363,1512,'_download_expiry','-1'), -(15365,1512,'_stock',NULL), -(15366,1512,'_stock_status','instock'), -(15367,1512,'_wc_average_rating','0'), -(15368,1512,'_wc_review_count','0'), -(15369,1512,'_product_version','10.3.4'), -(15370,1512,'_price','50'), -(15375,1512,'_edit_lock','1764235822:1'), -(15376,1512,'_edit_last','1'), -(15381,1513,'_wp_attached_file','2025/11/PIASU-EC-s.jpg'), -(15382,1513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:22:\"2025/11/PIASU-EC-s.jpg\";s:8:\"filesize\";i:1158074;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3017;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"PIASU-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3017;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15383,1513,'_wp_attachment_image_alt','Piasu ear cuff in sterling silver. A statement piece composed of thick wires and silver beads.'), -(15384,1514,'_wp_attached_file','2025/11/DSCF7654.jpg'), -(15385,1514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2636;s:6:\"height\";i:3295;s:4:\"file\";s:20:\"2025/11/DSCF7654.jpg\";s:8:\"filesize\";i:1150475;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7654-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15386,1514,'_wp_attachment_image_alt','Piasu ear cuff in sterling silver. A statement piece composed of thick wires and silver beads.'), -(15387,1515,'_wp_attached_file','2025/11/DSCF7673.jpg'), -(15388,1515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3576;s:6:\"height\";i:4470;s:4:\"file\";s:20:\"2025/11/DSCF7673.jpg\";s:8:\"filesize\";i:1679554;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7673-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13073;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15389,1515,'_wp_attachment_image_alt','Piasu ear cuff in sterling silver. A statement piece composed of thick wires and silver beads.'), -(15390,1512,'_thumbnail_id','1513'), -(15395,1516,'_sku','PIASU-EC-g'), -(15396,1516,'_regular_price','55'), -(15397,1516,'total_sales','1'), -(15398,1516,'_tax_status','taxable'), -(15399,1516,'_tax_class',''), -(15400,1516,'_manage_stock','no'), -(15401,1516,'_backorders','no'), -(15402,1516,'_sold_individually','no'), -(15403,1516,'_virtual','no'), -(15404,1516,'_downloadable','no'), -(15405,1516,'_download_limit','-1'), -(15406,1516,'_download_expiry','-1'), -(15407,1516,'_thumbnail_id','1517'), -(15408,1516,'_stock',NULL), -(15409,1516,'_stock_status','instock'), -(15410,1516,'_wc_average_rating','0'), -(15411,1516,'_wc_review_count','0'), -(15412,1516,'_product_version','10.3.4'), -(15413,1516,'_price','55'), -(15418,1516,'_edit_lock','1764146076:1'), -(15419,1517,'_wp_attached_file','2025/11/PIASU-EC-g.jpg'), -(15420,1517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:22:\"2025/11/PIASU-EC-g.jpg\";s:8:\"filesize\";i:881698;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16758;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"PIASU-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16758;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1390811824\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15421,1517,'_wp_attachment_image_alt','Piasu ear cuff in gold plated silver. A statement piece composed of thick wires and silver beads.'), -(15422,1516,'_edit_last','1'), -(15423,1518,'_wp_attached_file','2025/11/2025HAIKU_00010.jpg'), -(15424,1518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5304;s:6:\"height\";i:6630;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00010.jpg\";s:8:\"filesize\";i:2065072;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00010-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18519;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15425,1519,'_wp_attached_file','2025/11/2025HAIKU_00029.jpg'), -(15426,1519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4053;s:6:\"height\";i:5067;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00029.jpg\";s:8:\"filesize\";i:1846554;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00029-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15427,1518,'_wp_attachment_image_alt',''), -(15428,1519,'_wp_attachment_image_alt','Piasu ear cuff in gold plated silver. A statement piece composed of thick wires and silver beads.'), -(15429,1519,'_wp_attachment_image_alt','Piasu ear cuff in gold plated silver. A statement piece composed of thick wires and silver beads.'), -(15434,1011,'_wp_trash_meta_status','publish'), -(15435,1011,'_wp_trash_meta_time','1763535952'), -(15436,1011,'_wp_desired_post_slug','piasu-hoops-one-earring'), -(15437,1005,'_wp_trash_meta_status','publish'), -(15438,1005,'_wp_trash_meta_time','1763535952'), -(15439,1005,'_wp_desired_post_slug','piasu-earrings-pair-2'), -(15440,1004,'_wp_trash_meta_status','draft'), -(15441,1004,'_wp_trash_meta_time','1763535952'), -(15442,1004,'_wp_desired_post_slug','piasu-open-hoops'), -(15443,926,'_wp_trash_meta_status','publish'), -(15444,926,'_wp_trash_meta_time','1763535970'), -(15445,926,'_wp_desired_post_slug','boroboro-bead-earrings-silver-honey-calcite'), -(15446,523,'_wp_trash_meta_status','publish'), -(15447,523,'_wp_trash_meta_time','1763535970'), -(15448,523,'_wp_desired_post_slug','boroboro-long-earrings-gold-plated-copy-tigers-eye-2'), -(15449,521,'_wp_trash_meta_status','publish'), -(15450,521,'_wp_trash_meta_time','1763535970'), -(15451,521,'_wp_desired_post_slug','boroboro-bead-earrings-silver'), -(15452,515,'_wp_trash_meta_status','publish'), -(15453,515,'_wp_trash_meta_time','1763535982'), -(15454,515,'_wp_desired_post_slug','boroboro-bead-earrings-gold-plated'), -(15455,532,'_wp_trash_meta_status','publish'), -(15456,532,'_wp_trash_meta_time','1763536008'), -(15457,532,'_wp_desired_post_slug','kara-ring-64'), -(15458,134,'_wp_trash_meta_status','publish'), -(15459,134,'_wp_trash_meta_time','1763536008'), -(15460,134,'_wp_desired_post_slug','hadou-golden-earcuff-98'), -(15461,135,'_wp_trash_meta_status','publish'), -(15462,135,'_wp_trash_meta_time','1763536008'), -(15463,135,'_wp_desired_post_slug','hadou-golden-earcuff-99'), -(15464,136,'_wp_trash_meta_status','publish'), -(15465,136,'_wp_trash_meta_time','1763536008'), -(15466,136,'_wp_desired_post_slug','hadou-golden-earcuff-100'), -(15467,137,'_wp_trash_meta_status','publish'), -(15468,137,'_wp_trash_meta_time','1763536008'), -(15469,137,'_wp_desired_post_slug','hadou-golden-earcuff-101'), -(15470,138,'_wp_trash_meta_status','publish'), -(15471,138,'_wp_trash_meta_time','1763536008'), -(15472,138,'_wp_desired_post_slug','hadou-golden-earcuff-102'), -(15473,139,'_wp_trash_meta_status','publish'), -(15474,139,'_wp_trash_meta_time','1763536008'), -(15475,139,'_wp_desired_post_slug','hadou-golden-earcuff-103'), -(15476,140,'_wp_trash_meta_status','publish'), -(15477,140,'_wp_trash_meta_time','1763536008'), -(15478,140,'_wp_desired_post_slug','hadou-golden-earcuff-104'), -(15479,133,'_wp_trash_meta_status','publish'), -(15480,133,'_wp_trash_meta_time','1763536008'), -(15481,133,'_wp_desired_post_slug','kara-ring'), -(15482,1520,'_sku','PIASU-BO1-s'), -(15483,1520,'total_sales','0'), -(15484,1520,'_tax_status','taxable'), -(15485,1520,'_tax_class',''), -(15486,1520,'_manage_stock','no'), -(15487,1520,'_backorders','no'), -(15488,1520,'_sold_individually','no'), -(15489,1520,'_virtual','no'), -(15490,1520,'_downloadable','no'), -(15491,1520,'_download_limit','-1'), -(15492,1520,'_download_expiry','-1'), -(15493,1520,'_thumbnail_id','1525'), -(15494,1520,'_stock',NULL), -(15495,1520,'_stock_status','instock'), -(15496,1520,'_wc_average_rating','0'), -(15497,1520,'_wc_review_count','0'), -(15498,1520,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(15499,1520,'_product_version','10.3.4'), -(15568,1520,'_price','75'), -(15569,1520,'_price','75'), -(15570,1520,'_edit_lock','1764147754:1'), -(15571,1520,'_edit_last','1'), -(15572,1524,'_wp_attached_file','2025/11/PIASU-BO1-g.jpg'), -(15573,1524,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3698;s:6:\"height\";i:2958;s:4:\"file\";s:23:\"2025/11/PIASU-BO1-g.jpg\";s:8:\"filesize\";i:547570;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BO1-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393568082\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15574,1524,'_wp_attachment_image_alt','Piasu pending earrings. Maxi version of a stud piercing. In gold plated silver.'), -(15575,1525,'_wp_attached_file','2025/11/PIASU-BO1-s.jpg'), -(15576,1525,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3110;s:6:\"height\";i:2488;s:4:\"file\";s:23:\"2025/11/PIASU-BO1-s.jpg\";s:8:\"filesize\";i:395287;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BO1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17135;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"PIASU-BO1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17135;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393567990\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15577,1525,'_wp_attachment_image_alt','Piasu pending earrings. Maxi version of a stud piercing. In sterling silver.'), -(15578,1526,'_wp_attached_file','2025/11/2025HAIKU_00032.jpg'), -(15579,1526,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5304;s:6:\"height\";i:6630;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00032.jpg\";s:8:\"filesize\";i:2047308;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00032-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16224;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15580,1526,'_wp_attachment_image_alt',''), -(15581,1527,'_wp_attached_file','2025/11/2025HAIKU_00057.jpg'), -(15582,1527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4583;s:6:\"height\";i:5728;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00057.jpg\";s:8:\"filesize\";i:2034037;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00057-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18670;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15583,1527,'_wp_attachment_image_alt','Piasu pending earrings. Maxi version of a stud piercing. In sterling silver.'), -(15584,1520,'_regular_price','75'), -(15596,1512,'_photos_colonne_gauche|||0|value','1513'), -(15597,1512,'_photos_colonne_droite|||0|value','1514'), -(15598,1512,'_photos_colonne_droite|||1|value','1515'), -(15599,1512,'_haiku_details_produit',''), -(15600,1516,'_photos_colonne_gauche|||0|value','1517'), -(15601,1516,'_photos_colonne_droite|||0|value','1518'), -(15602,1516,'_photos_colonne_droite|||1|value','1519'), -(15603,1516,'_haiku_details_produit',''), -(15604,1406,'_photos_colonne_gauche|||0|value','1407'), -(15605,1406,'_photos_colonne_droite|||0|value','1409'), -(15606,1406,'_photos_colonne_droite|||1|value','1411'), -(15607,1406,'_photos_colonne_droite|||2|value','1503'), -(15608,1406,'_haiku_details_produit',''), -(15609,1401,'_photos_colonne_gauche|||0|value','1402'), -(15610,1401,'_photos_colonne_droite|||0|value','1403'), -(15611,1401,'_photos_colonne_droite|||1|value','1405'), -(15612,1401,'_photos_colonne_droite|||2|value','1504'), -(15613,1401,'_haiku_details_produit',''), -(15622,202,'_price','55'), -(15623,202,'_price','90'), -(15624,202,'_photos_colonne_gauche|||0|value','1485'), -(15625,202,'_photos_colonne_droite|||0|value','1482'), -(15626,202,'_photos_colonne_droite|||1|value','1483'), -(15627,202,'_photos_colonne_droite|||2|value','1484'), -(15628,202,'_haiku_details_produit',''), -(15629,1531,'_sku','PIASU-EC-g-1'), -(15630,1531,'_regular_price','50'), -(15631,1531,'total_sales','0'), -(15632,1531,'_tax_status','taxable'), -(15633,1531,'_tax_class',''), -(15634,1531,'_manage_stock','no'), -(15635,1531,'_backorders','no'), -(15636,1531,'_sold_individually','no'), -(15637,1531,'_virtual','no'), -(15638,1531,'_downloadable','no'), -(15639,1531,'_download_limit','-1'), -(15640,1531,'_download_expiry','-1'), -(15641,1531,'_thumbnail_id','1532'), -(15642,1531,'_stock',NULL), -(15643,1531,'_stock_status','instock'), -(15644,1531,'_wc_average_rating','0'), -(15645,1531,'_wc_review_count','0'), -(15646,1531,'_product_version','10.3.4'), -(15647,1531,'_price','50'), -(15652,1531,'_edit_lock','1764147397:1'), -(15653,1531,'_edit_last','1'), -(15654,1532,'_wp_attached_file','2025/11/TAMANORI-EC-g.jpg'), -(15655,1532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4080;s:6:\"height\";i:3264;s:4:\"file\";s:25:\"2025/11/TAMANORI-EC-g.jpg\";s:8:\"filesize\";i:596187;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TAMANORI-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17462;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393569092\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15656,1532,'_wp_attachment_image_alt','Tamanori ear cuff in gold plated silver with dangling chains.'), -(15657,1533,'_wp_attached_file','2025/11/2025HAIKU_00011.jpg'), -(15658,1533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1591;s:6:\"height\";i:2385;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00011.jpg\";s:8:\"filesize\";i:2069803;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00011-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15659,1533,'_wp_attachment_image_alt','Tamanori ear cuff in gold plated silver with dangling chains.'), -(15660,1533,'_wp_attachment_image_alt','Tamanori ear cuff in gold plated silver with dangling chains.'), -(15661,1534,'_wp_attached_file','2025/11/2025HAIKU_00019.jpg'), -(15662,1534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1591;s:6:\"height\";i:2385;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00019.jpg\";s:8:\"filesize\";i:1746031;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00019-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21874;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15663,1534,'_wp_attachment_image_alt','Tamanori ear cuff in gold plated silver with dangling chains.'), -(15672,1535,'_sku','PIASU-EC-g-1-1'), -(15673,1535,'_regular_price','45'), -(15674,1535,'total_sales','0'), -(15675,1535,'_tax_status','taxable'), -(15676,1535,'_tax_class',''), -(15677,1535,'_manage_stock','no'), -(15678,1535,'_backorders','no'), -(15679,1535,'_sold_individually','no'), -(15680,1535,'_virtual','no'), -(15681,1535,'_downloadable','no'), -(15682,1535,'_download_limit','-1'), -(15683,1535,'_download_expiry','-1'), -(15684,1535,'_thumbnail_id','1536'), -(15685,1535,'_stock',NULL), -(15686,1535,'_stock_status','instock'), -(15687,1535,'_wc_average_rating','0'), -(15688,1535,'_wc_review_count','0'), -(15689,1535,'_product_version','10.3.4'), -(15690,1535,'_price','45'), -(15695,1535,'_edit_lock','1764147381:1'), -(15696,1536,'_wp_attached_file','2025/11/TAMANORI-EC-s.jpg'), -(15697,1536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3177;s:6:\"height\";i:2542;s:4:\"file\";s:25:\"2025/11/TAMANORI-EC-s.jpg\";s:8:\"filesize\";i:319272;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TAMANORI-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16655;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"TAMANORI-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16655;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393569131\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15698,1536,'_wp_attachment_image_alt','Tamanori ear cuff in sterling silver with dangling chains.'), -(15699,1535,'_edit_last','1'), -(15700,1537,'_wp_attached_file','2025/11/2025HAIKU_0001.jpg'), -(15701,1537,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1591;s:6:\"height\";i:2385;s:4:\"file\";s:26:\"2025/11/2025HAIKU_0001.jpg\";s:8:\"filesize\";i:1574318;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"2025HAIKU_0001-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15702,1537,'_wp_attachment_image_alt','Tamanori ear cuff in sterling silver with dangling chains.'), -(15703,1538,'_wp_attached_file','2025/11/2025HAIKU_00019-1-e1764147483802.jpg'), -(15704,1538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1403;s:6:\"height\";i:2154;s:4:\"file\";s:44:\"2025/11/2025HAIKU_00019-1-e1764147483802.jpg\";s:8:\"filesize\";i:556817;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"2025HAIKU_00019-1-e1764147483802-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20824;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15705,1538,'_wp_attachment_image_alt','Tamanori ear cuff in sterling silver with dangling chains.'), -(15706,1538,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:1591;s:6:\"height\";i:2385;s:8:\"filesize\";i:1746031;s:4:\"file\";s:21:\"2025HAIKU_00019-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:29:\"2025HAIKU_00019-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21874;}}'), -(15707,1535,'_photos_colonne_gauche|||0|value','1536'), -(15708,1535,'_photos_colonne_droite|||0|value','1537'), -(15709,1535,'_photos_colonne_droite|||1|value','1538'), -(15710,1535,'_haiku_details_produit',''), -(15711,1531,'_photos_colonne_gauche|||0|value','1532'), -(15712,1531,'_photos_colonne_droite|||0|value','1533'), -(15713,1531,'_photos_colonne_droite|||1|value','1534'), -(15714,1531,'_haiku_details_produit',''), -(15715,1539,'_wp_attached_file','2025/11/2025HAIKU_00031.jpg'), -(15716,1539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1509;s:6:\"height\";i:2262;s:4:\"file\";s:27:\"2025/11/2025HAIKU_00031.jpg\";s:8:\"filesize\";i:1640516;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00031-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20299;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15717,1539,'_wp_attachment_image_alt','Piasu pending earrings. Maxi version of a stud piercing. In sterling silver.'), -(15718,1520,'_photos_colonne_gauche|||0|value','1525'), -(15719,1520,'_photos_colonne_droite|||0|value','1539'), -(15720,1520,'_photos_colonne_droite|||1|value','1526'), -(15721,1520,'_photos_colonne_droite|||2|value','1527'), -(15722,1520,'_haiku_details_produit',''), -(15723,554,'_price','45'), -(15724,554,'_price','70'), -(15725,554,'_photos_colonne_gauche|||0|value','935'), -(15726,554,'_photos_colonne_droite|||0|value','936'), -(15727,554,'_photos_colonne_droite|||1|value','937'), -(15728,554,'_photos_colonne_droite|||2|value','835'), -(15729,554,'_haiku_details_produit',''), -(15730,545,'_price','50'), -(15731,545,'_price','75'), -(15732,545,'_photos_colonne_gauche|||0|value','938'), -(15733,545,'_photos_colonne_droite|||0|value','762'), -(15734,545,'_photos_colonne_droite|||1|value','834'), -(15735,545,'_haiku_details_produit',''), -(15736,398,'_photos_colonne_gauche|||0|value','1391'), -(15737,398,'_photos_colonne_droite|||0|value','400'), -(15738,398,'_photos_colonne_droite|||1|value','401'), -(15739,398,'_haiku_details_produit',''), -(15740,393,'_photos_colonne_gauche|||0|value','1393'), -(15741,393,'_photos_colonne_droite|||0|value','397'), -(15742,393,'_photos_colonne_droite|||1|value','673'), -(15743,393,'_haiku_details_produit',''), -(15744,213,'_price','55'), -(15745,213,'_price','80'), -(15746,213,'_photos_colonne_gauche|||0|value','1396'), -(15747,213,'_photos_colonne_droite|||0|value','1456'), -(15748,213,'_photos_colonne_droite|||1|value','1457'), -(15749,213,'_photos_colonne_droite|||2|value','671'), -(15750,213,'_haiku_details_produit',''), -(15751,183,'_price','50'), -(15752,183,'_price','75'), -(15753,183,'_photos_colonne_gauche|||0|value','1395'), -(15754,183,'_photos_colonne_droite|||0|value','1454'), -(15755,183,'_photos_colonne_droite|||1|value','1455'), -(15756,183,'_photos_colonne_droite|||2|value','718'), -(15757,183,'_haiku_details_produit',''), -(15758,1541,'_sku','HATTARI-CR1-s'), -(15759,1541,'total_sales','0'), -(15760,1541,'_tax_status','taxable'), -(15761,1541,'_tax_class',''), -(15762,1541,'_manage_stock','no'), -(15763,1541,'_backorders','no'), -(15764,1541,'_sold_individually','no'), -(15765,1541,'_virtual','no'), -(15766,1541,'_downloadable','no'), -(15767,1541,'_download_limit','-1'), -(15768,1541,'_download_expiry','-1'), -(15769,1541,'_thumbnail_id','1545'), -(15770,1541,'_stock',NULL), -(15771,1541,'_stock_status','instock'), -(15772,1541,'_wc_average_rating','0'), -(15773,1541,'_wc_review_count','0'), -(15774,1541,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(15775,1541,'_product_version','10.3.4'), -(15842,1541,'_price','70'), -(15843,1541,'_price','70'), -(15844,1541,'_edit_lock','1764542205:1'), -(15845,1541,'_edit_last','1'), -(15846,1545,'_wp_attached_file','2025/11/HATTARI-CR1-s.jpg'), -(15847,1545,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3660;s:6:\"height\";i:2928;s:4:\"file\";s:25:\"2025/11/HATTARI-CR1-s.jpg\";s:8:\"filesize\";i:589738;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-CR1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1394156931\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15848,1545,'_wp_attachment_image_alt','Hattari small crossed hoops in sterling silver.'), -(15849,1546,'_wp_attached_file','2025/11/DSCF7730.jpg'), -(15850,1546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2918;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2025/11/DSCF7730.jpg\";s:8:\"filesize\";i:2060914;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7730-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14333;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15851,1546,'_wp_attachment_image_alt',''), -(15852,1547,'_wp_attached_file','2025/11/DSCF7724.jpg'), -(15853,1547,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2301;s:6:\"height\";i:2876;s:4:\"file\";s:20:\"2025/11/DSCF7724.jpg\";s:8:\"filesize\";i:1873335;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7724-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13200;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15854,1547,'_wp_attachment_image_alt','Hattari small crossed hoops in sterling silver.'), -(15855,1547,'_wp_attachment_image_alt','Hattari small crossed hoops in sterling silver.'), -(15856,1548,'_wp_attached_file','2025/11/DSCF7723.jpg'), -(15857,1548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2179;s:6:\"height\";i:2724;s:4:\"file\";s:20:\"2025/11/DSCF7723.jpg\";s:8:\"filesize\";i:1799467;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7723-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15189;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15858,1548,'_wp_attachment_image_alt','Hattari small crossed hoops in sterling silver.'), -(15859,1548,'_wp_attachment_image_alt','Hattari small crossed hoops in sterling silver.'), -(15860,1541,'_regular_price','70'), -(15861,1541,'_photos_colonne_gauche|||0|value','1545'), -(15862,1541,'_photos_colonne_droite|||0|value','1546'), -(15863,1541,'_photos_colonne_droite|||1|value','1547'), -(15864,1541,'_photos_colonne_droite|||2|value','1548'), -(15865,1541,'_haiku_details_produit',''), -(15866,1549,'_sku','HATTARI-CR1-g'), -(15867,1549,'_regular_price','75'), -(15868,1549,'total_sales','0'), -(15869,1549,'_tax_status','taxable'), -(15870,1549,'_tax_class',''), -(15871,1549,'_manage_stock','no'), -(15872,1549,'_backorders','no'), -(15873,1549,'_sold_individually','no'), -(15874,1549,'_virtual','no'), -(15875,1549,'_downloadable','no'), -(15876,1549,'_download_limit','-1'), -(15877,1549,'_download_expiry','-1'), -(15878,1549,'_thumbnail_id','1551'), -(15879,1549,'_stock',NULL), -(15880,1549,'_stock_status','instock'), -(15881,1549,'_wc_average_rating','0'), -(15882,1549,'_wc_review_count','0'), -(15883,1549,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(15884,1549,'_product_version','10.3.4'), -(15885,1549,'_price','75'), -(15891,1549,'_edit_lock','1764542621:1'), -(15894,1551,'_wp_attached_file','2025/11/HATTARI-CR1-g.jpg'), -(15895,1551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3825;s:6:\"height\";i:3060;s:4:\"file\";s:25:\"2025/11/HATTARI-CR1-g.jpg\";s:8:\"filesize\";i:627414;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-CR1-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17162;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1394156895\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15896,1551,'_wp_attachment_image_alt','Hattari small crossed hoops in gold plated silver.'), -(15897,1549,'_edit_last','1'), -(15898,1552,'_wp_attached_file','2025/11/DSCF8607.jpg'), -(15899,1552,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2661;s:6:\"height\";i:3326;s:4:\"file\";s:20:\"2025/11/DSCF8607.jpg\";s:8:\"filesize\";i:1804474;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8607-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16532;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15900,1552,'_wp_attachment_image_alt','Hattari small crossed hoops in gold plated silver.'), -(15901,1552,'_wp_attachment_image_alt','Hattari small crossed hoops in gold plated silver.'), -(15902,1553,'_wp_attached_file','2025/11/DSCF8596.jpg'), -(15903,1553,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2255;s:6:\"height\";i:2819;s:4:\"file\";s:20:\"2025/11/DSCF8596.jpg\";s:8:\"filesize\";i:1918809;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8596-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15904,1553,'_wp_attachment_image_alt','Hattari small crossed hoops in gold plated silver.'), -(15905,1554,'_wp_attached_file','2025/11/DSCF8561.jpg'), -(15906,1554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1505;s:6:\"height\";i:1881;s:4:\"file\";s:20:\"2025/11/DSCF8561.jpg\";s:8:\"filesize\";i:1500102;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8561-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15907,1554,'_wp_attachment_image_alt','Hattari small crossed hoops in gold plated silver.'), -(15923,288,'_photos_colonne_gauche|||0|value','1371'), -(15924,288,'_photos_colonne_droite|||0|value','290'), -(15925,288,'_photos_colonne_droite|||1|value','689'), -(15926,288,'_haiku_details_produit',''), -(15927,1549,'_photos_colonne_gauche|||0|value','1551'), -(15928,1549,'_photos_colonne_droite|||0|value','1552'), -(15929,1549,'_photos_colonne_droite|||1|value','1553'), -(15930,1549,'_photos_colonne_droite|||2|value','1554'), -(15931,1549,'_haiku_details_produit',''), -(15932,1555,'_sku','HATTARI-EC-s'), -(15933,1555,'_regular_price','45'), -(15934,1555,'total_sales','0'), -(15935,1555,'_tax_status','taxable'), -(15936,1555,'_tax_class',''), -(15937,1555,'_manage_stock','no'), -(15938,1555,'_backorders','no'), -(15939,1555,'_sold_individually','no'), -(15940,1555,'_virtual','no'), -(15941,1555,'_downloadable','no'), -(15942,1555,'_download_limit','-1'), -(15943,1555,'_download_expiry','-1'), -(15944,1555,'_thumbnail_id','1556'), -(15945,1555,'_stock',NULL), -(15946,1555,'_stock_status','instock'), -(15947,1555,'_wc_average_rating','0'), -(15948,1555,'_wc_review_count','0'), -(15949,1555,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(15950,1555,'_product_version','10.3.4'), -(15951,1555,'_price','45'), -(15957,1555,'_edit_lock','1764542988:1'), -(15958,1555,'_edit_last','1'), -(15959,1556,'_wp_attached_file','2025/11/HATTARI-EC-s.jpg'), -(15960,1556,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3921;s:6:\"height\";i:3137;s:4:\"file\";s:24:\"2025/11/HATTARI-EC-s.jpg\";s:8:\"filesize\";i:1031253;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HATTARI-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393636706\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(15961,1556,'_wp_attachment_image_alt','Hattari ear cuff with intertwined silver wires.'), -(15962,1557,'_wp_attached_file','2025/11/DSCF7711.jpg'), -(15963,1557,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2952;s:6:\"height\";i:3690;s:4:\"file\";s:20:\"2025/11/DSCF7711.jpg\";s:8:\"filesize\";i:2058860;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7711-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15275;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15964,1557,'_wp_attachment_image_alt','Hattari ear cuff with intertwined silver wires.'), -(15965,1558,'_wp_attached_file','2025/11/DSCF7713.jpg'), -(15966,1558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2734;s:6:\"height\";i:3417;s:4:\"file\";s:20:\"2025/11/DSCF7713.jpg\";s:8:\"filesize\";i:2006136;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7713-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16230;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15967,1558,'_wp_attachment_image_alt','Hattari ear cuff with intertwined silver wires.'), -(15968,1559,'_wp_attached_file','2025/11/DSCF7727.jpg'), -(15969,1559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2134;s:6:\"height\";i:2668;s:4:\"file\";s:20:\"2025/11/DSCF7727.jpg\";s:8:\"filesize\";i:1859678;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF7727-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13825;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(15970,1559,'_wp_attachment_image_alt','Hattari ear cuff with intertwined silver wires.'), -(15971,1555,'_photos_colonne_gauche|||0|value','1556'), -(15972,1555,'_photos_colonne_droite|||0|value','1559'), -(15973,1555,'_photos_colonne_droite|||1|value','1557'), -(15974,1555,'_photos_colonne_droite|||2|value','1558'), -(15975,1555,'_haiku_details_produit',''), -(15976,1560,'_sku','HATTARI-EC-g'), -(15977,1560,'_regular_price','50'), -(15978,1560,'total_sales','0'), -(15979,1560,'_tax_status','taxable'), -(15980,1560,'_tax_class',''), -(15981,1560,'_manage_stock','no'), -(15982,1560,'_backorders','no'), -(15983,1560,'_sold_individually','no'), -(15984,1560,'_virtual','no'), -(15985,1560,'_downloadable','no'), -(15986,1560,'_download_limit','-1'), -(15987,1560,'_download_expiry','-1'), -(15988,1560,'_thumbnail_id','1561'), -(15989,1560,'_stock',NULL), -(15990,1560,'_stock_status','instock'), -(15991,1560,'_wc_average_rating','0'), -(15992,1560,'_wc_review_count','0'), -(15993,1560,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(15994,1560,'_product_version','10.3.4'), -(15995,1560,'_price','50'), -(16001,1560,'_edit_lock','1764746670:1'), -(16002,1561,'_wp_attached_file','2025/11/HATTARI-EC-g.jpg'), -(16003,1561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3872;s:6:\"height\";i:3098;s:4:\"file\";s:24:\"2025/11/HATTARI-EC-g.jpg\";s:8:\"filesize\";i:449439;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HATTARI-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16673;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1393636752\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), -(16004,1561,'_wp_attachment_image_alt','Hattari ear cuff with intertwined gold plated wires.'), -(16005,1560,'_edit_last','1'), -(16006,1562,'_wp_attached_file','2025/11/DSCF8415.jpg'), -(16007,1562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2052;s:6:\"height\";i:2565;s:4:\"file\";s:20:\"2025/11/DSCF8415.jpg\";s:8:\"filesize\";i:2015737;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8415-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15488;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16008,1562,'_wp_attachment_image_alt','Hattari ear cuff with intertwined gold plated wires.'), -(16009,1562,'_wp_attachment_image_alt','Hattari ear cuff with intertwined gold plated wires.'), -(16010,1563,'_wp_attached_file','2025/11/DSCF8503.jpg'), -(16011,1563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2369;s:6:\"height\";i:2962;s:4:\"file\";s:20:\"2025/11/DSCF8503.jpg\";s:8:\"filesize\";i:2024515;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8503-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18870;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16012,1563,'_wp_attachment_image_alt','Hattari ear cuff with intertwined gold plated wires.'), -(16013,1564,'_wp_attached_file','2025/11/DSCF8502.jpg'), -(16014,1564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2523;s:6:\"height\";i:3154;s:4:\"file\";s:20:\"2025/11/DSCF8502.jpg\";s:8:\"filesize\";i:1888538;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSCF8502-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16015,1564,'_wp_attachment_image_alt','Hattari ear cuff with intertwined gold plated wires.'), -(16016,1560,'_photos_colonne_gauche|||0|value','1561'), -(16017,1560,'_photos_colonne_droite|||0|value','1562'), -(16018,1560,'_photos_colonne_droite|||1|value','1563'), -(16019,1560,'_photos_colonne_droite|||2|value','1564'), -(16020,1560,'_haiku_details_produit',''), -(16021,1565,'_wp_attached_file','2024/10/2025HAIKU_00063.jpg'), -(16022,1565,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1326;s:6:\"height\";i:1988;s:4:\"file\";s:27:\"2024/10/2025HAIKU_00063.jpg\";s:8:\"filesize\";i:1828070;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00063-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18747;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16023,1565,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(16024,1566,'_wp_attached_file','2024/10/2025HAIKU_00049.jpg'), -(16025,1566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2007;s:6:\"height\";i:2508;s:4:\"file\";s:27:\"2024/10/2025HAIKU_00049.jpg\";s:8:\"filesize\";i:1986991;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00049-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20593;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16026,1566,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(16027,1567,'_wp_attached_file','2024/10/2025HAIKU_00080.jpg'), -(16028,1567,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1365;s:6:\"height\";i:2046;s:4:\"file\";s:27:\"2024/10/2025HAIKU_00080.jpg\";s:8:\"filesize\";i:2077626;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00080-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31935;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16029,1567,'_wp_attachment_image_alt','Fuyou sterling silver necklace with fluid elements and gold plated dangling detail.'), -(16035,274,'_photos_colonne_gauche|||0|value','1382'), -(16036,274,'_photos_colonne_droite|||0|value','1565'), -(16037,274,'_photos_colonne_droite|||1|value','1566'), -(16038,274,'_photos_colonne_droite|||2|value','1567'), -(16039,274,'_haiku_details_produit',''), -(16040,1568,'_wp_attached_file','2024/11/2025HAIKU_00024.jpg'), -(16041,1568,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1856;s:6:\"height\";i:2320;s:4:\"file\";s:27:\"2024/11/2025HAIKU_00024.jpg\";s:8:\"filesize\";i:2087764;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00024-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16042,1568,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(16043,1569,'_wp_attached_file','2024/11/2025HAIKU_00022.jpg'), -(16044,1569,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1844;s:6:\"height\";i:2306;s:4:\"file\";s:27:\"2024/11/2025HAIKU_00022.jpg\";s:8:\"filesize\";i:1891696;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00022-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24136;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16045,1569,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(16046,1570,'_wp_attached_file','2024/11/2025HAIKU_00035.jpg'), -(16047,1570,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1872;s:6:\"height\";i:2340;s:4:\"file\";s:27:\"2024/11/2025HAIKU_00035.jpg\";s:8:\"filesize\";i:1837026;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2025HAIKU_00035-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Fiona Forte\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16048,1570,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and gold plated details.'), -(16049,766,'_photos_colonne_gauche|||0|value','1365'), -(16050,766,'_photos_colonne_droite|||0|value','1568'), -(16051,766,'_photos_colonne_droite|||1|value','1570'), -(16052,766,'_photos_colonne_droite|||2|value','1569'), -(16053,766,'_photos_colonne_droite|||3|value','1367'), -(16054,766,'_haiku_details_produit',''), -(16055,1574,'_edit_lock','1764759965:1'), -(16056,1574,'_edit_last','1'), -(16057,1575,'_wp_attached_file','2025/12/HK-cartekdo-1.jpg'), -(16058,1575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1694;s:6:\"height\";i:2116;s:4:\"file\";s:25:\"2025/12/HK-cartekdo-1.jpg\";s:8:\"filesize\";i:1324328;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HK-cartekdo-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7231;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"HK-cartekdo-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7231;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16059,1575,'_wp_attachment_image_alt','Haiku Gift card'), -(16060,1576,'_wp_attached_file','2025/12/HK-cartekdo-2-e1764747369741.jpg'), -(16061,1576,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1023;s:4:\"file\";s:40:\"2025/12/HK-cartekdo-2-e1764747369741.jpg\";s:8:\"filesize\";i:89059;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"HK-cartekdo-2-e1764747369741-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8291;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16062,1576,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:1101;s:6:\"height\";i:1376;s:8:\"filesize\";i:462163;s:4:\"file\";s:17:\"HK-cartekdo-2.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:25:\"HK-cartekdo-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7737;}}'), -(16063,1576,'_wp_attachment_image_alt','Haiku Gift Card'), -(16064,1577,'_wp_attached_file','2025/12/HK-cartekdo-3-e1764747408263.jpg'), -(16065,1577,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1232;s:6:\"height\";i:1053;s:4:\"file\";s:40:\"2025/12/HK-cartekdo-3-e1764747408263.jpg\";s:8:\"filesize\";i:112032;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"HK-cartekdo-3-e1764747408263-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), -(16066,1577,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:1232;s:6:\"height\";i:1541;s:8:\"filesize\";i:868801;s:4:\"file\";s:17:\"HK-cartekdo-3.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:25:\"HK-cartekdo-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9178;}}'), -(16067,1574,'total_sales','0'), -(16068,1574,'_tax_status','taxable'), -(16069,1574,'_tax_class',''), -(16070,1574,'_manage_stock','no'), -(16071,1574,'_backorders','no'), -(16072,1574,'_sold_individually','no'), -(16073,1574,'_virtual','no'), -(16074,1574,'_downloadable','no'), -(16075,1574,'_download_limit','-1'), -(16076,1574,'_download_expiry','-1'), -(16077,1574,'_stock',NULL), -(16078,1574,'_stock_status','instock'), -(16079,1574,'_wc_average_rating','0'), -(16080,1574,'_wc_review_count','0'), -(16082,1574,'_product_version','10.3.4'), -(16134,1574,'_thumbnail_id','1575'), -(16135,1574,'_sku','GIFTcard'), -(16213,1574,'_product_attributes','a:1:{s:18:\"pa_giftcard-amount\";a:6:{s:4:\"name\";s:18:\"pa_giftcard-amount\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(16214,1585,'_variation_description',''), -(16215,1585,'total_sales','0'), -(16216,1585,'_tax_status','taxable'), -(16217,1585,'_tax_class','parent'), -(16218,1585,'_manage_stock','no'), -(16219,1585,'_backorders','no'), -(16220,1585,'_sold_individually','no'), -(16221,1585,'_virtual','yes'), -(16222,1585,'_downloadable','yes'), -(16223,1585,'_download_limit','-1'), -(16224,1585,'_download_expiry','-1'), -(16225,1585,'_stock',NULL), -(16226,1585,'_stock_status','instock'), -(16227,1585,'_wc_average_rating','0'), -(16228,1585,'_wc_review_count','0'), -(16229,1585,'attribute_pa_giftcard-amount','100e'), -(16230,1585,'_product_version','10.3.4'), -(16231,1586,'_variation_description',''), -(16232,1586,'total_sales','0'), -(16233,1586,'_tax_status','taxable'), -(16234,1586,'_tax_class','parent'), -(16235,1586,'_manage_stock','no'), -(16236,1586,'_backorders','no'), -(16237,1586,'_sold_individually','no'), -(16238,1586,'_virtual','yes'), -(16239,1586,'_downloadable','yes'), -(16240,1586,'_download_limit','-1'), -(16241,1586,'_download_expiry','-1'), -(16242,1586,'_stock',NULL), -(16243,1586,'_stock_status','instock'), -(16244,1586,'_wc_average_rating','0'), -(16245,1586,'_wc_review_count','0'), -(16246,1586,'attribute_pa_giftcard-amount','40e'), -(16247,1586,'_product_version','10.3.4'), -(16248,1587,'_variation_description',''), -(16249,1587,'total_sales','0'), -(16250,1587,'_tax_status','taxable'), -(16251,1587,'_tax_class','parent'), -(16252,1587,'_manage_stock','no'), -(16253,1587,'_backorders','no'), -(16254,1587,'_sold_individually','no'), -(16255,1587,'_virtual','yes'), -(16256,1587,'_downloadable','yes'), -(16257,1587,'_download_limit','-1'), -(16258,1587,'_download_expiry','-1'), -(16259,1587,'_stock',NULL), -(16260,1587,'_stock_status','instock'), -(16261,1587,'_wc_average_rating','0'), -(16262,1587,'_wc_review_count','0'), -(16263,1587,'attribute_pa_giftcard-amount','50e'), -(16264,1587,'_product_version','10.3.4'), -(16265,1588,'_variation_description',''), -(16266,1588,'total_sales','0'), -(16267,1588,'_tax_status','taxable'), -(16268,1588,'_tax_class','parent'), -(16269,1588,'_manage_stock','no'), -(16270,1588,'_backorders','no'), -(16271,1588,'_sold_individually','no'), -(16272,1588,'_virtual','yes'), -(16273,1588,'_downloadable','yes'), -(16274,1588,'_download_limit','-1'), -(16275,1588,'_download_expiry','-1'), -(16276,1588,'_stock',NULL), -(16277,1588,'_stock_status','instock'), -(16278,1588,'_wc_average_rating','0'), -(16279,1588,'_wc_review_count','0'), -(16280,1588,'attribute_pa_giftcard-amount','60e'), -(16281,1588,'_product_version','10.3.4'), -(16282,1589,'_variation_description',''), -(16283,1589,'total_sales','0'), -(16284,1589,'_tax_status','taxable'), -(16285,1589,'_tax_class','parent'), -(16286,1589,'_manage_stock','no'), -(16287,1589,'_backorders','no'), -(16288,1589,'_sold_individually','no'), -(16289,1589,'_virtual','yes'), -(16290,1589,'_downloadable','yes'), -(16291,1589,'_download_limit','-1'), -(16292,1589,'_download_expiry','-1'), -(16293,1589,'_stock',NULL), -(16294,1589,'_stock_status','instock'), -(16295,1589,'_wc_average_rating','0'), -(16296,1589,'_wc_review_count','0'), -(16297,1589,'attribute_pa_giftcard-amount','70e'), -(16298,1589,'_product_version','10.3.4'), -(16299,1590,'_variation_description',''), -(16300,1590,'total_sales','0'), -(16301,1590,'_tax_status','taxable'), -(16302,1590,'_tax_class','parent'), -(16303,1590,'_manage_stock','no'), -(16304,1590,'_backorders','no'), -(16305,1590,'_sold_individually','no'), -(16306,1590,'_virtual','yes'), -(16307,1590,'_downloadable','yes'), -(16308,1590,'_download_limit','-1'), -(16309,1590,'_download_expiry','-1'), -(16310,1590,'_stock',NULL), -(16311,1590,'_stock_status','instock'), -(16312,1590,'_wc_average_rating','0'), -(16313,1590,'_wc_review_count','0'), -(16314,1590,'attribute_pa_giftcard-amount','80e'), -(16315,1590,'_product_version','10.3.4'), -(16316,1591,'_variation_description',''), -(16317,1591,'total_sales','0'), -(16318,1591,'_tax_status','taxable'), -(16319,1591,'_tax_class','parent'), -(16320,1591,'_manage_stock','no'), -(16321,1591,'_backorders','no'), -(16322,1591,'_sold_individually','no'), -(16323,1591,'_virtual','yes'), -(16324,1591,'_downloadable','yes'), -(16325,1591,'_download_limit','-1'), -(16326,1591,'_download_expiry','-1'), -(16327,1591,'_stock',NULL), -(16328,1591,'_stock_status','instock'), -(16329,1591,'_wc_average_rating','0'), -(16330,1591,'_wc_review_count','0'), -(16331,1591,'attribute_pa_giftcard-amount','90e'), -(16332,1591,'_product_version','10.3.4'), -(16333,1592,'_wp_attached_file','woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf'), -(16334,1592,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:215602;}'), -(16335,1593,'_wp_attached_file','woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf'), -(16336,1593,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:209261;}'), -(16337,1585,'_sku','GIFTcard-100'), -(16338,1585,'_thumbnail_id','0'), -(16339,1585,'_downloadable_files','a:2:{s:36:\"ce9ccfa6-ce89-41bd-9bb3-4181ff7ff9e8\";a:4:{s:2:\"id\";s:36:\"ce9ccfa6-ce89-41bd-9bb3-4181ff7ff9e8\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"3bcd25d4-4366-419f-8681-cb1dcf1507ec\";a:4:{s:2:\"id\";s:36:\"3bcd25d4-4366-419f-8681-cb1dcf1507ec\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16340,1586,'_sku','GIFTcard-40'), -(16341,1586,'_thumbnail_id','0'), -(16342,1586,'_downloadable_files','a:2:{s:36:\"bdd544b1-a9cd-4dbf-95af-5c45853dbe36\";a:4:{s:2:\"id\";s:36:\"bdd544b1-a9cd-4dbf-95af-5c45853dbe36\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"fff9a32b-322a-4daf-95f0-7cc491cc58b8\";a:4:{s:2:\"id\";s:36:\"fff9a32b-322a-4daf-95f0-7cc491cc58b8\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16343,1587,'_sku','GIFTcard-50'), -(16344,1587,'_thumbnail_id','0'), -(16345,1587,'_downloadable_files','a:2:{s:36:\"ceb86d6c-4948-429f-9599-d44445860ad1\";a:4:{s:2:\"id\";s:36:\"ceb86d6c-4948-429f-9599-d44445860ad1\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"c6aa6909-f134-4c3c-b239-bcb4a2a92c60\";a:4:{s:2:\"id\";s:36:\"c6aa6909-f134-4c3c-b239-bcb4a2a92c60\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16346,1588,'_sku','GIFTcard-60'), -(16347,1588,'_thumbnail_id','0'), -(16348,1588,'_downloadable_files','a:2:{s:36:\"8c5e4622-5919-4dcd-9f0b-1c944adafb95\";a:4:{s:2:\"id\";s:36:\"8c5e4622-5919-4dcd-9f0b-1c944adafb95\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"67323415-b64c-4793-87d3-4e8b04de96c0\";a:4:{s:2:\"id\";s:36:\"67323415-b64c-4793-87d3-4e8b04de96c0\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16349,1589,'_sku','GIFTcard-70'), -(16350,1589,'_thumbnail_id','0'), -(16351,1589,'_downloadable_files','a:2:{s:36:\"ebed4223-bdb0-4730-b664-e83fb7698c5f\";a:4:{s:2:\"id\";s:36:\"ebed4223-bdb0-4730-b664-e83fb7698c5f\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"7cb861e9-c02b-4528-8cda-91037589ed46\";a:4:{s:2:\"id\";s:36:\"7cb861e9-c02b-4528-8cda-91037589ed46\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16352,1590,'_sku','GIFTcard-80'), -(16353,1590,'_thumbnail_id','0'), -(16354,1590,'_downloadable_files','a:2:{s:36:\"1cc60f67-04d7-4c61-87df-526b8723f141\";a:4:{s:2:\"id\";s:36:\"1cc60f67-04d7-4c61-87df-526b8723f141\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"376471f0-b17a-4917-88e8-5bcb6f8e9fb6\";a:4:{s:2:\"id\";s:36:\"376471f0-b17a-4917-88e8-5bcb6f8e9fb6\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16355,1591,'_sku','GIFTcard-90'), -(16356,1591,'_thumbnail_id','0'), -(16357,1591,'_downloadable_files','a:2:{s:36:\"5d19fba3-0f55-4c2b-ae41-8dad59e1a701\";a:4:{s:2:\"id\";s:36:\"5d19fba3-0f55-4c2b-ae41-8dad59e1a701\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"bd14ca66-6490-4f72-8566-69a7e59939bb\";a:4:{s:2:\"id\";s:36:\"bd14ca66-6490-4f72-8566-69a7e59939bb\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16364,1594,'_sku','GIFTcard-1'), -(16365,1594,'total_sales','0'), -(16366,1594,'_tax_status','taxable'), -(16367,1594,'_tax_class',''), -(16368,1594,'_manage_stock','no'), -(16369,1594,'_backorders','no'), -(16370,1594,'_sold_individually','no'), -(16371,1594,'_virtual','no'), -(16372,1594,'_downloadable','no'), -(16373,1594,'_download_limit','-1'), -(16374,1594,'_download_expiry','-1'), -(16375,1594,'_thumbnail_id','1575'), -(16376,1594,'_stock',NULL), -(16377,1594,'_stock_status','instock'), -(16378,1594,'_wc_average_rating','0'), -(16379,1594,'_wc_review_count','0'), -(16380,1594,'_product_attributes','a:1:{s:18:\"pa_giftcard-amount\";a:6:{s:4:\"name\";s:18:\"pa_giftcard-amount\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), -(16381,1594,'_product_version','10.3.4'), -(16382,1594,'_photos_colonne_gauche|||0|value','1575'), -(16383,1594,'_photos_colonne_droite|||0|value','1577'), -(16384,1594,'_haiku_details_produit',''), -(16385,1595,'_variation_description',''), -(16386,1595,'_sku','GIFTcard-40-1'), -(16387,1595,'total_sales','0'), -(16388,1595,'_tax_status','taxable'), -(16389,1595,'_tax_class','parent'), -(16390,1595,'_manage_stock','no'), -(16391,1595,'_backorders','no'), -(16392,1595,'_sold_individually','no'), -(16393,1595,'_virtual','yes'), -(16394,1595,'_downloadable','yes'), -(16395,1595,'_download_limit','-1'), -(16396,1595,'_download_expiry','-1'), -(16397,1595,'_thumbnail_id','0'), -(16398,1595,'_stock',NULL), -(16399,1595,'_stock_status','instock'), -(16400,1595,'_wc_average_rating','0'), -(16401,1595,'_wc_review_count','0'), -(16402,1595,'_downloadable_files','a:2:{s:36:\"bdd544b1-a9cd-4dbf-95af-5c45853dbe36\";a:4:{s:2:\"id\";s:36:\"bdd544b1-a9cd-4dbf-95af-5c45853dbe36\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"fff9a32b-322a-4daf-95f0-7cc491cc58b8\";a:4:{s:2:\"id\";s:36:\"fff9a32b-322a-4daf-95f0-7cc491cc58b8\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16403,1595,'attribute_pa_giftcard-amount','40e'), -(16404,1595,'_product_version','10.3.4'), -(16405,1596,'_variation_description',''), -(16406,1596,'_sku','GIFTcard-50-1'), -(16407,1596,'total_sales','0'), -(16408,1596,'_tax_status','taxable'), -(16409,1596,'_tax_class','parent'), -(16410,1596,'_manage_stock','no'), -(16411,1596,'_backorders','no'), -(16412,1596,'_sold_individually','no'), -(16413,1596,'_virtual','yes'), -(16414,1596,'_downloadable','yes'), -(16415,1596,'_download_limit','-1'), -(16416,1596,'_download_expiry','-1'), -(16417,1596,'_thumbnail_id','0'), -(16418,1596,'_stock',NULL), -(16419,1596,'_stock_status','instock'), -(16420,1596,'_wc_average_rating','0'), -(16421,1596,'_wc_review_count','0'), -(16422,1596,'_downloadable_files','a:2:{s:36:\"ceb86d6c-4948-429f-9599-d44445860ad1\";a:4:{s:2:\"id\";s:36:\"ceb86d6c-4948-429f-9599-d44445860ad1\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"c6aa6909-f134-4c3c-b239-bcb4a2a92c60\";a:4:{s:2:\"id\";s:36:\"c6aa6909-f134-4c3c-b239-bcb4a2a92c60\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16423,1596,'attribute_pa_giftcard-amount','50e'), -(16424,1596,'_product_version','10.3.4'), -(16425,1597,'_variation_description',''), -(16426,1597,'_sku','GIFTcard-60-1'), -(16427,1597,'total_sales','0'), -(16428,1597,'_tax_status','taxable'), -(16429,1597,'_tax_class','parent'), -(16430,1597,'_manage_stock','no'), -(16431,1597,'_backorders','no'), -(16432,1597,'_sold_individually','no'), -(16433,1597,'_virtual','yes'), -(16434,1597,'_downloadable','yes'), -(16435,1597,'_download_limit','-1'), -(16436,1597,'_download_expiry','-1'), -(16437,1597,'_thumbnail_id','0'), -(16438,1597,'_stock',NULL), -(16439,1597,'_stock_status','instock'), -(16440,1597,'_wc_average_rating','0'), -(16441,1597,'_wc_review_count','0'), -(16442,1597,'_downloadable_files','a:2:{s:36:\"8c5e4622-5919-4dcd-9f0b-1c944adafb95\";a:4:{s:2:\"id\";s:36:\"8c5e4622-5919-4dcd-9f0b-1c944adafb95\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"67323415-b64c-4793-87d3-4e8b04de96c0\";a:4:{s:2:\"id\";s:36:\"67323415-b64c-4793-87d3-4e8b04de96c0\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16443,1597,'attribute_pa_giftcard-amount','60e'), -(16444,1597,'_product_version','10.3.4'), -(16445,1598,'_variation_description',''), -(16446,1598,'_sku','GIFTcard-70-1'), -(16447,1598,'total_sales','0'), -(16448,1598,'_tax_status','taxable'), -(16449,1598,'_tax_class','parent'), -(16450,1598,'_manage_stock','no'), -(16451,1598,'_backorders','no'), -(16452,1598,'_sold_individually','no'), -(16453,1598,'_virtual','yes'), -(16454,1598,'_downloadable','yes'), -(16455,1598,'_download_limit','-1'), -(16456,1598,'_download_expiry','-1'), -(16457,1598,'_thumbnail_id','0'), -(16458,1598,'_stock',NULL), -(16459,1598,'_stock_status','instock'), -(16460,1598,'_wc_average_rating','0'), -(16461,1598,'_wc_review_count','0'), -(16462,1598,'_downloadable_files','a:2:{s:36:\"ebed4223-bdb0-4730-b664-e83fb7698c5f\";a:4:{s:2:\"id\";s:36:\"ebed4223-bdb0-4730-b664-e83fb7698c5f\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"7cb861e9-c02b-4528-8cda-91037589ed46\";a:4:{s:2:\"id\";s:36:\"7cb861e9-c02b-4528-8cda-91037589ed46\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16463,1598,'attribute_pa_giftcard-amount','70e'), -(16464,1598,'_product_version','10.3.4'), -(16465,1599,'_variation_description',''), -(16466,1599,'_sku','GIFTcard-80-1'), -(16467,1599,'total_sales','0'), -(16468,1599,'_tax_status','taxable'), -(16469,1599,'_tax_class','parent'), -(16470,1599,'_manage_stock','no'), -(16471,1599,'_backorders','no'), -(16472,1599,'_sold_individually','no'), -(16473,1599,'_virtual','yes'), -(16474,1599,'_downloadable','yes'), -(16475,1599,'_download_limit','-1'), -(16476,1599,'_download_expiry','-1'), -(16477,1599,'_thumbnail_id','0'), -(16478,1599,'_stock',NULL), -(16479,1599,'_stock_status','instock'), -(16480,1599,'_wc_average_rating','0'), -(16481,1599,'_wc_review_count','0'), -(16482,1599,'_downloadable_files','a:2:{s:36:\"1cc60f67-04d7-4c61-87df-526b8723f141\";a:4:{s:2:\"id\";s:36:\"1cc60f67-04d7-4c61-87df-526b8723f141\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"376471f0-b17a-4917-88e8-5bcb6f8e9fb6\";a:4:{s:2:\"id\";s:36:\"376471f0-b17a-4917-88e8-5bcb6f8e9fb6\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16483,1599,'attribute_pa_giftcard-amount','80e'), -(16484,1599,'_product_version','10.3.4'), -(16485,1600,'_variation_description',''), -(16486,1600,'_sku','GIFTcard-90-1'), -(16487,1600,'total_sales','0'), -(16488,1600,'_tax_status','taxable'), -(16489,1600,'_tax_class','parent'), -(16490,1600,'_manage_stock','no'), -(16491,1600,'_backorders','no'), -(16492,1600,'_sold_individually','no'), -(16493,1600,'_virtual','yes'), -(16494,1600,'_downloadable','yes'), -(16495,1600,'_download_limit','-1'), -(16496,1600,'_download_expiry','-1'), -(16497,1600,'_thumbnail_id','0'), -(16498,1600,'_stock',NULL), -(16499,1600,'_stock_status','instock'), -(16500,1600,'_wc_average_rating','0'), -(16501,1600,'_wc_review_count','0'), -(16502,1600,'_downloadable_files','a:2:{s:36:\"5d19fba3-0f55-4c2b-ae41-8dad59e1a701\";a:4:{s:2:\"id\";s:36:\"5d19fba3-0f55-4c2b-ae41-8dad59e1a701\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"bd14ca66-6490-4f72-8566-69a7e59939bb\";a:4:{s:2:\"id\";s:36:\"bd14ca66-6490-4f72-8566-69a7e59939bb\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16503,1600,'attribute_pa_giftcard-amount','90e'), -(16504,1600,'_product_version','10.3.4'), -(16505,1601,'_variation_description',''), -(16506,1601,'_sku','GIFTcard-100-1'), -(16507,1601,'total_sales','0'), -(16508,1601,'_tax_status','taxable'), -(16509,1601,'_tax_class','parent'), -(16510,1601,'_manage_stock','no'), -(16511,1601,'_backorders','no'), -(16512,1601,'_sold_individually','no'), -(16513,1601,'_virtual','yes'), -(16514,1601,'_downloadable','yes'), -(16515,1601,'_download_limit','-1'), -(16516,1601,'_download_expiry','-1'), -(16517,1601,'_thumbnail_id','0'), -(16518,1601,'_stock',NULL), -(16519,1601,'_stock_status','instock'), -(16520,1601,'_wc_average_rating','0'), -(16521,1601,'_wc_review_count','0'), -(16522,1601,'_downloadable_files','a:2:{s:36:\"ce9ccfa6-ce89-41bd-9bb3-4181ff7ff9e8\";a:4:{s:2:\"id\";s:36:\"ce9ccfa6-ce89-41bd-9bb3-4181ff7ff9e8\";s:4:\"name\";s:22:\"Haiku-GiftCard-English\";s:4:\"file\";s:98:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf\";s:7:\"enabled\";b:1;}s:36:\"3bcd25d4-4366-419f-8681-cb1dcf1507ec\";a:4:{s:2:\"id\";s:36:\"3bcd25d4-4366-419f-8681-cb1dcf1507ec\";s:4:\"name\";s:24:\"Haiku-GiftCard-Français\";s:4:\"file\";s:99:\"https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf\";s:7:\"enabled\";b:1;}}'), -(16523,1601,'attribute_pa_giftcard-amount','100e'), -(16524,1601,'_product_version','10.3.4'), -(16525,1594,'_edit_lock','1764752996:1'), -(16526,1595,'_wp_trash_meta_status','publish'), -(16527,1595,'_wp_trash_meta_time','1764753149'), -(16528,1595,'_wp_desired_post_slug','haiku-e-gift-card-40e-41'), -(16529,1596,'_wp_trash_meta_status','publish'), -(16530,1596,'_wp_trash_meta_time','1764753149'), -(16531,1596,'_wp_desired_post_slug','haiku-e-gift-card-50e-51'), -(16532,1597,'_wp_trash_meta_status','publish'), -(16533,1597,'_wp_trash_meta_time','1764753149'), -(16534,1597,'_wp_desired_post_slug','haiku-e-gift-card-60e-61'), -(16535,1598,'_wp_trash_meta_status','publish'), -(16536,1598,'_wp_trash_meta_time','1764753149'), -(16537,1598,'_wp_desired_post_slug','haiku-e-gift-card-70e-71'), -(16538,1599,'_wp_trash_meta_status','publish'), -(16539,1599,'_wp_trash_meta_time','1764753149'), -(16540,1599,'_wp_desired_post_slug','haiku-e-gift-card-80e-81'), -(16541,1600,'_wp_trash_meta_status','publish'), -(16542,1600,'_wp_trash_meta_time','1764753149'), -(16543,1600,'_wp_desired_post_slug','haiku-e-gift-card-90e-91'), -(16544,1601,'_wp_trash_meta_status','publish'), -(16545,1601,'_wp_trash_meta_time','1764753149'), -(16546,1601,'_wp_desired_post_slug','haiku-e-gift-card-100e-101'), -(16547,1594,'_wp_trash_meta_status','draft'), -(16548,1594,'_wp_trash_meta_time','1764753149'), -(16549,1594,'_wp_desired_post_slug',''), -(16550,1586,'_regular_price','40'), -(16551,1586,'_price','40'), -(16552,1587,'_regular_price','50'), -(16553,1587,'_price','50'), -(16554,1588,'_regular_price','60'), -(16555,1588,'_price','60'), -(16556,1589,'_regular_price','70'), -(16557,1589,'_price','70'), -(16558,1590,'_regular_price','80'), -(16559,1590,'_price','80'), -(16560,1591,'_regular_price','90'), -(16561,1591,'_price','90'), -(16562,1585,'_regular_price','100'), -(16563,1585,'_price','100'), -(16564,1574,'_price','40'), -(16565,1574,'_price','50'), -(16566,1574,'_price','60'), -(16567,1574,'_price','70'), -(16568,1574,'_price','80'), -(16569,1574,'_price','90'), -(16570,1574,'_price','100'), -(16571,1574,'_photos_colonne_gauche|||0|value','1575'), -(16572,1574,'_photos_colonne_droite|||0|value','1577'), -(16573,1574,'_haiku_details_produit',''); -/*!40000 ALTER TABLE `haikuwp_postmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_posts` --- - -DROP TABLE IF EXISTS `haikuwp_posts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_posts` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, - `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content` longtext NOT NULL, - `post_title` text NOT NULL, - `post_excerpt` text NOT NULL, - `post_status` varchar(20) NOT NULL DEFAULT 'publish', - `comment_status` varchar(20) NOT NULL DEFAULT 'open', - `ping_status` varchar(20) NOT NULL DEFAULT 'open', - `post_password` varchar(255) NOT NULL DEFAULT '', - `post_name` varchar(200) NOT NULL DEFAULT '', - `to_ping` text NOT NULL, - `pinged` text NOT NULL, - `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content_filtered` longtext NOT NULL, - `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `guid` varchar(255) NOT NULL DEFAULT '', - `menu_order` int(11) NOT NULL DEFAULT 0, - `post_type` varchar(20) NOT NULL DEFAULT 'post', - `post_mime_type` varchar(100) NOT NULL DEFAULT '', - `comment_count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`ID`), - KEY `post_name` (`post_name`(191)), - KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), - KEY `post_parent` (`post_parent`), - KEY `post_author` (`post_author`) -) ENGINE=InnoDB AUTO_INCREMENT=1602 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_posts` --- - -LOCK TABLES `haikuwp_posts` WRITE; -/*!40000 ALTER TABLE `haikuwp_posts` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_posts` VALUES -(1,1,'2024-08-04 22:10:39','2024-08-04 20:10:39','\n

Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !

\n','Bonjour tout le monde !','','publish','open','open','','bonjour-tout-le-monde','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/?p=1',0,'post','',1), -(4,0,'2024-08-04 22:10:39','2024-08-04 20:10:39','','Navigation','','publish','closed','closed','','navigation','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/2024/08/04/navigation/',0,'wp_navigation','',0), -(13,1,'2024-08-05 15:21:14','2024-08-05 13:21:14','','Home','','publish','closed','closed','','home','','','2024-08-05 15:21:14','2024-08-05 13:21:14','',0,'https://haikuatelier.fr.ddev.site/?page_id=13',0,'page','',0), -(14,1,'2024-08-05 15:21:25','2024-08-05 13:21:25','','E-Shop','','publish','closed','closed','','shop','','','2024-08-06 22:21:51','2024-08-06 20:21:51','',0,'https://haikuatelier.fr.ddev.site/?page_id=14',0,'page','',0), -(16,1,'2024-08-05 15:22:02','2024-08-05 13:22:02','','Cart','','publish','closed','closed','','cart','','','2024-08-05 15:22:02','2024-08-05 13:22:02','',0,'https://haikuatelier.fr.ddev.site/?page_id=16',0,'page','',0), -(17,1,'2024-08-05 15:22:18','2024-08-05 13:22:18','','Checkout','','publish','closed','closed','','checkout','','','2024-08-05 15:22:18','2024-08-05 13:22:18','',0,'https://haikuatelier.fr.ddev.site/?page_id=17',0,'page','',0), -(18,1,'2024-08-05 15:22:40','2024-08-05 13:22:40','','Privacy policy','','publish','closed','closed','','privacy-policy','','','2024-08-05 15:22:40','2024-08-05 13:22:40','',0,'https://haikuatelier.fr.ddev.site/?page_id=18',0,'page','',0), -(19,1,'2024-08-05 15:23:03','2024-08-05 13:23:03','','Terms & Conditions','','publish','closed','closed','','terms-and-conditions','','','2024-11-25 16:28:57','2024-11-25 15:28:57','',0,'https://haikuatelier.fr.ddev.site/?page_id=19',0,'page','',0), -(26,1,'2024-08-06 22:21:23','2024-08-06 20:21:23','','Contact','','publish','closed','closed','','contact','','','2024-08-06 22:21:23','2024-08-06 20:21:23','',0,'https://haikuatelier.fr.ddev.site/?page_id=26',0,'page','',0), -(27,1,'2024-08-06 22:21:30','2024-08-06 20:21:30','','About','','publish','closed','closed','','about','','','2024-08-06 22:21:30','2024-08-06 20:21:30','',0,'https://haikuatelier.fr.ddev.site/?page_id=27',0,'page','',0), -(81,2,'2024-09-30 17:22:16','2024-09-30 15:22:16','','Hadou Ring','','inherit','closed','closed','','sony-dsc','','','2024-09-30 17:26:53','2024-09-30 15:26:53','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B.jpg',0,'attachment','image/jpeg',0), -(100,2,'2024-09-30 18:51:37','2024-09-30 16:51:37','','Hadou ring','','inherit','closed','closed','','hadou-b-mix','','','2024-09-30 18:51:55','2024-09-30 16:51:55','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B-mix.jpg',0,'attachment','image/jpeg',0), -(102,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','IKKAN : link\r\n\r\nA piece made of an oversized link thread into a D-shaped sterling silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring silver','','publish','closed','closed','','ikkan-ring-silver','','','2024-11-24 11:45:53','2024-11-24 10:45:53','',0,'https://haiku.gcch.fr/?post_type=product&p=102',21,'product','',0), -(103,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-77','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=103',1,'product_variation','',0), -(104,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-78','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=104',2,'product_variation','',0), -(105,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-79','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=105',3,'product_variation','',0), -(106,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-80','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=106',4,'product_variation','',0), -(107,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-81','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=107',5,'product_variation','',0), -(108,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-82','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=108',6,'product_variation','',0), -(109,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-83','','','2024-11-12 23:40:27','2024-11-12 22:40:27','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=109',7,'product_variation','',0), -(110,2,'2024-09-30 18:56:37','2024-09-30 16:56:37','','Ikkan silver Ring','','inherit','closed','closed','','sony-dsc-3','','','2024-09-30 18:58:06','2024-09-30 16:58:06','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B2-arg.jpg',0,'attachment','image/jpeg',0), -(111,2,'2024-09-30 18:57:45','2024-09-30 16:57:45','','Ikkan silver ring','','inherit','closed','closed','','ikkan-b-arg','','','2024-09-30 18:58:26','2024-09-30 16:58:26','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-arg.jpg',0,'attachment','image/jpeg',0), -(112,2,'2024-09-30 18:59:53','2024-09-30 16:59:53','','Ikkan silver ring + Kishou ring','','inherit','closed','closed','','ikkan-bakigen-ba','','','2024-09-30 19:00:36','2024-09-30 17:00:36','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-BaKIGEN-Ba.jpg',0,'attachment','image/jpeg',0), -(113,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','IKKAN: link\r\n\r\nA piece made of an oversized link thread into a D-shaped gold plated silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring gold plated','','publish','closed','closed','','ikkan-ring-gold-plated','','','2024-11-24 11:53:51','2024-11-24 10:53:51','',0,'https://haiku.gcch.fr/?post_type=product&p=113',20,'product','',0), -(114,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-84','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=114',1,'product_variation','',0), -(115,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-85','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=115',2,'product_variation','',0), -(116,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-86','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=116',3,'product_variation','',0), -(117,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-87','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=117',4,'product_variation','',0), -(118,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-88','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=118',5,'product_variation','',0), -(119,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-89','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=119',6,'product_variation','',0), -(120,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-90','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=120',7,'product_variation','',0), -(122,2,'2024-09-30 21:19:26','2024-09-30 19:19:26','','Ikkan gold plated ring','','inherit','closed','closed','','ikkan-b-g','','','2024-11-07 23:57:12','2024-11-07 22:57:12','',113,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-g.jpg',0,'attachment','image/jpeg',0), -(132,2,'2024-09-30 21:40:43','2024-09-30 19:40:43','','Piasu ring','','inherit','closed','closed','','_dsc9928','','','2024-09-30 21:41:04','2024-09-30 19:41:04','',0,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9928.jpg',0,'attachment','image/jpeg',0), -(133,2,'2024-09-30 22:00:26','2024-09-30 20:00:26','KARA: hull, shell\r\n\r\nTwo textured sterling silver rings linked by a thin silver curb chain. Can be worn stacked on the same finger, or on two different fingers.\r\n
    \r\n
  • height 1cm and 0,5cm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Kara Ring','','trash','closed','closed','','kara-ring__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',0,'https://haiku.gcch.fr/?post_type=product&p=133',27,'product','',0), -(134,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 50','Size: 50','trash','closed','closed','','hadou-golden-earcuff-98__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=134',1,'product_variation','',0), -(135,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 52','Size: 52','trash','closed','closed','','hadou-golden-earcuff-99__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=135',2,'product_variation','',0), -(136,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 54','Size: 54','trash','closed','closed','','hadou-golden-earcuff-100__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=136',3,'product_variation','',0), -(137,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 56','Size: 56','trash','closed','closed','','hadou-golden-earcuff-101__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=137',4,'product_variation','',0), -(138,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 58','Size: 58','trash','closed','closed','','hadou-golden-earcuff-102__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=138',5,'product_variation','',0), -(139,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 60','Size: 60','trash','closed','closed','','hadou-golden-earcuff-103__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=139',6,'product_variation','',0), -(140,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 62','Size: 62','trash','closed','closed','','hadou-golden-earcuff-104__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=140',7,'product_variation','',0), -(142,2,'2024-09-30 22:16:16','2024-09-30 20:16:16','','Kara ring','','inherit','closed','closed','','_dsc9269','','','2024-09-30 22:16:33','2024-09-30 20:16:33','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9269.jpg',0,'attachment','image/jpeg',0), -(143,2,'2024-09-30 22:17:13','2024-09-30 20:17:13','','Kara ring','','inherit','closed','closed','','_dsc9148','','','2024-09-30 22:17:26','2024-09-30 20:17:26','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9148.jpg',0,'attachment','image/jpeg',0), -(154,2,'2024-10-01 08:28:27','2024-10-01 06:28:27','','Kishou silver ring','','inherit','closed','closed','','kigen-baikkanba','','','2024-10-01 08:29:30','2024-10-01 06:29:30','',0,'https://haiku.gcch.fr/app/uploads/2024/10/KIGEN-BaIKKANBa.jpg',0,'attachment','image/jpeg',0), -(165,2,'2024-10-01 08:37:37','2024-10-01 06:37:37','','Kishou gold plated ring','','inherit','closed','closed','','hadou-booikkan-bkigen-bjokou-co','','','2024-10-01 08:37:59','2024-10-01 06:37:59','',0,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg',0,'attachment','image/jpeg',0), -(166,2,'2024-10-01 08:40:28','2024-10-01 06:40:28','','Kara ring','','inherit','closed','closed','','_dsc9760','','','2024-10-01 08:40:59','2024-10-01 06:40:59','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9760.jpg',0,'attachment','image/jpeg',0), -(167,2,'2024-10-01 08:41:39','2024-10-01 06:41:39','','Kara ring','','inherit','closed','closed','','_dsc9339','','','2024-10-01 08:41:56','2024-10-01 06:41:56','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9339.jpg',0,'attachment','image/jpeg',0), -(168,2,'2024-10-01 08:42:52','2024-10-01 06:42:52','ROKKU: pebble\r\n\r\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in silver.\r\n
    \r\n
  • adjustable
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','publish','closed','closed','','rokku-ring','','','2025-06-18 22:46:03','2025-06-18 20:46:03','',0,'https://haiku.gcch.fr/?post_type=product&p=168',41,'product','',0), -(177,2,'2024-10-01 09:12:26','2024-10-01 07:12:26','','Rokku ring malachite','','inherit','closed','closed','','rokku-b-malachite-2','','','2024-10-01 09:12:46','2024-10-01 07:12:46','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-malachite-1.jpg',0,'attachment','image/jpeg',0), -(178,2,'2024-10-01 09:13:13','2024-10-01 07:13:13','','Rokku ring tiger eye','','inherit','closed','closed','','sony-dsc-9','','','2024-10-01 09:13:48','2024-10-01 07:13:48','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye.jpg',0,'attachment','image/jpeg',0), -(179,2,'2024-10-01 09:14:04','2024-10-01 07:14:04','','Rokku ring tiger eye','','inherit','closed','closed','','rokku-b-tigereye','','','2024-10-01 09:14:34','2024-10-01 07:14:34','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye-1.jpg',0,'attachment','image/jpeg',0), -(180,2,'2024-10-01 09:25:14','2024-10-01 07:25:14','','Rokku ring malachite','','inherit','closed','closed','','_dsc9710','','','2024-10-01 09:25:39','2024-10-01 07:25:39','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9710.jpg',0,'attachment','image/jpeg',0), -(182,2,'2024-10-01 09:26:24','2024-10-01 07:26:24','','Rokku ring tiger eye','','inherit','closed','closed','','_dsc9190','','','2024-10-01 09:26:54','2024-10-01 07:26:54','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9190.jpg',0,'attachment','image/jpeg',0), -(183,2,'2024-10-01 11:31:42','2024-10-01 09:31:42','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of sterling silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','publish','closed','closed','','boroboro-long-earrings-silver','','','2025-11-26 14:59:12','2025-11-26 13:59:12','',0,'https://haiku.gcch.fr/?post_type=product&p=183',7,'product','',0), -(199,2,'2024-10-01 12:16:11','2024-10-01 10:16:11','','BoroBoro silver long earring, right side','','inherit','closed','closed','','sony-dsc-11','','','2024-10-01 12:17:24','2024-10-01 10:17:24','',183,'https://haiku.gcch.fr/app/uploads/2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg',0,'attachment','image/jpeg',0), -(200,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Malachite','Stone: Malachite','publish','closed','closed','','rokku-ring-malachite','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=200',1,'product_variation','',0), -(201,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','rokku-ring-tiger-eye','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=201',2,'product_variation','',0), -(202,2,'2024-10-01 18:14:00','2024-10-01 16:14:00','PIASU: piercing\r\n\r\nLarge earrings covering the lobe with three hoops hanging to it, with a small gold plated bead on each side.\r\n
    \r\n
  • height 3cm
  • \r\n
  • width 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Hoop Earrings','','publish','closed','closed','','piasu-earrings','','','2025-11-26 09:40:29','2025-11-26 08:40:29','',0,'https://haiku.gcch.fr/?post_type=product&p=202',34,'product','',0), -(206,2,'2024-10-01 18:20:45','2024-10-01 16:20:45','','Piasu earrings','','inherit','closed','closed','','sony-dsc-12','','','2024-10-01 18:22:00','2024-10-01 16:22:00','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO.jpg',0,'attachment','image/jpeg',0), -(213,2,'2024-10-01 19:52:06','2024-10-01 17:52:06','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of gold plated silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings gold plated','','publish','closed','closed','','boroboro-long-earrings-gold-plated','','','2025-11-26 14:58:31','2025-11-26 13:58:31','',0,'https://haiku.gcch.fr/?post_type=product&p=213',6,'product','',0), -(240,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','IKKAN : link\r\n\r\nA bracelet in sterling silver mixing a rigid band and loose curb chain\r\n
    \r\n
  • size 1: 6cm diameter / size 2: 7cm diameter
  • \r\n
  • wire thickness 2,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Ikkan Bracelet silver','','publish','closed','closed','','ikkan-bracelet-silver','','','2025-08-20 10:51:34','2025-08-20 08:51:34','',0,'https://haiku.gcch.fr/?post_type=product&p=240',19,'product','',0), -(241,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 1','Size: Size 1','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-3','','','2025-08-20 10:51:34','2025-08-20 08:51:34','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=241',1,'product_variation','',0), -(242,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 2','Size: Size 2','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-4','','','2025-08-20 10:51:34','2025-08-20 08:51:34','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=242',2,'product_variation','',0), -(243,2,'2024-10-02 23:24:46','2024-10-02 21:24:46','','Ikkan bracelet silver','','inherit','closed','closed','','sony-dsc-17','','','2024-10-02 23:29:51','2024-10-02 21:29:51','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-arg.jpg',0,'attachment','image/jpeg',0), -(244,2,'2024-10-02 23:32:58','2024-10-02 21:32:58','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s','','','2024-10-02 23:33:16','2024-10-02 21:33:16','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s.jpg',0,'attachment','image/jpeg',0), -(245,2,'2024-10-02 23:33:24','2024-10-02 21:33:24','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s-2','','','2024-10-02 23:33:43','2024-10-02 21:33:43','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s-1.jpg',0,'attachment','image/jpeg',0), -(249,2,'2024-10-02 23:36:59','2024-10-02 21:36:59','','Ikkan bracelet gold plated','','inherit','closed','closed','','sony-dsc-18','','','2024-10-02 23:37:41','2024-10-02 21:37:41','',0,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-vrm.jpg',0,'attachment','image/jpeg',0), -(250,2,'2024-10-02 23:38:49','2024-10-02 21:38:49','','Ikkan bracelet gold plated','','inherit','closed','closed','','ikkan-br-g','','','2024-11-08 00:00:39','2024-11-07 23:00:39','',0,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-g.jpg',0,'attachment','image/jpeg',0), -(255,2,'2024-10-02 23:55:51','2024-10-02 21:55:51','','Tanemaki bracelet','','inherit','closed','closed','','tanemaki-br','','','2024-10-02 23:56:12','2024-10-02 21:56:12','',0,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-BR-1.jpg',0,'attachment','image/jpeg',0), -(258,2,'2024-10-03 22:02:26','2024-10-03 20:02:26','Fuyou: floating leave on water\r\n\r\nRectangular trace chain bracelet in sterling silver with a fluid oval shape element in the center and gold plated details.\r\n
    \r\n
  • adjustable in between 15 and 18cm
  • \r\n
  • oval center shape 2cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet','','publish','closed','closed','','fuyou-bracelet-silver','','','2025-08-17 19:04:48','2025-08-17 17:04:48','',0,'https://haiku.gcch.fr/?post_type=product&p=258',8,'product','',0), -(263,2,'2024-10-03 22:17:11','2024-10-03 20:17:11','IKKAN: link \r\n\r\nNecklace with a mix of different links combining sterling silver and gold plated silver.\r\n
    \r\n
  • length 50 to 54cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Ikkan Necklace','','publish','closed','closed','','ikkan-necklace','','','2025-09-02 09:06:36','2025-09-02 07:06:36','',0,'https://haiku.gcch.fr/?post_type=product&p=263',22,'product','',0), -(268,2,'2024-10-03 22:43:42','2024-10-03 20:43:42','PIASU : piercing\r\n\r\nThis short necklace combines different thin chains with a mix of sterling silver and gold plated silver. Secured by a toggle clasp on the front.\r\n
    \r\n
  • length 45cm to 50cm
  • \r\n
  • toggle clasp caliber 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Necklace','','publish','closed','closed','','piasu-necklace','','','2025-06-18 22:29:26','2025-06-18 20:29:26','',0,'https://haiku.gcch.fr/?post_type=product&p=268',35,'product','',0), -(270,2,'2024-10-03 22:48:06','2024-10-03 20:48:06','','Piasu necklace silver','','inherit','closed','closed','','piasu-c-arg-opti','','','2024-10-03 22:48:49','2024-10-03 20:48:49','',268,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-C-arg-opti.jpg',0,'attachment','image/jpeg',0), -(273,2,'2024-10-04 08:32:08','2024-10-04 06:32:08','','Tanemaki necklace','','inherit','closed','closed','','tanemaki-c','','','2024-10-04 08:32:26','2024-10-04 06:32:26','',0,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-C.jpg',0,'attachment','image/jpeg',0), -(274,2,'2024-10-04 08:33:31','2024-10-04 06:33:31','FUYOU: floating leave on water\r\n\r\nA necklace with thin rectangular trace chain and oval fluid elements in sterling silver, with a dangling gold plated detail.\r\n
    \r\n
  • total length 50cm, adjustable at your convenience
  • \r\n
  • oval shapes caliber between 3cm and 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Fuyou Necklace','','publish','closed','closed','','fuyou-necklace','','','2025-12-01 00:09:15','2025-11-30 23:09:15','',0,'https://haiku.gcch.fr/?post_type=product&p=274',11,'product','',0), -(285,2,'2024-10-04 08:55:02','2024-10-04 06:55:02','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in sterling silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops silver','','publish','closed','closed','','hattari-stacked-hoops-silver','','','2025-08-19 09:32:57','2025-08-19 07:32:57','',0,'https://haiku.gcch.fr/?post_type=product&p=285',18,'product','',0), -(287,2,'2024-10-04 09:08:50','2024-10-04 07:08:50','','Hattari stacked hoops silver','','inherit','closed','closed','','hattari-cr1-s','','','2024-10-04 09:09:07','2024-10-04 07:09:07','',285,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-s-1.jpg',0,'attachment','image/jpeg',0), -(288,2,'2024-10-04 09:10:01','2024-10-04 07:10:01','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in gold plated silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops gold plated','','publish','closed','closed','','hattari-stacked-hoops-gold-plated','','','2025-11-30 23:45:43','2025-11-30 22:45:43','',0,'https://haiku.gcch.fr/?post_type=product&p=288',17,'product','',0), -(290,2,'2024-10-04 09:12:19','2024-10-04 07:12:19','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9336','','','2024-11-13 19:53:24','2024-11-13 18:53:24','',288,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9336.jpg',0,'attachment','image/jpeg',0), -(306,2,'2024-10-07 08:18:28','2024-10-07 06:18:28','TAMANORI: in balance on a ball\r\n\r\nOval sterling silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tamanori Hoops silver','','publish','closed','closed','','tamanori-hoops','','','2024-11-15 12:32:15','2024-11-15 11:32:15','',0,'https://haiku.gcch.fr/?post_type=product&p=306',45,'product','',0), -(310,2,'2024-10-07 08:20:16','2024-10-07 06:20:16','','Tamanori Hoops silver','','inherit','closed','closed','','sony-dsc-31','','','2024-10-07 08:20:55','2024-10-07 06:20:55','',306,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(311,2,'2024-10-07 08:22:26','2024-10-07 06:22:26','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9378','','','2024-10-07 08:22:48','2024-10-07 06:22:48','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9378.jpg',0,'attachment','image/jpeg',0), -(312,2,'2024-10-07 08:33:26','2024-10-07 06:33:26','TAMANORI: in balance on a ball\r\n\r\nOval gold plated silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycles sterling silver and 24K gold plated silver.','Tamanori Hoops gold plated','','publish','closed','closed','','tamanori-hoops-gold-plated','','','2024-11-24 12:12:54','2024-11-24 11:12:54','',0,'https://haiku.gcch.fr/?post_type=product&p=312',44,'product','',0), -(317,2,'2024-10-07 08:36:37','2024-10-07 06:36:37','','Tamanori Hoops gold plated','','inherit','closed','closed','','tamanori-cr2-vrm','','','2024-10-07 08:36:52','2024-10-07 06:36:52','',312,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-vrm-1.jpg',0,'attachment','image/jpeg',0), -(318,2,'2024-10-07 08:40:26','2024-10-07 06:40:26','FUYOU: floating leave on water\r\n\r\nSolo hoop in sterling silver with a mix of small rings in gold plated silver hanging on it.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • small rings diameter around 5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 18k gold plated silver.','Fuyou Hoop','','publish','closed','closed','','fuyou-hoop','','','2025-08-22 11:19:14','2025-08-22 09:19:14','',0,'https://haiku.gcch.fr/?post_type=product&p=318',9,'product','',0), -(323,2,'2024-10-07 08:54:21','2024-10-07 06:54:21','','Fuyou Hoops silver and gold','','inherit','closed','closed','','fuyou-cr','','','2024-10-07 08:54:39','2024-10-07 06:54:39','',318,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-CR.jpg',0,'attachment','image/jpeg',0), -(324,2,'2024-10-07 08:55:07','2024-10-07 06:55:07','','Fuyou Hoops silver and gold','','inherit','closed','closed','','_dsc9542','','','2024-10-07 08:55:26','2024-10-07 06:55:26','',318,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9542.jpg',0,'attachment','image/jpeg',0), -(326,2,'2024-10-07 11:17:26','2024-10-07 09:17:26','','Hadou Earcuff silver','','inherit','closed','closed','','sony-dsc-34','','','2024-10-07 11:24:14','2024-10-07 09:24:14','',0,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-arg.jpg',0,'attachment','image/jpeg',0), -(327,2,'2024-10-07 11:21:04','2024-10-07 09:21:04','','Hadou Earcuff silver','','inherit','closed','closed','','hadou-ec','','','2024-10-07 11:21:41','2024-10-07 09:21:41','',0,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC.jpg',0,'attachment','image/jpeg',0), -(329,2,'2024-10-07 11:23:37','2024-10-07 09:23:37','','Hadou Earcuff gold plated','','inherit','closed','closed','','sony-dsc-35','','','2024-10-07 11:24:28','2024-10-07 09:24:28','',0,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm.jpg',0,'attachment','image/jpeg',0), -(330,2,'2024-10-07 11:25:22','2024-10-07 09:25:22','','Hadou Earcuff gold plated','','inherit','closed','closed','','hadou-ec-vrm','','','2024-10-07 11:25:54','2024-10-07 09:25:54','',0,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm-1.jpg',0,'attachment','image/jpeg',0), -(339,2,'2024-10-07 11:42:14','2024-10-07 09:42:14','','Piasu brooch','','inherit','closed','closed','','sony-dsc-38','','','2024-10-07 11:43:19','2024-10-07 09:43:19','',0,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC.jpg',0,'attachment','image/jpeg',0), -(340,2,'2024-10-07 11:46:56','2024-10-07 09:46:56','','Piasu Brooch','','inherit','closed','closed','','piasu-brc','','','2024-10-07 11:47:31','2024-10-07 09:47:31','',0,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-1.jpg',0,'attachment','image/jpeg',0), -(341,2,'2024-10-07 11:50:14','2024-10-07 09:50:14','','Piasu Brooch','','inherit','closed','closed','','piasu-brc-2','','','2024-10-07 11:50:42','2024-10-07 09:50:42','',0,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-2.jpg',0,'attachment','image/jpeg',0), -(347,2,'2024-10-15 15:51:14','2024-10-15 13:51:14','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9763','','','2024-10-15 15:51:54','2024-10-15 13:51:54','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9763.jpg',0,'attachment','image/jpeg',0), -(348,2,'2024-10-15 15:52:11','2024-10-15 13:52:11','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9781','','','2024-10-15 15:52:27','2024-10-15 13:52:27','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781.jpg',0,'attachment','image/jpeg',0), -(349,2,'2024-10-15 15:52:56','2024-10-15 13:52:56','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9748','','','2024-10-15 15:57:59','2024-10-15 13:57:59','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9748.jpg',0,'attachment','image/jpeg',0), -(385,2,'2024-10-18 08:19:19','2024-10-18 06:19:19','ROKKU: pebble\r\n\r\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\r\n
    \r\n
  • total chain length 50cm
  • \r\n
  • pendant height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','publish','closed','closed','','rokku-necklace','','','2025-05-09 17:57:00','2025-05-09 15:57:00','',0,'https://haiku.gcch.fr/?post_type=product&p=385',40,'product','',0), -(388,2,'2024-10-18 08:40:49','2024-10-18 06:40:49','','Rokku necklace silver and semi precious stone','','inherit','closed','closed','','rokku-c-arg','','','2024-10-18 08:41:04','2024-10-18 06:41:04','',385,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-C-arg.jpg',0,'attachment','image/jpeg',0), -(389,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Green Jaspe','Stone: Green Jaspe','publish','closed','closed','','fuyou-necklace-copy-green-jaspe','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=389',1,'product_variation','',0), -(391,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Lapis Lazuli','Stone: Lapis Lazuli','publish','closed','closed','','fuyou-necklace-copy-lapis-lazuli','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=391',2,'product_variation','',0), -(392,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','fuyou-necklace-copy-tiger-eye','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=392',3,'product_variation','',0), -(393,2,'2024-10-18 08:48:05','2024-10-18 06:48:05','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In sterling silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diameter 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Mugura Hoops silver','','publish','closed','closed','','mugura-hoops-silver','','','2025-11-26 14:52:55','2025-11-26 13:52:55','',0,'https://haiku.gcch.fr/?post_type=product&p=393',30,'product','',0), -(396,2,'2024-10-18 08:51:31','2024-10-18 06:51:31','','Mugura hoops silver','','inherit','closed','closed','','sony-dsc-46','','','2024-10-18 08:59:25','2024-10-18 06:59:25','',393,'https://haiku.gcch.fr/app/uploads/2024/10/MUGURA-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(397,2,'2024-10-18 08:59:16','2024-10-18 06:59:16','','Mugura hoops silver','','inherit','closed','closed','','_dsc9733','','','2024-11-08 00:27:40','2024-11-07 23:27:40','',393,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9733.jpg',0,'attachment','image/jpeg',0), -(398,2,'2024-10-18 09:00:33','2024-10-18 07:00:33','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diametre 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Mugura Hoops gold plated','','publish','closed','closed','','mugura-hoops-gold-plated','','','2025-11-26 14:52:33','2025-11-26 13:52:33','',0,'https://haiku.gcch.fr/?post_type=product&p=398',29,'product','',0), -(400,2,'2024-10-18 09:21:51','2024-10-18 07:21:51','','Mugura hoops silver','','inherit','closed','closed','','_dsc9723','','','2024-10-18 09:22:07','2024-10-18 07:22:07','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9723.jpg',0,'attachment','image/jpeg',0), -(401,2,'2024-10-18 09:22:21','2024-10-18 07:22:21','','Mugura hoops silver','','inherit','closed','closed','','_dsc9730','','','2024-10-18 09:22:38','2024-10-18 07:22:38','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9730.jpg',0,'attachment','image/jpeg',0), -(411,1,'2024-10-30 20:42:57','2024-10-30 19:42:57','','Hadou ring','','inherit','closed','closed','','_dsc8400-copie','','','2024-10-30 20:43:23','2024-10-30 19:43:23','',0,'https://haiku.gcch.fr/app/uploads/2024/09/DSC8400-copie.jpg',0,'attachment','image/jpeg',0), -(424,1,'2024-10-30 22:08:13','2024-10-30 21:08:13','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9376','','','2024-10-30 22:08:31','2024-10-30 21:08:31','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9376.jpg',0,'attachment','image/jpeg',0), -(435,1,'2024-10-30 22:36:02','2024-10-30 21:36:02','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Kara Ear Cuff silver','','publish','closed','closed','','kara-earcuff-silver','','','2025-06-17 10:28:57','2025-06-17 08:28:57','',0,'https://haiku.gcch.fr/?post_type=product&p=435',24,'product','',0), -(436,1,'2024-10-30 22:37:12','2024-10-30 21:37:12','','Kara ear cuff silver','','inherit','closed','closed','','sony-dsc-53','','','2024-10-30 22:37:44','2024-10-30 21:37:44','',435,'https://haiku.gcch.fr/app/uploads/2024/10/KARA-EC-arg.jpg',0,'attachment','image/jpeg',0), -(437,1,'2024-10-30 22:40:43','2024-10-30 21:40:43','','Kara ear cuff silver','','inherit','closed','closed','','_dsc9781-2','','','2024-10-30 22:40:56','2024-10-30 21:40:56','',435,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781-1.jpg',0,'attachment','image/jpeg',0), -(447,1,'2024-11-07 23:51:25','2024-11-07 22:51:25','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling gold plated silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','publish','closed','closed','','kara-ear-cuff-gold-plated','','','2025-06-17 10:27:36','2025-06-17 08:27:36','',0,'https://haikuatelier.com/?post_type=product&p=447',23,'product','',0), -(487,1,'2024-11-08 10:36:08','2024-11-08 09:36:08','','Rokku necklace tiger\'s eye stone','','inherit','closed','closed','','_dsc9138','','','2024-11-08 10:37:34','2024-11-08 09:37:34','',385,'https://haikuatelier.com/app/uploads/2024/10/DSC9138.jpg',0,'attachment','image/jpeg',0), -(490,1,'2024-11-10 12:47:12','2024-11-10 11:47:12','Hadou: wave\r\n\r\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\r\n
    \r\n
  • height 1cm
  • \r\n
  • wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','publish','closed','closed','','hadou-stud-earrings','','','2025-06-17 09:46:46','2025-06-17 07:46:46','',0,'https://haikuatelier.com/?post_type=product&p=490',12,'product','',0), -(493,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - left side','Side: left side','publish','closed','closed','','hattari-double-hoops-copy-left-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=493',2,'product_variation','',0), -(494,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - pair','Side: pair','publish','closed','closed','','hattari-double-hoops-copy-pair','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=494',1,'product_variation','',0), -(495,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - right side','Side: right side','publish','closed','closed','','hattari-double-hoops-copy-right-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=495',3,'product_variation','',0), -(496,1,'2024-11-10 13:07:31','2024-11-10 12:07:31','Mugura: vine\r\n\r\nSmall solo hoop in sterling silver with a wavy dangling element in gold plated silver.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • total height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 18K gold plated silver.','Mugura Solo Hoop','','publish','closed','closed','','kagun-hoop','','','2025-08-19 09:51:25','2025-08-19 07:51:25','',0,'https://haikuatelier.com/?post_type=product&p=496',31,'product','',0), -(506,0,'2024-11-11 23:02:44','2024-11-11 22:02:44','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2024-11-11 23:02:44','2024-11-11 22:02:44','',0,'https://haiku.gcch.fr/app/uploads/2024/11/woocommerce-placeholder.png',0,'attachment','image/png',0), -(510,1,'2024-11-12 17:15:05','2024-11-12 16:15:05','','Successful Order','','publish','closed','closed','','successful-order','','','2024-11-12 17:34:29','2024-11-12 16:34:29','',0,'https://haiku.gcch.fr/?page_id=510',0,'page','',0), -(511,1,'2024-11-12 17:15:13','2024-11-12 16:15:13','','Failed Order','','publish','closed','closed','','failed-order','','','2024-11-12 17:34:46','2024-11-12 16:34:46','',0,'https://haiku.gcch.fr/?page_id=511',0,'page','',0), -(515,1,'2024-11-12 23:15:48','2024-11-12 22:15:48','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings gold plated','','trash','closed','closed','','boroboro-bead-earrings-gold-plated__trashed','','','2025-11-19 08:06:22','2025-11-19 07:06:22','',0,'https://haikuatelier.com/?post_type=product&p=515',1,'product','',0), -(521,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings silver','','trash','closed','closed','','boroboro-bead-earrings-silver__trashed','','','2025-11-19 08:06:10','2025-11-19 07:06:10','',0,'https://haikuatelier.com/?post_type=product&p=521',2,'product','',0), -(523,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','','BoroBoro Bead Earrings silver - Tiger\'s Eye','Stone: Tiger\'s Eye','trash','closed','closed','','boroboro-long-earrings-gold-plated-copy-tigers-eye-2__trashed','','','2025-11-19 08:06:10','2025-11-19 07:06:10','',521,'https://haikuatelier.com/?post_type=product_variation&p=523',2,'product_variation','',0), -(528,1,'2024-11-12 23:40:20','2024-11-12 22:40:20','','Ikkan Ring silver - 64','Size: 64','publish','closed','closed','','ikkan-ring-silver-64','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haikuatelier.com/?post_type=product_variation&p=528',8,'product_variation','',0), -(529,1,'2024-11-12 23:42:21','2024-11-12 22:42:21','','Ikkan Ring gold plated - 64','Size: 64','publish','closed','closed','','ikkan-ring-gold-plated-64','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haikuatelier.com/?post_type=product_variation&p=529',8,'product_variation','',0), -(532,1,'2024-11-12 23:50:23','2024-11-12 22:50:23','','Kara Ring - 64','Size: 64','trash','closed','closed','','kara-ring-64__trashed','','','2025-11-19 08:06:48','2025-11-19 07:06:48','',133,'https://haikuatelier.com/?post_type=product_variation&p=532',8,'product_variation','',0), -(545,1,'2024-11-13 13:56:53','2024-11-13 12:56:53','KARA: hull, shell\r\n\r\nSmall textured gold plated silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','publish','closed','closed','','kara-hoops-gold-plated','','','2025-11-26 14:51:55','2025-11-26 13:51:55','',0,'https://haikuatelier.com/?post_type=product&p=545',25,'product','',0), -(552,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring','','','2025-11-26 14:51:51','2025-11-26 13:51:51','',545,'https://haikuatelier.com/?post_type=product_variation&p=552',2,'product_variation','',0), -(553,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair','','','2025-11-26 14:51:51','2025-11-26 13:51:51','',545,'https://haikuatelier.com/?post_type=product_variation&p=553',1,'product_variation','',0), -(554,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','KARA: hull, shell\r\n\r\nSmall textured sterling silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops silver','','publish','closed','closed','','kara-hoops-silver','','','2025-11-26 14:51:18','2025-11-26 13:51:18','',0,'https://haikuatelier.com/?post_type=product&p=554',26,'product','',0), -(555,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair-2','','','2025-11-26 14:51:12','2025-11-26 13:51:12','',554,'https://haikuatelier.com/?post_type=product_variation&p=555',1,'product_variation','',0), -(556,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring-2','','','2025-11-26 14:51:12','2025-11-26 13:51:12','',554,'https://haikuatelier.com/?post_type=product_variation&p=556',2,'product_variation','',0), -(565,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-silver-one-element-side','','','2025-11-26 14:59:08','2025-11-26 13:59:08','',183,'https://haikuatelier.com/?post_type=product_variation&p=565',2,'product_variation','',0), -(566,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-silver-pair','','','2025-11-26 14:59:08','2025-11-26 13:59:08','',183,'https://haikuatelier.com/?post_type=product_variation&p=566',1,'product_variation','',0), -(567,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-silver-two-elements-side','','','2025-11-26 14:59:08','2025-11-26 13:59:08','',183,'https://haikuatelier.com/?post_type=product_variation&p=567',3,'product_variation','',0), -(569,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-one-element-side','','','2025-11-26 14:58:26','2025-11-26 13:58:26','',213,'https://haikuatelier.com/?post_type=product_variation&p=569',2,'product_variation','',0), -(570,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-gold-plated-pair','','','2025-11-26 14:58:26','2025-11-26 13:58:26','',213,'https://haikuatelier.com/?post_type=product_variation&p=570',1,'product_variation','',0), -(571,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-two-elements-side','','','2025-11-26 14:58:26','2025-11-26 13:58:26','',213,'https://haikuatelier.com/?post_type=product_variation&p=571',3,'product_variation','',0), -(613,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist gold plated ring composed of a thick round band and a movable prehnite bead.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring gold plated','','publish','closed','closed','','boroboro-bead-ring-gold-plated','','','2025-09-08 11:15:39','2025-09-08 09:15:39','',0,'https://haikuatelier.com/?post_type=product&p=613',3,'product','',0), -(614,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-119','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=614',1,'product_variation','',0), -(615,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-120','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=615',2,'product_variation','',0), -(616,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-121','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=616',3,'product_variation','',0), -(617,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-122','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=617',4,'product_variation','',0), -(618,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-123','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=618',5,'product_variation','',0), -(619,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-124','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=619',6,'product_variation','',0), -(620,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-125','','','2024-11-16 19:45:02','2024-11-16 18:45:02','',613,'https://haikuatelier.com/?post_type=product_variation&p=620',7,'product_variation','',0), -(624,1,'2024-11-13 19:09:17','2024-11-13 18:09:17','','BoroBoro Bead Ring gold plated - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-64','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=624',8,'product_variation','',0), -(625,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye or honey jade.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring silver & honey jade','','publish','closed','closed','','boroboro-bead-ring-silver','','','2025-10-29 09:32:31','2025-10-29 08:32:31','',0,'https://haikuatelier.com/?post_type=product&p=625',4,'product','',0), -(626,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-126','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=626',1,'product_variation','',0), -(627,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-127','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=627',2,'product_variation','',0), -(628,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-128','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=628',3,'product_variation','',0), -(629,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-129','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=629',4,'product_variation','',0), -(630,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-130','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=630',5,'product_variation','',0), -(631,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-131','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=631',6,'product_variation','',0), -(632,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-132','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=632',7,'product_variation','',0), -(633,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver & honey jade - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-65','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=633',8,'product_variation','',0), -(637,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Hoop Earrings - left side','Side: left side','publish','closed','closed','','piasu-earrings-left-side','','','2025-11-26 09:40:28','2025-11-26 08:40:28','',202,'https://haikuatelier.com/?post_type=product_variation&p=637',2,'product_variation','',0), -(638,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Hoop Earrings - pair','Side: pair','publish','closed','closed','','piasu-earrings-pair','','','2025-11-26 09:40:28','2025-11-26 08:40:28','',202,'https://haikuatelier.com/?post_type=product_variation&p=638',1,'product_variation','',0), -(639,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Hoop Earrings - right side','Side: right side','publish','closed','closed','','piasu-earrings-right-side','','','2025-11-26 09:40:28','2025-11-26 08:40:28','',202,'https://haikuatelier.com/?post_type=product_variation&p=639',3,'product_variation','',0), -(641,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-silver-left-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=641',2,'product_variation','',0), -(642,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-silver-pair','','','2025-06-18 22:31:04','2025-06-18 20:31:04','',285,'https://haikuatelier.com/?post_type=product_variation&p=642',1,'product_variation','',0), -(643,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-silver-right-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=643',3,'product_variation','',0), -(645,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-left-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=645',2,'product_variation','',0), -(646,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-gold-plated-pair','','','2025-06-18 22:30:24','2025-06-18 20:30:24','',288,'https://haikuatelier.com/?post_type=product_variation&p=646',1,'product_variation','',0), -(647,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-right-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=647',3,'product_variation','',0), -(651,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - long','Side: long','publish','closed','closed','','tamanori-hoops-silver-long','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=651',2,'product_variation','',0), -(652,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - pair','Side: pair','publish','closed','closed','','tamanori-hoops-silver-pair','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=652',1,'product_variation','',0), -(653,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - short','Side: short','publish','closed','closed','','tamanori-hoops-silver-short','','','2024-11-15 12:32:10','2024-11-15 11:32:10','',306,'https://haikuatelier.com/?post_type=product_variation&p=653',3,'product_variation','',0), -(654,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - long','Side: long','publish','closed','closed','','tamanori-hoops-gold-plated-long','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=654',2,'product_variation','',0), -(655,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - pair','Side: pair','publish','closed','closed','','tamanori-hoops-gold-plated-pair','','','2024-11-13 20:13:10','2024-11-13 19:13:10','',312,'https://haikuatelier.com/?post_type=product_variation&p=655',1,'product_variation','',0), -(656,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - short','Side: short','publish','closed','closed','','tamanori-hoops-gold-plated-short','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=656',3,'product_variation','',0), -(659,1,'2024-11-15 12:26:34','2024-11-15 11:26:34','','Hadou wavy ring silver and gold','','inherit','closed','closed','','hadou-b-opti','','','2024-11-15 17:20:07','2024-11-15 16:20:07','',72,'https://haikuatelier.com/app/uploads/2024/09/HADOU-B-opti.jpg',0,'wmpc-trash','image/jpeg',0), -(660,1,'2024-11-15 12:30:13','2024-11-15 11:30:13','','Tamanori hoops gold plated','','inherit','closed','closed','','img_1442','','','2024-11-15 12:30:25','2024-11-15 11:30:25','',312,'https://haikuatelier.com/app/uploads/2024/10/IMG_1442.jpg',0,'attachment','image/jpeg',0), -(664,1,'2024-11-15 12:45:23','2024-11-15 11:45:23','','Kagun trio earrings','','inherit','closed','closed','','img_1512','','','2024-11-15 12:45:38','2024-11-15 11:45:38','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1512.jpg',0,'attachment','image/jpeg',0), -(671,1,'2024-11-15 13:18:10','2024-11-15 12:18:10','','BoroBoro gold plated asymmetrical earrings','','inherit','closed','closed','','img_1604','','','2024-11-15 13:18:55','2024-11-15 12:18:55','',213,'https://haikuatelier.com/app/uploads/2024/10/IMG_1604.jpg',0,'attachment','image/jpeg',0), -(672,1,'2024-11-15 13:23:08','2024-11-15 12:23:08','','Hattari ear cuff gold plated','','inherit','closed','closed','','img_1656-2','','','2024-11-15 13:27:38','2024-11-15 12:27:38','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1656-1.jpg',0,'attachment','image/jpeg',0), -(673,1,'2024-11-15 13:29:39','2024-11-15 12:29:39','','Mugura minimalist silver hoops','','inherit','closed','closed','','img_1657','','','2024-11-15 13:30:07','2024-11-15 12:30:07','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1657.jpg',0,'attachment','image/jpeg',0), -(681,1,'2024-11-17 10:24:25','2024-11-17 09:24:25','','Piasu Ring','','inherit','closed','closed','','dsc9897','','','2024-11-17 10:24:56','2024-11-17 09:24:56','',0,'https://haikuatelier.com/app/uploads/2024/09/DSC9897.jpg',0,'attachment','image/jpeg',0), -(684,1,'2024-11-17 10:35:57','2024-11-17 09:35:57','','Ikkan ring gold plated','','inherit','closed','closed','','img_1478','','','2024-11-17 10:36:09','2024-11-17 09:36:09','',113,'https://haikuatelier.com/app/uploads/2024/09/IMG_1478.jpg',0,'attachment','image/jpeg',0), -(689,1,'2024-11-17 10:50:52','2024-11-17 09:50:52','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9341','','','2024-11-17 10:51:13','2024-11-17 09:51:13','',288,'https://haikuatelier.com/app/uploads/2024/10/DSC9341.jpg',0,'attachment','image/jpeg',0), -(700,1,'2024-11-17 11:10:04','2024-11-17 10:10:04','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1431','','','2024-11-17 11:10:29','2024-11-17 10:10:29','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1431.jpg',0,'attachment','image/jpeg',0), -(702,1,'2024-11-17 11:11:49','2024-11-17 10:11:49','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1432','','','2024-11-17 11:12:02','2024-11-17 10:12:02','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1432.jpg',0,'attachment','image/jpeg',0), -(704,1,'2024-11-17 11:18:25','2024-11-17 10:18:25','','Piasu necklace','','inherit','closed','closed','','img_1493','','','2024-11-17 11:18:37','2024-11-17 10:18:37','',268,'https://haikuatelier.com/app/uploads/2024/10/IMG_1493.jpg',0,'attachment','image/jpeg',0), -(705,1,'2024-11-17 11:21:09','2024-11-17 10:21:09','','Rokku necklace jaspe stone','','inherit','closed','closed','','img_1531','','','2024-11-17 11:21:43','2024-11-17 10:21:43','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1531.jpg',0,'attachment','image/jpeg',0), -(707,1,'2024-11-17 11:24:00','2024-11-17 10:24:00','','Rokku necklace lapis lazuli stone','','inherit','closed','closed','','img_1543','','','2024-11-17 11:24:27','2024-11-17 10:24:27','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1543.jpg',0,'attachment','image/jpeg',0), -(714,1,'2024-11-17 11:42:07','2024-11-17 10:42:07','','Fuyou solo hoop','','inherit','closed','closed','','img_1651','','','2024-11-17 11:42:18','2024-11-17 10:42:18','',318,'https://haikuatelier.com/app/uploads/2024/10/IMG_1651.jpg',0,'attachment','image/jpeg',0), -(715,1,'2024-11-17 11:44:06','2024-11-17 10:44:06','','Rokku silver hoop and Tamanori goldplated earring','','inherit','closed','closed','','img_1669','','','2024-11-17 11:44:41','2024-11-17 10:44:41','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1669.jpg',0,'attachment','image/jpeg',0), -(718,1,'2024-11-17 11:54:22','2024-11-17 10:54:22','','Boroboro earrings silver','','inherit','closed','closed','','img_1746','','','2025-09-24 14:43:46','2025-09-24 12:43:46','',183,'https://haikuatelier.com/app/uploads/2024/10/IMG_1746.jpg',0,'attachment','image/jpeg',0), -(722,1,'2024-11-17 17:29:17','2024-11-17 16:29:17','','Mugura hoops gold plated','','inherit','closed','closed','','sony-dsc-39','','','2024-11-17 17:29:34','2024-11-17 16:29:34','',398,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-vrm.jpg',0,'attachment','image/jpeg',0), -(725,1,'2024-11-17 17:36:52','2024-11-17 16:36:52','','Piasu necklace','SONY DSC','inherit','closed','closed','','sony-dsc-23','','','2024-11-17 17:37:08','2024-11-17 16:37:08','',268,'https://haikuatelier.com/app/uploads/2024/10/PIASU-C.jpg',0,'attachment','image/jpeg',0), -(726,1,'2024-11-17 17:39:44','2024-11-17 16:39:44','','Rokku ring silver and malachite','','inherit','closed','closed','','rokku-b-malachite','','','2024-11-17 17:40:01','2024-11-17 16:40:01','',168,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-B-malachite.jpg',0,'attachment','image/jpeg',0), -(727,1,'2024-11-17 17:41:31','2024-11-17 16:41:31','','Rokku necklace with jaspe','','inherit','closed','closed','','sony-dsc-49','','','2024-11-17 17:41:48','2024-11-17 16:41:48','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-jaspe.jpg',0,'attachment','image/jpeg',0), -(729,1,'2024-11-17 17:44:27','2024-11-17 16:44:27','','Rokku necklace tiger\'s eye','','inherit','closed','closed','','sony-dsc-45','','','2024-11-17 17:44:45','2024-11-17 16:44:45','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-tiger.jpg',0,'attachment','image/jpeg',0), -(730,1,'2024-11-17 17:52:40','2024-11-17 16:52:40','','Rokku solo hoop gold plated lapis lazuli','','inherit','closed','closed','','sony-dsc-52','','','2024-11-17 17:53:02','2024-11-17 16:53:02','',0,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-lapis.jpg',0,'attachment','image/jpeg',0), -(731,1,'2024-11-17 17:54:12','2024-11-17 16:54:12','','Rokku solo hoop gold plated malachite','','inherit','closed','closed','','sony-dsc-55','','','2024-11-17 17:54:32','2024-11-17 16:54:32','',0,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-malachite.jpg',0,'attachment','image/jpeg',0), -(732,1,'2024-11-17 17:55:29','2024-11-17 16:55:29','','Rokku solo hoop gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-56','','','2024-11-17 17:55:59','2024-11-17 16:55:59','',0,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-tiger.jpg',0,'attachment','image/jpeg',0), -(735,1,'2024-11-17 18:03:32','2024-11-17 17:03:32','','Tamanori hoops gold plated','','inherit','closed','closed','','sony-dsc-32','','','2024-11-17 18:03:50','2024-11-17 17:03:50','',312,'https://haikuatelier.com/app/uploads/2024/10/TAMANORI-CR2-vrm.jpg',0,'attachment','image/jpeg',0), -(736,1,'2024-11-17 18:05:42','2024-11-17 17:05:42','','Tanemaki pearls bracelet','','inherit','closed','closed','','sony-dsc-59','','','2024-11-17 18:05:56','2024-11-17 17:05:56','',0,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-BR.jpg',0,'attachment','image/jpeg',0), -(743,1,'2024-11-17 18:19:23','2024-11-17 17:19:23','','BoroBoro bead ring gold plated','','inherit','closed','closed','','sony-dsc-73','','','2024-11-17 18:19:43','2024-11-17 17:19:43','',613,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-g.jpg',0,'attachment','image/jpeg',0), -(744,1,'2024-11-17 18:20:59','2024-11-17 17:20:59','','BoroBoro bead ring silver','','inherit','closed','closed','','sony-dsc-74','','','2024-11-17 18:21:16','2024-11-17 17:21:16','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-s.jpg',0,'attachment','image/jpeg',0), -(747,1,'2024-11-17 18:27:21','2024-11-17 17:27:21','','BoroBoro beads earrings gold plated and aventurine','','inherit','closed','closed','','sony-dsc-63','','','2024-11-17 18:27:51','2024-11-17 17:27:51','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-green.jpg',0,'attachment','image/jpeg',0), -(748,1,'2024-11-17 18:28:18','2024-11-17 17:28:18','','BoroBoro beads earrings gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-64','','','2024-11-17 18:28:45','2024-11-17 17:28:45','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-brown.jpg',0,'attachment','image/jpeg',0), -(749,1,'2024-11-17 18:30:10','2024-11-17 17:30:10','','BoroBoro beads earrings silver and tiger\'s eye','','inherit','closed','closed','','sony-dsc-65','','','2024-11-17 18:30:37','2024-11-17 17:30:37','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-brown.jpg',0,'attachment','image/jpeg',0), -(750,1,'2024-11-17 18:30:59','2024-11-17 17:30:59','','BoroBoro beads earrings silver and aventurine','','inherit','closed','closed','','sony-dsc-66','','','2024-11-17 18:31:22','2024-11-17 17:31:22','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-green.jpg',0,'attachment','image/jpeg',0), -(751,1,'2024-11-17 18:34:14','2024-11-17 17:34:14','','Kara hoops silver','','inherit','closed','closed','','_dsc9463','','','2024-11-17 18:34:32','2024-11-17 17:34:32','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC9463.jpg',0,'attachment','image/jpeg',0), -(752,1,'2024-11-17 18:35:52','2024-11-17 17:35:52','','Hadou stud earrings','','inherit','closed','closed','','sony-dsc-60','','','2024-11-17 18:37:25','2024-11-17 17:37:25','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP.jpg',0,'attachment','image/jpeg',0), -(753,1,'2024-11-17 18:40:18','2024-11-17 17:40:18','','Hattari cuff','','inherit','closed','closed','','sony-dsc-15','','','2024-11-17 18:40:30','2024-11-17 17:40:30','',0,'https://haikuatelier.com/app/uploads/2024/11/HATTARI-BR.jpg',0,'attachment','image/jpeg',0), -(755,1,'2024-11-17 18:44:27','2024-11-17 17:44:27','','Hadou stud earrings silver','','inherit','closed','closed','','img_1474','','','2024-11-17 18:45:04','2024-11-17 17:45:04','',490,'https://haikuatelier.com/app/uploads/2024/11/IMG_1474.jpg',0,'attachment','image/jpeg',0), -(756,1,'2024-11-17 18:47:01','2024-11-17 17:47:01','','Kagun solo hoop earring','','inherit','closed','closed','','img_1481','','','2024-11-17 18:47:16','2024-11-17 17:47:16','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1481.jpg',0,'attachment','image/jpeg',0), -(757,1,'2024-11-17 18:48:24','2024-11-17 17:48:24','','Kagun solo hoop earring','','inherit','closed','closed','','img_1484','','','2024-11-17 18:48:35','2024-11-17 17:48:35','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1484.jpg',0,'attachment','image/jpeg',0), -(758,1,'2024-11-17 18:50:22','2024-11-17 17:50:22','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1501','','','2024-11-17 18:55:54','2024-11-17 17:55:54','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1501.jpg',0,'attachment','image/jpeg',0), -(759,1,'2024-11-17 18:51:58','2024-11-17 17:51:58','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1506','','','2024-11-17 18:55:47','2024-11-17 17:55:47','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1506.jpg',0,'attachment','image/jpeg',0), -(761,1,'2024-11-17 18:55:14','2024-11-17 17:55:14','','BoroBoro bead ring gold plated and aventurine','','inherit','closed','closed','','img_1554','','','2024-11-17 18:55:37','2024-11-17 17:55:37','',613,'https://haikuatelier.com/app/uploads/2024/11/IMG_1554.jpg',0,'attachment','image/jpeg',0), -(762,1,'2024-11-17 18:57:40','2024-11-17 17:57:40','','Kara textured hoops gold plated','','inherit','closed','closed','','img_1563','','','2024-11-17 18:58:00','2024-11-17 17:58:00','',545,'https://haikuatelier.com/app/uploads/2024/11/IMG_1563.jpg',0,'attachment','image/jpeg',0), -(766,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','Fuyou : floating leave on water\r\n\r\nLong dangling earrings in sterling silver. Composed of fluid oval shapes and rectangular chains with gold plated details.\r\n\r\n
    \r\n
  • total length 5cm
  • \r\n
  • oval length 2,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\r\n\r\n ','Fuyou Long Earrings silver','','publish','closed','closed','','fuyou-long-earrings-silver','','','2025-12-01 00:19:30','2025-11-30 23:19:30','',0,'https://haikuatelier.com/?post_type=product&p=766',10,'product','',0), -(819,1,'2024-11-24 11:42:38','2024-11-24 10:42:38','','Haiku size guide','','inherit','closed','closed','','haiku-ringsizes','','','2024-11-24 11:42:57','2024-11-24 10:42:57','',0,'https://haikuatelier.com/app/uploads/2024/11/HAIKU-ringsizes.jpg',0,'attachment','image/jpeg',0), -(820,1,'2024-11-24 11:53:29','2024-11-24 10:53:29','','Ikkan ring gold plated','','inherit','closed','closed','','sony-dsc-4','','','2024-11-24 11:53:45','2024-11-24 10:53:45','',113,'https://haikuatelier.com/app/uploads/2024/09/IKKAN-B-vrm.jpg',0,'attachment','image/jpeg',0), -(821,1,'2024-11-24 11:55:38','2024-11-24 10:55:38','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-6','','','2024-11-24 11:55:59','2024-11-24 10:55:59','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B.jpg',0,'attachment','image/jpeg',0), -(822,1,'2024-11-24 11:55:39','2024-11-24 10:55:39','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-76','','','2024-11-24 11:56:08','2024-11-24 10:56:08','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B-1.jpg',0,'attachment','image/jpeg',0), -(825,1,'2024-11-24 12:05:34','2024-11-24 11:05:34','','Ikkan bracelet gold plated','','inherit','closed','closed','','img_1505','','','2024-11-24 12:05:50','2024-11-24 11:05:50','',0,'https://haikuatelier.com/app/uploads/2024/10/IMG_1505.jpg',0,'attachment','image/jpeg',0), -(826,1,'2024-11-24 12:07:57','2024-11-24 11:07:57','','Rokku ring silver and 18k gold','','inherit','closed','closed','','img_1582','','','2024-11-24 12:08:10','2024-11-24 11:08:10','',168,'https://haikuatelier.com/app/uploads/2024/10/IMG_1582.jpg',0,'attachment','image/jpeg',0), -(828,1,'2024-11-24 12:11:18','2024-11-24 11:11:18','','Rokku necklace silver and lapis lazuli','SONY DSC','inherit','closed','closed','','sony-dsc-58','','','2024-11-24 12:11:34','2024-11-24 11:11:34','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-lapis-copy.jpg',0,'attachment','image/jpeg',0), -(829,1,'2024-11-24 15:08:28','2024-11-24 14:08:28','','Hattari cuff','','inherit','closed','closed','','img_1460','','','2024-11-24 15:08:36','2024-11-24 14:08:36','',0,'https://haikuatelier.com/app/uploads/2024/11/IMG_1460.jpg',0,'attachment','image/jpeg',0), -(830,1,'2024-11-24 15:10:45','2024-11-24 14:10:45','','Kara ear cuff','','inherit','closed','closed','','img_1473','','','2024-11-24 15:11:09','2024-11-24 14:11:09','',447,'https://haikuatelier.com/app/uploads/2024/11/IMG_1473.jpg',0,'attachment','image/jpeg',0), -(831,1,'2024-11-24 15:13:27','2024-11-24 14:13:27','','BoroBoro bead earrings','','inherit','closed','closed','','img_1524','','','2024-11-24 15:13:44','2024-11-24 14:13:44','',521,'https://haikuatelier.com/app/uploads/2024/11/IMG_1524.jpg',0,'attachment','image/jpeg',0), -(832,1,'2024-11-24 15:14:54','2024-11-24 14:14:54','','BoroBoro bead earrings','','inherit','closed','closed','','img_1525','','','2024-11-24 15:15:08','2024-11-24 14:15:08','',515,'https://haikuatelier.com/app/uploads/2024/11/IMG_1525.jpg',0,'attachment','image/jpeg',0), -(834,1,'2024-11-24 15:19:36','2024-11-24 14:19:36','','Kara textured hoops gold plated','','inherit','closed','closed','','sony-dsc-69','','','2024-11-24 15:19:54','2024-11-24 14:19:54','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g.jpg',0,'attachment','image/jpeg',0), -(835,1,'2024-11-24 15:21:03','2024-11-24 14:21:03','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-70','','','2024-11-24 15:21:25','2024-11-24 14:21:25','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s.jpg',0,'attachment','image/jpeg',0), -(836,1,'2024-11-24 15:24:19','2024-11-24 14:24:19','','Kara ear cuff gold plated','','inherit','closed','closed','','sony-dsc-54','','','2024-11-24 15:24:36','2024-11-24 14:24:36','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-vrm.jpg',0,'attachment','image/jpeg',0), -(851,1,'2024-11-25 16:26:31','2024-11-25 15:26:31','','NEWSHOP20','Code promo pour l\'ouverture du site.','publish','closed','closed','','newshop20','','','2024-12-04 00:23:03','2024-12-03 23:23:03','',0,'https://haikuatelier.com/?post_type=shop_coupon&p=851',0,'shop_coupon','',0), -(861,1,'2024-11-28 16:21:17','2024-11-28 15:21:17','','','','draft','closed','closed','','','','','2024-11-28 16:21:17','2024-11-28 15:21:17','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=861',0,'shop_order_placehold','',3), -(862,1,'2024-11-28 16:40:46','2024-11-28 15:40:46','','','','draft','closed','closed','','','','','2024-11-28 16:40:46','2024-11-28 15:40:46','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=862',0,'shop_order_placehold','',1), -(866,1,'2024-11-29 10:05:49','2024-11-29 09:05:49','','','','draft','closed','closed','','','','','2024-11-29 10:05:49','2024-11-29 09:05:49','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=866',0,'shop_order_placehold','',1), -(867,1,'2024-11-29 10:30:23','2024-11-29 09:30:23','','','','draft','closed','closed','','','','','2024-11-29 10:30:23','2024-11-29 09:30:23','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=867',0,'shop_order_placehold','',0), -(868,1,'2024-11-29 18:22:16','2024-11-29 17:22:16','','','','draft','closed','closed','','','','','2024-11-29 18:22:16','2024-11-29 17:22:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=868',0,'shop_order_placehold','',1), -(869,1,'2024-12-02 11:05:43','2024-12-02 10:05:43','','','','draft','closed','closed','','','','','2024-12-02 11:05:43','2024-12-02 10:05:43','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=869',0,'shop_order_placehold','',1), -(870,1,'2024-12-02 11:46:48','2024-12-02 10:46:48','','','','draft','closed','closed','','','','','2024-12-02 11:46:48','2024-12-02 10:46:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=870',0,'shop_order_placehold','',0), -(871,1,'2024-12-02 17:33:11','2024-12-02 16:33:11','','','','draft','closed','closed','','','','','2024-12-02 17:33:11','2024-12-02 16:33:11','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=871',0,'shop_order_placehold','',1), -(872,1,'2024-12-03 18:03:18','2024-12-03 17:03:18','','','','draft','closed','closed','','','','','2024-12-03 18:03:18','2024-12-03 17:03:18','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=872',0,'shop_order_placehold','',1), -(873,1,'2024-12-03 23:53:41','2024-12-03 22:53:41','','','','draft','closed','closed','','','','','2024-12-03 23:53:41','2024-12-03 22:53:41','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=873',0,'shop_order_placehold','',1), -(876,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=876',0,'shop_order_placehold','',0), -(877,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=877',0,'shop_order_placehold','',0), -(878,1,'2024-12-06 14:08:34','2024-12-06 13:08:34','','','','draft','closed','closed','','','','','2024-12-06 14:08:34','2024-12-06 13:08:34','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=878',0,'shop_order_placehold','',3), -(879,1,'2024-12-06 15:04:22','2024-12-06 14:04:22','','','','draft','closed','closed','','','','','2024-12-06 15:04:22','2024-12-06 14:04:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=879',0,'shop_order_placehold','',2), -(880,1,'2024-12-12 17:55:38','2024-12-12 16:55:38','','','','draft','closed','closed','','','','','2024-12-12 17:55:38','2024-12-12 16:55:38','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=880',0,'shop_order_placehold','',3), -(881,1,'2024-12-13 09:37:26','2024-12-13 08:37:26','','','','draft','closed','closed','','','','','2024-12-13 09:37:26','2024-12-13 08:37:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=881',0,'shop_order_placehold','',2), -(884,1,'2024-12-14 11:10:01','2024-12-14 10:10:01','','','','draft','closed','closed','','','','','2024-12-14 11:10:01','2024-12-14 10:10:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=884',0,'shop_order_placehold','',3), -(885,1,'2024-12-16 10:16:07','2024-12-16 09:16:07','','','','draft','closed','closed','','','','','2024-12-16 10:16:07','2024-12-16 09:16:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=885',0,'shop_order_placehold','',2), -(886,1,'2024-12-17 09:40:04','2024-12-17 08:40:04','','','','draft','closed','closed','','','','','2024-12-17 09:40:04','2024-12-17 08:40:04','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=886',0,'shop_order_placehold','',2), -(887,1,'2024-12-18 16:13:28','2024-12-18 15:13:28','','','','draft','closed','closed','','','','','2024-12-18 16:13:28','2024-12-18 15:13:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=887',0,'shop_order_placehold','',2), -(888,1,'2024-12-19 10:08:20','2024-12-19 09:08:20','','','','draft','closed','closed','','','','','2024-12-19 10:08:20','2024-12-19 09:08:20','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=888',0,'shop_order_placehold','',2), -(889,1,'2024-12-26 13:37:45','2024-12-26 12:37:45','','','','draft','closed','closed','','','','','2024-12-26 13:37:45','2024-12-26 12:37:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=889',0,'shop_order_placehold','',2), -(890,1,'2024-12-29 15:53:20','2024-12-29 14:53:20','','','','draft','closed','closed','','','','','2024-12-29 15:53:20','2024-12-29 14:53:20','',888,'https://haikuatelier.com/?post_type=shop_order_placehold&p=890',0,'shop_order_placehold','',0), -(891,1,'2024-12-30 11:40:43','2024-12-30 10:40:43','','','','draft','closed','closed','','','','','2024-12-30 11:40:43','2024-12-30 10:40:43','',880,'https://haikuatelier.com/?post_type=shop_order_placehold&p=891',0,'shop_order_placehold','',0), -(892,1,'2024-12-30 19:59:22','2024-12-30 18:59:22','','','','draft','closed','closed','','','','','2024-12-30 19:59:22','2024-12-30 18:59:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=892',0,'shop_order_placehold','',0), -(893,1,'2025-01-03 09:10:31','2025-01-03 08:10:31','','','','draft','closed','closed','','','','','2025-01-03 09:10:31','2025-01-03 08:10:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=893',0,'shop_order_placehold','',0), -(894,1,'2025-01-03 10:04:01','2025-01-03 09:04:01','','','','draft','closed','closed','','','','','2025-01-03 10:04:01','2025-01-03 09:04:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=894',0,'shop_order_placehold','',2), -(895,1,'2025-01-09 13:01:26','2025-01-09 12:01:26','','','','draft','closed','closed','','','','','2025-01-09 13:01:26','2025-01-09 12:01:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=895',0,'shop_order_placehold','',2), -(896,1,'2025-01-23 22:51:50','2025-01-23 21:51:50','','','','draft','closed','closed','','','','','2025-01-23 22:51:50','2025-01-23 21:51:50','',884,'https://haikuatelier.com/?post_type=shop_order_placehold&p=896',0,'shop_order_placehold','',0), -(897,1,'2025-01-29 11:32:07','2025-01-29 10:32:07','','','','draft','closed','closed','','','','','2025-01-29 11:32:07','2025-01-29 10:32:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=897',0,'shop_order_placehold','',2), -(898,1,'2025-01-30 09:55:09','2025-01-30 08:55:09','','','','draft','closed','closed','','','','','2025-01-30 09:55:09','2025-01-30 08:55:09','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=898',0,'shop_order_placehold','',0), -(899,1,'2025-01-30 09:57:12','2025-01-30 08:57:12','','','','draft','closed','closed','','','','','2025-01-30 09:57:12','2025-01-30 08:57:12','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=899',0,'shop_order_placehold','',2), -(900,1,'2025-02-21 20:32:16','2025-02-21 19:32:16','','','','draft','closed','closed','','','','','2025-02-21 20:32:16','2025-02-21 19:32:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=900',0,'shop_order_placehold','',0), -(901,1,'2025-02-23 18:08:07','2025-02-23 17:08:07','','','','draft','closed','closed','','','','','2025-02-23 18:08:07','2025-02-23 17:08:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=901',0,'shop_order_placehold','',1), -(902,1,'2025-02-26 13:51:14','2025-02-26 12:51:14','','','','draft','closed','closed','','','','','2025-02-26 13:51:14','2025-02-26 12:51:14','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=902',0,'shop_order_placehold','',0), -(903,1,'2025-02-26 13:51:16','2025-02-26 12:51:16','','','','draft','closed','closed','','','','','2025-02-26 13:51:16','2025-02-26 12:51:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=903',0,'shop_order_placehold','',2), -(904,1,'2025-03-03 08:31:50','2025-03-03 07:31:50','','','','draft','closed','closed','','','','','2025-03-03 08:31:50','2025-03-03 07:31:50','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=904',0,'shop_order_placehold','',0), -(905,1,'2025-03-03 11:45:26','2025-03-03 10:45:26','','','','draft','closed','closed','','','','','2025-03-03 11:45:26','2025-03-03 10:45:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=905',0,'shop_order_placehold','',2), -(906,1,'2025-03-03 12:10:15','2025-03-03 11:10:15','','','','draft','closed','closed','','','','','2025-03-03 12:10:15','2025-03-03 11:10:15','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=906',0,'shop_order_placehold','',2), -(907,1,'2025-03-05 12:04:07','2025-03-05 11:04:07','','','','draft','closed','closed','','','','','2025-03-05 12:04:07','2025-03-05 11:04:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=907',0,'shop_order_placehold','',2), -(908,1,'2025-03-23 22:39:51','2025-03-23 21:39:51','','','','draft','closed','closed','','','','','2025-03-23 22:39:51','2025-03-23 21:39:51','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=908',0,'shop_order_placehold','',2), -(909,1,'2025-04-07 13:50:33','2025-04-07 11:50:33','','','','draft','closed','closed','','','','','2025-04-07 13:50:33','2025-04-07 11:50:33','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=909',0,'shop_order_placehold','',0), -(910,1,'2025-04-08 13:44:22','2025-04-08 11:44:22','','','','draft','closed','closed','','','','','2025-04-08 13:44:22','2025-04-08 11:44:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=910',0,'shop_order_placehold','',2), -(911,1,'2025-05-05 11:14:57','2025-05-05 09:14:57','','','','draft','closed','closed','','','','','2025-05-05 11:14:57','2025-05-05 09:14:57','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=911',0,'shop_order_placehold','',0), -(912,1,'2025-05-09 11:49:40','2025-05-09 09:49:40','','','','draft','closed','closed','','','','','2025-05-09 11:49:40','2025-05-09 09:49:40','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=912',0,'shop_order_placehold','',2), -(913,1,'2025-05-09 17:41:06','2025-05-09 15:41:06','ROKKU: pebble\n\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in some 18K gold.\n
    \n
  • adjustable
  • \n
  • height 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','inherit','closed','closed','','168-autosave-v1','','','2025-05-09 17:41:06','2025-05-09 15:41:06','',168,'https://haikuatelier.com/?p=913',0,'revision','',0), -(919,1,'2025-05-09 21:54:35','2025-05-09 19:54:35','','','','draft','closed','closed','','','','','2025-05-09 21:54:35','2025-05-09 19:54:35','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=919',0,'shop_order_placehold','',0), -(920,1,'2025-05-09 21:56:26','2025-05-09 19:56:26','','','','draft','closed','closed','','','','','2025-05-09 21:56:26','2025-05-09 19:56:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=920',0,'shop_order_placehold','',0), -(921,1,'2025-05-09 21:56:27','2025-05-09 19:56:27','','','','draft','closed','closed','','','','','2025-05-09 21:56:27','2025-05-09 19:56:27','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=921',0,'shop_order_placehold','',2), -(922,1,'2025-05-09 21:56:28','2025-05-09 19:56:28','','','','draft','closed','closed','','','','','2025-05-09 21:56:28','2025-05-09 19:56:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=922',0,'shop_order_placehold','',2), -(923,1,'2025-06-04 13:13:31','2025-06-04 11:13:31','','','','draft','closed','closed','','','','','2025-06-04 13:13:31','2025-06-04 11:13:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=923',0,'shop_order_placehold','',0), -(924,1,'2025-06-05 09:44:45','2025-06-05 07:44:45','','','','draft','closed','closed','','','','','2025-06-05 09:44:45','2025-06-05 07:44:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=924',0,'shop_order_placehold','',2), -(925,1,'2025-06-17 08:02:32','2025-06-17 06:02:32','','BoroBoro silver earrings with honey calcite beads','','inherit','closed','closed','','boro-bo1-arg','','','2025-06-17 08:08:00','2025-06-17 06:08:00','',521,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-arg.jpg',0,'attachment','image/jpeg',0), -(926,1,'2025-06-17 08:09:43','2025-06-17 06:09:43','','BoroBoro Bead Earrings silver - Honey Jade','Stone: Honey Jade','trash','closed','closed','','boroboro-bead-earrings-silver-honey-calcite__trashed','','','2025-11-19 08:06:10','2025-11-19 07:06:10','',521,'https://haikuatelier.com/?post_type=product_variation&p=926',1,'product_variation','',0), -(927,1,'2025-06-17 08:11:34','2025-06-17 06:11:34','','BoroBoro gold plated earrings with green aventurine beads','','inherit','closed','closed','','boro-bo1-or','','','2025-06-17 08:12:40','2025-06-17 06:12:40','',515,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-or.jpg',0,'attachment','image/jpeg',0), -(928,1,'2025-06-17 08:15:25','2025-06-17 06:15:25','','Mugura trio of stud earrings','','inherit','closed','closed','','mugura-bop','','','2025-06-17 08:16:36','2025-06-17 06:16:36','',0,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-BOP.jpg',0,'attachment','image/jpeg',0), -(930,1,'2025-08-19 09:39:07','2025-08-19 07:39:07','Mugura: vine\n\nSmall solo hoop in sterling silver with a wavy dangling element in gold plated silver.\n
    \n
  • hoop diameter 13mm
  • \n
  • total height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our jewelry are made in 80% recycled silver and 18K gold plated silver.','Mugura Solo Hoop','','inherit','closed','closed','','496-autosave-v1','','','2025-08-19 09:39:07','2025-08-19 07:39:07','',496,'https://haikuatelier.com/?p=930',0,'revision','',0), -(933,1,'2025-06-17 09:45:36','2025-06-17 07:45:36','Hadou : wave\n\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\n
    \n
  • height 1cm
  • \n
  • wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','inherit','closed','closed','','490-autosave-v1','','','2025-06-17 09:45:36','2025-06-17 07:45:36','',490,'https://haikuatelier.com/?p=933',0,'revision','',0), -(934,1,'2025-06-17 09:45:51','2025-06-17 07:45:51','','Hadou stud earrings','','inherit','closed','closed','','hadou-bop-1','','','2025-06-17 09:46:12','2025-06-17 07:46:12','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP-1.jpg',0,'attachment','image/jpeg',0), -(935,1,'2025-06-17 09:57:48','2025-06-17 07:57:48','','Kara textured hoops silver','','inherit','closed','closed','','kara-cr-s','','','2025-06-17 09:58:04','2025-06-17 07:58:04','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s-1.jpg',0,'attachment','image/jpeg',0), -(936,1,'2025-06-17 10:18:41','2025-06-17 08:18:41','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-7','','','2025-06-17 10:20:11','2025-06-17 08:20:11','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00650.jpg',0,'attachment','image/jpeg',0), -(937,1,'2025-06-17 10:20:05','2025-06-17 08:20:05','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-8','','','2025-06-17 10:20:28','2025-06-17 08:20:28','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00655.jpg',0,'attachment','image/jpeg',0), -(938,1,'2025-06-17 10:22:41','2025-06-17 08:22:41','','Kara textured hoops gold plated','','inherit','closed','closed','','kara-cr-g','','','2025-06-17 10:22:58','2025-06-17 08:22:58','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g-1.jpg',0,'attachment','image/jpeg',0), -(939,1,'2025-06-17 10:27:02','2025-06-17 08:27:02','','Kara ear cuff gold plated','','inherit','closed','closed','','kara-ec-g','','','2025-06-17 10:27:19','2025-06-17 08:27:19','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-g.jpg',0,'attachment','image/jpeg',0), -(940,1,'2025-06-17 10:28:05','2025-06-17 08:28:05','','Kara ear cuff silver','','inherit','closed','closed','','kara-ec-s','','','2025-06-17 10:28:36','2025-06-17 08:28:36','',435,'https://haikuatelier.com/app/uploads/2024/10/KARA-EC-s.jpg',0,'attachment','image/jpeg',0), -(941,1,'2025-06-20 19:22:20','2025-06-20 17:22:20','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Ring silver','','publish','closed','closed','','uteki-ring-silver','','','2025-11-10 14:03:20','2025-11-10 13:03:20','',0,'https://haikuatelier.com/?post_type=product&p=941',51,'product','',0), -(943,1,'2025-06-18 19:31:49','2025-06-18 17:31:49','','Uteki ring in silver','','inherit','closed','closed','','sony-dsc-13','','','2025-06-18 19:32:06','2025-06-18 17:32:06','',941,'https://haikuatelier.com/app/uploads/2025/06/DSC00671.jpg',0,'attachment','image/jpeg',0), -(944,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-50','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=944',1,'product_variation','',0), -(945,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-52','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=945',2,'product_variation','',0), -(946,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-54','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=946',3,'product_variation','',0), -(947,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-56','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=947',4,'product_variation','',0), -(948,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-58','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=948',5,'product_variation','',0), -(949,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-60','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=949',6,'product_variation','',0), -(950,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-62','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=950',7,'product_variation','',0), -(951,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-64','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=951',8,'product_variation','',0), -(953,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in gold plated sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\r\n\r\n','Uteki Ring gold plated','','publish','closed','closed','','uteki-ring-gold-plated','','','2025-11-10 14:06:29','2025-11-10 13:06:29','',0,'https://haikuatelier.com/?post_type=product&p=953',50,'product','',0), -(954,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-65','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=954',1,'product_variation','',0), -(955,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-66','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=955',2,'product_variation','',0), -(956,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-67','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=956',3,'product_variation','',0), -(957,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-68','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=957',4,'product_variation','',0), -(958,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-69','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=958',5,'product_variation','',0), -(959,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-70','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=959',6,'product_variation','',0), -(960,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-71','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=960',7,'product_variation','',0), -(961,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-72','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=961',8,'product_variation','',0), -(962,1,'2025-06-18 22:20:23','2025-06-18 20:20:23','','Uteki ring in gold plated','','inherit','closed','closed','','uteki-b-g','','','2025-06-18 22:22:37','2025-06-18 20:22:37','',953,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-B-g.jpg',0,'attachment','image/jpeg',0), -(963,1,'2025-06-18 22:23:24','2025-06-18 20:23:24','','Uteki ring in gold plated','','inherit','closed','closed','','sony-dsc-14','','','2025-06-18 22:23:44','2025-06-18 20:23:44','',953,'https://haikuatelier.com/app/uploads/2025/06/DSC00670.jpg',0,'attachment','image/jpeg',0), -(967,1,'2025-06-18 22:38:10','2025-06-18 20:38:10','BOROBORO: the sound of something crumbling \n\nLong asymmetrical earrings with oval shapes made of sterling silver.\n
    \n
  • wire diameter 12mm
  • \n
  • height 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','inherit','closed','closed','','183-autosave-v1','','','2025-06-18 22:38:10','2025-06-18 20:38:10','',183,'https://haikuatelier.com/?p=967',0,'revision','',0), -(968,1,'2025-06-18 22:43:11','2025-06-18 20:43:11','','Piasu ring in silver','','inherit','closed','closed','','piasu-b-s','','','2025-06-18 22:43:41','2025-06-18 20:43:41','',0,'https://haikuatelier.com/app/uploads/2024/09/PIASU-B-s.jpg',0,'attachment','image/jpeg',0), -(969,1,'2025-06-18 22:47:21','2025-06-18 20:47:21','','Tanemaki necklace mixing chains and pearls','','inherit','closed','closed','','sony-dsc-5','','','2025-06-18 22:48:05','2025-06-18 20:48:05','',0,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-C-1.jpg',0,'attachment','image/jpeg',0), -(977,1,'2025-06-19 16:20:10','2025-06-19 14:20:10','KARA: hull, shell\n\nTextured ear cuff in sterling gold plated silver.\n
    \n
  • width 0,5cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','inherit','closed','closed','','447-autosave-v1','','','2025-06-19 16:20:10','2025-06-19 14:20:10','',447,'https://haikuatelier.com/?p=977',0,'revision','',0), -(980,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','ROKKU: pebble\n\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\n
    \n
  • total chain length 50cm
  • \n
  • pendant height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','inherit','closed','closed','','385-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',385,'https://haikuatelier.com/?p=980',0,'revision','',0), -(982,1,'2025-06-20 18:59:01','2025-06-20 16:59:01','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. Made in sterling silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace silver','','publish','closed','closed','','uteki-necklace-silver','','','2025-09-24 14:38:50','2025-09-24 12:38:50','',0,'https://haikuatelier.com/?post_type=product&p=982',49,'product','',0), -(992,1,'2025-06-20 19:05:42','2025-06-20 17:05:42','','Uteki necklaces','','inherit','closed','closed','','dsc00689','','','2025-06-20 19:06:07','2025-06-20 17:06:07','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00689.jpg',0,'attachment','image/jpeg',0), -(993,1,'2025-06-20 19:06:23','2025-06-20 17:06:23','','Uteki necklace in sterling silver','','inherit','closed','closed','','sony-dsc-10','','','2025-06-20 19:10:44','2025-06-20 17:10:44','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00684.jpg',0,'attachment','image/jpeg',0), -(994,1,'2025-06-20 19:07:53','2025-06-20 17:07:53','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. In gold plated silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace gold plated','','publish','closed','closed','','uteki-necklace-gold-plated','','','2025-08-17 18:09:25','2025-08-17 16:09:25','',0,'https://haikuatelier.com/?post_type=product&p=994',48,'product','',0), -(996,1,'2025-06-20 19:09:52','2025-06-20 17:09:52','','Uteki necklace in gold plated silver','','inherit','closed','closed','','sony-dsc-19','','','2025-06-20 19:10:52','2025-06-20 17:10:52','',994,'https://haikuatelier.com/app/uploads/2025/06/DSC00699.jpg',0,'attachment','image/jpeg',0), -(997,1,'2025-06-21 11:54:31','2025-06-21 09:54:31','','','','draft','closed','closed','','','','','2025-06-21 11:54:31','2025-06-21 09:54:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=997',0,'shop_order_placehold','',2), -(1004,1,'2025-07-03 19:59:44','2025-07-03 17:59:44','PIASU: piercing\r\n\r\nChunky hoop earrings creating the illusion of an open hoop hanging on your ear.\r\n
    \r\n
  • total diameter 2cm
  • \r\n
  • wire thickness 3mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Open Hoops','','trash','closed','closed','','piasu-open-hoops__trashed','','','2025-11-19 08:05:52','2025-11-19 07:05:52','',0,'https://haikuatelier.com/?post_type=product&p=1004',36,'product','',0), -(1005,1,'2025-07-03 19:59:44','2025-07-03 17:59:44','','Piasu Open Hoops - pair','Side: pair','trash','closed','closed','','piasu-earrings-pair-2__trashed','','','2025-11-19 08:05:52','2025-11-19 07:05:52','',1004,'https://haikuatelier.com/?post_type=product_variation&p=1005',2,'product_variation','',0), -(1008,1,'2025-07-03 20:03:50','2025-07-03 18:03:50','','Piasu hoop earrings silver','','inherit','closed','closed','','piasu-cr','','','2025-07-03 20:04:45','2025-07-03 18:04:45','',1004,'https://haikuatelier.com/app/uploads/2025/07/PIASU-CR.jpg',0,'attachment','image/jpeg',0), -(1009,1,'2025-07-03 20:05:18','2025-07-03 18:05:18','','Piasu hoop earrings silver','','inherit','closed','closed','','img_4071','','','2025-07-03 20:05:32','2025-07-03 18:05:32','',1004,'https://haikuatelier.com/app/uploads/2025/07/IMG_4071.jpg',0,'attachment','image/jpeg',0), -(1010,1,'2025-07-03 20:05:50','2025-07-03 18:05:50','','Piasu hoop earrings silver','','inherit','closed','closed','','sony-dsc-2','','','2025-07-03 20:06:04','2025-07-03 18:06:04','',1004,'https://haikuatelier.com/app/uploads/2025/07/DSC00642.jpg',0,'attachment','image/jpeg',0), -(1011,1,'2025-07-03 20:07:13','2025-07-03 18:07:13','','Piasu Open Hoops - one earring','Side: one earring','trash','closed','closed','','piasu-hoops-one-earring__trashed','','','2025-11-19 08:05:52','2025-11-19 07:05:52','',1004,'https://haikuatelier.com/?post_type=product_variation&p=1011',2,'product_variation','',0), -(1013,1,'2025-07-14 14:37:48','2025-07-14 12:37:48','','','','draft','closed','closed','','','','','2025-07-14 14:37:48','2025-07-14 12:37:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1013',0,'shop_order_placehold','',2), -(1342,1,'2025-08-17 18:01:35','2025-08-17 16:01:35','','Uteki ring in gold plated','','inherit','closed','closed','','uteki-b-g-2','','','2025-08-17 18:01:59','2025-08-17 16:01:59','',0,'https://haikuatelier.com/app/uploads/2025/08/UTEKI-B-g.jpg',0,'attachment','image/jpeg',0), -(1343,1,'2025-08-17 18:02:22','2025-08-17 16:02:22','','Uteki ring in sterling silver','','inherit','closed','closed','','uteki-b-s','','','2025-08-17 18:02:52','2025-08-17 16:02:52','',0,'https://haikuatelier.com/app/uploads/2025/08/UTEKI-B-s.jpg',0,'attachment','image/jpeg',0), -(1345,1,'2025-08-17 18:08:47','2025-08-17 16:08:47','','Uteki necklace gold plated','','inherit','closed','closed','','uteki-c-g-2','','','2025-08-17 18:09:07','2025-08-17 16:09:07','',994,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-g-1.jpg',0,'attachment','image/jpeg',0), -(1346,1,'2025-08-17 18:10:15','2025-08-17 16:10:15','','Uteki necklace silver','','inherit','closed','closed','','uteki-c-s-2','','','2025-08-17 18:10:56','2025-08-17 16:10:56','',982,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-s-1.jpg',0,'attachment','image/jpeg',0), -(1347,1,'2025-08-17 18:13:37','2025-08-17 16:13:37','','BoroBoro bead ring silver and tiger eye','','inherit','closed','closed','','boroboro-b-st','','','2025-08-17 18:16:08','2025-08-17 16:16:08','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B-st.jpg',0,'attachment','image/jpeg',0), -(1348,1,'2025-08-17 18:15:09','2025-08-17 16:15:09','','BoroBoro bead ring','','inherit','closed','closed','','boroboro-b','','','2025-08-17 18:15:46','2025-08-17 16:15:46','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B.jpg',0,'attachment','image/jpeg',0), -(1349,1,'2025-08-17 18:17:39','2025-08-17 16:17:39','','BoroBoro bead ring silver and honey jade','','inherit','closed','closed','','boroboro-b-sj','','','2025-08-17 18:18:14','2025-08-17 16:18:14','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B-sj.jpg',0,'attachment','image/jpeg',0), -(1350,1,'2025-10-29 09:33:10','2025-10-29 08:33:10','BOROBORO: the sound of something crumbling\n\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye or honey jade.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring silver & honey jade','','inherit','closed','closed','','625-autosave-v1','','','2025-10-29 09:33:10','2025-10-29 08:33:10','',625,'https://haikuatelier.com/?p=1350',0,'revision','',0), -(1351,1,'2025-08-17 18:22:08','2025-08-17 16:22:08','','BoroBoro bead ring gold plated','','inherit','closed','closed','','boroboro-b-g','','','2025-08-17 18:22:45','2025-08-17 16:22:45','',613,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B-g.jpg',0,'attachment','image/jpeg',0), -(1352,1,'2025-08-17 18:23:07','2025-08-17 16:23:07','BOROBORO: the sound of something crumbling\n\nMinimalist gold plated ring composed of a thick round band and a movable prehnite aventurine bead.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring gold plated','','inherit','closed','closed','','613-autosave-v1','','','2025-08-17 18:23:07','2025-08-17 16:23:07','',613,'https://haikuatelier.com/?p=1352',0,'revision','',0), -(1353,1,'2025-08-17 18:58:30','2025-08-17 16:58:30','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','_dsc9237-2','','','2025-08-17 19:00:27','2025-08-17 17:00:27','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9237-1.jpg',0,'attachment','image/jpeg',0), -(1354,1,'2025-08-17 18:58:41','2025-08-17 16:58:41','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','_dsc9240','','','2025-08-17 19:00:40','2025-08-17 17:00:40','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9240.jpg',0,'attachment','image/jpeg',0), -(1355,1,'2025-08-17 18:58:47','2025-08-17 16:58:47','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','_dsc9242-2','','','2025-08-17 19:00:43','2025-08-17 17:00:43','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9242-1.jpg',0,'attachment','image/jpeg',0), -(1356,1,'2025-08-17 19:02:14','2025-08-17 17:02:14','','Fuyou bracelet silver and gold plated','','inherit','closed','closed','','fuyou-br','','','2025-08-17 19:02:41','2025-08-17 17:02:41','',258,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-BR.jpg',0,'attachment','image/jpeg',0), -(1357,1,'2025-08-17 19:03:55','2025-08-17 17:03:55','Fuyou: floating leave on water\n\nRectangular trace chain bracelet in sterling silver with a fluid oval shape element in the center and gold plated details.\n
    \n
  • adjustable in between 15 and 18cm
  • \n
  • oval center shape 2cm caliber
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet silver','','inherit','closed','closed','','258-autosave-v1','','','2025-08-17 19:03:55','2025-08-17 17:03:55','',258,'https://haikuatelier.com/?p=1357',0,'revision','',0), -(1364,1,'2025-12-01 00:13:22','2025-11-30 23:13:22','Fuyou : floating leave on water\n\nLong dangling earrings in sterling silver. Composed of fluid oval shapes and rectangular chains with gold plated details.\n\n
    \n
  • total length 5cm
  • \n
  • oval length 2,5cm
  • \n
  • handcrafted in Brussels
  • \n
\n\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\n\n ','Fuyou Long Earrings silver','','inherit','closed','closed','','766-autosave-v1','','','2025-12-01 00:13:22','2025-11-30 23:13:22','',766,'https://haikuatelier.com/?p=1364',0,'revision','',0), -(1365,1,'2025-08-18 13:31:39','2025-08-18 11:31:39','','Fuyou long earrings silver','','inherit','closed','closed','','fuyou-b0','','','2025-08-18 13:32:12','2025-08-18 11:32:12','',766,'https://haikuatelier.com/app/uploads/2024/11/FUYOU-B0.jpg',0,'attachment','image/jpeg',0), -(1367,1,'2025-08-18 13:42:42','2025-08-18 11:42:42','','Fuyou long earrings','','inherit','closed','closed','','_dsc0249-2','','','2025-08-18 13:42:56','2025-08-18 11:42:56','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0249-1.jpg',0,'attachment','image/jpeg',0), -(1369,1,'2025-08-19 09:24:13','2025-08-19 07:24:13','','Hattari stacked hoops silver','','inherit','closed','closed','','hattari-cr2-arg','','','2025-08-19 09:24:37','2025-08-19 07:24:37','',285,'https://haikuatelier.com/app/uploads/2024/10/HATTARI-CR2-arg.jpg',0,'attachment','image/jpeg',0), -(1371,1,'2025-08-19 09:30:53','2025-08-19 07:30:53','','Hattari stacked hoops gold plated','','inherit','closed','closed','','hattari-cr2-or','','','2025-08-19 09:31:10','2025-08-19 07:31:10','',288,'https://haikuatelier.com/app/uploads/2024/10/HATTARI-CR2-or.jpg',0,'attachment','image/jpeg',0), -(1377,1,'2025-08-19 09:40:55','2025-08-19 07:40:55','','Mugura solo hoop','','inherit','closed','closed','','mugura-cr1solo','','','2025-08-19 09:41:26','2025-08-19 07:41:26','',496,'https://haikuatelier.com/app/uploads/2024/11/MUGURA-CR1solo.jpg',0,'attachment','image/jpeg',0), -(1378,1,'2025-08-19 10:08:23','2025-08-19 08:08:23','','Piasu open hoops','','inherit','closed','closed','','piasu-cr-1','','','2025-08-19 10:09:18','2025-08-19 08:09:18','',0,'https://haikuatelier.com/app/uploads/2025/08/PIASU-CR-1.jpg',0,'attachment','image/jpeg',0), -(1379,1,'2025-08-19 10:08:29','2025-08-19 08:08:29','','Piasu open hoops','','inherit','closed','closed','','piasu-cr-2','','','2025-08-19 10:09:28','2025-08-19 08:09:28','',0,'https://haikuatelier.com/app/uploads/2025/08/PIASU-CR-2.jpg',0,'attachment','image/jpeg',0), -(1381,1,'2025-08-20 10:53:27','2025-08-20 08:53:27','','Fuyou necklace','','inherit','closed','closed','','fuyou-c-2','','','2025-08-20 10:53:47','2025-08-20 08:53:47','',274,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-C-2.jpg',0,'attachment','image/jpeg',0), -(1382,1,'2025-08-20 11:00:25','2025-08-20 09:00:25','','Fuyou necklace','','inherit','closed','closed','','fuyou-c-1','','','2025-08-20 11:00:41','2025-08-20 09:00:41','',274,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-C-1-1.jpg',0,'attachment','image/jpeg',0), -(1383,1,'2025-08-22 11:08:49','2025-08-22 09:08:49','','Ikkan necklace','','inherit','closed','closed','','ikkan-c-1','','','2025-08-22 11:09:39','2025-08-22 09:09:39','',263,'https://haikuatelier.com/app/uploads/2024/10/IKKAN-C-1-1.jpg',0,'attachment','image/jpeg',0), -(1384,1,'2025-08-22 11:09:54','2025-08-22 09:09:54','','Ikkan necklace','','inherit','closed','closed','','ikkan-c-2-2','','','2025-08-22 11:10:05','2025-08-22 09:10:05','',263,'https://haikuatelier.com/app/uploads/2024/10/IKKAN-C-2-1.jpg',0,'attachment','image/jpeg',0), -(1385,1,'2025-08-22 11:16:41','2025-08-22 09:16:41','FUYOU: floating leave on water\n\nSolo hoop in sterling silver with a mix of small rings in gold plated silver hanging on it.\n
    \n
  • hoop diameter 13mm
  • \n
  • small rings diameter around 5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled silver and 18k gold plated silver.','Fuyou Hoop','','inherit','closed','closed','','318-autosave-v1','','','2025-08-22 11:16:41','2025-08-22 09:16:41','',318,'https://haikuatelier.com/?p=1385',0,'revision','',0), -(1388,1,'2025-08-22 11:18:18','2025-08-22 09:18:18','','Fuyou solo hoop','','inherit','closed','closed','','fuyou-cr1','','','2025-08-22 11:18:35','2025-08-22 09:18:35','',0,'https://haikuatelier.com/app/uploads/2025/08/FUYOU-CR1.jpg',0,'attachment','image/jpeg',0), -(1389,1,'2025-08-31 09:10:58','2025-08-31 07:10:58','MUGURA: vine\n\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\n
    \n
  • wire thickness 2mm
  • \n
  • total diametre 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Mugura Hoops gold plated','','inherit','closed','closed','','398-autosave-v1','','','2025-08-31 09:10:58','2025-08-31 07:10:58','',398,'https://haikuatelier.com/?p=1389',0,'revision','',0), -(1391,1,'2025-08-31 09:18:07','2025-08-31 07:18:07','','Mugura minimalist hoops gold plated','','inherit','closed','closed','','mugura-cr2-g','','','2025-08-31 09:18:44','2025-08-31 07:18:44','',0,'https://haikuatelier.com/app/uploads/2025/08/MUGURA-CR2-g.jpg',0,'attachment','image/jpeg',0), -(1393,1,'2025-08-31 09:20:52','2025-08-31 07:20:52','','Mugura minimalist silver hoops','','inherit','closed','closed','','mugura-cr2-s','','','2025-08-31 09:21:19','2025-08-31 07:21:19','',0,'https://haikuatelier.com/app/uploads/2025/08/MUGURA-CR2-s.jpg',0,'attachment','image/jpeg',0), -(1395,1,'2025-08-31 09:41:55','2025-08-31 07:41:55','','Boroboro asymetrical silver earrings','','inherit','closed','closed','','boroboro-bo2-s','','','2025-08-31 09:42:35','2025-08-31 07:42:35','',0,'https://haikuatelier.com/app/uploads/2025/08/BOROBORO-BO2-s.jpg',0,'attachment','image/jpeg',0), -(1396,1,'2025-08-31 09:44:53','2025-08-31 07:44:53','','Boroboro asymetrical gold plated earrings','','inherit','closed','closed','','boroboro-bo2-g','','','2025-08-31 09:45:28','2025-08-31 07:45:28','',0,'https://haikuatelier.com/app/uploads/2025/08/BOROBORO-BO2-g.jpg',0,'attachment','image/jpeg',0), -(1397,1,'2025-09-02 09:02:42','2025-09-02 07:02:42','','Ikkan necklace silver and gold','','inherit','closed','closed','','dscf7880','','','2025-09-02 09:03:42','2025-09-02 07:03:42','',263,'https://haikuatelier.com/app/uploads/2024/10/DSCF7880.jpg',0,'attachment','image/jpeg',0), -(1398,1,'2025-09-02 09:03:19','2025-09-02 07:03:19','','Ikkan necklace silver and gold','','inherit','closed','closed','','dscf7869','','','2025-09-02 09:03:36','2025-09-02 07:03:36','',263,'https://haikuatelier.com/app/uploads/2024/10/DSCF7869.jpg',0,'attachment','image/jpeg',0), -(1399,1,'2025-09-02 09:04:17','2025-09-02 07:04:17','','Ikkan necklace silver and gold','','inherit','closed','closed','','dscf7860','','','2025-09-02 09:04:32','2025-09-02 07:04:32','',263,'https://haikuatelier.com/app/uploads/2024/10/DSCF7860.jpg',0,'attachment','image/jpeg',0), -(1400,1,'2025-09-02 09:05:24','2025-09-02 07:05:24','IKKAN: link \r\n\r\nNecklace with a mix of different links combining sterling silver and gold plated silver.\r\n
    \r\n
  • length 50 to 54cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Ikkan Necklace','','inherit','closed','closed','','263-autosave-v1','','','2025-09-02 09:05:24','2025-09-02 07:05:24','',263,'https://haikuatelier.com/?p=1400',0,'revision','',0), -(1401,1,'2025-09-06 10:07:55','2025-09-06 08:07:55','Uteki : raindrop\r\n\r\nMedium hoops with a droplet shape intertwined around a thick silver wire. In gold plated silver.\r\n\r\n• diametre 3cm\r\n• wire thickness 25mm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Hoops gold plated','','publish','closed','closed','','uteki-hoops-gold-plated','','','2025-11-26 09:37:50','2025-11-26 08:37:50','',0,'https://haikuatelier.com/?post_type=product&p=1401',46,'product','',0), -(1402,1,'2025-09-06 10:10:30','2025-09-06 08:10:30','','Uteki gold plated hoops','','inherit','closed','closed','','uteki-cr-g','','','2025-09-06 10:11:13','2025-09-06 08:11:13','',1401,'https://haikuatelier.com/app/uploads/2025/09/UTEKI-CR-g.jpg',0,'attachment','image/jpeg',0), -(1403,1,'2025-09-06 14:17:24','2025-09-06 12:17:24','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8538','','','2025-09-06 14:18:00','2025-09-06 12:18:00','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8538.jpg',0,'attachment','image/jpeg',0), -(1404,1,'2025-09-06 14:17:29','2025-09-06 12:17:29','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8521','','','2025-09-06 14:18:03','2025-09-06 12:18:03','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8521.jpg',0,'attachment','image/jpeg',0), -(1405,1,'2025-09-06 14:17:34','2025-09-06 12:17:34','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8493','','','2025-09-06 14:18:05','2025-09-06 12:18:05','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8493.jpg',0,'attachment','image/jpeg',0), -(1406,1,'2025-09-06 15:00:33','2025-09-06 13:00:33','Uteki : raindrop\r\n\r\nMedium hoops with a droplet shape intertwined around a thick silver wire. In sterling silver.\r\n\r\n• diametre 3cm\r\n• wire thickness 25mm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Hoops silver','','publish','closed','closed','','uteki-hoops-silver','','','2025-11-26 09:37:30','2025-11-26 08:37:30','',0,'https://haikuatelier.com/?post_type=product&p=1406',47,'product','',0), -(1407,1,'2025-09-06 15:00:58','2025-09-06 13:00:58','','Uteki silver hoops','','inherit','closed','closed','','uteki-cr-s','','','2025-09-06 15:01:20','2025-09-06 13:01:20','',1406,'https://haikuatelier.com/app/uploads/2025/09/UTEKI-CR-s.jpg',0,'attachment','image/jpeg',0), -(1409,1,'2025-09-06 15:01:45','2025-09-06 13:01:45','','Uteki silver hoops','','inherit','closed','closed','','dscf8461','','','2025-09-06 15:02:10','2025-09-06 13:02:10','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8461.jpg',0,'attachment','image/jpeg',0), -(1410,1,'2025-09-06 15:01:45','2025-09-06 13:01:45','','Uteki silver hoops','','inherit','closed','closed','','dscf8462','','','2025-09-06 15:02:13','2025-09-06 13:02:13','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8462.jpg',0,'attachment','image/jpeg',0), -(1411,1,'2025-09-08 11:11:57','2025-09-08 09:11:57','','Uteki silver hoops','','inherit','closed','closed','','dscf8447','','','2025-09-08 11:12:21','2025-09-08 09:12:21','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8447.jpg',0,'attachment','image/jpeg',0), -(1412,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring silver & tiger\'s eye','','publish','closed','closed','','boroboro-bead-ring-silver-copy','','','2025-09-08 11:25:24','2025-09-08 09:25:24','',0,'https://haikuatelier.com/?post_type=product&p=1412',5,'product','',0), -(1413,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-133','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1413',1,'product_variation','',0), -(1414,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-134','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1414',2,'product_variation','',0), -(1415,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-135','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1415',3,'product_variation','',0), -(1416,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-136','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1416',4,'product_variation','',0), -(1417,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-137','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1417',5,'product_variation','',0), -(1418,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-138','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1418',6,'product_variation','',0), -(1419,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-139','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1419',7,'product_variation','',0), -(1420,1,'2025-09-08 11:12:53','2025-09-08 09:12:53','','BoroBoro Bead Ring silver & tiger\'s eye - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-66','','','2025-09-08 11:12:53','2025-09-08 09:12:53','',1412,'https://haikuatelier.com/?post_type=product_variation&p=1420',8,'product_variation','',0), -(1421,1,'2025-09-08 11:16:54','2025-09-08 09:16:54','BOROBORO: the sound of something crumbling\n\nMinimalist sterling silver ring composed of a thick round band and a movable bead in tiger\'s eye.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','BoroBoro Bead Ring silver & tiger\'s eye','','inherit','closed','closed','','1412-autosave-v1','','','2025-09-08 11:16:54','2025-09-08 09:16:54','',1412,'https://haikuatelier.com/?p=1421',0,'revision','',0), -(1422,1,'2025-09-08 11:26:44','2025-09-08 09:26:44','','BoroBoro bead ring silver and honey jade','','inherit','closed','closed','','img_1504-2','','','2025-09-08 11:28:28','2025-09-08 09:28:28','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1504-1.jpg',0,'attachment','image/jpeg',0), -(1443,1,'2025-09-17 20:11:56','2025-09-17 18:11:56','','','','draft','closed','closed','','','','','2025-09-17 20:11:56','2025-09-17 18:11:56','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1443',0,'shop_order_placehold','',2), -(1444,1,'2025-09-20 12:44:44','2025-09-20 10:44:44','Pishi Pishi : the sound of something splashing\r\n\r\nDangling earrings composed of tied ball chains.\r\n\r\n• total length 6,5cm\r\n• ball chain diameter 3mm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Pishi Pishi Earrings','','publish','closed','closed','','pishi-pishi-earrings','','','2025-10-29 09:38:44','2025-10-29 08:38:44','',0,'https://haikuatelier.com/?post_type=product&p=1444',39,'product','',0), -(1445,1,'2025-09-20 12:50:00','2025-09-20 10:50:00','','Pishi earrings in silver','','inherit','closed','closed','','pishi-bo','','','2025-09-20 12:50:39','2025-09-20 10:50:39','',1444,'https://haikuatelier.com/app/uploads/2025/09/PISHI-BO.jpg',0,'attachment','image/jpeg',0), -(1446,1,'2025-09-20 12:51:05','2025-09-20 10:51:05','','Pishi earrings in silver','','inherit','closed','closed','','dscf8198','','','2025-09-20 12:51:18','2025-09-20 10:51:18','',1444,'https://haikuatelier.com/app/uploads/2025/09/DSCF8198.jpg',0,'attachment','image/jpeg',0), -(1447,1,'2025-09-20 12:52:02','2025-09-20 10:52:02','','Pishi earrings in silver','','inherit','closed','closed','','dscf8226','','','2025-09-20 12:54:49','2025-09-20 10:54:49','',1444,'https://haikuatelier.com/app/uploads/2025/09/DSCF8226.jpg',0,'attachment','image/jpeg',0), -(1448,1,'2025-09-20 12:54:50','2025-09-20 10:54:50','','Pishi earrings in silver','','inherit','closed','closed','','dscf8277','','','2025-09-20 12:55:07','2025-09-20 10:55:07','',1444,'https://haikuatelier.com/app/uploads/2025/09/DSCF8277.jpg',0,'attachment','image/jpeg',0), -(1449,1,'2025-09-20 12:57:48','2025-09-20 10:57:48','','Pishi Pishi Earrings - all','Side: all','publish','closed','closed','','pishi-pishi-earrings-all','','','2025-09-20 12:58:54','2025-09-20 10:58:54','',1444,'https://haikuatelier.com/?post_type=product_variation&p=1449',1,'product_variation','',0), -(1450,1,'2025-09-20 12:57:48','2025-09-20 10:57:48','','Pishi Pishi Earrings - left side','Side: left side','publish','closed','closed','','pishi-pishi-earrings-left-side','','','2025-09-20 12:58:54','2025-09-20 10:58:54','',1444,'https://haikuatelier.com/?post_type=product_variation&p=1450',2,'product_variation','',0), -(1451,1,'2025-09-20 12:57:48','2025-09-20 10:57:48','','Pishi Pishi Earrings - right side','Side: right side','publish','closed','closed','','pishi-pishi-earrings-right-side','','','2025-09-20 12:58:54','2025-09-20 10:58:54','',1444,'https://haikuatelier.com/?post_type=product_variation&p=1451',3,'product_variation','',0), -(1452,1,'2025-09-23 10:40:41','2025-09-23 08:40:41','','Uteki necklace silver','','inherit','closed','closed','','dscf8669','','','2025-09-23 10:41:09','2025-09-23 08:41:09','',982,'https://haikuatelier.com/app/uploads/2025/06/DSCF8669.jpg',0,'attachment','image/jpeg',0), -(1454,1,'2025-09-24 14:41:42','2025-09-24 12:41:42','','BoroBoro asymmetrical earrings silver','','inherit','closed','closed','','dscf8686','','','2025-09-24 14:43:10','2025-09-24 12:43:10','',183,'https://haikuatelier.com/app/uploads/2024/10/DSCF8686.jpg',0,'attachment','image/jpeg',0), -(1455,1,'2025-09-24 14:44:05','2025-09-24 12:44:05','','BoroBoro asymmetrical earrings silver','','inherit','closed','closed','','dscf8674','','','2025-09-24 14:44:34','2025-09-24 12:44:34','',183,'https://haikuatelier.com/app/uploads/2024/10/DSCF8674.jpg',0,'attachment','image/jpeg',0), -(1456,1,'2025-09-24 15:09:11','2025-09-24 13:09:11','','BoroBoro asymmetrical earrings gold plated','','inherit','closed','closed','','dscf8693','','','2025-09-24 15:09:40','2025-09-24 13:09:40','',213,'https://haikuatelier.com/app/uploads/2024/10/DSCF8693.jpg',0,'attachment','image/jpeg',0), -(1457,1,'2025-09-24 15:09:50','2025-09-24 13:09:50','','DSBoroBoro asymmetrical earrings gold platedCF8676','','inherit','closed','closed','','dscf8676','','','2025-09-24 15:10:06','2025-09-24 13:10:06','',213,'https://haikuatelier.com/app/uploads/2024/10/DSCF8676.jpg',0,'attachment','image/jpeg',0), -(1467,1,'2025-09-27 15:52:58','2025-09-27 13:52:58','PIASU : piercing\r\n\r\nWide ring open on top with four silver balls and a mother of pearl detail.\r\n
    \r\n
  • silver balls diameter 8mm
  • \r\n
  • height 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Piasu Ring','','publish','closed','closed','','piasu-ring','','','2025-11-03 10:26:24','2025-11-03 09:26:24','',0,'https://haikuatelier.com/?post_type=product&p=1467',38,'product','',0), -(1468,1,'2025-09-27 15:52:58','2025-09-27 13:52:58','','Piasu Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-147','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1468',1,'product_variation','',0), -(1469,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-148','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1469',2,'product_variation','',0), -(1470,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-149','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1470',3,'product_variation','',0), -(1471,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-150','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1471',4,'product_variation','',0), -(1472,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-151','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1472',5,'product_variation','',0), -(1473,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-152','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1473',6,'product_variation','',0), -(1474,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-153','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1474',7,'product_variation','',0), -(1475,1,'2025-09-27 15:52:59','2025-09-27 13:52:59','','Piasu Ring - 64','Size: 64','publish','closed','closed','','piasu-ring-65','','','2025-09-27 15:59:42','2025-09-27 13:59:42','',1467,'https://haikuatelier.com/?post_type=product_variation&p=1475',8,'product_variation','',0), -(1476,1,'2025-09-27 15:55:19','2025-09-27 13:55:19','','Piasu ring with silver balls','','inherit','closed','closed','','piasu-b','','','2025-09-27 15:57:46','2025-09-27 13:57:46','',1467,'https://haikuatelier.com/app/uploads/2025/09/PIASU-B.jpg',0,'attachment','image/jpeg',0), -(1477,1,'2025-09-27 15:57:01','2025-09-27 13:57:01','','Piasu ring with silver balls','','inherit','closed','closed','','dscf7789','','','2025-09-27 15:57:43','2025-09-27 13:57:43','',1467,'https://haikuatelier.com/app/uploads/2025/09/DSCF7789.jpg',0,'attachment','image/jpeg',0), -(1478,1,'2025-09-27 15:57:25','2025-09-27 13:57:25','','Piasu ring with silver balls','','inherit','closed','closed','','dscf7842','','','2025-09-27 15:57:39','2025-09-27 13:57:39','',1467,'https://haikuatelier.com/app/uploads/2025/09/DSCF7842.jpg',0,'attachment','image/jpeg',0), -(1479,1,'2025-09-27 15:57:55','2025-09-27 13:57:55','','Piasu ring with silver balls','','inherit','closed','closed','','dscf7809','','','2025-09-27 15:58:13','2025-09-27 13:58:13','',1467,'https://haikuatelier.com/app/uploads/2025/09/DSCF7809.jpg',0,'attachment','image/jpeg',0), -(1480,1,'2025-10-02 06:39:01','2025-10-02 04:39:01','','','','draft','closed','closed','','','','','2025-10-02 06:39:01','2025-10-02 04:39:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1480',0,'shop_order_placehold','',2), -(1481,1,'2025-10-06 14:41:49','2025-10-06 12:41:49','PIASU: piercing\n\nLarge earrings covering the lobe with three hoops hanging to it, with a small gold plated bead on each side.\n
    \n
  • height 3cm
  • \n
  • width 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Earrings','','inherit','closed','closed','','202-autosave-v1','','','2025-10-06 14:41:49','2025-10-06 12:41:49','',202,'https://haikuatelier.com/?p=1481',0,'revision','',0), -(1482,1,'2025-10-06 14:42:44','2025-10-06 12:42:44','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','dscf8158','','','2025-10-06 14:43:37','2025-10-06 12:43:37','',202,'https://haikuatelier.com/app/uploads/2024/10/DSCF8158.jpg',0,'attachment','image/jpeg',0), -(1483,1,'2025-10-06 14:43:56','2025-10-06 12:43:56','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','dscf8069','','','2025-10-06 14:44:05','2025-10-06 12:44:05','',202,'https://haikuatelier.com/app/uploads/2024/10/DSCF8069.jpg',0,'attachment','image/jpeg',0), -(1484,1,'2025-10-06 14:44:27','2025-10-06 12:44:27','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','dscf8026','','','2025-10-06 14:44:50','2025-10-06 12:44:50','',202,'https://haikuatelier.com/app/uploads/2024/10/DSCF8026.jpg',0,'attachment','image/jpeg',0), -(1485,1,'2025-10-06 14:45:25','2025-10-06 12:45:25','','Piasu earrings in silver and gold plated details','','inherit','closed','closed','','piasu-bo2','','','2025-10-06 14:45:38','2025-10-06 12:45:38','',202,'https://haikuatelier.com/app/uploads/2024/10/PIASU-BO2.jpg',0,'attachment','image/jpeg',0), -(1486,1,'2025-10-10 17:55:22','2025-10-10 15:55:22','','','','draft','closed','closed','','','','','2025-10-10 17:55:22','2025-10-10 15:55:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1486',0,'shop_order_placehold','',2), -(1487,1,'2025-10-11 17:06:39','2025-10-11 15:06:39','','','','draft','closed','closed','','','','','2025-10-11 17:06:39','2025-10-11 15:06:39','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1487',0,'shop_order_placehold','',2), -(1488,1,'2025-10-12 16:50:06','2025-10-12 14:50:06','','','','draft','closed','closed','','','','','2025-10-12 16:50:06','2025-10-12 14:50:06','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1488',0,'shop_order_placehold','',2), -(1489,1,'2025-10-12 23:03:18','2025-10-12 21:03:18','','','','draft','closed','closed','','','','','2025-10-12 23:03:18','2025-10-12 21:03:18','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1489',0,'shop_order_placehold','',2), -(1490,1,'2025-10-18 15:34:26','2025-10-18 13:34:26','','','','draft','closed','closed','','','','','2025-10-18 15:34:26','2025-10-18 13:34:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1490',0,'shop_order_placehold','',2), -(1491,1,'2025-10-29 10:26:12','2025-10-29 09:26:12','Kime: grain, texture, feeling to touch\r\n\r\nSmall gold plated solo hoop with a marine link element in sterling silver.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • total height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 18K gold plated silver.','Kime Solo Hoop','','publish','closed','closed','','kime-solo-hoop','','','2025-11-10 17:33:04','2025-11-10 16:33:04','',0,'https://haikuatelier.com/?post_type=product&p=1491',28,'product','',0), -(1492,1,'2025-10-29 10:20:46','2025-10-29 09:20:46','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','ikkan-cr1','','','2025-10-29 10:21:34','2025-10-29 09:21:34','',1491,'https://haikuatelier.com/app/uploads/2025/10/IKKAN-CR1.jpg',0,'attachment','image/jpeg',0), -(1493,1,'2025-10-29 10:24:32','2025-10-29 09:24:32','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','dscf7652','','','2025-10-29 10:24:46','2025-10-29 09:24:46','',1491,'https://haikuatelier.com/app/uploads/2025/10/DSCF7652.jpg',0,'attachment','image/jpeg',0), -(1494,1,'2025-10-29 10:24:54','2025-10-29 09:24:54','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','dscf7675','','','2025-10-29 10:25:04','2025-10-29 09:25:04','',1491,'https://haikuatelier.com/app/uploads/2025/10/DSCF7675.jpg',0,'attachment','image/jpeg',0), -(1495,1,'2025-10-29 10:25:18','2025-10-29 09:25:18','','Kime solo hoop mixing gold and silver','','inherit','closed','closed','','dscf7638','','','2025-10-29 10:25:28','2025-10-29 09:25:28','',1491,'https://haikuatelier.com/app/uploads/2025/10/DSCF7638.jpg',0,'attachment','image/jpeg',0), -(1496,1,'2025-11-02 20:39:02','2025-11-02 19:39:02','','','','draft','closed','closed','','','','','2025-11-02 20:39:02','2025-11-02 19:39:02','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1496',0,'shop_order_placehold','',2), -(1497,1,'2025-11-03 09:53:26','0000-00-00 00:00:00','','DESIGNERE','','draft','closed','closed','','','','','2025-11-03 09:53:26','2025-11-03 08:53:26','',0,'https://haikuatelier.com/?post_type=shop_coupon&p=1497',0,'shop_coupon','',0), -(1498,1,'2025-11-03 22:05:37','2025-11-03 21:05:37','','','','draft','closed','closed','','','','','2025-11-03 22:05:37','2025-11-03 21:05:37','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1498',0,'shop_order_placehold','',2), -(1499,1,'2025-11-04 16:34:44','2025-11-04 15:34:44','','HAIKU-sizechart','','inherit','closed','closed','','haiku-sizechart','','','2025-11-04 16:34:44','2025-11-04 15:34:44','',0,'https://haikuatelier.com/app/uploads/2025/11/HAIKU-sizechart.pdf',0,'attachment','application/pdf',0), -(1500,1,'2025-11-04 18:02:34','2025-11-04 17:02:34','','','','draft','closed','closed','','','','','2025-11-04 18:02:34','2025-11-04 17:02:34','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1500',0,'shop_order_placehold','',0), -(1501,1,'2025-11-05 10:41:59','2025-11-05 09:41:59','','','','draft','closed','closed','','','','','2025-11-05 10:41:59','2025-11-05 09:41:59','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1501',0,'shop_order_placehold','',0), -(1503,1,'2025-11-10 13:26:53','2025-11-10 12:26:53','','Uteki silver hoops','','inherit','closed','closed','','dscf8521-2','','','2025-11-10 13:27:25','2025-11-10 12:27:25','',1406,'https://haikuatelier.com/app/uploads/2025/09/DSCF8521-1.jpg',0,'attachment','image/jpeg',0), -(1504,1,'2025-11-10 13:29:13','2025-11-10 12:29:13','','Uteki gold plated hoops','','inherit','closed','closed','','dscf8490','','','2025-11-10 13:29:52','2025-11-10 12:29:52','',1401,'https://haikuatelier.com/app/uploads/2025/09/DSCF8490.jpg',0,'attachment','image/jpeg',0), -(1505,1,'2025-11-10 14:00:49','2025-11-10 13:00:49','','Uteki silver ring','','inherit','closed','closed','','2025haiku_00079','','','2025-11-10 14:01:25','2025-11-10 13:01:25','',941,'https://haikuatelier.com/app/uploads/2025/06/2025HAIKU_00079.jpg',0,'attachment','image/jpeg',0), -(1506,1,'2025-11-10 14:02:29','2025-11-10 13:02:29','','Uteki silver ring','','inherit','closed','closed','','2025haiku_00050','','','2025-11-10 14:02:56','2025-11-10 13:02:56','',941,'https://haikuatelier.com/app/uploads/2025/06/2025HAIKU_00050.jpg',0,'attachment','image/jpeg',0), -(1507,1,'2025-11-10 14:02:38','2025-11-10 13:02:38','','Uteki silver ring','','inherit','closed','closed','','2025haiku_0006','','','2025-11-10 14:03:00','2025-11-10 13:03:00','',941,'https://haikuatelier.com/app/uploads/2025/06/2025HAIKU_0006.jpg',0,'attachment','image/jpeg',0), -(1508,1,'2025-11-10 14:05:10','2025-11-10 13:05:10','','Uteki gold plated ring','','inherit','closed','closed','','2025haiku_0004','','','2025-11-10 14:05:36','2025-11-10 13:05:36','',953,'https://haikuatelier.com/app/uploads/2025/06/2025HAIKU_0004.jpg',0,'attachment','image/jpeg',0), -(1509,1,'2025-11-10 14:05:49','2025-11-10 13:05:49','','Uteki gold plated ring','','inherit','closed','closed','','2025haiku_00020','','','2025-11-10 14:06:14','2025-11-10 13:06:14','',953,'https://haikuatelier.com/app/uploads/2025/06/2025HAIKU_00020.jpg',0,'attachment','image/jpeg',0), -(1510,1,'2025-11-10 14:05:55','2025-11-10 13:05:55','','Uteki gold plated ring','','inherit','closed','closed','','2025haiku_00013','','','2025-11-10 14:06:16','2025-11-10 13:06:16','',953,'https://haikuatelier.com/app/uploads/2025/06/2025HAIKU_00013.jpg',0,'attachment','image/jpeg',0), -(1511,1,'2025-11-18 09:29:10','2025-11-18 08:29:10','','','','draft','closed','closed','','','','','2025-11-18 09:29:10','2025-11-18 08:29:10','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1511',0,'shop_order_placehold','',2), -(1512,1,'2025-11-18 10:47:45','2025-11-18 09:47:45','PIASU: piercing\r\n\r\nStatement ear cuff made of thick wires and silver beads. In sterling silver\r\n
    \r\n
  • total height 1,5cm
  • \r\n
  • wire width 2,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','Piasu Ear Cuff silver','','publish','closed','closed','','piasu-ear-cuff-silver','','','2025-11-26 09:36:36','2025-11-26 08:36:36','',0,'https://haikuatelier.com/?post_type=product&p=1512',33,'product','',0), -(1513,1,'2025-11-18 11:20:58','2025-11-18 10:20:58','','Piasu ear cuff in sterling silver','','inherit','closed','closed','','piasu-ec-s','','','2025-11-18 11:22:14','2025-11-18 10:22:14','',0,'https://haikuatelier.com/app/uploads/2025/11/PIASU-EC-s.jpg',0,'attachment','image/jpeg',0), -(1514,1,'2025-11-18 11:23:11','2025-11-18 10:23:11','','Piasu ear cuff in sterling silver','','inherit','closed','closed','','dscf7654','','','2025-11-18 11:23:26','2025-11-18 10:23:26','',1512,'https://haikuatelier.com/app/uploads/2025/11/DSCF7654.jpg',0,'attachment','image/jpeg',0), -(1515,1,'2025-11-18 11:23:34','2025-11-18 10:23:34','','Piasu ear cuff in sterling silver','','inherit','closed','closed','','dscf7673','','','2025-11-18 11:23:46','2025-11-18 10:23:46','',1512,'https://haikuatelier.com/app/uploads/2025/11/DSCF7673.jpg',0,'attachment','image/jpeg',0), -(1516,1,'2025-11-19 08:01:23','2025-11-19 07:01:23','PIASU: piercing\r\n\r\nStatement ear cuff made of thick wires and silver beads. In gold plated silver\r\n
    \r\n
  • total height 1,5cm
  • \r\n
  • wire width 2,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','Piasu Ear Cuff gold plated','','publish','closed','closed','','piasu-ear-cuff-gold-plated','','','2025-11-26 09:36:56','2025-11-26 08:36:56','',0,'https://haikuatelier.com/?post_type=product&p=1516',32,'product','',0), -(1517,1,'2025-11-19 08:02:08','2025-11-19 07:02:08','','Piasu ear cuff in gold plated silver','','inherit','closed','closed','','piasu-ec-g','','','2025-11-19 08:02:43','2025-11-19 07:02:43','',1516,'https://haikuatelier.com/app/uploads/2025/11/PIASU-EC-g.jpg',0,'attachment','image/jpeg',0), -(1518,1,'2025-11-19 08:03:13','2025-11-19 07:03:13','','Piasu ear cuff in gold plated silver','','inherit','closed','closed','','2025haiku_00010','','','2025-11-19 08:03:45','2025-11-19 07:03:45','',1516,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00010.jpg',0,'attachment','image/jpeg',0), -(1519,1,'2025-11-19 08:03:24','2025-11-19 07:03:24','','Piasu ear cuff in gold plated silver','','inherit','closed','closed','','2025haiku_00029','','','2025-11-19 08:03:48','2025-11-19 07:03:48','',1516,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00029.jpg',0,'attachment','image/jpeg',0), -(1520,1,'2025-11-19 08:07:15','2025-11-19 07:07:15','PIASU: piercing\r\n\r\nPendant earrings with two different lengths. Maxi version of a stud piercing to put on your earlobe. In sterling silver.\r\n
    \r\n
  • height 4,5cm & 3cm
  • \r\n
  • wire width 2,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Pending Earrings silver','','publish','closed','closed','','piasu-pending-earrings-silver','','','2025-11-26 10:04:25','2025-11-26 09:04:25','',0,'https://haikuatelier.com/?post_type=product&p=1520',37,'product','',0), -(1524,1,'2025-11-19 08:14:47','2025-11-19 07:14:47','','Piasu pending earrings in gold plated silver','','inherit','closed','closed','','piasu-bo1-g','','','2025-11-19 08:20:11','2025-11-19 07:20:11','',1520,'https://haikuatelier.com/app/uploads/2025/11/PIASU-BO1-g.jpg',0,'attachment','image/jpeg',0), -(1525,1,'2025-11-19 10:57:46','2025-11-19 09:57:46','','Piasu pending earrings in silver','','inherit','closed','closed','','piasu-bo1-s','','','2025-11-19 10:58:28','2025-11-19 09:58:28','',1520,'https://haikuatelier.com/app/uploads/2025/11/PIASU-BO1-s.jpg',0,'attachment','image/jpeg',0), -(1526,1,'2025-11-19 11:07:28','2025-11-19 10:07:28','','Piasu pending earrings in silver','','inherit','closed','closed','','2025haiku_00032','','','2025-11-19 11:07:50','2025-11-19 10:07:50','',1520,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00032.jpg',0,'attachment','image/jpeg',0), -(1527,1,'2025-11-19 11:07:58','2025-11-19 10:07:58','','Piasu pending earrings in silver','','inherit','closed','closed','','2025haiku_00057','','','2025-11-19 11:08:14','2025-11-19 10:08:14','',1520,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00057.jpg',0,'attachment','image/jpeg',0), -(1528,1,'2025-11-20 15:49:47','2025-11-20 14:49:47','','','','draft','closed','closed','','','','','2025-11-20 15:49:47','2025-11-20 14:49:47','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1528',0,'shop_order_placehold','',2), -(1529,1,'2025-11-24 10:50:48','2025-11-24 09:50:48','','','','draft','closed','closed','','','','','2025-11-24 10:50:48','2025-11-24 09:50:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1529',0,'shop_order_placehold','',2), -(1530,1,'2025-11-24 18:43:34','2025-11-24 17:43:34','','','','draft','closed','closed','','','','','2025-11-24 18:43:34','2025-11-24 17:43:34','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1530',0,'shop_order_placehold','',2), -(1531,1,'2025-11-26 09:42:15','2025-11-26 08:42:15','TAMANORI: in balance on a ball\r\n\r\nA delicate ear cuff with dangling box chains. In gold plated silver.\r\n
    \r\n
  • total height 4,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','Tamanori Ear Cuff gold plated','','publish','closed','closed','','tamanori-ear-cuff-gold-plated','','','2025-11-26 09:58:59','2025-11-26 08:58:59','',0,'https://haikuatelier.com/?post_type=product&p=1531',42,'product','',0), -(1532,1,'2025-11-26 09:43:54','2025-11-26 08:43:54','','Tamanori dangling ear cuff gold plated','','inherit','closed','closed','','tamanori-ec-g','','','2025-11-26 09:44:43','2025-11-26 08:44:43','',1531,'https://haikuatelier.com/app/uploads/2025/11/TAMANORI-EC-g.jpg',0,'attachment','image/jpeg',0), -(1533,1,'2025-11-26 09:52:13','2025-11-26 08:52:13','','Tamanori dangling ear cuff gold plated','','inherit','closed','closed','','2025haiku_00011','','','2025-11-26 09:52:48','2025-11-26 08:52:48','',1531,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00011.jpg',0,'attachment','image/jpeg',0), -(1534,1,'2025-11-26 09:52:34','2025-11-26 08:52:34','','Tamanori dangling ear cuff gold plated','','inherit','closed','closed','','2025haiku_00019','','','2025-11-26 09:52:51','2025-11-26 08:52:51','',1531,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00019.jpg',0,'attachment','image/jpeg',0), -(1535,1,'2025-11-26 09:54:24','2025-11-26 08:54:24','TAMANORI: in balance on a ball\r\n\r\nA delicate ear cuff with dangling box chains. In sterling silver.\r\n
    \r\n
  • total height 4,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 18K gold plated silver.','Tamanori Ear Cuff silver','','publish','closed','closed','','tamanori-ear-cuff-silver','','','2025-11-26 09:58:38','2025-11-26 08:58:38','',0,'https://haikuatelier.com/?post_type=product&p=1535',43,'product','',0), -(1536,1,'2025-11-26 09:55:11','2025-11-26 08:55:11','','Tamanori dangling ear cuff in sterling silver','','inherit','closed','closed','','tamanori-ec-s','','','2025-11-26 09:55:51','2025-11-26 08:55:51','',1535,'https://haikuatelier.com/app/uploads/2025/11/TAMANORI-EC-s.jpg',0,'attachment','image/jpeg',0), -(1537,1,'2025-11-26 09:56:25','2025-11-26 08:56:25','','Tamanori dangling ear cuff in sterling silver','','inherit','closed','closed','','2025haiku_0001','','','2025-11-26 09:56:39','2025-11-26 08:56:39','',1535,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_0001.jpg',0,'attachment','image/jpeg',0), -(1538,1,'2025-11-26 09:57:14','2025-11-26 08:57:14','','Tamanori dangling ear cuff in sterling silver','','inherit','closed','closed','','2025haiku_00019-2','','','2025-11-26 09:58:12','2025-11-26 08:58:12','',1535,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00019-1.jpg',0,'attachment','image/jpeg',0), -(1539,1,'2025-11-26 10:03:46','2025-11-26 09:03:46','','Piasu pending earrings in silver','','inherit','closed','closed','','2025haiku_00031','','','2025-11-26 10:03:59','2025-11-26 09:03:59','',1520,'https://haikuatelier.com/app/uploads/2025/11/2025HAIKU_00031.jpg',0,'attachment','image/jpeg',0), -(1540,1,'2025-11-30 22:29:07','2025-11-30 21:29:07','','','','draft','closed','closed','','','','','2025-11-30 22:29:07','2025-11-30 21:29:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1540',0,'shop_order_placehold','',1), -(1541,1,'2025-11-30 23:31:12','2025-11-30 22:31:12','HATTARI: bluff\r\n\r\nSmall crossed hoops giving the illusion of having twoo hoops on the earlobe. In sterling silver.\r\n
    \r\n
  • hoops diameter 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Small Hoops silver','','publish','closed','closed','','hattari-small-hoops-silver','','','2025-11-30 23:39:05','2025-11-30 22:39:05','',0,'https://haikuatelier.com/?post_type=product&p=1541',16,'product','',0), -(1545,1,'2025-11-30 23:34:06','2025-11-30 22:34:06','','Harrari small crossed hoops in silver','','inherit','closed','closed','','hattari-cr1-s-2','','','2025-11-30 23:34:41','2025-11-30 22:34:41','',1541,'https://haikuatelier.com/app/uploads/2025/11/HATTARI-CR1-s.jpg',0,'attachment','image/jpeg',0), -(1546,1,'2025-11-30 23:35:58','2025-11-30 22:35:58','','Harrari small crossed hoops in silver','','inherit','closed','closed','','dscf7730','','','2025-11-30 23:36:13','2025-11-30 22:36:13','',1541,'https://haikuatelier.com/app/uploads/2025/11/DSCF7730.jpg',0,'attachment','image/jpeg',0), -(1547,1,'2025-11-30 23:36:40','2025-11-30 22:36:40','','Harrari small crossed hoops in silver','','inherit','closed','closed','','dscf7724','','','2025-11-30 23:36:52','2025-11-30 22:36:52','',1541,'https://haikuatelier.com/app/uploads/2025/11/DSCF7724.jpg',0,'attachment','image/jpeg',0), -(1548,1,'2025-11-30 23:38:07','2025-11-30 22:38:07','','Harrari small crossed hoops in silver','','inherit','closed','closed','','dscf7723','','','2025-11-30 23:38:17','2025-11-30 22:38:17','',1541,'https://haikuatelier.com/app/uploads/2025/11/DSCF7723.jpg',0,'attachment','image/jpeg',0), -(1549,1,'2025-11-30 23:39:16','2025-11-30 22:39:16','HATTARI: bluff\r\n\r\nSmall crossed hoops giving the illusion of having twoo hoops on the earlobe. In gold plated silver.\r\n
    \r\n
  • hoops diameter 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Small Hoops gold plated','','publish','closed','closed','','hattari-small-hoops-gold-plated','','','2025-11-30 23:46:01','2025-11-30 22:46:01','',0,'https://haikuatelier.com/?post_type=product&p=1549',15,'product','',0), -(1551,1,'2025-11-30 23:40:04','2025-11-30 22:40:04','','Harrari small crossed hoops in gold plated','','inherit','closed','closed','','hattari-cr1-g','','','2025-11-30 23:40:26','2025-11-30 22:40:26','',1549,'https://haikuatelier.com/app/uploads/2025/11/HATTARI-CR1-g.jpg',0,'attachment','image/jpeg',0), -(1552,1,'2025-11-30 23:42:28','2025-11-30 22:42:28','','Harrari small crossed hoops in gold plated','','inherit','closed','closed','','dscf8607','','','2025-11-30 23:42:48','2025-11-30 22:42:48','',1549,'https://haikuatelier.com/app/uploads/2025/11/DSCF8607.jpg',0,'attachment','image/jpeg',0), -(1553,1,'2025-11-30 23:43:04','2025-11-30 22:43:04','','Harrari small crossed hoops in gold plated','','inherit','closed','closed','','dscf8596','','','2025-11-30 23:43:13','2025-11-30 22:43:13','',1549,'https://haikuatelier.com/app/uploads/2025/11/DSCF8596.jpg',0,'attachment','image/jpeg',0), -(1554,1,'2025-11-30 23:43:28','2025-11-30 22:43:28','','Harrari small crossed hoops in gold plated','','inherit','closed','closed','','dscf8561','','','2025-11-30 23:43:37','2025-11-30 22:43:37','',1549,'https://haikuatelier.com/app/uploads/2025/11/DSCF8561.jpg',0,'attachment','image/jpeg',0), -(1555,1,'2025-11-30 23:46:57','2025-11-30 22:46:57','HATTARI: bluff\r\n\r\nAn ear cuff composed of intertwined wires. In sterling silver.\r\n
    \r\n
  • hoops diameter 1cm
  • \r\n
  • height 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Ear Cuff silver','','publish','closed','closed','','hattari-ear-cuff-silver','','','2025-11-30 23:52:10','2025-11-30 22:52:10','',0,'https://haikuatelier.com/?post_type=product&p=1555',14,'product','',0), -(1556,1,'2025-11-30 23:49:13','2025-11-30 22:49:13','','Hattari ear cuff in sterling silver','','inherit','closed','closed','','hattari-ec-s','','','2025-11-30 23:49:55','2025-11-30 22:49:55','',1555,'https://haikuatelier.com/app/uploads/2025/11/HATTARI-EC-s.jpg',0,'attachment','image/jpeg',0), -(1557,1,'2025-11-30 23:50:15','2025-11-30 22:50:15','','Hattari ear cuff in sterling silver','','inherit','closed','closed','','dscf7711','','','2025-11-30 23:50:27','2025-11-30 22:50:27','',1555,'https://haikuatelier.com/app/uploads/2025/11/DSCF7711.jpg',0,'attachment','image/jpeg',0), -(1558,1,'2025-11-30 23:50:46','2025-11-30 22:50:46','','Hattari ear cuff in sterling silver','','inherit','closed','closed','','dscf7713','','','2025-11-30 23:51:01','2025-11-30 22:51:01','',1555,'https://haikuatelier.com/app/uploads/2025/11/DSCF7713.jpg',0,'attachment','image/jpeg',0), -(1559,1,'2025-11-30 23:51:13','2025-11-30 22:51:13','','Hattari ear cuff in sterling silver','','inherit','closed','closed','','dscf7727','','','2025-11-30 23:51:27','2025-11-30 22:51:27','',1555,'https://haikuatelier.com/app/uploads/2025/11/DSCF7727.jpg',0,'attachment','image/jpeg',0), -(1560,1,'2025-11-30 23:52:17','2025-11-30 22:52:17','HATTARI: bluff\r\n\r\nAn ear cuff composed of intertwined wires. In gold plated silver.\r\n
    \r\n
  • hoops diameter 1cm
  • \r\n
  • height 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Ear Cuff gold plated','','publish','closed','closed','','hattari-ear-cuff-gold-plated','','','2025-11-30 23:55:06','2025-11-30 22:55:06','',0,'https://haikuatelier.com/?post_type=product&p=1560',13,'product','',0), -(1561,1,'2025-11-30 23:52:41','2025-11-30 22:52:41','','Hattari ear cuff in gold plated silver','','inherit','closed','closed','','hattari-ec-g','','','2025-11-30 23:53:09','2025-11-30 22:53:09','',1560,'https://haikuatelier.com/app/uploads/2025/11/HATTARI-EC-g.jpg',0,'attachment','image/jpeg',0), -(1562,1,'2025-11-30 23:53:46','2025-11-30 22:53:46','','Hattari ear cuff in gold plated silver','','inherit','closed','closed','','dscf8415','','','2025-11-30 23:53:58','2025-11-30 22:53:58','',1560,'https://haikuatelier.com/app/uploads/2025/11/DSCF8415.jpg',0,'attachment','image/jpeg',0), -(1563,1,'2025-11-30 23:54:04','2025-11-30 22:54:04','','Hattari ear cuff in gold plated silver','','inherit','closed','closed','','dscf8503','','','2025-11-30 23:54:14','2025-11-30 22:54:14','',1560,'https://haikuatelier.com/app/uploads/2025/11/DSCF8503.jpg',0,'attachment','image/jpeg',0), -(1564,1,'2025-11-30 23:54:28','2025-11-30 22:54:28','','Hattari ear cuff in gold plated silver','','inherit','closed','closed','','dscf8502','','','2025-11-30 23:54:42','2025-11-30 22:54:42','',1560,'https://haikuatelier.com/app/uploads/2025/11/DSCF8502.jpg',0,'attachment','image/jpeg',0), -(1565,1,'2025-12-01 00:06:41','2025-11-30 23:06:41','','Fuyou necklace in sterling silver','','inherit','closed','closed','','2025haiku_00063','','','2025-12-01 00:07:09','2025-11-30 23:07:09','',274,'https://haikuatelier.com/app/uploads/2024/10/2025HAIKU_00063.jpg',0,'attachment','image/jpeg',0), -(1566,1,'2025-12-01 00:07:24','2025-11-30 23:07:24','','Fuyou necklace in sterling silver','','inherit','closed','closed','','2025haiku_00049','','','2025-12-01 00:07:45','2025-11-30 23:07:45','',274,'https://haikuatelier.com/app/uploads/2024/10/2025HAIKU_00049.jpg',0,'attachment','image/jpeg',0), -(1567,1,'2025-12-01 00:07:58','2025-11-30 23:07:58','','Fuyou necklace in sterling silver','','inherit','closed','closed','','2025haiku_00080','','','2025-12-01 00:08:15','2025-11-30 23:08:15','',274,'https://haikuatelier.com/app/uploads/2024/10/2025HAIKU_00080.jpg',0,'attachment','image/jpeg',0), -(1568,1,'2025-12-01 00:17:43','2025-11-30 23:17:43','','Fuyou long earrings silver','','inherit','closed','closed','','2025haiku_00024','','','2025-12-01 00:18:10','2025-11-30 23:18:10','',766,'https://haikuatelier.com/app/uploads/2024/11/2025HAIKU_00024.jpg',0,'attachment','image/jpeg',0), -(1569,1,'2025-12-01 00:18:34','2025-11-30 23:18:34','','Fuyou long earrings silver','','inherit','closed','closed','','2025haiku_00022','','','2025-12-01 00:18:45','2025-11-30 23:18:45','',766,'https://haikuatelier.com/app/uploads/2024/11/2025HAIKU_00022.jpg',0,'attachment','image/jpeg',0), -(1570,1,'2025-12-01 00:18:53','2025-11-30 23:18:53','','Fuyou long earrings silver','','inherit','closed','closed','','2025haiku_00035','','','2025-12-01 00:19:08','2025-11-30 23:19:08','',766,'https://haikuatelier.com/app/uploads/2024/11/2025HAIKU_00035.jpg',0,'attachment','image/jpeg',0), -(1571,1,'2025-12-02 10:20:29','2025-12-02 09:20:29','','','','draft','closed','closed','','','','','2025-12-02 10:20:29','2025-12-02 09:20:29','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1571',0,'shop_order_placehold','',1), -(1572,1,'2025-12-02 21:46:36','2025-12-02 20:46:36','','','','draft','closed','closed','','','','','2025-12-02 21:46:36','2025-12-02 20:46:36','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1572',0,'shop_order_placehold','',0), -(1573,1,'2025-12-02 21:47:29','2025-12-02 20:47:29','','','','draft','closed','closed','','','','','2025-12-02 21:47:29','2025-12-02 20:47:29','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1573',0,'shop_order_placehold','',1), -(1574,1,'2025-12-03 10:16:09','0000-00-00 00:00:00','Surprise your loved ones without risking any \"faux pas\" with our gift card. \r\nThis e-gift card is printable at home via a pdf. Simply choose the amount you want to gift and you\'ll receive an email with a unique code usable at checkout on haikuatelier.com.\r\n\r\nFaites plaisir à vos proches sans risquer le \"flop\" avec notre carte cadeau.\r\nCette carte cadeau dématérialisée peut être imprimée chez vous via un PDF. Choisissez le montant à offrir et vous recevrez par mail un code unique à appliquer lors du paiement sur haikuatelier.com.\r\n','Haiku e-Gift Card','','draft','closed','closed','','','','','2025-12-03 10:16:09','2025-12-03 09:16:09','',0,'https://haikuatelier.com/?post_type=product&p=1574',0,'product','',0), -(1575,1,'2025-12-03 08:34:37','2025-12-03 07:34:37','','Gift card','','inherit','closed','closed','','hk-cartekdo-1','','','2025-12-03 08:34:53','2025-12-03 07:34:53','',1574,'https://haikuatelier.com/app/uploads/2025/12/HK-cartekdo-1.jpg',0,'attachment','image/jpeg',0), -(1576,1,'2025-12-03 08:35:27','2025-12-03 07:35:27','','Gift card','','inherit','closed','closed','','hk-cartekdo-2','','','2025-12-03 08:36:26','2025-12-03 07:36:26','',1574,'https://haikuatelier.com/app/uploads/2025/12/HK-cartekdo-2.jpg',0,'attachment','image/jpeg',0), -(1577,1,'2025-12-03 08:36:31','2025-12-03 07:36:31','','HK-cartekdo-3','','inherit','closed','closed','','hk-cartekdo-3','','','2025-12-03 08:36:49','2025-12-03 07:36:49','',1574,'https://haikuatelier.com/app/uploads/2025/12/HK-cartekdo-3.jpg',0,'attachment','image/jpeg',0), -(1585,1,'2025-12-03 09:03:29','2025-12-03 08:03:29','','Haiku e-Gift Card - 100€','Amount: 100€','publish','closed','closed','','haiku-e-gift-card-100e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1585',7,'product_variation','',0), -(1586,1,'2025-12-03 09:03:30','2025-12-03 08:03:30','','Haiku e-Gift Card - 40€','Amount: 40€','publish','closed','closed','','haiku-e-gift-card-40e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1586',1,'product_variation','',0), -(1587,1,'2025-12-03 09:03:30','2025-12-03 08:03:30','','Haiku e-Gift Card - 50€','Amount: 50€','publish','closed','closed','','haiku-e-gift-card-50e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1587',2,'product_variation','',0), -(1588,1,'2025-12-03 09:03:30','2025-12-03 08:03:30','','Haiku e-Gift Card - 60€','Amount: 60€','publish','closed','closed','','haiku-e-gift-card-60e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1588',3,'product_variation','',0), -(1589,1,'2025-12-03 09:03:30','2025-12-03 08:03:30','','Haiku e-Gift Card - 70€','Amount: 70€','publish','closed','closed','','haiku-e-gift-card-70e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1589',4,'product_variation','',0), -(1590,1,'2025-12-03 09:03:30','2025-12-03 08:03:30','','Haiku e-Gift Card - 80€','Amount: 80€','publish','closed','closed','','haiku-e-gift-card-80e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1590',5,'product_variation','',0), -(1591,1,'2025-12-03 09:03:30','2025-12-03 08:03:30','','Haiku e-Gift Card - 90€','Amount: 90€','publish','closed','closed','','haiku-e-gift-card-90e','','','2025-12-03 10:16:08','2025-12-03 09:16:08','',1574,'https://haikuatelier.com/?post_type=product_variation&p=1591',6,'product_variation','',0), -(1592,1,'2025-12-03 09:24:33','2025-12-03 08:24:33','','GIFTcard-print-english','','inherit','closed','closed','','giftcard-print-english','','','2025-12-03 09:24:33','2025-12-03 08:24:33','',1574,'https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-english-7hyvjk.pdf',0,'attachment','application/pdf',0), -(1593,1,'2025-12-03 09:24:57','2025-12-03 08:24:57','','GIFTcard-print-français','','inherit','closed','closed','','giftcard-print-francais','','','2025-12-03 09:24:57','2025-12-03 08:24:57','',1574,'https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/GIFTcard-print-francais-qvkvsf.pdf',0,'attachment','application/pdf',0), -(1594,1,'2025-12-03 10:11:51','2025-12-03 09:11:51','Surprise your loved ones without risking any \"faux pas\" with our gift card. \r\nThis e-gift card is printable at home via a pdf. Simply choose the amount you want to gift and you\'ll receive an email with a unique code usable at checkout on haikuatelier.com.\r\n\r\nFaites plaisir à vos proches sans risquer le \"flop\" avec notre carte cadeau.\r\nCette carte cadeau dématérialisée peut être imprimée chez vous via un PDF. Choisissez le montant à offrir et vous recevrez par mail un code unique à appliquer lors du paiement sur haikuatelier.com.\r\n','Haiku e-Gift Card (Copy)','','trash','closed','closed','','__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',0,'https://haikuatelier.com/?post_type=product&p=1594',0,'product','',0), -(1595,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 40€','Amount: 40€','trash','closed','closed','','haiku-e-gift-card-40e-41__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1595',1,'product_variation','',0), -(1596,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 50€','Amount: 50€','trash','closed','closed','','haiku-e-gift-card-50e-51__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1596',2,'product_variation','',0), -(1597,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 60€','Amount: 60€','trash','closed','closed','','haiku-e-gift-card-60e-61__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1597',3,'product_variation','',0), -(1598,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 70€','Amount: 70€','trash','closed','closed','','haiku-e-gift-card-70e-71__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1598',4,'product_variation','',0), -(1599,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 80€','Amount: 80€','trash','closed','closed','','haiku-e-gift-card-80e-81__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1599',5,'product_variation','',0), -(1600,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 90€','Amount: 90€','trash','closed','closed','','haiku-e-gift-card-90e-91__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1600',6,'product_variation','',0), -(1601,1,'2025-12-03 10:11:52','2025-12-03 09:11:52','','Haiku e-Gift Card (Copy) - 100€','Amount: 100€','trash','closed','closed','','haiku-e-gift-card-100e-101__trashed','','','2025-12-03 10:12:29','2025-12-03 09:12:29','',1594,'https://haikuatelier.com/?post_type=product_variation&p=1601',7,'product_variation','',0); -/*!40000 ALTER TABLE `haikuwp_posts` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_term_relationships` --- - -DROP TABLE IF EXISTS `haikuwp_term_relationships`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_term_relationships` ( - `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_order` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`object_id`,`term_taxonomy_id`), - KEY `term_taxonomy_id` (`term_taxonomy_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_term_relationships` --- - -LOCK TABLES `haikuwp_term_relationships` WRITE; -/*!40000 ALTER TABLE `haikuwp_term_relationships` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_term_relationships` VALUES -(1,1,0), -(1,17,0), -(1,18,0), -(13,16,0), -(13,23,0), -(14,16,0), -(14,24,0), -(15,16,0), -(15,25,0), -(16,16,0), -(16,26,0), -(17,16,0), -(17,27,0), -(18,16,0), -(18,28,0), -(19,16,0), -(19,29,0), -(102,4,0), -(102,31,0), -(102,37,0), -(102,38,0), -(102,39,0), -(102,40,0), -(102,41,0), -(102,42,0), -(102,43,0), -(102,44,0), -(102,51,0), -(113,4,0), -(113,31,0), -(113,37,0), -(113,38,0), -(113,39,0), -(113,40,0), -(113,41,0), -(113,42,0), -(113,43,0), -(113,44,0), -(113,51,0), -(133,4,0), -(133,9,0), -(133,31,0), -(133,37,0), -(133,38,0), -(133,39,0), -(133,40,0), -(133,41,0), -(133,42,0), -(133,43,0), -(133,44,0), -(133,52,0), -(134,9,0), -(135,9,0), -(136,9,0), -(137,9,0), -(138,9,0), -(139,9,0), -(140,9,0), -(168,4,0), -(168,31,0), -(168,48,0), -(168,49,0), -(168,54,0), -(183,4,0), -(183,30,0), -(183,45,0), -(183,55,0), -(183,71,0), -(183,72,0), -(202,4,0), -(202,30,0), -(202,45,0), -(202,56,0), -(202,77,0), -(202,78,0), -(213,4,0), -(213,30,0), -(213,45,0), -(213,55,0), -(213,71,0), -(213,72,0), -(240,4,0), -(240,9,0), -(240,33,0), -(240,51,0), -(240,58,0), -(240,59,0), -(241,9,0), -(242,9,0), -(258,2,0), -(258,33,0), -(258,61,0), -(263,2,0), -(263,32,0), -(263,51,0), -(268,2,0), -(268,32,0), -(268,56,0), -(274,2,0), -(274,32,0), -(274,61,0), -(285,4,0), -(285,30,0), -(285,45,0), -(285,50,0), -(285,77,0), -(285,78,0), -(288,4,0), -(288,30,0), -(288,45,0), -(288,50,0), -(288,77,0), -(288,78,0), -(306,4,0), -(306,30,0), -(306,45,0), -(306,57,0), -(306,62,0), -(306,64,0), -(312,4,0), -(312,30,0), -(312,45,0), -(312,57,0), -(312,62,0), -(312,64,0), -(318,2,0), -(318,30,0), -(318,61,0), -(385,4,0), -(385,32,0), -(385,48,0), -(385,54,0), -(385,68,0), -(385,69,0), -(393,2,0), -(393,30,0), -(393,45,0), -(393,66,0), -(393,67,0), -(398,2,0), -(398,30,0), -(398,45,0), -(398,66,0), -(398,67,0), -(435,2,0), -(435,30,0), -(435,52,0), -(447,2,0), -(447,30,0), -(447,52,0), -(490,4,0), -(490,30,0), -(490,36,0), -(490,45,0), -(490,77,0), -(490,78,0), -(496,2,0), -(496,30,0), -(496,67,0), -(515,2,0), -(515,30,0), -(515,48,0), -(515,55,0), -(515,73,0), -(521,4,0), -(521,30,0), -(521,48,0), -(521,55,0), -(521,79,0), -(532,9,0), -(545,4,0), -(545,30,0), -(545,45,0), -(545,52,0), -(545,66,0), -(554,4,0), -(554,30,0), -(554,45,0), -(554,52,0), -(554,66,0), -(613,4,0), -(613,31,0), -(613,37,0), -(613,38,0), -(613,39,0), -(613,40,0), -(613,41,0), -(613,42,0), -(613,43,0), -(613,44,0), -(613,55,0), -(625,4,0), -(625,31,0), -(625,37,0), -(625,38,0), -(625,39,0), -(625,40,0), -(625,41,0), -(625,42,0), -(625,43,0), -(625,44,0), -(625,48,0), -(625,55,0), -(625,79,0), -(766,2,0), -(766,30,0), -(766,45,0), -(766,61,0), -(766,62,0), -(766,63,0), -(941,4,0), -(941,31,0), -(941,37,0), -(941,38,0), -(941,39,0), -(941,40,0), -(941,41,0), -(941,42,0), -(941,43,0), -(941,44,0), -(941,80,0), -(941,81,0), -(953,4,0), -(953,31,0), -(953,37,0), -(953,38,0), -(953,39,0), -(953,40,0), -(953,41,0), -(953,42,0), -(953,43,0), -(953,44,0), -(953,80,0), -(982,2,0), -(982,32,0), -(982,37,0), -(982,38,0), -(982,39,0), -(982,40,0), -(982,41,0), -(982,42,0), -(982,43,0), -(982,44,0), -(982,80,0), -(994,2,0), -(994,32,0), -(994,37,0), -(994,38,0), -(994,39,0), -(994,40,0), -(994,41,0), -(994,42,0), -(994,43,0), -(994,44,0), -(994,80,0), -(1004,4,0), -(1004,30,0), -(1004,45,0), -(1004,56,0), -(1004,66,0), -(1401,2,0), -(1401,30,0), -(1401,37,0), -(1401,38,0), -(1401,39,0), -(1401,40,0), -(1401,41,0), -(1401,42,0), -(1401,43,0), -(1401,44,0), -(1401,80,0), -(1406,2,0), -(1406,30,0), -(1406,37,0), -(1406,38,0), -(1406,39,0), -(1406,40,0), -(1406,41,0), -(1406,42,0), -(1406,43,0), -(1406,44,0), -(1406,80,0), -(1412,4,0), -(1412,31,0), -(1412,37,0), -(1412,38,0), -(1412,39,0), -(1412,40,0), -(1412,41,0), -(1412,42,0), -(1412,43,0), -(1412,44,0), -(1412,55,0), -(1444,4,0), -(1444,30,0), -(1444,76,0), -(1444,77,0), -(1444,78,0), -(1444,82,0), -(1467,4,0), -(1467,31,0), -(1467,37,0), -(1467,38,0), -(1467,39,0), -(1467,40,0), -(1467,41,0), -(1467,42,0), -(1467,43,0), -(1467,44,0), -(1467,56,0), -(1491,2,0), -(1491,30,0), -(1491,83,0), -(1512,2,0), -(1512,30,0), -(1512,56,0), -(1516,2,0), -(1516,30,0), -(1516,56,0), -(1520,2,0), -(1520,30,0), -(1520,45,0), -(1520,56,0), -(1520,77,0), -(1520,78,0), -(1531,2,0), -(1531,30,0), -(1531,57,0), -(1535,2,0), -(1535,30,0), -(1535,57,0), -(1541,2,0), -(1541,30,0), -(1541,45,0), -(1541,50,0), -(1541,77,0), -(1541,78,0), -(1549,2,0), -(1549,30,0), -(1549,45,0), -(1549,50,0), -(1549,77,0), -(1549,78,0), -(1555,2,0), -(1555,30,0), -(1555,45,0), -(1555,50,0), -(1555,77,0), -(1555,78,0), -(1560,2,0), -(1560,30,0), -(1560,45,0), -(1560,50,0), -(1560,77,0), -(1560,78,0), -(1574,4,0), -(1574,15,0), -(1574,86,0), -(1574,87,0), -(1574,88,0), -(1574,89,0), -(1574,90,0), -(1574,91,0), -(1574,92,0), -(1594,4,0), -(1594,15,0), -(1594,86,0), -(1594,87,0), -(1594,88,0), -(1594,89,0), -(1594,90,0), -(1594,91,0), -(1594,92,0); -/*!40000 ALTER TABLE `haikuwp_term_relationships` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_term_taxonomy` --- - -DROP TABLE IF EXISTS `haikuwp_term_taxonomy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_term_taxonomy` ( - `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `taxonomy` varchar(32) NOT NULL DEFAULT '', - `description` longtext NOT NULL, - `parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_taxonomy_id`), - UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), - KEY `taxonomy` (`taxonomy`) -) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_term_taxonomy` --- - -LOCK TABLES `haikuwp_term_taxonomy` WRITE; -/*!40000 ALTER TABLE `haikuwp_term_taxonomy` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_term_taxonomy` VALUES -(1,1,'category','',0,1), -(2,2,'product_type','',0,25), -(3,3,'product_type','',0,0), -(4,4,'product_type','',0,22), -(5,5,'product_type','',0,0), -(6,6,'product_visibility','',0,0), -(7,7,'product_visibility','',0,0), -(8,8,'product_visibility','',0,0), -(9,9,'product_visibility','',0,3), -(10,10,'product_visibility','',0,0), -(11,11,'product_visibility','',0,0), -(12,12,'product_visibility','',0,0), -(13,13,'product_visibility','',0,0), -(14,14,'product_visibility','',0,0), -(15,15,'product_cat','',0,0), -(16,16,'language','a:3:{s:6:\"locale\";s:5:\"en_GB\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"gb\";}',0,7), -(17,17,'term_language','',0,1), -(21,21,'category','',0,0), -(30,30,'product_cat','',0,30), -(31,31,'product_cat','',0,9), -(32,32,'product_cat','',0,6), -(33,33,'product_cat','',0,2), -(36,36,'collection','',0,1), -(37,37,'pa_size','',0,12), -(38,38,'pa_size','',0,12), -(39,39,'pa_size','',0,12), -(40,40,'pa_size','',0,12), -(41,41,'pa_size','',0,12), -(42,42,'pa_size','',0,12), -(43,43,'pa_size','',0,12), -(44,44,'pa_size','',0,12), -(45,45,'pa_side','',0,18), -(48,48,'pa_stone','',0,3), -(49,49,'pa_stone','',0,1), -(50,50,'collection','',0,6), -(51,51,'collection','',0,4), -(52,52,'collection','',0,4), -(53,53,'collection','',0,0), -(54,54,'collection','',0,2), -(55,55,'collection','',0,5), -(56,56,'collection','',0,6), -(57,57,'collection','',0,4), -(58,58,'pa_size','',0,1), -(59,59,'pa_size','',0,1), -(60,60,'collection','',0,0), -(61,61,'collection','',0,4), -(62,62,'pa_side','',0,3), -(63,63,'pa_side','',0,1), -(64,64,'pa_side','',0,2), -(65,65,'collection','',0,0), -(66,66,'pa_side','',0,4), -(67,67,'collection','',0,3), -(68,68,'pa_stone','',0,1), -(69,69,'pa_stone','',0,1), -(70,70,'pa_stone','',0,0), -(71,71,'pa_side','',0,2), -(72,72,'pa_side','',0,2), -(73,73,'pa_stone','',0,0), -(74,74,'pa_stone','',0,0), -(75,75,'pa_stone','',0,0), -(76,76,'pa_side','',0,1), -(77,77,'pa_side','',0,10), -(78,78,'pa_side','',0,10), -(79,79,'pa_stone','',0,1), -(80,80,'collection','',0,6), -(81,81,'product_tag','',0,1), -(82,82,'collection','',0,1), -(83,83,'collection','',0,1), -(86,86,'pa_giftcard-amount','',0,0), -(87,87,'pa_giftcard-amount','',0,0), -(88,88,'pa_giftcard-amount','',0,0), -(89,89,'pa_giftcard-amount','',0,0), -(90,90,'pa_giftcard-amount','',0,0), -(91,91,'pa_giftcard-amount','',0,0), -(92,92,'pa_giftcard-amount','',0,0); -/*!40000 ALTER TABLE `haikuwp_term_taxonomy` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_termmeta` --- - -DROP TABLE IF EXISTS `haikuwp_termmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_termmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `term_id` (`term_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_termmeta` --- - -LOCK TABLES `haikuwp_termmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_termmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_termmeta` VALUES -(1,16,'_pll_strings_translations','a:2:{i:0;a:2:{i:0;s:5:\"Y-m-d\";i:1;s:5:\"Y-m-d\";}i:1;a:2:{i:0;s:3:\"H:i\";i:1;s:3:\"H:i\";}}'), -(3,15,'display_type',''), -(4,15,'thumbnail_id','0'), -(5,30,'order','1'), -(6,30,'display_type',''), -(7,30,'thumbnail_id','0'), -(8,31,'order','2'), -(9,31,'display_type',''), -(10,31,'thumbnail_id','0'), -(11,32,'order','3'), -(12,32,'display_type',''), -(13,32,'thumbnail_id','0'), -(14,33,'order','4'), -(15,33,'display_type',''), -(16,33,'thumbnail_id','0'), -(20,15,'order','5'), -(21,30,'product_count_product_cat','30'), -(22,31,'product_count_product_cat','9'), -(23,32,'product_count_product_cat','6'), -(24,33,'product_count_product_cat','2'), -(25,15,'product_count_product_cat','0'), -(28,37,'order','0'), -(29,38,'order','0'), -(30,39,'order','0'), -(31,40,'order','0'), -(32,41,'order','0'), -(33,42,'order','0'), -(34,43,'order','0'), -(35,44,'order','0'), -(36,45,'order','0'), -(39,48,'order','0'), -(40,49,'order','0'), -(41,58,'order','0'), -(42,59,'order','0'), -(43,62,'order','0'), -(44,63,'order','0'), -(45,64,'order','0'), -(46,66,'order','0'), -(47,68,'order','0'), -(48,69,'order','0'), -(49,70,'order','0'), -(50,71,'order','0'), -(51,72,'order','0'), -(52,73,'order','0'), -(53,74,'order','0'), -(54,75,'order','0'), -(55,76,'order','0'), -(56,77,'order','0'), -(57,78,'order','0'), -(58,79,'order','0'), -(59,81,'product_count_product_tag','1'), -(62,86,'order','0'), -(63,87,'order','0'), -(64,88,'order','0'), -(65,89,'order','0'), -(66,90,'order','0'), -(67,91,'order','0'), -(68,92,'order','0'); -/*!40000 ALTER TABLE `haikuwp_termmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_terms` --- - -DROP TABLE IF EXISTS `haikuwp_terms`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_terms` ( - `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - `term_group` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_id`), - KEY `slug` (`slug`(191)), - KEY `name` (`name`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_terms` --- - -LOCK TABLES `haikuwp_terms` WRITE; -/*!40000 ALTER TABLE `haikuwp_terms` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_terms` VALUES -(1,'Non classé','non-classe',0), -(2,'simple','simple',0), -(3,'grouped','grouped',0), -(4,'variable','variable',0), -(5,'external','external',0), -(6,'exclude-from-search','exclude-from-search',0), -(7,'exclude-from-catalog','exclude-from-catalog',0), -(8,'featured','featured',0), -(9,'outofstock','outofstock',0), -(10,'rated-1','rated-1',0), -(11,'rated-2','rated-2',0), -(12,'rated-3','rated-3',0), -(13,'rated-4','rated-4',0), -(14,'rated-5','rated-5',0), -(15,'Others','others',0), -(16,'English','en',0), -(17,'English','pll_en',0), -(21,'Uncategorized','uncategorized-fr',0), -(30,'Earrings','earrings',0), -(31,'Rings','rings',0), -(32,'Necklaces','necklaces',0), -(33,'Bracelets','bracelets',0), -(36,'Hadou','hadou',0), -(37,'50','50',0), -(38,'52','52',0), -(39,'54','54',0), -(40,'56','56',0), -(41,'58','58',0), -(42,'60','60',0), -(43,'62','62',0), -(44,'64','64',0), -(45,'pair','pair',0), -(48,'Tiger\'s Eye','tiger-eye',0), -(49,'Malachite','malachite',0), -(50,'Hattari','hattari',0), -(51,'Ikkan','ikkan',0), -(52,'Kara','kara',0), -(53,'Kishou','kishou',0), -(54,'Rokku','rokku',0), -(55,'BoroBoro','boroboro',0), -(56,'Piasu','piasu',0), -(57,'Tamanori','tamanori',0), -(58,'Size 1','size-1',0), -(59,'Size 2','size-2',0), -(60,'Tanemaki','tanemaki',0), -(61,'Fuyou','fuyou',0), -(62,'long','long',0), -(63,'medium','medium',0), -(64,'short','short',0), -(65,'Kagun','kagun',0), -(66,'one earring','one',0), -(67,'Mugura','mugura',0), -(68,'Lapis Lazuli','lapis-lazuli',0), -(69,'Green Jaspe','green-jaspe',0), -(70,'Hawk\'s Eye','hawk-eye',0), -(71,'one element earring','one-element-side',0), -(72,'two elements earring','two-elements-side',0), -(73,'Green Aventurine','green-aventurine',0), -(74,'Crystal','crystal',0), -(75,'Jade','jade',0), -(76,'all','all',0), -(77,'left side','left-side',0), -(78,'right side','right-side',0), -(79,'Honey Jade','honey-jade',0), -(80,'Uteki','uteki',0), -(81,'Uteki','uteki',0), -(82,'PISHI','pishi',0), -(83,'Kime','kime',0), -(86,'40€','40e',0), -(87,'50€','50e',0), -(88,'60€','60e',0), -(89,'70€','70e',0), -(90,'80€','80e',0), -(91,'90€','90e',0), -(92,'100€','100e',0); -/*!40000 ALTER TABLE `haikuwp_terms` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_usermeta` --- - -DROP TABLE IF EXISTS `haikuwp_usermeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_usermeta` ( - `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`umeta_id`), - KEY `user_id` (`user_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=279 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_usermeta` --- - -LOCK TABLES `haikuwp_usermeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_usermeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_usermeta` VALUES -(1,1,'nickname','gcch'), -(2,1,'first_name',''), -(3,1,'last_name',''), -(4,1,'description',''), -(5,1,'rich_editing','true'), -(6,1,'syntax_highlighting','true'), -(7,1,'comment_shortcuts','false'), -(8,1,'admin_color','blue'), -(9,1,'use_ssl','0'), -(10,1,'show_admin_bar_front','false'), -(11,1,'locale','en_GB'), -(12,1,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), -(13,1,'haikuwp_user_level','10'), -(14,1,'dismissed_wp_pointers',''), -(15,1,'show_welcome_panel','1'), -(17,1,'haikuwp_dashboard_quick_press_last_post_id','5'), -(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"77.109.119.0\";}'), -(19,1,'_woocommerce_tracks_anon_id','woo:d4XJVDeUWJmLLIBoynrGwlsO'), -(21,1,'last_update','1746806847'), -(22,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"customize-store\":1,\"products\":1}'), -(23,1,'wc_last_active','1764720000'), -(24,1,'meta-box-order_product','a:4:{s:25:\"carbon_fields_after_title\";s:0:\"\";s:4:\"side\";s:101:\"submitdiv,slugdiv,postimagediv,product_catdiv,tagsdiv-collection,tagsdiv-product_tag,product_branddiv\";s:6:\"normal\";s:63:\"postexcerpt,postcustom,carbon_fields_container_products_details\";s:8:\"advanced\";s:25:\"woocommerce-product-data,\";}'), -(25,1,'edit_page_per_page','20'), -(26,1,'haikuwp_user-settings','posts_list_mode=excerpt&libraryContent=browse&editor=html&hidetb=0'), -(27,1,'haikuwp_user-settings-time','1732442434'), -(30,1,'woocommerce_admin_variable_product_tour_shown','\"yes\"'), -(34,1,'billing_first_name',''), -(35,1,'billing_last_name',''), -(36,1,'billing_company',''), -(37,1,'billing_address_1',''), -(38,1,'billing_address_2',''), -(39,1,'billing_city',''), -(40,1,'billing_postcode',''), -(41,1,'billing_country',''), -(42,1,'billing_state',''), -(43,1,'billing_phone',''), -(44,1,'billing_email','g7c'), -(45,1,'shipping_first_name',''), -(46,1,'shipping_last_name',''), -(47,1,'shipping_company',''), -(48,1,'shipping_address_1',''), -(49,1,'shipping_address_2',''), -(50,1,'shipping_city',''), -(51,1,'shipping_postcode',''), -(52,1,'shipping_country',''), -(53,1,'shipping_state',''), -(54,1,'shipping_phone',''), -(57,1,'wc_marketplace_suggestions_dismissed_suggestions','a:4:{i:0;s:28:\"product-edit-name-your-price\";i:1;s:31:\"product-edit-min-max-quantities\";i:2;s:42:\"product-edit-woocommerce-one-page-checkout\";i:3;s:29:\"product-edit-variation-images\";}'), -(58,1,'closedpostboxes_product','a:1:{i:0;s:11:\"postexcerpt\";}'), -(59,1,'metaboxhidden_product','a:2:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";}'), -(61,1,'screen_layout_product','2'), -(63,1,'manageedit-productcolumnshidden','a:1:{i:0;s:8:\"featured\";}'), -(64,1,'edit_product_per_page','100'), -(68,1,'dismissed_uploads_directory_is_unprotected_notice','1'), -(69,1,'dismissed_update_notice','1'), -(81,2,'nickname','manon'), -(82,2,'first_name','Manon'), -(83,2,'last_name','DÉSIGNÈRE'), -(84,2,'description',''), -(85,2,'rich_editing','true'), -(86,2,'syntax_highlighting','true'), -(87,2,'comment_shortcuts','false'), -(88,2,'admin_color','fresh'), -(89,2,'use_ssl','0'), -(90,2,'show_admin_bar_front','true'), -(91,2,'locale','en_GB'), -(92,2,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), -(93,2,'haikuwp_user_level','10'), -(94,2,'dismissed_wp_pointers',''), -(95,2,'session_tokens','a:1:{s:64:\"1ad366a00acd8c673142409995104b04727c5eb911714d647d4d47faedf10564\";a:4:{s:10:\"expiration\";i:1730208242;s:2:\"ip\";s:13:\"81.164.20.154\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1728998642;}}'), -(96,2,'wc_last_active','1730160000'), -(98,2,'_woocommerce_tracks_anon_id','woo:tTnslNIiEvD9zC3nQTmFxTO7'), -(99,2,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'), -(102,2,'haikuwp_user-settings','editor=tinymce&libraryContent=browse'), -(103,2,'haikuwp_user-settings-time','1727711511'), -(104,2,'closedpostboxes_product','a:1:{i:0;s:19:\"tagsdiv-product_tag\";}'), -(105,2,'metaboxhidden_product','a:4:{i:0;s:40:\"carbon_fields_container_products_details\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";i:3;s:11:\"postexcerpt\";}'), -(106,2,'last_update','1728072417'), -(107,2,'woocommerce_admin_variable_product_tour_shown','yes'), -(110,1,'session_tokens','a:3:{s:64:\"38bbc9f28305306eeefc1677855010c2280035123b6407e50026d1d80a204e2e\";a:4:{s:10:\"expiration\";i:1765218580;s:2:\"ip\";s:13:\"77.109.119.45\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 18_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1764008980;}s:64:\"6626e9da082f674fbed95b1c6b87741e35ff58a2ee7e01f222a921ab94b3da9a\";a:4:{s:10:\"expiration\";i:1765956226;s:2:\"ip\";s:13:\"77.109.119.45\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1764746626;}s:64:\"7d828400e62be1871a168a289ff3cd9aa7c1f34b60c876dd7f53f5f604b67b73\";a:4:{s:10:\"expiration\";i:1764925764;s:2:\"ip\";s:13:\"77.109.119.45\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:145.0) Gecko/20100101 Firefox/145.0\";s:5:\"login\";i:1764752964;}}'), -(126,1,'woocommerce_admin_homepage_stats','{\"installJetpackDismissed\":true}'), -(128,1,'managewoocommerce_page_wc-orderscolumnshidden','a:0:{}'), -(129,1,'edit_shop_order_per_page','20'), -(132,1,'roc_dismissed_wc_pro_notice','1'), -(146,1,'closedpostboxes_woocommerce_page_wc-orders','a:1:{i:0;s:12:\"wms_meta_box\";}'), -(147,1,'metaboxhidden_woocommerce_page_wc-orders','a:0:{}'), -(155,1,'wp_mail_smtp_pro_banner_dismissed','1'), -(165,1,'_new_email','a:2:{s:4:\"hash\";s:32:\"bb75df9dea643dd96634d2474f715f58\";s:8:\"newemail\";s:17:\"g7colin@gmail.com\";}'), -(168,1,'closedpostboxes_dashboard','a:1:{i:0;s:32:\"wp_mail_smtp_reports_widget_lite\";}'), -(169,1,'metaboxhidden_dashboard','a:0:{}'), -(184,1,'roc_dismissed_pro_release_notice','1'), -(220,1,'woocommerce_admin_dashboard_chart_interval','month'), -(222,1,'meta-box-order_woocommerce_page_wc-orders','a:3:{s:4:\"side\";s:62:\"woocommerce-order-notes,woocommerce-order-actions,wms_meta_box\";s:6:\"normal\";s:87:\"woocommerce-order-data,woocommerce-order-items,woocommerce-order-downloads,order_custom\";s:8:\"advanced\";s:0:\"\";}'), -(265,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'); -/*!40000 ALTER TABLE `haikuwp_usermeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_users` --- - -DROP TABLE IF EXISTS `haikuwp_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_users` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_login` varchar(60) NOT NULL DEFAULT '', - `user_pass` varchar(255) NOT NULL DEFAULT '', - `user_nicename` varchar(50) NOT NULL DEFAULT '', - `user_email` varchar(100) NOT NULL DEFAULT '', - `user_url` varchar(100) NOT NULL DEFAULT '', - `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `user_activation_key` varchar(255) NOT NULL DEFAULT '', - `user_status` int(11) NOT NULL DEFAULT 0, - `display_name` varchar(250) NOT NULL DEFAULT '', - PRIMARY KEY (`ID`), - KEY `user_login_key` (`user_login`), - KEY `user_nicename` (`user_nicename`), - KEY `user_email` (`user_email`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_users` --- - -LOCK TABLES `haikuwp_users` WRITE; -/*!40000 ALTER TABLE `haikuwp_users` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_users` VALUES -(1,'gcch','$wp$2y$10$WJwlILNX75DzDtQBsjcRJuFWaQFIgpzWWYKm0Qj0FsAfZt8kJRtiu','gcch','contact@gcch.fr','https://haikuatelier.fr.ddev.site/wp','2024-08-04 20:10:39','',0,'gcch'), -(2,'manon','$2y$10$PQ3e05y6ZdzN40jk.1DHBuQeRiN5nw9QA0pghx6/AeJJfhqv1AcRy','manon','haiku.atelier@gmail.com','https://haikuatelier.com','2024-09-25 06:10:56','',0,'Manon DÉSIGNÈRE'); -/*!40000 ALTER TABLE `haikuwp_users` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_admin_note_actions` --- - -DROP TABLE IF EXISTS `haikuwp_wc_admin_note_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_admin_note_actions` ( - `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `note_id` bigint(20) unsigned NOT NULL, - `name` varchar(255) NOT NULL, - `label` varchar(255) NOT NULL, - `query` longtext NOT NULL, - `status` varchar(255) NOT NULL, - `actioned_text` varchar(255) NOT NULL, - `nonce_action` varchar(255) DEFAULT NULL, - `nonce_name` varchar(255) DEFAULT NULL, - PRIMARY KEY (`action_id`), - KEY `note_id` (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=581 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_admin_note_actions` --- - -LOCK TABLES `haikuwp_wc_admin_note_actions` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_admin_note_actions` VALUES -(1,1,'notify-refund-returns-page','Edit page','https://haikuatelier.fr.ddev.site/wp/wp-admin/post.php?post=11&action=edit','actioned','',NULL,NULL), -(86,59,'connect','Connecter','?page=wc-addons§ion=helper','unactioned','',NULL,NULL), -(424,61,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL), -(428,4,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL), -(429,5,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL), -(430,6,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL), -(431,7,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL), -(432,8,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL), -(434,10,'update-wc-subscriptions-3-0-15','View latest version','https://haikuatelier.fr.ddev.site/wp/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL), -(435,11,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL), -(436,14,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), -(437,15,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), -(438,16,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(439,16,'dismiss','Dismiss','','actioned','',NULL,NULL), -(440,17,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(441,17,'dismiss','Dismiss','','actioned','',NULL,NULL), -(442,18,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(443,18,'dismiss','Dismiss','','actioned','',NULL,NULL), -(444,19,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), -(445,19,'dismiss','Dismiss','','actioned','',NULL,NULL), -(447,21,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), -(448,21,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL), -(449,22,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), -(450,22,'dismiss','Dismiss','','actioned','',NULL,NULL), -(452,24,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL), -(453,25,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(454,25,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), -(455,26,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(456,26,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), -(457,27,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL), -(458,28,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(459,28,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL), -(460,29,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL), -(461,29,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL), -(463,31,'extension-settings','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(464,31,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(465,32,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(466,32,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(467,33,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL), -(468,34,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), -(469,35,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(470,35,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL), -(471,36,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(472,36,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), -(473,37,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(474,37,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), -(475,38,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(476,38,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), -(477,39,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(478,39,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL), -(479,40,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(480,40,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL), -(481,41,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(482,41,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL), -(483,42,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(484,42,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), -(487,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(488,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL), -(489,45,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), -(490,45,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), -(491,46,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(492,46,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL), -(493,47,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL), -(494,48,'plugin-list','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), -(495,48,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL), -(496,49,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php?','unactioned','',NULL,NULL), -(497,49,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(498,50,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(499,51,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(501,53,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL), -(502,54,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php','unactioned','',NULL,NULL), -(503,54,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), -(504,55,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), -(505,55,'dismiss','Dismiss','#','actioned','',NULL,NULL), -(509,62,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(510,63,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned','',NULL,NULL), -(511,64,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL), -(542,66,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(543,67,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(553,69,'browse','Browse','https://woocommerce.com/success-stories/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(554,70,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2024-11-26&before=2024-11-26','actioned','',NULL,NULL), -(555,71,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(568,72,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), -(578,65,'update-db_done','Thanks!','https://haikuatelier.com/wp/wp-admin/admin.php?page=wc-status&status=failed&tab=action-scheduler&s&bulk_action=Apply&paged=1&wc-hide-notice=update','actioned','woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'), -(579,73,'try-the-new-templates','Try the new templates','?page=wc-settings&tab=email&try-new-templates','actioned','',NULL,NULL), -(580,74,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL); -/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_admin_notes` --- - -DROP TABLE IF EXISTS `haikuwp_wc_admin_notes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_admin_notes` ( - `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `type` varchar(20) NOT NULL, - `locale` varchar(20) NOT NULL, - `title` longtext NOT NULL, - `content` longtext NOT NULL, - `content_data` longtext DEFAULT NULL, - `status` varchar(200) NOT NULL, - `source` varchar(200) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_reminder` datetime DEFAULT NULL, - `is_snoozable` tinyint(1) NOT NULL DEFAULT 0, - `layout` varchar(20) NOT NULL DEFAULT '', - `image` varchar(200) DEFAULT NULL, - `is_deleted` tinyint(1) NOT NULL DEFAULT 0, - `is_read` tinyint(1) NOT NULL DEFAULT 0, - `icon` varchar(200) NOT NULL DEFAULT 'info', - PRIMARY KEY (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_admin_notes` --- - -LOCK TABLES `haikuwp_wc_admin_notes` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_admin_notes` VALUES -(1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','actioned','woocommerce-core','2024-08-05 13:12:38',NULL,0,'plain','',0,1,'info'), -(4,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(5,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.

Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with WooCommerce Shipping.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(6,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(7,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(8,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(10,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(11,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(14,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(15,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.

Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(16,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(17,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(18,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(19,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(21,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use PayPal Payments to accept PayPal.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(22,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(24,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(25,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(26,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(27,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(28,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(29,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(31,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(32,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(33,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(34,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(35,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(36,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(37,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(38,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(39,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(40,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(41,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(42,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(45,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(46,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(47,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(48,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(49,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(50,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(51,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(53,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(54,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(55,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), -(59,'wc-admin-wc-helper-connection','info','en_US','Se connecter à WooCommerce.com','Connectez-vous pour obtenir des notifications et des mises à jour importantes sur les produits.','{}','unactioned','woocommerce-admin','2024-08-05 13:13:55',NULL,0,'plain','',1,1,'info'), -(61,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics – wherever you are.','{}','unactioned','woocommerce-admin','2024-08-07 13:30:14',NULL,0,'plain','',1,1,'info'), -(62,'wc-admin-customizing-product-catalog','info','en_US','How to customise your product catalogue','You want your product catalogue and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2024-08-08 16:35:00',NULL,0,'plain','',1,1,'info'), -(63,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2024-08-10 13:35:49',NULL,0,'plain','',1,1,'info'), -(64,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the Settings and choose to stop sharing data. Read more about what data we collect.','{}','unactioned','woocommerce-admin','2024-08-12 15:54:19',NULL,0,'plain','',1,1,'info'), -(65,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2024-08-22 14:16:51',NULL,0,'plain','',0,1,'info'), -(66,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2024-10-31 13:30:48',NULL,0,'plain','',1,1,'info'), -(67,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2024-11-03 13:16:04',NULL,0,'plain','',1,1,'info'), -(69,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','{\"current_milestone\":10}','unactioned','woocommerce-admin','2024-11-21 16:12:57',NULL,0,'plain','',0,1,'info'), -(70,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, November 26th was your record day for sales! Net sales was € 1.525,00 beating the previous record of € 1.390,00 set on November 13th.','{\"old_record_date\":\"2024-11-13\",\"old_record_amt\":1390,\"new_record_date\":\"2024-11-26\",\"new_record_amt\":1525}','unactioned','woocommerce-admin','2024-11-27 13:20:42',NULL,0,'plain','',0,1,'info'), -(71,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2025-02-01 14:43:19',NULL,0,'plain','',0,1,'info'), -(72,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2025-05-02 13:13:21',NULL,0,'plain','',0,0,'info'), -(73,'wc-admin-email-improvements','info','en_US','Store emails have had an upgrade!','We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.','{}','unactioned','woocommerce-admin','2025-06-13 13:13:15',NULL,0,'plain','',0,0,'info'), -(74,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2025-08-05 13:12:43',NULL,0,'plain','',0,1,'info'); -/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_category_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_category_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_category_lookup` ( - `category_tree_id` bigint(20) unsigned NOT NULL, - `category_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`category_tree_id`,`category_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_category_lookup` --- - -LOCK TABLES `haikuwp_wc_category_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_category_lookup` VALUES -(15,15), -(30,30), -(31,31), -(32,32), -(33,33); -/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_customer_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_customer_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_customer_lookup` ( - `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned DEFAULT NULL, - `username` varchar(60) NOT NULL DEFAULT '', - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `email` varchar(100) DEFAULT NULL, - `date_last_active` timestamp NULL DEFAULT NULL, - `date_registered` timestamp NULL DEFAULT NULL, - `country` char(2) NOT NULL DEFAULT '', - `postcode` varchar(20) NOT NULL DEFAULT '', - `city` varchar(100) NOT NULL DEFAULT '', - `state` varchar(100) NOT NULL DEFAULT '', - PRIMARY KEY (`customer_id`), - UNIQUE KEY `user_id` (`user_id`), - KEY `email` (`email`) -) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_customer_lookup` --- - -LOCK TABLES `haikuwp_wc_customer_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_customer_lookup` VALUES -(6,NULL,'','Charlotte','Gérard','charlottegerard7@gmail.com','2024-11-28 14:21:17',NULL,'BE','1200','Woluwe-Saint-Lambert','Bruxelles'), -(7,NULL,'','Sofia','Balducci','sofia.balducci99@gmail.com','2025-10-12 19:03:18',NULL,'FR','75007','Paris',''), -(8,NULL,'','Claudia','Van Vynckt - WIPLAW','claudia.vanvynckt@hotmail.fr','2024-11-29 08:05:49',NULL,'BE','1050','Bruxelles',''), -(9,NULL,'','Lucie','Leiner','lucie.leiner@gmail.com','2024-11-29 16:22:16',NULL,'BE','1630','Linkebeek',''), -(10,NULL,'','CLAIRE','MAROUFIN','maroufin.claire@gmail.com','2025-12-02 08:20:29',NULL,'FR','94270','Le Kremlin-Bicêtre',''), -(11,NULL,'','Peggy','Luete','gilquinpeggy@gmail.com','2024-12-02 09:46:48',NULL,'FR','93360','Neuilly - Plaisance',''), -(12,NULL,'','Violette','Cubier','v.cubier@gmail.com','2024-12-02 15:33:11',NULL,'FR','92320','Chatillon',''), -(13,NULL,'','Elise','Colson','choploone@gmail.com','2024-12-03 16:03:18',NULL,'BE','4420','Saint-Nicolas','Liège'), -(14,NULL,'','Maren','Sigge','maren.sigge@gmail.com','2024-12-03 21:53:41',NULL,'BE','1160','Auderghem','Belgium'), -(15,NULL,'','Perrine','Vincent','perrinevincent90@gmail.com','2024-12-06 12:08:34',NULL,'BE','5150','Floreffe','Namur'), -(16,NULL,'','Julien','Martial','julien.martial@hotmail.com','2024-12-06 13:04:22',NULL,'BE','1150','Woluwe St Pierre',''), -(17,NULL,'','christine','Saquet Bossu','c.saquetbossu@orange.fr','2024-12-12 15:55:38',NULL,'FR','35660','Renac',''), -(18,NULL,'','Nathalie','Chabin','lili.chabin@gmail.com','2024-12-19 08:08:20',NULL,'CH','1046','Rueyres - Suisse','vaud'), -(19,NULL,'','Veronique','Marchand','vsmarchand24@gmail.com','2024-12-14 09:10:01',NULL,'FR','89000','AUXERRE',''), -(20,NULL,'','Antoine','Deroisy','antoine.der92@gmail.com','2024-12-16 08:16:07',NULL,'BE','1050','Bruxelles',''), -(21,NULL,'','Ella','Richard','ella_cherry@hotmail.fr','2024-12-17 07:40:04',NULL,'FR','93310','Le Pre Saint Gervais',''), -(22,NULL,'','Elsa','Dumontel','elsa.dumontel@gmail.com','2024-12-18 14:13:28',NULL,'FR','15130','Arpajon Sur Cere','France'), -(23,NULL,'','Magali','Jacob','melian.jacob@free.fr','2024-12-26 11:37:45',NULL,'FR','67800','Hœnheim',''), -(24,NULL,'','Camille','Lacroix','camillelacroix715@gmail.com','2024-12-30 17:59:22',NULL,'FR','93310','Le Pré St Gervais',''), -(25,NULL,'','Margot','BRISOUX','margot.brisoux@hotmail.fr','2025-01-03 08:04:01',NULL,'FR','75011','Paris',''), -(26,NULL,'','Marine','TIBERI','tiberi.marine@gmail.com','2025-01-09 11:01:26',NULL,'FR','31400','Toulouse',''), -(27,NULL,'','Alice','Tabernat','alicetabernat@yahoo.fr','2025-01-29 09:32:07',NULL,'FR','93100','Montreuil',''), -(28,NULL,'','Aïn-Establet','Manon','manon.ainest@gmail.com','2025-01-30 07:57:12',NULL,'FR','75020','Paris',''), -(29,NULL,'','de beauvais','nina','parisnoune@gmail.com','2025-02-21 18:32:16',NULL,'FR','75019','paris',''), -(30,NULL,'','Owen Andrew','O\'Neill','owenoneill2727@gmail.com','2025-02-23 16:08:07',NULL,'BE','1060','Saint-Gilles','Brussel'), -(31,NULL,'','Julie','Soulie','julie.soulie96@yahoo.fr','2025-02-26 11:51:16',NULL,'FR','75019','Paris','Ile de France'), -(32,NULL,'','Charles','Stoop','charles.stoop@gmail.com','2025-03-03 10:10:15',NULL,'BE','1170','Watermael-Boitsfort','Bruxelles'), -(33,NULL,'','Amélie','Graux','amelie.grx@gmail.com','2025-03-03 09:45:26',NULL,'FR','75020','Paris',''), -(34,NULL,'','Raphael','Kuder','raphael.kuderpro@gmail.com','2025-03-05 10:04:07',NULL,'FR','75020','Paris','IDF'), -(35,NULL,'','Eve marie','REDOUIN','evemarie.redouin@gmail.com','2025-03-23 20:39:51',NULL,'FR','91140','Villebon-sur-Yvette',''), -(36,NULL,'','Arnau','Oliver Antich','isoliverantich1@gmail.com','2025-04-08 09:44:22',NULL,'BE','1060','Saint-Gilles','Belgium'), -(37,NULL,'','Gauthier','COLIN HAAG','lol@mdr.fr','2025-05-05 07:14:57',NULL,'FR','57070','Metz',''), -(38,NULL,'','Jérôme','Laurent','crack_one@hotmail.fr','2025-05-09 07:49:40',NULL,'FR','10500','BRIENNE LE CHATEAU','Aube'), -(39,NULL,'','Anne sophie','Mabi','annesophiemabi@gmail.com','2025-05-09 17:56:28',NULL,'FR','93110','Rosny sous bois',''), -(40,NULL,'','Zafiria','Efstratiadi','zafiria.efstratiadi@hotmail.com','2025-06-04 09:13:31',NULL,'BE','1080','Bruxelles','Molenbeek-Saint-Jean'), -(41,NULL,'','Laurent','CAPELO','laurentpvcapelo@gmail.com','2025-06-05 05:44:45',NULL,'FR','92130','Issy-les-Moulineaux',''), -(43,NULL,'','','','','2025-06-21 07:54:31',NULL,'','','',''), -(49,NULL,'','Mia','Mueller','mia.mueller07@gmail.com','2025-07-14 10:37:48',NULL,'BE','1000','Brussels',''), -(53,NULL,'','Myrthe','Meylaerts','myrthe.meylaerts@gmail.com','2025-09-17 16:11:56',NULL,'BE','1070','Anderlecht',''), -(54,NULL,'','Alexandra','Maillot','alexandraboubou2@gmail.com','2025-10-02 02:39:01',NULL,'FR','78500','Sartrouville',''), -(55,NULL,'','Théo','Huchet','theohuchet@laposte.net','2025-10-11 13:06:39',NULL,'FR','02000','Laon',''), -(56,NULL,'','Pauline','Dubois','pauline.duboi96@gmail.com','2025-10-12 12:50:06',NULL,'BE','1060','Saint-Gilles','Brussel-Hoofdstad'), -(57,NULL,'','Bram','De Gieter','bram.degieter@telenet.be','2025-10-18 11:34:26',NULL,'BE','9000','Gent','Oost-Vlaanderen'), -(58,NULL,'','Charlotte','Chabin','charlotte.chabin@gmail.com','2025-11-02 18:39:02',NULL,'CH','1004','Lausanne',''), -(59,NULL,'','Daphné','Thomas','daphnethomass@hotmail.com','2025-11-03 20:05:37',NULL,'FR','69600','Oullins',''), -(60,NULL,'','GC','CH','contact@gcch.fr','2025-11-04 16:02:34',NULL,'BE','1060','Brussels',''), -(61,NULL,'','GC','CH','lol@gcch.fr','2025-11-05 08:41:59',NULL,'BE','1060','Metz',''), -(62,NULL,'','Paul','AMICEL','paulamicel@gmail.com','2025-11-18 07:29:10',NULL,'FR','35000','Rennes',''), -(63,NULL,'','marianne','pignot','mapignot@gmail.com','2025-11-20 13:49:47',NULL,'FR','93100','Montreuil',''), -(64,NULL,'','Anabela','Angeiras','anabela_angeiras@yahoo.fr','2025-11-24 08:50:48',NULL,'BE','1325','Chaumont Gistoux',''), -(65,NULL,'','Karen','Plasschaert','karen.plasschaert@gmail.com','2025-11-24 16:43:34',NULL,'BE','2820','Bonheiden (regio)',''), -(66,NULL,'','Annaé','Bosson','annaebosson@gmail.com','2025-11-30 20:29:07',NULL,'FR','75020','Paris',''), -(67,NULL,'','Penelope','Jourdain','penelope.jourdain@gmail.com','2025-12-02 19:47:29',NULL,'FR','94130','Nogent sur Marne','Île de France'); -/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_download_log` --- - -DROP TABLE IF EXISTS `haikuwp_wc_download_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_download_log` ( - `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `timestamp` datetime NOT NULL, - `permission_id` bigint(20) unsigned NOT NULL, - `user_id` bigint(20) unsigned DEFAULT NULL, - `user_ip_address` varchar(100) DEFAULT '', - PRIMARY KEY (`download_log_id`), - KEY `permission_id` (`permission_id`), - KEY `timestamp` (`timestamp`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_download_log` --- - -LOCK TABLES `haikuwp_wc_download_log` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_download_log` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_download_log` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_addresses` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_addresses`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_addresses` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned NOT NULL, - `address_type` varchar(20) DEFAULT NULL, - `first_name` text DEFAULT NULL, - `last_name` text DEFAULT NULL, - `company` text DEFAULT NULL, - `address_1` text DEFAULT NULL, - `address_2` text DEFAULT NULL, - `city` text DEFAULT NULL, - `state` text DEFAULT NULL, - `postcode` text DEFAULT NULL, - `country` text DEFAULT NULL, - `email` varchar(320) DEFAULT NULL, - `phone` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`), - KEY `order_id` (`order_id`), - KEY `email` (`email`(191)), - KEY `phone` (`phone`), - FULLTEXT KEY `order_addresses_fts` (`first_name`,`last_name`,`company`,`address_1`,`address_2`,`city`,`state`,`postcode`,`country`,`email`,`phone`) -) ENGINE=InnoDB AUTO_INCREMENT=287 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_addresses` --- - -LOCK TABLES `haikuwp_wc_order_addresses` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_addresses` VALUES -(93,861,'billing','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE','charlottegerard7@gmail.com','0498836916'), -(94,861,'shipping','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE',NULL,'0498836916'), -(95,862,'billing','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR','sofia.balducci99@gmail.com','+393470972182'), -(96,862,'shipping','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR',NULL,'+393470972182'), -(103,866,'billing','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE','claudia.vanvynckt@hotmail.fr','0478183560'), -(104,866,'shipping','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0478183560'), -(105,867,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE','lucie.leiner@gmail.com','+32489578514'), -(106,867,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE',NULL,'+32489578514'), -(107,868,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE','lucie.leiner@gmail.com','+32489578514'), -(108,868,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE',NULL,'+32489578514'), -(109,869,'billing','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR','maroufin.claire@gmail.com','+33681223295'), -(110,869,'shipping','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR',NULL,'+33681223295'), -(111,870,'billing','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR','gilquinpeggy@gmail.com','+33663293145'), -(112,870,'shipping','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR',NULL,'+33663293145'), -(113,871,'billing','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR','v.cubier@gmail.com','0616154243'), -(114,871,'shipping','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR',NULL,'0616154243'), -(115,872,'billing','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE','choploone@gmail.com','0498508266'), -(116,872,'shipping','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE',NULL,'0498508266'), -(117,873,'billing','Maren','Sigge',NULL,'Av. G. E. Lebon, 24, BP 3',NULL,'Auderghem','Belgium','1160','BE','maren.sigge@gmail.com','+32489439874'), -(118,873,'shipping','Viviane','Antoine',NULL,'Chaussée de Givet 33',NULL,'Mariembourg','Belgium','5660','BE',NULL,'+32489439874'), -(121,876,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(122,876,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(123,877,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(124,877,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(125,878,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), -(126,878,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), -(127,879,'billing','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE','julien.martial@hotmail.com','0472585911'), -(128,879,'shipping','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE',NULL,'0472585911'), -(129,880,'billing','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR','c.saquetbossu@orange.fr','0685532210'), -(130,880,'shipping','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR',NULL,'0685532210'), -(131,881,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH','lili.chabin@gmail.com','+41786229221'), -(132,881,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH',NULL,'+41786229221'), -(137,884,'billing','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR','vsmarchand24@gmail.com','+33612102273'), -(138,884,'shipping','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR',NULL,'+33612102273'), -(139,885,'billing','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE','antoine.der92@gmail.com','0474183450'), -(140,885,'shipping','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0474183450'), -(141,886,'billing','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR','ella_cherry@hotmail.fr','06 77 32 66 50'), -(142,886,'shipping','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR',NULL,'06 77 32 66 50'), -(143,887,'billing','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR','elsa.dumontel@gmail.com','0642985078'), -(144,887,'shipping','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR',NULL,'0642985078'), -(145,888,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH','lili.chabin@gmail.com','+41786229221'), -(146,888,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH',NULL,'+41786229221'), -(147,889,'billing','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR','melian.jacob@free.fr','0670745455'), -(148,889,'shipping','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR',NULL,'0670745455'), -(149,892,'billing','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR','camillelacroix715@gmail.com','0681659460'), -(150,892,'shipping','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR',NULL,'0681659460'), -(151,893,'billing','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), -(152,893,'shipping','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), -(153,894,'billing','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), -(154,894,'shipping','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), -(155,895,'billing','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR','tiberi.marine@gmail.com','+33602079136'), -(156,895,'shipping','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR',NULL,'+33602079136'), -(157,897,'billing','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR','alicetabernat@yahoo.fr','0770426206'), -(158,897,'shipping','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR',NULL,'0770426206'), -(159,898,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), -(160,898,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), -(161,899,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), -(162,899,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), -(163,900,'billing','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR','parisnoune@gmail.com','0670423158'), -(164,900,'shipping','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR',NULL,'0670423158'), -(165,901,'billing','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE','owenoneill2727@gmail.com','+353852179564'), -(166,901,'shipping','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE',NULL,'+353852179564'), -(167,902,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), -(168,902,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), -(169,903,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), -(170,903,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), -(171,904,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), -(172,904,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), -(173,905,'billing','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR','amelie.grx@gmail.com','0667102260'), -(174,905,'shipping','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR',NULL,'0667102260'), -(175,906,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), -(176,906,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), -(177,907,'billing','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR','raphael.kuderpro@gmail.com','0783260894'), -(178,907,'shipping','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR',NULL,'0783260894'), -(179,908,'billing','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR','evemarie.redouin@gmail.com','0642769155'), -(180,908,'shipping','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR',NULL,'0642769155'), -(181,909,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), -(182,909,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), -(183,910,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), -(184,910,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), -(185,911,'billing','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR','lol@mdr.fr','0603436016'), -(186,911,'shipping','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR',NULL,'0603436016'), -(187,912,'billing','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR','crack_one@hotmail.fr','+33695854956'), -(188,912,'shipping','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR',NULL,'+33695854956'), -(189,919,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(190,919,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(191,920,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(192,920,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(193,921,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(194,921,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(195,922,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), -(196,922,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), -(197,923,'billing','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE','zafiria.efstratiadi@hotmail.com','0474918430'), -(198,923,'shipping','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE',NULL,'0474918430'), -(199,924,'billing','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR','laurentpvcapelo@gmail.com','+33646234205'), -(200,924,'shipping','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR',NULL,'+33646234205'), -(205,1013,'billing','Mia','Mueller',NULL,'Chaussee de Vleurgat 172',NULL,'Brussels',NULL,'1000','BE','mia.mueller07@gmail.com','0474470271'), -(206,1013,'shipping','Mia','Mueller',NULL,'Chaussee de Vleurgat 172',NULL,'Brussels',NULL,'1000','BE',NULL,'0474470271'), -(249,1443,'billing','Myrthe','Meylaerts',NULL,'Demosthenesstraat 242',NULL,'Anderlecht',NULL,'1070','BE','myrthe.meylaerts@gmail.com','0499089766'), -(250,1443,'shipping','Myrthe','Meylaerts',NULL,'Demosthenesstraat 242',NULL,'Anderlecht',NULL,'1070','BE',NULL,'0499089766'), -(251,1480,'billing','Alexandra','Maillot',NULL,'26 rue de Stalingrad',NULL,'Sartrouville',NULL,'78500','FR','alexandraboubou2@gmail.com','0663463354'), -(252,1480,'shipping','Alexandra','Maillot',NULL,'26 rue de Stalingrad',NULL,'Sartrouville',NULL,'78500','FR',NULL,'0663463354'), -(253,1486,'billing','Théo','Huchet',NULL,'58 Rue Châtelaine',NULL,'Laon',NULL,'02000','FR','theohuchet@laposte.net','+33628751554'), -(254,1486,'shipping','Théo','Huchet',NULL,'58 Rue Châtelaine',NULL,'Laon',NULL,'02000','FR',NULL,'+33628751554'), -(255,1487,'billing','Théo','Huchet',NULL,'58 rue châtelaine',NULL,'Laon',NULL,'02000','FR','theohuchet@laposte.net','0628751554'), -(256,1487,'shipping','Théo','Huchet',NULL,'58 rue châtelaine',NULL,'Laon',NULL,'02000','FR',NULL,'0628751554'), -(257,1488,'billing','Pauline','Dubois',NULL,'Rue Maurice Wilmotte, 25',NULL,'Saint-Gilles','Brussel-Hoofdstad','1060','BE','pauline.duboi96@gmail.com','+32473119568'), -(258,1488,'shipping','Pauline','Dubois',NULL,'Rue Maurice Wilmotte, 25',NULL,'Saint-Gilles','Brussel-Hoofdstad','1060','BE',NULL,'+32473119568'), -(259,1489,'billing','Sofia','Balducci',NULL,'156 Rue de l’Université (MAIF)',NULL,'Paris',NULL,'75007','FR','sofia.balducci99@gmail.com','+393470972182'), -(260,1489,'shipping','Sofia','Balducci',NULL,'156 Rue de l’Université (MAIF)',NULL,'Paris',NULL,'75007','FR',NULL,'+393470972182'), -(261,1490,'billing','Bram','De Gieter',NULL,'Gasmeterlaan 44',NULL,'Gent','Oost-Vlaanderen','9000','BE','bram.degieter@telenet.be','0474177921'), -(262,1490,'shipping','Bram','De Gieter',NULL,'Gasmeterlaan 44',NULL,'Gent','Oost-Vlaanderen','9000','BE',NULL,'0474177921'), -(263,1496,'billing','Charlotte','Chabin',NULL,'Chemin de Pierrefleur 88',NULL,'Lausanne',NULL,'1004','CH','charlotte.chabin@gmail.com','+41799475008'), -(264,1496,'shipping','Charlotte','Chabin',NULL,'Chemin de Pierrefleur 88',NULL,'Lausanne',NULL,'1004','CH',NULL,'+41799475008'), -(265,1498,'billing','Daphné','Thomas',NULL,'4 Impasse Charles Fourier',NULL,'Oullins',NULL,'69600','FR','daphnethomass@hotmail.com','+33603264984'), -(266,1498,'shipping','Daphné','Thomas',NULL,'4 Impasse Charles Fourier',NULL,'Oullins',NULL,'69600','FR',NULL,'+33603264984'), -(267,1500,'billing','GC','CH',NULL,'5 rue de la Ville',NULL,'Brussels',NULL,'1060','BE','contact@gcch.fr','0603436016'), -(268,1500,'shipping','GC','CH',NULL,'5 rue de la Ville',NULL,'Brussels',NULL,'1060','BE',NULL,'0603436016'), -(269,1501,'billing','GC','CH',NULL,'5 rue de la ville',NULL,'Metz',NULL,'1060','BE','lol@gcch.fr','0603436016'), -(270,1501,'shipping','GC','CH',NULL,'5 rue de la ville',NULL,'Metz',NULL,'1060','BE',NULL,'0603436016'), -(271,1511,'billing','Paul','AMICEL',NULL,'1 rue Saint-Alphonse',NULL,'Rennes',NULL,'35000','FR','paulamicel@gmail.com','0618192731'), -(272,1511,'shipping','Paul','AMICEL',NULL,'1 rue Saint-Alphonse',NULL,'Rennes',NULL,'35000','FR',NULL,'0618192731'), -(273,1528,'billing','marianne','pignot',NULL,'12 Villa De La Seigneurie',NULL,'Montreuil',NULL,'93100','FR','mapignot@gmail.com','0660688244'), -(274,1528,'shipping','marianne','pignot',NULL,'12 Villa De La Seigneurie',NULL,'Montreuil',NULL,'93100','FR',NULL,'0660688244'), -(275,1529,'billing','Anabela','Angeiras',NULL,'Rue du brocsous 66',NULL,'Chaumont Gistoux',NULL,'1325','BE','anabela_angeiras@yahoo.fr','0032477286532'), -(276,1529,'shipping','Anabela','Angeiras',NULL,'Rue du brocsous 66',NULL,'Chaumont Gistoux',NULL,'1325','BE',NULL,'0032477286532'), -(277,1530,'billing','Karen','Plasschaert',NULL,'Berlaarbaan 102',NULL,'Bonheiden (regio)',NULL,'2820','BE','karen.plasschaert@gmail.com','+32473534936'), -(278,1530,'shipping','Karen','Plasschaert',NULL,'Berlaarbaan 102',NULL,'Bonheiden (regio)',NULL,'2820','BE',NULL,'+32473534936'), -(279,1540,'billing','Annaé','Bosson',NULL,'1 rue de la cour des noues',NULL,'Paris',NULL,'75020','FR','annaebosson@gmail.com','+33646032641'), -(280,1540,'shipping','Annaé','Bosson',NULL,'1 rue de la cour des noues',NULL,'Paris',NULL,'75020','FR',NULL,'+33646032641'), -(281,1571,'billing','CLAIRE','MAROUFIN',NULL,'26 avenue Eugene Thomas',NULL,'Le Kremlin-Bicêtre',NULL,'94270','FR','maroufin.claire@gmail.com','+33681223295'), -(282,1571,'shipping','CLAIRE','MAROUFIN',NULL,'26 avenue Eugene Thomas',NULL,'Le Kremlin-Bicêtre',NULL,'94270','FR',NULL,'+33681223295'), -(283,1572,'billing','Penelope','Jourdain',NULL,'42 rue Jacques Kablé',NULL,'Nogent sur Marne','Île de France','94130','FR','penelope.jourdain@gmail.com','0687878933'), -(284,1572,'shipping','Penelope','Jourdain',NULL,'42 rue Jacques Kablé',NULL,'Nogent sur Marne','Île de France','94130','FR',NULL,'0687878933'), -(285,1573,'billing','Penelope','Jourdain',NULL,'42 rue Jacques Kablé',NULL,'Nogent sur Marne','Île de France','94130','FR','penelope.jourdain@gmail.com','0687878933'), -(286,1573,'shipping','Penelope','Jourdain',NULL,'42 rue Jacques Kablé',NULL,'Nogent sur Marne','Île de France','94130','FR',NULL,'0687878933'); -/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_coupon_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_coupon_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_coupon_lookup` ( - `order_id` bigint(20) unsigned NOT NULL, - `coupon_id` bigint(20) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `discount_amount` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_id`,`coupon_id`), - KEY `coupon_id` (`coupon_id`), - KEY `date_created` (`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_coupon_lookup` --- - -LOCK TABLES `haikuwp_wc_order_coupon_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_operational_data` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_operational_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_operational_data` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned DEFAULT NULL, - `created_via` varchar(100) DEFAULT NULL, - `woocommerce_version` varchar(20) DEFAULT NULL, - `prices_include_tax` tinyint(1) DEFAULT NULL, - `coupon_usages_are_counted` tinyint(1) DEFAULT NULL, - `download_permission_granted` tinyint(1) DEFAULT NULL, - `cart_hash` varchar(100) DEFAULT NULL, - `new_order_email_sent` tinyint(1) DEFAULT NULL, - `order_key` varchar(100) DEFAULT NULL, - `order_stock_reduced` tinyint(1) DEFAULT NULL, - `date_paid_gmt` datetime DEFAULT NULL, - `date_completed_gmt` datetime DEFAULT NULL, - `shipping_tax_amount` decimal(26,8) DEFAULT NULL, - `shipping_total_amount` decimal(26,8) DEFAULT NULL, - `discount_tax_amount` decimal(26,8) DEFAULT NULL, - `discount_total_amount` decimal(26,8) DEFAULT NULL, - `recorded_sales` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `order_id` (`order_id`), - KEY `order_key` (`order_key`) -) ENGINE=InnoDB AUTO_INCREMENT=959 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_operational_data` --- - -LOCK TABLES `haikuwp_wc_order_operational_data` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_operational_data` VALUES -(275,861,'rest-api','9.4.2',0,1,1,'',1,'wc_order_mIB56la8Hu9rh',0,'2024-11-28 17:00:31',NULL,0.00000000,300.00000000,0.00000000,0.00000000,1), -(278,862,'rest-api','9.4.2',0,1,1,'',1,'wc_order_g6qGGwFmCLhG4',1,'2024-11-28 15:42:54',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(315,866,'rest-api','9.4.2',0,1,1,'',1,'wc_order_GfVnri1zucEHV',1,'2024-11-29 09:07:39',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(324,867,'rest-api','9.4.2',0,0,0,'',0,'wc_order_Onpg5Ph1VT0kX',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(327,868,'rest-api','9.4.2',0,1,1,'',1,'wc_order_LbjBOTM6Pg4Y8',1,'2024-11-29 17:26:38',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(336,869,'rest-api','9.4.2',0,1,1,'',1,'wc_order_ZpJT7n8ezcpc5',1,'2024-12-02 10:06:46',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(345,870,'rest-api','9.4.2',0,0,0,'',0,'wc_order_QMiR6T3KaJtKv',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(348,871,'rest-api','9.4.2',0,1,1,'',1,'wc_order_14ze4V3I7fPgF',1,'2024-12-02 16:34:12',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(357,872,'rest-api','9.4.2',0,1,1,'',1,'wc_order_DpCz0MofHOMDQ',1,'2024-12-03 17:04:43',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(366,873,'rest-api','9.4.2',0,1,1,'',1,'wc_order_sAvbLtrCudWx8',1,'2024-12-03 22:55:58',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(381,876,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WLxB8y0RH3GN1',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(384,877,'rest-api','9.4.3',0,0,0,'',0,'wc_order_aW0gsIEvhmbBI',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(387,878,'rest-api','9.4.3',0,1,1,'',1,'wc_order_FErghd9o15Mhi',1,'2024-12-06 13:10:02','2024-12-12 22:07:33',0.00000000,0.00000000,0.00000000,0.00000000,1), -(396,879,'rest-api','9.4.3',0,1,1,'',1,'wc_order_uzC3Ve7jqfc8V',1,'2024-12-06 14:22:12','2024-12-12 21:43:42',0.00000000,0.00000000,0.00000000,0.00000000,1), -(405,880,'rest-api','9.4.3',0,1,1,'',1,'wc_order_HQOvW1OdAL776',1,'2024-12-12 16:59:06','2024-12-15 09:59:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(416,881,'rest-api','9.4.3',0,1,1,'',1,'wc_order_WWQmiUtXyzFol',1,'2024-12-13 08:39:25','2024-12-16 14:13:34',0.00000000,1200.00000000,0.00000000,0.00000000,1), -(431,884,'rest-api','9.4.3',0,1,1,'',1,'wc_order_E7TjpmjrlfgqK',1,'2024-12-14 10:10:27','2024-12-16 14:13:01',0.00000000,0.00000000,0.00000000,0.00000000,1), -(441,885,'rest-api','9.4.3',0,1,1,'',1,'wc_order_dRRIRApWpQVvv',1,'2024-12-16 09:17:25','2024-12-18 17:19:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(452,886,'rest-api','9.4.3',0,1,1,'',1,'wc_order_j7Ko64S7WIAGg',1,'2024-12-17 08:40:36','2024-12-18 17:16:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(461,887,'rest-api','9.4.3',0,1,1,'',1,'wc_order_cxY5Hd9F3yfSx',1,'2024-12-18 15:14:07','2024-12-31 11:59:52',0.00000000,0.00000000,0.00000000,0.00000000,1), -(472,888,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EWQEpfmuwjvdy',1,'2024-12-19 09:09:28','2024-12-20 18:55:34',0.00000000,12.00000000,0.00000000,0.00000000,1), -(482,889,'rest-api','9.4.3',0,1,1,'',1,'wc_order_C8HPkCjTn8qGF',1,'2024-12-26 12:41:16','2024-12-31 11:59:03',0.00000000,0.00000000,0.00000000,0.00000000,1), -(491,890,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(494,891,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(497,892,'rest-api','9.4.3',0,0,0,'',0,'wc_order_DSYDx6HTwefzB',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(502,893,'rest-api','9.4.3',0,0,0,'',0,'wc_order_8wGrIq5ASqfBl',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(505,894,'rest-api','9.4.3',0,1,1,'',1,'wc_order_BlQYC36BaeTyn',1,'2025-01-03 09:04:36','2025-01-07 14:56:35',0.00000000,3.00000000,0.00000000,0.00000000,1), -(515,895,'rest-api','9.4.3',0,1,1,'',1,'wc_order_2xSBNPp21uZ5r',1,'2025-01-09 12:03:17','2025-01-14 19:47:45',0.00000000,0.00000000,0.00000000,0.00000000,1), -(525,896,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), -(528,897,'rest-api','9.4.3',0,1,1,'',1,'wc_order_nvCeSzsnDrcfh',1,'2025-01-29 10:33:02','2025-02-03 17:36:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(537,898,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WV96AzBB6vqxe',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(540,899,'rest-api','9.4.3',0,1,1,'',1,'wc_order_y7Idk0wZ92Kf0',1,'2025-01-30 08:57:26','2025-02-03 17:37:02',0.00000000,3.00000000,0.00000000,0.00000000,1), -(551,900,'rest-api','9.4.3',0,0,0,'',0,'wc_order_vfYF53SLgxEsH',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(554,901,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EUV5aiBi07rzG',1,'2025-02-23 17:08:48',NULL,0.00000000,3.00000000,0.00000000,0.00000000,1), -(563,902,'rest-api','9.4.3',0,0,0,'',0,'wc_order_zGVBcZqGbnaUi',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(566,903,'rest-api','9.4.3',0,1,1,'',1,'wc_order_vAtkq8RMPMGTb',1,'2025-02-26 12:53:34','2025-03-01 08:14:27',0.00000000,0.00000000,0.00000000,0.00000000,1), -(576,904,'rest-api','9.4.3',0,0,0,'',0,'wc_order_ZDIVsBShe5GGn',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(579,905,'rest-api','9.4.3',0,1,1,'',1,'wc_order_LMPM4pRGwA2nd',1,'2025-03-03 10:46:58','2025-03-06 08:24:33',0.00000000,0.00000000,0.00000000,0.00000000,1), -(588,906,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hU6nJ5TqPP2wT',1,'2025-03-03 11:11:31','2025-03-06 08:25:36',0.00000000,0.00000000,0.00000000,0.00000000,1), -(597,907,'rest-api','9.4.3',0,1,1,'',1,'wc_order_DCBDWc0ZYTU0z',1,'2025-03-05 11:05:44','2025-03-18 09:40:39',0.00000000,0.00000000,0.00000000,0.00000000,1), -(609,908,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hRtZ57XslBZT7',1,'2025-03-23 21:41:40','2025-04-04 06:41:39',0.00000000,0.00000000,0.00000000,0.00000000,1), -(619,909,'rest-api','9.4.3',0,0,0,'',0,'wc_order_cFZg51NEJ46Uh',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), -(622,910,'rest-api','9.8.4',0,1,1,'',1,'wc_order_kXbYV8JWxxFPV',1,'2025-04-08 11:45:10','2025-05-11 13:35:32',0.00000000,3.00000000,0.00000000,0.00000000,1), -(631,911,'rest-api','9.8.2',0,0,0,'',0,'wc_order_CbFLxIXlsqY2F',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(634,912,'rest-api','9.8.5',0,1,1,'',1,'wc_order_ffo5RfplSyEWZ',1,'2025-05-09 09:50:57','2025-05-16 05:54:00',0.00000000,3.00000000,0.00000000,0.00000000,1), -(643,919,'rest-api','9.8.4',0,0,0,'',0,'wc_order_ztQMr09oE7jlP',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(646,920,'rest-api','9.8.4',0,0,0,'',0,'wc_order_F2CMSPdH6VVnz',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(649,921,'rest-api','9.8.5',0,1,1,'',1,'wc_order_SJg4VAI3wKTkp',1,'2025-05-09 19:57:36','2025-05-16 05:54:26',0.00000000,0.00000000,0.00000000,0.00000000,1), -(652,922,'rest-api','9.8.5',0,1,1,'',1,'wc_order_i4LpjO4IGhJql',1,'2025-05-16 05:54:37','2025-05-16 05:55:04',0.00000000,0.00000000,0.00000000,0.00000000,1), -(674,923,'rest-api','9.8.5',0,0,0,'',0,'wc_order_489IFs7nUiMpg',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(677,924,'rest-api','9.8.5',0,1,1,'',1,'wc_order_CtkYhNBPJqYg1',1,'2025-06-05 07:45:48','2025-06-09 10:59:56',0.00000000,0.00000000,0.00000000,0.00000000,1), -(690,997,'rest-api','9.9.5',0,1,1,'',1,'wc_order_PE3U54MIfW9x8',1,'2025-06-21 09:56:06','2025-06-28 14:32:24',0.00000000,0.00000000,0.00000000,0.00000000,1), -(719,1013,'rest-api','9.9.5',0,1,1,'',1,'wc_order_jloBYCPPNUESP',1,'2025-07-14 12:39:22','2025-07-16 08:59:09',0.00000000,0.00000000,0.00000000,0.00000000,1), -(792,1443,'rest-api','10.1.2',0,1,1,'',1,'wc_order_5WBwz6DJvd4kA',1,'2025-09-17 18:13:40','2025-09-23 09:29:46',0.00000000,0.00000000,0.00000000,0.00000000,1), -(802,1480,'rest-api','10.1.2',0,1,1,'',1,'wc_order_iXxg020I4MFYI',1,'2025-10-02 04:41:49','2025-10-03 19:49:56',0.00000000,0.00000000,0.00000000,0.00000000,1), -(812,1486,'rest-api','10.1.2',0,1,1,'',1,'wc_order_FDTK1LLFc0mQH',1,'2025-10-10 15:55:44','2025-10-16 11:02:40',0.00000000,0.00000000,0.00000000,0.00000000,1), -(821,1487,'rest-api','10.1.2',0,1,1,'',1,'wc_order_Mm0VszuGSBc1z',1,'2025-10-11 15:07:01','2025-10-16 11:02:19',0.00000000,0.00000000,0.00000000,0.00000000,1), -(830,1488,'rest-api','10.1.2',0,1,1,'',1,'wc_order_lJCicZuDoxLoU',1,'2025-10-12 14:50:29','2025-10-24 06:59:46',0.00000000,0.00000000,0.00000000,0.00000000,1), -(839,1489,'rest-api','10.1.2',0,1,1,'',1,'wc_order_rtSvHoOyNUO4z',1,'2025-10-12 21:04:26','2025-10-16 11:01:51',0.00000000,0.00000000,0.00000000,0.00000000,1), -(851,1490,'rest-api','10.1.2',0,1,1,'',1,'wc_order_v5sCoMUx7M0XR',1,'2025-10-18 13:36:45','2025-10-24 17:36:03',0.00000000,0.00000000,0.00000000,0.00000000,1), -(862,1496,'rest-api','10.3.4',0,1,1,'',1,'wc_order_ho6fTgA2QvT1H',1,'2025-11-02 19:40:07','2025-11-06 13:50:59',0.00000000,0.00000000,0.00000000,0.00000000,1), -(871,1498,'rest-api','10.3.4',0,1,1,'',1,'wc_order_QQyBWNoRZDeJ3',1,'2025-11-03 21:07:02','2025-11-06 13:52:51',0.00000000,0.00000000,0.00000000,0.00000000,1), -(880,1500,'rest-api','10.3.4',0,0,0,'',0,'wc_order_dPLyyR0p0dIzD',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(883,1501,'rest-api','10.3.4',0,0,0,'',0,'wc_order_Z8MEg1RMErly7',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(889,1511,'rest-api','10.3.4',0,1,1,'',1,'wc_order_1X0jbGfBTomn8',1,'2025-11-18 08:30:08','2025-11-24 18:30:32',0.00000000,0.00000000,0.00000000,0.00000000,1), -(898,1528,'rest-api','10.3.4',0,1,1,'',1,'wc_order_FDR4L7qSC2m0O',1,'2025-11-20 14:51:33','2025-11-24 18:30:04',0.00000000,0.00000000,0.00000000,0.00000000,1), -(907,1529,'rest-api','10.3.4',0,1,1,'',1,'wc_order_O530ZmwGlTVhU',1,'2025-11-24 09:53:37','2025-11-27 13:03:07',0.00000000,0.00000000,0.00000000,0.00000000,1), -(916,1530,'rest-api','10.3.4',0,1,1,'',1,'wc_order_r2kCMDrpxrJCS',1,'2025-11-24 17:44:42','2025-11-27 13:01:45',0.00000000,0.00000000,0.00000000,0.00000000,1), -(929,1540,'rest-api','10.3.4',0,1,1,'',1,'wc_order_gbPEi8vG9H6cf',1,'2025-11-30 21:33:39',NULL,0.00000000,3.00000000,0.00000000,0.00000000,1), -(938,1571,'rest-api','10.3.4',0,1,1,'',1,'wc_order_q2ZGlFt4jvMRD',1,'2025-12-02 09:21:54',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), -(947,1572,'rest-api','10.3.4',0,0,0,'',0,'wc_order_LJPajhIBoZaNN',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), -(950,1573,'rest-api','10.3.4',0,1,1,'',1,'wc_order_7l9zzRralyXHU',1,'2025-12-02 20:47:47',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1); -/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_product_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_product_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_product_lookup` ( - `order_item_id` bigint(20) unsigned NOT NULL, - `order_id` bigint(20) unsigned NOT NULL, - `product_id` bigint(20) unsigned NOT NULL, - `variation_id` bigint(20) unsigned NOT NULL, - `customer_id` bigint(20) unsigned DEFAULT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `product_qty` int(11) NOT NULL, - `product_net_revenue` double NOT NULL DEFAULT 0, - `product_gross_revenue` double NOT NULL DEFAULT 0, - `coupon_amount` double NOT NULL DEFAULT 0, - `tax_amount` double NOT NULL DEFAULT 0, - `shipping_amount` double NOT NULL DEFAULT 0, - `shipping_tax_amount` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_item_id`,`order_id`), - KEY `order_id` (`order_id`), - KEY `product_id` (`product_id`), - KEY `customer_id` (`customer_id`), - KEY `date_created` (`date_created`), - KEY `customer_product_date` (`customer_id`,`product_id`,`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_product_lookup` --- - -LOCK TABLES `haikuwp_wc_order_product_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_product_lookup` VALUES -(136,861,331,0,6,'2024-11-28 16:21:17',1,35,335,0,0,300,0), -(138,862,288,646,7,'2024-11-28 16:40:46',1,80,80,0,0,0,0), -(147,866,251,0,8,'2024-11-29 10:05:49',1,65,65,0,0,0,0), -(149,867,258,0,9,'2024-11-29 10:30:23',1,75,75,0,0,0,0), -(151,868,251,0,9,'2024-11-29 18:22:16',1,65,65,0,0,0,0), -(152,868,271,0,9,'2024-11-29 18:22:16',1,95,95,0,0,0,0), -(154,869,202,637,10,'2024-12-02 11:05:43',1,50,50,0,0,0,0), -(155,869,291,649,10,'2024-12-02 11:05:43',1,70,70,0,0,0,0), -(157,870,398,0,11,'2024-12-02 11:46:48',1,65,65,0,0,0,0), -(159,871,521,523,12,'2024-12-02 17:33:11',1,60,60,0,0,0,0), -(160,871,342,563,12,'2024-12-02 17:33:11',1,25,25,0,0,0,0), -(161,871,342,560,12,'2024-12-02 17:33:11',1,58,58,0,0,0,0), -(163,872,263,0,13,'2024-12-03 18:03:18',1,90,90,0,0,0,0), -(165,873,306,652,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), -(166,873,183,566,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), -(167,873,274,0,14,'2024-12-03 23:53:41',1,95,95,0,0,0,0), -(173,876,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), -(175,877,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), -(177,878,288,646,15,'2024-12-06 14:08:34',1,80,80,0,0,0,0), -(178,878,285,642,15,'2024-12-06 14:08:34',1,75,75,0,0,0,0), -(180,879,312,655,16,'2024-12-06 15:04:22',1,75,75,0,0,0,0), -(182,880,335,0,17,'2024-12-12 17:55:38',1,40,40,0,0,0,0), -(183,880,545,553,17,'2024-12-12 17:55:38',1,60,60,0,0,0,0), -(185,881,306,653,18,'2024-12-13 09:37:26',1,48,1248,0,0,1200,0), -(193,884,271,0,19,'2024-12-14 11:10:01',1,95,95,0,0,0,0), -(195,885,288,646,20,'2024-12-16 10:16:07',1,80,80,0,0,0,0), -(197,886,545,553,21,'2024-12-17 09:40:04',1,60,60,0,0,0,0), -(198,886,490,494,21,'2024-12-17 09:40:04',1,45,45,0,0,0,0), -(200,887,365,677,22,'2024-12-18 16:13:28',1,60,60,0,0,0,0), -(202,888,306,651,18,'2024-12-19 10:08:20',1,50,62,0,0,12,0), -(204,889,325,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), -(205,889,554,555,23,'2024-12-26 13:37:45',1,55,55,0,0,0,0), -(206,889,435,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), -(207,889,521,523,23,'2024-12-26 13:37:45',1,60,60,0,0,0,0), -(208,889,251,0,23,'2024-12-26 13:37:45',1,65,65,0,0,0,0), -(210,892,554,555,24,'2024-12-30 19:59:22',1,55,55,0,0,0,0), -(212,893,335,0,25,'2025-01-03 09:10:31',1,40,43,0,0,3,0), -(214,894,331,0,25,'2025-01-03 10:04:01',1,35,38,0,0,3,0), -(216,895,202,638,26,'2025-01-09 13:01:26',1,85,85,0,0,0,0), -(217,895,306,652,26,'2025-01-09 13:01:26',1,70,70,0,0,0,0), -(219,897,291,649,27,'2025-01-29 11:32:07',1,70,70,0,0,0,0), -(221,898,435,0,28,'2025-01-30 09:55:09',1,35,38,0,0,3,0), -(223,899,435,0,28,'2025-01-30 09:57:12',1,35,38,0,0,3,0), -(225,900,133,135,29,'2025-02-21 20:32:16',1,150,150,0,0,0,0), -(227,901,430,845,30,'2025-02-23 18:08:07',1,45,48,0,0,3,0), -(229,902,271,0,31,'2025-02-26 13:51:14',1,95,95,0,0,0,0), -(231,903,271,0,31,'2025-02-26 13:51:16',1,95,95,0,0,0,0), -(233,904,168,200,32,'2025-03-03 08:31:50',1,150,150,0,0,0,0), -(235,905,274,0,33,'2025-03-03 11:45:26',1,95,95,0,0,0,0), -(237,906,168,200,32,'2025-03-03 12:10:15',1,150,150,0,0,0,0), -(239,907,168,200,34,'2025-03-05 12:04:07',1,150,150,0,0,0,0), -(240,907,447,0,34,'2025-03-05 12:04:07',1,40,40,0,0,0,0), -(242,908,342,560,35,'2025-03-23 22:39:51',1,58,58,0,0,0,0), -(243,908,433,478,35,'2025-03-23 22:39:51',1,48,48,0,0,0,0), -(245,909,328,0,36,'2025-04-07 13:50:33',1,40,43,0,0,3,0), -(247,910,328,0,36,'2025-04-08 13:44:22',1,40,43,0,0,3,0), -(249,911,625,633,37,'2025-05-05 11:14:57',1,65,65,0,0,0,0), -(251,912,318,0,38,'2025-05-09 11:49:40',1,40,43,0,0,3,0), -(253,919,490,494,39,'2025-05-09 21:54:35',1,50,50,0,0,0,0), -(254,919,342,563,39,'2025-05-09 21:54:35',2,60,60,0,0,0,0), -(256,920,342,563,39,'2025-05-09 21:56:26',2,60,60,0,0,0,0), -(258,921,342,563,39,'2025-05-09 21:56:27',2,60,60,0,0,0,0), -(260,922,342,563,39,'2025-05-09 21:56:28',2,60,60,0,0,0,0), -(262,923,285,642,40,'2025-06-04 13:13:31',1,80,80,0,0,0,0), -(264,924,447,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), -(265,924,435,0,41,'2025-06-05 09:44:45',1,40,40,0,0,0,0), -(266,924,328,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), -(270,997,447,0,43,'2025-06-21 11:54:31',1,45,45,0,0,0,0), -(271,997,202,638,43,'2025-06-21 11:54:31',1,85,85,0,0,0,0), -(287,1013,1004,1005,49,'2025-07-14 14:37:48',1,70,70,0,0,0,0), -(288,1013,202,638,49,'2025-07-14 14:37:48',1,85,85,0,0,0,0), -(343,1443,554,555,53,'2025-09-17 20:11:56',1,65,65,0,0,0,0), -(344,1443,318,0,53,'2025-09-17 20:11:56',1,45,45,0,0,0,0), -(346,1480,1467,1468,54,'2025-10-02 06:39:01',1,120,120,0,0,0,0), -(348,1486,213,570,55,'2025-10-10 17:55:22',1,75,75,0,0,0,0), -(350,1487,342,560,55,'2025-10-11 17:06:39',1,55,55,0,0,0,0), -(352,1488,202,638,56,'2025-10-12 16:50:06',1,85,85,0,0,0,0), -(354,1489,202,638,7,'2025-10-12 23:03:18',1,85,85,0,0,0,0), -(356,1490,274,0,57,'2025-10-18 15:34:26',1,120,120,0,0,0,0), -(358,1496,306,651,58,'2025-11-02 20:39:02',1,50,50,0,0,0,0), -(359,1496,306,653,58,'2025-11-02 20:39:02',1,48,48,0,0,0,0), -(360,1496,285,642,58,'2025-11-02 20:39:02',1,85,85,0,0,0,0), -(362,1498,285,642,59,'2025-11-03 22:05:37',1,85,85,0,0,0,0), -(364,1500,385,391,60,'2025-11-04 18:02:34',2,240,240,0,0,0,0), -(366,1501,1444,1450,61,'2025-11-05 10:41:59',1,50,50,0,0,0,0), -(473,1511,1467,1469,62,'2025-11-18 09:29:10',1,120,120,0,0,0,0), -(475,1528,1516,0,63,'2025-11-20 15:49:47',1,50,50,0,0,0,0), -(477,1529,766,0,64,'2025-11-24 10:50:48',1,85,85,0,0,0,0), -(479,1530,202,638,65,'2025-11-24 18:43:34',1,85,85,0,0,0,0), -(481,1540,435,0,66,'2025-11-30 22:29:07',1,40,43,0,0,3,0), -(483,1571,1512,0,10,'2025-12-02 10:20:29',1,50,50,0,0,0,0), -(484,1571,318,0,10,'2025-12-02 10:20:29',1,45,45,0,0,0,0), -(486,1572,1512,0,67,'2025-12-02 21:46:36',1,50,50,0,0,0,0), -(488,1573,1512,0,67,'2025-12-02 21:47:29',1,50,50,0,0,0,0); -/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_stats` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_stats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_stats` ( - `order_id` bigint(20) unsigned NOT NULL, - `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_paid` datetime DEFAULT '0000-00-00 00:00:00', - `date_completed` datetime DEFAULT '0000-00-00 00:00:00', - `num_items_sold` int(11) NOT NULL DEFAULT 0, - `total_sales` double NOT NULL DEFAULT 0, - `tax_total` double NOT NULL DEFAULT 0, - `shipping_total` double NOT NULL DEFAULT 0, - `net_total` double NOT NULL DEFAULT 0, - `returning_customer` tinyint(1) DEFAULT NULL, - `status` varchar(20) NOT NULL, - `customer_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`order_id`), - KEY `date_created` (`date_created`), - KEY `customer_id` (`customer_id`), - KEY `status` (`status`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_stats` --- - -LOCK TABLES `haikuwp_wc_order_stats` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_stats` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_order_stats` VALUES -(861,0,'2024-11-28 16:21:17','2024-11-28 15:21:17','2024-11-28 18:00:31',NULL,1,335,0,300,35,0,'wc-pending',6), -(862,0,'2024-11-28 16:40:46','2024-11-28 15:40:46','2024-11-28 16:42:54',NULL,1,80,0,0,80,0,'wc-processing',7), -(866,0,'2024-11-29 10:05:49','2024-11-29 09:05:49','2024-11-29 10:07:39',NULL,1,65,0,0,65,0,'wc-processing',8), -(867,0,'2024-11-29 10:30:23','2024-11-29 09:30:23',NULL,NULL,1,75,0,0,75,0,'wc-pending',9), -(868,0,'2024-11-29 18:22:16','2024-11-29 17:22:16','2024-11-29 18:26:38',NULL,2,160,0,0,160,0,'wc-processing',9), -(869,0,'2024-12-02 11:05:43','2024-12-02 10:05:43','2024-12-02 11:06:46',NULL,2,120,0,0,120,0,'wc-processing',10), -(870,0,'2024-12-02 11:46:48','2024-12-02 10:46:48',NULL,NULL,1,65,0,0,65,0,'wc-pending',11), -(871,0,'2024-12-02 17:33:11','2024-12-02 16:33:11','2024-12-02 17:34:12',NULL,3,143,0,0,143,0,'wc-processing',12), -(872,0,'2024-12-03 18:03:18','2024-12-03 17:03:18','2024-12-03 18:04:43',NULL,1,90,0,0,90,0,'wc-processing',13), -(873,0,'2024-12-03 23:53:41','2024-12-03 22:53:41','2024-12-03 23:55:58',NULL,3,235,0,0,235,0,'wc-processing',14), -(876,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), -(877,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), -(878,0,'2024-12-06 14:08:34','2024-12-06 13:08:34','2024-12-06 14:10:02','2024-12-12 23:07:33',2,155,0,0,155,0,'wc-completed',15), -(879,0,'2024-12-06 15:04:22','2024-12-06 14:04:22','2024-12-06 15:22:12','2024-12-12 22:43:42',1,75,0,0,75,0,'wc-completed',16), -(880,0,'2024-12-12 17:55:38','2024-12-12 16:55:38','2024-12-12 17:59:06','2024-12-15 10:59:40',2,100,0,0,100,0,'wc-refunded',17), -(881,0,'2024-12-13 09:37:26','2024-12-13 08:37:26','2024-12-13 09:39:25','2024-12-16 15:13:34',1,1248,0,1200,48,0,'wc-completed',18), -(884,0,'2024-12-14 11:10:01','2024-12-14 10:10:01','2024-12-14 11:10:27','2024-12-16 15:13:01',1,95,0,0,95,0,'wc-refunded',19), -(885,0,'2024-12-16 10:16:07','2024-12-16 09:16:07','2024-12-16 10:17:25','2024-12-18 18:19:19',1,80,0,0,80,0,'wc-completed',20), -(886,0,'2024-12-17 09:40:04','2024-12-17 08:40:04','2024-12-17 09:40:36','2024-12-18 18:16:40',2,105,0,0,105,0,'wc-completed',21), -(887,0,'2024-12-18 16:13:28','2024-12-18 15:13:28','2024-12-18 16:14:07','2024-12-31 12:59:52',1,60,0,0,60,0,'wc-completed',22), -(888,0,'2024-12-19 10:08:20','2024-12-19 09:08:20','2024-12-19 10:09:28','2024-12-20 19:55:34',1,62,0,12,50,1,'wc-completed',18), -(889,0,'2024-12-26 13:37:45','2024-12-26 12:37:45','2024-12-26 13:41:16','2024-12-31 12:59:03',5,250,0,0,250,0,'wc-completed',23), -(890,888,'2024-12-29 15:53:20','2024-12-29 14:53:20','2024-12-29 15:53:20','2024-12-29 15:53:20',0,-12,0,0,-12,NULL,'wc-completed',18), -(891,880,'2024-12-30 11:40:43','2024-12-30 10:40:43','2024-12-30 11:40:43','2024-12-30 11:40:43',0,-100,0,0,-100,NULL,'wc-refunded',17), -(892,0,'2024-12-30 19:59:22','2024-12-30 18:59:22',NULL,NULL,1,55,0,0,55,0,'wc-pending',24), -(893,0,'2025-01-03 09:10:31','2025-01-03 08:10:31',NULL,NULL,1,43,0,3,40,0,'wc-pending',25), -(894,0,'2025-01-03 10:04:01','2025-01-03 09:04:01','2025-01-03 10:04:36','2025-01-07 15:56:35',1,38,0,3,35,0,'wc-completed',25), -(895,0,'2025-01-09 13:01:26','2025-01-09 12:01:26','2025-01-09 13:03:17','2025-01-14 20:47:45',2,155,0,0,155,0,'wc-completed',26), -(896,884,'2025-01-23 22:51:50','2025-01-23 21:51:50','2025-01-23 22:51:50','2025-01-23 22:51:50',0,-95,0,0,-95,NULL,'wc-refunded',19), -(897,0,'2025-01-29 11:32:07','2025-01-29 10:32:07','2025-01-29 11:33:02','2025-02-03 18:36:19',1,70,0,0,70,0,'wc-completed',27), -(898,0,'2025-01-30 09:55:09','2025-01-30 08:55:09',NULL,NULL,1,38,0,3,35,0,'wc-pending',28), -(899,0,'2025-01-30 09:57:12','2025-01-30 08:57:12','2025-01-30 09:57:26','2025-02-03 18:37:02',1,38,0,3,35,0,'wc-completed',28), -(900,0,'2025-02-21 20:32:16','2025-02-21 19:32:16',NULL,NULL,1,150,0,0,150,0,'wc-pending',29), -(901,0,'2025-02-23 18:08:07','2025-02-23 17:08:07','2025-02-23 18:08:48',NULL,1,48,0,3,45,0,'wc-processing',30), -(902,0,'2025-02-26 13:51:14','2025-02-26 12:51:14',NULL,NULL,1,95,0,0,95,0,'wc-pending',31), -(903,0,'2025-02-26 13:51:16','2025-02-26 12:51:16','2025-02-26 13:53:34','2025-03-01 09:14:27',1,95,0,0,95,0,'wc-completed',31), -(904,0,'2025-03-03 08:31:50','2025-03-03 07:31:50',NULL,NULL,1,150,0,0,150,0,'wc-pending',32), -(905,0,'2025-03-03 11:45:26','2025-03-03 10:45:26','2025-03-03 11:46:58','2025-03-06 09:24:33',1,95,0,0,95,0,'wc-completed',33), -(906,0,'2025-03-03 12:10:15','2025-03-03 11:10:15','2025-03-03 12:11:31','2025-03-06 09:25:36',1,150,0,0,150,0,'wc-completed',32), -(907,0,'2025-03-05 12:04:07','2025-03-05 11:04:07','2025-03-05 12:05:44','2025-03-18 10:40:39',2,190,0,0,190,0,'wc-completed',34), -(908,0,'2025-03-23 22:39:51','2025-03-23 21:39:51','2025-03-23 22:41:40','2025-04-04 08:41:39',2,106,0,0,106,0,'wc-completed',35), -(909,0,'2025-04-07 13:50:33','2025-04-07 11:50:33',NULL,NULL,1,43,0,3,40,0,'wc-pending',36), -(910,0,'2025-04-08 13:44:22','2025-04-08 11:44:22','2025-04-08 13:45:10','2025-05-11 15:35:32',1,43,0,3,40,0,'wc-completed',36), -(911,0,'2025-05-05 11:14:57','2025-05-05 09:14:57',NULL,NULL,1,65,0,0,65,0,'wc-pending',37), -(912,0,'2025-05-09 11:49:40','2025-05-09 09:49:40','2025-05-09 11:50:57','2025-05-16 07:54:00',1,43,0,3,40,0,'wc-completed',38), -(919,0,'2025-05-09 21:54:35','2025-05-09 19:54:35',NULL,NULL,3,110,0,0,110,0,'wc-pending',39), -(920,0,'2025-05-09 21:56:26','2025-05-09 19:56:26',NULL,NULL,2,60,0,0,60,0,'wc-pending',39), -(921,0,'2025-05-09 21:56:27','2025-05-09 19:56:27','2025-05-09 21:57:36','2025-05-16 07:54:26',2,60,0,0,60,0,'wc-completed',39), -(922,0,'2025-05-09 21:56:28','2025-05-09 19:56:28','2025-05-16 07:54:37','2025-05-16 07:55:04',2,60,0,0,60,1,'wc-completed',39), -(923,0,'2025-06-04 13:13:31','2025-06-04 11:13:31',NULL,NULL,1,80,0,0,80,0,'wc-pending',40), -(924,0,'2025-06-05 09:44:45','2025-06-05 07:44:45','2025-06-05 09:45:48','2025-06-09 12:59:56',3,130,0,0,130,0,'wc-completed',41), -(997,0,'2025-06-21 11:54:31','2025-06-21 09:54:31','2025-06-21 11:56:06','2025-06-28 16:32:24',2,130,0,0,130,0,'wc-completed',43), -(1013,0,'2025-07-14 14:37:48','2025-07-14 12:37:48','2025-07-14 14:39:22','2025-07-16 10:59:09',2,155,0,0,155,0,'wc-completed',49), -(1443,0,'2025-09-17 20:11:56','2025-09-17 18:11:56','2025-09-17 20:13:40','2025-09-23 11:29:46',2,110,0,0,110,0,'wc-completed',53), -(1480,0,'2025-10-02 06:39:01','2025-10-02 04:39:01','2025-10-02 06:41:49','2025-10-03 21:49:56',1,120,0,0,120,0,'wc-completed',54), -(1486,0,'2025-10-10 17:55:22','2025-10-10 15:55:22','2025-10-10 17:55:44','2025-10-16 13:02:40',1,75,0,0,75,0,'wc-completed',55), -(1487,0,'2025-10-11 17:06:39','2025-10-11 15:06:39','2025-10-11 17:07:01','2025-10-16 13:02:19',1,55,0,0,55,1,'wc-completed',55), -(1488,0,'2025-10-12 16:50:06','2025-10-12 14:50:06','2025-10-12 16:50:29','2025-10-24 08:59:46',1,85,0,0,85,0,'wc-completed',56), -(1489,0,'2025-10-12 23:03:18','2025-10-12 21:03:18','2025-10-12 23:04:26','2025-10-16 13:01:51',1,85,0,0,85,1,'wc-completed',7), -(1490,0,'2025-10-18 15:34:26','2025-10-18 13:34:26','2025-10-18 15:36:45','2025-10-24 19:36:03',1,120,0,0,120,0,'wc-completed',57), -(1496,0,'2025-11-02 20:39:02','2025-11-02 19:39:02','2025-11-02 20:40:07','2025-11-06 14:50:59',3,183,0,0,183,0,'wc-completed',58), -(1498,0,'2025-11-03 22:05:37','2025-11-03 21:05:37','2025-11-03 22:07:02','2025-11-06 14:52:51',1,85,0,0,85,0,'wc-completed',59), -(1500,0,'2025-11-04 18:02:34','2025-11-04 17:02:34',NULL,NULL,2,240,0,0,240,0,'wc-pending',60), -(1501,0,'2025-11-05 10:41:59','2025-11-05 09:41:59',NULL,NULL,1,50,0,0,50,0,'wc-pending',61), -(1511,0,'2025-11-18 09:29:10','2025-11-18 08:29:10','2025-11-18 09:30:08','2025-11-24 19:30:32',1,120,0,0,120,0,'wc-completed',62), -(1528,0,'2025-11-20 15:49:47','2025-11-20 14:49:47','2025-11-20 15:51:33','2025-11-24 19:30:04',1,50,0,0,50,0,'wc-completed',63), -(1529,0,'2025-11-24 10:50:48','2025-11-24 09:50:48','2025-11-24 10:53:37','2025-11-27 14:03:07',1,85,0,0,85,0,'wc-completed',64), -(1530,0,'2025-11-24 18:43:34','2025-11-24 17:43:34','2025-11-24 18:44:42','2025-11-27 14:01:45',1,85,0,0,85,0,'wc-completed',65), -(1540,0,'2025-11-30 22:29:07','2025-11-30 21:29:07','2025-11-30 22:33:39',NULL,1,43,0,3,40,0,'wc-processing',66), -(1571,0,'2025-12-02 10:20:29','2025-12-02 09:20:29','2025-12-02 10:21:54',NULL,2,95,0,0,95,1,'wc-processing',10), -(1572,0,'2025-12-02 21:46:36','2025-12-02 20:46:36',NULL,NULL,1,50,0,0,50,0,'wc-pending',67), -(1573,0,'2025-12-02 21:47:29','2025-12-02 20:47:29','2025-12-02 21:47:47',NULL,1,50,0,0,50,0,'wc-processing',67); -/*!40000 ALTER TABLE `haikuwp_wc_order_stats` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_order_tax_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_order_tax_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_order_tax_lookup` ( - `order_id` bigint(20) unsigned NOT NULL, - `tax_rate_id` bigint(20) unsigned NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `shipping_tax` double NOT NULL DEFAULT 0, - `order_tax` double NOT NULL DEFAULT 0, - `total_tax` double NOT NULL DEFAULT 0, - PRIMARY KEY (`order_id`,`tax_rate_id`), - KEY `tax_rate_id` (`tax_rate_id`), - KEY `date_created` (`date_created`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_order_tax_lookup` --- - -LOCK TABLES `haikuwp_wc_order_tax_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_orders` --- - -DROP TABLE IF EXISTS `haikuwp_wc_orders`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_orders` ( - `id` bigint(20) unsigned NOT NULL, - `status` varchar(20) DEFAULT NULL, - `currency` varchar(10) DEFAULT NULL, - `type` varchar(20) DEFAULT NULL, - `tax_amount` decimal(26,8) DEFAULT NULL, - `total_amount` decimal(26,8) DEFAULT NULL, - `customer_id` bigint(20) unsigned DEFAULT NULL, - `billing_email` varchar(320) DEFAULT NULL, - `date_created_gmt` datetime DEFAULT NULL, - `date_updated_gmt` datetime DEFAULT NULL, - `parent_order_id` bigint(20) unsigned DEFAULT NULL, - `payment_method` varchar(100) DEFAULT NULL, - `payment_method_title` text DEFAULT NULL, - `transaction_id` varchar(100) DEFAULT NULL, - `ip_address` varchar(100) DEFAULT NULL, - `user_agent` text DEFAULT NULL, - `customer_note` text DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `status` (`status`), - KEY `date_created` (`date_created_gmt`), - KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)), - KEY `billing_email` (`billing_email`(191)), - KEY `type_status_date` (`type`,`status`,`date_created_gmt`), - KEY `parent_order_id` (`parent_order_id`), - KEY `date_updated` (`date_updated_gmt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_orders` --- - -LOCK TABLES `haikuwp_wc_orders` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_orders` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_orders` VALUES -(861,'wc-pending','EUR','shop_order',0.00000000,335.00000000,0,'charlottegerard7@gmail.com','2024-11-28 15:21:17','2024-11-28 19:40:39',0,'','','','','',''), -(862,'wc-processing','EUR','shop_order',0.00000000,80.00000000,0,'sofia.balducci99@gmail.com','2024-11-28 15:40:46','2024-12-04 08:33:07',0,'','','cs_live_a1svQoVpQTAiSee2hdTTRsnPYQaQXDq7RNxaNg90PXi3YyGZtLHzO34Ci0','','',''), -(866,'wc-processing','EUR','shop_order',0.00000000,65.00000000,0,'claudia.vanvynckt@hotmail.fr','2024-11-29 09:05:49','2024-11-29 09:07:40',0,'','','cs_live_a1d08FUjZ9BRf9odbxjxgKnG6B1B6qh8sXCNcDnQ4iYPYGuJO0eDUYFPza','','',''), -(867,'wc-pending','EUR','shop_order',0.00000000,75.00000000,0,'lucie.leiner@gmail.com','2024-11-29 09:30:23','2024-11-29 09:30:23',0,'','','','','',''), -(868,'wc-processing','EUR','shop_order',0.00000000,160.00000000,0,'lucie.leiner@gmail.com','2024-11-29 17:22:16','2024-11-29 17:26:38',0,'','','cs_live_b1rl5EdRJzCtNzMlKISIV6pLx1QoXSQKMRMJLT0kSRouevb2zQ23nyaBQb','','',''), -(869,'wc-processing','EUR','shop_order',0.00000000,120.00000000,0,'maroufin.claire@gmail.com','2024-12-02 10:05:43','2024-12-02 10:06:46',0,'','','cs_live_b10JaBeyOWGNedl3gG765YEShS8lZHA9A4aKS95LgAKh6qZXQnCIVSljQS','','',''), -(870,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'gilquinpeggy@gmail.com','2024-12-02 10:46:48','2024-12-02 10:46:48',0,'','','','','',''), -(871,'wc-processing','EUR','shop_order',0.00000000,143.00000000,0,'v.cubier@gmail.com','2024-12-02 16:33:11','2024-12-02 16:34:13',0,'','','cs_live_b1NkHwimGQsZ4QkEAqe9CDnUr1DXp6W3PJtiypSTl7tbdlpNdixwfKayy5','','',''), -(872,'wc-processing','EUR','shop_order',0.00000000,90.00000000,0,'choploone@gmail.com','2024-12-03 17:03:18','2024-12-03 17:04:44',0,'','','cs_live_a1N24p77v8EyXK9ZJym9WKpN0L9d7nn8TKiG51ukP3wcHGOIEEO7JVRYkc','','',''), -(873,'wc-processing','EUR','shop_order',0.00000000,235.00000000,0,'maren.sigge@gmail.com','2024-12-03 22:53:41','2024-12-03 22:55:59',0,'','','cs_live_b1d2FCt4FYyGLsCPq20mViayd4OQXAn1eBfe3z3UOZQbCZk02byhZw8uRp','','',''), -(876,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:13',0,'','','','','',''), -(877,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:14',0,'','','','','',''), -(878,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:08:34','2024-12-15 09:35:41',0,'','','cs_live_a12SLRUpoI738BH0BJvY39tzXRBmbhmx4dty8MkdfmxlOrSNwqzi0LIs0w','','',''), -(879,'wc-completed','EUR','shop_order',0.00000000,75.00000000,0,'julien.martial@hotmail.com','2024-12-06 14:04:22','2024-12-12 21:48:29',0,'','','cs_live_a10cY6oxXXTqiNMNGXdIqBStIF4rxjTJ4nFAApF14ug4df1ubvsJBCkEnB','','',''), -(880,'wc-refunded','EUR','shop_order',0.00000000,100.00000000,0,'c.saquetbossu@orange.fr','2024-12-12 16:55:38','2024-12-30 10:40:50',0,'','','cs_live_b1rQKvEwBHzNanBG70EG9Xg1BMcfxjxlsIKvnNwLHSGcMeRRVFusIv82xu','','',''), -(881,'wc-completed','EUR','shop_order',0.00000000,1248.00000000,0,'lili.chabin@gmail.com','2024-12-13 08:37:26','2024-12-16 14:13:34',0,'','','cs_live_a1QOrbZvz7NPHCy1AONKDEPoNfNniuLqi8S8mO1So5xlfcxP3s7A8u1saJ','','',''), -(884,'wc-refunded','EUR','shop_order',0.00000000,95.00000000,0,'vsmarchand24@gmail.com','2024-12-14 10:10:01','2025-01-23 21:51:50',0,'','','cs_live_a1KhJ0JraBn277imcg61syatlwfwXUqRSgH0si1UywNXQnnaaPQUXCb6Ye','','',''), -(885,'wc-completed','EUR','shop_order',0.00000000,80.00000000,0,'antoine.der92@gmail.com','2024-12-16 09:16:07','2024-12-18 17:19:19',0,'','','cs_live_a15teMmPCgaffuRSOljLOuFl7R0GhHVDHuyCLh83Exs5EGs76RhR2Z6slN','','',''), -(886,'wc-completed','EUR','shop_order',0.00000000,105.00000000,0,'ella_cherry@hotmail.fr','2024-12-17 08:40:04','2024-12-18 17:16:40',0,'','','cs_live_b10gtoDEAZtugeUUybNRQU286vrPQm9SKRxovq17jyT5JSibTAZI8TyH9b','','',''), -(887,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'elsa.dumontel@gmail.com','2024-12-18 15:13:28','2024-12-31 11:59:52',0,'','','cs_live_a1kBdlYdcEX5glITE5cxLtkjEsemFaIVNJZDW641JlnkljMEjyrssTNJXo','','',''), -(888,'wc-completed','EUR','shop_order',0.00000000,62.00000000,0,'lili.chabin@gmail.com','2024-12-19 09:08:20','2024-12-29 14:53:29',0,'','','cs_live_a1ktP4tLyzgYY305YJGum3L8hu9N9qrPbOfeswgsBRyMSSge3yTL8atXEg','','',''), -(889,'wc-completed','EUR','shop_order',0.00000000,250.00000000,0,'melian.jacob@free.fr','2024-12-26 12:37:45','2024-12-31 11:59:03',0,'','','cs_live_b1sWkcR5ha10Ro3rgV3FqEQxvD40aB2mbqw6Plaq8I6nrBx1xYUPN6URYb','','',''), -(890,'wc-completed','EUR','shop_order_refund',0.00000000,-12.00000000,NULL,NULL,'2024-12-29 14:53:20','2025-11-03 09:34:42',888,NULL,NULL,NULL,NULL,NULL,NULL), -(891,'wc-completed','EUR','shop_order_refund',0.00000000,-100.00000000,NULL,NULL,'2024-12-30 10:40:43','2025-11-03 09:34:42',880,NULL,NULL,NULL,NULL,NULL,NULL), -(892,'wc-pending','EUR','shop_order',0.00000000,55.00000000,0,'camillelacroix715@gmail.com','2024-12-30 18:59:22','2024-12-30 18:59:22',0,'','','','','',''), -(893,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 08:10:31','2025-01-03 08:10:31',0,'','','','','',''), -(894,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 09:04:01','2025-01-07 14:56:35',0,'','','cs_live_a1bOBwoGtGQUtjrFiFgIaZqD3pvXjvB1bCVVa63MDqORXOtYmWf5qsFFCy','','',''), -(895,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'tiberi.marine@gmail.com','2025-01-09 12:01:26','2025-01-14 19:47:45',0,'','','cs_live_b1qXQzunVuNopx9KHrAAgcQpNKmmLwshMwKQgiK94CJpAC1peepjzzgw88','','',''), -(896,'wc-completed','EUR','shop_order_refund',0.00000000,-95.00000000,NULL,NULL,'2025-01-23 21:51:50','2025-11-03 09:34:42',884,NULL,NULL,NULL,NULL,NULL,NULL), -(897,'wc-completed','EUR','shop_order',0.00000000,70.00000000,0,'alicetabernat@yahoo.fr','2025-01-29 10:32:07','2025-02-03 17:36:19',0,'','','cs_live_a11g0bnfWPAfwbgPcGsp2nFjPkaTqz9TKjUKCgkotTDle31gqp2t5DIFXr','','',''), -(898,'wc-pending','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:55:09','2025-01-30 08:55:09',0,'','','','','',''), -(899,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:57:12','2025-02-03 17:37:02',0,'','','cs_live_a1QPvqbvcYzHtXWCvDchaoX8yKphpHA8aFUvZtEC5wxfw1C2SX0RI7XmOB','','',''), -(900,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'parisnoune@gmail.com','2025-02-21 19:32:16','2025-02-21 19:32:16',0,'','','','','',''), -(901,'wc-processing','EUR','shop_order',0.00000000,48.00000000,0,'owenoneill2727@gmail.com','2025-02-23 17:08:07','2025-02-23 17:08:49',0,'','','cs_live_a1GFHeWtsHUJuYz6QaJ9ys4MjurDGI6i43iKN9eG0SnFqknxjaMSLGJOez','','',''), -(902,'wc-pending','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:14','2025-02-26 12:51:15',0,'','','','','',''), -(903,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:16','2025-03-01 08:14:27',0,'','','cs_live_a1mFOyZPMm14pK57DdGIKZwTO4W8ZCatZvZWCNpF5xUC4ycLVAmKhDUrsA','','',''), -(904,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 07:31:50','2025-03-03 07:31:50',0,'','','','','',''), -(905,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'amelie.grx@gmail.com','2025-03-03 10:45:26','2025-03-06 08:24:33',0,'','','cs_live_a1aPByBFzbZyfbQTxL6nzu92j7iKkvl5if69zqaMEp5QJrQGPHjEimbMoK','','',''), -(906,'wc-completed','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 11:10:15','2025-03-06 08:25:36',0,'','','cs_live_a1LEJpJwearhfR2b7iPVKdUfymrbDp00VvSuR9qqkFdxuoo1TseDdGWSsj','','',''), -(907,'wc-completed','EUR','shop_order',0.00000000,190.00000000,0,'raphael.kuderpro@gmail.com','2025-03-05 11:04:07','2025-03-18 09:40:39',0,'','','cs_live_b11qrZzpZitWqhRsaz4pR9avf8eXD1nF5lEZ31cfuXZWYMn1ucJOUZL2tc','','',''), -(908,'wc-completed','EUR','shop_order',0.00000000,106.00000000,0,'evemarie.redouin@gmail.com','2025-03-23 21:39:51','2025-04-04 06:41:39',0,'','','cs_live_b1YqdwNaPbu9CWfGSQrpINirWmEMehRQzmYRJ3xJ0DCu8Tpmftcvyrx4My','','',''), -(909,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-07 11:50:33','2025-04-07 11:50:33',0,'','','','','',''), -(910,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-08 11:44:22','2025-05-11 13:35:32',0,'','','cs_live_a1M1AbVhpNayddsFHKmFfBx4whULHHouxQwRAvpuYm1sIXUlKfd0GItHWH','','',''), -(911,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'lol@mdr.fr','2025-05-05 09:14:57','2025-05-05 09:14:57',0,'','','','','',''), -(912,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'crack_one@hotmail.fr','2025-05-09 09:49:40','2025-05-16 05:54:00',0,'','','cs_live_a1H92o6VYyvx7aHJeAQmk1Pmd0IRjxqiuCRVy9CJKOHwNgUajseeOZV5GJ','','',''), -(919,'wc-pending','EUR','shop_order',0.00000000,110.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:54:35','2025-05-09 19:54:35',0,'','','','','',''), -(920,'wc-pending','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:26','2025-05-09 19:56:26',0,'','','','','',''), -(921,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:27','2025-05-16 05:54:26',0,'','','cs_live_a1BfsTQJFzp4sAD4M7ttoO0LVJLncUDjxVj0jfYnFYqfjvJfHKLu3aFhIm','','',''), -(922,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:28','2025-05-16 05:55:04',0,'','','','','',''), -(923,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'zafiria.efstratiadi@hotmail.com','2025-06-04 11:13:31','2025-06-04 11:13:31',0,'','','','','',''), -(924,'wc-completed','EUR','shop_order',0.00000000,130.00000000,0,'laurentpvcapelo@gmail.com','2025-06-05 07:44:45','2025-06-09 10:59:56',0,'','','cs_live_b1PVvGzhCZzxaRp4uSOYQcsRnC1RuZlyZoFqK0LZJQo2zkoU41vdXerJkw','','',''), -(997,'wc-completed','EUR','shop_order',0.00000000,130.00000000,0,NULL,'2025-06-21 09:54:31','2025-06-28 14:32:24',0,'','','cs_live_b1sjjD9YUm2JJIRUEYnmIQVeqq5HJg4fA08WLC163mheZO7PdHRO2Po4qk','','',''), -(1013,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'mia.mueller07@gmail.com','2025-07-14 12:37:48','2025-07-16 08:59:09',0,'','','cs_live_b1rGXdBJzH9twzs4r6WMVuyBsDfN31w9pvSivz4cUCWoaNJaVOkOVQq1ON','','',''), -(1443,'wc-completed','EUR','shop_order',0.00000000,110.00000000,0,'myrthe.meylaerts@gmail.com','2025-09-17 18:11:56','2025-09-23 09:29:46',0,'','','cs_live_b1dZqZWJT6QIwtLXz6zpijqnSbNi7AyJuStnsm0MJcg5wjD0lj21JIT58L','','',''), -(1480,'wc-completed','EUR','shop_order',0.00000000,120.00000000,0,'alexandraboubou2@gmail.com','2025-10-02 04:39:01','2025-10-03 19:49:56',0,'','','cs_live_a1d6tAIVld1UYClogv9eoWtMDgFprofFxy7hFFzPqYYEIRgMNzS5TSVNHu','','',''), -(1486,'wc-completed','EUR','shop_order',0.00000000,75.00000000,0,'theohuchet@laposte.net','2025-10-10 15:55:22','2025-10-16 11:02:40',0,'','','cs_live_a1FEU0ujTPYMTO7dbmdNn2ns42qUWEdUMrRmp1SpOqAbt1iCyxeW16FoPt','','',''), -(1487,'wc-completed','EUR','shop_order',0.00000000,55.00000000,0,'theohuchet@laposte.net','2025-10-11 15:06:39','2025-10-16 11:02:19',0,'','','cs_live_a1fbvWNWr3eWEXIZj3pfOYvj8MaJb9B9DEeFK2acqbidq0lPFKr1YWIEcW','','',''), -(1488,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'pauline.duboi96@gmail.com','2025-10-12 14:50:06','2025-10-24 06:59:46',0,'','','cs_live_a1cyRwsxqirnyEQ8iZ9Yp1IGumAj1dM91sUnYSxXzsYbt5XiBmXiQtokHf','','',''), -(1489,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'sofia.balducci99@gmail.com','2025-10-12 21:03:18','2025-10-16 11:01:51',0,'','','cs_live_a1xBKNpPKVffrCrl7tDwQQD3viFuqzwqUAXqMXBLWakGH0ipiOnzHn0IrK','','',''), -(1490,'wc-completed','EUR','shop_order',0.00000000,120.00000000,0,'bram.degieter@telenet.be','2025-10-18 13:34:26','2025-10-24 17:36:03',0,'','','cs_live_a1L9LCv7lSYX1gsY7oQbVrGqJN2AZLyjChZRdRK7ku4oI4EW5vZmxCTaqk','','','The necklace is a gift, so it would be nice that it is wrapped :)'), -(1496,'wc-completed','EUR','shop_order',0.00000000,183.00000000,0,'charlotte.chabin@gmail.com','2025-11-02 19:39:02','2025-11-06 13:50:59',0,'','','cs_live_b1zZOIKIH0LygTv6CVhy3lB7qEvG4ElbmDH5GlOOX1ltN9RGkAEH5JF6tw','','',''), -(1498,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'daphnethomass@hotmail.com','2025-11-03 21:05:37','2025-11-06 13:52:51',0,'','','cs_live_a13EaeLRtyYNbrUEtXGYMgeINXdEG2hMCr9ixQnxZoJwUeawVYRxzqNyoQ','','',''), -(1500,'trash','EUR','shop_order',0.00000000,240.00000000,0,'contact@gcch.fr','2025-11-04 17:02:34','2025-11-06 10:09:00',0,'','','','','',''), -(1501,'trash','EUR','shop_order',0.00000000,50.00000000,0,'lol@gcch.fr','2025-11-05 09:41:59','2025-11-06 10:09:00',0,'','','','','',''), -(1511,'wc-completed','EUR','shop_order',0.00000000,120.00000000,0,'paulamicel@gmail.com','2025-11-18 08:29:10','2025-11-24 18:30:32',0,'','','cs_live_a1Pm9zC1mhHI7I4LNvZ6yFzcvpvVaIyS7Jkd4JZrIecG1Dkg4z6svhlS2h','','',''), -(1528,'wc-completed','EUR','shop_order',0.00000000,50.00000000,0,'mapignot@gmail.com','2025-11-20 14:49:47','2025-11-24 18:30:04',0,'','','cs_live_a1hapGkZPSNBAWHRmKKZZFkDl5YhqVgHa3Fzw2eXWTkkAl6sL1Uh6WBTVJ','','',''), -(1529,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'anabela_angeiras@yahoo.fr','2025-11-24 09:50:48','2025-11-27 13:03:07',0,'','','cs_live_a1J504iPrDlASS5uwlconlGf3AVh9Q2dPHiiTrGs0l2dzwAdNj58EGVBvy','','',''), -(1530,'wc-completed','EUR','shop_order',0.00000000,85.00000000,0,'karen.plasschaert@gmail.com','2025-11-24 17:43:34','2025-11-27 13:01:45',0,'','','cs_live_a1tFACy2vzenqHAewzINizSqm7dHV48jGiw2KUi0Q2BwC6MWX42eMyWgTs','','',''), -(1540,'wc-processing','EUR','shop_order',0.00000000,43.00000000,0,'annaebosson@gmail.com','2025-11-30 21:29:07','2025-11-30 21:33:40',0,'','','cs_live_a1G1fFWG7YCRyRJaM7FujXYcPSWyK9ztjPsLp7h3qR4yLKvGmbuVUhhFc3','','',''), -(1571,'wc-processing','EUR','shop_order',0.00000000,95.00000000,0,'maroufin.claire@gmail.com','2025-12-02 09:20:29','2025-12-02 09:21:54',0,'','','cs_live_b1k7BygV2uFnEclXsyniRFFpONoaG7UqkmtGMXRmc5gUc0upLUjPMfbP3D','','',''), -(1572,'wc-pending','EUR','shop_order',0.00000000,50.00000000,0,'penelope.jourdain@gmail.com','2025-12-02 20:46:36','2025-12-02 20:46:36',0,'','','','','',''), -(1573,'wc-processing','EUR','shop_order',0.00000000,50.00000000,0,'penelope.jourdain@gmail.com','2025-12-02 20:47:29','2025-12-02 20:47:48',0,'','','cs_live_a1nDEiC2YJyqQy1PhaDuHkLQt277WyvtIbtOZMfNhEwjO3CugA1NewrUro','','',''); -/*!40000 ALTER TABLE `haikuwp_wc_orders` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_orders_meta` --- - -DROP TABLE IF EXISTS `haikuwp_wc_orders_meta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_orders_meta` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_id` bigint(20) unsigned DEFAULT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` text DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)), - KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82)) -) ENGINE=InnoDB AUTO_INCREMENT=584 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_orders_meta` --- - -LOCK TABLES `haikuwp_wc_orders_meta` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_orders_meta` VALUES -(190,861,'_billing_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE charlottegerard7@gmail.com 0498836916'), -(191,861,'_shipping_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE 0498836916'), -(192,862,'_billing_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR sofia.balducci99@gmail.com +393470972182'), -(193,862,'_shipping_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR +393470972182'), -(194,861,'_edit_lock','1732822840:1'), -(204,862,'_edit_lock','1733301301:1'), -(212,866,'_billing_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE claudia.vanvynckt@hotmail.fr 0478183560'), -(213,866,'_shipping_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE 0478183560'), -(214,867,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), -(215,867,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE +32489578514'), -(216,868,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), -(217,868,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE +32489578514'), -(218,866,'_edit_lock','1732990774:1'), -(219,868,'_edit_lock','1741777158:1'), -(220,869,'_billing_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR maroufin.claire@gmail.com +33681223295'), -(221,869,'_shipping_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR +33681223295'), -(222,870,'_billing_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR gilquinpeggy@gmail.com +33663293145'), -(223,870,'_shipping_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR +33663293145'), -(224,871,'_billing_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR v.cubier@gmail.com 0616154243'), -(225,871,'_shipping_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR 0616154243'), -(226,871,'_edit_lock','1733427652:1'), -(227,872,'_billing_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE choploone@gmail.com 0498508266'), -(228,872,'_shipping_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE 0498508266'), -(229,872,'_edit_lock','1733769475:1'), -(230,873,'_billing_address_index','Maren Sigge Av. G. E. Lebon, 24, BP 3 Auderghem Belgium 1160 BE maren.sigge@gmail.com +32489439874'), -(231,873,'_shipping_address_index','Viviane Antoine Chaussée de Givet 33 Mariembourg Belgium 5660 BE +32489439874'), -(232,869,'_edit_lock','1734160497:1'), -(233,873,'_edit_lock','1733386487:1'), -(239,876,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(240,876,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(241,877,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(242,877,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(243,878,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), -(244,878,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), -(245,879,'_billing_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE julien.martial@hotmail.com 0472585911'), -(246,879,'_shipping_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE 0472585911'), -(247,879,'_edit_lock','1734041227:1'), -(248,880,'_billing_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR c.saquetbossu@orange.fr 0685532210'), -(249,880,'_shipping_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR 0685532210'), -(250,879,'tracking_number','10622472'), -(251,878,'_edit_lock','1734256732:1'), -(252,878,'tracking_number','10622471'), -(253,881,'_billing_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH lili.chabin@gmail.com +41786229221'), -(254,881,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH +41786229221'), -(255,881,'_edit_lock','1734817565:1'), -(266,880,'_edit_lock','1740486386:1'), -(267,884,'_billing_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR vsmarchand24@gmail.com +33612102273'), -(268,884,'_shipping_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR +33612102273'), -(269,876,'_edit_lock','1734255312:1'), -(270,880,'tracking_number','10727218'), -(271,884,'_edit_lock','1738615854:1'), -(272,885,'_billing_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE antoine.der92@gmail.com 0474183450'), -(273,885,'_shipping_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE 0474183450'), -(274,884,'tracking_number','10776780'), -(275,881,'tracking_number',''), -(276,886,'_billing_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR ella_cherry@hotmail.fr 06 77 32 66 50'), -(277,886,'_shipping_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR 06 77 32 66 50'), -(278,886,'_edit_lock','1734542336:1'), -(279,887,'_billing_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR elsa.dumontel@gmail.com 0642985078'), -(280,887,'_shipping_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR 0642985078'), -(281,886,'tracking_number','10831148'), -(282,885,'_edit_lock','1734545250:1'), -(283,885,'tracking_number',''), -(284,887,'_edit_lock','1736762840:1'), -(285,888,'_billing_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH lili.chabin@gmail.com +41786229221'), -(286,888,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH +41786229221'), -(287,888,'_edit_lock','1735490132:1'), -(288,888,'tracking_number','RN600242900BE'), -(289,889,'_billing_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR melian.jacob@free.fr 0670745455'), -(290,889,'_shipping_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR 0670745455'), -(291,889,'_edit_lock','1735646345:1'), -(292,890,'_refund_amount','12.00'), -(293,890,'_refunded_by','1'), -(294,890,'_refunded_payment',''), -(295,890,'_refund_reason','Free shipping'), -(296,891,'_refund_amount','100.00'), -(297,891,'_refunded_by','1'), -(298,891,'_refunded_payment',''), -(299,891,'_refund_reason',''), -(300,892,'_billing_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR camillelacroix715@gmail.com 0681659460'), -(301,892,'_shipping_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR 0681659460'), -(302,889,'tracking_number','10996113'), -(303,887,'tracking_number','10851363'), -(304,893,'_billing_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), -(305,893,'_shipping_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), -(306,894,'_billing_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), -(307,894,'_shipping_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), -(308,894,'_edit_lock','1736261796:1'), -(309,894,'tracking_number','11114755'), -(310,895,'_billing_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR tiberi.marine@gmail.com +33602079136'), -(311,895,'_shipping_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR +33602079136'), -(312,895,'_edit_lock','1737668991:1'), -(313,895,'tracking_number','11206531'), -(314,896,'_refund_amount','95.00'), -(315,896,'_refunded_by','1'), -(316,896,'_refunded_payment',''), -(317,896,'_refund_reason',''), -(318,897,'_billing_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR alicetabernat@yahoo.fr 0770426206'), -(319,897,'_shipping_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR 0770426206'), -(320,898,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), -(321,898,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), -(322,899,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), -(323,899,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), -(324,897,'_edit_lock','1738604185:1'), -(325,899,'_edit_lock','1739726026:1'), -(326,897,'tracking_number','11516644'), -(327,899,'tracking_number','11516643'), -(328,900,'_billing_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR parisnoune@gmail.com 0670423158'), -(329,900,'_shipping_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR 0670423158'), -(330,901,'_billing_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE owenoneill2727@gmail.com +353852179564'), -(331,901,'_shipping_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE +353852179564'), -(332,901,'_edit_lock','1740762785:1'), -(333,902,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), -(334,902,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), -(335,903,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), -(336,903,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), -(337,903,'_edit_lock','1741249420:1'), -(338,903,'tracking_number','11864885'), -(339,904,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), -(340,904,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), -(341,905,'_billing_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR amelie.grx@gmail.com 0667102260'), -(342,905,'_shipping_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR 0667102260'), -(343,906,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), -(344,906,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), -(345,907,'_billing_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR raphael.kuderpro@gmail.com 0783260894'), -(346,907,'_shipping_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR 0783260894'), -(347,905,'_edit_lock','1741249495:1'), -(348,905,'tracking_number','11941129'), -(349,906,'_edit_lock','1741249538:1'), -(350,906,'tracking_number','11941130'), -(351,907,'_edit_lock','1762423977:1'), -(352,907,'tracking_number','12069441'), -(353,908,'_billing_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR evemarie.redouin@gmail.com 0642769155'), -(354,908,'_shipping_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR 0642769155'), -(355,908,'_edit_lock','1743748901:1'), -(356,908,'tracking_number','12337845'), -(357,909,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), -(358,909,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), -(359,910,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), -(360,910,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), -(361,911,'_billing_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR lol@mdr.fr 0603436016'), -(362,911,'_shipping_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR 0603436016'), -(363,912,'_billing_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR crack_one@hotmail.fr +33695854956'), -(364,912,'_shipping_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR +33695854956'), -(365,919,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(366,919,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(367,920,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(368,920,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(369,921,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(370,921,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(371,922,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), -(372,922,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), -(373,910,'_edit_lock','1746970534:1'), -(374,910,'tracking_number',''), -(375,921,'_edit_lock','1747374867:1'), -(376,912,'_edit_lock','1747374841:1'), -(377,912,'tracking_number','12910308'), -(378,921,'tracking_number','12910309'), -(379,923,'_billing_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE zafiria.efstratiadi@hotmail.com 0474918430'), -(380,923,'_shipping_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE 0474918430'), -(381,924,'_billing_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR laurentpvcapelo@gmail.com +33646234205'), -(382,924,'_shipping_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR +33646234205'), -(383,924,'_edit_lock','1750509714:1'), -(384,924,'tracking_number','13228029'), -(387,997,'_billing_address_index',' '), -(388,997,'_shipping_address_index',' '), -(389,997,'_edit_lock','1752575442:1'), -(417,997,'tracking_number','13488164'), -(420,1013,'_billing_address_index','Mia Mueller Chaussee de Vleurgat 172 Brussels 1000 BE mia.mueller07@gmail.com 0474470271'), -(421,1013,'_shipping_address_index','Mia Mueller Chaussee de Vleurgat 172 Brussels 1000 BE 0474470271'), -(422,1013,'_edit_lock','1753358392:1'), -(423,1013,'tracking_number','13721043'), -(513,1443,'_billing_address_index','Myrthe Meylaerts Demosthenesstraat 242 Anderlecht 1070 BE myrthe.meylaerts@gmail.com 0499089766'), -(514,1443,'_shipping_address_index','Myrthe Meylaerts Demosthenesstraat 242 Anderlecht 1070 BE 0499089766'), -(515,1443,'_edit_lock','1760344734:1'), -(516,1443,'tracking_number','14584108'), -(517,1480,'_billing_address_index','Alexandra Maillot 26 rue de Stalingrad Sartrouville 78500 FR alexandraboubou2@gmail.com 0663463354'), -(518,1480,'_shipping_address_index','Alexandra Maillot 26 rue de Stalingrad Sartrouville 78500 FR 0663463354'), -(519,1480,'_edit_lock','1759521008:1'), -(520,1480,'tracking_number','14744669'), -(521,1486,'_billing_address_index','Théo Huchet 58 Rue Châtelaine Laon 02000 FR theohuchet@laposte.net +33628751554'), -(522,1486,'_shipping_address_index','Théo Huchet 58 Rue Châtelaine Laon 02000 FR +33628751554'), -(523,1487,'_billing_address_index','Théo Huchet 58 rue châtelaine Laon 02000 FR theohuchet@laposte.net 0628751554'), -(524,1487,'_shipping_address_index','Théo Huchet 58 rue châtelaine Laon 02000 FR 0628751554'), -(525,1488,'_billing_address_index','Pauline Dubois Rue Maurice Wilmotte, 25 Saint-Gilles Brussel-Hoofdstad 1060 BE pauline.duboi96@gmail.com +32473119568'), -(526,1488,'_shipping_address_index','Pauline Dubois Rue Maurice Wilmotte, 25 Saint-Gilles Brussel-Hoofdstad 1060 BE +32473119568'), -(527,1489,'_billing_address_index','Sofia Balducci 156 Rue de l’Université (MAIF) Paris 75007 FR sofia.balducci99@gmail.com +393470972182'), -(528,1489,'_shipping_address_index','Sofia Balducci 156 Rue de l’Université (MAIF) Paris 75007 FR +393470972182'), -(529,1486,'_edit_lock','1760612561:1'), -(530,1487,'_edit_lock','1760612540:1'), -(531,1488,'_edit_lock','1761289188:1'), -(532,1489,'_edit_lock','1760612512:1'), -(533,1489,'tracking_number','14913747'), -(534,1487,'tracking_number','14913746'), -(535,1486,'tracking_number','14913746'), -(536,1490,'_billing_address_index','Bram De Gieter Gasmeterlaan 44 Gent Oost-Vlaanderen 9000 BE bram.degieter@telenet.be 0474177921'), -(537,1490,'_shipping_address_index','Bram De Gieter Gasmeterlaan 44 Gent Oost-Vlaanderen 9000 BE 0474177921'), -(538,1488,'tracking_number',''), -(539,1490,'_edit_lock','1762423640:1'), -(540,1490,'tracking_number','323255091208881000'), -(541,1496,'_billing_address_index','Charlotte Chabin Chemin de Pierrefleur 88 Lausanne 1004 CH charlotte.chabin@gmail.com +41799475008'), -(542,1496,'_shipping_address_index','Charlotte Chabin Chemin de Pierrefleur 88 Lausanne 1004 CH +41799475008'), -(543,890,'_refund_type','full'), -(544,891,'_refund_type','full'), -(545,896,'_refund_type','full'), -(546,1496,'_edit_lock','1762437121:1'), -(547,1498,'_billing_address_index','Daphné Thomas 4 Impasse Charles Fourier Oullins 69600 FR daphnethomass@hotmail.com +33603264984'), -(548,1498,'_shipping_address_index','Daphné Thomas 4 Impasse Charles Fourier Oullins 69600 FR +33603264984'), -(549,1500,'_billing_address_index','GC CH 5 rue de la Ville Brussels 1060 BE contact@gcch.fr 0603436016'), -(550,1500,'_shipping_address_index','GC CH 5 rue de la Ville Brussels 1060 BE 0603436016'), -(551,1501,'_billing_address_index','GC CH 5 rue de la ville Metz 1060 BE lol@gcch.fr 0603436016'), -(552,1501,'_shipping_address_index','GC CH 5 rue de la ville Metz 1060 BE 0603436016'), -(553,1500,'_wp_trash_meta_status','wc-pending'), -(554,1500,'_wp_trash_meta_time','1762423740'), -(555,1501,'_wp_trash_meta_status','wc-pending'), -(556,1501,'_wp_trash_meta_time','1762423740'), -(557,1498,'_edit_lock','1762437172:1'), -(558,1496,'tracking_number','2110500310000518'), -(559,1498,'tracking_number','15226074'), -(560,1511,'_billing_address_index','Paul AMICEL 1 rue Saint-Alphonse Rennes 35000 FR paulamicel@gmail.com 0618192731'), -(561,1511,'_shipping_address_index','Paul AMICEL 1 rue Saint-Alphonse Rennes 35000 FR 0618192731'), -(562,1528,'_billing_address_index','marianne pignot 12 Villa De La Seigneurie Montreuil 93100 FR mapignot@gmail.com 0660688244'), -(563,1528,'_shipping_address_index','marianne pignot 12 Villa De La Seigneurie Montreuil 93100 FR 0660688244'), -(564,1511,'_edit_lock','1764164949:1'), -(565,1529,'_billing_address_index','Anabela Angeiras Rue du brocsous 66 Chaumont Gistoux 1325 BE anabela_angeiras@yahoo.fr 0032477286532'), -(566,1529,'_shipping_address_index','Anabela Angeiras Rue du brocsous 66 Chaumont Gistoux 1325 BE 0032477286532'), -(567,1528,'_edit_lock','1764009005:1'), -(568,1529,'_edit_lock','1764603534:1'), -(569,1530,'_billing_address_index','Karen Plasschaert Berlaarbaan 102 Bonheiden (regio) 2820 BE karen.plasschaert@gmail.com +32473534936'), -(570,1530,'_shipping_address_index','Karen Plasschaert Berlaarbaan 102 Bonheiden (regio) 2820 BE +32473534936'), -(571,1528,'tracking_number','REL24RT05BEFR'), -(572,1511,'tracking_number','REL24RT05BEFR'), -(573,1530,'_edit_lock','1764248507:1'), -(574,1530,'tracking_number','323255093128441000'), -(575,1529,'tracking_number','323255093128431006'), -(576,1540,'_billing_address_index','Annaé Bosson 1 rue de la cour des noues Paris 75020 FR annaebosson@gmail.com +33646032641'), -(577,1540,'_shipping_address_index','Annaé Bosson 1 rue de la cour des noues Paris 75020 FR +33646032641'), -(578,1571,'_billing_address_index','CLAIRE MAROUFIN 26 avenue Eugene Thomas Le Kremlin-Bicêtre 94270 FR maroufin.claire@gmail.com +33681223295'), -(579,1571,'_shipping_address_index','CLAIRE MAROUFIN 26 avenue Eugene Thomas Le Kremlin-Bicêtre 94270 FR +33681223295'), -(580,1572,'_billing_address_index','Penelope Jourdain 42 rue Jacques Kablé Nogent sur Marne Île de France 94130 FR penelope.jourdain@gmail.com 0687878933'), -(581,1572,'_shipping_address_index','Penelope Jourdain 42 rue Jacques Kablé Nogent sur Marne Île de France 94130 FR 0687878933'), -(582,1573,'_billing_address_index','Penelope Jourdain 42 rue Jacques Kablé Nogent sur Marne Île de France 94130 FR penelope.jourdain@gmail.com 0687878933'), -(583,1573,'_shipping_address_index','Penelope Jourdain 42 rue Jacques Kablé Nogent sur Marne Île de France 94130 FR 0687878933'); -/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_attributes_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_attributes_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_attributes_lookup` ( - `product_id` bigint(20) NOT NULL, - `product_or_parent_id` bigint(20) NOT NULL, - `taxonomy` varchar(32) NOT NULL, - `term_id` bigint(20) NOT NULL, - `is_variation_attribute` tinyint(1) NOT NULL, - `in_stock` tinyint(1) NOT NULL, - PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`), - KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_attributes_lookup` --- - -LOCK TABLES `haikuwp_wc_product_attributes_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_attributes_lookup` VALUES -(103,102,'pa_size',37,1,1), -(104,102,'pa_size',38,1,1), -(105,102,'pa_size',39,1,1), -(106,102,'pa_size',40,1,1), -(107,102,'pa_size',41,1,1), -(108,102,'pa_size',42,1,1), -(109,102,'pa_size',43,1,1), -(528,102,'pa_size',44,1,1), -(114,113,'pa_size',37,1,1), -(115,113,'pa_size',38,1,1), -(116,113,'pa_size',39,1,1), -(117,113,'pa_size',40,1,1), -(118,113,'pa_size',41,1,1), -(119,113,'pa_size',42,1,1), -(120,113,'pa_size',43,1,1), -(529,113,'pa_size',44,1,1), -(201,168,'pa_stone',48,1,1), -(200,168,'pa_stone',49,1,1), -(566,183,'pa_side',45,1,1), -(565,183,'pa_side',71,1,1), -(567,183,'pa_side',72,1,1), -(638,202,'pa_side',45,1,1), -(637,202,'pa_side',77,1,1), -(639,202,'pa_side',78,1,1), -(570,213,'pa_side',45,1,1), -(569,213,'pa_side',71,1,1), -(571,213,'pa_side',72,1,1), -(241,240,'pa_size',58,1,0), -(242,240,'pa_size',59,1,0), -(642,285,'pa_side',45,1,1), -(641,285,'pa_side',77,1,1), -(643,285,'pa_side',78,1,1), -(646,288,'pa_side',45,1,1), -(645,288,'pa_side',77,1,1), -(647,288,'pa_side',78,1,1), -(652,306,'pa_side',45,1,1), -(651,306,'pa_side',62,1,1), -(653,306,'pa_side',64,1,1), -(655,312,'pa_side',45,1,1), -(654,312,'pa_side',62,1,1), -(656,312,'pa_side',64,1,1), -(392,385,'pa_stone',48,1,1), -(391,385,'pa_stone',68,1,1), -(389,385,'pa_stone',69,1,1), -(393,393,'pa_side',45,0,1), -(393,393,'pa_side',66,0,1), -(398,398,'pa_side',45,0,1), -(398,398,'pa_side',66,0,1), -(494,490,'pa_side',45,1,1), -(493,490,'pa_side',77,1,1), -(495,490,'pa_side',78,1,1), -(553,545,'pa_side',45,1,1), -(552,545,'pa_side',66,1,1), -(555,554,'pa_side',45,1,1), -(556,554,'pa_side',66,1,1), -(614,613,'pa_size',37,1,1), -(615,613,'pa_size',38,1,1), -(616,613,'pa_size',39,1,1), -(617,613,'pa_size',40,1,1), -(618,613,'pa_size',41,1,1), -(619,613,'pa_size',42,1,1), -(620,613,'pa_size',43,1,1), -(624,613,'pa_size',44,1,1), -(626,625,'pa_size',37,1,1), -(627,625,'pa_size',38,1,1), -(628,625,'pa_size',39,1,1), -(629,625,'pa_size',40,1,1), -(630,625,'pa_size',41,1,1), -(631,625,'pa_size',42,1,1), -(632,625,'pa_size',43,1,1), -(633,625,'pa_size',44,1,1), -(626,625,'pa_stone',48,1,1), -(627,625,'pa_stone',48,1,1), -(628,625,'pa_stone',48,1,1), -(629,625,'pa_stone',48,1,1), -(630,625,'pa_stone',48,1,1), -(631,625,'pa_stone',48,1,1), -(632,625,'pa_stone',48,1,1), -(633,625,'pa_stone',48,1,1), -(626,625,'pa_stone',79,1,1), -(627,625,'pa_stone',79,1,1), -(628,625,'pa_stone',79,1,1), -(629,625,'pa_stone',79,1,1), -(630,625,'pa_stone',79,1,1), -(631,625,'pa_stone',79,1,1), -(632,625,'pa_stone',79,1,1), -(633,625,'pa_stone',79,1,1), -(766,766,'pa_side',45,0,1), -(766,766,'pa_side',62,0,1), -(766,766,'pa_side',63,0,1), -(944,941,'pa_size',37,1,1), -(945,941,'pa_size',38,1,1), -(946,941,'pa_size',39,1,1), -(947,941,'pa_size',40,1,1), -(948,941,'pa_size',41,1,1), -(949,941,'pa_size',42,1,1), -(950,941,'pa_size',43,1,1), -(951,941,'pa_size',44,1,1), -(954,953,'pa_size',37,1,1), -(955,953,'pa_size',38,1,1), -(956,953,'pa_size',39,1,1), -(957,953,'pa_size',40,1,1), -(958,953,'pa_size',41,1,1), -(959,953,'pa_size',42,1,1), -(960,953,'pa_size',43,1,1), -(961,953,'pa_size',44,1,1), -(982,982,'pa_size',37,0,1), -(982,982,'pa_size',38,0,1), -(982,982,'pa_size',39,0,1), -(982,982,'pa_size',40,0,1), -(982,982,'pa_size',41,0,1), -(982,982,'pa_size',42,0,1), -(982,982,'pa_size',43,0,1), -(982,982,'pa_size',44,0,1), -(994,994,'pa_size',37,0,1), -(994,994,'pa_size',38,0,1), -(994,994,'pa_size',39,0,1), -(994,994,'pa_size',40,0,1), -(994,994,'pa_size',41,0,1), -(994,994,'pa_size',42,0,1), -(994,994,'pa_size',43,0,1), -(994,994,'pa_size',44,0,1), -(1401,1401,'pa_size',37,0,1), -(1401,1401,'pa_size',38,0,1), -(1401,1401,'pa_size',39,0,1), -(1401,1401,'pa_size',40,0,1), -(1401,1401,'pa_size',41,0,1), -(1401,1401,'pa_size',42,0,1), -(1401,1401,'pa_size',43,0,1), -(1401,1401,'pa_size',44,0,1), -(1406,1406,'pa_size',37,0,1), -(1406,1406,'pa_size',38,0,1), -(1406,1406,'pa_size',39,0,1), -(1406,1406,'pa_size',40,0,1), -(1406,1406,'pa_size',41,0,1), -(1406,1406,'pa_size',42,0,1), -(1406,1406,'pa_size',43,0,1), -(1406,1406,'pa_size',44,0,1), -(1413,1412,'pa_size',37,1,1), -(1414,1412,'pa_size',38,1,1), -(1415,1412,'pa_size',39,1,1), -(1416,1412,'pa_size',40,1,1), -(1417,1412,'pa_size',41,1,1), -(1418,1412,'pa_size',42,1,1), -(1419,1412,'pa_size',43,1,1), -(1420,1412,'pa_size',44,1,1), -(1449,1444,'pa_side',76,1,1), -(1450,1444,'pa_side',77,1,1), -(1451,1444,'pa_side',78,1,1), -(1468,1467,'pa_size',37,1,1), -(1469,1467,'pa_size',38,1,1), -(1470,1467,'pa_size',39,1,1), -(1471,1467,'pa_size',40,1,1), -(1472,1467,'pa_size',41,1,1), -(1473,1467,'pa_size',42,1,1), -(1474,1467,'pa_size',43,1,1), -(1475,1467,'pa_size',44,1,1), -(1520,1520,'pa_side',45,0,1), -(1520,1520,'pa_side',77,0,1), -(1520,1520,'pa_side',78,0,1), -(1541,1541,'pa_side',45,0,1), -(1541,1541,'pa_side',77,0,1), -(1541,1541,'pa_side',78,0,1), -(1549,1549,'pa_side',45,0,1), -(1549,1549,'pa_side',77,0,1), -(1549,1549,'pa_side',78,0,1), -(1555,1555,'pa_side',45,0,1), -(1555,1555,'pa_side',77,0,1), -(1555,1555,'pa_side',78,0,1), -(1560,1560,'pa_side',45,0,1), -(1560,1560,'pa_side',77,0,1), -(1560,1560,'pa_side',78,0,1), -(1586,1574,'pa_giftcard-amount',86,1,1), -(1587,1574,'pa_giftcard-amount',87,1,1), -(1588,1574,'pa_giftcard-amount',88,1,1), -(1589,1574,'pa_giftcard-amount',89,1,1), -(1590,1574,'pa_giftcard-amount',90,1,1), -(1591,1574,'pa_giftcard-amount',91,1,1), -(1585,1574,'pa_giftcard-amount',92,1,1); -/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_download_directories` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_download_directories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_download_directories` ( - `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `url` varchar(256) NOT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`url_id`), - KEY `url` (`url`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_download_directories` --- - -LOCK TABLES `haikuwp_wc_product_download_directories` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_download_directories` VALUES -(3,'https://haikuatelier.com/app/uploads/woocommerce_uploads/2025/12/',1); -/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_product_meta_lookup` --- - -DROP TABLE IF EXISTS `haikuwp_wc_product_meta_lookup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_product_meta_lookup` ( - `product_id` bigint(20) NOT NULL, - `sku` varchar(100) DEFAULT '', - `virtual` tinyint(1) DEFAULT 0, - `downloadable` tinyint(1) DEFAULT 0, - `min_price` decimal(19,4) DEFAULT NULL, - `max_price` decimal(19,4) DEFAULT NULL, - `onsale` tinyint(1) DEFAULT 0, - `stock_quantity` double DEFAULT NULL, - `stock_status` varchar(100) DEFAULT 'instock', - `rating_count` bigint(20) DEFAULT 0, - `average_rating` decimal(3,2) DEFAULT 0.00, - `total_sales` bigint(20) DEFAULT 0, - `tax_status` varchar(100) DEFAULT 'taxable', - `tax_class` varchar(100) DEFAULT '', - `global_unique_id` varchar(100) DEFAULT '', - PRIMARY KEY (`product_id`), - KEY `virtual` (`virtual`), - KEY `downloadable` (`downloadable`), - KEY `stock_status` (`stock_status`), - KEY `stock_quantity` (`stock_quantity`), - KEY `onsale` (`onsale`), - KEY `min_max_price` (`min_price`,`max_price`), - KEY `sku` (`sku`(50)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_product_meta_lookup` --- - -LOCK TABLES `haikuwp_wc_product_meta_lookup` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_product_meta_lookup` VALUES -(20,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(22,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(23,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(25,NULL,0,0,20.0000,20.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(28,NULL,0,0,65.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(29,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(30,NULL,0,0,65.0000,65.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(35,NULL,0,0,62.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(36,NULL,0,0,68.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(37,NULL,0,0,62.0000,62.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(41,NULL,0,0,72.0000,72.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(50,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(56,NULL,0,0,35.0000,35.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(60,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(65,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(66,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(67,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(68,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(69,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(70,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(71,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(102,'HADOU-B-s',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(103,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(104,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(105,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(106,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(107,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(108,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(109,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(113,'HADOU-B-g',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(114,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(115,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(116,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(117,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(118,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(119,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(120,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(133,'KARA-B',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','',''), -(134,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(135,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(136,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(137,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(138,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(139,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(140,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(168,'Rokku-B',0,0,100.0000,110.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(183,'BOROBORO-BO2-s',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(200,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(201,NULL,0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(202,'PIASU-BO2',0,0,55.0000,90.0000,0,NULL,'instock',0,0.00,7,'taxable','',''), -(213,'BOROBORO-BO2-g',0,0,55.0000,80.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(240,'IKKAN-BR-s',0,0,80.0000,80.0000,0,NULL,'outofstock',0,0.00,0,'taxable','',''), -(241,'IKKAN-BR-s-1',0,0,80.0000,80.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(242,'IKKAN-BR-s-2',0,0,80.0000,80.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(258,'FUYOU-BR-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(263,'IKKAN-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(268,'PIASU-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(274,'FUYOU-C',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(285,'HATTARI-CR2-s',0,0,55.0000,85.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(288,'HATTARI-CR2-g',0,0,60.0000,90.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(306,'TAMANORI-CR-s',0,0,48.0000,70.0000,0,NULL,'instock',0,0.00,6,'taxable','',''), -(312,'TAMANORI-CR-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(318,'FUYOU-CR',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(385,'ROKKU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(389,'ROKKU-C-jaspe',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(391,'ROKKU-C-lapis',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(392,'ROKKU-C-tiger',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(393,'MUGURA-CR-s',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(398,'MUGURA-CR-g',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(435,'KARA-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,4,'taxable','',''), -(447,'KARA-EC-s-1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), -(490,'HADOU-BOP',0,0,35.0000,50.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), -(493,'HADOU-BOP-left',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(494,'HADOU-BOP-pair',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(495,'HADOU-BOP-right',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(496,'MUGURA-CR1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(515,'BOROBORO-BO1-g',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(521,'BOROBORO-BO1-s',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), -(523,'BOROBORO-BO1-s-brown',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(528,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(529,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(532,'',0,0,95.0000,95.0000,0,NULL,'outofstock',0,0.00,0,'taxable','parent',''), -(545,'KARA-CR1-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(552,'KARA-CR-g-one',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(553,'KARA-CR-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(554,'KARA-CR1-s',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(555,'KARA-CR-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(556,'KARA-CR-s-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(565,'BOROBORO-BO2-s-one',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(566,'BOROBORO-BO2-s-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(567,'BOROBORO-BO2-s-two',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(569,'BOROBORO-BO2-g-one',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(570,'BOROBORO-BO2-g-pair',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(571,'BOROBORO-BO2-g-two',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(613,'BOROBORO-B2-g',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), -(614,'BOROBORO-B2-g-50',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(615,'BOROBORO-B2-g-52',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(616,'BOROBORO-B2-g-54',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(617,'BOROBORO-B2-g-56',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(618,'BOROBORO-B2-g-58',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(619,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(620,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(624,'BOROBORO-B2-g-60',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(625,'BOROBORO-B2-sj',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(626,'BOROBORO-B2-s-50',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(627,'BOROBORO-B2-s-52',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(628,'BOROBORO-B2-s-54',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(629,'BOROBORO-B2-s-56',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(630,'BOROBORO-B2-s-58',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(631,'BOROBORO-B2-s-60',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(632,NULL,0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(633,'BOROBORO-B2-s-64',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(637,'PIASU-BO2-left',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(638,'PIASU-BO2-pair',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(639,'PIASU-BO2-right',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(641,'HATTARI-CR1-s-left',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(642,'HATTARI-CR1-s-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(643,'HATTARI-CR1-s-right',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(645,'HATTARI-CR1-g-left',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(646,'HATTARI-CR1-g-pair',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(647,'HATTARI-CR1-g-right',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(651,'TAMANORI-CR-s-long',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(652,'TAMANORI-CR-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(653,'TAMANORI-CR-s-short',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(654,'TAMANORI-CR-g-long',0,0,52.0000,52.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(655,'TAMANORI-CR-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(656,'TAMANORI-CR-g-short',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(766,'FUYOU-BO',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(787,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(790,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(791,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(792,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(793,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(794,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(795,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(796,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(798,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(799,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(800,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(801,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(802,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(803,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(804,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(805,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(806,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(807,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(808,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(809,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(810,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(811,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(812,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(813,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(814,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(815,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), -(926,'BOROBORO-BO1-s-honey',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(941,'UTEKI-B-s',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(944,'UTEKI-B-s-50',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(945,'UTEKI-B-s-52',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(946,'UTEKI-B-s-54',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(947,'UTEKI-B-s-56',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(948,'UTEKI-B-s-58',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(949,'UTEKI-B-s-60',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(950,'UTEKI-B-s-62',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(951,'UTEKI-B-s-64',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(953,'UTEKI-B-g',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(954,'UTEKI-B-s-50-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(955,'UTEKI-B-s-52-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(956,'UTEKI-B-s-54-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(957,'UTEKI-B-s-56-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(958,'UTEKI-B-s-58-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(959,'UTEKI-B-s-60-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(960,'UTEKI-B-s-62-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(961,'UTEKI-B-s-64-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), -(982,'UTEKI-C-s',0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(994,'UTEKI-C-g',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1004,'PIASU-CR',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(1005,'PIASU-CR-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1011,'PIASU-CR-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1401,'UTEKI-C-g-1',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1406,'UTEKI-C-g-1-1',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1412,'BOROBORO-B2-st',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1413,'BOROBORO-B2-s-50-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1414,'BOROBORO-B2-s-52-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1415,'BOROBORO-B2-s-54-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1416,'BOROBORO-B2-s-56-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1417,'BOROBORO-B2-s-58-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1418,'BOROBORO-B2-s-60-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1419,'',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1420,'BOROBORO-B2-s-64-1',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1444,'PISHI-BO',0,0,50.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1449,'PISHI-BO-all',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1450,'PISHI-BO-left',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1451,'PISHI-BO-right',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1467,'PIASU-B',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(1468,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1469,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1470,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1471,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1472,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1473,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1474,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1475,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1491,'KIME-CR1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1512,'PIASU-EC-s',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,2,'taxable','',''), -(1516,'PIASU-EC-g',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,1,'taxable','',''), -(1520,'PIASU-BO1-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1531,'PIASU-EC-g-1',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1535,'PIASU-EC-g-1-1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1541,'HATTARI-CR1-s',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1549,'HATTARI-CR1-g',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1555,'HATTARI-EC-s',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1560,'HATTARI-EC-g',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1574,'GIFTcard',0,0,40.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1585,'GIFTcard-100',1,1,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1586,'GIFTcard-40',1,1,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1587,'GIFTcard-50',1,1,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1588,'GIFTcard-60',1,1,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1589,'GIFTcard-70',1,1,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1590,'GIFTcard-80',1,1,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1591,'GIFTcard-90',1,1,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1594,'GIFTcard-1',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), -(1595,'GIFTcard-40-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1596,'GIFTcard-50-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1597,'GIFTcard-60-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1598,'GIFTcard-70-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1599,'GIFTcard-80-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1600,'GIFTcard-90-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''), -(1601,'GIFTcard-100-1',1,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',''); -/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_rate_limits` --- - -DROP TABLE IF EXISTS `haikuwp_wc_rate_limits`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_rate_limits` ( - `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `rate_limit_key` varchar(200) NOT NULL, - `rate_limit_expiry` bigint(20) unsigned NOT NULL, - `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`rate_limit_id`), - UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_rate_limits` --- - -LOCK TABLES `haikuwp_wc_rate_limits` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_reserved_stock` --- - -DROP TABLE IF EXISTS `haikuwp_wc_reserved_stock`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_reserved_stock` ( - `order_id` bigint(20) NOT NULL, - `product_id` bigint(20) NOT NULL, - `stock_quantity` double NOT NULL DEFAULT 0, - `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`order_id`,`product_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_reserved_stock` --- - -LOCK TABLES `haikuwp_wc_reserved_stock` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_tax_rate_classes` --- - -DROP TABLE IF EXISTS `haikuwp_wc_tax_rate_classes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_tax_rate_classes` ( - `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - PRIMARY KEY (`tax_rate_class_id`), - UNIQUE KEY `slug` (`slug`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_tax_rate_classes` --- - -LOCK TABLES `haikuwp_wc_tax_rate_classes` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wc_tax_rate_classes` VALUES -(1,'Reduced rate','reduced-rate'), -(2,'Zero rate','zero-rate'); -/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wc_webhooks` --- - -DROP TABLE IF EXISTS `haikuwp_wc_webhooks`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wc_webhooks` ( - `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `status` varchar(200) NOT NULL, - `name` text NOT NULL, - `user_id` bigint(20) unsigned NOT NULL, - `delivery_url` text NOT NULL, - `secret` text NOT NULL, - `topic` varchar(200) NOT NULL, - `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `api_version` smallint(4) NOT NULL, - `failure_count` smallint(10) NOT NULL DEFAULT 0, - `pending_delivery` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`webhook_id`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wc_webhooks` --- - -LOCK TABLES `haikuwp_wc_webhooks` WRITE; -/*!40000 ALTER TABLE `haikuwp_wc_webhooks` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_wc_webhooks` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_api_keys` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_api_keys`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_api_keys` ( - `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL, - `description` varchar(200) DEFAULT NULL, - `permissions` varchar(10) NOT NULL, - `consumer_key` char(64) NOT NULL, - `consumer_secret` char(43) NOT NULL, - `nonces` longtext DEFAULT NULL, - `truncated_key` char(7) NOT NULL, - `last_access` datetime DEFAULT NULL, - PRIMARY KEY (`key_id`), - KEY `consumer_key` (`consumer_key`), - KEY `consumer_secret` (`consumer_secret`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_api_keys` --- - -LOCK TABLES `haikuwp_woocommerce_api_keys` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_api_keys` VALUES -(3,1,'lecture-clients','read_write','5d6090d73adb9034e3ece67a7e0394110a40dc8da3d59244bc4e916e8fd16533','cs_e213979ea3d1490b275dd75c8d53d05c82853119',NULL,'3606954','2025-12-03 09:51:56'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_attribute_taxonomies` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_attribute_taxonomies`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_attribute_taxonomies` ( - `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `attribute_name` varchar(200) NOT NULL, - `attribute_label` varchar(200) DEFAULT NULL, - `attribute_type` varchar(20) NOT NULL, - `attribute_orderby` varchar(20) NOT NULL, - `attribute_public` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`attribute_id`), - KEY `attribute_name` (`attribute_name`(20)) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_attribute_taxonomies` --- - -LOCK TABLES `haikuwp_woocommerce_attribute_taxonomies` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_attribute_taxonomies` VALUES -(1,'size','Size','select','menu_order',0), -(2,'side','Side','select','menu_order',0), -(3,'stone','Stone','select','name',0), -(4,'giftcard-amount','Amount','select','menu_order',0); -/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_downloadable_product_permissions` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_downloadable_product_permissions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_downloadable_product_permissions` ( - `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `download_id` varchar(36) NOT NULL, - `product_id` bigint(20) unsigned NOT NULL, - `order_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `order_key` varchar(200) NOT NULL, - `user_email` varchar(200) NOT NULL, - `user_id` bigint(20) unsigned DEFAULT NULL, - `downloads_remaining` varchar(9) DEFAULT NULL, - `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `access_expires` datetime DEFAULT NULL, - `download_count` bigint(20) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`permission_id`), - KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), - KEY `download_order_product` (`download_id`,`order_id`,`product_id`), - KEY `order_id` (`order_id`), - KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_downloadable_product_permissions` --- - -LOCK TABLES `haikuwp_woocommerce_downloadable_product_permissions` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_log` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_log` ( - `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `timestamp` datetime NOT NULL, - `level` smallint(4) NOT NULL, - `source` varchar(200) NOT NULL, - `message` longtext NOT NULL, - `context` longtext DEFAULT NULL, - PRIMARY KEY (`log_id`), - KEY `level` (`level`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_log` --- - -LOCK TABLES `haikuwp_woocommerce_log` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_log` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_log` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_order_itemmeta` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_order_itemmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_order_itemmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_item_id` bigint(20) unsigned NOT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `order_item_id` (`order_item_id`), - KEY `meta_key` (`meta_key`(32)) -) ENGINE=InnoDB AUTO_INCREMENT=4050 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_order_itemmeta` --- - -LOCK TABLES `haikuwp_woocommerce_order_itemmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_order_itemmeta` VALUES -(1111,136,'_product_id','331'), -(1112,136,'_variation_id','0'), -(1113,136,'_qty','1'), -(1114,136,'_tax_class',''), -(1115,136,'_line_subtotal','35'), -(1116,136,'_line_subtotal_tax','0'), -(1117,136,'_line_total','35'), -(1118,136,'_line_tax','0'), -(1119,136,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1120,137,'method_id','mondial_relay_point_relais'), -(1121,137,'instance_id',''), -(1122,137,'cost','300'), -(1123,137,'total_tax','0'), -(1124,137,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1125,138,'_product_id','288'), -(1126,138,'_variation_id','646'), -(1127,138,'_qty','1'), -(1128,138,'_tax_class',''), -(1129,138,'_line_subtotal','80'), -(1130,138,'_line_subtotal_tax','0'), -(1131,138,'_line_total','80'), -(1132,138,'_line_tax','0'), -(1133,138,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1134,138,'pa_side','pair'), -(1135,139,'method_id','mondial_relay_point_relais'), -(1136,139,'instance_id',''), -(1137,139,'cost','0'), -(1138,139,'total_tax','0'), -(1139,139,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1195,147,'_product_id','251'), -(1196,147,'_variation_id','0'), -(1197,147,'_qty','1'), -(1198,147,'_tax_class',''), -(1199,147,'_line_subtotal','65'), -(1200,147,'_line_subtotal_tax','0'), -(1201,147,'_line_total','65'), -(1202,147,'_line_tax','0'), -(1203,147,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1204,148,'method_id','mondial_relay_point_relais'), -(1205,148,'instance_id',''), -(1206,148,'cost','0'), -(1207,148,'total_tax','0'), -(1208,148,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1209,149,'_product_id','258'), -(1210,149,'_variation_id','0'), -(1211,149,'_qty','1'), -(1212,149,'_tax_class',''), -(1213,149,'_line_subtotal','75'), -(1214,149,'_line_subtotal_tax','0'), -(1215,149,'_line_total','75'), -(1216,149,'_line_tax','0'), -(1217,149,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1218,150,'method_id','mondial_relay_point_relais'), -(1219,150,'instance_id',''), -(1220,150,'cost','0'), -(1221,150,'total_tax','0'), -(1222,150,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1223,151,'_product_id','251'), -(1224,151,'_variation_id','0'), -(1225,151,'_qty','1'), -(1226,151,'_tax_class',''), -(1227,151,'_line_subtotal','65'), -(1228,151,'_line_subtotal_tax','0'), -(1229,151,'_line_total','65'), -(1230,151,'_line_tax','0'), -(1231,151,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1232,152,'_product_id','271'), -(1233,152,'_variation_id','0'), -(1234,152,'_qty','1'), -(1235,152,'_tax_class',''), -(1236,152,'_line_subtotal','95'), -(1237,152,'_line_subtotal_tax','0'), -(1238,152,'_line_total','95'), -(1239,152,'_line_tax','0'), -(1240,152,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1241,153,'method_id','mondial_relay_point_relais'), -(1242,153,'instance_id',''), -(1243,153,'cost','0'), -(1244,153,'total_tax','0'), -(1245,153,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1246,154,'_product_id','202'), -(1247,154,'_variation_id','637'), -(1248,154,'_qty','1'), -(1249,154,'_tax_class',''), -(1250,154,'_line_subtotal','50'), -(1251,154,'_line_subtotal_tax','0'), -(1252,154,'_line_total','50'), -(1253,154,'_line_tax','0'), -(1254,154,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1255,154,'pa_side','left-side'), -(1256,155,'_product_id','291'), -(1257,155,'_variation_id','649'), -(1258,155,'_qty','1'), -(1259,155,'_tax_class',''), -(1260,155,'_line_subtotal','70'), -(1261,155,'_line_subtotal_tax','0'), -(1262,155,'_line_total','70'), -(1263,155,'_line_tax','0'), -(1264,155,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1265,155,'pa_side','pair'), -(1266,156,'method_id','mondial_relay_point_relais'), -(1267,156,'instance_id',''), -(1268,156,'cost','0'), -(1269,156,'total_tax','0'), -(1270,156,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1271,157,'_product_id','398'), -(1272,157,'_variation_id','0'), -(1273,157,'_qty','1'), -(1274,157,'_tax_class',''), -(1275,157,'_line_subtotal','65'), -(1276,157,'_line_subtotal_tax','0'), -(1277,157,'_line_total','65'), -(1278,157,'_line_tax','0'), -(1279,157,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1280,158,'method_id','mondial_relay_point_relais'), -(1281,158,'instance_id',''), -(1282,158,'cost','0'), -(1283,158,'total_tax','0'), -(1284,158,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1285,159,'_product_id','521'), -(1286,159,'_variation_id','523'), -(1287,159,'_qty','1'), -(1288,159,'_tax_class',''), -(1289,159,'_line_subtotal','60'), -(1290,159,'_line_subtotal_tax','0'), -(1291,159,'_line_total','60'), -(1292,159,'_line_tax','0'), -(1293,159,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1294,159,'pa_stone','tiger-eye'), -(1295,160,'_product_id','342'), -(1296,160,'_variation_id','563'), -(1297,160,'_qty','1'), -(1298,160,'_tax_class',''), -(1299,160,'_line_subtotal','25'), -(1300,160,'_line_subtotal_tax','0'), -(1301,160,'_line_total','25'), -(1302,160,'_line_tax','0'), -(1303,160,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1304,160,'pa_side','short'), -(1305,161,'_product_id','342'), -(1306,161,'_variation_id','560'), -(1307,161,'_qty','1'), -(1308,161,'_tax_class',''), -(1309,161,'_line_subtotal','58'), -(1310,161,'_line_subtotal_tax','0'), -(1311,161,'_line_total','58'), -(1312,161,'_line_tax','0'), -(1313,161,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1314,161,'pa_side','all'), -(1315,162,'method_id','mondial_relay_point_relais'), -(1316,162,'instance_id',''), -(1317,162,'cost','0'), -(1318,162,'total_tax','0'), -(1319,162,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1320,163,'_product_id','263'), -(1321,163,'_variation_id','0'), -(1322,163,'_qty','1'), -(1323,163,'_tax_class',''), -(1324,163,'_line_subtotal','90'), -(1325,163,'_line_subtotal_tax','0'), -(1326,163,'_line_total','90'), -(1327,163,'_line_tax','0'), -(1328,163,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1329,164,'method_id','mondial_relay_point_relais'), -(1330,164,'instance_id',''), -(1331,164,'cost','0'), -(1332,164,'total_tax','0'), -(1333,164,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1334,165,'_product_id','306'), -(1335,165,'_variation_id','652'), -(1336,165,'_qty','1'), -(1337,165,'_tax_class',''), -(1338,165,'_line_subtotal','70'), -(1339,165,'_line_subtotal_tax','0'), -(1340,165,'_line_total','70'), -(1341,165,'_line_tax','0'), -(1342,165,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1343,165,'pa_side','pair'), -(1344,166,'_product_id','183'), -(1345,166,'_variation_id','566'), -(1346,166,'_qty','1'), -(1347,166,'_tax_class',''), -(1348,166,'_line_subtotal','70'), -(1349,166,'_line_subtotal_tax','0'), -(1350,166,'_line_total','70'), -(1351,166,'_line_tax','0'), -(1352,166,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1353,166,'pa_side','pair'), -(1354,167,'_product_id','274'), -(1355,167,'_variation_id','0'), -(1356,167,'_qty','1'), -(1357,167,'_tax_class',''), -(1358,167,'_line_subtotal','95'), -(1359,167,'_line_subtotal_tax','0'), -(1360,167,'_line_total','95'), -(1361,167,'_line_tax','0'), -(1362,167,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1363,168,'method_id','mondial_relay_point_relais'), -(1364,168,'instance_id',''), -(1365,168,'cost','0'), -(1366,168,'total_tax','0'), -(1367,168,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1396,173,'_product_id','288'), -(1397,173,'_variation_id','646'), -(1398,173,'_qty','1'), -(1399,173,'_tax_class',''), -(1400,173,'_line_subtotal','80'), -(1401,173,'_line_subtotal_tax','0'), -(1402,173,'_line_total','80'), -(1403,173,'_line_tax','0'), -(1404,173,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1405,173,'pa_side','pair'), -(1406,174,'method_id','mondial_relay_point_relais'), -(1407,174,'instance_id',''), -(1408,174,'cost','0'), -(1409,174,'total_tax','0'), -(1410,174,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1411,175,'_product_id','288'), -(1412,175,'_variation_id','646'), -(1413,175,'_qty','1'), -(1414,175,'_tax_class',''), -(1415,175,'_line_subtotal','80'), -(1416,175,'_line_subtotal_tax','0'), -(1417,175,'_line_total','80'), -(1418,175,'_line_tax','0'), -(1419,175,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1420,175,'pa_side','pair'), -(1421,176,'method_id','mondial_relay_point_relais'), -(1422,176,'instance_id',''), -(1423,176,'cost','0'), -(1424,176,'total_tax','0'), -(1425,176,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1426,177,'_product_id','288'), -(1427,177,'_variation_id','646'), -(1428,177,'_qty','1'), -(1429,177,'_tax_class',''), -(1430,177,'_line_subtotal','80'), -(1431,177,'_line_subtotal_tax','0'), -(1432,177,'_line_total','80'), -(1433,177,'_line_tax','0'), -(1434,177,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1435,177,'pa_side','pair'), -(1436,178,'_product_id','285'), -(1437,178,'_variation_id','642'), -(1438,178,'_qty','1'), -(1439,178,'_tax_class',''), -(1440,178,'_line_subtotal','75'), -(1441,178,'_line_subtotal_tax','0'), -(1442,178,'_line_total','75'), -(1443,178,'_line_tax','0'), -(1444,178,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1445,178,'pa_side','pair'), -(1446,179,'method_id','mondial_relay_point_relais'), -(1447,179,'instance_id',''), -(1448,179,'cost','0'), -(1449,179,'total_tax','0'), -(1450,179,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1451,180,'_product_id','312'), -(1452,180,'_variation_id','655'), -(1453,180,'_qty','1'), -(1454,180,'_tax_class',''), -(1455,180,'_line_subtotal','75'), -(1456,180,'_line_subtotal_tax','0'), -(1457,180,'_line_total','75'), -(1458,180,'_line_tax','0'), -(1459,180,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1460,180,'pa_side','pair'), -(1461,181,'method_id','mondial_relay_point_relais'), -(1462,181,'instance_id',''), -(1463,181,'cost','0'), -(1464,181,'total_tax','0'), -(1465,181,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1466,182,'_product_id','335'), -(1467,182,'_variation_id','0'), -(1468,182,'_qty','1'), -(1469,182,'_tax_class',''), -(1470,182,'_line_subtotal','40'), -(1471,182,'_line_subtotal_tax','0'), -(1472,182,'_line_total','40'), -(1473,182,'_line_tax','0'), -(1474,182,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1475,183,'_product_id','545'), -(1476,183,'_variation_id','553'), -(1477,183,'_qty','1'), -(1478,183,'_tax_class',''), -(1479,183,'_line_subtotal','60'), -(1480,183,'_line_subtotal_tax','0'), -(1481,183,'_line_total','60'), -(1482,183,'_line_tax','0'), -(1483,183,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1484,183,'pa_side','pair'), -(1485,184,'method_id','mondial_relay_point_relais'), -(1486,184,'instance_id',''), -(1487,184,'cost','0'), -(1488,184,'total_tax','0'), -(1489,184,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1490,185,'_product_id','306'), -(1491,185,'_variation_id','653'), -(1492,185,'_qty','1'), -(1493,185,'_tax_class',''), -(1494,185,'_line_subtotal','48'), -(1495,185,'_line_subtotal_tax','0'), -(1496,185,'_line_total','48'), -(1497,185,'_line_tax','0'), -(1498,185,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1499,185,'pa_side','short'), -(1500,186,'method_id','flat_rate'), -(1501,186,'instance_id',''), -(1502,186,'cost','1200'), -(1503,186,'total_tax','0'), -(1504,186,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1555,193,'_product_id','271'), -(1556,193,'_variation_id','0'), -(1557,193,'_qty','1'), -(1558,193,'_tax_class',''), -(1559,193,'_line_subtotal','95'), -(1560,193,'_line_subtotal_tax','0'), -(1561,193,'_line_total','95'), -(1562,193,'_line_tax','0'), -(1563,193,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1564,194,'method_id','mondial_relay_point_relais'), -(1565,194,'instance_id',''), -(1566,194,'cost','0'), -(1567,194,'total_tax','0'), -(1568,194,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1569,195,'_product_id','288'), -(1570,195,'_variation_id','646'), -(1571,195,'_qty','1'), -(1572,195,'_tax_class',''), -(1573,195,'_line_subtotal','80'), -(1574,195,'_line_subtotal_tax','0'), -(1575,195,'_line_total','80'), -(1576,195,'_line_tax','0'), -(1577,195,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1578,195,'pa_side','pair'), -(1579,196,'method_id','mondial_relay_point_relais'), -(1580,196,'instance_id',''), -(1581,196,'cost','0'), -(1582,196,'total_tax','0'), -(1583,196,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1584,197,'_product_id','545'), -(1585,197,'_variation_id','553'), -(1586,197,'_qty','1'), -(1587,197,'_tax_class',''), -(1588,197,'_line_subtotal','60'), -(1589,197,'_line_subtotal_tax','0'), -(1590,197,'_line_total','60'), -(1591,197,'_line_tax','0'), -(1592,197,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1593,197,'pa_side','pair'), -(1594,198,'_product_id','490'), -(1595,198,'_variation_id','494'), -(1596,198,'_qty','1'), -(1597,198,'_tax_class',''), -(1598,198,'_line_subtotal','45'), -(1599,198,'_line_subtotal_tax','0'), -(1600,198,'_line_total','45'), -(1601,198,'_line_tax','0'), -(1602,198,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1603,198,'pa_side','pair'), -(1604,199,'method_id','mondial_relay_point_relais'), -(1605,199,'instance_id',''), -(1606,199,'cost','0'), -(1607,199,'total_tax','0'), -(1608,199,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1609,200,'_product_id','365'), -(1610,200,'_variation_id','677'), -(1611,200,'_qty','1'), -(1612,200,'_tax_class',''), -(1613,200,'_line_subtotal','60'), -(1614,200,'_line_subtotal_tax','0'), -(1615,200,'_line_total','60'), -(1616,200,'_line_tax','0'), -(1617,200,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1618,200,'pa_side','pair'), -(1619,201,'method_id','mondial_relay_point_relais'), -(1620,201,'instance_id',''), -(1621,201,'cost','0'), -(1622,201,'total_tax','0'), -(1623,201,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1624,202,'_product_id','306'), -(1625,202,'_variation_id','651'), -(1626,202,'_qty','1'), -(1627,202,'_tax_class',''), -(1628,202,'_line_subtotal','50'), -(1629,202,'_line_subtotal_tax','0'), -(1630,202,'_line_total','50'), -(1631,202,'_line_tax','0'), -(1632,202,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1633,202,'pa_side','long'), -(1634,203,'method_id','flat_rate'), -(1635,203,'instance_id',''), -(1636,203,'cost','12'), -(1637,203,'total_tax','0'), -(1638,203,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1639,204,'_product_id','325'), -(1640,204,'_variation_id','0'), -(1641,204,'_qty','1'), -(1642,204,'_tax_class',''), -(1643,204,'_line_subtotal','35'), -(1644,204,'_line_subtotal_tax','0'), -(1645,204,'_line_total','35'), -(1646,204,'_line_tax','0'), -(1647,204,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1648,205,'_product_id','554'), -(1649,205,'_variation_id','555'), -(1650,205,'_qty','1'), -(1651,205,'_tax_class',''), -(1652,205,'_line_subtotal','55'), -(1653,205,'_line_subtotal_tax','0'), -(1654,205,'_line_total','55'), -(1655,205,'_line_tax','0'), -(1656,205,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1657,205,'pa_side','pair'), -(1658,206,'_product_id','435'), -(1659,206,'_variation_id','0'), -(1660,206,'_qty','1'), -(1661,206,'_tax_class',''), -(1662,206,'_line_subtotal','35'), -(1663,206,'_line_subtotal_tax','0'), -(1664,206,'_line_total','35'), -(1665,206,'_line_tax','0'), -(1666,206,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1667,207,'_product_id','521'), -(1668,207,'_variation_id','523'), -(1669,207,'_qty','1'), -(1670,207,'_tax_class',''), -(1671,207,'_line_subtotal','60'), -(1672,207,'_line_subtotal_tax','0'), -(1673,207,'_line_total','60'), -(1674,207,'_line_tax','0'), -(1675,207,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1676,207,'pa_stone','tiger-eye'), -(1677,208,'_product_id','251'), -(1678,208,'_variation_id','0'), -(1679,208,'_qty','1'), -(1680,208,'_tax_class',''), -(1681,208,'_line_subtotal','65'), -(1682,208,'_line_subtotal_tax','0'), -(1683,208,'_line_total','65'), -(1684,208,'_line_tax','0'), -(1685,208,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1686,209,'method_id','mondial_relay_point_relais'), -(1687,209,'instance_id',''), -(1688,209,'cost','0'), -(1689,209,'total_tax','0'), -(1690,209,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1691,210,'_product_id','554'), -(1692,210,'_variation_id','555'), -(1693,210,'_qty','1'), -(1694,210,'_tax_class',''), -(1695,210,'_line_subtotal','55'), -(1696,210,'_line_subtotal_tax','0'), -(1697,210,'_line_total','55'), -(1698,210,'_line_tax','0'), -(1699,210,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1700,210,'pa_side','pair'), -(1701,211,'method_id','mondial_relay_point_relais'), -(1702,211,'instance_id',''), -(1703,211,'cost','0'), -(1704,211,'total_tax','0'), -(1705,211,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1706,212,'_product_id','335'), -(1707,212,'_variation_id','0'), -(1708,212,'_qty','1'), -(1709,212,'_tax_class',''), -(1710,212,'_line_subtotal','40'), -(1711,212,'_line_subtotal_tax','0'), -(1712,212,'_line_total','40'), -(1713,212,'_line_tax','0'), -(1714,212,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1715,213,'method_id','mondial_relay_point_relais'), -(1716,213,'instance_id',''), -(1717,213,'cost','3'), -(1718,213,'total_tax','0'), -(1719,213,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1720,214,'_product_id','331'), -(1721,214,'_variation_id','0'), -(1722,214,'_qty','1'), -(1723,214,'_tax_class',''), -(1724,214,'_line_subtotal','35'), -(1725,214,'_line_subtotal_tax','0'), -(1726,214,'_line_total','35'), -(1727,214,'_line_tax','0'), -(1728,214,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1729,215,'method_id','mondial_relay_point_relais'), -(1730,215,'instance_id',''), -(1731,215,'cost','3'), -(1732,215,'total_tax','0'), -(1733,215,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1734,216,'_product_id','202'), -(1735,216,'_variation_id','638'), -(1736,216,'_qty','1'), -(1737,216,'_tax_class',''), -(1738,216,'_line_subtotal','85'), -(1739,216,'_line_subtotal_tax','0'), -(1740,216,'_line_total','85'), -(1741,216,'_line_tax','0'), -(1742,216,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1743,216,'pa_side','pair'), -(1744,217,'_product_id','306'), -(1745,217,'_variation_id','652'), -(1746,217,'_qty','1'), -(1747,217,'_tax_class',''), -(1748,217,'_line_subtotal','70'), -(1749,217,'_line_subtotal_tax','0'), -(1750,217,'_line_total','70'), -(1751,217,'_line_tax','0'), -(1752,217,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1753,217,'pa_side','pair'), -(1754,218,'method_id','mondial_relay_point_relais'), -(1755,218,'instance_id',''), -(1756,218,'cost','0'), -(1757,218,'total_tax','0'), -(1758,218,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1759,219,'_product_id','291'), -(1760,219,'_variation_id','649'), -(1761,219,'_qty','1'), -(1762,219,'_tax_class',''), -(1763,219,'_line_subtotal','70'), -(1764,219,'_line_subtotal_tax','0'), -(1765,219,'_line_total','70'), -(1766,219,'_line_tax','0'), -(1767,219,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1768,219,'pa_side','pair'), -(1769,220,'method_id','mondial_relay_point_relais'), -(1770,220,'instance_id',''), -(1771,220,'cost','0'), -(1772,220,'total_tax','0'), -(1773,220,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1774,221,'_product_id','435'), -(1775,221,'_variation_id','0'), -(1776,221,'_qty','1'), -(1777,221,'_tax_class',''), -(1778,221,'_line_subtotal','35'), -(1779,221,'_line_subtotal_tax','0'), -(1780,221,'_line_total','35'), -(1781,221,'_line_tax','0'), -(1782,221,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1783,222,'method_id','mondial_relay_point_relais'), -(1784,222,'instance_id',''), -(1785,222,'cost','3'), -(1786,222,'total_tax','0'), -(1787,222,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1788,223,'_product_id','435'), -(1789,223,'_variation_id','0'), -(1790,223,'_qty','1'), -(1791,223,'_tax_class',''), -(1792,223,'_line_subtotal','35'), -(1793,223,'_line_subtotal_tax','0'), -(1794,223,'_line_total','35'), -(1795,223,'_line_tax','0'), -(1796,223,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1797,224,'method_id','mondial_relay_point_relais'), -(1798,224,'instance_id',''), -(1799,224,'cost','3'), -(1800,224,'total_tax','0'), -(1801,224,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1802,225,'_product_id','133'), -(1803,225,'_variation_id','135'), -(1804,225,'_qty','1'), -(1805,225,'_tax_class',''), -(1806,225,'_line_subtotal','150'), -(1807,225,'_line_subtotal_tax','0'), -(1808,225,'_line_total','150'), -(1809,225,'_line_tax','0'), -(1810,225,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1811,225,'pa_size','52'), -(1812,226,'method_id','mondial_relay_point_relais'), -(1813,226,'instance_id',''), -(1814,226,'cost','0'), -(1815,226,'total_tax','0'), -(1816,226,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1817,227,'_product_id','430'), -(1818,227,'_variation_id','845'), -(1819,227,'_qty','1'), -(1820,227,'_tax_class',''), -(1821,227,'_line_subtotal','45'), -(1822,227,'_line_subtotal_tax','0'), -(1823,227,'_line_total','45'), -(1824,227,'_line_tax','0'), -(1825,227,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1826,227,'pa_stone','lapis-lazuli'), -(1827,228,'method_id','mondial_relay_point_relais'), -(1828,228,'instance_id',''), -(1829,228,'cost','3'), -(1830,228,'total_tax','0'), -(1831,228,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1832,229,'_product_id','271'), -(1833,229,'_variation_id','0'), -(1834,229,'_qty','1'), -(1835,229,'_tax_class',''), -(1836,229,'_line_subtotal','95'), -(1837,229,'_line_subtotal_tax','0'), -(1838,229,'_line_total','95'), -(1839,229,'_line_tax','0'), -(1840,229,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1841,230,'method_id','mondial_relay_point_relais'), -(1842,230,'instance_id',''), -(1843,230,'cost','0'), -(1844,230,'total_tax','0'), -(1845,230,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1846,231,'_product_id','271'), -(1847,231,'_variation_id','0'), -(1848,231,'_qty','1'), -(1849,231,'_tax_class',''), -(1850,231,'_line_subtotal','95'), -(1851,231,'_line_subtotal_tax','0'), -(1852,231,'_line_total','95'), -(1853,231,'_line_tax','0'), -(1854,231,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1855,232,'method_id','mondial_relay_point_relais'), -(1856,232,'instance_id',''), -(1857,232,'cost','0'), -(1858,232,'total_tax','0'), -(1859,232,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1860,233,'_product_id','168'), -(1861,233,'_variation_id','200'), -(1862,233,'_qty','1'), -(1863,233,'_tax_class',''), -(1864,233,'_line_subtotal','150'), -(1865,233,'_line_subtotal_tax','0'), -(1866,233,'_line_total','150'), -(1867,233,'_line_tax','0'), -(1868,233,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1869,233,'pa_stone','malachite'), -(1870,234,'method_id','mondial_relay_point_relais'), -(1871,234,'instance_id',''), -(1872,234,'cost','0'), -(1873,234,'total_tax','0'), -(1874,234,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1875,235,'_product_id','274'), -(1876,235,'_variation_id','0'), -(1877,235,'_qty','1'), -(1878,235,'_tax_class',''), -(1879,235,'_line_subtotal','95'), -(1880,235,'_line_subtotal_tax','0'), -(1881,235,'_line_total','95'), -(1882,235,'_line_tax','0'), -(1883,235,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1884,236,'method_id','mondial_relay_point_relais'), -(1885,236,'instance_id',''), -(1886,236,'cost','0'), -(1887,236,'total_tax','0'), -(1888,236,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1889,237,'_product_id','168'), -(1890,237,'_variation_id','200'), -(1891,237,'_qty','1'), -(1892,237,'_tax_class',''), -(1893,237,'_line_subtotal','150'), -(1894,237,'_line_subtotal_tax','0'), -(1895,237,'_line_total','150'), -(1896,237,'_line_tax','0'), -(1897,237,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1898,237,'pa_stone','malachite'), -(1899,238,'method_id','mondial_relay_point_relais'), -(1900,238,'instance_id',''), -(1901,238,'cost','0'), -(1902,238,'total_tax','0'), -(1903,238,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1904,239,'_product_id','168'), -(1905,239,'_variation_id','200'), -(1906,239,'_qty','1'), -(1907,239,'_tax_class',''), -(1908,239,'_line_subtotal','150'), -(1909,239,'_line_subtotal_tax','0'), -(1910,239,'_line_total','150'), -(1911,239,'_line_tax','0'), -(1912,239,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1913,239,'pa_stone','malachite'), -(1914,240,'_product_id','447'), -(1915,240,'_variation_id','0'), -(1916,240,'_qty','1'), -(1917,240,'_tax_class',''), -(1918,240,'_line_subtotal','40'), -(1919,240,'_line_subtotal_tax','0'), -(1920,240,'_line_total','40'), -(1921,240,'_line_tax','0'), -(1922,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1923,241,'method_id','mondial_relay_point_relais'), -(1924,241,'instance_id',''), -(1925,241,'cost','0'), -(1926,241,'total_tax','0'), -(1927,241,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1928,242,'_product_id','342'), -(1929,242,'_variation_id','560'), -(1930,242,'_qty','1'), -(1931,242,'_tax_class',''), -(1932,242,'_line_subtotal','58'), -(1933,242,'_line_subtotal_tax','0'), -(1934,242,'_line_total','58'), -(1935,242,'_line_tax','0'), -(1936,242,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1937,242,'pa_side','all'), -(1938,243,'_product_id','433'), -(1939,243,'_variation_id','478'), -(1940,243,'_qty','1'), -(1941,243,'_tax_class',''), -(1942,243,'_line_subtotal','48'), -(1943,243,'_line_subtotal_tax','0'), -(1944,243,'_line_total','48'), -(1945,243,'_line_tax','0'), -(1946,243,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1947,243,'pa_stone','lapis-lazuli'), -(1948,244,'method_id','mondial_relay_point_relais'), -(1949,244,'instance_id',''), -(1950,244,'cost','0'), -(1951,244,'total_tax','0'), -(1952,244,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1953,245,'_product_id','328'), -(1954,245,'_variation_id','0'), -(1955,245,'_qty','1'), -(1956,245,'_tax_class',''), -(1957,245,'_line_subtotal','40'), -(1958,245,'_line_subtotal_tax','0'), -(1959,245,'_line_total','40'), -(1960,245,'_line_tax','0'), -(1961,245,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1962,246,'method_id','mondial_relay_point_relais'), -(1963,246,'instance_id',''), -(1964,246,'cost','3'), -(1965,246,'total_tax','0'), -(1966,246,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1967,247,'_product_id','328'), -(1968,247,'_variation_id','0'), -(1969,247,'_qty','1'), -(1970,247,'_tax_class',''), -(1971,247,'_line_subtotal','40'), -(1972,247,'_line_subtotal_tax','0'), -(1973,247,'_line_total','40'), -(1974,247,'_line_tax','0'), -(1975,247,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1976,248,'method_id','mondial_relay_point_relais'), -(1977,248,'instance_id',''), -(1978,248,'cost','3'), -(1979,248,'total_tax','0'), -(1980,248,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1981,249,'_product_id','625'), -(1982,249,'_variation_id','633'), -(1983,249,'_qty','1'), -(1984,249,'_tax_class',''), -(1985,249,'_line_subtotal','65'), -(1986,249,'_line_subtotal_tax','0'), -(1987,249,'_line_total','65'), -(1988,249,'_line_tax','0'), -(1989,249,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(1990,249,'pa_size','64'), -(1991,250,'method_id','mondial_relay_point_relais'), -(1992,250,'instance_id',''), -(1993,250,'cost','0'), -(1994,250,'total_tax','0'), -(1995,250,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(1996,251,'_product_id','318'), -(1997,251,'_variation_id','0'), -(1998,251,'_qty','1'), -(1999,251,'_tax_class',''), -(2000,251,'_line_subtotal','40'), -(2001,251,'_line_subtotal_tax','0'), -(2002,251,'_line_total','40'), -(2003,251,'_line_tax','0'), -(2004,251,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2005,252,'method_id','mondial_relay_point_relais'), -(2006,252,'instance_id',''), -(2007,252,'cost','3'), -(2008,252,'total_tax','0'), -(2009,252,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2010,253,'_product_id','490'), -(2011,253,'_variation_id','494'), -(2012,253,'_qty','1'), -(2013,253,'_tax_class',''), -(2014,253,'_line_subtotal','50'), -(2015,253,'_line_subtotal_tax','0'), -(2016,253,'_line_total','50'), -(2017,253,'_line_tax','0'), -(2018,253,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2019,253,'pa_side','pair'), -(2020,254,'_product_id','342'), -(2021,254,'_variation_id','563'), -(2022,254,'_qty','2'), -(2023,254,'_tax_class',''), -(2024,254,'_line_subtotal','60'), -(2025,254,'_line_subtotal_tax','0'), -(2026,254,'_line_total','60'), -(2027,254,'_line_tax','0'), -(2028,254,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2029,254,'pa_side','short'), -(2030,255,'method_id','mondial_relay_point_relais'), -(2031,255,'instance_id',''), -(2032,255,'cost','0'), -(2033,255,'total_tax','0'), -(2034,255,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2035,256,'_product_id','342'), -(2036,256,'_variation_id','563'), -(2037,256,'_qty','2'), -(2038,256,'_tax_class',''), -(2039,256,'_line_subtotal','60'), -(2040,256,'_line_subtotal_tax','0'), -(2041,256,'_line_total','60'), -(2042,256,'_line_tax','0'), -(2043,256,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2044,256,'pa_side','short'), -(2045,257,'method_id','mondial_relay_point_relais'), -(2046,257,'instance_id',''), -(2047,257,'cost','0'), -(2048,257,'total_tax','0'), -(2049,257,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2050,258,'_product_id','342'), -(2051,258,'_variation_id','563'), -(2052,258,'_qty','2'), -(2053,258,'_tax_class',''), -(2054,258,'_line_subtotal','60'), -(2055,258,'_line_subtotal_tax','0'), -(2056,258,'_line_total','60'), -(2057,258,'_line_tax','0'), -(2058,258,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2059,258,'pa_side','short'), -(2060,259,'method_id','mondial_relay_point_relais'), -(2061,259,'instance_id',''), -(2062,259,'cost','0'), -(2063,259,'total_tax','0'), -(2064,259,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2065,260,'_product_id','342'), -(2066,260,'_variation_id','563'), -(2067,260,'_qty','2'), -(2068,260,'_tax_class',''), -(2069,260,'_line_subtotal','60'), -(2070,260,'_line_subtotal_tax','0'), -(2071,260,'_line_total','60'), -(2072,260,'_line_tax','0'), -(2073,260,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2074,260,'pa_side','short'), -(2075,261,'method_id','mondial_relay_point_relais'), -(2076,261,'instance_id',''), -(2077,261,'cost','0'), -(2078,261,'total_tax','0'), -(2079,261,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2080,262,'_product_id','285'), -(2081,262,'_variation_id','642'), -(2082,262,'_qty','1'), -(2083,262,'_tax_class',''), -(2084,262,'_line_subtotal','80'), -(2085,262,'_line_subtotal_tax','0'), -(2086,262,'_line_total','80'), -(2087,262,'_line_tax','0'), -(2088,262,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2089,262,'pa_side','pair'), -(2090,263,'method_id','mondial_relay_point_relais'), -(2091,263,'instance_id',''), -(2092,263,'cost','0'), -(2093,263,'total_tax','0'), -(2094,263,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2095,264,'_product_id','447'), -(2096,264,'_variation_id','0'), -(2097,264,'_qty','1'), -(2098,264,'_tax_class',''), -(2099,264,'_line_subtotal','45'), -(2100,264,'_line_subtotal_tax','0'), -(2101,264,'_line_total','45'), -(2102,264,'_line_tax','0'), -(2103,264,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2104,265,'_product_id','435'), -(2105,265,'_variation_id','0'), -(2106,265,'_qty','1'), -(2107,265,'_tax_class',''), -(2108,265,'_line_subtotal','40'), -(2109,265,'_line_subtotal_tax','0'), -(2110,265,'_line_total','40'), -(2111,265,'_line_tax','0'), -(2112,265,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2113,266,'_product_id','328'), -(2114,266,'_variation_id','0'), -(2115,266,'_qty','1'), -(2116,266,'_tax_class',''), -(2117,266,'_line_subtotal','45'), -(2118,266,'_line_subtotal_tax','0'), -(2119,266,'_line_total','45'), -(2120,266,'_line_tax','0'), -(2121,266,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2122,267,'method_id','mondial_relay_point_relais'), -(2123,267,'instance_id',''), -(2124,267,'cost','0'), -(2125,267,'total_tax','0'), -(2126,267,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2142,270,'_product_id','447'), -(2143,270,'_variation_id','0'), -(2144,270,'_qty','1'), -(2145,270,'_tax_class',''), -(2146,270,'_line_subtotal','45'), -(2147,270,'_line_subtotal_tax','0'), -(2148,270,'_line_total','45'), -(2149,270,'_line_tax','0'), -(2150,270,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2151,271,'_product_id','202'), -(2152,271,'_variation_id','638'), -(2153,271,'_qty','1'), -(2154,271,'_tax_class',''), -(2155,271,'_line_subtotal','85'), -(2156,271,'_line_subtotal_tax','0'), -(2157,271,'_line_total','85'), -(2158,271,'_line_tax','0'), -(2159,271,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2160,271,'pa_side','pair'), -(2161,272,'method_id','mondial_relay_point_relais'), -(2162,272,'instance_id',''), -(2163,272,'cost','0'), -(2164,272,'total_tax','0'), -(2165,272,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2273,287,'_product_id','1004'), -(2274,287,'_variation_id','1005'), -(2275,287,'_qty','1'), -(2276,287,'_tax_class',''), -(2277,287,'_line_subtotal','70'), -(2278,287,'_line_subtotal_tax','0'), -(2279,287,'_line_total','70'), -(2280,287,'_line_tax','0'), -(2281,287,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2282,287,'pa_side','pair'), -(2283,288,'_product_id','202'), -(2284,288,'_variation_id','638'), -(2285,288,'_qty','1'), -(2286,288,'_tax_class',''), -(2287,288,'_line_subtotal','85'), -(2288,288,'_line_subtotal_tax','0'), -(2289,288,'_line_total','85'), -(2290,288,'_line_tax','0'), -(2291,288,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2292,288,'pa_side','pair'), -(2293,289,'method_id','mondial_relay_point_relais'), -(2294,289,'instance_id',''), -(2295,289,'cost','0'), -(2296,289,'total_tax','0'), -(2297,289,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2719,343,'_product_id','554'), -(2720,343,'_variation_id','555'), -(2721,343,'_qty','1'), -(2722,343,'_tax_class',''), -(2723,343,'_line_subtotal','65'), -(2724,343,'_line_subtotal_tax','0'), -(2725,343,'_line_total','65'), -(2726,343,'_line_tax','0'), -(2727,343,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2728,343,'pa_side','pair'), -(2729,344,'_product_id','318'), -(2730,344,'_variation_id','0'), -(2731,344,'_qty','1'), -(2732,344,'_tax_class',''), -(2733,344,'_line_subtotal','45'), -(2734,344,'_line_subtotal_tax','0'), -(2735,344,'_line_total','45'), -(2736,344,'_line_tax','0'), -(2737,344,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2738,345,'method_id','mondial_relay_point_relais'), -(2739,345,'instance_id',''), -(2740,345,'cost','0'), -(2741,345,'total_tax','0'), -(2742,345,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2743,346,'_product_id','1467'), -(2744,346,'_variation_id','1468'), -(2745,346,'_qty','1'), -(2746,346,'_tax_class',''), -(2747,346,'_line_subtotal','120'), -(2748,346,'_line_subtotal_tax','0'), -(2749,346,'_line_total','120'), -(2750,346,'_line_tax','0'), -(2751,346,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2752,346,'pa_size','50'), -(2753,347,'method_id','mondial_relay_point_relais'), -(2754,347,'instance_id',''), -(2755,347,'cost','0'), -(2756,347,'total_tax','0'), -(2757,347,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2758,348,'_product_id','213'), -(2759,348,'_variation_id','570'), -(2760,348,'_qty','1'), -(2761,348,'_tax_class',''), -(2762,348,'_line_subtotal','75'), -(2763,348,'_line_subtotal_tax','0'), -(2764,348,'_line_total','75'), -(2765,348,'_line_tax','0'), -(2766,348,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2767,348,'pa_side','pair'), -(2768,349,'method_id','mondial_relay_point_relais'), -(2769,349,'instance_id',''), -(2770,349,'cost','0'), -(2771,349,'total_tax','0'), -(2772,349,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2773,350,'_product_id','342'), -(2774,350,'_variation_id','560'), -(2775,350,'_qty','1'), -(2776,350,'_tax_class',''), -(2777,350,'_line_subtotal','55'), -(2778,350,'_line_subtotal_tax','0'), -(2779,350,'_line_total','55'), -(2780,350,'_line_tax','0'), -(2781,350,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2782,350,'pa_side','all'), -(2783,351,'method_id','mondial_relay_point_relais'), -(2784,351,'instance_id',''), -(2785,351,'cost','0'), -(2786,351,'total_tax','0'), -(2787,351,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2788,352,'_product_id','202'), -(2789,352,'_variation_id','638'), -(2790,352,'_qty','1'), -(2791,352,'_tax_class',''), -(2792,352,'_line_subtotal','85'), -(2793,352,'_line_subtotal_tax','0'), -(2794,352,'_line_total','85'), -(2795,352,'_line_tax','0'), -(2796,352,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2797,352,'pa_side','pair'), -(2798,353,'method_id','mondial_relay_point_relais'), -(2799,353,'instance_id',''), -(2800,353,'cost','0'), -(2801,353,'total_tax','0'), -(2802,353,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2803,354,'_product_id','202'), -(2804,354,'_variation_id','638'), -(2805,354,'_qty','1'), -(2806,354,'_tax_class',''), -(2807,354,'_line_subtotal','85'), -(2808,354,'_line_subtotal_tax','0'), -(2809,354,'_line_total','85'), -(2810,354,'_line_tax','0'), -(2811,354,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2812,354,'pa_side','pair'), -(2813,355,'method_id','mondial_relay_point_relais'), -(2814,355,'instance_id',''), -(2815,355,'cost','0'), -(2816,355,'total_tax','0'), -(2817,355,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2818,356,'_product_id','274'), -(2819,356,'_variation_id','0'), -(2820,356,'_qty','1'), -(2821,356,'_tax_class',''), -(2822,356,'_line_subtotal','120'), -(2823,356,'_line_subtotal_tax','0'), -(2824,356,'_line_total','120'), -(2825,356,'_line_tax','0'), -(2826,356,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2827,357,'method_id','mondial_relay_point_relais'), -(2828,357,'instance_id',''), -(2829,357,'cost','0'), -(2830,357,'total_tax','0'), -(2831,357,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2832,358,'_product_id','306'), -(2833,358,'_variation_id','651'), -(2834,358,'_qty','1'), -(2835,358,'_tax_class',''), -(2836,358,'_line_subtotal','50'), -(2837,358,'_line_subtotal_tax','0'), -(2838,358,'_line_total','50'), -(2839,358,'_line_tax','0'), -(2840,358,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2841,358,'pa_side','long'), -(2842,359,'_product_id','306'), -(2843,359,'_variation_id','653'), -(2844,359,'_qty','1'), -(2845,359,'_tax_class',''), -(2846,359,'_line_subtotal','48'), -(2847,359,'_line_subtotal_tax','0'), -(2848,359,'_line_total','48'), -(2849,359,'_line_tax','0'), -(2850,359,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2851,359,'pa_side','short'), -(2852,360,'_product_id','285'), -(2853,360,'_variation_id','642'), -(2854,360,'_qty','1'), -(2855,360,'_tax_class',''), -(2856,360,'_line_subtotal','85'), -(2857,360,'_line_subtotal_tax','0'), -(2858,360,'_line_total','85'), -(2859,360,'_line_tax','0'), -(2860,360,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2861,360,'pa_side','pair'), -(2862,361,'method_id','free_shipping'), -(2863,361,'instance_id',''), -(2864,361,'cost','0'), -(2865,361,'total_tax','0'), -(2866,361,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2867,362,'_product_id','285'), -(2868,362,'_variation_id','642'), -(2869,362,'_qty','1'), -(2870,362,'_tax_class',''), -(2871,362,'_line_subtotal','85'), -(2872,362,'_line_subtotal_tax','0'), -(2873,362,'_line_total','85'), -(2874,362,'_line_tax','0'), -(2875,362,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2876,362,'pa_side','pair'), -(2877,363,'method_id','mondial_relay_point_relais'), -(2878,363,'instance_id',''), -(2879,363,'cost','0'), -(2880,363,'total_tax','0'), -(2881,363,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2882,364,'_product_id','385'), -(2883,364,'_variation_id','391'), -(2884,364,'_qty','2'), -(2885,364,'_tax_class',''), -(2886,364,'_line_subtotal','240'), -(2887,364,'_line_subtotal_tax','0'), -(2888,364,'_line_total','240'), -(2889,364,'_line_tax','0'), -(2890,364,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2891,364,'pa_stone','lapis-lazuli'), -(2892,365,'method_id','mondial_relay_point_relais'), -(2893,365,'instance_id',''), -(2894,365,'cost','0'), -(2895,365,'total_tax','0'), -(2896,365,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2897,366,'_product_id','1444'), -(2898,366,'_variation_id','1450'), -(2899,366,'_qty','1'), -(2900,366,'_tax_class',''), -(2901,366,'_line_subtotal','50'), -(2902,366,'_line_subtotal_tax','0'), -(2903,366,'_line_total','50'), -(2904,366,'_line_tax','0'), -(2905,366,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(2906,366,'pa_side','left-side'), -(2907,367,'method_id','mondial_relay_point_relais'), -(2908,367,'instance_id',''), -(2909,367,'cost','0'), -(2910,367,'total_tax','0'), -(2911,367,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(2912,368,'_product_id','0'), -(2913,369,'_product_id','0'), -(2914,368,'_variation_id','0'), -(2915,369,'_variation_id','0'), -(2916,368,'_qty','2'), -(2917,369,'_qty','2'), -(2918,368,'_tax_class',''), -(2919,369,'_tax_class',''), -(2920,368,'_line_subtotal','50'), -(2921,369,'_line_subtotal','50'), -(2922,368,'_line_subtotal_tax','0'), -(2923,369,'_line_subtotal_tax','0'), -(2924,368,'_line_total','50'), -(2925,369,'_line_total','50'), -(2926,368,'_line_tax','0'), -(2927,369,'_line_tax','0'), -(2928,368,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2929,369,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2930,370,'_product_id','0'), -(2931,371,'_product_id','0'), -(2932,370,'_variation_id','0'), -(2933,371,'_variation_id','0'), -(2934,370,'_qty','1'), -(2935,371,'_qty','1'), -(2936,370,'_tax_class',''), -(2937,371,'_tax_class',''), -(2938,370,'_line_subtotal','20'), -(2939,371,'_line_subtotal','20'), -(2940,370,'_line_subtotal_tax','0'), -(2941,371,'_line_subtotal_tax','0'), -(2942,370,'_line_total','20'), -(2943,371,'_line_total','20'), -(2944,370,'_line_tax','0'), -(2945,371,'_line_tax','0'), -(2946,370,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2947,371,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2948,370,'Colour','Red'), -(2949,371,'Colour','Red'), -(2950,370,'Size','Small'), -(2951,371,'Size','Small'), -(2952,372,'_product_id','0'), -(2953,373,'_product_id','0'), -(2954,372,'_variation_id','0'), -(2955,373,'_variation_id','0'), -(2956,372,'_qty','1'), -(2957,373,'_qty','1'), -(2958,372,'_tax_class',''), -(2959,373,'_tax_class',''), -(2960,372,'_line_subtotal','15'), -(2961,373,'_line_subtotal','15'), -(2962,372,'_line_subtotal_tax','0'), -(2963,373,'_line_subtotal_tax','0'), -(2964,372,'_line_total','15'), -(2965,373,'_line_total','15'), -(2966,372,'_line_tax','0'), -(2967,373,'_line_tax','0'), -(2968,372,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2969,373,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2970,374,'_product_id','0'), -(2971,375,'_product_id','0'), -(2972,374,'_variation_id','0'), -(2973,375,'_variation_id','0'), -(2974,374,'_qty','2'), -(2975,375,'_qty','2'), -(2976,374,'_tax_class',''), -(2977,375,'_tax_class',''), -(2978,374,'_line_subtotal','50'), -(2979,375,'_line_subtotal','50'), -(2980,374,'_line_subtotal_tax','0'), -(2981,375,'_line_subtotal_tax','0'), -(2982,374,'_line_total','50'), -(2983,375,'_line_total','50'), -(2984,374,'_line_tax','0'), -(2985,375,'_line_tax','0'), -(2986,374,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2987,375,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(2988,376,'_product_id','0'), -(2989,377,'_product_id','0'), -(2990,376,'_variation_id','0'), -(2991,377,'_variation_id','0'), -(2992,376,'_qty','1'), -(2993,377,'_qty','1'), -(2994,376,'_tax_class',''), -(2995,377,'_tax_class',''), -(2996,376,'_line_subtotal','20'), -(2997,377,'_line_subtotal','20'), -(2998,376,'_line_subtotal_tax','0'), -(2999,377,'_line_subtotal_tax','0'), -(3000,376,'_line_total','20'), -(3001,377,'_line_total','20'), -(3002,376,'_line_tax','0'), -(3003,377,'_line_tax','0'), -(3004,376,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3005,376,'Colour','Red'), -(3006,377,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3007,376,'Size','Small'), -(3008,377,'Colour','Red'), -(3009,377,'Size','Small'), -(3010,378,'_product_id','0'), -(3011,378,'_variation_id','0'), -(3012,379,'_product_id','0'), -(3013,378,'_qty','1'), -(3014,379,'_variation_id','0'), -(3015,378,'_tax_class',''), -(3016,379,'_qty','1'), -(3017,378,'_line_subtotal','15'), -(3018,379,'_tax_class',''), -(3019,378,'_line_subtotal_tax','0'), -(3020,379,'_line_subtotal','15'), -(3021,378,'_line_total','15'), -(3022,379,'_line_subtotal_tax','0'), -(3023,378,'_line_tax','0'), -(3024,379,'_line_total','15'), -(3025,378,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3026,379,'_line_tax','0'), -(3027,379,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3028,381,'_product_id','0'), -(3029,380,'_product_id','0'), -(3030,381,'_variation_id','0'), -(3031,380,'_variation_id','0'), -(3032,381,'_qty','2'), -(3033,380,'_qty','2'), -(3034,381,'_tax_class',''), -(3035,380,'_tax_class',''), -(3036,381,'_line_subtotal','50'), -(3037,380,'_line_subtotal','50'), -(3038,381,'_line_subtotal_tax','0'), -(3039,380,'_line_subtotal_tax','0'), -(3040,381,'_line_total','50'), -(3041,380,'_line_total','50'), -(3042,381,'_line_tax','0'), -(3043,380,'_line_tax','0'), -(3044,381,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3045,380,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3046,382,'_product_id','0'), -(3047,383,'_product_id','0'), -(3048,382,'_variation_id','0'), -(3049,383,'_variation_id','0'), -(3050,382,'_qty','1'), -(3051,383,'_qty','1'), -(3052,382,'_tax_class',''), -(3053,383,'_tax_class',''), -(3054,382,'_line_subtotal','20'), -(3055,383,'_line_subtotal','20'), -(3056,382,'_line_subtotal_tax','0'), -(3057,383,'_line_subtotal_tax','0'), -(3058,382,'_line_total','20'), -(3059,383,'_line_total','20'), -(3060,382,'_line_tax','0'), -(3061,383,'_line_tax','0'), -(3062,382,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3063,383,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3064,382,'Colour','Red'), -(3065,383,'Colour','Red'), -(3066,382,'Size','Small'), -(3067,383,'Size','Small'), -(3068,384,'_product_id','0'), -(3069,385,'_product_id','0'), -(3070,384,'_variation_id','0'), -(3071,385,'_variation_id','0'), -(3072,384,'_qty','1'), -(3073,385,'_qty','1'), -(3074,384,'_tax_class',''), -(3075,385,'_tax_class',''), -(3076,384,'_line_subtotal','15'), -(3077,385,'_line_subtotal','15'), -(3078,384,'_line_subtotal_tax','0'), -(3079,385,'_line_subtotal_tax','0'), -(3080,384,'_line_total','15'), -(3081,385,'_line_total','15'), -(3082,384,'_line_tax','0'), -(3083,385,'_line_tax','0'), -(3084,384,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3085,385,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3086,386,'_product_id','0'), -(3087,387,'_product_id','0'), -(3088,386,'_variation_id','0'), -(3089,387,'_variation_id','0'), -(3090,386,'_qty','2'), -(3091,387,'_qty','2'), -(3092,386,'_tax_class',''), -(3093,387,'_tax_class',''), -(3094,386,'_line_subtotal','50'), -(3095,387,'_line_subtotal','50'), -(3096,386,'_line_subtotal_tax','0'), -(3097,387,'_line_subtotal_tax','0'), -(3098,386,'_line_total','50'), -(3099,387,'_line_total','50'), -(3100,386,'_line_tax','0'), -(3101,387,'_line_tax','0'), -(3102,386,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3103,387,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3104,388,'_product_id','0'), -(3105,389,'_product_id','0'), -(3106,388,'_variation_id','0'), -(3107,389,'_variation_id','0'), -(3108,388,'_qty','1'), -(3109,389,'_qty','1'), -(3110,388,'_tax_class',''), -(3111,389,'_tax_class',''), -(3112,388,'_line_subtotal','20'), -(3113,389,'_line_subtotal','20'), -(3114,388,'_line_subtotal_tax','0'), -(3115,389,'_line_subtotal_tax','0'), -(3116,388,'_line_total','20'), -(3117,389,'_line_total','20'), -(3118,388,'_line_tax','0'), -(3119,389,'_line_tax','0'), -(3120,388,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3121,389,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3122,388,'Colour','Red'), -(3123,389,'Colour','Red'), -(3124,388,'Size','Small'), -(3125,389,'Size','Small'), -(3126,390,'_product_id','0'), -(3127,391,'_product_id','0'), -(3128,390,'_variation_id','0'), -(3129,391,'_variation_id','0'), -(3130,390,'_qty','1'), -(3131,391,'_qty','1'), -(3132,390,'_tax_class',''), -(3133,391,'_tax_class',''), -(3134,390,'_line_subtotal','15'), -(3135,391,'_line_subtotal','15'), -(3136,390,'_line_subtotal_tax','0'), -(3137,391,'_line_subtotal_tax','0'), -(3138,390,'_line_total','15'), -(3139,391,'_line_total','15'), -(3140,390,'_line_tax','0'), -(3141,391,'_line_tax','0'), -(3142,390,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3143,391,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3144,392,'_product_id','0'), -(3145,392,'_variation_id','0'), -(3146,393,'_product_id','0'), -(3147,392,'_qty','2'), -(3148,393,'_variation_id','0'), -(3149,392,'_tax_class',''), -(3150,393,'_qty','2'), -(3151,392,'_line_subtotal','50'), -(3152,393,'_tax_class',''), -(3153,392,'_line_subtotal_tax','0'), -(3154,393,'_line_subtotal','50'), -(3155,392,'_line_total','50'), -(3156,393,'_line_subtotal_tax','0'), -(3157,392,'_line_tax','0'), -(3158,393,'_line_total','50'), -(3159,392,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3160,393,'_line_tax','0'), -(3161,393,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3162,394,'_product_id','0'), -(3163,394,'_variation_id','0'), -(3164,395,'_product_id','0'), -(3165,394,'_qty','1'), -(3166,395,'_variation_id','0'), -(3167,394,'_tax_class',''), -(3168,395,'_qty','1'), -(3169,394,'_line_subtotal','20'), -(3170,395,'_tax_class',''), -(3171,394,'_line_subtotal_tax','0'), -(3172,395,'_line_subtotal','20'), -(3173,394,'_line_total','20'), -(3174,395,'_line_subtotal_tax','0'), -(3175,394,'_line_tax','0'), -(3176,395,'_line_total','20'), -(3177,394,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3178,394,'Colour','Red'), -(3179,395,'_line_tax','0'), -(3180,394,'Size','Small'), -(3181,395,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3182,395,'Colour','Red'), -(3183,395,'Size','Small'), -(3184,396,'_product_id','0'), -(3185,396,'_variation_id','0'), -(3186,397,'_product_id','0'), -(3187,396,'_qty','1'), -(3188,397,'_variation_id','0'), -(3189,396,'_tax_class',''), -(3190,397,'_qty','1'), -(3191,396,'_line_subtotal','15'), -(3192,397,'_tax_class',''), -(3193,396,'_line_subtotal_tax','0'), -(3194,397,'_line_subtotal','15'), -(3195,396,'_line_total','15'), -(3196,397,'_line_subtotal_tax','0'), -(3197,396,'_line_tax','0'), -(3198,397,'_line_total','15'), -(3199,396,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3200,397,'_line_tax','0'), -(3201,397,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3202,398,'_product_id','0'), -(3203,398,'_variation_id','0'), -(3204,398,'_qty','2'), -(3205,398,'_tax_class',''), -(3206,398,'_line_subtotal','50'), -(3207,398,'_line_subtotal_tax','0'), -(3208,398,'_line_total','50'), -(3209,398,'_line_tax','0'), -(3210,398,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3211,399,'_product_id','0'), -(3212,399,'_variation_id','0'), -(3213,399,'_qty','1'), -(3214,399,'_tax_class',''), -(3215,399,'_line_subtotal','20'), -(3216,399,'_line_subtotal_tax','0'), -(3217,399,'_line_total','20'), -(3218,399,'_line_tax','0'), -(3219,399,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3220,399,'Colour','Red'), -(3221,399,'Size','Small'), -(3222,400,'_product_id','0'), -(3223,400,'_variation_id','0'), -(3224,400,'_qty','1'), -(3225,400,'_tax_class',''), -(3226,400,'_line_subtotal','15'), -(3227,400,'_line_subtotal_tax','0'), -(3228,400,'_line_total','15'), -(3229,400,'_line_tax','0'), -(3230,400,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3231,401,'_product_id','0'), -(3232,401,'_variation_id','0'), -(3233,401,'_qty','2'), -(3234,401,'_tax_class',''), -(3235,401,'_line_subtotal','50'), -(3236,401,'_line_subtotal_tax','0'), -(3237,401,'_line_total','50'), -(3238,401,'_line_tax','0'), -(3239,401,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3240,402,'_product_id','0'), -(3241,402,'_variation_id','0'), -(3242,402,'_qty','1'), -(3243,402,'_tax_class',''), -(3244,402,'_line_subtotal','20'), -(3245,402,'_line_subtotal_tax','0'), -(3246,402,'_line_total','20'), -(3247,402,'_line_tax','0'), -(3248,402,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3249,402,'Colour','Red'), -(3250,402,'Size','Small'), -(3251,403,'_product_id','0'), -(3252,403,'_variation_id','0'), -(3253,404,'_product_id','0'), -(3254,403,'_qty','2'), -(3255,404,'_variation_id','0'), -(3256,403,'_tax_class',''), -(3257,404,'_qty','1'), -(3258,403,'_line_subtotal','50'), -(3259,404,'_tax_class',''), -(3260,403,'_line_subtotal_tax','0'), -(3261,404,'_line_subtotal','15'), -(3262,403,'_line_total','50'), -(3263,404,'_line_subtotal_tax','0'), -(3264,403,'_line_tax','0'), -(3265,404,'_line_total','15'), -(3266,403,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3267,404,'_line_tax','0'), -(3268,404,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3269,405,'_product_id','0'), -(3270,405,'_variation_id','0'), -(3271,405,'_qty','1'), -(3272,405,'_tax_class',''), -(3273,405,'_line_subtotal','20'), -(3274,405,'_line_subtotal_tax','0'), -(3275,405,'_line_total','20'), -(3276,405,'_line_tax','0'), -(3277,405,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3278,405,'Colour','Red'), -(3279,405,'Size','Small'), -(3280,406,'_product_id','0'), -(3281,406,'_variation_id','0'), -(3282,406,'_qty','1'), -(3283,406,'_tax_class',''), -(3284,406,'_line_subtotal','15'), -(3285,406,'_line_subtotal_tax','0'), -(3286,406,'_line_total','15'), -(3287,406,'_line_tax','0'), -(3288,406,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3289,407,'_product_id','0'), -(3290,407,'_variation_id','0'), -(3291,407,'_qty','2'), -(3292,407,'_tax_class',''), -(3293,407,'_line_subtotal','50'), -(3294,407,'_line_subtotal_tax','0'), -(3295,407,'_line_total','50'), -(3296,408,'_product_id','0'), -(3297,407,'_line_tax','0'), -(3298,408,'_variation_id','0'), -(3299,407,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3300,408,'_qty','2'), -(3301,408,'_tax_class',''), -(3302,409,'_product_id','0'), -(3303,408,'_line_subtotal','50'), -(3304,409,'_variation_id','0'), -(3305,408,'_line_subtotal_tax','0'), -(3306,409,'_qty','1'), -(3307,408,'_line_total','50'), -(3308,409,'_tax_class',''), -(3309,408,'_line_tax','0'), -(3310,409,'_line_subtotal','20'), -(3311,408,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3312,409,'_line_subtotal_tax','0'), -(3313,409,'_line_total','20'), -(3314,410,'_product_id','0'), -(3315,409,'_line_tax','0'), -(3316,410,'_variation_id','0'), -(3317,409,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3318,410,'_qty','1'), -(3319,409,'Colour','Red'), -(3320,410,'_tax_class',''), -(3321,409,'Size','Small'), -(3322,410,'_line_subtotal','20'), -(3323,410,'_line_subtotal_tax','0'), -(3324,411,'_product_id','0'), -(3325,410,'_line_total','20'), -(3326,411,'_variation_id','0'), -(3327,410,'_line_tax','0'), -(3328,411,'_qty','1'), -(3329,410,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3330,411,'_tax_class',''), -(3331,410,'Colour','Red'), -(3332,410,'Size','Small'), -(3333,411,'_line_subtotal','15'), -(3334,411,'_line_subtotal_tax','0'), -(3335,412,'_product_id','0'), -(3336,411,'_line_total','15'), -(3337,412,'_variation_id','0'), -(3338,411,'_line_tax','0'), -(3339,412,'_qty','1'), -(3340,411,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3341,412,'_tax_class',''), -(3342,412,'_line_subtotal','15'), -(3343,412,'_line_subtotal_tax','0'), -(3344,412,'_line_total','15'), -(3345,412,'_line_tax','0'), -(3346,412,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3347,413,'_product_id','0'), -(3348,414,'_product_id','0'), -(3349,413,'_variation_id','0'), -(3350,414,'_variation_id','0'), -(3351,413,'_qty','2'), -(3352,414,'_qty','2'), -(3353,413,'_tax_class',''), -(3354,414,'_tax_class',''), -(3355,413,'_line_subtotal','50'), -(3356,414,'_line_subtotal','50'), -(3357,413,'_line_subtotal_tax','0'), -(3358,414,'_line_subtotal_tax','0'), -(3359,413,'_line_total','50'), -(3360,414,'_line_total','50'), -(3361,413,'_line_tax','0'), -(3362,414,'_line_tax','0'), -(3363,413,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3364,414,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3365,415,'_product_id','0'), -(3366,416,'_product_id','0'), -(3367,415,'_variation_id','0'), -(3368,416,'_variation_id','0'), -(3369,415,'_qty','1'), -(3370,416,'_qty','1'), -(3371,415,'_tax_class',''), -(3372,416,'_tax_class',''), -(3373,415,'_line_subtotal','20'), -(3374,416,'_line_subtotal','20'), -(3375,415,'_line_subtotal_tax','0'), -(3376,416,'_line_subtotal_tax','0'), -(3377,415,'_line_total','20'), -(3378,416,'_line_total','20'), -(3379,415,'_line_tax','0'), -(3380,416,'_line_tax','0'), -(3381,415,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3382,415,'Colour','Red'), -(3383,416,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3384,415,'Size','Small'), -(3385,416,'Colour','Red'), -(3386,416,'Size','Small'), -(3387,417,'_product_id','0'), -(3388,418,'_product_id','0'), -(3389,417,'_variation_id','0'), -(3390,418,'_variation_id','0'), -(3391,417,'_qty','1'), -(3392,418,'_qty','1'), -(3393,417,'_tax_class',''), -(3394,418,'_tax_class',''), -(3395,417,'_line_subtotal','15'), -(3396,418,'_line_subtotal','15'), -(3397,417,'_line_subtotal_tax','0'), -(3398,418,'_line_subtotal_tax','0'), -(3399,417,'_line_total','15'), -(3400,418,'_line_total','15'), -(3401,417,'_line_tax','0'), -(3402,418,'_line_tax','0'), -(3403,417,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3404,418,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3405,419,'_product_id','0'), -(3406,419,'_variation_id','0'), -(3407,420,'_product_id','0'), -(3408,419,'_qty','2'), -(3409,420,'_variation_id','0'), -(3410,419,'_tax_class',''), -(3411,420,'_qty','2'), -(3412,419,'_line_subtotal','50'), -(3413,420,'_tax_class',''), -(3414,419,'_line_subtotal_tax','0'), -(3415,420,'_line_subtotal','50'), -(3416,419,'_line_total','50'), -(3417,420,'_line_subtotal_tax','0'), -(3418,419,'_line_tax','0'), -(3419,420,'_line_total','50'), -(3420,419,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3421,420,'_line_tax','0'), -(3422,420,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3423,421,'_product_id','0'), -(3424,421,'_variation_id','0'), -(3425,422,'_product_id','0'), -(3426,421,'_qty','1'), -(3427,422,'_variation_id','0'), -(3428,421,'_tax_class',''), -(3429,422,'_qty','1'), -(3430,421,'_line_subtotal','20'), -(3431,422,'_tax_class',''), -(3432,421,'_line_subtotal_tax','0'), -(3433,422,'_line_subtotal','20'), -(3434,421,'_line_total','20'), -(3435,422,'_line_subtotal_tax','0'), -(3436,421,'_line_tax','0'), -(3437,422,'_line_total','20'), -(3438,421,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3439,422,'_line_tax','0'), -(3440,421,'Colour','Red'), -(3441,421,'Size','Small'), -(3442,422,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3443,422,'Colour','Red'), -(3444,422,'Size','Small'), -(3445,423,'_product_id','0'), -(3446,423,'_variation_id','0'), -(3447,424,'_product_id','0'), -(3448,423,'_qty','1'), -(3449,424,'_variation_id','0'), -(3450,423,'_tax_class',''), -(3451,424,'_qty','1'), -(3452,423,'_line_subtotal','15'), -(3453,424,'_tax_class',''), -(3454,423,'_line_subtotal_tax','0'), -(3455,424,'_line_subtotal','15'), -(3456,423,'_line_total','15'), -(3457,424,'_line_subtotal_tax','0'), -(3458,423,'_line_tax','0'), -(3459,424,'_line_total','15'), -(3460,423,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3461,424,'_line_tax','0'), -(3462,424,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3463,425,'_product_id','0'), -(3464,426,'_product_id','0'), -(3465,425,'_variation_id','0'), -(3466,426,'_variation_id','0'), -(3467,425,'_qty','2'), -(3468,426,'_qty','2'), -(3469,425,'_tax_class',''), -(3470,426,'_tax_class',''), -(3471,425,'_line_subtotal','50'), -(3472,426,'_line_subtotal','50'), -(3473,425,'_line_subtotal_tax','0'), -(3474,426,'_line_subtotal_tax','0'), -(3475,425,'_line_total','50'), -(3476,426,'_line_total','50'), -(3477,425,'_line_tax','0'), -(3478,426,'_line_tax','0'), -(3479,425,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3480,426,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3481,427,'_product_id','0'), -(3482,428,'_product_id','0'), -(3483,427,'_variation_id','0'), -(3484,428,'_variation_id','0'), -(3485,427,'_qty','1'), -(3486,428,'_qty','1'), -(3487,427,'_tax_class',''), -(3488,428,'_tax_class',''), -(3489,427,'_line_subtotal','20'), -(3490,428,'_line_subtotal','20'), -(3491,427,'_line_subtotal_tax','0'), -(3492,428,'_line_subtotal_tax','0'), -(3493,427,'_line_total','20'), -(3494,428,'_line_total','20'), -(3495,427,'_line_tax','0'), -(3496,428,'_line_tax','0'), -(3497,427,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3498,428,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3499,427,'Colour','Red'), -(3500,428,'Colour','Red'), -(3501,427,'Size','Small'), -(3502,428,'Size','Small'), -(3503,429,'_product_id','0'), -(3504,430,'_product_id','0'), -(3505,429,'_variation_id','0'), -(3506,430,'_variation_id','0'), -(3507,429,'_qty','1'), -(3508,430,'_qty','1'), -(3509,429,'_tax_class',''), -(3510,430,'_tax_class',''), -(3511,429,'_line_subtotal','15'), -(3512,430,'_line_subtotal','15'), -(3513,429,'_line_subtotal_tax','0'), -(3514,430,'_line_subtotal_tax','0'), -(3515,429,'_line_total','15'), -(3516,430,'_line_total','15'), -(3517,429,'_line_tax','0'), -(3518,430,'_line_tax','0'), -(3519,429,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3520,430,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3521,431,'_product_id','0'), -(3522,432,'_product_id','0'), -(3523,431,'_variation_id','0'), -(3524,432,'_variation_id','0'), -(3525,431,'_qty','2'), -(3526,432,'_qty','2'), -(3527,431,'_tax_class',''), -(3528,432,'_tax_class',''), -(3529,431,'_line_subtotal','50'), -(3530,432,'_line_subtotal','50'), -(3531,431,'_line_subtotal_tax','0'), -(3532,432,'_line_subtotal_tax','0'), -(3533,431,'_line_total','50'), -(3534,432,'_line_total','50'), -(3535,431,'_line_tax','0'), -(3536,432,'_line_tax','0'), -(3537,431,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3538,432,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3539,433,'_product_id','0'), -(3540,434,'_product_id','0'), -(3541,433,'_variation_id','0'), -(3542,434,'_variation_id','0'), -(3543,433,'_qty','1'), -(3544,434,'_qty','1'), -(3545,433,'_tax_class',''), -(3546,434,'_tax_class',''), -(3547,433,'_line_subtotal','20'), -(3548,434,'_line_subtotal','20'), -(3549,433,'_line_subtotal_tax','0'), -(3550,434,'_line_subtotal_tax','0'), -(3551,433,'_line_total','20'), -(3552,434,'_line_total','20'), -(3553,433,'_line_tax','0'), -(3554,434,'_line_tax','0'), -(3555,433,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3556,434,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3557,433,'Colour','Red'), -(3558,434,'Colour','Red'), -(3559,433,'Size','Small'), -(3560,434,'Size','Small'), -(3561,435,'_product_id','0'), -(3562,436,'_product_id','0'), -(3563,435,'_variation_id','0'), -(3564,436,'_variation_id','0'), -(3565,435,'_qty','1'), -(3566,436,'_qty','1'), -(3567,435,'_tax_class',''), -(3568,436,'_tax_class',''), -(3569,435,'_line_subtotal','15'), -(3570,436,'_line_subtotal','15'), -(3571,435,'_line_subtotal_tax','0'), -(3572,436,'_line_subtotal_tax','0'), -(3573,435,'_line_total','15'), -(3574,436,'_line_total','15'), -(3575,435,'_line_tax','0'), -(3576,436,'_line_tax','0'), -(3577,435,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3578,436,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3579,437,'_product_id','0'), -(3580,437,'_variation_id','0'), -(3581,437,'_qty','2'), -(3582,437,'_tax_class',''), -(3583,437,'_line_subtotal','50'), -(3584,437,'_line_subtotal_tax','0'), -(3585,437,'_line_total','50'), -(3586,437,'_line_tax','0'), -(3587,437,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3588,438,'_product_id','0'), -(3589,438,'_variation_id','0'), -(3590,438,'_qty','1'), -(3591,438,'_tax_class',''), -(3592,438,'_line_subtotal','20'), -(3593,438,'_line_subtotal_tax','0'), -(3594,438,'_line_total','20'), -(3595,438,'_line_tax','0'), -(3596,438,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3597,438,'Colour','Red'), -(3598,438,'Size','Small'), -(3599,439,'_product_id','0'), -(3600,439,'_variation_id','0'), -(3601,439,'_qty','1'), -(3602,439,'_tax_class',''), -(3603,439,'_line_subtotal','15'), -(3604,439,'_line_subtotal_tax','0'), -(3605,440,'_product_id','0'), -(3606,439,'_line_total','15'), -(3607,440,'_variation_id','0'), -(3608,439,'_line_tax','0'), -(3609,440,'_qty','2'), -(3610,439,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3611,440,'_tax_class',''), -(3612,440,'_line_subtotal','50'), -(3613,440,'_line_subtotal_tax','0'), -(3614,440,'_line_total','50'), -(3615,440,'_line_tax','0'), -(3616,440,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3617,441,'_product_id','0'), -(3618,441,'_variation_id','0'), -(3619,441,'_qty','1'), -(3620,441,'_tax_class',''), -(3621,441,'_line_subtotal','20'), -(3622,441,'_line_subtotal_tax','0'), -(3623,441,'_line_total','20'), -(3624,441,'_line_tax','0'), -(3625,441,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3626,441,'Colour','Red'), -(3627,441,'Size','Small'), -(3628,442,'_product_id','0'), -(3629,442,'_variation_id','0'), -(3630,442,'_qty','1'), -(3631,442,'_tax_class',''), -(3632,442,'_line_subtotal','15'), -(3633,442,'_line_subtotal_tax','0'), -(3634,442,'_line_total','15'), -(3635,442,'_line_tax','0'), -(3636,442,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3637,444,'_product_id','0'), -(3638,443,'_product_id','0'), -(3639,443,'_variation_id','0'), -(3640,444,'_variation_id','0'), -(3641,443,'_qty','2'), -(3642,444,'_qty','2'), -(3643,443,'_tax_class',''), -(3644,444,'_tax_class',''), -(3645,443,'_line_subtotal','50'), -(3646,444,'_line_subtotal','50'), -(3647,443,'_line_subtotal_tax','0'), -(3648,444,'_line_subtotal_tax','0'), -(3649,443,'_line_total','50'), -(3650,444,'_line_total','50'), -(3651,443,'_line_tax','0'), -(3652,444,'_line_tax','0'), -(3653,443,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3654,444,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3655,445,'_product_id','0'), -(3656,445,'_variation_id','0'), -(3657,446,'_product_id','0'), -(3658,445,'_qty','1'), -(3659,446,'_variation_id','0'), -(3660,445,'_tax_class',''), -(3661,446,'_qty','1'), -(3662,446,'_tax_class',''), -(3663,445,'_line_subtotal','20'), -(3664,446,'_line_subtotal','20'), -(3665,445,'_line_subtotal_tax','0'), -(3666,446,'_line_subtotal_tax','0'), -(3667,445,'_line_total','20'), -(3668,446,'_line_total','20'), -(3669,445,'_line_tax','0'), -(3670,446,'_line_tax','0'), -(3671,445,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3672,446,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3673,445,'Colour','Red'), -(3674,446,'Colour','Red'), -(3675,445,'Size','Small'), -(3676,446,'Size','Small'), -(3677,447,'_product_id','0'), -(3678,448,'_product_id','0'), -(3679,447,'_variation_id','0'), -(3680,448,'_variation_id','0'), -(3681,447,'_qty','1'), -(3682,448,'_qty','1'), -(3683,447,'_tax_class',''), -(3684,448,'_tax_class',''), -(3685,447,'_line_subtotal','15'), -(3686,448,'_line_subtotal','15'), -(3687,447,'_line_subtotal_tax','0'), -(3688,448,'_line_subtotal_tax','0'), -(3689,447,'_line_total','15'), -(3690,448,'_line_total','15'), -(3691,447,'_line_tax','0'), -(3692,448,'_line_tax','0'), -(3693,447,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3694,448,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3695,449,'_product_id','0'), -(3696,450,'_product_id','0'), -(3697,449,'_variation_id','0'), -(3698,450,'_variation_id','0'), -(3699,449,'_qty','2'), -(3700,450,'_qty','2'), -(3701,449,'_tax_class',''), -(3702,450,'_tax_class',''), -(3703,449,'_line_subtotal','50'), -(3704,450,'_line_subtotal','50'), -(3705,449,'_line_subtotal_tax','0'), -(3706,450,'_line_subtotal_tax','0'), -(3707,449,'_line_total','50'), -(3708,450,'_line_total','50'), -(3709,449,'_line_tax','0'), -(3710,450,'_line_tax','0'), -(3711,449,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3712,450,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3713,451,'_product_id','0'), -(3714,452,'_product_id','0'), -(3715,451,'_variation_id','0'), -(3716,452,'_variation_id','0'), -(3717,451,'_qty','1'), -(3718,452,'_qty','1'), -(3719,451,'_tax_class',''), -(3720,452,'_tax_class',''), -(3721,451,'_line_subtotal','20'), -(3722,452,'_line_subtotal','20'), -(3723,451,'_line_subtotal_tax','0'), -(3724,452,'_line_subtotal_tax','0'), -(3725,451,'_line_total','20'), -(3726,452,'_line_total','20'), -(3727,451,'_line_tax','0'), -(3728,452,'_line_tax','0'), -(3729,451,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3730,452,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3731,451,'Colour','Red'), -(3732,452,'Colour','Red'), -(3733,451,'Size','Small'), -(3734,452,'Size','Small'), -(3735,453,'_product_id','0'), -(3736,454,'_product_id','0'), -(3737,453,'_variation_id','0'), -(3738,454,'_variation_id','0'), -(3739,453,'_qty','1'), -(3740,454,'_qty','1'), -(3741,453,'_tax_class',''), -(3742,454,'_tax_class',''), -(3743,453,'_line_subtotal','15'), -(3744,454,'_line_subtotal','15'), -(3745,453,'_line_subtotal_tax','0'), -(3746,454,'_line_subtotal_tax','0'), -(3747,453,'_line_total','15'), -(3748,454,'_line_total','15'), -(3749,453,'_line_tax','0'), -(3750,454,'_line_tax','0'), -(3751,453,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3752,454,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3753,455,'_product_id','0'), -(3754,456,'_product_id','0'), -(3755,455,'_variation_id','0'), -(3756,456,'_variation_id','0'), -(3757,455,'_qty','2'), -(3758,456,'_qty','2'), -(3759,455,'_tax_class',''), -(3760,456,'_tax_class',''), -(3761,455,'_line_subtotal','50'), -(3762,456,'_line_subtotal','50'), -(3763,455,'_line_subtotal_tax','0'), -(3764,456,'_line_subtotal_tax','0'), -(3765,455,'_line_total','50'), -(3766,456,'_line_total','50'), -(3767,455,'_line_tax','0'), -(3768,456,'_line_tax','0'), -(3769,455,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3770,456,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3771,457,'_product_id','0'), -(3772,458,'_product_id','0'), -(3773,457,'_variation_id','0'), -(3774,458,'_variation_id','0'), -(3775,457,'_qty','1'), -(3776,458,'_qty','1'), -(3777,457,'_tax_class',''), -(3778,458,'_tax_class',''), -(3779,457,'_line_subtotal','20'), -(3780,458,'_line_subtotal','20'), -(3781,457,'_line_subtotal_tax','0'), -(3782,458,'_line_subtotal_tax','0'), -(3783,457,'_line_total','20'), -(3784,458,'_line_total','20'), -(3785,457,'_line_tax','0'), -(3786,458,'_line_tax','0'), -(3787,457,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3788,457,'Colour','Red'), -(3789,458,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3790,457,'Size','Small'), -(3791,458,'Colour','Red'), -(3792,458,'Size','Small'), -(3793,459,'_product_id','0'), -(3794,460,'_product_id','0'), -(3795,459,'_variation_id','0'), -(3796,460,'_variation_id','0'), -(3797,460,'_qty','1'), -(3798,459,'_qty','1'), -(3799,460,'_tax_class',''), -(3800,459,'_tax_class',''), -(3801,460,'_line_subtotal','15'), -(3802,459,'_line_subtotal','15'), -(3803,460,'_line_subtotal_tax','0'), -(3804,459,'_line_subtotal_tax','0'), -(3805,460,'_line_total','15'), -(3806,459,'_line_total','15'), -(3807,460,'_line_tax','0'), -(3808,459,'_line_tax','0'), -(3809,460,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3810,459,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3811,461,'_product_id','0'), -(3812,462,'_product_id','0'), -(3813,461,'_variation_id','0'), -(3814,462,'_variation_id','0'), -(3815,461,'_qty','2'), -(3816,462,'_qty','2'), -(3817,461,'_tax_class',''), -(3818,462,'_tax_class',''), -(3819,461,'_line_subtotal','50'), -(3820,462,'_line_subtotal','50'), -(3821,461,'_line_subtotal_tax','0'), -(3822,462,'_line_subtotal_tax','0'), -(3823,461,'_line_total','50'), -(3824,462,'_line_total','50'), -(3825,461,'_line_tax','0'), -(3826,462,'_line_tax','0'), -(3827,461,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3828,462,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3829,463,'_product_id','0'), -(3830,464,'_product_id','0'), -(3831,463,'_variation_id','0'), -(3832,464,'_variation_id','0'), -(3833,463,'_qty','1'), -(3834,464,'_qty','1'), -(3835,463,'_tax_class',''), -(3836,464,'_tax_class',''), -(3837,463,'_line_subtotal','20'), -(3838,464,'_line_subtotal','20'), -(3839,463,'_line_subtotal_tax','0'), -(3840,464,'_line_subtotal_tax','0'), -(3841,463,'_line_total','20'), -(3842,464,'_line_total','20'), -(3843,463,'_line_tax','0'), -(3844,464,'_line_tax','0'), -(3845,463,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3846,463,'Colour','Red'), -(3847,464,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3848,463,'Size','Small'), -(3849,464,'Colour','Red'), -(3850,464,'Size','Small'), -(3851,465,'_product_id','0'), -(3852,466,'_product_id','0'), -(3853,465,'_variation_id','0'), -(3854,466,'_variation_id','0'), -(3855,465,'_qty','1'), -(3856,466,'_qty','1'), -(3857,465,'_tax_class',''), -(3858,466,'_tax_class',''), -(3859,465,'_line_subtotal','15'), -(3860,466,'_line_subtotal','15'), -(3861,465,'_line_subtotal_tax','0'), -(3862,466,'_line_subtotal_tax','0'), -(3863,465,'_line_total','15'), -(3864,466,'_line_total','15'), -(3865,465,'_line_tax','0'), -(3866,466,'_line_tax','0'), -(3867,465,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3868,466,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3869,467,'_product_id','0'), -(3870,468,'_product_id','0'), -(3871,467,'_variation_id','0'), -(3872,468,'_variation_id','0'), -(3873,467,'_qty','2'), -(3874,468,'_qty','2'), -(3875,467,'_tax_class',''), -(3876,468,'_tax_class',''), -(3877,467,'_line_subtotal','50'), -(3878,468,'_line_subtotal','50'), -(3879,467,'_line_subtotal_tax','0'), -(3880,468,'_line_subtotal_tax','0'), -(3881,467,'_line_total','50'), -(3882,468,'_line_total','50'), -(3883,467,'_line_tax','0'), -(3884,468,'_line_tax','0'), -(3885,467,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3886,468,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3887,469,'_product_id','0'), -(3888,470,'_product_id','0'), -(3889,469,'_variation_id','0'), -(3890,470,'_variation_id','0'), -(3891,469,'_qty','1'), -(3892,470,'_qty','1'), -(3893,469,'_tax_class',''), -(3894,470,'_tax_class',''), -(3895,469,'_line_subtotal','20'), -(3896,470,'_line_subtotal','20'), -(3897,469,'_line_subtotal_tax','0'), -(3898,470,'_line_subtotal_tax','0'), -(3899,469,'_line_total','20'), -(3900,470,'_line_total','20'), -(3901,469,'_line_tax','0'), -(3902,470,'_line_tax','0'), -(3903,469,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3904,470,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3905,469,'Colour','Red'), -(3906,470,'Colour','Red'), -(3907,469,'Size','Small'), -(3908,470,'Size','Small'), -(3909,471,'_product_id','0'), -(3910,472,'_product_id','0'), -(3911,471,'_variation_id','0'), -(3912,472,'_variation_id','0'), -(3913,471,'_qty','1'), -(3914,472,'_qty','1'), -(3915,471,'_tax_class',''), -(3916,472,'_tax_class',''), -(3917,471,'_line_subtotal','15'), -(3918,472,'_line_subtotal','15'), -(3919,471,'_line_subtotal_tax','0'), -(3920,472,'_line_subtotal_tax','0'), -(3921,471,'_line_total','15'), -(3922,472,'_line_total','15'), -(3923,471,'_line_tax','0'), -(3924,472,'_line_tax','0'), -(3925,471,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3926,472,'_line_tax_data','a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}'), -(3927,473,'_product_id','1467'), -(3928,473,'_variation_id','1469'), -(3929,473,'_qty','1'), -(3930,473,'_tax_class',''), -(3931,473,'_line_subtotal','120'), -(3932,473,'_line_subtotal_tax','0'), -(3933,473,'_line_total','120'), -(3934,473,'_line_tax','0'), -(3935,473,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(3936,473,'pa_size','52'), -(3937,474,'method_id','mondial_relay_point_relais'), -(3938,474,'instance_id',''), -(3939,474,'cost','0'), -(3940,474,'total_tax','0'), -(3941,474,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(3942,475,'_product_id','1516'), -(3943,475,'_variation_id','0'), -(3944,475,'_qty','1'), -(3945,475,'_tax_class',''), -(3946,475,'_line_subtotal','50'), -(3947,475,'_line_subtotal_tax','0'), -(3948,475,'_line_total','50'), -(3949,475,'_line_tax','0'), -(3950,475,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(3951,476,'method_id','mondial_relay_point_relais'), -(3952,476,'instance_id',''), -(3953,476,'cost','0'), -(3954,476,'total_tax','0'), -(3955,476,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(3956,477,'_product_id','766'), -(3957,477,'_variation_id','0'), -(3958,477,'_qty','1'), -(3959,477,'_tax_class',''), -(3960,477,'_line_subtotal','85'), -(3961,477,'_line_subtotal_tax','0'), -(3962,477,'_line_total','85'), -(3963,477,'_line_tax','0'), -(3964,477,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(3965,478,'method_id','mondial_relay_point_relais'), -(3966,478,'instance_id',''), -(3967,478,'cost','0'), -(3968,478,'total_tax','0'), -(3969,478,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(3970,479,'_product_id','202'), -(3971,479,'_variation_id','638'), -(3972,479,'_qty','1'), -(3973,479,'_tax_class',''), -(3974,479,'_line_subtotal','85'), -(3975,479,'_line_subtotal_tax','0'), -(3976,479,'_line_total','85'), -(3977,479,'_line_tax','0'), -(3978,479,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(3979,479,'pa_side','pair'), -(3980,480,'method_id','mondial_relay_point_relais'), -(3981,480,'instance_id',''), -(3982,480,'cost','0'), -(3983,480,'total_tax','0'), -(3984,480,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(3985,481,'_product_id','435'), -(3986,481,'_variation_id','0'), -(3987,481,'_qty','1'), -(3988,481,'_tax_class',''), -(3989,481,'_line_subtotal','40'), -(3990,481,'_line_subtotal_tax','0'), -(3991,481,'_line_total','40'), -(3992,481,'_line_tax','0'), -(3993,481,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(3994,482,'method_id','mondial_relay_point_relais'), -(3995,482,'instance_id',''), -(3996,482,'cost','3'), -(3997,482,'total_tax','0'), -(3998,482,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(3999,483,'_product_id','1512'), -(4000,483,'_variation_id','0'), -(4001,483,'_qty','1'), -(4002,483,'_tax_class',''), -(4003,483,'_line_subtotal','50'), -(4004,483,'_line_subtotal_tax','0'), -(4005,483,'_line_total','50'), -(4006,483,'_line_tax','0'), -(4007,483,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(4008,484,'_product_id','318'), -(4009,484,'_variation_id','0'), -(4010,484,'_qty','1'), -(4011,484,'_tax_class',''), -(4012,484,'_line_subtotal','45'), -(4013,484,'_line_subtotal_tax','0'), -(4014,484,'_line_total','45'), -(4015,484,'_line_tax','0'), -(4016,484,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(4017,485,'method_id','mondial_relay_point_relais'), -(4018,485,'instance_id',''), -(4019,485,'cost','0'), -(4020,485,'total_tax','0'), -(4021,485,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(4022,486,'_product_id','1512'), -(4023,486,'_variation_id','0'), -(4024,486,'_qty','1'), -(4025,486,'_tax_class',''), -(4026,486,'_line_subtotal','50'), -(4027,486,'_line_subtotal_tax','0'), -(4028,486,'_line_total','50'), -(4029,486,'_line_tax','0'), -(4030,486,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(4031,487,'method_id','mondial_relay_point_relais'), -(4032,487,'instance_id',''), -(4033,487,'cost','0'), -(4034,487,'total_tax','0'), -(4035,487,'taxes','a:1:{s:5:\"total\";a:0:{}}'), -(4036,488,'_product_id','1512'), -(4037,488,'_variation_id','0'), -(4038,488,'_qty','1'), -(4039,488,'_tax_class',''), -(4040,488,'_line_subtotal','50'), -(4041,488,'_line_subtotal_tax','0'), -(4042,488,'_line_total','50'), -(4043,488,'_line_tax','0'), -(4044,488,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), -(4045,489,'method_id','mondial_relay_point_relais'), -(4046,489,'instance_id',''), -(4047,489,'cost','0'), -(4048,489,'total_tax','0'), -(4049,489,'taxes','a:1:{s:5:\"total\";a:0:{}}'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_order_items` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_order_items`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_order_items` ( - `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `order_item_name` text NOT NULL, - `order_item_type` varchar(200) NOT NULL DEFAULT '', - `order_id` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`order_item_id`), - KEY `order_id` (`order_id`) -) ENGINE=InnoDB AUTO_INCREMENT=490 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_order_items` --- - -LOCK TABLES `haikuwp_woocommerce_order_items` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_order_items` VALUES -(136,'Hattari Ear Cuff silver','line_item',861), -(137,'Mondial Relay - Point Relais','shipping',861), -(138,'Hattari Stacked Hoops gold plated - pair','line_item',862), -(139,'Mondial Relay - Point Relais (Free)','shipping',862), -(147,'Tanemaki Bracelet','line_item',866), -(148,'Mondial Relay - Point Relais (Free)','shipping',866), -(149,'Fuyou Bracelet silver','line_item',867), -(150,'Mondial Relay - Point Relais (Free)','shipping',867), -(151,'Tanemaki Bracelet','line_item',868), -(152,'Tanemaki Necklace','line_item',868), -(153,'Mondial Relay - Point Relais (Free)','shipping',868), -(154,'Piasu Earrings - left side','line_item',869), -(155,'Hattari Double Hoops - pair','line_item',869), -(156,'Mondial Relay - Point Relais (Free)','shipping',869), -(157,'Mugura Hoops gold plated','line_item',870), -(158,'Mondial Relay - Point Relais (Free)','shipping',870), -(159,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',871), -(160,'Kagun Trio Earrings - short','line_item',871), -(161,'Kagun Trio Earrings - all','line_item',871), -(162,'Mondial Relay - Point Relais (Free)','shipping',871), -(163,'Ikkan Necklace','line_item',872), -(164,'Mondial Relay - Point Relais (Free)','shipping',872), -(165,'Tamanori Hoops silver - pair','line_item',873), -(166,'BoroBoro Long Earrings silver - pair','line_item',873), -(167,'Fuyou Necklace','line_item',873), -(168,'Mondial Relay - Point Relais (Free)','shipping',873), -(173,'Hattari Stacked Hoops gold plated - pair','line_item',876), -(174,'Mondial Relay - Point Relais (Free)','shipping',876), -(175,'Hattari Stacked Hoops gold plated - pair','line_item',877), -(176,'Mondial Relay - Point Relais (Free)','shipping',877), -(177,'Hattari Stacked Hoops gold plated - pair','line_item',878), -(178,'Hattari Stacked Hoops silver - pair','line_item',878), -(179,'Mondial Relay - Point Relais (Free)','shipping',878), -(180,'Tamanori Hoops gold plated - pair','line_item',879), -(181,'Mondial Relay - Point Relais (Free)','shipping',879), -(182,'Hattari Ear Cuff gold plated','line_item',880), -(183,'Kara Hoops gold plated - pair','line_item',880), -(184,'Mondial Relay - Point Relais (Free)','shipping',880), -(185,'Tamanori Hoops silver - short','line_item',881), -(186,'UPS Standard','shipping',881), -(193,'Tanemaki Necklace','line_item',884), -(194,'Mondial Relay - Point Relais (Free)','shipping',884), -(195,'Hattari Stacked Hoops gold plated - pair','line_item',885), -(196,'Mondial Relay - Point Relais (Free)','shipping',885), -(197,'Kara Hoops gold plated - pair','line_item',886), -(198,'Hadou Stud Earrings - pair','line_item',886), -(199,'Mondial Relay - Point Relais (Free)','shipping',886), -(200,'Mugura Earrings silver - pair','line_item',887), -(201,'Mondial Relay - Point Relais (Free)','shipping',887), -(202,'Tamanori Hoops silver - long','line_item',888), -(203,'UPS Standard','shipping',888), -(204,'Hadou Ear Cuff silver','line_item',889), -(205,'Kara Hoops silver - pair','line_item',889), -(206,'Kara Ear Cuff silver','line_item',889), -(207,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',889), -(208,'Tanemaki Bracelet','line_item',889), -(209,'Mondial Relay - Point Relais (Free)','shipping',889), -(210,'Kara Hoops silver - pair','line_item',892), -(211,'Mondial Relay - Point Relais (Free)','shipping',892), -(212,'Hattari Ear Cuff gold plated','line_item',893), -(213,'Mondial Relay - Point Relais','shipping',893), -(214,'Hattari Ear Cuff silver','line_item',894), -(215,'Mondial Relay - Point Relais','shipping',894), -(216,'Piasu Earrings - pair','line_item',895), -(217,'Tamanori Hoops silver - pair','line_item',895), -(218,'Mondial Relay - Point Relais (Free)','shipping',895), -(219,'Hattari Double Hoops - pair','line_item',897), -(220,'Mondial Relay - Point Relais (Free)','shipping',897), -(221,'Kara Ear Cuff silver','line_item',898), -(222,'Mondial Relay - Point Relais','shipping',898), -(223,'Kara Ear Cuff silver','line_item',899), -(224,'Mondial Relay - Point Relais','shipping',899), -(225,'Kara Ring - 52','line_item',900), -(226,'Mondial Relay - Point Relais (Free)','shipping',900), -(227,'Rokku Hoop silver - Lapis Lazuli','line_item',901), -(228,'Mondial Relay - Point Relais','shipping',901), -(229,'Tanemaki Necklace','line_item',902), -(230,'Mondial Relay - Point Relais (Free)','shipping',902), -(231,'Tanemaki Necklace','line_item',903), -(232,'Mondial Relay - Point Relais (Free)','shipping',903), -(233,'Rokku Ring - Malachite','line_item',904), -(234,'Mondial Relay - Point Relais (Free)','shipping',904), -(235,'Fuyou Necklace','line_item',905), -(236,'Mondial Relay - Point Relais (Free)','shipping',905), -(237,'Rokku Ring - Malachite','line_item',906), -(238,'Mondial Relay - Point Relais (Free)','shipping',906), -(239,'Rokku Ring - Malachite','line_item',907), -(240,'Kara Ear Cuff gold plated','line_item',907), -(241,'Mondial Relay - Point Relais (Free)','shipping',907), -(242,'Kagun Trio Earrings - all','line_item',908), -(243,'Rokku Hoop gold plated - Lapis Lazuli','line_item',908), -(244,'Mondial Relay - Point Relais (Free)','shipping',908), -(245,'Hadou Ear Cuff gold plated','line_item',909), -(246,'Mondial Relay - Point Relais','shipping',909), -(247,'Hadou Ear Cuff gold plated','line_item',910), -(248,'Mondial Relay - Point Relais','shipping',910), -(249,'BoroBoro Bead Ring silver - 64','line_item',911), -(250,'Mondial Relay - Point Relais (Free)','shipping',911), -(251,'Fuyou Hoop','line_item',912), -(252,'Mondial Relay - Point Relais','shipping',912), -(253,'Hadou Stud Earrings - pair','line_item',919), -(254,'Kagun Trio Earrings - short','line_item',919), -(255,'Mondial Relay - Point Relais (Free)','shipping',919), -(256,'Kagun Trio Earrings - short','line_item',920), -(257,'Mondial Relay - Point Relais (Free)','shipping',920), -(258,'Kagun Trio Earrings - short','line_item',921), -(259,'Mondial Relay - Point Relais (Free)','shipping',921), -(260,'Kagun Trio Earrings - short','line_item',922), -(261,'Mondial Relay - Point Relais (Free)','shipping',922), -(262,'Hattari Stacked Hoops silver - pair','line_item',923), -(263,'Mondial Relay - Point Relais (Free)','shipping',923), -(264,'Kara Ear Cuff gold plated','line_item',924), -(265,'Kara Ear Cuff silver','line_item',924), -(266,'Hadou Ear Cuff gold plated','line_item',924), -(267,'Mondial Relay - Point Relais (Free)','shipping',924), -(270,'Kara Ear Cuff gold plated','line_item',997), -(271,'Piasu Earrings - pair','line_item',997), -(272,'Mondial Relay - Point Relais (Free)','shipping',997), -(287,'Piasu Open Hoops - pair','line_item',1013), -(288,'Piasu Earrings - pair','line_item',1013), -(289,'Mondial Relay - Point Relais (Free)','shipping',1013), -(343,'Kara Hoops silver - pair','line_item',1443), -(344,'Fuyou Hoop','line_item',1443), -(345,'Mondial Relay - Point Relais (Free)','shipping',1443), -(346,'Piasu Ring - 50','line_item',1480), -(347,'Mondial Relay - Point Relais (Free)','shipping',1480), -(348,'BoroBoro Long Earrings gold plated - pair','line_item',1486), -(349,'Mondial Relay - Point Relais (Free)','shipping',1486), -(350,'Mugura Trio Stud Earrings - all','line_item',1487), -(351,'Mondial Relay - Point Relais (Free)','shipping',1487), -(352,'Piasu Earrings - pair','line_item',1488), -(353,'Mondial Relay - Point Relais (Free)','shipping',1488), -(354,'Piasu Earrings - pair','line_item',1489), -(355,'Mondial Relay - Point Relais (Free)','shipping',1489), -(356,'Fuyou Necklace','line_item',1490), -(357,'Mondial Relay - Point Relais (Free)','shipping',1490), -(358,'Tamanori Hoops silver - long','line_item',1496), -(359,'Tamanori Hoops silver - short','line_item',1496), -(360,'Hattari Stacked Hoops silver - pair','line_item',1496), -(361,'UPS Standard (Free)','shipping',1496), -(362,'Hattari Stacked Hoops silver - pair','line_item',1498), -(363,'Mondial Relay - Point Relais (Free)','shipping',1498), -(364,'Rokku Necklace - Lapis Lazuli','line_item',1500), -(365,'Mondial Relay - Point Relais (Free)','shipping',1500), -(366,'Pishi Pishi Earrings - left side','line_item',1501), -(367,'Mondial Relay - Point Relais (Free)','shipping',1501), -(368,'Dummy Product','line_item',0), -(369,'Dummy Product','line_item',0), -(370,'Dummy Product Variation','line_item',0), -(371,'Dummy Product Variation','line_item',0), -(372,'Dummy Downloadable Product','line_item',0), -(373,'Dummy Downloadable Product','line_item',0), -(374,'Dummy Product','line_item',0), -(375,'Dummy Product','line_item',0), -(376,'Dummy Product Variation','line_item',0), -(377,'Dummy Product Variation','line_item',0), -(378,'Dummy Downloadable Product','line_item',0), -(379,'Dummy Downloadable Product','line_item',0), -(380,'Dummy Product','line_item',0), -(381,'Dummy Product','line_item',0), -(382,'Dummy Product Variation','line_item',0), -(383,'Dummy Product Variation','line_item',0), -(384,'Dummy Downloadable Product','line_item',0), -(385,'Dummy Downloadable Product','line_item',0), -(386,'Dummy Product','line_item',0), -(387,'Dummy Product','line_item',0), -(388,'Dummy Product Variation','line_item',0), -(389,'Dummy Product Variation','line_item',0), -(390,'Dummy Downloadable Product','line_item',0), -(391,'Dummy Downloadable Product','line_item',0), -(392,'Dummy Product','line_item',0), -(393,'Dummy Product','line_item',0), -(394,'Dummy Product Variation','line_item',0), -(395,'Dummy Product Variation','line_item',0), -(396,'Dummy Downloadable Product','line_item',0), -(397,'Dummy Downloadable Product','line_item',0), -(398,'Dummy Product','line_item',0), -(399,'Dummy Product Variation','line_item',0), -(400,'Dummy Downloadable Product','line_item',0), -(401,'Dummy Product','line_item',0), -(402,'Dummy Product Variation','line_item',0), -(403,'Dummy Product','line_item',0), -(404,'Dummy Downloadable Product','line_item',0), -(405,'Dummy Product Variation','line_item',0), -(406,'Dummy Downloadable Product','line_item',0), -(407,'Dummy Product','line_item',0), -(408,'Dummy Product','line_item',0), -(409,'Dummy Product Variation','line_item',0), -(410,'Dummy Product Variation','line_item',0), -(411,'Dummy Downloadable Product','line_item',0), -(412,'Dummy Downloadable Product','line_item',0), -(413,'Dummy Product','line_item',0), -(414,'Dummy Product','line_item',0), -(415,'Dummy Product Variation','line_item',0), -(416,'Dummy Product Variation','line_item',0), -(417,'Dummy Downloadable Product','line_item',0), -(418,'Dummy Downloadable Product','line_item',0), -(419,'Dummy Product','line_item',0), -(420,'Dummy Product','line_item',0), -(421,'Dummy Product Variation','line_item',0), -(422,'Dummy Product Variation','line_item',0), -(423,'Dummy Downloadable Product','line_item',0), -(424,'Dummy Downloadable Product','line_item',0), -(425,'Dummy Product','line_item',0), -(426,'Dummy Product','line_item',0), -(427,'Dummy Product Variation','line_item',0), -(428,'Dummy Product Variation','line_item',0), -(429,'Dummy Downloadable Product','line_item',0), -(430,'Dummy Downloadable Product','line_item',0), -(431,'Dummy Product','line_item',0), -(432,'Dummy Product','line_item',0), -(433,'Dummy Product Variation','line_item',0), -(434,'Dummy Product Variation','line_item',0), -(435,'Dummy Downloadable Product','line_item',0), -(436,'Dummy Downloadable Product','line_item',0), -(437,'Dummy Product','line_item',0), -(438,'Dummy Product Variation','line_item',0), -(439,'Dummy Downloadable Product','line_item',0), -(440,'Dummy Product','line_item',0), -(441,'Dummy Product Variation','line_item',0), -(442,'Dummy Downloadable Product','line_item',0), -(443,'Dummy Product','line_item',0), -(444,'Dummy Product','line_item',0), -(445,'Dummy Product Variation','line_item',0), -(446,'Dummy Product Variation','line_item',0), -(447,'Dummy Downloadable Product','line_item',0), -(448,'Dummy Downloadable Product','line_item',0), -(449,'Dummy Product','line_item',0), -(450,'Dummy Product','line_item',0), -(451,'Dummy Product Variation','line_item',0), -(452,'Dummy Product Variation','line_item',0), -(453,'Dummy Downloadable Product','line_item',0), -(454,'Dummy Downloadable Product','line_item',0), -(455,'Dummy Product','line_item',0), -(456,'Dummy Product','line_item',0), -(457,'Dummy Product Variation','line_item',0), -(458,'Dummy Product Variation','line_item',0), -(459,'Dummy Downloadable Product','line_item',0), -(460,'Dummy Downloadable Product','line_item',0), -(461,'Dummy Product','line_item',0), -(462,'Dummy Product','line_item',0), -(463,'Dummy Product Variation','line_item',0), -(464,'Dummy Product Variation','line_item',0), -(465,'Dummy Downloadable Product','line_item',0), -(466,'Dummy Downloadable Product','line_item',0), -(467,'Dummy Product','line_item',0), -(468,'Dummy Product','line_item',0), -(469,'Dummy Product Variation','line_item',0), -(470,'Dummy Product Variation','line_item',0), -(471,'Dummy Downloadable Product','line_item',0), -(472,'Dummy Downloadable Product','line_item',0), -(473,'Piasu Ring - 52','line_item',1511), -(474,'Mondial Relay - Point Relais (Free)','shipping',1511), -(475,'Piasu Ear Cuff gold plated','line_item',1528), -(476,'Mondial Relay - Point Relais (Free)','shipping',1528), -(477,'Fuyou Long Earrings silver','line_item',1529), -(478,'Mondial Relay - Point Relais (Free)','shipping',1529), -(479,'Piasu Hoop Earrings - pair','line_item',1530), -(480,'Mondial Relay - Point Relais (Free)','shipping',1530), -(481,'Kara Ear Cuff silver','line_item',1540), -(482,'Mondial Relay - Point Relais','shipping',1540), -(483,'Piasu Ear Cuff silver','line_item',1571), -(484,'Fuyou Hoop','line_item',1571), -(485,'Mondial Relay - Point Relais (Free)','shipping',1571), -(486,'Piasu Ear Cuff silver','line_item',1572), -(487,'Mondial Relay - Point Relais (Free)','shipping',1572), -(488,'Piasu Ear Cuff silver','line_item',1573), -(489,'Mondial Relay - Point Relais (Free)','shipping',1573); -/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_payment_tokenmeta` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokenmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_payment_tokenmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `payment_token_id` bigint(20) unsigned NOT NULL, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `payment_token_id` (`payment_token_id`), - KEY `meta_key` (`meta_key`(32)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_payment_tokenmeta` --- - -LOCK TABLES `haikuwp_woocommerce_payment_tokenmeta` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_payment_tokens` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokens`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_payment_tokens` ( - `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `gateway_id` varchar(200) NOT NULL, - `token` text NOT NULL, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `type` varchar(200) NOT NULL, - `is_default` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`token_id`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_payment_tokens` --- - -LOCK TABLES `haikuwp_woocommerce_payment_tokens` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_sessions` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_sessions` ( - `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `session_key` char(32) NOT NULL, - `session_value` longtext NOT NULL, - `session_expiry` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`session_id`), - UNIQUE KEY `session_key` (`session_key`), - KEY `session_expiry` (`session_expiry`) -) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_sessions` --- - -LOCK TABLES `haikuwp_woocommerce_sessions` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_sessions` VALUES -(64,'1','a:2:{s:8:\"customer\";s:780:\"a:28:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2025-05-09T18:07:27+02:00\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";s:21:\"removed_cart_contents\";s:461:\"a:1:{s:32:\"e2dbdbc4dc7b66a8e85366721b1f191d\";a:11:{s:3:\"key\";s:32:\"e2dbdbc4dc7b66a8e85366721b1f191d\";s:10:\"product_id\";i:1574;s:12:\"variation_id\";i:1586;s:9:\"variation\";a:1:{s:28:\"attribute_pa_giftcard-amount\";s:3:\"40e\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"0e0b67ce4363ae6ca983fda7cc0ae55b\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:40;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:40;s:8:\"line_tax\";d:0;}}\";}',1765358225), -(75,'t_a236ef5377c116510aa5c35138e4ab','a:6:{s:22:\"shipping_for_package_0\";s:498:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_e4e3c5cdf91ab100aa63ed2d36db7b12\";s:5:\"rates\";a:1:{s:28:\"mondial_relay_point_relais:6\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:28:\"mondial_relay_point_relais:6\";s:9:\"method_id\";s:26:\"mondial_relay_point_relais\";s:11:\"instance_id\";i:6;s:5:\"label\";s:35:\"Mondial Relay - Point Relais (Free)\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:0:{}}}}\";s:25:\"previous_shipping_methods\";s:56:\"a:1:{i:0;a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}}\";s:23:\"chosen_shipping_methods\";s:46:\"a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:11:\"cart_totals\";s:393:\"a:15:{s:8:\"subtotal\";s:2:\"75\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:2:\"75\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"75.00\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:411:\"a:1:{s:32:\"502e4a16930e414107ee22b6198c578f\";a:11:{s:3:\"key\";s:32:\"502e4a16930e414107ee22b6198c578f\";s:10:\"product_id\";i:258;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:75;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:75;s:8:\"line_tax\";d:0;}}\";}',1764791715), -(76,'t_2fe2c015478e2e7b26c6a7907a31b8','a:1:{s:8:\"customer\";s:964:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:6:\"CLAIRE\";s:9:\"last_name\";s:8:\"MAROUFIN\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:12:\"+33681223295\";s:5:\"email\";s:25:\"maroufin.claire@gmail.com\";s:7:\"address\";s:23:\"26 avenue Eugene Thomas\";s:9:\"address_1\";s:23:\"26 avenue Eugene Thomas\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:19:\"Le Kremlin-Bicêtre\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:5:\"94270\";s:7:\"country\";s:2:\"FR\";s:19:\"shipping_first_name\";s:6:\"CLAIRE\";s:18:\"shipping_last_name\";s:8:\"MAROUFIN\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:12:\"+33681223295\";s:16:\"shipping_address\";s:23:\"26 avenue Eugene Thomas\";s:18:\"shipping_address_1\";s:23:\"26 avenue Eugene Thomas\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:19:\"Le Kremlin-Bicêtre\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:5:\"94270\";s:16:\"shipping_country\";s:2:\"FR\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1764839895), -(82,'t_30f2df50d205a653082ddc129f2286','a:1:{s:8:\"customer\";s:982:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:8:\"Penelope\";s:9:\"last_name\";s:8:\"Jourdain\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:10:\"0687878933\";s:5:\"email\";s:27:\"penelope.jourdain@gmail.com\";s:7:\"address\";s:21:\"42 rue Jacques Kablé\";s:9:\"address_1\";s:21:\"42 rue Jacques Kablé\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:16:\"Nogent sur Marne\";s:5:\"state\";s:14:\"Île de France\";s:8:\"postcode\";s:5:\"94130\";s:7:\"country\";s:2:\"FR\";s:19:\"shipping_first_name\";s:8:\"Penelope\";s:18:\"shipping_last_name\";s:8:\"Jourdain\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:10:\"0687878933\";s:16:\"shipping_address\";s:21:\"42 rue Jacques Kablé\";s:18:\"shipping_address_1\";s:21:\"42 rue Jacques Kablé\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:16:\"Nogent sur Marne\";s:14:\"shipping_state\";s:14:\"Île de France\";s:17:\"shipping_postcode\";s:5:\"94130\";s:16:\"shipping_country\";s:2:\"FR\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1764880687); -/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zone_locations` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_locations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zone_locations` ( - `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `zone_id` bigint(20) unsigned NOT NULL, - `location_code` varchar(200) NOT NULL, - `location_type` varchar(40) NOT NULL, - PRIMARY KEY (`location_id`), - KEY `zone_id` (`zone_id`), - KEY `location_type_code` (`location_type`(10),`location_code`(20)) -) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zone_locations` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zone_locations` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zone_locations` VALUES -(1,1,'BE','country'), -(2,1,'FR','country'), -(103,3,'DE','country'), -(104,3,'AT','country'), -(105,3,'ES','country'), -(106,3,'IT','country'), -(107,3,'LU','country'), -(108,3,'NL','country'), -(109,3,'PL','country'), -(110,3,'PT','country'), -(111,2,'AX','country'), -(112,2,'AL','country'), -(113,2,'AD','country'), -(114,2,'BY','country'), -(115,2,'BA','country'), -(116,2,'BG','country'), -(117,2,'HR','country'), -(118,2,'CZ','country'), -(119,2,'DK','country'), -(120,2,'EE','country'), -(121,2,'FO','country'), -(122,2,'FI','country'), -(123,2,'GI','country'), -(124,2,'GR','country'), -(125,2,'HU','country'), -(126,2,'IS','country'), -(127,2,'IE','country'), -(128,2,'LV','country'), -(129,2,'LI','country'), -(130,2,'LT','country'), -(131,2,'MT','country'), -(132,2,'MD','country'), -(133,2,'MC','country'), -(134,2,'ME','country'), -(135,2,'MK','country'), -(136,2,'NO','country'), -(137,2,'RO','country'), -(138,2,'SM','country'), -(139,2,'RS','country'), -(140,2,'SK','country'), -(141,2,'SI','country'), -(142,2,'SJ','country'), -(143,2,'SE','country'), -(144,2,'CH','country'), -(145,2,'TR','country'), -(146,2,'UA','country'), -(147,2,'NA','continent'), -(148,2,'OC','continent'), -(149,2,'SA','continent'), -(150,2,'AF','continent'), -(151,2,'AM','country'), -(152,2,'BD','country'), -(153,2,'BT','country'), -(154,2,'BN','country'), -(155,2,'KH','country'), -(156,2,'CX','country'), -(157,2,'CC','country'), -(158,2,'CY','country'), -(159,2,'GE','country'), -(160,2,'HK','country'), -(161,2,'IN','country'), -(162,2,'ID','country'), -(163,2,'IR','country'), -(164,2,'IQ','country'), -(165,2,'JP','country'), -(166,2,'JO','country'), -(167,2,'KZ','country'), -(168,2,'KG','country'), -(169,2,'LA','country'), -(170,2,'LB','country'), -(171,2,'MO','country'), -(172,2,'MY','country'), -(173,2,'MV','country'), -(174,2,'MN','country'), -(175,2,'MM','country'), -(176,2,'NP','country'), -(177,2,'OM','country'), -(178,2,'PK','country'), -(179,2,'PS','country'), -(180,2,'PH','country'), -(181,2,'SG','country'), -(182,2,'KR','country'), -(183,2,'LK','country'), -(184,2,'SY','country'), -(185,2,'TW','country'), -(186,2,'TJ','country'), -(187,2,'TH','country'), -(188,2,'TL','country'), -(189,2,'TM','country'), -(190,2,'UZ','country'), -(191,2,'VN','country'), -(192,2,'YE','country'); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zone_methods` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_methods`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zone_methods` ( - `zone_id` bigint(20) unsigned NOT NULL, - `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `method_id` varchar(200) NOT NULL, - `method_order` bigint(20) unsigned NOT NULL, - `is_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`instance_id`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zone_methods` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zone_methods` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zone_methods` VALUES -(2,4,'ups_standard',2,1), -(3,5,'mondial_relay_point_relais',1,1), -(1,6,'mondial_relay_point_relais',2,1), -(2,7,'flat_rate',3,1), -(2,8,'free_shipping',1,1); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_shipping_zones` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_shipping_zones` ( - `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `zone_name` varchar(200) NOT NULL, - `zone_order` bigint(20) unsigned NOT NULL, - PRIMARY KEY (`zone_id`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_shipping_zones` --- - -LOCK TABLES `haikuwp_woocommerce_shipping_zones` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_woocommerce_shipping_zones` VALUES -(1,'Belgique et France',0), -(2,'Reste',2), -(3,'Pays Mondial Relay',1); -/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_tax_rate_locations` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rate_locations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_tax_rate_locations` ( - `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `location_code` varchar(200) NOT NULL, - `tax_rate_id` bigint(20) unsigned NOT NULL, - `location_type` varchar(40) NOT NULL, - PRIMARY KEY (`location_id`), - KEY `tax_rate_id` (`tax_rate_id`), - KEY `location_type_code` (`location_type`(10),`location_code`(20)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_tax_rate_locations` --- - -LOCK TABLES `haikuwp_woocommerce_tax_rate_locations` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_woocommerce_tax_rates` --- - -DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rates`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_woocommerce_tax_rates` ( - `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `tax_rate_country` varchar(2) NOT NULL DEFAULT '', - `tax_rate_state` varchar(200) NOT NULL DEFAULT '', - `tax_rate` varchar(8) NOT NULL DEFAULT '', - `tax_rate_name` varchar(200) NOT NULL DEFAULT '', - `tax_rate_priority` bigint(20) unsigned NOT NULL, - `tax_rate_compound` int(1) NOT NULL DEFAULT 0, - `tax_rate_shipping` int(1) NOT NULL DEFAULT 1, - `tax_rate_order` bigint(20) unsigned NOT NULL, - `tax_rate_class` varchar(200) NOT NULL DEFAULT '', - PRIMARY KEY (`tax_rate_id`), - KEY `tax_rate_country` (`tax_rate_country`), - KEY `tax_rate_state` (`tax_rate_state`(2)), - KEY `tax_rate_class` (`tax_rate_class`(10)), - KEY `tax_rate_priority` (`tax_rate_priority`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_woocommerce_tax_rates` --- - -LOCK TABLES `haikuwp_woocommerce_tax_rates` WRITE; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` DISABLE KEYS */; -set autocommit=0; -/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpmailsmtp_debug_events` --- - -DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_debug_events`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpmailsmtp_debug_events` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `content` text DEFAULT NULL, - `initiator` text DEFAULT NULL, - `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpmailsmtp_debug_events` --- - -LOCK TABLES `haikuwp_wpmailsmtp_debug_events` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpmailsmtp_debug_events` VALUES -(1,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:49:12'), -(2,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:49:47'), -(3,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:50:39'), -(4,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:18'), -(5,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:42'), -(6,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:54:25'), -(7,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:56:03'), -(8,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:57:48'), -(9,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:31'), -(10,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:50'), -(11,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:55'), -(12,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:00:42'), -(13,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:03:45'), -(14,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:04:09'), -(15,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:06:02'), -(16,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:07:04'), -(17,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:10:01'), -(18,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:14:28'), -(19,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:15:15'), -(20,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:15:34'), -(21,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:20:03'); -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpmailsmtp_tasks_meta` --- - -DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_tasks_meta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpmailsmtp_tasks_meta` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `action` varchar(255) NOT NULL, - `data` longtext NOT NULL, - `date` datetime NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpmailsmtp_tasks_meta` --- - -LOCK TABLES `haikuwp_wpmailsmtp_tasks_meta` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpmailsmtp_tasks_meta` VALUES -(1,'wp_mail_smtp_admin_notifications_update','W10=','2024-11-25 16:49:16'); -/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` ENABLE KEYS */; -UNLOCK TABLES; -commit; - --- --- Table structure for table `haikuwp_wpml_mails` --- - -DROP TABLE IF EXISTS `haikuwp_wpml_mails`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8mb4 */; -CREATE TABLE `haikuwp_wpml_mails` ( - `mail_id` int(11) NOT NULL AUTO_INCREMENT, - `timestamp` timestamp NOT NULL, - `host` varchar(200) NOT NULL DEFAULT '0', - `receiver` varchar(200) NOT NULL DEFAULT '0', - `subject` varchar(200) NOT NULL DEFAULT '0', - `message` text DEFAULT NULL, - `headers` text DEFAULT NULL, - `attachments` varchar(800) NOT NULL DEFAULT '0', - `error` varchar(400) DEFAULT '', - `plugin_version` varchar(200) NOT NULL DEFAULT '0', - PRIMARY KEY (`mail_id`), - FULLTEXT KEY `idx_message` (`message`) -) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `haikuwp_wpml_mails` --- - -LOCK TABLES `haikuwp_wpml_mails` WRITE; -/*!40000 ALTER TABLE `haikuwp_wpml_mails` DISABLE KEYS */; -set autocommit=0; -INSERT INTO `haikuwp_wpml_mails` VALUES -(84,'2024-12-12 16:59:06','217.182.132.198','haiku.atelier@gmail.com,\\n contact@gcch.fr','[Haiku Atelier]: New order #880','\n\n\n\n\n\n

You’ve received the following order from christine Saquet Bossu:

\n\n

\n [Order #880] (2024-12-12)

\n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ProductQuantityPrice
\n Hattari Ear Cuff gold plated (#HATTARI-EC-g) \n 1 \n  40,00
\n Kara Hoops gold plated - pair (#KARA-CR-g-pair)
  • \nSide:

    pair

    \n
\n 1 \n  60,00
Subtotal: 100,00
Shipping:Mondial Relay - Point Relais (Free)
Total: 100,00
\n
\n\n\n \n \n \n \n
\n

Billing address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
c.saquetbossu@orange.fr
\n
\n

Shipping address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
\n
\n

Congratulations on the sale.

\nProcess your orders on the go. Get the app.\n\n','Content-Type: text/html,\\nReply-to: christine Saquet Bossu ','',NULL,'1.13.1'); -/*!40000 ALTER TABLE `haikuwp_wpml_mails` ENABLE KEYS */; -UNLOCK TABLES; -commit; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */; - --- Dump completed on 2025-12-03 13:23:09 diff --git a/docs/JOURNAL.md b/docs/JOURNAL.md deleted file mode 100644 index cdc4329f..00000000 --- a/docs/JOURNAL.md +++ /dev/null @@ -1,59 +0,0 @@ -# Journal de développement - -## 2025-06-13 - -### Informations produit sous forme de grille - -- L'idée est de réimplémenter les informations essentiels du produit (nom, prix), le sélecteur de variation, les textes de détail, de conditions et d'entretien, et le bouton d'ajout au Panier. -- Plutôt qu'un encart flottant, contenant tout, il n'y aurait qu'une barre pleine longueur comprenant nom, prix et sélecteur de variation (`.essentiel-produit`). -- Il flotterait en bas de l'écran jusqu'à ce se poser à la fin des photos. -- Une nouvelle section, statique elle et faisant suite à la fois aux photos et à la barre, s'afficherait en pleine longueur sous forme d'accordéon, avec les anciens onglets comme sections. -- Par défaut, la section « Détails » serait développée. -- `
` et `` sont aujourd'hui pris en charge par les navigateurs (niveau _Baseline_), mais l'attribut `name` permettant l'ouverture exclusive d'une section par accordéon (p. ex. le développement d'une ferme toutes les autres) n'a que récemment été implémentée (2024 pour _Firefox_). -- Une implémentation en _JavaScript_ est donc pour l'instant nécessaire. - -### Remaniement du défilement des photos de la page Produit - -- Les flèches de défilement sont supprimées. -- À la place, les photos ne s'affichent plus en pleine longueur. -- Elles le sont à ~93%, pour que l'on perçoive sur les bords la photo précédente/suivante et signale à l'Utilisateur qu'il est possible de défiler. - -## 2025-06-30 - -- Test de _LogTape_ comme librairie de journalisation. - -## 2025-07-03 - -- Création d'une animation SVG avec des `` défilants sur un ``. - - Le redimensionnement dynamique du conteneur de l'animation se fait via JavaScript. - - Le script récupère la longueur d'une image au redimensionnement de la vue. - - Il injecte un attribut CSS `inline-size` dans le HTML de la page correspondant à cette nouvelle longueur. - - Il n'est pas encore possible de mettre en pause l'animation au survol de la souris, qui est une bonne pratique pour ce style d'éléments visuels. - - Le `` doit être d'une longueur supérieure au conteneur (ici `120%`) pour que le texte disparaisse de façon progressive, qu'il ne soit pas « coupé » brutalement aux extrémités. -- Début de l'implémentation d'une classe `no-js` pour un affichage adapté en cas d'absence de JavaScript. -- Développement d'un script `fish` qui lance un onglet Cromite en mode sans-tête avec profile Invité sur le site Haiku Atelier. - - Il est possible, en utilisant le débogueur à distance Chromium, de rafraîchir un onglet via le terminal en passant par `fx` et `websocat` pour l'interface _WebSocket_. - - Cela offre une forme primitive de « hot reload » (rechargement à chaud) pour éviter d'avoir manuellement taper F5 à chaque changement. - -## 2025-07-04 - -- Problème de l'animation SVG s'affichant mal sur iOS. - - Ce serait du à un bogue de rendu du moteur _WebKit_. - - Pour le contourner, appliquer un `transform: translate3d` ou `transform: matrix` sur les éléments SVG. - - Installation d'un [débogueur distant pour iOS](https://git.gay/besties/ios-safari-remote-debug). - - Compilation de [ios-webkit-debug-proxy](https://github.com/google/ios-webkit-debug-proxy). - - Ensuite, avec un câble reliant l'iPhone à l'ordinateur : - - S'assurer que le démon `usbmuxd` tourne ; - - Ouvrir un onglet sur Safari et activer le _Web Inspector_ dans les préférences avancées ; - - Lancer `ios_webkit_debug_proxy` dans le terminal ; - - Compiler `ios-safari-remote-debug` (`./ios-safari-remote-debug build -t releases/Apple/Safari-17.5-macOS-14.5`) ; - - Lancer le serveur `ios-safari-remote-debug` (`./ios-safari-remote-debug serve`) ; - - Naviguer à son adresse, ouvrir les outils de développements normalement proposés. - - Cela devrait pouvoir faciliter la résolution du soucis de l'animation sur l'accueil pour Safari iOS. - - **Le fin de mot de l'histoire ?** - - Pour _iOS_, on ne peut pas (encore) spécifier de valeurs relatives en pourcentages pour les dimensions des _SVG_. Il faut utiliser des `vw`/`vi`. - - Pour les `` au sein de SVG, le rendu de `font-size` peut différer de celui de Chromium/FF. Question de _PPI_ ? - - `IntersectionObserver` émettait un événement où `intersectionRatio` n'était pas 1, mais ~0.99874784. Vu que le script utilisait une valeur de 1 pour décider qu'un élément soit caché ou non, l'animation était cachée au chargement de la page. - - Utiliser un ratio supérieur à 0.9 corrige le soucisS. -- Journalisation avec _LogTape_. - - Différenciation primaire du niveau minimum de journal en utilisant la variable d'environnement `VITE_ENV`. diff --git a/docs/code_fidélité.md b/docs/code_fidélité.md deleted file mode 100644 index cca6c617..00000000 --- a/docs/code_fidélité.md +++ /dev/null @@ -1,18 +0,0 @@ -# Code de fidélité - -- Un programme de fidélité vise à récompenser les achats répétés auprès de Haiku Atelier par l'obtention de réductions progressivement plus importantes à chaque commande. -- Le pourcentage de réduction s'applique à chaque commande où le programme de fidélité est invoqué. -- Chaque commande successive augmente le pourcentage de réduction, de 5% (un commande) jusqu'à 20% (cinq commandes). -- Une fois la cinquième commande effectuée, la réduction retourne à 5%. -- Un programme de fidélité est créé, à la demande explicite de l'acheteur lors d'une commande, en l'associant à l'adresse email qu'il a renseigné. -- Lorsqu'un acheteur potentiel renseigne ses informations personnelles et les fait valider, le backoffice vérifie que son adresse email correspond à un programme de fidélité. Si c'est le cas, proposer le choix à l'acheteur d'appliquer ou non la réduction. - -## Technique - -- Il ne semble pas trop viable d'utiliser de créer une taxonomie pour les **Commandes**. -- Les **Coupons** sont un type de post, `shop_coupon`. -- Peut-être créer un nouveau type de post, `fidelity_program` ? - -## Liens - -- [Ajouter manuellement une réduction à un Panier](https://stackoverflow.com/questions/22928367/how-to-create-custom-discount-for-the-cart-in-woocommerce). diff --git a/dprint.json b/dprint.json index 19bda06e..2c657279 100755 --- a/dprint.json +++ b/dprint.json @@ -11,19 +11,8 @@ "exec": { "cacheKey": "1", "commands": [ - { - "command": "prettier --ignore-unknown --write --stdin-filepath {{file_path}}", - "exts": [ - "xml" - ] - }, - { - "command": "just --dump", - "fileNames": [ - "justfile" - ], - "stdin": true - } + { "command": "prettier --ignore-unknown --write --stdin-filepath {{file_path}}", "exts": ["php", "xml"] }, + { "command": "just --dump", "fileNames": ["justfile"], "stdin": false } ], "cwd": "${originConfigDir}", "indentWidth": 2, @@ -35,12 +24,7 @@ "json": { "commentLine.forceSpaceAfterSlashes": true, "indentWidth": 2, - "jsonTrailingCommaFiles": [ - ".swcrc", - "biome.jsonc", - "settings.json", - "tsconfig.json" - ], + "jsonTrailingCommaFiles": [".swcrc", "biome.jsonc", "settings.json", "tsconfig.json"], "lineWidth": 120, "newLineKind": "lf", "preferSingleLine": true, @@ -63,7 +47,7 @@ "omitNumberLeadingZero": false, "operatorLinebreak": "before", "preferSingleLine": true, - "printWidth": 120, + "printWidth": 100, "quotes": "alwaysDouble", "singleLineBlockThreshold": null, "singleLineTopLevelDeclarations": false, @@ -92,14 +76,14 @@ }, "newLineKind": "lf", "plugins": [ - "https://plugins.dprint.dev/typescript-0.95.12.wasm", - "https://plugins.dprint.dev/json-0.21.0.wasm", - "https://plugins.dprint.dev/markdown-0.20.0.wasm", + "https://plugins.dprint.dev/typescript-0.95.6.wasm", + "https://plugins.dprint.dev/json-0.20.0.wasm", + "https://plugins.dprint.dev/markdown-0.18.0.wasm", "https://plugins.dprint.dev/toml-0.7.0.wasm", - "https://plugins.dprint.dev/g-plane/malva-v0.15.0.wasm", - "https://plugins.dprint.dev/g-plane/markup_fmt-v0.24.1.wasm", + "https://plugins.dprint.dev/g-plane/malva-v0.12.1.wasm", + "https://plugins.dprint.dev/g-plane/markup_fmt-v0.20.0.wasm", "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm", - "https://plugins.dprint.dev/exec-0.6.0.json@a054130d458f124f9b5c91484833828950723a5af3f8ff2bd1523bd47b83b364" + "https://plugins.dprint.dev/exec-0.5.1.json@492414e39dea4dccc07b4af796d2f4efdb89e84bae2bd4e1e924c0cc050855bf" ], "toml": { "cargo.applyConventions": true, @@ -115,7 +99,6 @@ "conditionalExpression.preferSingleLine": true, "exportDeclaration.sortNamedExports": "maintain", "importDeclaration.sortNamedImports": "maintain", - "lineWidth": 120, "module.sortExportDeclarations": "maintain", "module.sortImportDeclarations": "maintain", "quoteProps": "asNeeded", diff --git a/eslint.config.js b/eslint.config.js new file mode 100755 index 00000000..6d2abd00 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,68 @@ +import js from "@eslint/js"; +import oxlint from "eslint-plugin-oxlint"; +import perfectionist from "eslint-plugin-perfectionist"; +import globals from "globals"; +import tseslint from "typescript-eslint"; + +export default tseslint.config( + js.configs.recommended, + perfectionist.configs["recommended-natural"], + ...tseslint.configs.strictTypeChecked, + ...tseslint.configs.stylisticTypeChecked, + oxlint.configs["flat/recommended"], + { + files: ["*.js", "web/app/themes/haiku-atelier-2024/src/**/*.ts"], + languageOptions: { + ecmaVersion: "latest", + globals: { + ...globals.browser, + ...globals.es2020, + }, + parserOptions: { + projectService: true, + tsconfigRootDir: import.meta.dirname, + }, + }, + rules: { + /* Utilise Array plutôt que T[]. */ + "@typescript-eslint/array-type": [ + "error", + { + default: "generic", + readonly: "generic", + }, + ], + /* L'usage d'interfaces ou de types doit être à la discrétion du développeur. */ + "@typescript-eslint/consistent-type-definitions": "off", + /* Désactive cette règle pour les fonctions fléchées pour rendre le code moins verbeux. */ + "@typescript-eslint/no-confusing-void-expression": [ + "error", + { + ignoreArrowShorthand: true, + ignoreVoidOperator: false, + }, + ], + /* Chiant avec certaines Promises. */ + "@typescript-eslint/no-floating-promises": "off", + /* Chiant avec certaines Promises. */ + "@typescript-eslint/no-misused-promises": "off", + /* Cette règle empêche l'usage de génériques précisant les types de retour de fonctions. */ + "@typescript-eslint/no-unnecessary-type-parameters": "off", + "@typescript-eslint/no-unused-expressions": [ + "error", + { + allowTernary: true, + }, + ], + /* Cette règle est doublon avec les règles noUnused* de TypeScript. */ + "@typescript-eslint/no-unused-vars": "off", + /* Cette règle empêche de lever des erreurs génériques (p.ex. `E extends Error`). */ + "@typescript-eslint/only-throw-error": "off", + /* Cette règle empêche le style fonctionnel « point free ». */ + "@typescript-eslint/unbound-method": "off", + /* Cette règle interdit l'usage de fonctions vides sauf pour les fonctions fléchées. */ + "no-empty-function": ["error", { allow: ["arrowFunctions"] }], + "perfectionist/sort-modules": "off", + }, + }, +); diff --git a/eslint.config.ts b/eslint.config.ts deleted file mode 100755 index cca944ae..00000000 --- a/eslint.config.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { configTypescriptNavigateur } from "@gcch/configuration-eslint"; -import { defineConfig } from "eslint/config"; - -export default defineConfig([...configTypescriptNavigateur], { - rules: { - "@typescript-eslint/no-empty-object-type": "off", - "perfectionist/sort-modules": "off", - "unicorn/no-array-method-this-argument": "off", - "unicorn/no-useless-undefined": "off", - }, -}); diff --git a/justfile b/justfile index 5c82545b..8677cbb8 100755 --- a/justfile +++ b/justfile @@ -1,178 +1,109 @@ set shell := ["fish", "-c"] -set unstable := true cacheFolder := ".cache" +eslintCacheFile := "eslintcache" prettierCacheFile := "prettiercache" - -# Aliases - -alias up := up-services -alias down := down-services - -# Recette par défaut. -default: dev +stylelintCacheFile := "stylelintcache" # Liste toutes les recettes list: @just --list --list-heading 'Recettes disponibles :'\n'' --unsorted -# Met à jour les dépendances composer et npm. -[group('js')] -[group('php')] +# Démarre le conteneur ddev +start: + ddev start + +# Arrête le conteneur ddev +stop: + ddev stop + +# Met à jour les dépendances composer et npm update: composer update - bun update + bun update --latest -# Formatte avec Prettier et dprint. -[group('qualité')] +# Formatte avec Prettier et dprint format: - bun prettier \ - --cache \ - --cache-location "{{ cacheFolder }}/{{ prettierCacheFile }}" \ - --ignore-unknown \ - --write \ - . - -dprint fmt + @echo "Formatage de l'ensemble du code avec Prettier et dprint." + bunx prettier \ + --cache \ + --cache-location "{{ cacheFolder }}/{{ prettierCacheFile }}" \ + --ignore-unknown \ + --write \ + . + dprint fmt - jsonsort *.json - taplo fmt **/*.toml - - -vendor/bin/twig-cs-fixer fix web/app/themes/haiku-atelier-2024/ - ./vendor/bin/php-cs-fixer fix --diff - mago fmt - -# Compile, minifie et optimise Sass vers CSS. -[group('css')] +# Compile, minifie et optimise Sass vers CSS build-css: - @bun sass \ + bunx sass \ --update \ "web/app/themes/haiku-atelier-2024/src/sass":"web/app/themes/haiku-atelier-2024/assets/css" - @bun lightningcss \ + bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/main.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/main.css" - @bun lightningcss \ + bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.css" - @bun lightningcss \ + bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.css" - @bun lightningcss \ + bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.css" - @bun lightningcss \ + bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.css" - @bun lightningcss \ + bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-modele-simple.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-modele-simple.css" - @bun lightningcss \ - --bundle \ - --minify \ - --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.min.css" \ - -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.css" + bunx lightningcss \ + --bundle \ + --minify \ + --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.min.css" \ + -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.css" -# Compile le CSS à chaque changement de fichier. -[group('css')] +# Compile le CSS à chaque changement de fichier watch-css: - @watchexec -w "web/app/themes/haiku-atelier-2024/src/sass" -- just build-css + bunx sass \ + --update \ + --watch \ + "web/app/themes/haiku-atelier-2024/src/sass":"web/app/themes/haiku-atelier-2024/assets/css" -# Compile TypeScript en JavaScript. -[group('js')] +# Compile TypeScript en JavaScript build-js: - @bun vite build + bunx vite build -# Compile tout. -[group('css')] -[group('js')] +# Compile tout build-all: - @just build-css - @just build-js - @just format + just build-css + just build-js -# Compile TypeScript à chaque changement de fichier. -[group('js')] +# Compile TypeScript à chaque changement de fichier watch-js: - bun vite build --watch + bunx vite build --watch -# Vérifie le code TypeScript avec des analyseurs statiques. -[group('js')] -[group('qualité')] +# Vérifie le code TypeScript avec des analyseurs statiques lint-js: - -bun eslint "web/app/themes/haiku-atelier-2024/src/scripts" - -bun biome check --reporter=summary "web/app/themes/haiku-atelier-2024/src/scripts" - -bun oxlint "web/app/themes/haiku-atelier-2024/src/scripts" - -# Vérifie le code Sass avec Stylelint. -[group('css')] -[group('qualité')] -lint-css: - -bun stylelint "web/app/themes/haiku-atelier-2024/src/sass/" --fix + -bunx eslint "web/app/themes/haiku-atelier-2024/src/scripts" + -bunx biome check --reporter=summary "web/app/themes/haiku-atelier-2024/src/scripts" + -bunx oxlint "web/app/themes/haiku-atelier-2024/src/scripts" # Vérifie le code TypeScript mort avec knip -[group('js')] -[group('qualité')] lint-code-mort: - -bun knip + -bunx knip -# Fusionne tous les changements actuels dans le commit précédent et pousse sur le répertoire distant avec Jujetsu. -[group('vcs')] +# Avec Jujetsu, fusionne tous les changements actuels dans le commit précédent et pousse sur le répertoire distant squash-and-push: -jj squash --ignore-immutable && jj bookmark set principale -r @- --allow-backwards && jj git push - -# Analyse statiquement, compile et formate le CSS -[group('css')] -[group('qualité')] -lint-build-format-css: - -just lint-css - -just build-css - -just format - -# Lance un navigateur de développement. -[group('développement')] -dev: - @/opt/cromite/chrome --remote-debugging-address=127.0.0.1 --remote-debugging-port=9222 --profile-directory=Guest "https://haikuatelier.gcch.local" & - -# Recharge le premier onglet du navigateur de développement. -[group('développement')] -reload-tab: - #!/usr/bin/fish - set -f WSURL (curl -s http://127.1:9222/json | fx '.[0].webSocketDebuggerUrl') - set -f REQUEST '{ "id": 2, "method": "Page.reload", "params": { "ignoreCache": true, "scriptToEvaluateOnLoad": "" } }' - echo $REQUEST | websocat $WSURL - -# Créé l'image OCI. -[group('container')] -build-wordpress-container: - @podman build -t wordpress-haiku-atelier:latest --progress=plain --file "containers/Dockerfile" . - -# Lance les services. -[group('container')] -up-services: - @podman compose up -d - -# Arrête les services. -[group('container')] -down-services: - @podman compose down - -# Redémarre les services. -[group('container')] -restart-services: - @podman compose restart - -# Met à jour les conteneurs images des conteneurs. -[group('container')] -pull-images: - bun "scripts/pull-container-images.ts" diff --git a/mago.toml b/mago.toml deleted file mode 100644 index 7761d114..00000000 --- a/mago.toml +++ /dev/null @@ -1,110 +0,0 @@ -php-version = "8.4.0" - -[source] - excludes = ["web/wp/wp-admin/includes/noop.php"] - extensions = ["php"] - includes = ["config", "vendor", "web/app/plugins", "web/wp"] - paths = ["web/app/themes/haiku-atelier-2024"] - -[formatter] - # Brace style for classes, traits, etc. - classlike-brace-style = "same_line" - # Brace style for closures. - closure-brace-style = "same_line" - # Brace style for control structures. - control-brace-style = "same_line" - # Brace style for functions. - function-brace-style = "same_line" - # Brace style for methods. - method-brace-style = "same_line" - # Maximum line length that the printer will wrap on. - print-width = 120 - # Remove the trailing PHP close tag (?>) from files. - remove-trailing-close-tag = true - # Prefer single quotes over double quotes for strings. - single-quote = true - # Number of spaces per indentation level. - tab-width = 2 - # Add a trailing comma to multi-line arrays, parameter lists, etc. - trailing-comma = true - # Use tabs instead of spaces for indentation. - use-tabs = false - # Place empty control structure bodies on the same line. - inline-empty-control-braces = true - # Place empty function bodies on the same line. - inline-empty-function-braces = true - # Place empty constructor bodies on the same line. - inline-empty-constructor-braces = true - # Place empty method bodies on the same line. - inline-empty-method-braces = true - # Place empty anonymous class bodies on the same line. - inline-empty-anonymous-class-braces = true - # How to break method chains. - method-chain-breaking-style = "next_line" - # Preserve existing line breaks in method chains. - preserve-breaking-member-access-chain = false - # Preserve existing line breaks in argument lists. - preserve-breaking-argument-list = false - # Preserve existing line breaks in array-like structures. - preserve-breaking-array-like = false - # Preserve existing line breaks in parameter lists. - preserve-breaking-parameter-list = false - # Preserve existing line breaks in attribute lists. - preserve-breaking-attribute-list = false - # Preserve existing line breaks in ternary expressions. - preserve-breaking-conditional-expression = true - # Always break parameter lists with promoted properties. - break-promoted-properties-list = true - # Place the binary operator on the next line when breaking. - line-before-binary-operator = true - # Always break named argument lists into multiple lines. - always-break-named-arguments-list = true - # Always break named argument lists in attributes. - always-break-attribute-named-argument-lists = true - # Use table-style alignment for arrays. - array-table-style-alignment = true - # Sort use statements alphabetically. - sort-uses = false - # Insert a blank line between different types of use statements. - separate-use-types = false - # Expand grouped use statements into individual statements. - expand-use-groups = false - # How to format null type hints (null|T vs ?T). - null-type-hint = "null_pipe" - # Add parentheses around new in member access ((new Foo)->bar()). - parentheses-around-new-in-member-access = false - # Add parentheses to new expressions without arguments (new Foo()). - parentheses-in-new-expression = true - # Add parentheses to exit and die constructs. - parentheses-in-exit-and-die = true - # Add parentheses to attributes without arguments. - parentheses-in-attribute = true - # Add a space before arrow function parameters. - space-before-arrow-function-parameter-list-parenthesis = false - - excludes = ["vendor"] - -[linter] - integrations = ["wordpress"] - - [linter.rules] - ambiguous-function-call = { enabled = true } - halstead = { effort-threshold = 7000 } - literal-named-argument = { enabled = false } - no-else-clause = { enabled = false } - no-redundant-readonly = { enabled = true } - no-redundant-use = { enabled = true } - no-variable-variable = { enabled = true } - tagged-todo = { enabled = false } - -[analyzer] - allow-possibly-undefined-array-keys = true - analyze-dead-code = true - check-arrow-function-missing-type-hints = true - check-closure-missing-type-hints = true - check-missing-type-hints = true - check-throws = true - find-unused-definitions = true - find-unused-expressions = true - perform-heuristic-checks = true - strict-list-index-checks = true diff --git a/mise.toml b/mise.toml deleted file mode 100644 index fce0bf1e..00000000 --- a/mise.toml +++ /dev/null @@ -1,2 +0,0 @@ -[tools] - "cargo:mago" = "latest" diff --git a/package.json b/package.json index 02e164eb..81254b3e 100755 --- a/package.json +++ b/package.json @@ -1,14 +1,69 @@ { "name": "haikuatelier.fr", "version": "1.0.0", - "description": "", - "keywords": [], - "license": "ISC", - "author": "", "type": "module", + "description": "", + "author": "", + "license": "ISC", + "packageManager": "pnpm@9.14.4", "main": "index.js", - "scripts": { - "knip": "knip" + "keywords": [], + "scripts": { "knip": "knip", "test": "echo \"Error: no test specified\" && exit 1" }, + "dependencies": { + "@effect/platform": "^0.84.9", + "@mobily/ts-belt": "v4.0.0-rc.5", + "@sentry/browser": "9.28.1", + "a11y-dialog": "^8.1.3", + "chalk": "^5.4.1", + "effect": "^3.16.5", + "lit-html": "^3.3.0", + "loglevel": "^1.9.2", + "loglevel-plugin-prefix": "^0.8.4", + "ts-pattern": "^5.7.1", + "valibot": "1.1.0" + }, + "devDependencies": { + "@biomejs/biome": "^1.9.4", + "@cspell/dict-fr-fr": "^2.3.0", + "@eslint/js": "^9.28.0", + "@prettier/plugin-php": "^0.22.4", + "@prettier/plugin-xml": "^3.4.1", + "@sentry/core": "^9.28.1", + "@swc/cli": "0.7.7", + "@types/node": "^24.0.1", + "@vitejs/plugin-legacy": "^6.1.1", + "@vitest/ui": "3.2.3", + "better-typescript-lib": "^2.11.0", + "browserslist": "^4.25.0", + "cspell": "^9.0.2", + "eslint": "^9.28.0", + "eslint-plugin-oxlint": "^1.1.0", + "eslint-plugin-perfectionist": "^4.14.0", + "fdir": "^6.4.6", + "globals": "^16.2.0", + "happy-dom": "^18.0.1", + "knip": "^5.61.0", + "oxlint": "^1.1.0", + "picomatch": "^4.0.2", + "prettier": "^3.5.3", + "prettier-plugin-pkg": "^0.21.1", + "prettier-plugin-sh": "^0.17.4", + "sass-embedded": "^1.89.2", + "stylelint": "^16.20.0", + "stylelint-config-clean-order": "^7.0.0", + "stylelint-config-sass-guidelines": "^12.1.0", + "stylelint-config-standard-scss": "^15.0.1", + "stylelint-declaration-block-no-ignored-properties": "^2.8.0", + "stylelint-plugin-logical-css": "^1.2.3", + "typescript": "5.8.3", + "typescript-eslint": "^8.34.0", + "vite": "^6.3.5", + "vite-plugin-manifest-sri": "^0.2.0", + "vite-plugin-node-polyfills": "^0.23.0", + "vite-plugin-valibot-env": "^0.10.2", + "vite-tsconfig-paths": "^5.1.4", + "vitest": "3.2.3", + "wp-types": "^4.68.0" }, "browserslist": [ "chrome >0 and last 3 years", @@ -19,80 +74,9 @@ "and_ff >0 and last 3 years", "ios >0 and last 3 years" ], - "dependencies": { - "@effect/platform": "^0.93.6", - "@effect/platform-browser": "^0.73.0", - "@gcch/ideale-standard": "^0.0.6", - "@mobily/ts-belt": "v4.0.0-rc.5", - "@sentry/browser": "^10.29.0", - "a11y-dialog": "^8.1.4", - "effect": "^3.19.9", - "lit-html": "^3.3.1", - "nimble-html": "^0.1.5", - "purify-ts": "2.1.2", - "ts-pattern": "^5.9.0", - "valibot": "1.1.0" - }, - "devDependencies": { - "@biomejs/biome": "^2.3.8", - "@cspell/dict-fr-fr": "^2.3.2", - "@effect/language-service": "^0.60.0", - "@eslint/js": "^9.39.1", - "@gcch/configuration-eslint": "^0.0.10", - "@gcch/configuration-prettier": "^0.0.10", - "@playwright/test": "^1.57.0", - "@prettier/plugin-xml": "^3.4.2", - "@sentry/core": "^10.29.0", - "@types/eslint__js": "^9.14.0", - "@types/node": "^24.10.1", - "better-typescript-lib": "^2.12.0", - "browserslist": "^4.28.1", - "caniuse-lite": "^1.0.30001759", - "eslint": "^9.39.1", - "eslint-plugin-oxlint": "^1.31.0", - "eslint-plugin-perfectionist": "^4.15.1", - "fdir": "^6.5.0", - "globals": "^16.5.0", - "knip": "^5.71.0", - "lightningcss-cli": "^1.30.2", - "oxlint": "^1.31.0", - "picomatch": "^4.0.3", - "playwright": "^1.57.0", - "prettier": "^3.7.4", - "prettier-plugin-curly": "^0.4.1", - "prettier-plugin-pkg": "^0.21.2", - "prettier-plugin-sh": "^0.18.0", - "sass-embedded": "^1.93.3", - "stylelint": "^16.26.1", - "stylelint-config-clean-order": "^8.0.0", - "stylelint-config-sass-guidelines": "^12.1.0", - "stylelint-config-standard-scss": "^16.0.0", - "stylelint-declaration-block-no-ignored-properties": "^2.8.0", - "stylelint-no-unsupported-browser-features": "^8.0.5", - "stylelint-order": "^7.0.0", - "stylelint-plugin-logical-css": "^1.2.3", - "stylelint-value-no-unknown-custom-properties": "^6.0.1", - "typescript": "5.9.3", - "typescript-eslint": "^8.48.1", - "vite": "8.0.0-beta.0", - "vite-php-manifest": "^0.1.1", - "vite-plugin-valibot-env": "^1.0.1", - "vite-tsconfig-paths": "^5.1.4", - "wp-types": "^4.69.0" - }, "knip": { - "entry": [ - "web/app/themes/haiku-atelier-2024/src/scripts/*.ts" - ], - "project": [ - "web/app/themes/haiku-atelier-2024/src/scripts/**/*.{js,ts,d.ts}" - ] + "entry": ["web/app/themes/haiku-atelier-2024/src/scripts/*.ts"], + "project": ["web/app/themes/haiku-atelier-2024/src/scripts/**/*.{js,ts,d.ts}"] }, - "trustedDependencies": [ - "@biomejs/biome", - "core-js", - "esbuild", - "lightningcss-cli", - "msgpackr-extract" - ] + "trustedDependencies": ["@biomejs/biome", "@parcel/watcher"] } diff --git a/phpcs.xml b/phpcs.xml new file mode 100755 index 00000000..e13e63f4 --- /dev/null +++ b/phpcs.xml @@ -0,0 +1,58 @@ + + + Roots Coding Standards + + + . + + + + + + web/wp + web/app/themes/twentytwentyfour/ + vendor/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/phpstan.neon b/phpstan.neon index 52707d28..5beeb545 100755 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,49 +1,12 @@ -# Utilise la version de développement de PHPStan -includes: - - phar://phpstan.phar/conf/bleedingEdge.neon - parameters: - # When set to true, it reports use of dynamic properties as undefined. - checkDynamicProperties: true - checkExplicitMixedMissingReturn: true - # When set to true, it reports function and method calls with incorrect name case. - checkFunctionNameCase: true - # When set to true, it reports references to built-in classes with incorrect name case. - checkInternalClassCaseSensitivity: true - # When set to true, it reports return typehints that could be narrowed down because some of the listed types are never returned from a public or protected method. - checkTooWideReturnTypesInProtectedAndPublicMethods: true - # When set to true, it reports properties with native types that weren’t initialized in the class constructor. - checkUninitializedProperties: false - reportUnmatchedIgnoredErrors: false - # When set to true, it reports violations of parameter type contravariance and return type covariance. - reportMaybesInMethodSignatures: true - # By default PHPStan reports wrong type in @var tag only for native types on the right side of =. With reportWrongPhpDocTypeInVarTag set to true it will consider PHPDoc types too. - reportWrongPhpDocTypeInVarTag: true - # Setting treatPhpDocTypesAsCertain to false relaxes some of the rules around type-checking. - treatPhpDocTypesAsCertain: false - - parallel: - jobSize: 20 - maximumNumberOfProcesses: 32 - minimumNumberOfJobsPerProcess: 2 - - level: max - - scanDirectories: - - config - - vendor - - web/app - - web/wp - - scanFiles: - - .php-cs-fixer.dist.php - - web/index.php - - web/wp-config.php - - paths: - - web/app/themes/haiku-atelier-2024 - - excludePaths: - analyseAndScan: - - web/app/languages - - web/app/themes/twentytwentyfour + level: 6 + paths: + - web/app/themes/haiku-atelier-2024 + scanDirectories: + - vendor + - web/app/plugins + - web/vendor + - web/wp + typeAliases: + InformationsProduitShop: 'array{id: int, nom: string, prix: string, photo_repos: string, photo_survol: string, url: string}' + InformationsVariation: 'array{id: int, titre: string, prix: string}' diff --git a/playwright.config.ts b/playwright.config.ts deleted file mode 100644 index ae98dd4b..00000000 --- a/playwright.config.ts +++ /dev/null @@ -1,92 +0,0 @@ -import { defineConfig, devices } from "@playwright/test"; - -/** - * Read environment variables from file. - * https://github.com/motdotla/dotenv - */ -// import dotenv from 'dotenv'; -// import path from 'path'; -// dotenv.config({ path: path.resolve(__dirname, '.env') }); - -/** - * See https://playwright.dev/docs/test-configuration. - */ -export default defineConfig({ - testDir: "./tests", - /* Run tests in files in parallel */ - fullyParallel: true, - /* Fail the build on CI if you accidentally left test.only in the source code. */ - forbidOnly: !!process.env.CI, - /* Retry on CI only */ - retries: process.env.CI ? 2 : 0, - /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, - /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: "list", - /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ - use: { - /* Base URL to use in actions like `await page.goto('/')`. */ - // baseURL: 'http://localhost:3000', - - /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ - trace: "on-first-retry", - clientCertificates: [ - { - origin: "https://haikuatelier.gcch.local", - certPath: "../certs/_wildcard.gcch.local.pem", - keyPath: "../certs/_wildcard.gcch.local-key.pem", - }, - ], - ignoreHTTPSErrors: true, - }, - - /* Configure projects for major browsers */ - projects: [ - { - name: "desktop-chromium-1920", - use: { ...devices["Desktop Chrome"], viewport: { width: 1920, height: 1080 } }, - }, - { - name: "desktop-chromium-1536", - use: { ...devices["Desktop Chrome"], viewport: { width: 1536, height: 864 } }, - }, - { - name: "desktop-chromium-1366", - use: { ...devices["Desktop Chrome"], viewport: { width: 1366, height: 768 } }, - }, - { - name: "desktop-firefox-1920", - use: { ...devices["Desktop Firefox"], viewport: { width: 1920, height: 1080 } }, - }, - { - name: "desktop-firefox-1536", - use: { ...devices["Desktop Firefox"], viewport: { width: 1536, height: 864 } }, - }, - { - name: "desktop-firefox-1366", - use: { ...devices["Desktop Firefox"], viewport: { width: 1366, height: 768 } }, - }, - { - name: "tablet-chromium-portrait", - use: { ...devices["Galaxy Tab S9"] }, - }, - { - name: "tablet-chromium-landscape", - use: { ...devices["Galaxy Tab S9 landscape"] }, - }, - { - name: "mobile-chromium-portrait", - use: { ...devices["Pixel 7"] }, - }, - { - name: "mobile-chromium-landscape", - use: { ...devices["Pixel 7 landscape"] }, - }, - ], - /* Run your local dev server before starting the tests */ - // webServer: { - // command: 'npm run start', - // url: 'http://localhost:3000', - // reuseExistingServer: !process.env.CI, - // }, -}); diff --git a/prettier.config.js b/prettier.config.js index 8199699f..7e0be93d 100755 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,8 +1,56 @@ -import { configClassique, configXml } from "@gcch/configuration-prettier"; - -const config = { - ...configClassique, - overrides: [configXml], +/** @type {import("prettier").Config} */ +export default { + arrowParens: "avoid", + bracketSameLine: false, + bracketSpacing: true, + embeddedLanguageFormatting: "auto", + endOfLine: "lf", + experimentalTernaries: true, + htmlWhitespaceSensitivity: "ignore", + overrides: [ + // Pour les fichiers PHP sans HTML + { + files: ["*.php"], + options: { + braceStyle: "1tbs", + parser: "php", + phpVersion: "8.2", + plugins: ["@prettier/plugin-php"], + trailingCommaPHP: true, + }, + }, + // Pour les fichiers XML + { + files: ["*.xml"], + options: { + bracketSameLine: false, + parser: "xml", + plugins: ["@prettier/plugin-xml"], + printWidth: 120, + singleAttributePerLine: true, + tabWidth: 2, + xmlQuoteAttributes: "double", + xmlSelfClosingSpace: true, + xmlSortAttributesByKey: true, + xmlWhitespaceSensitivity: "strict", + }, + }, + // package.json + { + files: ["package.json"], + options: { + plugins: ["prettier-plugin-pkg"], + }, + }, + ], + plugins: ["prettier-plugin-sh"], + printWidth: 120, + proseWrap: "never", + quoteProps: "as-needed", + semi: true, + singleAttributePerLine: true, + singleQuote: false, + tabWidth: 2, + trailingComma: "all", + useTabs: false, }; - -export default config; diff --git a/psalm.xml b/psalm.xml new file mode 100755 index 00000000..8c82abe2 --- /dev/null +++ b/psalm.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/rector.php b/rector.php deleted file mode 100644 index f25a03d6..00000000 --- a/rector.php +++ /dev/null @@ -1,16 +0,0 @@ -withPaths([__DIR__ . '/web/app/themes/haiku-atelier-2024']) - ->withPhpSets(php84: true) - ->withTypeCoverageLevel(10) - ->withTypeCoverageDocblockLevel(10) - ->withDeadCodeLevel(10) - ->withCodeQualityLevel(10) - ->withPreparedSets( - carbon: true, - instanceOf: true, - privatization: true, - ); diff --git a/scripts/pull-container-images.ts b/scripts/pull-container-images.ts deleted file mode 100644 index da11a9f6..00000000 --- a/scripts/pull-container-images.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { BunFile, YAML } from "bun"; -import { Array, Console, Effect, Option, pipe, Record, Schema } from "effect"; -import { type UnknownException } from "effect/Cause"; -import { type ParseError } from "effect/ParseResult"; -import { type ReadonlyRecord } from "effect/Record"; - -const COMPOSE_PATH = "compose.yaml"; - -const getServicesKey = ( - yaml: ReadonlyRecord, -): Option.Option> => - pipe( - Record.get("services")(yaml), - Option.andThen(yaml => Record.keys(yaml)), - ); - -const getComposeYaml = ( - filePath: string, - schema: Schema.Schema, -): Effect.Effect => - pipe( - Effect.try(() => Bun.file(filePath)), - Effect.andThen((file: BunFile) => Effect.tryPromise(() => file.text())), - Effect.andThen((text: string) => Effect.try(() => YAML.parse(text))), - Effect.andThen((yaml: unknown) => Schema.decodeUnknown(schema)(yaml)), - ); - -const programEffect: Effect.Effect> = Effect.gen(function*() { - return yield* pipe( - // Récupère le contenu du fichier compose.yaml sous forme de Record. - getComposeYaml(COMPOSE_PATH, Schema.Record({ key: Schema.String, value: Schema.Unknown })), - // Récupère la clé des services. - Effect.andThen((yaml: ReadonlyRecord) => getServicesKey(yaml)), - // Retire la clé de l'image WordPress. - Effect.andThen((keys: ReadonlyArray) => Array.filter(keys, key => key !== "wordpress")), - Effect.orElseSucceed(() => [""]), - // Exécute la commande podman. - Effect.tap(services => Bun.spawn({ cmd: ["podman", "compose", "pull", ...services], timeout: 10000 })), - ); -}); - -Effect.runFork(programEffect).pipe(Effect.tapErrorCause(Console.error)); diff --git a/scripts/remove-scaled-images.php b/scripts/remove-scaled-images.php index c543ca59..e21400af 100755 --- a/scripts/remove-scaled-images.php +++ b/scripts/remove-scaled-images.php @@ -1,43 +1,47 @@ -prefix}postmeta"; +$wp_postmeta = $wpdb->prefix . "postmeta"; try { - $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - // Error Handling - $sql = "UPDATE {$wp_postmeta} SET meta_value = REPLACE(meta_value,'-scaled.jpg','.jpg') WHERE meta_key='_wp_attached_file' AND meta_value LIKE '%-scaled.jpg%'"; - $result = $pdo->exec($sql); - print_r($result); + $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); //Error Handling + + $sql = "UPDATE $wp_postmeta SET meta_value = REPLACE(meta_value,'-scaled.jpg','.jpg') WHERE meta_key='_wp_attached_file' AND meta_value LIKE '%-scaled.jpg%'"; + $result = $pdo->exec($sql); + print_r($result); } catch (PDOException $e) { - print_r($e->getMessage()); + print_r($e->getMessage()); } -// replace _wp_attachment_metadata meta_key. +/** + * replace _wp_attachment_metadata meta_key + **/ + $image_metas = []; - try { - $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - // Error Handling - $sql = "SELECT * FROM {$wp_postmeta} WHERE meta_value LIKE '%-scaled.jpg%' AND meta_key='_wp_attachment_metadata'"; - $statement = $pdo->query($sql); - $image_metas = $statement->fetchAll(); - foreach ($image_metas as $meta) { - $meta_value = unserialize($meta['meta_value']); - $file = $meta_value['file']; - $meta_value['file'] = str_replace('-scaled.jpg', '.jpg', $file); - update_post_meta($meta['post_id'], $meta['meta_key'], $meta_value); - $result = get_post_meta($meta['post_id'], $meta['meta_key']); - print_r($result); - } + $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); //Error Handling + $sql = "SELECT * FROM $wp_postmeta WHERE meta_value LIKE '%-scaled.jpg%' AND meta_key='_wp_attachment_metadata'"; + $statement = $pdo->query($sql); + $image_metas = $statement->fetchAll(); + foreach ($image_metas as $meta) { + $meta_value = unserialize($meta["meta_value"]); + $file = $meta_value["file"]; + $meta_value["file"] = str_replace("-scaled.jpg", ".jpg", $file); + update_post_meta($meta["post_id"], $meta["meta_key"], $meta_value); + $result = get_post_meta($meta["post_id"], $meta["meta_key"]); + print_r($result); + } } catch (PDOException $e) { - print_r($e->getMessage()); + print_r($e->getMessage()); } diff --git a/tests/capture.spec.ts b/tests/capture.spec.ts deleted file mode 100644 index 0ce1cea2..00000000 --- a/tests/capture.spec.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { expect, type Page, test } from "@playwright/test"; - -type TestPage = { - pageName: string; - url: string; -}; - -const genTimestamp = (): string => - Intl.DateTimeFormat("sv-SE", { - dateStyle: "short", - }).format(Date.now()); - -const takeFullPageScreenshot = async (page: Page, name: string): Promise => { - await page.screenshot({ fullPage: false, path: `captures/${name}`, type: "png" }); -}; - -// TODO: Faire des tests spécifiques pour chaque page, que l'on puisse attendre que toutes les images dans la vue soient chargées, et prendre des captures à différentes positions dans la page. - -Array.from([ - { - pageName: "home", - url: "https://haikuatelier.gcch.local/", - }, - { - pageName: "shop", - url: "https://haikuatelier.gcch.local/shop/", - }, - { - pageName: "about", - url: "https://haikuatelier.gcch.local/about/", - }, - { - pageName: "category", - url: "https://haikuatelier.gcch.local/product-category/rings/", - }, - { - pageName: "product", - url: "https://haikuatelier.gcch.local/product/fuyou-long-earrings-silver/", - }, -]).forEach(({ pageName, url }) => { - test(pageName, async ({ page }, testInfo) => { - await page.goto(url); - - const projectName = testInfo.project.name; - const timestamp: string = genTimestamp(); - const viewport = page.viewportSize(); - - const captureName = `${pageName}/${projectName}-${viewport?.width}-${viewport?.height} ${timestamp}.png`; - - await takeFullPageScreenshot(page, captureName); - await expect(page).toHaveURL(url); - }); -}); diff --git a/tsconfig.json b/tsconfig.json index c0bdb918..69672e61 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,11 +13,7 @@ "exactOptionalPropertyTypes": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, - "lib": [ - "DOM", - "DOM.Iterable", - "ESNext" - ], + "lib": ["DOM", "DOM.Iterable", "ESNext"], "module": "ESNext", "moduleDetection": "force", "moduleResolution": "Bundler", @@ -34,11 +30,6 @@ "noUncheckedSideEffectImports": true, "noUnusedLocals": true, "noUnusedParameters": true, - "plugins": [ - { - "name": "@effect/language-service" - } - ], "skipLibCheck": false, "strict": true, "strictBindCallApply": true, @@ -48,23 +39,10 @@ "suppressExcessPropertyErrors": false, "suppressImplicitAnyIndexErrors": false, "target": "ESNext", - "types": [ - "node", - "vite/client" - ], + "types": ["node", "vite/client"], "useDefineForClassFields": true, "useUnknownInCatchVariables": true }, - "exclude": [ - "vendor", - "web/app/plugins", - "web/wp" - ], - "include": [ - "*.js", - "lib", - "web/app/themes/haiku-atelier-2024/src", - "vite.config.ts", - "eslint.config.ts" - ] + "exclude": ["vendor", "web/app/plugins", "web/wp"], + "include": ["*.js", "lib", "web/app/themes/haiku-atelier-2024/src"] } diff --git a/vite.config.js b/vite.config.js new file mode 100755 index 00000000..d723aec0 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,71 @@ +import legacy from "@vitejs/plugin-legacy"; +import { fdir } from "fdir"; +import { resolve } from "node:path"; +import process from "node:process"; +import * as v from "valibot"; +import { defineConfig, loadEnv } from "vite"; +import manifestSRI from "vite-plugin-manifest-sri"; +import { nodePolyfills } from "vite-plugin-node-polyfills"; +import valibot from "vite-plugin-valibot-env"; + +const SLUG_THEME = "haiku-atelier-2024"; +const SRC_TYPESCRIPT_PATHS = new fdir() + .withBasePath() + .filter((path, isDirectory) => !isDirectory && !path.endsWith("d.ts")) + .withMaxDepth(0) + .crawl(`web/app/themes/${SLUG_THEME}/src/scripts`) + .withPromise(); + +/* Voir le fichier vite.env.d.ts */ +const SCHEMA_ENVIRONNEMENT = v.object({ + VITE_GLITCHTIP_NSD: v.pipe(v.string(), v.url(), v.readonly()), + VITE_MODE: v.pipe(v.string(), v.readonly()), + VITE_URL: v.pipe(v.string(), v.nonEmpty(), v.url(), v.readonly()), +}); + +export default defineConfig(async ({ mode }) => { + const env = loadEnv(mode, process.cwd(), "VITE"); + + return { + base: "/", + build: { + assetsDir: ".", + emptyOutDir: true, + /* Génère un fichier manifeste dans outDir */ + manifest: true, + minify: env.VITE_MODE === "production", + outDir: resolve("./web/app/themes/haiku-atelier-2024/assets/js"), + reportCompressedSize: true, + rollupOptions: { + input: await SRC_TYPESCRIPT_PATHS, + output: { + assetFileNames: "[name].[hash].[extname]", + chunkFileNames: "[name].[hash].js", + compact: env.VITE_MODE === "production", + entryFileNames: "[name].js", + validate: true, + }, + treeshake: "smallest", + }, + sourcemap: env.VITE_MODE === "development", + target: "es2020", + write: true, + }, + mode: env.VITE_MODE ?? "development", + plugins: [ + // Permet de valider les variables d'environnements définies à partir d'un schéma Valibot + valibot(SCHEMA_ENVIRONNEMENT), + manifestSRI({ algorithms: ["sha512"] }), + nodePolyfills({ + include: [], + protocolImports: true, + }), + legacy({ + modernPolyfills: true, + modernTargets: + "chrome >0 and last 3 years, edge >0 and last 3 years, safari >0 and last 3 years, firefox >0 and last 3 years, and_chr >0 and last 3 years, and_ff >0 and last 3 years, ios >0 and last 3 years", + renderLegacyChunks: false, + }), + ], + }; +}); diff --git a/vite.config.ts b/vite.config.ts deleted file mode 100755 index d09d3c7c..00000000 --- a/vite.config.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { fdir, PathsOutput } from "fdir"; -import path from "node:path"; -import process from "node:process"; -import * as v from "valibot"; -import { defineConfig, loadEnv } from "vite"; -import { VitePhpManifest } from "vite-php-manifest"; -import valibot from "vite-plugin-valibot-env"; - -const SLUG_THEME = "haiku-atelier-2024"; -const SRC_TYPESCRIPT_PATHS: Promise = new fdir() - .withBasePath() - .filter((path, isDirectory) => !isDirectory && !path.endsWith("d.ts")) - .withMaxDepth(0) - .crawl(`web/app/themes/${SLUG_THEME}/src/scripts`) - .withPromise(); -const PATHS = await SRC_TYPESCRIPT_PATHS; - -// Voir le fichier vite.env.d.ts. -const SCHEMA_ENVIRONNEMENT = v.object({ - VITE_GLITCHTIP_NSD: v.pipe(v.string(), v.url(), v.readonly()), - VITE_MODE: v.pipe(v.string(), v.readonly()), - VITE_URL: v.pipe(v.string(), v.nonEmpty(), v.url(), v.readonly()), -}); - -const basePlugins = [ - // Permet de valider les variables d'environnements définies à partir d'un schéma Valibot - valibot(SCHEMA_ENVIRONNEMENT), - VitePhpManifest({ - shortArraySyntax: true, - unlinkOriginManifest: false, - }), -]; - -export default defineConfig(({ mode }) => { - const env = loadEnv(mode, process.cwd(), "VITE"); - console.debug(env); - - return { - base: "/", - build: { - assetsDir: ".", - cssMinify: "lightningcss", - emptyOutDir: true, - manifest: true, - minify: env["VITE_MODE"] === "production", - outDir: "./web/app/themes/haiku-atelier-2024/assets/js", - reportCompressedSize: true, - rollupOptions: { - input: PATHS, - output: { - assetFileNames: "[hash].[extname]", - chunkFileNames: "[hash].js", - entryFileNames: "[name].[hash].js", - minify: env["VITE_MODE"] === "production", - }, - treeshake: true, - }, - sourcemap: env["VITE_MODE"] === "development", - target: "es2020", - write: true, - }, - css: { - devSourcemap: true, - transformer: "lightningcss", - }, - mode: env["VITE_MODE"] ?? "production", - plugins: [...basePlugins], - }; -}); diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100755 index 00000000..d22e699c --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from "vitest/config"; + +export default defineConfig({ + test: { + environment: "happy-dom", + }, +}); diff --git a/web/app/db.php b/web/app/db.php new file mode 120000 index 00000000..73510b50 --- /dev/null +++ b/web/app/db.php @@ -0,0 +1 @@ +/var/www/html/web/app/plugins/query-monitor/wp-content/db.php \ No newline at end of file diff --git a/web/app/languages/admin-en_GB.l10n.php b/web/app/languages/admin-en_GB.l10n.php new file mode 100644 index 00000000..5efa4fcb --- /dev/null +++ b/web/app/languages/admin-en_GB.l10n.php @@ -0,0 +1,174 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2025-05-25 12:26:44+0000','plural-forms'=>'nplurals=2; plural=n != 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration','language'=>'en_GB','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/London','Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.'=>'Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimisations improve performance.','You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.'=>'You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.','An error occurred while deleting the theme.'=>'An error occurred while deleting the theme.','Add Theme'=>'Add Theme','WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy.'=>'WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy.','WordPress.org takes privacy and transparency very seriously'=>'WordPress.org takes privacy and transparency very seriously','File: %s'=>'File: %s','Add User'=>'Add User','Add Plugin'=>'Add Plugin','design menu itemDesign'=>'Design','Collapse Main Menu'=>'Collapse Main Menu','Invalid item ID. You can view all media items in the Media Library.'=>'Invalid item ID. You can view all media items in the Media Library.','An error occurred during the upload process.'=>'An error occurred during the upload process.','You cannot install because WordPress %2$s requires the %3$s PHP extension.'=>'You cannot install because WordPress %2$s requires the %3$s PHP extension.','Add Custom Field:'=>'Add Custom Field:','An error occurred while loading the comparison. Please refresh the page and try again.'=>'An error occurred while loading the comparison. Please refresh the page and try again.','+ Add Category'=>'+ Add Category','Does not exist'=>'Does not exist','robots.txt'=>'robots.txt','WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support'=>'WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support','Your site is using the dynamic %s file which is generated by WordPress.'=>'Your site is using the dynamic %s file which is generated by WordPress.','There is a static %s file in your installation folder. WordPress cannot dynamically serve one.'=>'There is a static %s file in your installation folder. WordPress cannot dynamically serve one.','The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again.'=>'The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again.','An error occurred while processing your header image.'=>'An error occurred while processing your header image.','Please try again or start a new changeset. This changeset cannot be further modified.'=>'Please try again or start a new changeset. This changeset cannot be further modified.','An error occurred while saving your changeset.'=>'An error occurred while saving your changeset.','Triage Lead'=>'Triage Lead','Tech Lead'=>'Tech Lead','Default Theme Development Lead'=>'Default Theme Development Lead','Default Theme Design Lead'=>'Default Theme Design Lead','Performance Lead'=>'Performance Lead','Design Lead'=>'Design Lead','Test Lead'=>'Test Lead','Documentation Lead'=>'Documentation Lead','Editor Triage Lead'=>'Editor Triage Lead','Editor Tech Lead'=>'Editor Tech Lead','Core Triage Lead'=>'Core Triage Lead','Core Tech Lead'=>'Core Tech Lead','Minor Release Lead'=>'Minor Release Lead','Release Coordination'=>'Release Coordination','WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.'=>'WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.','Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.'=>'Work continues on optimising cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.','Take a load off the database'=>'Take a load off the database','100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.'=>'100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the Customiser, and simplified labelling. The block editor has over 70 improvements to blocks, DataViews, and to its overall user experience.','Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.'=>'Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.','Stronger password security with bcrypt'=>'Stronger password security with bcrypt','In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.'=>'In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.','Near-instant page loads, thanks to Speculative Loading'=>'Near-instant page loads, thanks to Speculative Loading','Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.'=>'Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser.','The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.'=>'The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colours, typography—almost all your site styles—in one place.','The Style Book gets a cleaner look—and a few new tricks'=>'The Style Book gets a cleaner look—and a few new tricks','The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.'=>'The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.','WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.'=>'WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.','A release polished to a high sheen.'=>'A release polished to a high sheen.','If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.'=>'If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.','If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.'=>'If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.','Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.'=>'Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.','Dependencies'=>'Dependencies','Comments to display at the top of each page'=>'Comments to display at the top of each page','Comments page to display by default'=>'Comments page to display by default','Top level comments per page'=>'Top level comments per page','Break comments into pages'=>'Break comments into pages','Comment Pagination'=>'Comment Pagination','Number of levels for threaded (nested) comments'=>'Number of levels for threaded (nested) comments','Enable threaded (nested) comments'=>'Enable threaded (nested) comments','Close comments when post is how many days old'=>'Close comments when post is how many days old','Automatically close comments on old posts'=>'Automatically close comments on old posts','Menu order updated'=>'Menu order updated','Menu parent updated'=>'Menu parent updated','Change revision by using the left and right arrow keys'=>'Change revision by using the left and right arrow keys','Select a revision'=>'Select a revision','A directory could not be read.'=>'A directory could not be read.','Database Extension'=>'Database Extension','Empty value'=>'Empty value','Max simultaneous file uploads'=>'Max simultaneous file uploads','Menu Order'=>'Menu Order','Menu Parent'=>'Menu Parent','Skip to Editor'=>'Skip to Editor','WordPress %s Field Guide'=>'WordPress %s Field Guide','WordPress %s Release Notes'=>'WordPress %s Release Notes','The directory does not exist.'=>'The directory does not exist.','Common Errors'=>'Common Errors','Documentation on Editing Files'=>'Documentation on Editing Files','Documentation on Editing Plugins'=>'Documentation on Editing Plugins','https://developer.wordpress.org/plugins/settings/settings-api/'=>'https://developer.wordpress.org/plugins/settings/settings-api/','The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.'=>'The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.','https://developer.wordpress.org/advanced-administration/wordpress/update-services/'=>'https://developer.wordpress.org/advanced-administration/wordpress/update-services/','https://developer.wordpress.org/advanced-administration/wordpress/feeds/'=>'https://developer.wordpress.org/advanced-administration/wordpress/feeds/','Documentation on Nginx configuration.'=>'Documentation on Nginx configuration.','https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/'=>'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/','Documentation on Site Management'=>'Documentation on Site Management','Type of relationnone'=>'none','No URL Provided.'=>'No URL provided.','https://developer.wordpress.org/advanced-administration/server/file-permissions/'=>'https://developer.wordpress.org/advanced-administration/server/file-permissions/','Package not available.'=>'Package not available.','Autoloaded options'=>'Autoloaded options','More info about optimizing autoloaded options'=>'More info about optimising autoloaded options','https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options','Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.'=>'Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.','Autoloaded options could affect performance'=>'Autoloaded options could affect performance','Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.'=>'Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.','Autoloaded options are acceptable'=>'Autoloaded options are acceptable','Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.'=>'Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.','https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache','https://developer.wordpress.org/advanced-administration/performance/optimization/#caching'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#caching','Fonts directory size'=>'Fonts directory size','Fonts directory location'=>'Fonts directory location','The fonts directory'=>'The fonts directory','The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.'=>'The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.','The update for \'%s\' contained a fatal error. The previously installed version has been restored.'=>'The update for \'%s\' contained a fatal error. The previously installed version has been restored.','The update for \'%s\' contained a fatal error. The previously installed version could not be restored.'=>'The update for \'%s\' contained a fatal error. The previously installed version could not be restored.','https://developer.wordpress.org/advanced-administration/security/backup/'=>'https://developer.wordpress.org/advanced-administration/security/backup/','If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.'=>'If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.','If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.'=>'If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.','See everything new'=>'See everything new','https://wordpress.org/download/releases/6-8/'=>'https://wordpress.org/download/releases/6-8/','For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.'=>'For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.','And much more'=>'And much more','patterns menu itemPatterns'=>'Patterns','Change Site Icon'=>'Change site icon','Error: %1$s requires %2$d plugin to be installed and activated: %3$s.'=>'Error: %1$s requires %2$d plugin to be installed and activated: %3$s.' . "\0" . 'Error: %1$s requires %2$d plugins to be installed and activated: %3$s.','pluginUpdate Now'=>'Update now','themeInstall Now'=>'Install now','This plugin cannot be activated because required plugins are missing or inactive.'=>'This plugin cannot be activated because required plugins are missing or inactive.','This plugin is active but may not function correctly because required plugins are missing or inactive.'=>'This plugin is active but may not function correctly because required plugins are missing or inactive.','Requires: %s'=>'Requires: %s','Required by: %s'=>'Required by: %s','Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.'=>'Note: this plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.','You cannot deactivate this plugin as other plugins depend on it.'=>'You cannot deactivate this plugin as other plugins depend on it.','You cannot delete this plugin as other plugins require it.'=>'You cannot delete this plugin as other plugins require it.','You cannot activate this plugin as it has unmet requirements.'=>'You cannot activate this plugin as it has unmet requirements.','You cannot deactivate this plugin as other plugins require it.'=>'You cannot deactivate this plugin as other plugins require it.','pluginDeactivate'=>'Deactivate','pluginNetwork Deactivate'=>'Network deactivate','pluginActivate'=>'Activate','Additional plugins are required'=>'Additional plugins are required','Site ID'=>'Site ID','The PHP version on your server is %1$s, however the new theme version requires %2$s.'=>'The PHP version on your server is %1$s, however the new theme version requires %2$s.','Your WordPress version is %1$s, however the new theme version requires %2$s.'=>'Your WordPress version is %1$s, however the new theme version requires %2$s.','pluginNetwork Activate'=>'Network activate','%s is already active.'=>'%s is already active.','pluginInstall Now'=>'Install now','Created by a worldwide team of passionate individuals'=>'Created by a worldwide team of passionate individuals','Accessibility improvements'=>'Accessibility improvements','Performance updates'=>'Performance updates','Only .zip archives may be uploaded.'=>'Only .zip archives may be uploaded.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.','Add New Site'=>'Add New Site','Rotate 180°'=>'Rotate 180°','Rotate 90° right'=>'Rotate 90° right','Rotate 90° left'=>'Rotate 90° left','%s pattern moved to the Trash.'=>'%s pattern moved to the Bin.' . "\0" . '%s patterns moved to the Bin.','%s pattern permanently deleted.'=>'%s pattern permanently deleted.' . "\0" . '%s patterns permanently deleted.','%s pattern updated.'=>'%s pattern updated.' . "\0" . '%s patterns updated.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.','Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.','Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.','Invalid URL format.'=>'Invalid URL format.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'The PHP version on your server is %1$s, however the new plugin version requires %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'Your WordPress version is %1$s, however the new plugin version requires %2$s.','https://wordpress.org/support/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.','Restore Plugin or Theme'=>'Restore Plugin or Theme','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'The site editor requires JavaScript. Please enable JavaScript in your browser settings.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://wordpress.org/documentation/article/customize-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'In a few words, explain what this site is about. Example: “%s.”','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.','New custom field name'=>'New custom field name','Search Media:'=>'Search Media:','Clear Crop'=>'Clear Crop','Apply Crop'=>'Apply Crop','vertical start position'=>'vertical start position','horizontal start position'=>'horizontal start position','Starting Coordinates:'=>'Starting Coordinates:','Crop Image'=>'Crop Image','Images cannot be scaled to a size larger than the original.'=>'Images cannot be scaled to a size larger than the original.','Save Edits'=>'Save Edits','Cancel Editing'=>'Cancel Editing','Could not create the destination directory.'=>'Could not create the destination directory.','Table ordered by E-mail.'=>'Table ordered by Email.','Table ordered by Username.'=>'Table ordered by Username.','Could not delete the temporary backup directory for %s.'=>'Could not delete the temporary backup directory for %s.','Could not restore the original version of %s.'=>'Could not restore the original version of %s.','Could not move the old version to the %s directory.'=>'Could not move the old version to the %s directory.','Could not create the %s directory.'=>'Could not create the %s directory.','Table ordered by Links.'=>'Table ordered by Links.','Table ordered by Posts Count.'=>'Table ordered by Posts Count.','Table ordered by Slug.'=>'Table ordered by Slug.','Table ordered by Description.'=>'Table ordered by Description.','Table ordered hierarchically.'=>'Table ordered hierarchically.','Available disk space'=>'Available disk space','Plugin and theme temporary backup directory access'=>'Plugin and theme temporary backup directory access','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.','The upgrade directory cannot be created'=>'The upgrade directory cannot be created','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.','The upgrade directory exists but is not writable'=>'The upgrade directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.','The temporary backup directory exists but is not writable'=>'The temporary backup directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.','Theme temporary backup directory exists but is not writable'=>'Theme temporary backup directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.','Plugin temporary backup directory exists but is not writable'=>'Plugin temporary backup directory exists but is not writable','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.','Plugin and theme temporary backup directories exist but are not writable'=>'Plugin and theme temporary backup directories exist but are not writable','The %s directory cannot be located.'=>'The %s directory cannot be located.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'The %s directory used to improve the stability of plugin and theme updates is writable.','Plugin and theme temporary backup directory is writable'=>'Plugin and theme temporary backup directory is writable','Could not determine available disk space for updates.'=>'Could not determine available disk space for updates.','Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.'=>'Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.','Available disk space is low, less than %s available.'=>'Available disk space is low, less than %s available.','%s available disk space was detected, update routines can be performed safely.'=>'%s available disk space was detected, update routines can be performed safely.','Disk space available to safely perform updates'=>'Disk space available to safely perform updates','Table ordered by Hierarchical Menu Order and Title.'=>'Table ordered by Hierarchical Menu Order and Title.','Table ordered by Title.'=>'Table ordered by Title.','Table ordered by Date.'=>'Table ordered by Date.','Table ordered by Comments.'=>'Table ordered by Comments.','Table ordered by Uploaded To.'=>'Table ordered by Uploaded To.','Table ordered by Author.'=>'Table ordered by Author.','Table ordered by File Name.'=>'Table ordered by File Name.','Descending.'=>'Descending.','Ascending.'=>'Ascending.','Sort descending.'=>'Sort descending.','Sort ascending.'=>'Sort ascending.','Table ordered by Rating.'=>'Table ordered by Rating.','Table ordered by Visibility.'=>'Table ordered by Visibility.','Table ordered by URL.'=>'Table ordered by URL.','Table ordered by Name.'=>'Table ordered by Name.','Current Server time'=>'Current Server time','Current UTC time'=>'Current UTC time','Current time'=>'Current time','Ordered by Comment Date, descending.'=>'Ordered by Comment Date, descending.','Table ordered by Post Replied To.'=>'Table ordered by Post Replied To.','Table ordered by Comment Author.'=>'Table ordered by Comment Author.','Attempting to restore the previous version.'=>'Attempting to restore the previous version.','More details.'=>'More details.','Find your team →'=>'Find your team →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.','Shape the future of the web with WordPress'=>'Shape the future of the web with WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribute to the code, improve the UX, and test the WordPress app.','Write and submit patches to fix bugs or help build new features.'=>'Write and submit patches to fix bugs or help build new features.','Test new releases and proposed features for the Block Editor.'=>'Test new releases and proposed features for the Block Editor.','Find and report bugs in the WordPress core software.'=>'Find and report bugs in the WordPress core software.','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'If you do code, or want to learn how, you can contribute technically in numerous ways:','Code-based contribution'=>'Code-based contribution','Explore ways to reduce the environmental impact of websites.'=>'Explore ways to reduce the environmental impact of websites.','Edit videos and add captions to WordPress.tv.'=>'Edit videos and add captions to WordPress.tv.','Lend your creative imagination to the WordPress UI design.'=>'Lend your creative imagination to the WordPress UI design.','Organize or participate in local Meetups and WordCamps.'=>'Organize or participate in local Meetups and WordCamps.','Curate submissions or take photos for the Photo Directory.'=>'Curate submissions or take photos for the Photo Directory.','Promote the WordPress project to your community.'=>'Promote the WordPress project to your community.','Create and improve WordPress educational materials.'=>'Create and improve WordPress educational materials.','Translate WordPress into your local language.'=>'Translate WordPress into your local language.','Write or improve documentation for WordPress.'=>'Write or improve documentation for WordPress.','Share your knowledge in the WordPress support forums.'=>'Share your knowledge in the WordPress support forums.','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:','No-code contribution'=>'No-code contribution','Grow your network and make friends.'=>'Grow your network and make friends.','Apply your skills or learn new ones.'=>'Apply your skills or learn new ones.','Be part of a global open source community.'=>'Be part of a global open source community.','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.','Be the future of WordPress'=>'Be the future of WordPress','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.','Support forums'=>'Support forums','Documentation on Widgets'=>'Documentation on Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'View takes you to a public author archive which lists all the posts published by the user.','Download file downloads the original media file to your device.'=>'Download file downloads the original media file to your device.','site editor title tagEditor'=>'Editor','Documentation on Auto-updates'=>'Documentation on Auto-updates','Documentation on date and time formatting.'=>'Documentation on date and time formatting.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.','RoboHash (Generated)'=>'RoboHash (Generated)','site editor menu itemEditor'=>'Editor','Allow trackbacks and pingbacks'=>'Allow trackbacks and pingbacks','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://wordpress.org/documentation/article/assign-custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/','%s expects a non-empty string.'=>'%s expects a non-empty string.','The destination directory already exists and could not be removed.'=>'The destination directory already exists and could not be removed.','The destination folder already exists.'=>'The destination folder already exists.','The source and destination are the same.'=>'The source and destination are the same.','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.','Download “%s”'=>'Download “%s”','The "%s" argument must be a non-empty string.'=>'The "%s" argument must be a non-empty string.','Documentation on Writing and Editing Posts'=>'Documentation on Writing and Editing Posts','Documentation on Keyboard Shortcuts'=>'Documentation on Keyboard Shortcuts','Documentation on Comment Spam'=>'Documentation on Comment Spam','Documentation on Customizer'=>'Documentation on Customiser','https://wordpress.org/download/'=>'https://en-gb.wordpress.org/download/','This is the final release of WordPress %s'=>'This is the final release of WordPress %s','Site Editor'=>'Site Editor','Send password reset sends the user an email with a link to set a new password.'=>'Send password reset sends the user an email with a link to set a new password.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copy URL copies the URL for the media file to your clipboard.','View will take you to a public display page for that file.'=>'View will take you to a public display page for that file.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:','themesBlock Themes'=>'Block Themes','Documentation on Block Themes'=>'Documentation on Block Themes','Block themes'=>'Block themes','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'With a block theme, you can place and edit blocks without affecting your content by customising or creating new templates.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customise all parts of your site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Recommended items are considered beneficial to your site, although not as important to prioritise as a critical issue, they may include improvements to things such as; Performance, user experience, and more.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritised.','Configuration rules for %s:'=>'Configuration rules for %s:','Customize permalink structure by selecting available tags'=>'Customise permalink structure by selecting available tags','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.','%s removed from permalink structure'=>'%s removed from permalink structure','Site Health %s'=>'Site Health %s','Theme Styles & Block Settings'=>'Theme Styles & Block Settings','The minimum recommended version of PHP is %s.'=>'The minimum recommended version of PHP is %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.','Persistent object cache'=>'Persistent object cache','Page cache'=>'Page cache','You should use a persistent object cache'=>'You should use a persistent object cache','Your host appears to support the following object caching services: %s.'=>'Your host appears to support the following object caching services: %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Your hosting provider can tell you if a persistent object cache can be enabled on your site.','A persistent object cache is not required'=>'A persistent object cache is not required','Learn more about persistent object caching.'=>'Learn more about persistent object caching.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.','A persistent object cache is being used'=>'A persistent object cache is being used','A page cache plugin was not detected.'=>'A page cache plugin was not detected.','A page cache plugin was detected.'=>'A page cache plugin was detected.','There was %d client caching response header detected:'=>'There was %d client caching response header detected:' . "\0" . 'There were %d client caching response headers detected:','No client caching response headers were detected.'=>'No client caching response headers were detected.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.','Server response time could not be determined. Verify that loopback requests are working.'=>'Server response time could not be determined. Verify that loopback requests are working.','Page cache is detected but the server response time is still slow'=>'Page cache is detected but the server response time is still slow','Page cache is not detected and the server response time is slow'=>'Page cache is not detected and the server response time is slow','Page cache is detected and the server response time is good'=>'Page cache is detected and the server response time is good','Page cache is not detected but the server response time is OK'=>'Page cache is not detected but the server response time is OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)','Unable to detect the presence of page cache'=>'Unable to detect the presence of page cache','Learn more about page cache'=>'Learn more about page cache','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.','When testing the REST API, an unexpected result was returned:'=>'When testing the REST API, an unexpected result was returned:','REST API Response: (%1$s) %2$s'=>'REST API Response: (%1$s) %2$s','REST API Endpoint: %s'=>'REST API Endpoint: %s','When testing the REST API, an error was encountered:'=>'When testing the REST API, an error was encountered:','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.','Requirements'=>'Requirements','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.','Your site does not have any installed themes.'=>'Your site does not have any installed themes.','Your site does not have any active plugins.'=>'Your site does not have any active plugins.','Another attempt will be made with the next release.'=>'Another attempt will be made with the next release.','The %1$s constant is defined as %2$s'=>'The %1$s constant is defined as %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'The %1$s argument must be a non-empty string for %2$s.','The %s argument must be an array.'=>'The %s argument must be an array.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (from version %2$s to %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Reach out to WordPress Core developers to ensure you\'ll never have this problem again.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://make.wordpress.org/core/wordpress-%s-field-guide/','Learn more about WordPress %s'=>'Learn more about WordPress %s','Please type your comment text.'=>'Please type your comment text.','You cannot remove users.'=>'You cannot remove users.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Application passwords grant access to the %2$s site on the network as you have Super Admin rights.' . "\0" . 'Application passwords grant access to all %2$s sites on the network as you have Super Admin rights.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress has been updated! Next and final step is to update your database to the newest version.','Documentation on Managing Themes'=>'Documentation on Managing Themes','This information is being used to create a %s file.'=>'This information is being used to create a %s file.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Welcome to WordPress. Before getting started, you will need to know the following items.','Settings save failed.'=>'Settings save failed.','After your Privacy Policy page is set, you should edit it.'=>'After your Privacy Policy page is set, you should edit it.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.','Change Permalink Structure'=>'Change Permalink Structure','Howdy, + +A site administrator (###USERNAME###) recently requested to have the +administration email address changed on this site: +###SITEURL### + +To confirm this change, please click on the following link: +###ADMIN_URL### + +You can safely ignore and delete this email if you do not want to +take this action. + +This email has been sent to ###EMAIL### + +Regards, +All at ###SITENAME### +###SITEURL###'=>'Hi, + +A site administrator (###USERNAME###) recently requested to have the +administration email address changed on this site: +###SITEURL### + +To confirm this change, please click on the following link: +###ADMIN_URL### + +You can safely ignore and delete this email if you do not want to +take this action. + +This email has been sent to ###EMAIL### + +Regards, +All at ###SITENAME### +###SITEURL###','Where your data is sent'=>'Where your data is sent','Copy “%s” URL to clipboard'=>'Copy “%s” URL to clipboard','Some data that describes the error your site encountered has been put together.'=>'Some data that describes the error your site encountered has been put together.','An attempt was made, but your site could not be updated automatically.'=>'An attempt was made, but your site could not be updated automatically.','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.','Media — A list of URLs for media files the user uploads.'=>'Media — A list of URLs for media files the user uploads.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organisation uses.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy, or transfer personal data easily from one IT environment to another.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Comments — WordPress does not delete comments. The software does anonymise (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymises it. That data can include:','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organisation uses gets deleted.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Privacy Laws around the world require businesses and online services to delete, anonymise, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".','This screen is where you manage requests to erase personal data.'=>'This screen is where you manage requests to erase personal data.','This post is being backed up in your browser, just in case.'=>'This post is being backed up in your browser, just in case.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'This will grant access to the %2$s site on the network as you have Super Admin rights.' . "\0" . 'This will grant access to all %2$s sites on the network as you have Super Admin rights.','Learn about block themes'=>'Learn about block themes','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.','Discover a new way to build your site.'=>'Discover a new way to build your site.','Edit styles'=>'Edit styles','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Tweak your site, or give it a whole new look! Get creative – how about a new colour palette or font?','Switch up your site’s look & feel with Styles'=>'Switch up your site’s look & feel with Styles','Open the Customizer'=>'Open the Customiser','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configure your site’s logo, header, menus, and more in the Customiser.','Start Customizing'=>'Start customising','Open site editor'=>'Open site editor','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Design everything on your site – from the header down to the footer, all using blocks and patterns.','Customize your entire site with block themes'=>'Customise your entire site with block themes','Add a new page'=>'Add a new page','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.','Author rich content with blocks and patterns'=>'Author rich content with blocks and patterns','Learn more about the %s version.'=>'Learn more about the %s version.','WordPress is free and open source software'=>'WordPress is free and open-source software','Plugin File Editor'=>'Plugin file editor','Theme File Editor'=>'Theme file editor','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'If this is a development website, you can set the environment type accordingly to enable application passwords.','The application password feature requires HTTPS, which is not enabled on this site.'=>'The application password feature requires HTTPS, which is not enabled on this site.','g:i a T'=>'H:i T','Documentation on Editing Themes'=>'Documentation on Editing Themes','Documentation on Site Health tool'=>'Documentation on Site Health tool','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'In the status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.','Documentation on Privacy Settings'=>'Documentation on Privacy Settings','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'The privacy screen lets you either build a new privacy policy page or choose one you already have to show.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Individual posts may override these settings. Changes here will only be applied to new posts.','Menu item moved to the top'=>'Menu item moved to the top','Menu item removed'=>'Menu item removed','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'The dashboard is the first place you will come to, every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.','Welcome to your WordPress Dashboard!'=>'Welcome to your WordPress dashboard!','The application ID must be a UUID.'=>'The application ID must be a UUID.','Select location'=>'Select location','Visit plugin site for %s'=>'Visit plugin site for %s','pluginCannot Activate'=>'Cannot activate','Max connections number'=>'Maximum connections number','Max allowed packet size'=>'Maximum allowed packet size','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Your website appears to use basic authentication, which is not currently compatible with application passwords.','%1$s “%2$s”'=>'%1$s “%2$s”','Template Editing'=>'Template Editing','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress comes with some awesome, worldview-changing rights courtesy of its licence, the GPL.','Want to see your name in lights on this page?'=>'Want to see your name in lights on this page?','Get involved in WordPress.'=>'Get involved in WordPress.','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress is created by a worldwide team of passionate individuals.','%s plugin deactivated during WordPress upgrade.'=>'%s plugin deactivated during WordPress upgrade.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.','The Four Freedoms'=>'The Four Freedoms','themeDelete %s'=>'Delete %s','themeLive Preview %s'=>'Live Preview %s','themeCustomize %s'=>'Customise %s','themeView Theme Details for %s'=>'View theme details for %s','Toggle extra menu items'=>'Toggle extra menu items','Site Health - %s'=>'Site health – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'You need to make the file %1$s writable before you can save your changes. See Changing file permissions for more information.','Rewrite rules:'=>'Rewrite rules:','List of menu items selected for deletion:'=>'List of menu items selected for deletion:','Remove Selected Items'=>'Remove selected items','Bulk Select'=>'Bulk select','Deleted menu item: %s.'=>'Deleted menu item: %s.','item %s'=>'item %s','Themes %s'=>'Themes %s','Unable to encode the personal data for export. Error: %s'=>'Unable to encode the personal data for export. Error: %s','The %s post meta must be an array.'=>'The %s post meta must be an array.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.','Learn how to browse happy'=>'Learn how to browse happy','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.','GD supported file formats'=>'GD supported file formats','Unable to determine'=>'Unable to determine','ImageMagick supported file formats'=>'ImageMagick-supported file formats','Imagick version'=>'Imagick version','themeUploaded'=>'Uploaded','pluginReplace current with uploaded'=>'Replace current with uploaded','pluginUploaded'=>'Uploaded','pluginCurrent'=>'Current','Please activate the Link Manager plugin to use the link manager.'=>'Please activate the Link Manager plugin to use the link manager.','Create a new Privacy Policy page'=>'Create a new Privacy Policy page','Send personal data export confirmation email.'=>'Send personal data export confirmation email.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.','Documentation on Export Personal Data'=>'Documentation on Export Personal Data','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'If you are not sure, check the plugin documentation, or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.','This screen is where you manage requests for an export of personal data.'=>'This screen is where you manage requests for an export of personal data.','Site URLs could not be switched to HTTPS.'=>'Site URLs could not be switched to HTTPS.','Site URLs switched to HTTPS.'=>'Site URLs switched to HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'It looks like HTTPS is not supported for your website, at this point.','Sorry, you are not allowed to update this site to HTTPS.'=>'Sorry, you are not allowed to update this site to HTTPS.','Password reset links sent to %s user.'=>'Password reset links sent to %s user.' . "\0" . 'Password reset links sent to %s users.','Password reset link sent.'=>'Password reset link sent.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Send %s a link to reset their password. This will not change their password, nor will it force a change.','Send Reset Link'=>'Send Reset Link','Policies'=>'Policies','The Privacy Settings require JavaScript.'=>'The Privacy Settings require JavaScript.','Privacy SettingsPolicy Guide'=>'Policy Guide','Privacy SettingsSettings'=>'Settings','Re-install version %s'=>'Re-install version %s','Update to latest %s nightly'=>'Update to latest %s nightly','Send personal data erasure confirmation email.'=>'Send personal data erasure confirmation email.','Confirmation email'=>'Confirmation email','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'This tool helps site owners comply with local laws and regulations by deleting or anonymising known data for a given user.','Documentation on Erase Personal Data'=>'Documentation on Erase Personal Data','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.','Plugin Data'=>'Plugin Data','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.','Media — A list of URLs for all media file uploads made by the user.'=>'Media – a list of URLs for all media file uploads made by the user.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Session Tokens – user login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Community Events Location – the IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Profile Information – user email address, username, display name, nickname, first name, last name, description/bio, and registration date.','Default Data'=>'Default Data','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'The tool associates data stored in WordPress with a supplied email address, including profile data and comments.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Want more events? Help organise the next one!','A password reset link was emailed to %s.'=>'A password reset link was emailed to %s.','Cannot send password reset, permission denied.'=>'Cannot send password reset, permission denied.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.','Talk to your web host about supporting HTTPS for your website.'=>'Talk to your web host about supporting HTTPS for your website.','Update your site to use HTTPS'=>'Update your site to use HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.','HTTPS is already supported for your website.'=>'HTTPS is already supported for your website.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Your WordPress Address and Site Address are not set up to use HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.','Your Site Address is not set up to use HTTPS.'=>'Your Site Address is not set up to use HTTPS.','Learn more about debugging in WordPress.'=>'Learn more about debugging in WordPress.','Added'=>'Added','Send password reset'=>'Send password reset','Contact information'=>'Contact information','Copy suggested policy text to clipboard'=>'Copy suggested policy text to clipboard','Directory listing failed.'=>'Directory listing failed.','Search Results'=>'Search Results','Invalid request ID when processing personal data to erase.'=>'Invalid request ID when processing personal data to erase.','Invalid request ID when merging personal data to export.'=>'Invalid request ID when merging personal data to export.','Unable to archive the personal data export file (HTML format).'=>'Unable to archive the personal data export file (HTML format).','Unable to archive the personal data export file (JSON format).'=>'Unable to archive the personal data export file (JSON format).','Unable to open personal data export (HTML report) for writing.'=>'Unable to open personal data export (HTML report) for writing.','Unable to create personal data export folder.'=>'Unable to create personal data export folder.','Request added successfully.'=>'Request added successfully.','Invalid personal data action.'=>'Invalid personal data action.','Unable to initiate confirmation for personal data request.'=>'Unable to initiate confirmation for personal data request.','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Your site is running on an outdated version of PHP (%s), which should be updated.','PHP Update Recommended'=>'PHP Update Recommended','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'This site appears to be under version control. Automatic updates are disabled.','You are using a development version of WordPress.'=>'You are using a development version of WordPress.','You can update to the latest nightly build manually:'=>'You can update to the latest nightly build manually:','Enable automatic updates for all new versions of WordPress.'=>'Enable automatic updates for all new versions of WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Switch to automatic updates for maintenance and security releases only.','Current version: %s'=>'Current version: %s','This site will not receive automatic updates for new versions of WordPress.'=>'This site will not receive automatic updates for new versions of WordPress.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'This site is automatically kept up to date with maintenance and security releases of WordPress only.','This site is automatically kept up to date with each new version of WordPress.'=>'This site is automatically kept up to date with each new version of WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'WordPress will only receive automatic security and maintenance releases from now on.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Automatic updates for all WordPress versions have been enabled. Thank you!','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Site Health Status – Informs you of any potential issues that should be addressed to improve the performance or security of your website.','Your new password for %s is:'=>'Your new password for %s is:','Add Application Password'=>'Add Application Password','Required to create an Application Password, but not to update the user.'=>'Required to create an Application Password, but not to update the user.','Go to Updates'=>'Go to Updates','← Go to Users'=>'← Go to Users','← Go to editor'=>'← Go to editor','Go to Plugin Installer'=>'Go to Plugin Installer','Go to Importers'=>'Go to Importers','Go to Theme Installer'=>'Go to Theme Installer','Go to top'=>'Go to top','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'You will be returned to the WordPress Dashboard, and no changes will be made.','No, I do not approve of this connection'=>'No, I do not approve of this connection','You will be given a password to manually enter into the application in question.'=>'You will be given a password to manually enter into the application in question.','You will be sent to %s'=>'You will be sent to %s','Yes, I approve of this connection'=>'Yes, I approve of this connection','This will grant access to the %2$s site in this installation that you have permissions on.'=>'This will grant access to the %2$s site in this installation on which you have permissions.' . "\0" . 'This will grant access to all %2$s sites in this installation on which you have permissions.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Would you like to give this application access to your account? You should only do this if you trust the application in question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.','An application would like to connect to your account.'=>'An application would like to connect to your account.','Cannot Authorize Application'=>'Cannot Authorise Application','The Authorize Application request is not allowed.'=>'The Authorise Application request is not allowed.','Authorize Application'=>'Authorise Application','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Be sure to save this in a safe location. You will not be able to retrieve it.','New Application Password Name'=>'New Application Password Name','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Application passwords grant access to the %2$s site in this installation on which you have permissions.' . "\0" . 'Application passwords grant access to all %2$s sites in this installation on which you have permissions.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.','Application Passwords'=>'Application Passwords','Type the new password again.'=>'Type the new password again.','Set New Password'=>'Set New Password','Type the password again.'=>'Type the password again.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'You can update from WordPress %1$s to WordPress %3$s manually:','Revoke all application passwords'=>'Revoke all application passwords','Revoke "%s"'=>'Revoke "%s"','Revoke'=>'Revoke','Last IP'=>'Last IP','Last Used'=>'Last Used','The Site Health check for %1$s has been replaced with %2$s.'=>'The Site Health check for %1$s has been replaced with %2$s.','Erase personal data'=>'Erase personal data','- %1$s (from version %2$s to %3$s)'=>'– %1$s (from version %2$s to %3$s)','Current Header Video'=>'Current Header Video','Authorization header'=>'Authorisation header','Learn how to configure the Authorization header.'=>'Learn how to configure the Authorisation header.','Flush permalinks'=>'Flush permalinks','The authorization header is invalid'=>'The authorisation header is invalid','The authorization header is missing'=>'The authorisation header is missing','The Authorization header is working as expected'=>'The authorisation header is working as expected','Some screen elements can be shown or hidden by using the checkboxes.'=>'Some screen elements can be shown or hidden by using the checkboxes.','Screen elements'=>'Screen elements','The URL must be served over a secure connection.'=>'The URL must be served over a secure connection.','If you request a password reset, your IP address will be included in the reset email.'=>'If you request a password reset, your IP address will be included in the reset email.','No plugins found for: %s.'=>'No plugins found for: %s.','Complete request'=>'Complete request','Mark export request for “%s” as completed.'=>'Mark export request for “%s” as completed.','%d request deleted successfully.'=>'%d request deleted successfully.' . "\0" . '%d requests deleted successfully.','%d request failed to delete.'=>'%d request failed to delete.' . "\0" . '%d requests failed to delete.','%d request marked as complete.'=>'%d request marked as complete.' . "\0" . '%d requests marked as complete.','%d confirmation request re-sent successfully.'=>'%d confirmation request resent successfully.' . "\0" . '%d confirmation requests resent successfully.','%d confirmation request failed to resend.'=>'%d confirmation request failed to resend.' . "\0" . '%d confirmation requests failed to resend.','Mark requests as completed'=>'Mark requests as completed','Next steps'=>'Next steps','Unable to open personal data export file (archive) for writing.'=>'Unable to open personal data export file (archive) for writing.','Unable to open personal data export file (JSON report) for writing.'=>'Unable to open personal data export file (JSON report) for writing.','Unable to protect personal data export folder from browsing.'=>'Unable to protect personal data export folder from browsing.','Invalid email address when generating personal data export file.'=>'Invalid email address when generating personal data export file.','Invalid request ID when generating personal data export file.'=>'Invalid request ID when generating personal data export file.','Unable to generate personal data export file. ZipArchive not available.'=>'Unable to generate personal data export file. ZipArchive not available.','Search results for: %s'=>'Search results for: %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.','The "%1$s" value is smaller than "%2$s"'=>'The "%1$s" value is smaller than "%2$s"','Environment type'=>'Environment type','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Auto-updates are only available for plugins recognised by WordPress.org, or that include a compatible update system.','Update Incompatible'=>'Update Incompatible','This update does not work with your version of WordPress.'=>'This update does not work with your version of WordPress.','This update does not work with your versions of WordPress and PHP.'=>'This update does not work with your versions of WordPress and PHP.','Disallowed Comment Keys'=>'Disallowed Comment Keys','Plugin and theme auto-updates'=>'Plugin and theme auto-updates','There appear to be no issues with plugin and theme auto-updates.'=>'There appear to be no issues with plugin and theme auto-updates.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.','Your site may have problems auto-updating plugins and themes'=>'Your site may have problems auto-updating plugins and themes','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Plugin and theme auto-updates ensure that the latest versions are always installed.','Plugin and theme auto-updates appear to be configured correctly'=>'Plugin and theme auto-updates appear to be configured correctly','themeActivate “%s”'=>'Activate “%s”','Sorry, you are not allowed to modify plugins.'=>'Sorry, you are not allowed to modify plugins.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s is set to %2$s. You won\'t be able to upload files on your site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'The %s function has been disabled, some media settings are unavailable because of this.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'The %1$s directive in %2$s determines if uploading files is allowed on your site.','Files can be uploaded'=>'Files can be uploaded','Max effective file size'=>'Maximum effective file size','Max size of an uploaded file'=>'Maximum size of an uploaded file','Max size of post data allowed'=>'Maximum size of post data allowed','File uploads'=>'File uploads','File upload settings'=>'File upload settings','themeCannot Install %s'=>'Cannot Install %s','pluginInstall %s'=>'Install %s','themeInstall %s'=>'Install %s','themeUpdate %s now'=>'Update %s now','- %1$s version %2$s'=>'– %1$s version %2$s','themeActivated'=>'Activated','Sorry, you are not allowed to enable themes automatic updates.'=>'Sorry, you are not allowed to enable themes automatic updates.','This plugin is already installed.'=>'This plugin is already installed.','pluginUpdate %s now'=>'Update %s now','pluginInstall %s now'=>'Install %s now','Dismiss this notice.'=>'Dismiss this notice.','themeCannot Activate %s'=>'Cannot Activate %s','Theme will no longer be auto-updated.'=>'Theme will no longer be auto-updated.','Theme will be auto-updated.'=>'Theme will be auto-updated.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system.','Sorry, you are not allowed to disable themes automatic updates.'=>'Sorry, you are not allowed to disable themes automatic updates.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Sorry, you are not allowed to manage plugins automatic updates.','Error in deleting the item.'=>'Error in deleting the item.','Error in restoring the item from Trash.'=>'Error in restoring the item from Bin.','Error in moving the item to Trash.'=>'Error in moving the item to Bin.','Selected plugins will no longer be auto-updated.'=>'Selected plugins will no longer be auto-updated.','Selected plugins will be auto-updated.'=>'Selected plugins will be auto-updated.','Plugin will no longer be auto-updated.'=>'Plugin will no longer be auto-updated.','Plugin will be auto-updated.'=>'Plugin will be auto-updated.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system.','Please connect to your network admin to manage plugins automatic updates.'=>'Please connect to your network admin to manage plugins automatic updates.','The admin email verification page will reappear after %s.'=>'The admin email verification page will reappear after %s.','Auto-updates'=>'Auto-updates','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Please note: third-party themes and plugins, or custom code, may override WordPress scheduling.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important: before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.','themeCannot Activate'=>'Cannot Activate','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'You cannot edit this comment because the associated post is in the Bin. Please restore the post first, then try again.','media itemSuccess'=>'Success','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Error: current WordPress version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Error: current PHP version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Error: current versions of WordPress (%1$s) and PHP (%2$s) do not meet the minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.','Invalid data. The item does not exist.'=>'Invalid data. The item does not exist.','Invalid data. Unknown type.'=>'Invalid data. Unknown type.','Invalid data. Unknown state.'=>'Invalid data. Unknown state.','Invalid data. No selected item.'=>'Invalid data. No selected item.','You cannot reply to a comment on a draft post.'=>'You cannot reply to a comment on a draft post.','To manage themes on your site, visit the Themes page: %s'=>'To manage themes on your site, visit the Themes page: %s','To manage plugins on your site, visit the Plugins page: %s'=>'To manage plugins on your site, visit the Plugins page: %s','These themes are now up to date:'=>'These themes are now up to date:','These plugins are now up to date:'=>'These plugins are now up to date:','These themes failed to update:'=>'These themes failed to update:','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Please check your site now. It’s possible that everything is working. If there are updates available, you should update.','Howdy! Themes failed to update on your site at %s.'=>'Hi! Themes failed to update on your site at %s.','[%s] Some themes have failed to update'=>'[%s] Some themes have failed to update','Howdy! Plugins failed to update on your site at %s.'=>'Hi! Plugins failed to update on your site at %s.','[%s] Some plugins have failed to update'=>'[%s] Some plugins have failed to update','Howdy! Plugins and themes failed to update on your site at %s.'=>'Hi! Plugins and themes failed to update on your site at %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Some plugins and themes have failed to update','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some themes were automatically updated'=>'[%s] Some themes were automatically updated','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some plugins were automatically updated'=>'[%s] Some plugins were automatically updated','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some plugins and themes have automatically updated'=>'[%s] Some plugins and themes have automatically updated','Move %s box down'=>'Move %s box down','Move %s box up'=>'Move %s box up','commentNot spam'=>'Not spam','PHP Sessions'=>'PHP Sessions','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.','An active PHP session was detected'=>'An active PHP session was detected','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.','No PHP sessions detected'=>'No PHP sessions detected','Extended view'=>'Extended view','Compact view'=>'Compact view','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Error: Passwords do not match. Please enter the same password in both password fields.','post action/button labelSchedule'=>'Schedule','No plugins found. Try a different search.'=>'No plugins found. Try a different search.','Automatic update scheduled in %s.'=>'Automatic update scheduled in %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'Automatic update overdue by %s. There may be a problem with WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Automatic update not scheduled. There may be a problem with WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'You are updating a plugin. Be sure to back up your database and files first.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Your WordPress version is %1$s, however the uploaded plugin requires %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.','The plugin cannot be updated due to the following:'=>'The plugin cannot be updated due to the following:','Plugin name'=>'Plugin name','Theme downgraded successfully.'=>'Theme downgraded successfully.','Theme downgrade failed.'=>'Theme downgrade failed.','Downgrading the theme…'=>'Downgrading the theme…','Updating the theme…'=>'Updating the theme…','The active theme has the following error: "%s".'=>'The active theme has the following error: "%s".','Enable auto-updates'=>'Enable auto-updates','Disable auto-updates'=>'Disable auto-updates','Disable Auto-updates'=>'Disable Auto-updates','Enable Auto-updates'=>'Enable Auto-updates','Auto-updates Disabled (%s)'=>'Auto-updates Disabled (%s)' . "\0" . 'Auto-updates Disabled (%s)','Auto-updates Enabled (%s)'=>'Auto-updates Enabled (%s)' . "\0" . 'Auto-updates Enabled (%s)','Automatic Updates'=>'Automatic Updates','No plugins are currently available.'=>'No plugins are currently available.','Restore original image'=>'Restore original image','The uploaded file has expired. Please go back and upload it again.'=>'The uploaded file has expired. Please go back and upload it again.','Cancel and go back'=>'Cancel and go back','themeReplace installed with uploaded'=>'Replace installed with uploaded','You are updating a theme. Be sure to back up your database and files first.'=>'You are updating a theme. Be sure to back up your database and files first.','You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Your WordPress version is %1$s, however the uploaded theme requires %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'The PHP version on your server is %1$s, however the uploaded theme requires %2$s.','The theme cannot be updated due to the following:'=>'The theme cannot be updated due to the following:','(not found)'=>'(not found)','Required PHP version'=>'Required PHP version','Required WordPress version'=>'Required WordPress version','Theme name'=>'Theme name','themeCannot Install'=>'Cannot Install','Block Editor Patterns'=>'Block Editor Patterns','Plugin downgraded successfully.'=>'Plugin downgraded successfully.','Plugin downgrade failed.'=>'Plugin downgrade failed.','Downgrading the plugin…'=>'Downgrading the plugin…','Updating the plugin…'=>'Updating the plugin…','Could not remove the current plugin.'=>'Could not remove the current plugin.','Removing the current plugin…'=>'Removing the current plugin…','Auto-update'=>'Auto-update','Auto-updates disabled'=>'Auto-updates disabled','Auto-updates enabled'=>'Auto-updates enabled','Are pretty permalinks supported?'=>'Are pretty permalinks supported?','PHP memory limit (only for admin screens)'=>'PHP memory limit (only for admin screens)','Is this site discouraging search engines?'=>'Is this site discouraging search engines?','Wide Blocks'=>'Wide Blocks','Block Editor Styles'=>'Block Editor Styles','Spam'=>'Spam','Unable to write to %s file.'=>'Unable to write to %s file.','Error: The %s options page is not in the allowed options list.'=>'Error: The %s options page is not in the allowed options list.','Error:'=>'Error:','You should update your %s file now.'=>'You should update your %s file now.','This localized version contains both the translation and various other localization fixes.'=>'This localised version contains both the translation and various other localisation fixes.','Take a look at the %1$d item on the Site Health screen.'=>'Take a look at the %1$d item on the Site Health screen.' . "\0" . 'Take a look at the %1$d items on the Site Health screen.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'Your site’s health is looking good, but there are still some things you can do to improve its performance and security.','Great job! Your site currently passes all site health checks.'=>'Great job! Your site currently passes all site health checks.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.','No information yet…'=>'No information yet…','The uploaded file exceeds the %1$s directive in %2$s.'=>'The uploaded file exceeds the %1$s directive in %2$s.','No comments found in Trash.'=>'No comments found in Bin.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.','A test is unavailable'=>'A test is unavailable','Error: %1$s (%2$s)'=>'Error: %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Your site is running on an older version of PHP (%s), which should be updated','Your site is running on an older version of PHP (%s)'=>'Your site is running on an older version of PHP (%s)','Your site is running a recommended version of PHP (%s)'=>'Your site is running a recommended version of PHP (%s)','No media files found in Trash.'=>'No media files found in Bin.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'Resend confirmation requests','Delete requests'=>'Delete requests','Table prefix'=>'Table prefix','PHP Default Timezone'=>'PHP Default Time Zone','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'PHP default time zone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.','PHP default timezone is invalid'=>'PHP default time zone is invalid','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'PHP default time zone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.','PHP default timezone is valid'=>'PHP default time zone is valid','The seventh parameter passed to %s should be numeric representing menu position.'=>'The seventh parameter passed to %s should be numeric representing menu position.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.','https://wordpress.org/about/stats/'=>'https://en-gb.wordpress.org/about/stats/','Documentation on Export'=>'Documentation on Export','Documentation on Installing Plugins'=>'Documentation on Installing Plugins','Documentation on Managing Pages'=>'Documentation on Managing Pages','Documentation on Managing Posts'=>'Documentation on Managing Posts','Documentation on Discussion Settings'=>'Documentation on Discussion Settings','Documentation on Adding New Themes'=>'Documentation on Adding New Themes','Documentation on Uploading Media Files'=>'Documentation on Uploading Media Files','Descriptions of Roles and Capabilities'=>'Descriptions of Roles and Capabilities','Documentation on Managing Users'=>'Documentation on Managing Users','Documentation on User Profiles'=>'Documentation on User Profiles','Documentation on Media Settings'=>'Documentation on Media Settings','Documentation on Import'=>'Documentation on Import','Documentation on Tools'=>'Documentation on Tools','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'This page allows direct access to your site settings. You can break things here. Please be cautious!','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format – Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of ten possible formats. Learn more about each post format.','Documentation on Editing Pages'=>'Documentation on Editing Pages','Documentation on Adding New Pages'=>'Documentation on Adding New Pages','Documentation on Media Library'=>'Documentation on Media Library','Revisions Management'=>'Revisions Management','Documentation on Edit Media'=>'Documentation on Edit Media','Documentation on Managing Plugins'=>'Documentation on Managing Plugins','Documentation on Dashboard'=>'Documentation on Dashboard','Documentation on Adding New Users'=>'Documentation on Adding New Users','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.','Results are still loading…'=>'Results are still loading…','Documentation on Using Permalinks'=>'Documentation on Using Permalinks','Documentation on Permalinks Settings'=>'Documentation on Permalinks Settings','Documentation on Updating WordPress'=>'Documentation on Updating WordPress','Documentation on Menus'=>'Documentation on Menus','Documentation on Writing Plugins'=>'Documentation on Writing Plugins','Documentation on Template Tags'=>'Documentation on Template Tags','Documentation on Using Themes'=>'Documentation on Using Themes','Documentation on Theme Development'=>'Documentation on Theme Development','Documentation on Comments'=>'Documentation on Comments','Universal time is %s.'=>'Universal time is %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choose either a city in the same time zone as you or a %s (Coordinated Universal Time) time offset.','Administration Email Address'=>'Administration Email Address','Documentation on General Settings'=>'Documentation on General Settings','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'You need to make this file writable before you can save your changes. See Changing File Permissions for more information.','Upload failed. Please reload and try again.'=>'Upload failed. Please reload and try again.','Data erasure has failed.'=>'Data erasure has failed.','Erasure completed.'=>'Erasure completed.','The attached file cannot be found.'=>'The attached file cannot be found.','page labelPrivacy Policy Page'=>'Privacy Policy Page','page labelPosts Page'=>'Posts Page','page labelFront Page'=>'Front Page','post statusSticky'=>'Sticky','post statusCustomization Draft'=>'Customisation Draft','post statusPassword protected'=>'Password protected','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.','A scheduled event is late'=>'A scheduled event is late','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.','Your version of WordPress (%s) is up to date'=>'Your version of WordPress (%s) is up to date','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://wordpress.org/documentation/article/introduction-to-blogging/#comments','https://wordpress.org/documentation/article/block-themes/'=>'https://wordpress.org/documentation/article/block-themes/','Publish on: %s'=>'Publish on: %s','Schedule for: %s'=>'Schedule for: %s','Published on: %s'=>'Published on: %s','Scheduled for: %s'=>'Scheduled for: %s','publish box time formatH:i'=>'H:i','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are +dynamically generated, and should only be modified via WordPress filters. +Any changes to the directives between these markers will be overwritten.'=>'The directives (lines) between "BEGIN %1$s" and "END %1$s" are +dynamically generated, and should only be modified via WordPress filters. +Any changes to the directives between these markers will be overwritten.','All automatic updates are disabled.'=>'All automatic updates are disabled.','Database collation'=>'Database collation','Database charset'=>'Database charset','Inactive Themes'=>'Inactive Themes','Parent Theme'=>'Parent Theme','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.','personal data group descriptionOverview of export report.'=>'Overview of export report.','Documentation on Writing Settings'=>'Documentation on Writing Settings','Documentation on Tags'=>'Documentation on Tags','Documentation on Categories'=>'Documentation on Categories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Your theme determines how content is displayed in browsers. Learn more about feeds.','For each post in a feed, include'=>'For each post in a feed, include','Warning: these pages should not be the same as your Privacy Policy page!'=>'Warning: these pages should not be the same as your Privacy Policy page!','Documentation on Reading Settings'=>'Documentation on Reading Settings','[%s] Delete My Site'=>'[%s] Delete My Site','Allow people to submit comments on new posts'=>'Allow people to submit comments on new posts','Default post settings'=>'Default post settings','You can change your profile picture on Gravatar.'=>'You can change your profile picture on Gravatar.','Plugin resumed.'=>'Plugin resumed.','Selected plugins deactivated.'=>'Selected plugins deactivated.','Plugin deactivated.'=>'Plugin deactivated.','Selected plugins activated.'=>'Selected plugins activated.','Plugin activated.'=>'Plugin activated.','The selected plugins have been deleted.'=>'The selected plugins have been deleted.','The selected plugin has been deleted.'=>'The selected plugin has been deleted.','The plugin %1$s has been deactivated due to an error: %2$s'=>'The plugin %1$s has been deactivated due to an error: %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'If you need to tweak more than your theme’s CSS, you might want to try making a child theme.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'File does not exist! Please double check the name and try again.','%1$s needs to be a %2$s object.'=>'%1$s needs to be a %2$s object.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode','Site HealthInfo'=>'Info','Site HealthStatus'=>'Status','Themes directory location'=>'Themes directory location','comment statusClosed'=>'Closed','%s critical issue'=>'%s critical issue' . "\0" . '%s critical issues','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://wordpress.org/documentation/article/updating-wordpress/','Get help resolving this issue.'=>'Get help resolving this issue.','Learn more about what WordPress requires to run.'=>'Learn more about what WordPress requires to run.','https://wordpress.org/about/requirements/'=>'https://wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.','Manage your themes'=>'Manage your themes','Manage inactive plugins'=>'Manage inactive plugins','Update your plugins'=>'Update your plugins','Manage your plugins'=>'Manage your plugins','View Privacy Policy Guide.'=>'View Privacy Policy Guide.','User Language'=>'User Language','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.','[%s] Background Update Finished'=>'[%s] Background Update Finished','[%s] Background Update Failed'=>'[%s] Background Update Failed','Plugin could not be resumed because it triggered a fatal error.'=>'Plugin could not be resumed because it triggered a fatal error.','You should remove inactive themes'=>'You should remove inactive themes','Your site has 1 installed theme, and it is up to date.'=>'Your site has 1 installed theme, and it is up to date.','Your site has 1 active plugin, and it is up to date.'=>'Your site has 1 active plugin, and it is up to date.','Passed tests'=>'Passed tests','Sorry, you are not allowed to access site health information.'=>'Sorry, you are not allowed to access site health information.','Copy site info to clipboard'=>'Copy site info to clipboard','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.','The Site Health check requires JavaScript.'=>'The Site Health check requires JavaScript.','Site Health Info'=>'Site Health Info','This update does not work with your version of PHP.'=>'This update does not work with your version of PHP.','All formats'=>'All formats','Filter by post format'=>'Filter by post format','Go to the Plugins screen'=>'Go to the Plugins screen','The authenticity of %s could not be verified.'=>'The authenticity of %s could not be verified.','The authenticity of %s could not be verified as no signature was found.'=>'The authenticity of %s could not be verified as no signature was found.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'The authenticity of %s could not be verified as signature verification is unavailable on this system.','Eraser callback is not valid: %s.'=>'Eraser callback is not valid: %s.','Eraser does not include a callback: %s.'=>'Eraser does not include a callback: %s.','Sorry, you are not allowed to perform this action.'=>'Sorry, you are not allowed to perform this action.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'HTTP requests have been blocked by the %s constant, with no allowed hosts.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'You are using a %1$s drop-in which might mean that a %2$s database is not being used.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.','Performance'=>'Performance','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.' . "\0" . 'Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme.','You should consider removing any unused themes to enhance your site’s security.'=>'You should consider removing any unused themes to enhance your site’s security.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Your site has %1$d inactive theme, other than %2$s, your active theme.' . "\0" . 'Your site has %1$d inactive themes, other than %2$s, your active theme.','Your site has %d inactive theme.'=>'Your site has %d inactive theme.' . "\0" . 'Your site has %d inactive themes.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.','Your site has %d inactive plugin.'=>'Your site has %d inactive plugin.' . "\0" . 'Your site has %d inactive plugins.','Security'=>'Security','Erase personal data list'=>'Erase personal data list','Erase personal data list navigation'=>'Erase personal data list navigation','Filter erase personal data list'=>'Filter erase personal data list','Export personal data list'=>'Export personal data list','Export personal data list navigation'=>'Export personal data list navigation','Filter export personal data list'=>'Filter export personal data list','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'This plugin failed to load properly and is paused during recovery mode.','Go to the Themes screen'=>'Go to the Themes screen','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'Total size is not available. Some errors were encountered when determining the size of your installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.','These settings alter where and how parts of WordPress are loaded.'=>'These settings alter where and how parts of WordPress are loaded.','%s item with no issues detected'=>'%s item with no issues detected' . "\0" . '%s items with no issues detected','%s recommended improvement'=>'%s recommended improvement' . "\0" . '%s recommended improvements','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'The site health check shows information about your WordPress configuration and items that may need your attention.','Site Health Status'=>'Site Health Status','Everything is running smoothly here.'=>'Everything is running smoothly here.','Great job!'=>'Great job!','Secondary menu'=>'Secondary menu','The loopback request to your site completed successfully.'=>'The loopback request to your site completed successfully.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'The loopback request to your site failed, this means features relying on them are not currently working as expected.','No scheduled events exist on this site.'=>'No scheduled events exist on this site.','REST API availability'=>'REST API availability','Loopback request'=>'Loopback request','Debugging enabled'=>'Debugging enabled','HTTP Requests'=>'HTTP Requests','Scheduled events'=>'Scheduled events','Secure communication'=>'Secure communication','HTTPS status'=>'HTTPS status','PHP Extensions'=>'PHP Extensions','Database Server version'=>'Database Server version','PHP Version'=>'PHP Version','Theme Versions'=>'Theme Versions','Plugin Versions'=>'Plugin Versions','WordPress Version'=>'WordPress Version','The REST API did not process the %s query parameter correctly.'=>'The REST API did not process the %s query parameter correctly.','The REST API did not behave correctly'=>'The REST API did not behave correctly','The REST API encountered an unexpected result'=>'The REST API encountered an unexpected result','The REST API encountered an error'=>'The REST API encountered an error','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.','The REST API is available'=>'The REST API is available','HTTP requests are partially blocked'=>'HTTP requests are partially blocked','HTTP requests are blocked'=>'HTTP requests are blocked','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.','HTTP requests seem to be working as expected'=>'HTTP requests seem to be working as expected','Your site could not complete a loopback request'=>'Your site could not complete a loopback request','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.','Your site can perform loopback requests'=>'Your site can perform loopback requests','Background updates may not be working properly'=>'Background updates may not be working properly','Background updates are not working as expected'=>'Background updates are not working as expected','Passed'=>'Passed','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.','Background updates are working'=>'Background updates are working','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.','A scheduled event has failed'=>'A scheduled event has failed','While trying to test your site’s scheduled events, the following error was returned: %s'=>'While trying to test your site’s scheduled events, the following error was returned: %s','It was not possible to check your scheduled events'=>'It was not possible to check your scheduled events','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.','Scheduled events are running'=>'Scheduled events are running','Talk to your web host about OpenSSL support for PHP.'=>'Talk to your web host about OpenSSL support for PHP.','Your site is unable to communicate securely with other services'=>'Your site is unable to communicate securely with other services','Your site can communicate securely with other services'=>'Your site can communicate securely with other services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.','Learn more about why you should use HTTPS'=>'Learn more about why you should use HTTPS','Your website does not use HTTPS'=>'Your website does not use HTTPS','Your website is using an active HTTPS connection'=>'Your website is using an active HTTPS connection','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.','Your site is set to display errors to site visitors'=>'Your site is set to display errors to site visitors','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.','Your site is set to log errors to a potentially public file'=>'Your site is set to log errors to a potentially public file','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.','Your site is not set to output debug information'=>'Your site is not set to output debug information','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s','Could not reach WordPress.org'=>'Could not reach WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.','Can communicate with WordPress.org'=>'Can communicate with WordPress.org','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.','Severely outdated SQL server'=>'Severely outdated SQL server','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.','Outdated SQL server'=>'Outdated SQL server','SQL server is up to date'=>'SQL server is up to date','One or more required modules are missing'=>'One or more required modules are missing','One or more recommended modules are missing'=>'One or more recommended modules are missing','The optional module, %s, is not installed, or has been disabled.'=>'The optional module, %s, is not installed, or has been disabled.','The required module, %s, is not installed, or has been disabled.'=>'The required module, %s, is not installed, or has been disabled.','Error'=>'Error','Required and recommended modules are installed'=>'Required and recommended modules are installed','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.','Have a default theme available'=>'Have a default theme available','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.','You should remove inactive plugins'=>'You should remove inactive plugins','Your site has %d installed theme, and it is up to date.'=>'Your site has %d installed theme, and it is up to date.' . "\0" . 'Your site has %d installed themes, and they are all up to date.','Your site has %d theme waiting to be updated.'=>'Your site has %d theme waiting to be updated.' . "\0" . 'Your site has %d themes waiting to be updated.','You have themes waiting to be updated'=>'You have themes waiting to be updated','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.','Your themes are all up to date'=>'Your themes are all up to date','Your site has %d active plugin, and it is up to date.'=>'Your site has %d active plugin, and it is up to date.' . "\0" . 'Your site has %d active plugins, and they are all up to date.','Your site has %d plugin waiting to be updated.'=>'Your site has %d plugin waiting to be updated.' . "\0" . 'Your site has %d plugins waiting to be updated.','You have plugins waiting to be updated'=>'You have plugins waiting to be updated','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.','Your plugins are all up to date'=>'Your plugins are all up to date','You are currently running the latest version of WordPress available, keep it up!'=>'You are currently running the latest version of WordPress available, keep it up!','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'A new minor update is available for your site. Because minor updates often address security, it’s important to install them.','A new version of WordPress is available.'=>'A new version of WordPress is available.','Install the latest version of WordPress'=>'Install the latest version of WordPress','WordPress update available (%s)'=>'WordPress update available (%s)','Check for updates manually'=>'Check for updates manually','Unable to check if any new versions of WordPress are available.'=>'Unable to check if any new versions of WordPress are available.','WordPress security and maintenance releases are blocked by the %s filter.'=>'WordPress security and maintenance releases are blocked by the %s filter.','WordPress security and maintenance releases are blocked by %s.'=>'WordPress security and maintenance releases are blocked by %s.','WordPress development updates are blocked by the %s filter.'=>'WordPress development updates are blocked by the %s filter.','WordPress development updates are blocked by the %s constant.'=>'WordPress development updates are blocked by the %s constant.','All of your WordPress files are writable.'=>'All of your WordPress files are writable.','Some files are not writable by WordPress:'=>'Some files are not writable by WordPress:','This could mean that connections are failing to WordPress.org.'=>'This could mean that connections are failing to WordPress.org.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Couldn\'t retrieve a list of the checksums for WordPress %s.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Your installation of WordPress does not require FTP credentials to perform updates.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Your installation of WordPress prompts for FTP credentials to perform updates.','No version control systems were detected.'=>'No version control systems were detected.','The folder %1$s was detected as being under version control (%2$s).'=>'The folder %1$s was detected as being under version control (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.','A previous automatic background update could not occur.'=>'A previous automatic background update could not occur.','The error code was %s.'=>'The error code was %s.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.','You would have received an email because of this.'=>'You would have received an email because of this.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'A previous automatic background update ended with a critical failure, so updates are now disabled.','The %s filter is enabled.'=>'The %s filter is enabled.','A plugin has prevented updates by disabling %s.'=>'A plugin has prevented updates by disabling %s.','The must use plugins directory'=>'The must use plugins directory','Theme features'=>'Theme features','Parent theme'=>'Parent theme','Author website'=>'Author website','(Latest version: %s)'=>'(Latest version: %s)','Version %1$s by %2$s'=>'Version %1$s by %2$s','No version or author information is available.'=>'No version or author information is available.','Server version'=>'Server version','Your %s file contains only core WordPress features.'=>'Your %s file contains only core WordPress features.','Custom rules have been added to your %s file.'=>'Custom rules have been added to your %s file.','.htaccess rules'=>'.htaccess rules','Is the Imagick library available?'=>'Is the Imagick library available?','Is SUHOSIN installed?'=>'Is SUHOSIN installed?','cURL version'=>'cURL version','PHP post max size'=>'PHP post max size','Upload max filesize'=>'Upload max filesize','Max input time'=>'Max input time','PHP memory limit'=>'PHP memory limit','PHP time limit'=>'PHP time limit','PHP max input variables'=>'PHP max input variables','Unable to determine some settings, as the %s function has been disabled.'=>'Unable to determine some settings, as the %s function has been disabled.','Server settings'=>'Server settings','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(Does not support 64bit values)','(Supports 64bit values)'=>'(Supports 64bit values)','PHP version'=>'PHP version','Unable to determine what web server software is used'=>'Unable to determine what web server software is used','Web server'=>'Web server','Unable to determine server architecture'=>'Unable to determine server architecture','Server architecture'=>'Server architecture','Ghostscript version'=>'Ghostscript version','Unable to determine if Ghostscript is installed'=>'Unable to determine if Ghostscript is installed','GD version'=>'GD version','Imagick Resource Limits'=>'Imagick Resource Limits','ImageMagick version string'=>'ImageMagick version string','ImageMagick version number'=>'ImageMagick version number','Not available'=>'Not available','Active editor'=>'Active editor','Total installation size'=>'Total installation size','Database size'=>'Database size','WordPress directory size'=>'WordPress directory size','WordPress directory location'=>'WordPress directory location','Plugins directory size'=>'Plugins directory size','Plugins directory location'=>'Plugins directory location','Themes directory size'=>'Themes directory size','Theme directory location'=>'Theme directory location','Uploads directory size'=>'Uploads directory size','Uploads directory location'=>'Uploads directory location','Unable to reach WordPress.org at %1$s: %2$s'=>'Unable to reach WordPress.org at %1$s: %2$s','WordPress.org is reachable'=>'WordPress.org is reachable','Communication with WordPress.org'=>'Communication with WordPress.org','Network count'=>'Network count','Site count'=>'Site count','User count'=>'User count','The themes directory'=>'The themes directory','The plugins directory'=>'The plugins directory','The uploads directory'=>'The uploads directory','The wp-content directory'=>'The wp-content directory','Not writable'=>'Not writable','Writable'=>'Writable','The main WordPress directory'=>'The main WordPress directory','Shows whether WordPress is able to write to the directories it needs access to.'=>'Shows whether WordPress is able to write to the directories it needs access to.','Filesystem Permissions'=>'File system permissions','Undefined'=>'Undefined','WordPress Constants'=>'WordPress constants','Database'=>'Database','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.','Server'=>'Server','Media Handling'=>'Media Handling','Inactive Plugins'=>'Inactive Plugins','Active Plugins'=>'Active Plugins','Must Use Plugins'=>'Must Use Plugins','Active Theme'=>'Active theme','Drop-ins'=>'Drop-ins','Directories and Sizes'=>'Directories and Sizes','Is this a multisite?'=>'Is this a multisite?','Default comment status'=>'Default comment status','Can anyone register on this site?'=>'Can anyone register on this site?','Is this site using HTTPS?'=>'Is this site using HTTPS?','No permalink structure set'=>'No permalink structure set','Permalink structure'=>'Permalink structure','Site URL'=>'Site URL','Home URL'=>'Home URL','Site Health'=>'Site Health','requestsAll (%s)'=>'All (%s)' . "\0" . 'All (%d)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Show comments cookies opt in checkbox, allowing comment author cookies to be set','Next theme'=>'Next theme','Previous theme'=>'Previous theme','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.','Theme resumed.'=>'Theme resumed.','Theme could not be resumed because it triggered a fatal error.'=>'Theme could not be resumed because it triggered a fatal error.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'If you notice “ headers already sent ” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.','The plugin generated %d character of unexpected output during activation.'=>'The plugin generated %d character of unexpected output during activation.' . "\0" . 'The plugin generated %d characters of unexpected output during activation.','Sorry, you are not allowed to resume this plugin.'=>'Sorry, you are not allowed to resume this plugin.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.','Add menu items'=>'Add menu items','or create a new menu. Do not forget to save your changes!'=>'or create a new menu. Do not forget to save your changes!','Click the Save Menu button to save your changes.'=>'Click the Save Menu button to save your changes.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Edit your menu below, or create a new menu. Do not forget to save your changes!','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Fill in the Menu Name and click the Create Menu button to create your first menu.','Create your first menu below.'=>'Create your first menu below.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.','Learn more about updating PHP'=>'Learn more about updating PHP','What is PHP and how does it affect my site?'=>'What is PHP and how does it affect my site?','PHP Update Required'=>'PHP Update Required','You can find more details and make changes on the Plugins screen.'=>'You can find more details and make changes on the Plugins screen.','One or more plugins failed to load properly.'=>'One or more plugins failed to load properly.','Could not resume the plugin.'=>'Could not resume the plugin.','Custom PHP fatal error handler.'=>'Custom PHP fatal error handler.','Custom PHP error message.'=>'Custom PHP error message.','Could not remove the old translation.'=>'Could not remove the old translation.','Removing the old version of the translation…'=>'Removing the old version of the translation…','Click here to update WordPress.'=>'Click here to update WordPress.','Error: This plugin requires a newer version of WordPress.'=>'ERROR: this plugin requires a newer version of WordPress.','Click here to learn more about updating PHP.'=>'Click here to learn more about updating PHP.','Error: This plugin requires a newer version of PHP.'=>'ERROR: this plugin requires a newer version of PHP.','Add widget: %s'=>'Add widget: %s','Add to: %s'=>'Add to: %s','Track %s.'=>'Track %s.','My Network'=>'My Network','This plugin does not work with your version of PHP.'=>'This plugin does not work with your version of PHP.','This plugin does not work with your version of WordPress.'=>'This plugin does not work with your version of WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'This plugin does not work with your versions of WordPress and PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/documentation/wordpress-version/version-%s/','Resume'=>'Resume','pluginResume %s'=>'Resume %s','You can find more details and make changes on the Themes screen.'=>'You can find more details and make changes on the Themes screen.','One or more themes failed to load properly.'=>'One or more themes failed to load properly.','Could not resume the theme.'=>'Could not resume the theme.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.','A post type mismatch has been detected.'=>'A post type mismatch has been detected.','A post ID mismatch has been detected.'=>'A post ID mismatch has been detected.','Please open the classic editor to use this meta box.'=>'Please open the Classic Editor plugin to use this meta box.','Please activate the Classic Editor plugin to use this meta box.'=>'Please activate the Classic Editor plugin to use this meta box.','Please install the Classic Editor plugin to use this meta box.'=>'Please install the Classic Editor plugin to use this meta box.','This meta box is not compatible with the block editor.'=>'This meta box is not compatible with the block editor.','To distribute copies of your modified versions to others.'=>'To distribute copies of your modified versions to others.','The 4th Freedom'=>'The Fourth Freedom','To redistribute.'=>'To redistribute.','The 3rd Freedom'=>'The Third Freedom','To study how the program works and change it to make it do what you wish.'=>'To study how the program works and change it to make it do what you wish.','The 2nd Freedom'=>'The Second Freedom','To run the program for any purpose.'=>'To run the program for any purpose.','The 1st Freedom'=>'The First Freedom','Created'=>'Created','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.','...or something like this:'=>'...or something like this:','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:','Export “%s” as JSON'=>'Export “%s” as JSON','1 pattern not updated, somebody is editing it.'=>'1 pattern not updated, somebody is editing it.','%s pattern restored from the Trash.'=>'%s pattern restored from the Bin.' . "\0" . '%s patterns restored from the Bin.','Error: "Table Prefix" must not be empty.'=>'Error: "Table Prefix" must not be empty.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'This meta box, from the %s plugin, is not compatible with the block editor.','personal data group labelAbout'=>'About','page titleAbout'=>'About','Edit or preview your Privacy Policy page content.'=>'Edit or preview your Privacy Policy page content.','Privacy Policy Page'=>'Privacy Policy Page','%s (Draft)'=>'%s (Draft)','Privacy Policy page updated successfully.'=>'Privacy Policy page updated successfully.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'The suggested privacy policy text has changed. Please review the guide and update your privacy policy.','There are no pages.'=>'There are no pages.','Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Need help putting together your new Privacy Policy page? Check out the Privacy Policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.','Privacy Policy Guide'=>'Privacy Policy Guide','Visitor comments may be checked through an automated spam detection service.'=>'Visitor comments may be checked through an automated spam detection service.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.','Suggested text:'=>'Suggested text:','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'The template contains a suggestion of sections you will most likely need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.','Updated %s.'=>'Updated %s.','You deactivated this plugin on %s and may no longer need this policy.'=>'You deactivated this plugin on %s and may no longer need this policy.','Removed %s.'=>'Removed %s.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.','Erasing data...'=>'Erasing data...','Add Data Erasure Request'=>'Add Data Erasure Request','Send export link'=>'Send export link','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.','Industry regulatory disclosure requirements'=>'Industry regulatory disclosure requirements','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'If your website provides a service which includes automated decision making – for example, allowing customers to apply for credit, or aggregating their data into an advertising profile – you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.','What automated decision making and/or profiling we do with user data'=>'What automated decision making and/or profiling we do with user data','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third-party data.','What third parties we receive data from'=>'What third parties we receive data from','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'In this section, you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.','What data breach procedures we have in place'=>'What data breach procedures we have in place','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two-factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.','How we protect your data'=>'How we protect your data','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.','Additional information'=>'Additional information','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'In this section, you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third-party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'In this section, you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'In this section, you should explain what rights your users have over their data and how they can invoke those rights.','What rights you have over your data'=>'What rights you have over your data','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.','How long we retain your data'=>'How long we retain your data','By default WordPress does not share any personal data with anyone.'=>'By default WordPress does not share any personal data with anyone.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'In this section, you should name and list all third-party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.','Who we share your data with'=>'Who we share your data with','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'By default, WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.','Analytics'=>'Analytics','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.','Embedded content from other websites'=>'Embedded content from other websites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.','Contact forms'=>'Contact forms','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third-party embeds.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'You should also note any collection and retention of sensitive personal data, such as data concerning health.','What personal data we collect and why we collect it'=>'What personal data we collect and why we collect it','Our website address is: %s.'=>'Our website address is: %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'In this section, you should note your site URL, as well as the name of the company, organisation, or individual behind it, and some accurate contact information.','Who we are'=>'Who we are','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.','This text template will help you to create your website’s privacy policy.'=>'This text template will help you to create your website’s privacy policy.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.','Force erasure has failed.'=>'Force erasure has failed.','Email could not be sent.'=>'Email could not be sent.','date/timeOn'=>'On','website URLAt URL'=>'At URL','website nameFor site'=>'For site','email addressReport generated for'=>'Report generated for','Exporter array at index %s does not include a friendly name.'=>'Exporter array at index %s does not include a friendly name.','Sorry, you are not allowed to erase personal data on this site.'=>'Sorry, you are not allowed to erase personal data on this site.','Sorry, you are not allowed to export personal data on this site.'=>'Sorry, you are not allowed to export personal data on this site.','Eraser index is out of range.'=>'Eraser index is out of range.','Missing eraser index.'=>'Missing eraser index.','Expected done (boolean) in response array from exporter: %s.'=>'Expected done (boolean) in response array from exporter: %s.','Expected data array in response array from exporter: %s.'=>'Expected data array in response array from exporter: %s.','Expected data in response array from exporter: %s.'=>'Expected data in response array from exporter: %s.','Expected response as an array from exporter: %s.'=>'Expected response as an array from exporter: %s.','Exporter callback is not a valid callback: %s.'=>'Exporter callback is not a valid callback: %s.','Exporter does not include a callback: %s.'=>'Exporter does not include a callback: %s.','Expected an array describing the exporter at index %s.'=>'Expected an array describing the exporter at index %s.','Exporter index is out of range.'=>'Exporter index is out of range.','Exporter index cannot be negative.'=>'Exporter index cannot be negative.','An exporter has improperly used the registration filter.'=>'An exporter has improperly used the registration filter.','Missing page index.'=>'Missing page index.','Missing exporter index.'=>'Missing exporter index.','Invalid request type.'=>'Invalid request type.','Use This Page'=>'Use This Page','Select a Privacy Policy page'=>'Select a Privacy Policy page','Change your Privacy Policy page'=>'Change your Privacy Policy page','Edit or view your Privacy Policy page content.'=>'Edit or view your Privacy Policy page content.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.','The new page will include help and suggestions for your privacy policy.'=>'The new page will include help and suggestions for your privacy policy.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'If you already have a Privacy Policy page, please select it below. If not, please create one.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'The currently selected Privacy Policy page is in the Bin. Please create or select a new Privacy Policy page or restore the current page.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'The currently selected Privacy Policy page does not exist. Please create or select a new page.','Unable to create a Privacy Policy page.'=>'Unable to create a Privacy Policy page.','privacy-policy'=>'privacy-policy','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'Privacy Policy page setting updated successfully. Remember to update your menus!','Copy suggested policy text from %s.'=>'Copy suggested policy text from %s.','Howdy, + +Your request for an export of personal data has been completed. You may +download your personal data by clicking on the link below. For privacy +and security, we will automatically delete the file on ###EXPIRATION###, +so please download it before then. + +###LINK### + +Regards, +All at ###SITENAME### +###SITEURL###'=>'Hi, + +Your request for an export of personal data has been completed. You may +download your personal data by clicking on the link below. For privacy +and security, we will automatically delete the file on ###EXPIRATION###, +so please download it before then. + +###LINK### + +Regards, +All at ###SITENAME### +###SITEURL###','Email sent.'=>'Email sent.','Sending email...'=>'Sending email...','Download personal data again'=>'Download personal data again','Unable to send personal data export email.'=>'Unable to send personal data export email.','[%s] Personal Data Export'=>'[%s] Personal Data Export','Invalid request ID when sending personal data export email.'=>'Invalid request ID when sending personal data export email.','Personal Data Export'=>'Personal Data Export','Personal Data Export for %s'=>'Personal Data Export for %s','A valid email address must be given.'=>'A valid email address must be given.','Force erase personal data'=>'Force erase personal data','Remove request'=>'Remove request','Waiting for confirmation'=>'Waiting for confirmation','Retry'=>'Retry','Downloading data...'=>'Downloading data...','Download personal data'=>'Download personal data','Requested'=>'Requested','Requester'=>'Requester','Send Request'=>'Send request','Username or email address'=>'Username or email address','Add Data Export Request'=>'Add Data Export Request','Confirmation request initiated successfully.'=>'Confirmation request initiated successfully.','Unable to add this request. A valid email address or username must be supplied.'=>'Unable to add this request. A valid email address or username must be supplied.','Confirmation request sent again successfully.'=>'Confirmation request sent again successfully.','Unable to initiate confirmation request.'=>'Unable to initiate confirmation request.','Invalid request ID.'=>'Invalid request ID.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Expected done flag in response array from %1$s eraser (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Expected messages key to reference an array in response array from %1$s eraser (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Expected messages key in response array from %1$s eraser (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Expected items_retained key in response array from %1$s eraser (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Expected items_removed key in response array from %1$s eraser (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Did not receive array from %1$s eraser (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Eraser array at index %d does not include a friendly name.','Expected an array describing the eraser at index %d.'=>'Expected an array describing the eraser at index %d.','Page index cannot be less than one.'=>'Page index cannot be less than one.','Eraser index cannot be less than one.'=>'Eraser index cannot be less than one.','Invalid email address in request.'=>'Invalid email address in request.','Requires PHP Version:'=>'Requires PHP:','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.','Did you know?'=>'Did you know?','Noteworthy Contributors'=>'Noteworthy Contributors','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended, as it may introduce incompatibilities that break your site and your changes may be lost in future updates.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress is not notifying any Update Services because of your site’s visibility settings.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Enter the same address here unless you want your site home page to be different from your WordPress installation directory.','https://wordpress.org/about/license/'=>'https://en-gb.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.','Uploaded on: %s'=>'Uploaded on: %s','Downloading installation package from %s…'=>'Downloading installation package from %s…','Downloading translation from %s…'=>'Downloading translation from %s…','Downloading update from %s…'=>'Downloading update from %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.','Customization Draft'=>'Customisation Draft','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'This draft comes from your unpublished customisation changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.','Theme Files'=>'Theme Files','folder'=>'folder','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.','Installation Required'=>'Installation Required','Could not fully remove the plugin %s.'=>'Could not fully remove the plugin %s.','User has been created, but could not be added to this site.'=>'User has been created, but could not be added to this site.','That user could not be added to this site.'=>'That user could not be added to this site.','Disable syntax highlighting when editing code'=>'Disable syntax highlighting when editing code','Syntax Highlighting'=>'Syntax Highlighting','Run the installation'=>'Run the installation','https://wordpress.org/about/privacy/'=>'https://en-gb.wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This is not available. Please contact your site administrator.','Press This is not installed. Please install Press This from the main site.'=>'Press This is not installed. Please install Press This from the main site.','Activate Press This'=>'Activate Press This','I understand'=>'I understand','Heads up!'=>'Heads up!','Warning: Making changes to active plugins is not recommended.'=>'Warning: Making changes to active plugins is not recommended.','Selected file content:'=>'Selected file content:','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'There was an error while trying to update the file. You may need to fix something and try updating again.','Homepage: %s'=>'Homepage: %s','Available tags:'=>'Available tags:','%s (already used in permalink structure)'=>'%s (already used in permalink structure)','%s added to permalink structure'=>'%s added to permalink structure','%s (A sanitized version of the author name.)'=>'%s (A sanitised version of the author name.)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (Category slug. Nested sub-categories appear as nested directories in the URL.)','%s (The sanitized post title (slug).)'=>'%s (The sanitised post title (slug).)','%s (The unique ID of the post, for example 423.)'=>'%s (The unique ID of the post, for example 423.)','%s (Second of the minute, for example 33.)'=>'%s (Second of the minute, for example 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute of the hour, for example 43.)','%s (Hour of the day, for example 15.)'=>'%s (Hour of the day, for example 15.)','%s (Day of the month, for example 28.)'=>'%s (Day of the month, for example 28.)','%s (Month of the year, for example 05.)'=>'%s (Month of the year, for example 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (The year of the post, four digits, for example 2004.)','Theme Installation'=>'Theme Installation','%s is currently editing this post.'=>'%s is currently editing this post.','%s is currently editing this post. Do you want to take over?'=>'%s is currently editing this post. Do you want to take over?','Custom installation script.'=>'Custom installation script.','Active Installations:'=>'Active Installations:','Plugin Installation'=>'Plugin Installation','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are greyed out and say Serialised Data. You cannot modify these values due to the way the setting is stored in the database.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.','Unable to write to file.'=>'Unable to write to file.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://en-gb.wordpress.org/news/','Your Recent Drafts'=>'Your Recent Drafts','nameUnknown'=>'Unknown','View posts by %s'=>'View posts by %s','No description'=>'No description','%s Active Installations'=>'%s Active Installations','Theme installation failed.'=>'Theme installation failed.','Plugin installation failed.'=>'Plugin installation failed.','Activate Plugin & Go to Press This'=>'Activate Plugin and Go to Press This','Your scheduled changes just published'=>'Your scheduled changes just published','themeActivate'=>'Activate','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts','pluginNetwork Activate %s'=>'Network Activate %s','pluginActivate %s'=>'Activate %s','No media files found.'=>'No media files found.','Run Importer'=>'Run Importer','Run %s'=>'Run %s','comment statusOpen'=>'Open','Image Rotation'=>'Image Rotation','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'There are no events scheduled near you at the moment. Would you like to organise a WordPress event?','Edit User %s'=>'Edit User %s','Edit widget: %s'=>'Edit widget: %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'There are no events scheduled near %1$s at the moment. Would you like to organise a WordPress event?','Attend an upcoming event near %s.'=>'Attend an upcoming event near %s.','Cincinnati'=>'London','City:'=>'City:','WordCamps'=>'WordCamps','Meetups'=>'Meetups','An error occurred. Please try again.'=>'An error occurred. Please try again.','WordPress Events and News'=>'WordPress Events and News','l, M j, Y'=>'l j F Y','Unknown API error.'=>'Unknown API error.','Invalid API response code (%d).'=>'Invalid API response code (%d).','Sorry, you are not allowed to delete users.'=>'Sorry, you are not allowed to delete users.','Sorry, you are not allowed to create users.'=>'Sorry, you are not allowed to create users.','short (~12 characters) label for hide controls buttonHide Controls'=>'Hide Controls','Expand Sidebar'=>'Expand Sidebar','Display location'=>'Display location','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s: %2$s Sorry, you are not allowed to remove this user.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.','Edit Filters'=>'Edit Filters','Clear current filters'=>'Clear current filters','Select one or more Theme features to filter by'=>'Select one or more Theme features to filter by','(%s ratings)'=>'(%s ratings)','Current Background Image'=>'Current Background Image','Current Header Image'=>'Current Header Image','Set status'=>'Set status','“%s” is locked'=>'“%s” is locked','Active plugin installationsLess Than 10'=>'Less Than 10','Sorry, you are not allowed to attach files to this post.'=>'Sorry, you are not allowed to attach files to this post.','https://wordpress.org/plugins/'=>'https://en-gb.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'The Customiser allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customiser is intended for use with non-block themes.','Customize New Changes'=>'Customise New Changes','Background ScrollScroll'=>'Scroll','Background RepeatRepeat'=>'Repeat','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the licence WordPress uses.','Search plugins by:'=>'Search plugins by:','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.','Import posts & media from Tumblr using their API.'=>'Import posts & media from Tumblr using their API.','Import posts from an RSS feed.'=>'Import posts from an RSS feed.','Import posts and comments from a Movable Type or TypePad blog.'=>'Import posts and comments from a Movable Type or TypePad blog.','Import posts from LiveJournal using their API.'=>'Import posts from LiveJournal using their API.','Convert existing categories to tags or tags to categories, selectively.'=>'Convert existing categories to tags or tags to categories, selectively.','Import posts, comments, and users from a Blogger blog.'=>'Import posts, comments, and users from a Blogger blog.','pluginDeactivate %s'=>'Deactivate %s','pluginDelete %s'=>'Delete %s','pluginNetwork Deactivate %s'=>'Network Deactivate %s','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.','plugin%s was successfully deleted.'=>'%s was successfully deleted.','The search for installed plugins will search for terms in their name, description, or author.'=>'The search for installed plugins will search for terms in their name, description, or author.','Custom Logo'=>'Custom Logo','Sorry, you are not allowed to remove users.'=>'Sorry, you are not allowed to remove users.','Sorry, you are not allowed to add users to this network.'=>'Sorry, you are not allowed to add users to this network.','Sorry, you are not allowed to edit this changeset.'=>'Sorry, you are not allowed to edit this changeset.','Sorry, you are not allowed to update themes for this site.'=>'Sorry, you are not allowed to update themes for this site.','Sorry, you are not allowed to update this site.'=>'Sorry, you are not allowed to update this site.','New version available. '=>'New version available. ','The Theme Installer screen requires JavaScript.'=>'The Theme Installer screen requires JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Sorry, you are not allowed to edit templates for this site.','Error: "Table Prefix" is invalid.'=>'Error: "Table Prefix" is invalid.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Sorry, you are not allowed to deactivate plugins for this site.','Sorry, you are not allowed to activate plugins for this site.'=>'Sorry, you are not allowed to activate plugins for this site.','Sorry, you are not allowed to edit plugins for this site.'=>'Sorry, you are not allowed to edit plugins for this site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Sorry, you are not allowed to modify unregistered settings for this site.','Sorry, you are not allowed to manage options for this site.'=>'Sorry, you are not allowed to manage options for this site.','Manage with Live Preview'=>'Manage with Live Preview','Sorry, you are not allowed to delete this site.'=>'Sorry, you are not allowed to delete this site.','Sorry, you are not allowed to add links to this site.'=>'Sorry, you are not allowed to add links to this site.','Hi, this is a comment. +To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. +Commenter avatars come from Gravatar.'=>'Hi, this is a comment. +To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. +Commenter avatars come from Gravatar.','theme%s was successfully deleted.'=>'%s was successfully deleted.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s is available! Please notify the site administrator.','Please update WordPress now'=>'Please update WordPress now','WordPress %2$s is available! Please update now.'=>'WordPress %2$s is available! Please update now.','Portfolio'=>'Portfolio','Photography'=>'Photography','News'=>'News','Food & Drink'=>'Food & Drink','Entertainment'=>'Entertainment','Education'=>'Education','E-Commerce'=>'E-Commerce','Blog'=>'Blog','Footer Widgets'=>'Footer Widgets','Grid Layout'=>'Grid Layout','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.','Close media attachment panel'=>'Close media attachment panel','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Need help? Use the Help tab above the screen title.','Sorry, you are not allowed to access this page.'=>'Sorry, you are not allowed to access this page.','Embed Footer Template'=>'Embed Footer Template','Embed Header Template'=>'Embed Header Template','Embed Content Template'=>'Embed Content Template','Embed 404 Template'=>'Embed 404 Template','Embed Template'=>'Embed Template','pluginActive'=>'Active','(Private post)'=>'(Private post)','Sorry, you are not allowed to edit the links for this site.'=>'Sorry, you are not allowed to edit the links for this site.','Sorry, you are not allowed to manage privacy options on this site.'=>'Sorry, you are not allowed to manage privacy options on this site.','Plugin could not be deleted.'=>'Plugin could not be deleted.','Sorry, you are not allowed to update plugins for this site.'=>'Sorry, you are not allowed to update plugins for this site.','Sorry, you are not allowed to activate plugins on this site.'=>'Sorry, you are not allowed to activate plugins on this site.','Theme could not be deleted.'=>'Theme could not be deleted.','Sorry, you are not allowed to delete themes on this site.'=>'Sorry, you are not allowed to delete themes on this site.','Sorry, you are not allowed to install themes on this site.'=>'Sorry, you are not allowed to install themes on this site.','No theme specified.'=>'No theme specified.','Sorry, you are not allowed to import content into this site.'=>'Sorry, you are not allowed to import content into this site.','Sorry, you are not allowed to export the content of this site.'=>'Sorry, you are not allowed to export the content of this site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.','Close the Customizer and go back to the previous page'=>'Close the Customiser and go back to the previous page','Sorry, you are not allowed to customize headers.'=>'Sorry, you are not allowed to customise headers.','Release Deputy'=>'Release Deputy','Release Design Lead'=>'Release Design Lead','Editor improvements'=>'Editor improvements','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Custom fields can be used to add extra metadata to a post that you can use in your theme.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.','The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.','Error saving media file.'=>'Error saving media file.','%s media file restored from the Trash.'=>'%s media file restored from the Bin.' . "\0" . '%s media files restored from the Bin.','%s media file moved to the Trash.'=>'%s media file moved to the Bin.' . "\0" . '%s media files moved to the Bin.','%s media file permanently deleted.'=>'%s media file permanently deleted.' . "\0" . '%s media files permanently deleted.','%s media file detached.'=>'%s media file detached.' . "\0" . '%s media files detached.','Media file detached.'=>'Media file detached.','%s media file attached.'=>'%s media file attached.' . "\0" . '%s media files attached.','Media file attached.'=>'Media file attached.','Media file updated.'=>'Media file updated.','View %1$s version %2$s details'=>'View %1$s version %2$s details','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.','There is a pending change of your email to %s.'=>'There is a pending change of your email to %s.','Error while saving the new email address. Please try again.'=>'Error while saving the new email address. Please try again.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'You can narrow the list by file type/status or by date using the dropdown menus above the media table.','The following themes are installed but incomplete.'=>'The following themes are installed but incomplete.','New theme activated.'=>'New theme activated.','Settings saved and theme activated.'=>'Settings saved and theme activated.','https://wordpress.org/themes/'=>'https://en-gb.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Sorry, you are not allowed to delete that user.','Your database password.'=>'Your database password.','Your database username.'=>'Your database username.','The name of the database you want to use with WordPress.'=>'The name of the database you want to use with WordPress.','plugin%1$s by %2$s'=>'%1$s by %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s by %2$s (will also delete its data)','There is a pending change of the admin email to %s.'=>'There is a pending change of the admin email to %s.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress has been installed. Thank you, and enjoy!','The constant %s cannot be defined when installing WordPress.'=>'The constant %s cannot be defined when installing WordPress.','Your %s file has an empty database table prefix, which is not supported.'=>'Your %s file has an empty database table prefix, which is not supported.','Dismiss the welcome panel'=>'Dismiss the welcome panel','Theme zip file'=>'Theme zip file','Attach to existing content'=>'Attach to existing content','Click the image to edit or update'=>'Click the image to edit or update','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Reviews with %1$d star: %2$s. Opens in a new tab.' . "\0" . 'Reviews with %1$d stars: %2$s. Opens in a new tab.','Read all reviews on WordPress.org or write your own!'=>'Read all reviews on WordPress.org or write your own!','Reviews'=>'Reviews','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'You are using a development version of WordPress. These feature plugins are also under development. Learn more.','Thumbnail Settings Help'=>'Thumbnail Settings Help','selection height'=>'selection height','selection width'=>'selection width','crop ratio height'=>'crop ratio height','crop ratio width'=>'crop ratio width','Image Crop Help'=>'Image Crop Help','scale height'=>'scale height','New dimensions:'=>'New dimensions:','Scale Image Help'=>'Scale Image Help','Single Page'=>'Single Page','Singular Template'=>'Singular Template','Date Template'=>'Date Template','Taxonomy Template'=>'Taxonomy Template','Dismiss the browser warning panel'=>'Dismiss the browser warning panel','View more comments'=>'View more comments','dashboard%1$s on %2$s %3$s'=>'%1$s on %2$s %3$s','View this comment'=>'View this comment','Another update is currently in progress.'=>'Another update is currently in progress.','Update progress'=>'Update progress','View “%s” archive'=>'View “%s” archive','Delete “%s”'=>'Delete “%s”','Quick edit “%s” inline'=>'Quick edit “%s” inline','Search for plugins in the WordPress Plugin Directory.'=>'Search for plugins in the WordPress Plugin Directory.','Restore “%s” from the Trash'=>'Restore “%s” from the Bin','Delete “%s” permanently'=>'Delete “%s” permanently','Move “%s” to the Trash'=>'Move “%s” to the Bin','Attach “%s” to existing content'=>'Attach “%s” to existing content','Detach from “%s”'=>'Detach from “%s”','“%s” (Edit)'=>'“%s” (Edit)','attachment filterTrash'=>'Bin','Quick edit this comment inline'=>'Quick edit this comment inline','Edit this comment'=>'Edit this comment','Restore this comment from the spam'=>'Restore this comment from the spam','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'The %s importer is invalid or is not installed.','comment statusPending'=>'Pending','Suggested height is %s.'=>'Suggested height is %s.','Suggested width is %s.'=>'Suggested width is %s.','Images should be at least %s tall.'=>'Images should be at least %s tall.','%d pixels'=>'%d pixels','Images should be at least %s wide.'=>'Images should be at least %s wide.','Send the new user an email about their account'=>'Send the new user an email about their account','Send User Notification'=>'Send User Notification','menu location(Currently set to: %s)'=>'(Currently set to: %s)','Version %s addressed one security issue.'=>'Version %s addressed one security issue.','https://gravatar.com/'=>'https://gravatar.com/','Profile Picture'=>'Profile Picture','Maintenance and Security Releases'=>'Maintenance and Security Releases','Security Releases'=>'Security Releases','Maintenance Releases'=>'Maintenance Releases','Plain'=>'Plain','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.','You can create the %s file manually and paste the following text into it.'=>'You can create the %s file manually and paste the following text into it.','You should be able to get this info from your web host, if %s does not work.'=>'You should be able to get this info from your web host, if %s does not work.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.','Default is %s'=>'Default is %s','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'The language pack is missing either the %1$s, %2$s, or %3$s files.','The %s stylesheet does not contain a valid theme header.'=>'The %s stylesheet does not contain a valid theme header.','The theme is missing the %s stylesheet.'=>'The theme is missing the %s stylesheet.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'If you have marked themes as favourites on WordPress.org, you can browse them here.','themesFavorites'=>'Favourites','Database repair results'=>'Database repair results','Allow automatic database repair'=>'Allow automatic database repair','Successful database connection'=>'Successful database connection','Set up your database connection'=>'Set up your database connection','Before getting started'=>'Before getting started','WordPress database repair'=>'WordPress database repair','Check secret keys'=>'Check secret keys','%s has been updated.'=>'%s has been updated.','The Walker class named %s does not exist.'=>'The Walker class named %s does not exist.','Requires %1$s in %2$s file.'=>'Requires %1$s in %2$s file.','Standard time begins on: %s.'=>'Standard time begins on: %s.','Daylight saving time begins on: %s.'=>'Daylight saving time begins on: %s.','You are about to delete %s.'=>'You are about to delete %s.','Files in the %s directory are executed automatically.'=>'Files in the %s directory are executed automatically.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'This will clear all items from the inactive widgets list. You will not be able to restore any customisations.','Clear Inactive Widgets'=>'Clear Inactive Widgets','One of the selected users is not a member of this site.'=>'One of the selected users is not a member of this site.','Users list'=>'Users list','Users list navigation'=>'Users list navigation','Filter users list'=>'Filter users list','Media items list'=>'Media items list','Media items list navigation'=>'Media items list navigation','Filter media items list'=>'Filter media items list','Install Parent Theme'=>'Install Parent Theme','Themes list'=>'Themes list','Filter themes list'=>'Filter themes list','All selected plugins are up to date.'=>'All selected plugins are up to date.','Plugins list'=>'Plugins list','Plugins list navigation'=>'Plugins list navigation','Filter plugins list'=>'Filter plugins list','Browsing %s (inactive)'=>'Browsing %s (inactive)','Editing %s (inactive)'=>'Editing %s (inactive)','Browsing %s (active)'=>'Browsing %s (active)','Editing %s (active)'=>'Editing %s (active)','Local time is %s.'=>'Local time is %s.','Links list'=>'Links list','Get Version %s'=>'Get Version %s','Toggle panel: %s'=>'Toggle panel: %s','Saving revision…'=>'Saving revision…','Edit permalink'=>'Edit permalink','The %1$s plugin header is deprecated. Use %2$s instead.'=>'The %1$s plugin header is deprecated. Use %2$s instead.','Warning'=>'Warning','Warning:'=>'Warning:','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Once you hit “Confirm Deletion”, these users will be permanently removed.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Once you hit “Confirm Deletion”, the user will be permanently removed.','User has no sites or content and will be deleted.'=>'User has no sites or content and will be deleted.','Site: %s'=>'Site: %s','Select a user'=>'Select a user','What should be done with content owned by %s?'=>'What should be done with content owned by %s?','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Warning! User cannot be deleted. The user %s is a network administrator.','Warning! User %s cannot be deleted.'=>'Warning! User %s cannot be deleted.','You have chosen to delete the following users from all networks and sites.'=>'You have chosen to delete the following users from all networks and sites.','You have chosen to delete the user from all networks and sites.'=>'You have chosen to delete the user from all networks and sites.','Invalid image URL.'=>'Invalid image URL.','Theme Header'=>'Theme Header','Theme Footer'=>'Theme Footer','M jS Y'=>'j F Y','From %1$s %2$s'=>'From %1$s %2$s','View all drafts'=>'View all drafts','no user rolesNone'=>'None','No role'=>'No role','An error occurred while updating %1$s: %2$s'=>'An error occurred while updating %1$s: %2$s','View mode'=>'View mode','%s column'=>'%s column' . "\0" . '%s columns','Additional settings'=>'Additional settings','Items list'=>'Items list','Items list navigation'=>'Items list navigation','Filter items list'=>'Filter items list','Network Only'=>'Network Only','Network Active'=>'Network Active','No pending comments'=>'No pending comments','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Failed to initialise a SFTP subsystem session with the SSH2 Server %s','column nameSubmitted on'=>'Submitted on','commentsTrash (%s)'=>'Bin (%s)' . "\0" . 'Bin (%s)','commentsSpam (%s)'=>'Spam (%s)' . "\0" . 'Spam (%s)','commentsApproved (%s)'=>'Approved (%s)' . "\0" . 'Approved (%s)','commentsPending (%s)'=>'Pending (%s)' . "\0" . 'Pending (%s)','commentsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','User %s added'=>'User %s added','End date:'=>'End date:','Content to export'=>'Content to export','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'You can view posts in a simple title list or with an excerpt using the Screen Options tab.','Submitted on: %s'=>'Submitted on: %s','commentPermalink:'=>'Permalink:','Page draft updated.'=>'Page draft updated.','Page scheduled for: %s.'=>'Page scheduled for: %s.','Page submitted.'=>'Page submitted.','Post draft updated.'=>'Post draft updated.','Post scheduled for: %s.'=>'Post scheduled for: %s.','Post submitted.'=>'Post submitted.','View page'=>'View page','Preview page'=>'Preview page','Preview post'=>'Preview post','Comments list'=>'Comments list','Comments list navigation'=>'Comments list navigation','Filter comments list'=>'Filter comments list','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or bin that comment.','Comments (%s)'=>'Comments (%s)','Comments (%1$s) on “%2$s”'=>'Comments (%1$s) on “%2$s”','Sorry, you are not allowed to modify themes.'=>'Sorry, you are not allowed to modify themes.','The active theme does not support a flexible sized header image.'=>'The active theme does not support a flexible sized header image.','You are using the auto-generated password for your account. Would you like to change it?'=>'You are using the auto-generated password for your account. Would you like to change it?','You have specified this user for removal:'=>'You have specified this user for removal:','Log %s out of all locations.'=>'Log %s out of all locations.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.','Log Out Everywhere Else'=>'Log Out Everywhere Else','Sessions'=>'Sessions','Cancel password change'=>'Cancel password change','Generate password'=>'Generate password','Account Management'=>'Account Management','You will need this password to log in. Please store it in a secure location.'=>'You will need this password to log in. Please store it in a secure location.','No approved comments'=>'No approved comments','%s pending comment'=>'%s pending comment' . "\0" . '%s pending comments','%s approved comment'=>'%s approved comment' . "\0" . '%s approved comments','Image could not be processed.'=>'Image could not be processed.','Confirm Password'=>'Confirm Password','Remove Site Icon'=>'Remove Site Icon','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.','Set as Site Icon'=>'Set as Site Icon','Choose a Site Icon'=>'Choose a Site Icon','Show more details'=>'Show more details','Your theme supports %s menu. Select which menu appears in each location.'=>'Your theme supports %s menu. Select which menu appears in each location.' . "\0" . 'Your theme supports %s menus. Select which menu appears in each location.','%s post by this author'=>'%s post by this author' . "\0" . '%s posts by this author','Live Preview “%s”'=>'Live Preview “%s”','last page'=>'last page','first page'=>'first page','In response to: %s'=>'In response to: %s','Date and time'=>'Date and time','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.','Documentation on Custom Background'=>'Documentation on Custom Background','Documentation on Link Categories'=>'Documentation on Link Categories','Documentation on Creating Links'=>'Documentation on Creating Links','Documentation on Managing Links'=>'Documentation on Managing Links','Documentation on Custom Header'=>'Documentation on Custom Header','Documentation on My Sites'=>'Documentation on My Sites','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.','The character encoding of your site (UTF-8 is recommended)'=>'The character encoding of your site (UTF-8 is recommended)','example: www.wordpress.org'=>'example: www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'The search for installed themes will search for terms in their name, description, author, or tag.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Alternately, you can browse the themes that are popular or latest. When you find a theme you like, you can preview it or install it.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.','Number of Themes found: %d'=>'Number of Themes found: %d','Custom time format:'=>'Custom time format:','enter a custom time format in the following field'=>'enter a custom time format in the following field','Custom date format:'=>'Custom date format:','enter a custom date format in the following field'=>'enter a custom date format in the following field','Plugins updated successfully.'=>'Plugins updated successfully.','Active plugin installations%s+ Million'=>'%s+ Million' . "\0" . '%s+ Million','XML Error: %1$s at line %2$s'=>'XML Error: %1$s at line %2$s','Main menu'=>'Main menu','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.','%s user deleted.'=>'%s user deleted.' . "\0" . '%s users deleted.','What should be done with content owned by these users?'=>'What should be done with content owned by these users?','You have specified these users for deletion:'=>'You have specified these users for deletion:','You are about to remove the following plugins:'=>'You are about to remove the following plugins:','These plugins may be active on other sites in the network.'=>'These plugins may be active on other sites in the network.','Delete Plugins'=>'Delete Plugins','1 page not updated, somebody is editing it.'=>'1 page not updated, somebody is editing it.','1 post not updated, somebody is editing it.'=>'1 post not updated, somebody is editing it.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.','New translations are available.'=>'New translations are available.','This theme has not been rated yet.'=>'This theme has not been rated yet.','timezone date formatY-m-d H:i:s'=>'j F Y H:i','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu','Howdy ###USERNAME###, + +You recently clicked the \'Delete Site\' link on your site and filled in a +form on that page. + +If you really want to delete your site, click the link below. You will not +be asked to confirm again so only click this link if you are absolutely certain: +###URL_DELETE### + +If you delete your site, please consider opening a new site here some time in +the future! (But remember that your current site and username are gone forever.) + +Thank you for using the site, +All at ###SITENAME### +###SITEURL###'=>'Hi ###USERNAME###, + +You recently clicked the \'Delete Site\' link on your site and filled in a +form on that page. + +If you really want to delete your site, click the link below. You will not +be asked to confirm again so only click this link if you are absolutely certain: +###URL_DELETE### + +If you delete your site, please consider opening a new site here some time in +the future! (But remember that your current site and username are gone forever.) + +Thank you for using the site, +All at ###SITENAME### +###SITEURL###','Close details dialog'=>'Close details dialog','You are currently editing the page that shows your latest posts.'=>'You are currently editing the page that shows your latest posts.','Number of items per page:'=>'Number of items per page:','revision date short formatj M @ H:i'=>'j F @ H:i','Size in megabytes'=>'Size in megabytes','Site Upload Space Quota'=>'Site Upload Space Quota','UPDATE LOG +=========='=>'UPDATE LOG +==========','BETA TESTING? +============= + +This debugging email is sent when you are using a development version of WordPress. + +If you think these failures might be due to a bug in WordPress, could you report it? + * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta + * Or, if you\'re comfortable writing a bug report: https://core.trac.wordpress.org/ + +Thanks! -- The WordPress Team'=>'BETA TESTING? +============= + +This debugging email is sent when you are using a development version of WordPress. + +If you think these failures might be due to a bug in WordPress, could you report it? + * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta + * Or, if you\'re comfortable writing a bug report: https://core.trac.wordpress.org/ + +Thanks! -- The WordPress Team','M j, Y @ H:i'=>'j F Y @ H:i','Submitted on'=>'Submitted on','In response to'=>'In response to','%1$s %2$s, %3$s at %4$s:%5$s'=>'%1$s %2$s, %3$s at %4$s:%5$s','You are only logged in at this location.'=>'You are only logged in at this location.','These suggestions are based on the plugins you and other users have installed.'=>'These suggestions are based on the plugins you and other users have installed.','You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.'=>'You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.','Log Out Everywhere'=>'Log Out Everywhere','Plugin InstallerRecommended'=>'Recommended','Your new WordPress site has been successfully set up at: + +%1$s + +You can log in to the administrator account with the following information: + +Username: %2$s +Password: %3$s +Log in here: %4$s + +We hope you enjoy your new site. Thanks! + +--The WordPress Team +https://wordpress.org/ +'=>'Your new WordPress site has been successfully set up at: + +%1$s + +You can log in to the administrator account with the following information: + +Username: %2$s +Password: %3$s +Log in here: %4$s + +We hope you enjoy your new site. Thanks! + +--The WordPress Team +https://wordpress.org/ +','You cannot delete a theme while it has an active child theme.'=>'You cannot delete a theme while it has an active child theme.','Mystery Person'=>'Mystery Person','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, full stops, and the @ symbol.','Enable full-height editor and distraction-free functionality.'=>'Enable full-height editor and distraction-free functionality.','https://planet.wordpress.org/feed/'=>'https://planet.wordpress.org/feed/','https://planet.wordpress.org/'=>'https://planet.wordpress.org/','Untested with your version of WordPress'=>'Untested with your version of WordPress','All categories'=>'All categories','Filter by comment type'=>'Filter by comment type','%s has been logged out.'=>'%s has been logged out.','You are now logged out everywhere else.'=>'You are now logged out everywhere else.','Could not log out user sessions. Please try again.'=>'Could not log out user sessions. Please try again.','This preview is unavailable in the editor.'=>'This preview is unavailable in the editor.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab.'=>'Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab.','You can now manage and live-preview Custom Header in the Customizer.'=>'You can now manage and live-preview Custom Header in the Customiser.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'You can now manage and live-preview Custom Backgrounds in the Customiser.','Welcome panelWelcome'=>'Welcome','usersAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','link nameName'=>'Name','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorised/. If you leave these blank the defaults will be used.','Release Lead'=>'Release Lead','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'You can also delete individual items and access the extended edit screen from the details dialog.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.','Browse Plugins'=>'Browse Plugins','Add Plugins'=>'Add Plugins','The %1$s constant in your %2$s file is no longer needed.'=>'The %1$s constant in your %2$s file is no longer needed.','Invalid translation type.'=>'Invalid translation type.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.','Compatible with your version of WordPress'=>'Compatible with your version of WordPress','Incompatible with your version of WordPress'=>'Incompatible with your version of WordPress','%d star'=>'%d star' . "\0" . '%d stars','Select bulk action'=>'Select bulk action','Add the user without sending an email that requires their confirmation'=>'Add the user without sending an email that requires their confirmation','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'The grid view for the Media Library requires JavaScript. Switch to the list view.','Contributors'=>'Contributors','Donate to this plugin »'=>'Donate to this plugin »','Plugin installer section titleReviews'=>'Reviews','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.','themesRecently Updated'=>'Recently Updated','Number/count of itemsCount'=>'Count','View details'=>'View details','More Details'=>'More Details','Plugin installer group titleTools'=>'Tools','Plugin installer group titleSocial'=>'Social','Plugin installer group titlePerformance'=>'Performance','Plugin InstallerBeta Testing'=>'Beta Testing','%s failed to embed.'=>'%s failed to embed.','Filtering by:'=>'Filtering by:','Displayed on attachment pages.'=>'Displayed on attachment pages.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.','To crop the image, click on it and drag to make your selection.'=>'To crop the image, click on it and drag to make your selection.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.','A red bar on the left means the comment is waiting for you to moderate it.'=>'A red bar on the left means the comment is waiting for you to moderate it.','All comment types'=>'All comment types','themesLatest'=>'Latest','themesPopular'=>'Popular','themesFeatured'=>'Featured','Attribute all content to:'=>'Attribute all content to:','Delete all content.'=>'Delete all content.','What should be done with content owned by this user?'=>'What should be done with content owned by this user?' . "\0" . 'What should be done with content owned by these users?','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.','themeDetails & Preview'=>'Details & Preview','Search Themes'=>'Search Themes','Add Themes'=>'Add Themes','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wordpress.org/support/forum/how-to-and-troubleshooting','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'At a Glance – Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.','Sorry, you are not allowed to resume this theme.'=>'Sorry, you are not allowed to resume this theme.','Edit date and time'=>'Edit date and time','Browse revisions'=>'Browse revisions','Edit visibility'=>'Edit visibility','Edit status'=>'Edit status','Support forums'=>'Support forums','Thank you for creating with WordPress.'=>'Thank you for creating with WordPress.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'If an update is available, you᾿ll see a notification appear in the toolbar and navigation menu.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.','If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!','%1$s MB (%2$s%%) Space Used'=>'%1$s MB (%2$s%%) Space Used','%s MB Space Allowed'=>'%s MB Space Allowed','M jS'=>'j F','%s Page'=>'%s Page' . "\0" . '%s Pages','%s Post'=>'%s Post' . "\0" . '%s Posts','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.','At a Glance'=>'At a Glance','themeActive:'=>'Active:','Accessibility Ready'=>'Accessibility Ready','This is a child theme of %s.'=>'This is a child theme of %s.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'The theme being previewed is fully interactive – navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate and Publish button above the menu.','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customised in this way.','The active theme is displayed highlighted as the first theme.'=>'The active theme is displayed highlighted as the first theme.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Click Customise for the active theme or Live Preview for any other theme to see a live preview','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Click on the theme to see the theme name, version, author, description, tags, and the Delete link','Hover or tap to see Activate and Live Preview buttons'=>'Hover or tap to see Activate and Live Preview buttons','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.','%s rating'=>'%s rating','%1$s rating based on %2$s rating'=>'%1$s rating based on %2$s rating' . "\0" . '%1$s rating based on %2$s ratings','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.','Error: [%1$s] %2$s'=>'ERROR: [%1$s] %2$s','Rollback Error: [%1$s] %2$s'=>'ROLLBACK ERROR: [%1$s] %2$s','The following translations failed to update:'=>'The following translations failed to update:','The following themes failed to update:'=>'The following themes failed to update:','The following plugins failed to update:'=>'The following plugins failed to update:','The following translations were successfully updated:'=>'The following translations were successfully updated:','The following themes were successfully updated:'=>'The following themes were successfully updated:','The following plugins were successfully updated:'=>'The following plugins were successfully updated:','Add Widget'=>'Add Widget','Show next theme'=>'Show next theme','Show previous theme'=>'Show previous theme','Update Available'=>'Update Available','Are you sure you want to delete this theme? + +Click \'Cancel\' to go back, \'OK\' to confirm the delete.'=>'Are you sure you want to delete this theme? + +Click \'Cancel\' to go back, \'OK\' to confirm the delete.','Unable to submit this form, please refresh and try again.'=>'Unable to submit this form, please refresh and try again.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.','Manage Uploads'=>'Manage Uploads','Popular Plugin'=>'Popular Plugin','Tomorrow'=>'Tomorrow','No activity yet!'=>'No activity yet!','Recently Published'=>'Recently Published','Publishing Soon'=>'Publishing Soon','What’s on your mind?'=>'What’s on your mind?','WordPress %1$s running %2$s theme.'=>'WordPress %1$s running %2$s theme.','Quick Draft'=>'Quick Draft','Activity'=>'Activity','FAILED: %s'=>'FAILED: %s','SUCCESS: %s'=>'SUCCESS: %s','FAILED: WordPress failed to update to %s'=>'FAILED: WordPress failed to update to %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCESS: WordPress was successfully updated to %s','WordPress site: %s'=>'WordPress site: %s','Your site was running version %s.'=>'Your site was running version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.','WordPress %s is also now available.'=>'WordPress %s is also now available.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.','Your translations are all up to date.'=>'Your translations are all up to date.','Translations'=>'Translations','Error code: %s'=>'Error code: %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:','The WordPress Team'=>'The WordPress Team','You also have some plugins or themes with updates available. Update them now:'=>'You also have some plugins or themes with updates available. Update them now:','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'This means your site may be offline or broken. Don\'t panic; this can be fixed.','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.','Updating is easy and only takes a few moments:'=>'Updating is easy and only takes a few moments:','Please update your site at %1$s to WordPress %2$s.'=>'Please update your site at %1$s to WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'For more on version %s, see the About WordPress screen:','No further action is needed on your part.'=>'No further action is needed on your part.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Hi! Your site at %1$s has been updated automatically to WordPress %2$s.','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT: Your site may be down due to a failed update','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s is available. Please update!','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Your site has updated to WordPress %2$s','Translations for %s'=>'Translations for %s','Updating translations for %1$s (%2$s)…'=>'Updating translations for %1$s (%2$s)…','Update Translations'=>'Update Translations','Background updates'=>'Background updates','There is not enough free disk space to complete the update.'=>'There is not enough free disk space to complete the update.','Updating plugin: %s'=>'Updating plugin: %s','Updating theme: %s'=>'Updating theme: %s','Translation updated successfully.'=>'Translation updated successfully.','Translation update failed.'=>'Translation update failed.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.','Create a brand new user and add them to this site.'=>'Create a brand new user and add them to this site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.','Comment must be manually approved'=>'Comment must be manually approved','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Sorry, that is not a valid email address. Email addresses look like username@example.com.','You must provide an email address.'=>'You must provide an email address.','Your passwords do not match. Please try again.'=>'Your passwords do not match. Please try again.','The username you provided has invalid characters.'=>'The username you provided has invalid characters.','Please provide a valid username.'=>'Please provide a valid username.','Copying the required files…'=>'Copying the required files…','Preparing to install the latest version…'=>'Preparing to install the latest version…','This password will not be stored on the server.'=>'This password will not be stored on the server.','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'The checksum of the file (%1$s) does not match the expected checksum value (%2$s).','WordPress %s'=>'WordPress %s','Updating to WordPress %s'=>'Updating to WordPress %s','Due to an error during updating, WordPress has been restored to your previous version.'=>'Due to an error during updating, WordPress has been restored to your previous version.','Looking for %1$s in %2$s'=>'Looking for %1$s in %2$s','%s page restored from the Trash.'=>'%s page restored from the Bin.' . "\0" . '%s pages restored from the Bin.','%s page moved to the Trash.'=>'%s page moved to the Bin.' . "\0" . '%s pages moved to the Bin.','%s page permanently deleted.'=>'%s page permanently deleted.' . "\0" . '%s pages permanently deleted.','%s page not updated, somebody is editing it.'=>'%s page not updated, somebody is editing it.' . "\0" . '%s pages not updated, somebody is editing them.','%s page updated.'=>'%s page updated.' . "\0" . '%s pages updated.','%s post restored from the Trash.'=>'%s post restored from the Bin.' . "\0" . '%s posts restored from the Bin.','%s post moved to the Trash.'=>'%s post moved to the Bin.' . "\0" . '%s posts moved to the Bin.','%s post permanently deleted.'=>'%s post permanently deleted.' . "\0" . '%s posts permanently deleted.','%s post not updated, somebody is editing it.'=>'%s post not updated, somebody is editing it.' . "\0" . '%s posts not updated, somebody is editing them.','Tags deleted.'=>'Tags deleted.','Tag not updated.'=>'Tag not updated.','Tag not added.'=>'Tag not added.','Tag updated.'=>'Tag updated.','Tag deleted.'=>'Tag deleted.','Tag added.'=>'Tag added.','Categories deleted.'=>'Categories deleted.','Category not updated.'=>'Category not updated.','Category not added.'=>'Category not added.','Category updated.'=>'Category updated.','Category deleted.'=>'Category deleted.','Category added.'=>'Category added.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Compare two different revisions by selecting the “Compare any two revisions” box to the side.','Compare any two revisions'=>'Compare any two revisions','Restore This Autosave'=>'Restore This Autosave','Current Revision by %s'=>'Current Revision by %s','Autosave by %s'=>'Autosave by %s','revisionsBrowse'=>'Browse','Revisions: %s'=>'Revisions: %s','"%s".'=>'"%s".','"%1$s" by %2$s.'=>'"%1$s" by %2$s.','"%1$s" from %2$s.'=>'"%1$s" from %2$s.','"%1$s" from %2$s by %3$s.'=>'"%1$s" from %2$s by %3$s.','Revision by %s'=>'Revision by %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connection lost. Saving has been disabled until you are reconnected.','Repeat Password'=>'Repeat Password','Repeat New Password'=>'Repeat New Password','Add menu items from the column on the left.'=>'Add menu items from the column on the left.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.','http://wordpress.org/plugins/hello-dolly/'=>'http://wordpress.org/plugins/hello-dolly/','The theme contains no files.'=>'The theme contains no files.','The package contains no files.'=>'The package contains no files.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.','Loading…'=>'Loading…','This item has already been deleted.'=>'This item has already been deleted.','The item you are trying to restore from the Trash no longer exists.'=>'The item you are trying to restore from the Bin no longer exists.','The item you are trying to move to the Trash no longer exists.'=>'The item you are trying to move to the Bin no longer exists.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'If you have not yet created any menus, click the ’create a new menu’ link to get started','To restore a revision, click Restore This Revision.'=>'To restore a revision, click Restore This Revision.','From this screen you can review, compare, and restore revisions:'=>'From this screen you can review, compare, and restore revisions:','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.','This screen is used for managing your content revisions.'=>'This screen is used for managing your content revisions.','Followed by post revision infoTo:'=>'To:','Button label for a next revisionNext'=>'Next','Button label for a previous revisionPrevious'=>'Previous','Followed by post revision infoFrom:'=>'From:','menuUse new menu'=>'Use new menu','menuEdit'=>'Edit','Select a Menu'=>'Select a Menu','Assigned Menu'=>'Assigned Menu','Theme Location'=>'Theme Location','Manage Locations'=>'Manage Locations','Edit Menus'=>'Edit Menus','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes','This screen is used for globally assigning menus to locations defined by your theme.'=>'This screen is used for globally assigning menus to locations defined by your theme.','Editing Menus'=>'Editing Menus','Delete a menu item by expanding it and clicking the Remove link'=>'Delete a menu item by expanding it and clicking the Remove link','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'To reorganise menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.','Menu Management'=>'Menu Management','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'To edit an existing menu, choose a menu from the dropdown and click Select','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'The menu management box at the top of the screen is used to control which menu is opened in the editor below.','Add, organize, and modify individual menu items'=>'Add, organise, and modify individual menu items','Create, edit, and delete menus'=>'Create, edit, and delete menus','From this screen you can:'=>'From this screen you can:','This screen is used for managing your navigation menus.'=>'This screen is used for managing your navigation menus.','Menu locations updated.'=>'Menu locations updated.','Your latest changes were saved as a revision.'=>'Your latest changes were saved as a revision.','Audio Codec:'=>'Audio Codec:','Audio Format:'=>'Audio Format:','Genre: %s.'=>'Genre: %s.','Track %1$s of %2$s.'=>'Track %1$s of %2$s.','Released: %d.'=>'Released: %d.','%1$s by %2$s.'=>'%1$s by %2$s.','Restore This Revision'=>'Restore This Revision','Denied: %s'=>'Denied: %s','Capabilities'=>'Capabilities','Menu Settings'=>'Menu Settings','Menu structure'=>'Menu structure','To the top'=>'To the top','Down one'=>'Down one','Up one'=>'Up one','Move'=>'Move','Draft created on %1$s at %2$s'=>'Draft created on %1$s at %2$s','You cannot move this item to the Trash. %s is currently editing.'=>'You cannot move this item to the Bin. %s is currently editing.','%s has taken over and is currently editing.'=>'%s has taken over and is currently editing.','Select a menu to edit:'=>'Select a menu to edit:','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Thank you for Updating! Please visit the Upgrade Network page to update all your sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'All right, sunshine! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…','Client version'=>'Client version','Auto add pages'=>'Auto add pages','Give your menu a name, then click Create Menu.'=>'Give your menu a name, then click Create Menu.','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.','Selected menus have been successfully deleted.'=>'Selected menus have been successfully deleted.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'For PHP files, you can use the documentation dropdown to select from functions recognised in that file. Look Up takes you to a web page with reference material about that particular function.','Look Up'=>'Look Up','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'The documentation menu below the editor lists the PHP functions recognised in the plugin file. Clicking Look Up takes you to a web page about that particular function.','%s is currently editing'=>'%s is currently editing','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.','Image rotation is not supported by your web host.'=>'Image rotation is not supported by your web host.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'If you are looking to use the link manager, please install the Link Manager plugin.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.','Several boxes on this screen contain settings for how your content will be published, including:'=>'Several boxes on this screen contain settings for how your content will be published, including:','Inserting Media'=>'Inserting Media','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimise or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.','Do not forget to click “Save Changes” when you are done!'=>'Do not forget to click “Save Changes” when you are done!','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'You are using the multi-file uploader. Problems? Try the browser uploader instead.','media itemEdit'=>'Edit','colorDefault: %s'=>'Default: %s','column nameUploaded to'=>'Uploaded to','The uploaded file is not a valid image. Please try again.'=>'The uploaded file is not a valid image. Please try again.','Choose a Custom Header'=>'Choose a Custom Header','Choose a Background Image'=>'Choose a Background Image','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a colour for the text by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker.','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'You can also choose a background colour by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.','ID #%1$s: %2$s'=>'ID #%1$s: %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID #%1$s: %2$s The current user will not be deleted.','Used: %1$s%% of %2$s'=>'Used: %1$s%% of %2$s','Please select an option.'=>'Please select an option.','After you’ve done that, click “Run the installation”.'=>'After you’ve done that, click “Run the installation”.','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'You can also browse a user’s favourite plugins, by using the Favourites link above the plugins list and entering their WordPress.org username.','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.','It is up to search engines to honor this request.'=>'It is up to search engines to honour this request.','Discourage search engines from indexing this site'=>'Discourage search engines from indexing this site','Allow search engines to index this site'=>'Allow search engines to index this site','Search engine visibility'=>'Search engine visibility','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.','Get Favorites'=>'Get Favourites','Your WordPress.org username:'=>'Your WordPress.org username:','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'If you have marked plugins as favourites on WordPress.org, you can browse them here.','Welcome to WordPress!'=>'Welcome to WordPress!','Search engines discouraged'=>'Search engines discouraged','This child theme requires its parent theme, %2$s.'=>'This child theme requires its parent theme, %2$s.','Plugin InstallerFavorites'=>'Favourites','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'To install the theme so you can preview it with your site’s content and customise its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.','widgetAdd'=>'Add','widgetEdit'=>'Edit','Search by tag'=>'Search by tag','Search by author'=>'Search by author','Search by keyword'=>'Search by keyword','Type of search'=>'Type of search','Screen Options Tab'=>'Screen Options Tab','Contextual Help Tab'=>'Contextual Help Tab','Select comment'=>'Select comment','Tags can be selectively converted to categories using the tag to category converter.'=>'Tags can be selectively converted to categories using the tag to category converter.','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Creating a Page is very similar to creating a Post, and the screens can be customised in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.','Skip to main content'=>'Skip to main content','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.','Skip Cropping, Publish Image as Is'=>'Skip Cropping, Publish Image as Is','Choose Image'=>'Choose Image','Or choose an image from your media library:'=>'Or choose an image from your media library:','Select Image'=>'Select Image','Collapse'=>'Collapse','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.','pluginInstalled'=>'Installed','Previewing and Customizing'=>'Previewing and Customising','Previewing and Installing'=>'Previewing and Installing','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realise that the other would work better for their content.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'You can choose from the theme’s default header images, or use one of your own. You can also customise how your Site Title and Tagline are displayed.','This screen is used to customize the header section of your theme.'=>'This screen is used to customise the header section of your theme.','Configuration Error'=>'Configuration Error','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revert to the Browser Uploader by clicking the link below the drag and drop box.','User deleted.'=>'User deleted.' . "\0" . '%s users deleted.','Could not copy files. You may have run out of disk space.'=>'Could not copy files. You may have run out of disk space.','Find a theme based on specific features.'=>'Find a theme based on specific features.','Search for themes by keyword.'=>'Search for themes by keyword.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…','This theme is broken.'=>'This theme is broken.','Set as header'=>'Set as header','Set as background'=>'Set as background','Customize “%s”'=>'Customise “%s”','(required)'=>'(required)','Edit Link'=>'Edit Link','Error: This email is already registered. Please choose another one.'=>'Error: This email is already registered. Please choose another one.','Error: Please enter a nickname.'=>'Error: Please enter a nickname.','https://wordpress.org/about/'=>'https://en-gb.wordpress.org/about/','Select All'=>'Select all','Public, Sticky'=>'Public, Sticky','Privately Published'=>'Privately Published','Save as Pending'=>'Save as Pending','Enter a link URL or click above for presets.'=>'Enter a link URL or click above for presets.','Link URL'=>'Link URL','No comments yet.'=>'No comments yet.','Version:'=>'Version:','Collapse Sidebar'=>'Collapse Sidebar','Plugin'=>'Plugin','All'=>'All','Word count: %s'=>'Word count: %s','Edit comment'=>'Edit comment','Preview:'=>'Preview:','E-mail'=>'Email','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.','Successfully installed the parent theme, %1$s %2$s.'=>'Successfully installed the parent theme, %1$s %2$s.','The parent theme, %1$s %2$s, is currently installed.'=>'The parent theme, %1$s %2$s, is currently installed.','Preparing to install %1$s %2$s…'=>'Preparing to install %1$s %2$s…','This theme requires a parent theme. Checking if it is installed…'=>'This theme requires a parent theme. Checking if it is installed…','Show header text with your image.'=>'Show header text with your image.','Header Text'=>'Header Text','There is a new version of %1$s available. View version %4$s details or update now.'=>'There is a new version of %1$s available. View version %4$s details or update now.','By %s.'=>'By %s.','Add Comment'=>'Add Comment','http://ma.tt/'=>'https://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'This is not just a plugin, it symbolises the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.','Hello Dolly'=>'Hello Dolly','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Welcome — Shows links for some of the most common tasks when setting up a new site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.','HowdyWelcome'=>'Welcome','Delete My Site Permanently'=>'Delete My Site Permanently','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.','Remember, once deleted your site cannot be restored.'=>'Remember, once deleted your site cannot be restored.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.','Sorry, the link you clicked is stale. Please select another option.'=>'Sorry, the link you clicked is stale. Please select another option.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Thank you for using %s, your site has been deleted. Cheerio!','Primary Site'=>'Primary Site','British English'=>'UK English','American English'=>'US English','View Site'=>'View Site','Visit Dashboard'=>'Visit Dashboard','Your Sites'=>'Your Sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.','MB (Leave blank for network default)'=>'MB (Leave blank for network default)','[%s] New Admin Email Address'=>'[%s] New Admin Email Address','Disabled'=>'Disabled','Paused (%s)'=>'Paused (%s)' . "\0" . 'Paused (%s)','Global Settings'=>'Global Settings','You must be a member of at least one site to use this page.'=>'You must be a member of at least one site to use this page.','The primary site you chose does not exist.'=>'The primary site you chose does not exist.','If you want to run multiple WordPress installations in a single database, change this.'=>'If you want to run multiple WordPress installations in a single database, change this.','Table Prefix'=>'Table Prefix','Database Host'=>'Database Host','example passwordpassword'=>'password','example usernameusername'=>'username','Database Name'=>'Database Name','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Below you should enter your database connection details. If you are not sure about these, contact your host.','Let’s go!'=>'Let’s go!','Table prefix (if you want to run more than one WordPress in a single database)'=>'Table prefix (if you want to run more than one WordPress in a single database)','Database host'=>'Database host','Database password'=>'Database password','Database username'=>'Database username','Database name'=>'Database name','WordPress › Setup Configuration File'=>'WordPress › Setup Configuration File','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.','No comments awaiting moderation.'=>'No comments awaiting moderation.','Plugin installer section titleOther Notes'=>'Other Notes','Plugin installer section titleChangelog'=>'Changelog','Plugin installer section titleScreenshots'=>'Screenshots','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin Homepage »'=>'Plugin Homepage »','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.','Failed to repair the %1$s table. Error: %2$s'=>'Failed to repair the %1$s table. Error: %2$s','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.','There is an autosave of this post that is more recent than the version below. View the autosave'=>'There is an autosave of this post that is more recent than the version below. View the autosave','Image could not be processed. Please go back and try again.'=>'Image could not be processed. Please go back and try again.','The active theme is broken. Reverting to the default theme.'=>'The active theme is broken. Reverting to the default theme.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress can also attempt to optimise the database. This improves performance in some situations. Repairing and optimising the database can take a long time and the database will be locked while optimising.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorised users.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.','Show Toolbar when viewing site'=>'Show toolbar when viewing site','For more information, see the release notes.'=>'For more information, see the release notes.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'Version %1$s addressed some security issues and fixed %2$s bug.' . "\0" . 'Version %1$s addressed some security issues and fixed %2$s bugs.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'Version %1$s addressed a security issue and fixed %2$s bug.' . "\0" . 'Version %1$s addressed a security issue and fixed %2$s bugs.','Version %1$s addressed %2$s bug.'=>'Version %1$s addressed %2$s bug.' . "\0" . 'Version %1$s addressed %2$s bugs.','Version %s addressed some security issues.'=>'Version %s addressed some security issues.','Maintenance and Security Release'=>'Maintenance and Security Release' . "\0" . 'Maintenance and Security Releases','Security Release'=>'Security Release' . "\0" . 'Security Releases','Maintenance Release'=>'Maintenance Release' . "\0" . 'Maintenance Releases','What’s New'=>'What’s New','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.','Welcome to WordPress %1$s. Learn more.'=>'Welcome to WordPress %1$s. Learn more.','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:','Adding Tags'=>'Adding Tags','Adding Categories'=>'Adding Categories','Troubleshooting'=>'Troubleshooting','How to Update'=>'How to Update','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.','Attaching Files'=>'Attaching Files','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'You can also edit or move multiple posts to the Bin at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.','Available Actions'=>'Available Actions','You can customize the display of this screen’s contents in a number of ways:'=>'You can customise the display of this screen’s contents in a number of ways:','Screen Content'=>'Screen Content','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'This screen provides access to all of your posts. You can customise the display of this screen to suit your workflow.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'If the importer you need is not listed, search the plugin directory to see if an importer is available.','Moderating Comments'=>'Moderating Comments','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.','Adding Plugins'=>'Adding Plugins','Adding Themes'=>'Adding Themes','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.','Authors can publish and manage their own posts, and are able to upload files.'=>'Authors can publish and manage their own posts, and are able to upload files.','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Here is a basic overview of the different user roles and the permissions associated with each one:','User Roles'=>'User Roles','Remember to click the Add User button at the bottom of this screen when you are finished.'=>'Remember to click the Add User button at the bottom of this screen when you are finished.','To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.'=>'To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.','Custom Structures'=>'Custom Structures','Common Settings'=>'Common Settings','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'Uploading Files allows you to choose the folder and path for storing your uploaded files.','Installing themes on Multisite can only be done from the Network Admin section.'=>'Installing themes on Multisite can only be done from the Network Admin section.','If desired, WordPress will automatically alert various services of your new posts.'=>'If desired, WordPress will automatically alert various services of your new posts.','Post Via Email'=>'Post Via Email','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'You can change your password, turn on keyboard shortcuts, change the colour scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.','Inactive Sidebar (not used)'=>'Inactive Sidebar (not used)','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.','Drag and drop your files into the area below. Multiple files are allowed.'=>'Drag and drop your files into the area below. Multiple files are allowed.','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.','Missing Widgets'=>'Missing Widgets','Removing and Reusing'=>'Removing and Reusing','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customise the display of this screen.','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once.','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'Managing pages is very similar to managing posts, and the screens can be customised in the same way.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorised or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customisable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Links in the toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.','Deleting Links'=>'Deleting Links','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Links may be separated into Link Categories; these are different than the categories used on your posts.','Learn more about WordPress %2$s.'=>'Learn more about WordPress %2$s.','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:','You can view all posts made by a user by clicking on the number under the Posts column.'=>'You can view all posts made by a user by clicking on the number under the Posts column.','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.','Managing Pages'=>'Managing Pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Bin removes your post from this list and places it in the Bin, from which you can permanently delete it.','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.','Go to Dashboard → Home'=>'Go to Dashboard → Home','Go to Dashboard → Updates'=>'Go to Dashboard → Updates','Profile updated.'=>'Profile updated.','Hi, + +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. + +Please click the following link to confirm the invite: +%4$s'=>'Hi, + +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. + +Please click the following link to confirm the invite: +%4$s','Core Developer'=>'Core Developer','No valid plugins were found.'=>'No valid plugins were found.','The plugin contains no files.'=>'The plugin contains no files.','The package could not be installed.'=>'The package could not be installed.','Attachment Post URL'=>'Attachment Post URL','admin menuAll Links'=>'All Links','%s plugins'=>'%s plugins','%s plugin'=>'%s plugin','Failed to optimize the %1$s table. Error: %2$s'=>'Failed to optimise the %1$s table. Error: %2$s','Successfully optimized the %s table.'=>'Successfully optimised the %s table.','The %s table is already optimized.'=>'The %s table is already optimised.','Successfully repaired the %s table.'=>'Successfully repaired the %s table.','The %s table is okay.'=>'The %s table is fine.','View version %s details.'=>'View version %s details.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Update %2$s or learn how to browse happy','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, Video, or Other File','Insert media from another website'=>'Insert media from another website','Error: Could not connect to the server. Please verify the settings are correct.'=>'Error: Could not connect to the server. Please verify the settings are correct.','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a grey dotted-line rectangle appear in the location you want to place the box.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimise this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.','Updates %s'=>'Updates %s','Installed Plugins'=>'Installed Plugins','Plugins %s'=>'Plugins %s','All Users'=>'All Users','Confirm Deletion'=>'Confirm Deletion','Role'=>'Role','Add Existing User'=>'Add Existing User','Search Users'=>'Search Users','User removed from this site.'=>'User removed from this site.','Changed roles.'=>'Changed roles.','Caution:'=>'Caution:','User added.'=>'User added.','Super Admin'=>'Super Admin','Version %s'=>'Version %s','Update Available (%s)'=>'Update Available (%s)' . "\0" . 'Update Available (%s)','Deactivate'=>'Deactivate','Delete Site'=>'Delete Site','Settings saved.'=>'Settings saved.','For more information:'=>'For more information:','About Pages'=>'About Pages','Title and Post Editor'=>'Title and Post Editor','Customizing This Display'=>'Customising This Display','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note: Neither of these options blocks access to your site — it is up to search engines to honour your request.','Post name'=>'Post name','sample permalink structuresample-post'=>'sample-post','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'This importer is not installed. Please install importers from the main site.','Site Language'=>'Site Language','Attempt to notify any blogs linked to from the post'=>'Attempt to notify any blogs linked to from the post','Hi, +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. +If you do not want to join this site please ignore +this email. This invitation will expire in a few days. + +Please click the following link to activate your user account: +%%s'=>'Hi, +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. +If you do not want to join this site please ignore +this email. This invitation will expire in a few days. + +Please click the following link to activate your user account: +%%s','Post Formats'=>'Post Formats','Full Width Template'=>'Full Width Template','Featured Images'=>'Featured Images','Featured Image Header'=>'Featured Image Header','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.','There are some invalid menu items. Please check or delete them.'=>'There are some invalid menu items. Please check or delete them.','term nameName'=>'Name','meta nameName'=>'Name','theme nameName'=>'Name','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the licence WordPress uses.','If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'The uploaded file exceeds the %s directive that was specified in the HTML form.','External Libraries'=>'External Libraries','Network Setup'=>'Network Setup','Available Tools'=>'Available Tools','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'UK English Translators','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible licence, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress licence, it is not recommended to use them.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first.'=>'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first.','All Comments'=>'All Comments','Lead Developer'=>'Lead Developer','Cofounder, Project Lead'=>'Cofounder, Project Lead','Core Contributors to WordPress %s'=>'Core Contributors to WordPress %s','Project Leaders'=>'Project Leaders','Credits'=>'Credits','removing-widgetDeactivate'=>'Deactivate','Your browser is out of date!'=>'Your browser is out of date!','You are using an insecure browser!'=>'You are using an insecure browser!','Freedoms'=>'Freedoms','You can use one of these cool headers or show a random one on each page.'=>'You can use one of these cool headers or show a random one on each page.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'If you do not want to upload your own image, you can use one of these cool headers, or show a random one.','You can choose one of your previously uploaded headers, or show a random one.'=>'You can choose one of your previously uploaded headers, or show a random one.','Collapse Menu'=>'Collapse Menu','Uploaded Images'=>'Uploaded Images','Random: Show a different image on each page.'=>'Random: Show a different image on each page.','You have specified this user for deletion:'=>'You have specified this user for deletion:' . "\0" . 'You have specified these users for deletion:','%s Page Template'=>'%s Page Template','You cannot delete a plugin while it is active on the main site.'=>'You cannot delete a plugin while it is active on the main site.','This plugin may be active on other sites in the network.'=>'This plugin may be active on other sites in the network.' . "\0" . 'These plugins may be active on other sites in the network.','Default Post Format'=>'Default Post Format','Any edits to files from this screen will be reflected on all sites in the network.'=>'Any edits to files from this screen will be reflected on all sites in the network.','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.','The boxes on your Dashboard screen are:'=>'The boxes on your Dashboard screen are:','sample-page'=>'sample-page','Sample Page'=>'Sample Page','Retro (Generated)'=>'Retro (Generated)','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'You currently have only one theme enabled for this site. Visit the Network Admin to enable or install more themes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Super admin privileges cannot be removed because this user has the network admin email.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.','Visual Editor RTL Stylesheet'=>'Visual Editor RTL Stylesheet','This is a file in your current parent theme.'=>'This is a file in your current parent theme.','This child theme inherits templates from a parent theme, %s.'=>'This child theme inherits templates from a parent theme, %s.','Network Enable'=>'Network Enable','Your WordPress database has been successfully updated!'=>'Your WordPress database has been successfully updated!','Update Complete'=>'Update Complete','Update WordPress Database'=>'Update WordPress Database','The database update process may take a little while, so please be patient.'=>'The database update process may take a little while, so please be patient.','Database Update Required'=>'Database Update Required','No Update Required'=>'No Update Required','WordPress › Update'=>'WordPress › Update','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localised version to be released.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.','Update Theme'=>'Update Theme','Update Plugin'=>'Update Plugin','Theme updated successfully.'=>'Theme updated successfully.','Theme update failed.'=>'Theme update failed.','Plugin updated successfully.'=>'Plugin updated successfully.','Plugin update failed.'=>'Plugin update failed.','Update package not available.'=>'Update package not available.','Date range:'=>'Date range:','Authors:'=>'Authors:','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.','All content'=>'All content','Choose what to export'=>'Choose what to export','commentsMine (%s)'=>'Mine (%s)' . "\0" . 'Mine (%s)','%s — WordPress'=>'%s — WordPress','column nameIn Response To'=>'In Response To','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.','Remember to click Update to save metadata entered or changed.'=>'Remember to click Update to save metadata entered or changed.','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.','This screen allows you to edit fields for metadata in a file within the media library.'=>'This screen allows you to edit fields for metadata in a file within the media library.','Email or Username'=>'Email or Username','Search installed themes'=>'Search installed themes','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Please Note: Any customisations you have made to theme files will be lost. Please consider using child themes for modifications.','postsSticky (%s)'=>'Sticky (%s)' . "\0" . 'Sticky (%s)','Check again.'=>'Check again.','Last checked on %1$s at %2$s.'=>'Last checked on %1$s at %2$s.','Please select one or more plugins to update.'=>'Please select one or more plugins to update.','Please select one or more themes to update.'=>'Please select one or more themes to update.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'The update process is starting. This process may take a while on some hosts, so please be patient.','Apply Filters'=>'Apply Filters','Editor Style'=>'Editor Style','Sorry, you are not allowed to edit users.'=>'Sorry, you are not allowed to edit users.','To perform the requested action, WordPress needs to access your web server.'=>'To perform the requested action, WordPress needs to access your web server.','Current Page'=>'Current Page','No themes match your request.'=>'No themes match your request.','Search Sites'=>'Search Sites','Create a New User'=>'Create a New User','You have %1$s and %2$s.'=>'You have %1$s and %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s user' . "\0" . '%s users','https://wordpress.org/news/feed/'=>'https://en-gb.wordpress.org/news/feed/','https://wordpress.org/news/'=>'https://en-gb.wordpress.org/news/','(Signup has been disabled. Only members of this site can comment.)'=>'(Signup has been disabled. Only members of this site can comment.)','There is a new version of %1$s available. View version %4$s details.'=>'There is a new version of %1$s available. View version %4$s details.','Go to Themes page'=>'Go to Themes page','Go to WordPress Updates page'=>'Go to WordPress Updates page','Go to Plugins page'=>'Go to Plugins page','Click Save Menu to make pending menu items public.'=>'Click Save Menu to make pending menu items public.','Storage Space'=>'Storage Space','Create a New Site'=>'Create a New Site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Images of exactly %1$d × %2$d pixels will be used as-is.','Crop and Publish'=>'Crop and Publish','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.','FTP Password'=>'FTP Password','FTP Username'=>'FTP Username','FTP/SSH Password'=>'FTP/SSH Password','FTP/SSH Username'=>'FTP/SSH Username','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'The Optional fields let you customise the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorised” category could be /topics/uncategorised instead of /category/uncategorised.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.','To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.'=>'To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.','If you do not remember your credentials, you should contact your web host.'=>'If you do not remember your credentials, you should contact your web host.','Please enter your FTP credentials to proceed.'=>'Please enter your FTP credentials to proceed.','Please enter your FTP or SSH credentials to proceed.'=>'Please enter your FTP or SSH credentials to proceed.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'You can Upload a theme manually if you have already downloaded its zip archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Contributors can write and manage their posts but not publish posts or upload media files.','Administrators have access to all the administration features.'=>'Administrators have access to all the administration features.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customisations.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'If you delete a link, it will be removed permanently, as Links do not have a Rubbish Bin function yet.','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.','You can also create posts with the Press This bookmarklet.'=>'You can also create posts with the Press This bookmarklet.','Do not forget to click on the Save Changes button when you are finished.'=>'Do not forget to click on the Save Changes button when you are finished.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'You can customise the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a colour.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Editors can publish posts, manage posts as well as manage other people’s posts, etc.','Remember to click the Update Profile button when you are finished.'=>'Remember to click the Update Profile button when you are finished.','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.','This screen contains the settings that affect the display of your content.'=>'This screen contains the settings that affect the display of your content.','UTC means Coordinated Universal Time.'=>'UTC is the same as Greenwich Mean Time (GMT).','The fields on this screen determine some of the basics of your site setup.'=>'The fields on this screen determine some of the basics of your site setup.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'You must click the Save Changes button at the bottom of the screen for new settings to take effect.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimise boxes by clicking on the title bar of the box.','Your themes are all up to date.'=>'Your themes are all up to date.','Your plugins are all up to date.'=>'Your plugins are all up to date.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.','An updated version of WordPress is available.'=>'An updated version of WordPress is available.','You have the latest version of WordPress.'=>'You have the latest version of WordPress.','Function Name…'=>'Function Name…','Activate Plugin & Run Importer'=>'Activate Plugin & Run Importer','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.','Categories can be selectively converted to tags using the category to tag converter.'=>'Categories can be selectively converted to tags using the category to tag converter.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'You can customise the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Widgets are independent sections of content that can be placed into any widgetised area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.','After typing in your edits, click Update File.'=>'After typing in your edits, click Update File.','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.','(no parent)'=>'(no parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.','All updates have been completed.'=>'All updates have been completed.','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — The description is not prominent by default; however, some themes may display it.','Name — The name is how it appears on your site.'=>'Name — The name is how it appears on your site.','When adding a new tag on this screen, you’ll fill in the following fields:'=>'When adding a new tag on this screen, you’ll fill in the following fields:','When adding a new category on this screen, you’ll fill in the following fields:'=>'When adding a new category on this screen, you’ll fill in the following fields:','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'You can use categories to define sections of your site and group related posts. The default category is “Uncategorised” until you change it in your writing settings.','You need JavaScript to choose a part of the image.'=>'You need JavaScript to choose a part of the image.','Crop Header Image'=>'Crop Header Image','Image Upload Error'=>'Image Upload Error','Text Color'=>'Text Colour','Restore Original Header Image'=>'Restore Original Header Image','This will restore the original header image. You will not be able to restore any customizations.'=>'This will restore the original header image. You will not be able to restore any customisations.','Reset Image'=>'Reset Image','Remove Header Image'=>'Remove Header Image','This will remove the header image. You will not be able to restore any customizations.'=>'This will remove the header image. You will not be able to restore any customisations.','Default Images'=>'Default Images','Delete this comment permanently'=>'Delete this comment permanently','Restore this comment from the Trash'=>'Restore this comment from the Bin','Allow comments'=>'Allow comments','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.','You can customize the display of this screen in a number of ways:'=>'You can customise the display of this screen in a number of ways:','Search installed plugins'=>'Search installed plugins','Your theme supports one menu. Select which menu you would like to use.'=>'Your theme supports %s menu. Select which menu appears in each location.' . "\0" . 'Your theme supports %s menus. Select which menu appears in each location.','Your theme does not support navigation menus or widgets.'=>'Your theme does not support navigation menus or widgets.','Categories and Tags Converter'=>'Categories and Tags Converter','Most Recent'=>'Most Recent','Start date:'=>'Start date:','Theme InstallerTag'=>'Tag','Plugin InstallerTag'=>'Tag','verbClear'=>'Clear','commentMark as spam'=>'Mark as spam','Remove Background Image'=>'Remove Background Image','Comments on “%s”'=>'Comments on “%s”','Show advanced menu properties'=>'Show advanced menu properties','You have version %1$s installed. Update to %2$s.'=>'You have version %1$s installed. Update to %2$s.','Enabled'=>'Enabled','commentNot Spam'=>'Not Spam','This will restore the original background image. You will not be able to restore any customizations.'=>'This will restore the original background image. You will not be able to restore any customisations.','WordPress Blog'=>'WordPress Blog','Remove Users from Site'=>'Remove Users from Site','— No role for this site —'=>'— No role for this site —','New WordPress Site'=>'New WordPress Site','My Site'=>'My Site','Sorry, you are not allowed to create posts or drafts on this site.'=>'Sorry, you are not allowed to create posts or drafts on this site.','Sorry, you are not allowed to create pages on this site.'=>'Sorry, you are not allowed to create pages on this site.','Custom site suspended message.'=>'Custom site suspended message.','Custom site inactive message.'=>'Custom site inactive message.','Custom site deleted message.'=>'Custom site deleted message.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:','No items.'=>'No items.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.','The installer attempted to contact a random hostname (%s) on your domain.'=>'The installer attempted to contact a random hostname (%s) on your domain.','The menu item has been successfully deleted.'=>'The menu item has been successfully deleted.','Please provide a custom field name.'=>'Please provide a custom field name.','Display Options'=>'Display Options','Remove Image'=>'Remove Image','Other users have been removed.'=>'Other users have been removed.','You cannot remove the current user.'=>'You cannot remove the current user.','There are no valid users selected for removal.'=>'There are no valid users selected for removal.','Confirm Removal'=>'Confirm Removal','You have specified these users for removal:'=>'You have specified these users for removal:','User deletion is not allowed from this screen.'=>'User deletion is not allowed from this screen.','%s updated successfully.'=>'%s updated successfully.','No thanks, do not remind me again'=>'No thanks, do not remind me again','Yes, take me to my profile page'=>'Yes, take me to my profile page','Your chosen password.'=>'Your chosen password.','Sorry, you are not allowed to restore this item from the Trash.'=>'Sorry, you are not allowed to restore this item from the Bin.','Sorry, you are not allowed to move this item to the Trash.'=>'Sorry, you are not allowed to move this item to the Bin.','%s comment restored from the Trash.'=>'%s comment restored from the Bin.' . "\0" . '%s comments restored from the Bin.','%s comment moved to the Trash.'=>'%s comment moved to the Bin.' . "\0" . '%s comments moved to the Bin.','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.','That user is already a member of this site.'=>'That user is already a member of this site.','User has been added to your site.'=>'User has been added to your site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.','This will remove the background image. You will not be able to restore any customizations.'=>'This will remove the background image. You will not be able to restore any customisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.','Tag Template'=>'Tag Template','Author Template'=>'Author Template','Visual Editor Stylesheet'=>'Visual Editor Stylesheet','Page saved.'=>'Page saved.','More information about %s'=>'More information about %s','Grant this user super admin privileges for the Network.'=>'Grant this user super admin privileges for the Network.','This user has super admin privileges.'=>'This user has super admin privileges.','Important:'=>'Important:','Update to version %s'=>'Update to version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Error: "Table Prefix" can only contain numbers, letters, and underscores.','Usernames cannot be changed.'=>'Usernames cannot be changed.','items'=>'items','The menu has been successfully deleted.'=>'The menu has been successfully deleted.','Site visibility'=>'Site visibility','CSS Classes (optional)'=>'CSS Classes (optional)','Link Target'=>'Link Target','Save Menu'=>'Save Menu','Updating Theme %1$s (%2$d/%3$d)'=>'Updating Theme %1$s (%2$d/%3$d)','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.','This resulted in an error message: %s'=>'This resulted in an error message: %s','You must provide a valid email address.'=>'You must provide a valid email address.','The network already exists.'=>'The network already exists.','You must provide a name for your network of sites.'=>'You must provide a name for your network of sites.','You must provide a domain name.'=>'You must provide a domain name.','Notice:'=>'Notice:','Get Shortlink'=>'Get Shortlink','The update of %s failed.'=>'The update of %s failed.','Updating Plugin %1$s (%2$d/%3$d)'=>'Updating Plugin %1$s (%2$d/%3$d)','The password you chose during installation.'=>'The password you chose during installation.','User already exists. Password inherited.'=>'User already exists. Password inherited.','WordPress updated successfully.'=>'WordPress updated successfully.','Update WordPress'=>'Update WordPress','Update Plugins'=>'Update Plugins','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.','WordPress Updates'=>'WordPress Updates','Edit menu item'=>'Edit menu item','Go to Dashboard'=>'Go to Dashboard','Drop-in (%s)'=>'Drop-in (%s)' . "\0" . 'Drop-ins (%s)','Must-Use (%s)'=>'Must-Use (%s)' . "\0" . 'Must-Use (%s)','Inactive:'=>'Inactive:','Yes, delete these files and data'=>'Yes, delete these files and data','Are you sure you want to delete these files and data?'=>'Are you sure you want to delete these files and data?','You are about to remove the following plugin:'=>'You are about to remove the following plugin:' . "\0" . 'You are about to remove the following plugins:','Delete Plugin'=>'Delete Plugin' . "\0" . 'Delete Plugins','This timezone does not observe daylight saving time.'=>'This timezone does not observe daylight saving time.','This timezone is currently in daylight saving time.'=>'This timezone is currently in daylight saving time.','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.','View All'=>'View All','Please enter a valid menu name.'=>'Please enter a valid menu name.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.','Executed before Multisite is loaded.'=>'Executed before Multisite is loaded.','External object cache.'=>'External object cache.','Custom maintenance message.'=>'Custom maintenance message.','Custom database error message.'=>'Custom database error message.','Custom database class.'=>'Custom database class.','Advanced caching plugin.'=>'Advanced caching plugin.','File is empty. Please upload something more substantial.'=>'File is empty. Please upload something more substantial.','This comment is already marked as spam.'=>'This comment is already marked as spam.','View Trash'=>'View Bin','This comment is already in the Trash.'=>'This comment is already in the Bin.','This comment is already approved.'=>'This comment is already approved.','This comment is currently in the Trash.'=>'This comment is currently in the Bin.','This comment is currently marked as spam.'=>'This comment is currently marked as spam.','This comment is currently approved.'=>'This comment is currently approved.','Moderate Comment'=>'Moderate Comment','Categories:'=>'Categories:','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Drag widgets here to remove them from the sidebar but keep their settings.','Available Widgets'=>'Available Widgets','Error in displaying the widget settings form.'=>'Error in displaying the widget settings form.','Error while saving.'=>'Error while saving.','Changes saved.'=>'Changes saved.','Save Widget'=>'Save Widget','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Select both the sidebar for this widget and the position of the widget in that sidebar.','Widget %s'=>'Widget %s','Inactive Widgets'=>'Inactive Widgets','Change role to…'=>'Change role to…','%1$s (%2$s)'=>'%1$s (%2$s)','Other users have been deleted.'=>'Other users have been deleted.','You cannot delete the current user.'=>'You cannot delete the current user.','Other user roles have been changed.'=>'Other user roles have been changed.','The current user’s role must have user editing capabilities.'=>'The current user’s role must have user editing capabilities.','New user created.'=>'New user created.','There are no valid users selected for deletion.'=>'There are no valid users selected for deletion.','Delete Users'=>'Delete Users','Skip Confirmation Email'=>'Skip Confirmation Email','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Invitation email sent to new user. A confirmation link must be clicked before their account is created.','[%s] Joining Confirmation'=>'[%s] Joining Confirmation','Update User'=>'Update User','Update Profile'=>'Update Profile','Additional Capabilities'=>'Additional Capabilities','Type your new password again.'=>'Type your new password again.','New Password'=>'New Password','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Share a little biographical information to fill out your profile. This may be shown publicly.','Biographical Info'=>'Biographical Info','About the user'=>'About the user','About Yourself'=>'About Yourself','Contact Info'=>'Contact Info','Display name publicly as'=>'Display name publicly as','Nickname'=>'Nickname','Last Name'=>'Last Name','First Name'=>'First Name','Enable keyboard shortcuts for comment moderation.'=>'Enable keyboard shortcuts for comment moderation.','Admin Color Scheme'=>'Admin Colour Scheme','Disable the visual editor when writing'=>'Disable the visual editor when writing','Visual Editor'=>'Visual Editor','Personal Options'=>'Personal Options','User updated.'=>'User updated.','Always use https when visiting the admin'=>'Always use https when visiting the admin','Use https'=>'Use https','Edit user'=>'Edit user','Media file restored from the Trash.'=>'Media file restored from the Bin.','Media file moved to the Trash.'=>'Media file moved to the Bin.','Media file permanently deleted.'=>'Media file permanently deleted.','Sorry, you are not allowed to delete these items.'=>'Sorry, you are not allowed to delete these items.','Your WordPress database is already up to date!'=>'Your WordPress database is already up to date!','Installing theme from uploaded file: %s'=>'Installing theme from uploaded file: %s','Upload Theme'=>'Upload Theme','Installing Theme: %s'=>'Installing Theme: %s','Installing plugin from uploaded file: %s'=>'Installing plugin from uploaded file: %s','Upload Plugin'=>'Upload Plugin','Installing Plugin: %s'=>'Installing Plugin: %s','Plugin failed to reactivate due to a fatal error.'=>'Plugin failed to reactivate due to a fatal error.','Plugin reactivated successfully.'=>'Plugin reactivated successfully.','Plugin Reactivation'=>'Plugin Reactivation','Installation failed.'=>'Installation failed.','Compatibility with WordPress %s: Unknown'=>'Compatibility with WordPress %s: unknown','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibility with WordPress %s: 100%% (according to its author)','Hide hidden updates'=>'Hide hidden updates','Show hidden updates'=>'Show hidden updates','Bring back this update'=>'Bring back this update','Hide this update'=>'Hide this update','Broken Themes'=>'Broken Themes','You are about to delete this theme \'%s\' + \'Cancel\' to stop, \'OK\' to delete.'=>'You are about to delete this theme \'%s\' + \'Cancel\' to stop, \'OK\' to delete.','Theme deleted.'=>'Theme deleted.','Select theme to edit:'=>'Select theme to edit:','Edit Themes'=>'Edit Themes','Tags:'=>'Tags:','Compare Revisions of “%s”'=>'Compare revisions of “%s”','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'You cannot edit this item because it is in the Bin. Please restore it and try again.','Sorry, you are not allowed to edit this item.'=>'Sorry, you are not allowed to edit this item.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'You attempted to edit an item that does not exist. Perhaps it was deleted?','No plugins found.'=>'No plugins found.','Inactive (%s)'=>'Inactive (%s)' . "\0" . 'Inactive (%s)','Recently Active (%s)'=>'Recently Active (%s)' . "\0" . 'Recently Active (%s)','Active (%s)'=>'Active (%s)' . "\0" . 'Active (%s)','pluginsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','Clear List'=>'Clear List','Visit plugin site'=>'Visit plugin site','Plugin could not be deleted due to an error: %s'=>'Plugin could not be deleted due to an error: %s','Plugin could not be activated because it triggered a fatal error.'=>'Plugin could not be activated because it triggered a fatal error.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.','No, return me to the plugin list'=>'No, return me to the plugin list','Yes, delete these files'=>'Yes, delete these files','Are you sure you want to delete these files?'=>'Are you sure you want to delete these files?','Plugin InstallerPopular'=>'Popular','Plugin InstallerFeatured'=>'Featured','Update File'=>'Update File','Documentation:'=>'Documentation:','Plugin Files'=>'Plugin Files','Select plugin to edit:'=>'Select plugin to edit:','File edited successfully.'=>'File edited successfully.','Files of this type are not editable.'=>'Files of this type are not editable.','Edit Plugins'=>'Edit Plugins','All Settings'=>'All Settings','Update Services'=>'Update Services','Default Mail Category'=>'Default Mail Category','Login Name'=>'Login Name','Port'=>'Port','Mail Server'=>'Mail Server','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.','Post via email'=>'Post via email','Default Link Category'=>'Default Link Category','Default Post Category'=>'Default Post Category','WordPress should correct invalidly nested XHTML automatically'=>'WordPress should correct invalidly nested XHTML automatically','Convert emoticons like :-) and :-P to graphics on display'=>'Convert emoticons like :-) and :-P to graphics on display','Formatting'=>'Formatting','Writing Settings'=>'Writing Settings','Encoding for pages and feeds'=>'Encoding for pages and feeds','Full text'=>'Full text','Syndication feeds show the most recent'=>'Syndication feeds show the most recent','posts'=>'posts','Blog pages show at most'=>'Blog pages show at most','Warning: these pages should not be the same!'=>'Warning: these pages should not be the same!','Posts page: %s'=>'Posts page: %s','A static page (select below)'=>'A static page (select below)','Reading Settings'=>'Reading Settings','Privacy Settings'=>'Privacy Settings','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.','Tag base'=>'Tag base','Category base'=>'Category base','Optional'=>'Optional','Custom Structure'=>'Custom Structure','Numeric'=>'Numeric','Month and name'=>'Month and name','Day and name'=>'Day and name','Permalink structure updated.'=>'Permalink structure updated.','Permalink structure updated. Remove write access on %s file now!'=>'Permalink structure updated. Remove write access on %s file now!','Permalink Settings'=>'Permalink Settings','Organize my uploads into month- and year-based folders'=>'Organise my uploads into month- and year-based folders','Configuring this is optional. By default, it should be blank.'=>'Configuring this is optional. By default, it should be blank.','Full URL path to files'=>'Full URL path to files','Store uploads in this folder'=>'Store uploads in this folder','Uploading Files'=>'Uploading Files','Large size'=>'Large size','Max Height'=>'Max Height','Max Width'=>'Max Width','Medium size'=>'Medium size','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Crop thumbnail to exact dimensions (normally thumbnails are proportional)','Thumbnail size'=>'Thumbnail size','Image sizes'=>'Image sizes','Media Settings'=>'Media Settings','Week Starts On'=>'Week Starts On','Custom:'=>'Custom:','This timezone is currently in standard time.'=>'This time zone is currently in standard time.','Timezone'=>'Time zone','New User Default Role'=>'New User Default Role','Anyone can register'=>'Anyone can register','Membership'=>'Membership','General Settings'=>'General Settings','MonsterID (Generated)'=>'MonsterID (Generated)','Wavatar (Generated)'=>'Wavatar (Generated)','Identicon (Generated)'=>'Identicon (Generated)','Gravatar Logo'=>'Gravatar Logo','Blank'=>'Blank','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.','X — Even more mature than above'=>'X — Even more mature than above','R — Intended for adult audiences above 17'=>'R — Intended for adult audiences above 17','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possibly offensive, usually for audiences 13 and above','G — Suitable for all audiences'=>'G — Suitable for all audiences','Maximum Rating'=>'Maximum Rating','Show Avatars'=>'Show Avatars','Avatar Display'=>'Avatar Display','Avatars'=>'Avatars','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Bin. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)','Comment Moderation'=>'Comment Moderation','Comment author must have a previously approved comment'=>'Comment author must have a previously approved comment','Before a comment appears'=>'Before a comment appears','A comment is held for moderation'=>'A comment is held for moderation','Anyone posts a comment'=>'Anyone posts a comment','Email me whenever'=>'Email me whenever','newer'=>'newer','older'=>'older','Users must be registered and logged in to comment'=>'Users must be registered and logged in to comment','Comment author must fill out name and email'=>'Comment author must fill out name and email','Other comment settings'=>'Other comment settings','Discussion Settings'=>'Discussion Settings','No users found.'=>'No users found.','Update Themes'=>'Update Themes','Visit'=>'Visit','Removed'=>'Removed','Multisite support is not enabled.'=>'Multisite support is not enabled.','Permalinks'=>'Permalinks','Privacy'=>'Privacy','Reading'=>'Reading','Writing'=>'Writing','settings screenGeneral'=>'General','Profile'=>'Profile','Comments %s'=>'Comments %s','Library'=>'Library','Upload New Media'=>'Upload New Media','Repair and Optimize Database'=>'Repair and Optimise Database','Repair Database'=>'Repair Database','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.','WordPress › Database Repair'=>'WordPress › Database Repair','Link not found.'=>'Link not found.','No links found.'=>'No links found.','Search Links'=>'Search Links','%s link deleted.'=>'%s link deleted.' . "\0" . '%s links deleted','Success!'=>'Success!','Please provide the following information. Do not worry, you can always change these settings later.'=>'Please provide the following information. Do not worry, you can always change these settings later.','Information needed'=>'Information needed','Install WordPress'=>'Install WordPress','Double-check your email address before continuing.'=>'Double-check your email address before continuing.','Your Email'=>'Your Email','User(s) already exists.'=>'User(s) already exists.','WordPress › Installation'=>'WordPress › Installation','Error: Please enter an email address.'=>'Error: Please enter an email address.','Error: Passwords may not contain the character "\\".'=>'Error: Passwords may not contain the character "\\".','Error: Please enter a password.'=>'Error: Please enter a password.','Default post slughello-world'=>'hello-world','Hello world!'=>'Hello world!','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Welcome to %s. This is your first post. Edit or delete it, then start writing!','Default category slugUncategorized'=>'Uncategorised','Note that password carefully! It is a random password that was generated just for you.'=>'Note that password carefully! It is a random password that was generated just for you.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'An automated WordPress update has failed to complete! Please notify the site administrator.','An automated WordPress update has failed to complete - please attempt the update again now.'=>'An automated WordPress update has failed to complete - please attempt the update again now.','Latest'=>'Latest','Update to %s'=>'Update to %s','You are using a development version (%1$s). Cool! Please stay updated.'=>'You are using a development version (%1$s). Cool! Please stay updated.','Upgrading database…'=>'Upgrading database…','The update could not be unpacked'=>'The update could not be unpacked','Verifying the unpacked files…'=>'Verifying the unpacked files…','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.','Could not fully remove the theme %s.'=>'Could not fully remove the theme %s.','Unable to locate WordPress theme directory.'=>'Unable to locate WordPress theme directory.','This theme is already installed.'=>'This theme is already installed.','Version: %s'=>'Version: %s','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'If you have a theme in a .zip format, you may install or update it by uploading it here.','Find Themes'=>'Find Themes','Holiday'=>'Holiday','Subject'=>'Subject','Sticky Post'=>'Sticky Post','Theme Options'=>'Theme Options','Features'=>'Features','Right Sidebar'=>'Right Sidebar','Left Sidebar'=>'Left Sidebar','Four Columns'=>'Four Columns','Three Columns'=>'Three Columns','Two Columns'=>'Two Columns','One Column'=>'One Column','Feature Filter'=>'Feature Filter','Screen Options'=>'Screen Options','Disable accessibility mode'=>'Disable accessibility mode','Enable accessibility mode'=>'Enable accessibility mode','Install Themes'=>'Install Themes','Upload file and import'=>'Upload file and import','Maximum size: %s'=>'Maximum size: %s','Choose a file from your computer:'=>'Choose a file from your computer:','Before you can upload your import file, you will need to fix the following error:'=>'Before you can upload your import file, you will need to fix the following error:','Add Custom Field'=>'Add Custom Field','Enter new'=>'Enter new','Key'=>'Key','Comment by %s marked as spam.'=>'Comment by %s marked as spam.','Comment by %s moved to the Trash.'=>'Comment by %s moved to the Bin.','Submit Reply'=>'Submit Reply','Reply to Comment'=>'Reply to Comment','Missed schedule'=>'Missed schedule','Make this post sticky'=>'Make this post sticky','Not Sticky'=>'Not Sticky','Allow Pings'=>'Allow Pings','Allow Comments'=>'Allow Comments','Do not allow'=>'Do not allow','Allow'=>'Allow','–OR–'=>'–OR–','— No Change —'=>'— No Change —','Bulk Edit'=>'Bulk Edit','Visible'=>'Visible','Relationship'=>'Relationship','column nameComment'=>'Comment','column nameDate'=>'Date','column nameFile'=>'File','column nameTitle'=>'Title','Quick Edit'=>'Quick Edit','Quick Edit'=>'Quick Edit','Warning! Wildcard DNS may not be configured correctly!'=>'Warning! Wildcard DNS may not be configured correctly!','Just another %s site'=>'Just another %s site','Just another WordPress site'=>'Just another WordPress site','Auto Draft'=>'Auto Draft','Sorry, you are not allowed to edit posts as this user.'=>'Sorry, you are not allowed to edit posts as this user.','Sorry, you are not allowed to edit pages as this user.'=>'Sorry, you are not allowed to edit pages as this user.','The plugin does not have a valid header.'=>'The plugin does not have a valid header.','Plugin file does not exist.'=>'Plugin file does not exist.','Invalid plugin path.'=>'Invalid plugin path.','Could not fully remove the plugins %s.'=>'Could not fully remove the plugins %s.','One of the plugins is invalid.'=>'One of the plugins is invalid.','The plugin generated unexpected output.'=>'The plugin generated unexpected output.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Warning: this plugin has not been tested with your current version of WordPress.','Average Rating'=>'Average Rating','WordPress.org Plugin Page »'=>'WordPress.org Plugin Page »','Compatible up to:'=>'Compatible up to:','%s or higher'=>'%s or higher','Requires WordPress Version:'=>'Requires WordPress:','Last Updated:'=>'Last Updated:','(based on %s rating)'=>'(based on %s rating)' . "\0" . '(based on %s ratings)','Plugin zip file'=>'Plugin zip file','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'If you have a plugin in a .zip format, you may install or update it by uploading it here.','Search Plugins'=>'Search Plugins','You may also browse based on the most popular tags in the Plugin Directory:'=>'You may also browse based on the most popular tags in the Plugin Directory:','Popular tags'=>'Popular tags','(Leave at 0 for no rating.)'=>'(Leave at 0 for no rating.)','Rating'=>'Rating','Notes'=>'Notes','RSS Address'=>'RSS Address','Image Address'=>'Image Address','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea, check out XFN.','sweetheart'=>'sweetheart','date'=>'date','crush'=>'crush','muse'=>'muse','romantic'=>'romantic','spouse'=>'spouse','sibling'=>'sibling','parent'=>'parent','kin'=>'kin','child'=>'child','family'=>'family','neighbor'=>'neighbour','co-resident'=>'co-resident','geographical'=>'geographical','colleague'=>'colleague','co-worker'=>'co-worker','professional'=>'professional','met'=>'met','physical'=>'physical','friend'=>'friend','acquaintance'=>'acquaintance','contact'=>'contact','friendship'=>'friendship','another web address of mine'=>'another web address of mine','identity'=>'identity','rel:'=>'rel:','Choose the target frame for your link.'=>'Choose the target frame for your link.','_none — same window or tab.'=>'_none — same window or tab.','_top — current window or tab, with no frames.'=>'_top — current window or tab, with no frames.','_blank — new window or tab.'=>'_blank — new window or tab.','You are about to delete this link \'%s\' + \'Cancel\' to stop, \'OK\' to delete.'=>'You are about to delete this link \'%s\' + \'Cancel\' to stop, \'OK\' to delete.','Keep this link private'=>'Keep this link private','Visit Link'=>'Visit Link','Main Page (no parent)'=>'Main Page (no parent)','Show comments'=>'Show comments','Separate multiple URLs with spaces'=>'Separate multiple URLs with spaces','Send trackbacks to:'=>'Send trackbacks to:','Already pinged:'=>'Already pinged:','New category name'=>'New category name','Publish immediately'=>'Publish immediately','Stick this post to the front page'=>'Stick this post to the front page','Status:'=>'Status:','Preview Changes'=>'Preview Changes','Link text, e.g. “Ransom Demands (PDF)”'=>'Link text, e.g. “Ransom Demands (PDF)”','Link to image'=>'Link to image','Link Image To:'=>'Link Image To:','Image Caption'=>'Image Caption','Filter »'=>'Filter »','All Types'=>'All Types','Search Media'=>'Search Media','Update gallery settings'=>'Update gallery settings','Gallery columns:'=>'Gallery columns:','Order:'=>'Order:','Random'=>'Random','Date/Time'=>'Date/Time','Menu order'=>'Menu order','Order images by:'=>'Order images by:','Image File'=>'Image File','Link thumbnails to:'=>'Link thumbnails to:','Descending'=>'Descending','Ascending'=>'Ascending','Sort Order:'=>'Sort Order:','All Tabs:'=>'All Tabs:','Save all changes'=>'Save all changes','Add media files from your computer'=>'Add media files from your computer','Insert into Post'=>'Insert into Post','Upload date:'=>'Upload date:','Hide'=>'Hide','Location of the uploaded file.'=>'Location of the uploaded file.','Alt text for the image, e.g. “The Mona Lisa”'=>'Alt text for the image, e.g. “The Mona Lisa”','File URL'=>'File URL','WordPress'=>'WordPress','Uploads'=>'Uploads','Gallery (%s)'=>'Gallery (%s)','From URL'=>'From URL','From Computer'=>'From Computer','Image saved'=>'Image saved','Unable to save the image.'=>'Unable to save the image.','Nothing to save, the image has not changed.'=>'Nothing to save, the image has not changed.','Error while saving the scaled image. Please reload the page and try again.'=>'Error while saving the scaled image. Please reload the page and try again.','Unable to create new image.'=>'Unable to create new image.','Image restored successfully.'=>'Image restored successfully.','Image metadata is inconsistent.'=>'Image metadata is inconsistent.','Cannot save image metadata.'=>'Cannot save image metadata.','Cannot load image metadata.'=>'Cannot load image metadata.','All sizes except thumbnail'=>'All sizes except thumbnail','All image sizes'=>'All image sizes','Apply changes to:'=>'Apply changes to:','Current thumbnail'=>'Current thumbnail','Thumbnail Settings'=>'Thumbnail Settings','Selection:'=>'Selection:','Aspect ratio:'=>'Aspect ratio:','Crop Selection'=>'Crop Selection','Crop Aspect Ratio'=>'Crop Aspect Ratio','Restore image'=>'Restore image','Previously edited copies of the image will not be deleted.'=>'Previously edited copies of the image will not be deleted.','Discard any changes and restore the original image.'=>'Discard any changes and restore the original image.','Restore Original Image'=>'Restore Original Image','Original dimensions %s'=>'Original dimensions %s','Scale Image'=>'Scale Image','Flip horizontal'=>'Flip horizontally','Flip vertical'=>'Flip vertically','Image data does not exist. Please re-upload the image.'=>'Image data does not exist. Please re-upload the image.','Proceed'=>'Proceed','Connection Type'=>'Connection Type','Private Key:'=>'Private Key:','Public Key:'=>'Public Key:','Authentication Keys'=>'Authentication Keys','Hostname'=>'Hostname','Connection Information'=>'Connection Information','SSH2'=>'SSH2','FTPS (SSL)'=>'FTPS (SSL)','FTP'=>'FTP','Empty archive.'=>'Empty archive.','Could not copy file.'=>'Could not copy file.','Could not extract file from archive.'=>'Could not extract file from archive.','Could not retrieve file from archive.'=>'Could not retrieve file from archive.','Could not create temporary file.'=>'Could not create temporary file.','Specified file failed upload test.'=>'Specified file failed upload test.','Invalid form submission.'=>'Invalid form submission.','File upload stopped by extension.'=>'File upload stopped by extension.','Failed to write file to disk.'=>'Failed to write file to disk.','Missing a temporary folder.'=>'Missing a temporary folder.','No file was uploaded.'=>'No file was uploaded.','The uploaded file was only partially uploaded.'=>'The uploaded file was only partially uploaded.','Sorry, that file cannot be edited.'=>'Sorry, that file cannot be edited.','Popup Comments Template'=>'Popup Comments Template','Comments Template'=>'Comments Template','.htaccess (for rewrite rules )'=>'.htaccess (for rewrite rules )','my-hacks.php (legacy hacks support)'=>'my-hacks.php (legacy hacks support)','Application Attachment Template'=>'Application Attachment Template','Audio Attachment Template'=>'Audio Attachment Template','Video Attachment Template'=>'Video Attachment Template','Image Attachment Template'=>'Image Attachment Template','Attachment Template'=>'Attachment Template','Theme Functions'=>'Theme Functions','Links Template'=>'Links Template','404 Template'=>'404 Template','Single Post'=>'Single Post','Search Form'=>'Search Form','Search Requests'=>'Search Requests','Category Template'=>'Category Template','Popup Comments'=>'Popup Comments','RTL Stylesheet'=>'RTL Stylesheet','Main Index Template'=>'Main Index Template','This widget requires JavaScript.'=>'This widget requires JavaScript.','dashboard%1$s %2$s'=>'%1$s %2$s','[Pending]'=>'[Pending]','From %1$s on %2$s %3$s'=>'From %1$s on %2$s %3$s','Move this comment to the Trash'=>'Move this comment to the bin','verbSpam'=>'Spam','Mark this comment as spam'=>'Mark this comment as spam','Reply to this comment'=>'Reply to this comment','Unapprove this comment'=>'Unapprove this comment','Approve this comment'=>'Approve this comment','Page'=>'Page' . "\0" . 'Pages','Configure'=>'Configure','View all'=>'View all','Other WordPress News'=>'Other WordPress News','Right Now'=>'Right Now','The uploaded file could not be moved to %s.'=>'The uploaded file could not be moved to %s.','Please select a file'=>'Please select a file','Return to the Theme Installer'=>'Return to the theme installer','Preview “%s”'=>'Preview “%s”','Successfully installed the theme %1$s %2$s.'=>'Successfully installed the theme %1$s %2$s.','Return to the Plugin Installer'=>'Return to the plugin installer','Successfully installed the plugin %1$s %2$s.'=>'Successfully installed the plugin %1$s %2$s.','Activate Plugin'=>'Activate Plugin','Could not copy files.'=>'Could not copy files.','WordPress is at the latest version.'=>'WordPress is at the latest version.','Theme installed successfully.'=>'Theme installed successfully.','Installing the theme…'=>'Installing the theme…','Could not remove the old theme.'=>'Could not remove the old theme.','Removing the old version of the theme…'=>'Removing the old version of the theme…','The theme is at the latest version.'=>'The theme is at the latest version.','Plugin installed successfully.'=>'Plugin installed successfully.','Installing the plugin…'=>'Installing the plugin…','Unpacking the package…'=>'Unpacking the package…','Installation package not available.'=>'Installation package not available.','Could not remove the old plugin.'=>'Could not remove the old plugin.','Removing the old version of the plugin…'=>'Removing the old version of the plugin…','Unpacking the update…'=>'Unpacking the update…','The plugin is at the latest version.'=>'The plugin is at the latest version.','Disabling Maintenance mode…'=>'Disabling Maintenance mode…','Enabling Maintenance mode…'=>'Enabling Maintenance mode…','Incompatible Archive.'=>'Incompatible Archive.','Could not create directory.'=>'Could not create directory.','Destination folder already exists.'=>'Destination folder already exists.','Installing the latest version…'=>'Installing the latest version…','Download failed.'=>'Download failed.','Unable to locate needed folder (%s).'=>'Unable to locate needed folder (%s).','Unable to locate WordPress content directory'=>'Unable to locate WordPress content directory','Unable to locate WordPress plugin directory.'=>'Unable to locate WordPress plugin directory.','Unable to locate WordPress root directory.'=>'Unable to locate WordPress root directory.','Filesystem error.'=>'Filesystem error.','Could not access filesystem'=>'Could not access filesystem','Invalid data provided.'=>'Invalid data provided.','Unable to perform command: %s'=>'Unable to perform command: %s','Public and Private keys incorrect for %s'=>'Public and Private keys incorrect for %s','Failed to connect to SSH2 Server %s'=>'Failed to connect to SSH2 Server %s','SSH2 password is required'=>'SSH2 password is required','SSH2 username is required'=>'SSH2 username is required','SSH2 hostname is required'=>'SSH2 hostname is required','The ssh2 PHP extension is not available'=>'The ssh2 PHP extension is not available','Username/Password incorrect for %s'=>'Username/Password incorrect for %s','Failed to connect to FTP Server %s'=>'Failed to connect to FTP Server %s','FTP password is required'=>'FTP password is required','FTP username is required'=>'FTP username is required','FTP hostname is required'=>'FTP hostname is required','The ftp PHP extension is not available'=>'The ftp PHP extension is not available','Found %s'=>'Found %s','Changing to %s'=>'Changing to %s','Could not insert link into the database.'=>'Could not insert link into the database.','Could not update link in the database.'=>'Could not update link in the database.','Movable Type and TypePad'=>'Movable Type and TypePad','LiveJournal'=>'LiveJournal','Try Again'=>'Try Again','Blogger'=>'Blogger','No importers are available.'=>'No importers are available.','Download Export File'=>'Download Export File','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'When you click the button below WordPress will create an XML file for you to save to your computer.','Export'=>'Export','postsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','postsMine (%s)'=>'Mine (%s)' . "\0" . 'Mine (%s)','%s pattern not updated, somebody is editing it.'=>'%s pattern not updated, somebody is editing it.' . "\0" . '%s patterns not updated, somebody is editing them.','%s post updated.'=>'%s post updated.' . "\0" . '%s posts updated.','Sorry, you are not allowed to delete this item.'=>'Sorry, you are not allowed to delete this item.','Item not added.'=>'Item not added.','Item updated.'=>'Item updated.','Item deleted.'=>'Item deleted.','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'This will be shown when someone hovers over the link in the blogroll, or optionally below the link.','Example: https://wordpress.org/ — do not forget the https://'=>'Example: https://wordpress.org/ — do not forget the https://','Web Address'=>'Web Address','Example: Nifty blogging software'=>'Example: Nifty blogging software','Link added.'=>'Link added.','Links / Add Link'=>'Links / Add Link','Update Link'=>'Update Link','Links / Edit Link'=>'Links / Edit Link','Visit site'=>'Visit site','Update Comment'=>'Update Comment','Last edited on %1$s at %2$s'=>'Last edited on %1$s at %2$s','Last edited by %1$s on %2$s at %3$s'=>'Last edited by %1$s on %2$s at %3$s','Custom Fields'=>'Custom Fields','Send Trackbacks'=>'Send Trackbacks','Page restored to revision from %s.'=>'Page restored to revision from %s.','Post saved.'=>'Post saved.','Post restored to revision from %s.'=>'Post restored to revision from %s.','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','No comments found.'=>'No comments found.','Empty Trash'=>'Empty Bin','Empty Spam'=>'Empty Spam','Filter'=>'Filter','Pings'=>'Pings','Approve'=>'Approve','Unapprove'=>'Unapprove','Bulk actions'=>'Bulk actions','Displaying %1$s–%2$s of %3$s'=>'Displaying %1$s–%2$s of %3$s','Search Comments'=>'Search Comments','Approved'=>'Approved' . "\0" . 'Approved','%s comment permanently deleted.'=>'%s comment permanently deleted.' . "\0" . '%s comments permanently deleted.','%s comment restored from the spam.'=>'%s comment restored from the spam.' . "\0" . '%s comments restored from the spam.','%s comment marked as spam.'=>'%s comment marked as spam.' . "\0" . '%s comments marked as spam.','%s comment approved.'=>'%s comment approved.' . "\0" . '%s comments approved.','Attach'=>'Attach','(Unattached)'=>'(Unattached)','Unpublished'=>'Unpublished','View “%s”'=>'View “%s”','Delete Permanently'=>'Delete Permanently','Edit “%s”'=>'Edit “%s”','Choose the part of the image you want to use as your header.'=>'Choose the part of the image you want to use as your header.','Image Processing Error'=>'Image Processing Error','Header updated. Visit your site to see how it looks.'=>'Header updated. Visit your site to see how it looks.','Custom Header'=>'Custom Header','Save Changes'=>'Save Changes','Choose an image from your computer:'=>'Choose an image from your computer:','Background updated. Visit your site to see how it looks.'=>'Background updated. Visit your site to see how it looks.','Custom Background'=>'Custom Background','Unknown action.'=>'Unknown action.','Approve comment'=>'Approve comment','You are about to approve the following comment:'=>'You are about to approve the following comment:','Permanently delete comment'=>'Permanently delete comment','You are about to delete the following comment:'=>'You are about to delete the following comment:','You are about to move the following comment to the Trash:'=>'You are about to move the following comment to the Bin:','You are about to mark the following comment as spam:'=>'You are about to mark the following comment as spam:','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'This comment is in the Bin. Please move it out of the Bin if you want to edit it.','Sorry, you are not allowed to edit comments on this post.'=>'Sorry, you are not allowed to edit comments on this post.','Go Back'=>'Go Back','Edit Comment'=>'Edit Comment','Import'=>'Import','Cannot load %s.'=>'Cannot load %s.','Invalid plugin page.'=>'Invalid plugin page.','Item not updated.'=>'Item not updated.','Saving is disabled: %s is currently editing this post.'=>'Saving is disabled: %s is currently editing this post.','Saving is disabled: %s is currently editing this page.'=>'Saving is disabled: %s is currently editing this page.','Someone'=>'Someone','Draft saved at %s.'=>'Draft saved at %s.','g:i:s a'=>'H:i:s','Please provide a custom field value.'=>'Please provide a custom field value.','Sorry, you must be logged in to reply to a comment.'=>'Sorry, you must be logged in to reply to a comment.','You did not enter a category name.'=>'You did not enter a category name.','Comment %d does not exist'=>'Comment %d does not exist','»'=>'»','«'=>'«']]; \ No newline at end of file diff --git a/web/app/languages/admin-en_GB.mo b/web/app/languages/admin-en_GB.mo new file mode 100644 index 00000000..f967e308 Binary files /dev/null and b/web/app/languages/admin-en_GB.mo differ diff --git a/web/app/languages/admin-en_GB.po b/web/app/languages/admin-en_GB.po new file mode 100644 index 00000000..186b165a --- /dev/null +++ b/web/app/languages/admin-en_GB.po @@ -0,0 +1,16423 @@ +# Translation of WordPress - 6.8.x - Development - Administration in English (UK) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration package. +msgid "" +msgstr "" +"PO-Revision-Date: 2025-05-25 12:26:44+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: en_GB\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration\n" + +#. translators: Default start of the week. 0 = Sunday, 1 = Monday. +#: wp-admin/includes/schema.php:418 +#, gp-priority: high +msgctxt "start of week" +msgid "1" +msgstr "1" + +#. translators: default GMT offset or timezone string. Must be either a valid +#. offset (-12 to 14) or a valid timezone string (America/New_York). See +#. https://www.php.net/manual/en/timezones.php for all timezone strings +#. currently supported by PHP. Important: When a previous timezone string, like +#. `Europe/Kiev`, has been superseded by an updated one, like `Europe/Kyiv`, as +#. a rule of thumb, the **old** timezone name should be used in the +#. "translation" to allow for the default timezone setting to be PHP +#. cross-version compatible, as old timezone names will be recognized in new +#. PHP versions, while new timezone names cannot be recognized in old PHP +#. versions. To verify which timezone strings are available in the _oldest_ PHP +#. version supported, you can use https://3v4l.org/6YQAt#v5.6.20 and replace +#. the "BR" (Brazil) in the code line with the country code for which you want +#. to look up the supported timezone names. +#: wp-admin/includes/schema.php:403 +#, gp-priority: high +msgctxt "default GMT offset or timezone string" +msgid "0" +msgstr "Europe/London" + +#: wp-admin/about.php:93 +msgid "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance." +msgstr "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimisations improve performance." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/upgrade.php:68 +msgid "You cannot upgrade because WordPress %2$s requires the %3$s PHP extension." +msgstr "You cannot upgrade because WordPress %2$s requires the %3$s PHP extension." + +#: wp-admin/themes.php:70 +msgid "An error occurred while deleting the theme." +msgstr "An error occurred while deleting the theme." + +#: wp-admin/theme-install.php:57 wp-admin/themes.php:234 +#: wp-admin/themes.php:255 wp-admin/network/menu.php:86 +#: wp-admin/network/themes.php:366 +msgid "Add Theme" +msgstr "Add Theme" + +#. translators: %s: https://wordpress.org/about/privacy +#: wp-admin/privacy.php:62 +msgid "WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy." +msgstr "WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy." + +#: wp-admin/privacy.php:29 +msgid "WordPress.org takes privacy and transparency very seriously" +msgstr "WordPress.org takes privacy and transparency very seriously" + +#. translators: %s: File path. +#: wp-admin/plugin-editor.php:246 wp-admin/theme-editor.php:245 +msgid "File: %s" +msgstr "File: %s" + +#: wp-admin/menu.php:332 wp-admin/menu.php:334 wp-admin/menu.php:342 +#: wp-admin/menu.php:344 wp-admin/user-edit.php:269 wp-admin/user-new.php:269 +#: wp-admin/user-new.php:391 wp-admin/user-new.php:515 +#: wp-admin/user-new.php:667 wp-admin/users.php:781 +#: wp-admin/network/menu.php:62 wp-admin/network/site-users.php:336 +#: wp-admin/network/site-users.php:380 wp-admin/network/user-new.php:100 +#: wp-admin/network/user-new.php:107 wp-admin/network/user-new.php:161 +#: wp-admin/network/users.php:292 +msgid "Add User" +msgstr "Add User" + +#: wp-admin/menu.php:311 wp-admin/plugins.php:770 wp-admin/network/menu.php:111 +msgid "Add Plugin" +msgstr "Add Plugin" + +#: wp-admin/menu.php:217 +msgctxt "design menu item" +msgid "Design" +msgstr "Design" + +#: wp-admin/menu-header.php:285 +msgid "Collapse Main Menu" +msgstr "Collapse Main Menu" + +#: wp-admin/media-upload.php:39 +msgid "Invalid item ID. You can view all media items in the Media Library." +msgstr "Invalid item ID. You can view all media items in the Media Library." + +#: wp-admin/media-upload.php:38 +msgid "An error occurred during the upload process." +msgstr "An error occurred during the upload process." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/install.php:312 +msgid "You cannot install because WordPress %2$s requires the %3$s PHP extension." +msgstr "You cannot install because WordPress %2$s requires the %3$s PHP extension." + +#: wp-admin/includes/template.php:738 +msgid "Add Custom Field:" +msgstr "Add Custom Field:" + +#: wp-admin/includes/revision.php:469 +msgid "An error occurred while loading the comparison. Please refresh the page and try again." +msgstr "An error occurred while loading the comparison. Please refresh the page and try again." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 +msgid "+ Add Category" +msgstr "+ Add Category" + +#: wp-admin/includes/class-wp-debug-data.php:1715 +msgid "Does not exist" +msgstr "Does not exist" + +#: wp-admin/includes/class-wp-debug-data.php:530 +msgid "robots.txt" +msgstr "robots.txt" + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:525 +msgid "WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support" +msgstr "WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support" + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:519 +msgid "Your site is using the dynamic %s file which is generated by WordPress." +msgstr "Your site is using the dynamic %s file which is generated by WordPress." + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:513 +msgid "There is a static %s file in your installation folder. WordPress cannot dynamically serve one." +msgstr "There is a static %s file in your installation folder. WordPress cannot dynamically serve one." + +#: wp-admin/includes/class-custom-image-header.php:834 +#: wp-admin/includes/class-custom-image-header.php:1022 +msgid "The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again." +msgstr "The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again." + +#: wp-admin/includes/class-custom-image-header.php:833 +#: wp-admin/includes/class-custom-image-header.php:1021 +#: wp-admin/includes/class-custom-image-header.php:1032 +msgid "An error occurred while processing your header image." +msgstr "An error occurred while processing your header image." + +#: wp-admin/customize.php:80 +msgid "Please try again or start a new changeset. This changeset cannot be further modified." +msgstr "Please try again or start a new changeset. This changeset cannot be further modified." + +#: wp-admin/customize.php:79 +msgid "An error occurred while saving your changeset." +msgstr "An error occurred while saving your changeset." + +#: wp-admin/credits.php:150 +msgid "Triage Lead" +msgstr "Triage Lead" + +#: wp-admin/credits.php:149 +msgid "Tech Lead" +msgstr "Tech Lead" + +#: wp-admin/credits.php:148 +msgid "Default Theme Development Lead" +msgstr "Default Theme Development Lead" + +#: wp-admin/credits.php:147 +msgid "Default Theme Design Lead" +msgstr "Default Theme Design Lead" + +#: wp-admin/credits.php:146 +msgid "Performance Lead" +msgstr "Performance Lead" + +#: wp-admin/credits.php:145 +msgid "Design Lead" +msgstr "Design Lead" + +#: wp-admin/credits.php:144 +msgid "Test Lead" +msgstr "Test Lead" + +#: wp-admin/credits.php:143 +msgid "Documentation Lead" +msgstr "Documentation Lead" + +#: wp-admin/credits.php:142 +msgid "Editor Triage Lead" +msgstr "Editor Triage Lead" + +#: wp-admin/credits.php:141 +msgid "Editor Tech Lead" +msgstr "Editor Tech Lead" + +#: wp-admin/credits.php:140 +msgid "Core Triage Lead" +msgstr "Core Triage Lead" + +#: wp-admin/credits.php:139 +msgid "Core Tech Lead" +msgstr "Core Tech Lead" + +#: wp-admin/credits.php:137 +msgid "Minor Release Lead" +msgstr "Minor Release Lead" + +#: wp-admin/credits.php:136 +msgid "Release Coordination" +msgstr "Release Coordination" + +#: wp-admin/about.php:194 +msgid "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal." +msgstr "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal." + +#: wp-admin/about.php:181 +msgid "Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic." +msgstr "Work continues on optimising cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic." + +#: wp-admin/about.php:180 +msgid "Take a load off the database" +msgstr "Take a load off the database" + +#: wp-admin/about.php:172 +msgid "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience." +msgstr "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the Customiser, and simplified labelling. The block editor has over 70 improvements to blocks, DataViews, and to its overall user experience." + +#: wp-admin/about.php:158 +msgid "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically." +msgstr "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically." + +#: wp-admin/about.php:157 +msgid "Stronger password security with bcrypt" +msgstr "Stronger password security with bcrypt" + +#: wp-admin/about.php:141 +msgid "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact." +msgstr "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact." + +#: wp-admin/about.php:140 +msgid "Near-instant page loads, thanks to Speculative Loading" +msgstr "Near-instant page loads, thanks to Speculative Loading" + +#: wp-admin/about.php:134 +msgid "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build." +msgstr "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build." + +#: wp-admin/about.php:113 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser." + +#. translators: %s is a direct link to the Style Book. +#: wp-admin/about.php:109 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser." + +#: wp-admin/about.php:101 +msgid "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place." +msgstr "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colours, typography—almost all your site styles—in one place." + +#: wp-admin/about.php:99 +msgid "The Style Book gets a cleaner look—and a few new tricks" +msgstr "The Style Book gets a cleaner look—and a few new tricks" + +#: wp-admin/about.php:92 +msgid "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles." +msgstr "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles." + +#: wp-admin/about.php:91 +msgid "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage." +msgstr "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage." + +#: wp-admin/about.php:90 +msgid "A release polished to a high sheen." +msgstr "A release polished to a high sheen." + +#: wp-admin/plugins.php:613 +msgid "If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated." +msgstr "If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated." + +#: wp-admin/plugins.php:612 +msgid "If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row." +msgstr "If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row." + +#: wp-admin/plugins.php:611 +msgid "Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy." +msgstr "Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy." + +#: wp-admin/plugins.php:609 +msgid "Dependencies" +msgstr "Dependencies" + +#: wp-admin/options-discussion.php:155 +msgid "Comments to display at the top of each page" +msgstr "Comments to display at the top of each page" + +#: wp-admin/options-discussion.php:148 +msgid "Comments page to display by default" +msgstr "Comments page to display by default" + +#: wp-admin/options-discussion.php:144 +msgid "Top level comments per page" +msgstr "Top level comments per page" + +#: wp-admin/options-discussion.php:141 +msgid "Break comments into pages" +msgstr "Break comments into pages" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:133 wp-admin/options-discussion.php:137 +msgid "Comment Pagination" +msgstr "Comment Pagination" + +#: wp-admin/options-discussion.php:125 +msgid "Number of levels for threaded (nested) comments" +msgstr "Number of levels for threaded (nested) comments" + +#: wp-admin/options-discussion.php:101 +msgid "Enable threaded (nested) comments" +msgstr "Enable threaded (nested) comments" + +#: wp-admin/options-discussion.php:92 +msgid "Close comments when post is how many days old" +msgstr "Close comments when post is how many days old" + +#: wp-admin/options-discussion.php:89 +msgid "Automatically close comments on old posts" +msgstr "Automatically close comments on old posts" + +#: wp-admin/nav-menus.php:601 +msgid "Menu order updated" +msgstr "Menu order updated" + +#: wp-admin/nav-menus.php:600 +msgid "Menu parent updated" +msgstr "Menu parent updated" + +#: wp-admin/includes/revision.php:383 +msgid "Change revision by using the left and right arrow keys" +msgstr "Change revision by using the left and right arrow keys" + +#: wp-admin/includes/revision.php:382 +msgid "Select a revision" +msgstr "Select a revision" + +#: wp-admin/includes/class-wp-upgrader.php:207 +msgid "A directory could not be read." +msgstr "A directory could not be read." + +#: wp-admin/includes/class-wp-debug-data.php:1611 +msgid "Database Extension" +msgstr "Database Extension" + +#: wp-admin/includes/class-wp-debug-data.php:1467 +#: wp-admin/includes/class-wp-debug-data.php:1476 +msgid "Empty value" +msgstr "Empty value" + +#: wp-admin/includes/class-wp-debug-data.php:639 +msgid "Max simultaneous file uploads" +msgstr "Max simultaneous file uploads" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:261 +msgid "Menu Order" +msgstr "Menu Order" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:254 +msgid "Menu Parent" +msgstr "Menu Parent" + +#: wp-admin/edit-form-advanced.php:545 +msgid "Skip to Editor" +msgstr "Skip to Editor" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:289 +msgid "WordPress %s Field Guide" +msgstr "WordPress %s Field Guide" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:262 +msgid "WordPress %s Release Notes" +msgstr "WordPress %s Release Notes" + +#: wp-admin/includes/class-wp-debug-data.php:1926 +msgid "The directory does not exist." +msgstr "The directory does not exist." + +#: wp-admin/update-core.php:1048 +msgid "Common Errors" +msgstr "Common Errors" + +#: wp-admin/theme-editor.php:54 +msgid "Documentation on Editing Files" +msgstr "Documentation on Editing Files" + +#: wp-admin/plugin-editor.php:154 +msgid "Documentation on Editing Plugins" +msgstr "Documentation on Editing Plugins" + +#: wp-admin/options.php:330 +msgid "https://developer.wordpress.org/plugins/settings/settings-api/" +msgstr "https://developer.wordpress.org/plugins/settings/settings-api/" + +#. translators: 1: The option/setting, 2: Documentation URL. +#: wp-admin/options.php:328 +msgid "The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API." +msgstr "The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API." + +#: wp-admin/options-writing.php:228 wp-admin/options-writing.php:242 +msgid "https://developer.wordpress.org/advanced-administration/wordpress/update-services/" +msgstr "https://developer.wordpress.org/advanced-administration/wordpress/update-services/" + +#: wp-admin/options-reading.php:35 wp-admin/options-reading.php:200 +msgid "https://developer.wordpress.org/advanced-administration/wordpress/feeds/" +msgstr "https://developer.wordpress.org/advanced-administration/wordpress/feeds/" + +#: wp-admin/options-permalink.php:64 +msgid "Documentation on Nginx configuration." +msgstr "Documentation on Nginx configuration." + +#: wp-admin/options-general.php:35 wp-admin/options-general.php:254 +msgid "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" +msgstr "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" + +#: wp-admin/includes/ms.php:1172 wp-admin/network/site-new.php:32 +#: wp-admin/network/sites.php:44 +msgid "Documentation on Site Management" +msgstr "Documentation on Site Management" + +#. translators: xfn (friendship relation): http://gmpg.org/xfn +#. translators: xfn (geographical relation): http://gmpg.org/xfn +#. translators: xfn (family relation): http://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1357 wp-admin/includes/meta-boxes.php:1408 +#: wp-admin/includes/meta-boxes.php:1437 +msgctxt "Type of relation" +msgid "none" +msgstr "none" + +#: wp-admin/includes/file.php:1158 +msgid "No URL Provided." +msgstr "No URL provided." + +#: wp-admin/includes/file.php:329 wp-admin/options-permalink.php:468 +#: wp-admin/options-permalink.php:500 wp-admin/options-permalink.php:536 +#: wp-admin/plugin-editor.php:336 wp-admin/setup-config.php:487 +#: wp-admin/theme-editor.php:367 +msgid "https://developer.wordpress.org/advanced-administration/server/file-permissions/" +msgstr "https://developer.wordpress.org/advanced-administration/server/file-permissions/" + +#: wp-admin/includes/class-wp-upgrader.php:199 +msgid "Package not available." +msgstr "Package not available." + +#: wp-admin/includes/class-wp-site-health.php:2775 +msgid "Autoloaded options" +msgstr "Autoloaded options" + +#: wp-admin/includes/class-wp-site-health.php:2676 +msgid "More info about optimizing autoloaded options" +msgstr "More info about optimising autoloaded options" + +#: wp-admin/includes/class-wp-site-health.php:2675 +msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options" +msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options" + +#. translators: 1: Number of autoloaded options, 2: Autoloaded options size. +#: wp-admin/includes/class-wp-site-health.php:2658 +msgid "Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site." +msgstr "Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site." + +#: wp-admin/includes/class-wp-site-health.php:2655 +msgid "Autoloaded options could affect performance" +msgstr "Autoloaded options could affect performance" + +#. translators: 1: Number of autoloaded options, 2: Autoloaded options size. +#: wp-admin/includes/class-wp-site-health.php:2633 +msgid "Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable." +msgstr "Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable." + +#: wp-admin/includes/class-wp-site-health.php:2625 +msgid "Autoloaded options are acceptable" +msgstr "Autoloaded options are acceptable" + +#: wp-admin/includes/class-wp-site-health.php:2622 +msgid "Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site." +msgstr "Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site." + +#. translators: Localized Support reference. +#: wp-admin/includes/class-wp-site-health.php:2510 +msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache" +msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache" + +#: wp-admin/includes/class-wp-site-health.php:2401 +msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" +msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" + +#: wp-admin/includes/class-wp-debug-data.php:860 +msgid "Fonts directory size" +msgstr "Fonts directory size" + +#: wp-admin/includes/class-wp-debug-data.php:856 +msgid "Fonts directory location" +msgstr "Fonts directory location" + +#: wp-admin/includes/class-wp-debug-data.php:1712 +msgid "The fonts directory" +msgstr "The fonts directory" + +#: wp-admin/includes/class-wp-automatic-updater.php:1350 +msgid "The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored." +msgstr "The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored." + +#. translators: %s: The plugin's slug. +#: wp-admin/includes/class-wp-automatic-updater.php:593 +msgid "The update for '%s' contained a fatal error. The previously installed version has been restored." +msgstr "The update for '%s' contained a fatal error. The previously installed version has been restored." + +#. translators: %s: The plugin's slug. +#: wp-admin/includes/class-wp-automatic-updater.php:582 +msgid "The update for '%s' contained a fatal error. The previously installed version could not be restored." +msgstr "The update for '%s' contained a fatal error. The previously installed version could not be restored." + +#: wp-admin/includes/class-plugin-installer-skin.php:302 +#: wp-admin/includes/class-plugin-installer-skin.php:308 +#: wp-admin/includes/class-theme-installer-skin.php:337 +#: wp-admin/includes/class-theme-installer-skin.php:343 +#: wp-admin/update-core.php:261 +msgid "https://developer.wordpress.org/advanced-administration/security/backup/" +msgstr "https://developer.wordpress.org/advanced-administration/security/backup/" + +#: wp-admin/export-personal-data.php:59 +msgid "If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin." +msgstr "If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin." + +#: wp-admin/erase-personal-data.php:59 +msgid "If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin." +msgstr "If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin." + +#: wp-admin/about.php:215 +msgid "See everything new" +msgstr "See everything new" + +#: wp-admin/about.php:215 +msgid "https://wordpress.org/download/releases/6-8/" +msgstr "https://wordpress.org/download/releases/6-8/" + +#. translators: %s: Version number. +#: wp-admin/about.php:207 +msgid "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website." +msgstr "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website." + +#: wp-admin/about.php:201 +msgid "And much more" +msgstr "And much more" + +#: wp-admin/menu.php:219 +msgctxt "patterns menu item" +msgid "Patterns" +msgstr "Patterns" + +#: wp-admin/options-general.php:191 wp-admin/options-general.php:197 +msgid "Change Site Icon" +msgstr "Change site icon" + +#. translators: 1: Plugin name, 2: Number of plugins, 3: A comma-separated list +#. of plugin names. +#: wp-admin/includes/plugin.php:1221 +msgid "Error: %1$s requires %2$d plugin to be installed and activated: %3$s." +msgid_plural "Error: %1$s requires %2$d plugins to be installed and activated: %3$s." +msgstr[0] "Error: %1$s requires %2$d plugin to be installed and activated: %3$s." +msgstr[1] "Error: %1$s requires %2$d plugins to be installed and activated: %3$s." + +#: wp-admin/includes/plugin-install.php:975 +#: wp-admin/includes/plugin-install.php:980 +msgctxt "plugin" +msgid "Update Now" +msgstr "Update now" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:339 +#: wp-admin/includes/theme-install.php:207 +msgctxt "theme" +msgid "Install Now" +msgstr "Install now" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1589 +msgid "This plugin cannot be activated because required plugins are missing or inactive." +msgstr "This plugin cannot be activated because required plugins are missing or inactive." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1587 +msgid "This plugin is active but may not function correctly because required plugins are missing or inactive." +msgstr "This plugin is active but may not function correctly because required plugins are missing or inactive." + +#. translators: %s: List of dependency names. +#: wp-admin/includes/class-wp-plugins-list-table.php:1579 +msgid "Requires: %s" +msgstr "Requires: %s" + +#. translators: %s: List of dependencies. +#: wp-admin/includes/class-wp-plugins-list-table.php:1545 +msgid "Required by: %s" +msgstr "Required by: %s" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1540 +msgid "Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted." +msgstr "Note: this plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted." + +#: wp-admin/includes/class-wp-plugins-list-table.php:902 +msgid "You cannot deactivate this plugin as other plugins depend on it." +msgstr "You cannot deactivate this plugin as other plugins depend on it." + +#: wp-admin/includes/class-wp-plugins-list-table.php:868 +#: wp-admin/includes/class-wp-plugins-list-table.php:974 +msgid "You cannot delete this plugin as other plugins require it." +msgstr "You cannot delete this plugin as other plugins require it." + +#: wp-admin/includes/class-wp-plugins-list-table.php:838 +#: wp-admin/includes/class-wp-plugins-list-table.php:944 +msgid "You cannot activate this plugin as it has unmet requirements." +msgstr "You cannot activate this plugin as it has unmet requirements." + +#: wp-admin/includes/class-wp-plugins-list-table.php:812 +msgid "You cannot deactivate this plugin as other plugins require it." +msgstr "You cannot deactivate this plugin as other plugins require it." + +#: wp-admin/includes/class-wp-plugins-list-table.php:615 +msgctxt "plugin" +msgid "Deactivate" +msgstr "Deactivate" + +#: wp-admin/includes/class-wp-plugins-list-table.php:615 +#: wp-admin/includes/class-wp-plugins-list-table.php:828 +msgctxt "plugin" +msgid "Network Deactivate" +msgstr "Network deactivate" + +#: wp-admin/includes/class-wp-plugins-list-table.php:611 +#: wp-admin/includes/class-wp-plugins-list-table.php:942 +#: wp-admin/includes/class-wp-plugins-list-table.php:959 +#: wp-admin/includes/plugin-install.php:881 +#: wp-admin/includes/plugin-install.php:995 +#: wp-admin/includes/plugin-install.php:1026 wp-admin/js/updates.js:980 +#: wp-admin/js/updates.js:1025 +msgctxt "plugin" +msgid "Activate" +msgstr "Activate" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:794 +msgid "Additional plugins are required" +msgstr "Additional plugins are required" + +#: wp-admin/includes/class-wp-debug-data.php:240 +msgid "Site ID" +msgstr "Site ID" + +#. translators: 1: Current PHP version, 2: PHP version required by the new +#. theme version. +#: wp-admin/includes/class-theme-upgrader.php:465 +msgid "The PHP version on your server is %1$s, however the new theme version requires %2$s." +msgstr "The PHP version on your server is %1$s, however the new theme version requires %2$s." + +#. translators: 1: Current WordPress version, 2: WordPress version required by +#. the new theme version. +#: wp-admin/includes/class-theme-upgrader.php:451 +msgid "Your WordPress version is %1$s, however the new theme version requires %2$s." +msgstr "Your WordPress version is %1$s, however the new theme version requires %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:130 +#: wp-admin/includes/class-wp-plugins-list-table.php:611 +#: wp-admin/includes/class-wp-plugins-list-table.php:836 +#: wp-admin/includes/class-wp-plugins-list-table.php:853 +#: wp-admin/includes/plugin-install.php:1008 +#: wp-admin/includes/plugin-install.php:1026 wp-admin/js/updates.js:969 +msgctxt "plugin" +msgid "Network Activate" +msgstr "Network activate" + +#. translators: %s: Plugin name. +#: wp-admin/includes/ajax-actions.php:4584 +msgid "%s is already active." +msgstr "%s is already active." + +#: wp-admin/import.php:166 wp-admin/includes/plugin-install.php:355 +#: wp-admin/includes/plugin-install.php:953 +#: wp-admin/includes/plugin-install.php:958 wp-admin/press-this.php:63 +#: wp-admin/js/updates.js:1312 wp-admin/js/updates.js:2637 +#: wp-admin/js/updates.js:2693 +msgctxt "plugin" +msgid "Install Now" +msgstr "Install now" + +#: wp-admin/credits.php:32 +msgid "Created by a worldwide team of passionate individuals" +msgstr "Created by a worldwide team of passionate individuals" + +#: wp-admin/about.php:171 +msgid "Accessibility improvements" +msgstr "Accessibility improvements" + +#: wp-admin/about.php:193 +msgid "Performance updates" +msgstr "Performance updates" + +#: wp-admin/update.php:158 wp-admin/update.php:310 +msgid "Only .zip archives may be uploaded." +msgstr "Only .zip archives may be uploaded." + +#. translators: %s: Link to activate the Classic Widgets plugin. +#: wp-admin/widgets-form-blocks.php:105 +msgid "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin." +msgstr "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin." + +#. translators: %s: Link to install the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:405 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." +msgstr "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." + +#. translators: %s: Link to activate the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:396 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." +msgstr "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." + +#: wp-admin/my-sites.php:81 +msgid "Add New Site" +msgstr "Add New Site" + +#: wp-admin/includes/image-edit.php:80 +msgid "Rotate 180°" +msgstr "Rotate 180°" + +#: wp-admin/includes/image-edit.php:79 +msgid "Rotate 90° right" +msgstr "Rotate 90° right" + +#: wp-admin/includes/image-edit.php:78 +msgid "Rotate 90° left" +msgstr "Rotate 90° left" + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:392 +msgid "%s pattern moved to the Trash." +msgid_plural "%s patterns moved to the Trash." +msgstr[0] "%s pattern moved to the Bin." +msgstr[1] "%s patterns moved to the Bin." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:390 +msgid "%s pattern permanently deleted." +msgid_plural "%s patterns permanently deleted." +msgstr[0] "%s pattern permanently deleted." +msgstr[1] "%s patterns permanently deleted." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:385 +msgid "%s pattern updated." +msgid_plural "%s patterns updated." +msgstr[0] "%s pattern updated." +msgstr[1] "%s patterns updated." + +#. translators: %s: The dismiss dashicon used for buttons that dismiss or +#. remove. +#: wp-admin/edit.php:293 +msgid "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears." +msgstr "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:272 +msgid "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." +msgstr "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:299 +msgid "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." +msgstr "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." + +#: wp-admin/includes/user.php:721 wp-admin/includes/user.php:744 +msgid "Invalid URL format." +msgstr "Invalid URL format." + +#. translators: 1: Current PHP version, 2: PHP version required by the new +#. plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:367 +msgid "The PHP version on your server is %1$s, however the new plugin version requires %2$s." +msgstr "The PHP version on your server is %1$s, however the new plugin version requires %2$s." + +#. translators: 1: Current WordPress version, 2: WordPress version required by +#. the new plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:353 +msgid "Your WordPress version is %1$s, however the new plugin version requires %2$s." +msgstr "Your WordPress version is %1$s, however the new plugin version requires %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/about.php:79 +msgid "https://wordpress.org/support/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + +#: wp-admin/contribute.php:103 wp-admin/credits.php:57 wp-admin/credits.php:65 +msgid "https://make.wordpress.org/contribute/" +msgstr "https://make.wordpress.org/contribute/" + +#: wp-admin/update-core.php:1068 +msgid "Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above." +msgstr "Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above." + +#: wp-admin/update-core.php:1043 +msgid "Restore Plugin or Theme" +msgstr "Restore Plugin or Theme" + +#: wp-admin/update-core.php:1038 +msgid "On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title." +msgstr "On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title." + +#: wp-admin/update-core.php:1036 +msgid "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." +msgstr "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." + +#: wp-admin/site-editor.php:327 +msgid "The site editor requires JavaScript. Please enable JavaScript in your browser settings." +msgstr "The site editor requires JavaScript. Please enable JavaScript in your browser settings." + +#: wp-admin/options-permalink.php:227 +msgid "https://wordpress.org/documentation/article/customize-permalinks/" +msgstr "https://wordpress.org/documentation/article/customize-permalinks/" + +#. translators: %s: Site tagline example. +#: wp-admin/options-general.php:90 +msgid "In a few words, explain what this site is about. Example: “%s.”" +msgstr "In a few words, explain what this site is about. Example: “%s.”" + +#: wp-admin/install.php:203 +msgid "Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request." +msgstr "Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request." + +#: wp-admin/includes/template.php:762 +msgid "New custom field name" +msgstr "New custom field name" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/media.php:2758 +msgid "Search Media:" +msgstr "Search Media:" + +#: wp-admin/includes/image-edit.php:270 +msgid "Clear Crop" +msgstr "Clear Crop" + +#: wp-admin/includes/image-edit.php:270 +msgid "Apply Crop" +msgstr "Apply Crop" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:263 +msgid "vertical start position" +msgstr "vertical start position" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:255 +msgid "horizontal start position" +msgstr "horizontal start position" + +#: wp-admin/includes/image-edit.php:250 +msgid "Starting Coordinates:" +msgstr "Starting Coordinates:" + +#: wp-admin/includes/image-edit.php:193 +msgid "Crop Image" +msgstr "Crop Image" + +#: wp-admin/includes/image-edit.php:163 wp-admin/includes/image-edit.php:935 +msgid "Images cannot be scaled to a size larger than the original." +msgstr "Images cannot be scaled to a size larger than the original." + +#: wp-admin/includes/image-edit.php:101 +msgid "Save Edits" +msgstr "Save Edits" + +#: wp-admin/includes/image-edit.php:100 +msgid "Cancel Editing" +msgstr "Cancel Editing" + +#: wp-admin/includes/file.php:2027 +msgid "Could not create the destination directory." +msgstr "Could not create the destination directory." + +#: wp-admin/includes/class-wp-users-list-table.php:397 +#: wp-admin/includes/class-wp-ms-users-list-table.php:217 +msgid "Table ordered by E-mail." +msgstr "Table ordered by Email." + +#: wp-admin/includes/class-wp-users-list-table.php:396 +#: wp-admin/includes/class-wp-ms-users-list-table.php:215 +msgid "Table ordered by Username." +msgstr "Table ordered by Username." + +#. translators: %s: The plugin or theme slug. +#: wp-admin/includes/class-wp-upgrader.php:219 +msgid "Could not delete the temporary backup directory for %s." +msgstr "Could not delete the temporary backup directory for %s." + +#. translators: %s: The plugin or theme slug. +#: wp-admin/includes/class-wp-upgrader.php:217 +msgid "Could not restore the original version of %s." +msgstr "Could not restore the original version of %s." + +#. translators: %s: upgrade-temp-backup +#: wp-admin/includes/class-wp-upgrader.php:215 +msgid "Could not move the old version to the %s directory." +msgstr "Could not move the old version to the %s directory." + +#. translators: %s: upgrade-temp-backup +#: wp-admin/includes/class-wp-upgrader.php:213 +msgid "Could not create the %s directory." +msgstr "Could not create the %s directory." + +#: wp-admin/includes/class-wp-terms-list-table.php:223 +msgid "Table ordered by Links." +msgstr "Table ordered by Links." + +#: wp-admin/includes/class-wp-terms-list-table.php:222 +msgid "Table ordered by Posts Count." +msgstr "Table ordered by Posts Count." + +#: wp-admin/includes/class-wp-terms-list-table.php:221 +msgid "Table ordered by Slug." +msgstr "Table ordered by Slug." + +#: wp-admin/includes/class-wp-terms-list-table.php:220 +msgid "Table ordered by Description." +msgstr "Table ordered by Description." + +#: wp-admin/includes/class-wp-terms-list-table.php:213 +msgid "Table ordered hierarchically." +msgstr "Table ordered hierarchically." + +#: wp-admin/includes/class-wp-site-health.php:2771 +msgid "Available disk space" +msgstr "Available disk space" + +#: wp-admin/includes/class-wp-site-health.php:2767 +msgid "Plugin and theme temporary backup directory access" +msgstr "Plugin and theme temporary backup directory access" + +#. translators: 1: wp-content/upgrade, 2: wp-content. +#: wp-admin/includes/class-wp-site-health.php:1987 +msgid "The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s." +msgstr "The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s." + +#: wp-admin/includes/class-wp-site-health.php:1984 +msgid "The upgrade directory cannot be created" +msgstr "The upgrade directory cannot be created" + +#. translators: %s: wp-content/upgrade +#: wp-admin/includes/class-wp-site-health.php:1976 +msgid "The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory." +msgstr "The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory." + +#: wp-admin/includes/class-wp-site-health.php:1973 +msgid "The upgrade directory exists but is not writable" +msgstr "The upgrade directory exists but is not writable" + +#. translators: %s: wp-content/upgrade-temp-backup +#: wp-admin/includes/class-wp-site-health.php:1965 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory." +msgstr "The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory." + +#: wp-admin/includes/class-wp-site-health.php:1962 +msgid "The temporary backup directory exists but is not writable" +msgstr "The temporary backup directory exists but is not writable" + +#. translators: %s: wp-content/upgrade-temp-backup/themes +#: wp-admin/includes/class-wp-site-health.php:1954 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory." +msgstr "The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory." + +#: wp-admin/includes/class-wp-site-health.php:1951 +msgid "Theme temporary backup directory exists but is not writable" +msgstr "Theme temporary backup directory exists but is not writable" + +#. translators: %s: wp-content/upgrade-temp-backup/plugins +#: wp-admin/includes/class-wp-site-health.php:1943 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory." +msgstr "The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory." + +#: wp-admin/includes/class-wp-site-health.php:1940 +msgid "Plugin temporary backup directory exists but is not writable" +msgstr "Plugin temporary backup directory exists but is not writable" + +#. translators: 1: wp-content/upgrade-temp-backup/plugins, 2: +#. wp-content/upgrade-temp-backup/themes. +#: wp-admin/includes/class-wp-site-health.php:1931 +msgid "The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories." +msgstr "The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories." + +#: wp-admin/includes/class-wp-site-health.php:1928 +msgid "Plugin and theme temporary backup directories exist but are not writable" +msgstr "Plugin and theme temporary backup directories exist but are not writable" + +#. translators: %s: wp-content +#: wp-admin/includes/class-wp-site-health.php:1910 +msgid "The %s directory cannot be located." +msgstr "The %s directory cannot be located." + +#. translators: %s: wp-content/upgrade-temp-backup +#: wp-admin/includes/class-wp-site-health.php:1881 +msgid "The %s directory used to improve the stability of plugin and theme updates is writable." +msgstr "The %s directory used to improve the stability of plugin and theme updates is writable." + +#: wp-admin/includes/class-wp-site-health.php:1873 +msgid "Plugin and theme temporary backup directory is writable" +msgstr "Plugin and theme temporary backup directory is writable" + +#: wp-admin/includes/class-wp-site-health.php:1839 +msgid "Could not determine available disk space for updates." +msgstr "Could not determine available disk space for updates." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1844 +msgid "Available disk space is critically low, less than %s available. Proceed with caution, updates may fail." +msgstr "Available disk space is critically low, less than %s available. Proceed with caution, updates may fail." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1851 +msgid "Available disk space is low, less than %s available." +msgstr "Available disk space is low, less than %s available." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1831 +msgid "%s available disk space was detected, update routines can be performed safely." +msgstr "%s available disk space was detected, update routines can be performed safely." + +#: wp-admin/includes/class-wp-site-health.php:1823 +msgid "Disk space available to safely perform updates" +msgstr "Disk space available to safely perform updates" + +#: wp-admin/includes/class-wp-posts-list-table.php:770 +msgid "Table ordered by Hierarchical Menu Order and Title." +msgstr "Table ordered by Hierarchical Menu Order and Title." + +#: wp-admin/includes/class-wp-posts-list-table.php:768 +#: wp-admin/includes/class-wp-posts-list-table.php:781 +msgid "Table ordered by Title." +msgstr "Table ordered by Title." + +#: wp-admin/includes/class-wp-media-list-table.php:404 +#: wp-admin/includes/class-wp-posts-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:784 +msgid "Table ordered by Date." +msgstr "Table ordered by Date." + +#: wp-admin/includes/class-wp-media-list-table.php:403 +#: wp-admin/includes/class-wp-posts-list-table.php:776 +#: wp-admin/includes/class-wp-posts-list-table.php:783 +msgid "Table ordered by Comments." +msgstr "Table ordered by Comments." + +#: wp-admin/includes/class-wp-media-list-table.php:402 +msgid "Table ordered by Uploaded To." +msgstr "Table ordered by Uploaded To." + +#: wp-admin/includes/class-wp-media-list-table.php:401 +msgid "Table ordered by Author." +msgstr "Table ordered by Author." + +#: wp-admin/includes/class-wp-media-list-table.php:400 +msgid "Table ordered by File Name." +msgstr "Table ordered by File Name." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1602 +msgid "Descending." +msgstr "Descending." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1600 +msgid "Ascending." +msgstr "Ascending." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1501 +msgid "Sort descending." +msgstr "Sort descending." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1499 +msgid "Sort ascending." +msgstr "Sort ascending." + +#: wp-admin/includes/class-wp-links-list-table.php:152 +msgid "Table ordered by Rating." +msgstr "Table ordered by Rating." + +#: wp-admin/includes/class-wp-links-list-table.php:151 +msgid "Table ordered by Visibility." +msgstr "Table ordered by Visibility." + +#: wp-admin/includes/class-wp-links-list-table.php:150 +msgid "Table ordered by URL." +msgstr "Table ordered by URL." + +#: wp-admin/includes/class-wp-links-list-table.php:149 +#: wp-admin/includes/class-wp-terms-list-table.php:215 +#: wp-admin/includes/class-wp-ms-users-list-table.php:216 +msgid "Table ordered by Name." +msgstr "Table ordered by Name." + +#: wp-admin/includes/class-wp-debug-data.php:547 +msgid "Current Server time" +msgstr "Current Server time" + +#: wp-admin/includes/class-wp-debug-data.php:543 +msgid "Current UTC time" +msgstr "Current UTC time" + +#: wp-admin/includes/class-wp-debug-data.php:539 +msgid "Current time" +msgstr "Current time" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:595 +msgid "Ordered by Comment Date, descending." +msgstr "Ordered by Comment Date, descending." + +#: wp-admin/includes/class-wp-comments-list-table.php:551 +msgid "Table ordered by Post Replied To." +msgstr "Table ordered by Post Replied To." + +#: wp-admin/includes/class-wp-comments-list-table.php:550 +msgid "Table ordered by Comment Author." +msgstr "Table ordered by Comment Author." + +#: wp-admin/includes/class-core-upgrader.php:41 +msgid "Attempting to restore the previous version." +msgstr "Attempting to restore the previous version." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:209 +msgid "More details." +msgstr "More details." + +#: wp-admin/contribute.php:103 +msgid "Find your team →" +msgstr "Find your team →" + +#: wp-admin/contribute.php:102 +msgid "Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is." +msgstr "Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is." + +#: wp-admin/contribute.php:101 +msgid "Shape the future of the web with WordPress" +msgstr "Shape the future of the web with WordPress" + +#: wp-admin/contribute.php:94 +msgid "WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript." +msgstr "WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript." + +#: wp-admin/contribute.php:93 +msgid "WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React." +msgstr "WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React." + +#: wp-admin/contribute.php:91 +msgid "WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:" +msgstr "WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:" + +#: wp-admin/contribute.php:89 +msgid "Contribute to the code, improve the UX, and test the WordPress app." +msgstr "Contribute to the code, improve the UX, and test the WordPress app." + +#: wp-admin/contribute.php:88 +msgid "Write and submit patches to fix bugs or help build new features." +msgstr "Write and submit patches to fix bugs or help build new features." + +#: wp-admin/contribute.php:87 +msgid "Test new releases and proposed features for the Block Editor." +msgstr "Test new releases and proposed features for the Block Editor." + +#: wp-admin/contribute.php:86 +msgid "Find and report bugs in the WordPress core software." +msgstr "Find and report bugs in the WordPress core software." + +#: wp-admin/contribute.php:84 +msgid "If you do code, or want to learn how, you can contribute technically in numerous ways:" +msgstr "If you do code, or want to learn how, you can contribute technically in numerous ways:" + +#: wp-admin/contribute.php:83 +msgid "Code-based contribution" +msgstr "Code-based contribution" + +#: wp-admin/contribute.php:71 +msgid "Explore ways to reduce the environmental impact of websites." +msgstr "Explore ways to reduce the environmental impact of websites." + +#: wp-admin/contribute.php:70 +msgid "Edit videos and add captions to WordPress.tv." +msgstr "Edit videos and add captions to WordPress.tv." + +#: wp-admin/contribute.php:69 +msgid "Lend your creative imagination to the WordPress UI design." +msgstr "Lend your creative imagination to the WordPress UI design." + +#: wp-admin/contribute.php:68 +msgid "Organize or participate in local Meetups and WordCamps." +msgstr "Organize or participate in local Meetups and WordCamps." + +#: wp-admin/contribute.php:67 +msgid "Curate submissions or take photos for the Photo Directory." +msgstr "Curate submissions or take photos for the Photo Directory." + +#: wp-admin/contribute.php:66 +msgid "Promote the WordPress project to your community." +msgstr "Promote the WordPress project to your community." + +#: wp-admin/contribute.php:65 +msgid "Create and improve WordPress educational materials." +msgstr "Create and improve WordPress educational materials." + +#: wp-admin/contribute.php:64 +msgid "Translate WordPress into your local language." +msgstr "Translate WordPress into your local language." + +#: wp-admin/contribute.php:63 +msgid "Write or improve documentation for WordPress." +msgstr "Write or improve documentation for WordPress." + +#: wp-admin/contribute.php:62 +msgid "Share your knowledge in the WordPress support forums." +msgstr "Share your knowledge in the WordPress support forums." + +#: wp-admin/contribute.php:60 +msgid "WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:" +msgstr "WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:" + +#: wp-admin/contribute.php:59 +msgid "No-code contribution" +msgstr "No-code contribution" + +#: wp-admin/contribute.php:52 +msgid "Grow your network and make friends." +msgstr "Grow your network and make friends." + +#: wp-admin/contribute.php:51 +msgid "Apply your skills or learn new ones." +msgstr "Apply your skills or learn new ones." + +#: wp-admin/contribute.php:50 +msgid "Be part of a global open source community." +msgstr "Be part of a global open source community." + +#: wp-admin/contribute.php:47 +msgid "Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web." +msgstr "Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web." + +#: wp-admin/contribute.php:46 +msgid "Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world." +msgstr "Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world." + +#: wp-admin/contribute.php:29 +msgid "Be the future of WordPress" +msgstr "Be the future of WordPress" + +#. translators: 1: Learn WordPress link, 2: Workshops link. +#: wp-admin/about.php:240 +msgid "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." +msgstr "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." + +#: wp-admin/comment.php:73 wp-admin/edit-comments.php:232 +#: wp-admin/edit-form-advanced.php:313 wp-admin/edit-form-advanced.php:331 +#: wp-admin/edit-form-advanced.php:349 wp-admin/edit-link-form.php:77 +#: wp-admin/edit-tags.php:315 wp-admin/edit.php:302 wp-admin/edit.php:327 +#: wp-admin/erase-personal-data.php:66 wp-admin/export-personal-data.php:66 +#: wp-admin/export.php:60 wp-admin/import.php:33 +#: wp-admin/includes/class-custom-background.php:111 +#: wp-admin/includes/class-custom-image-header.php:146 wp-admin/index.php:133 +#: wp-admin/link-manager.php:80 wp-admin/media-new.php:62 +#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:774 +#: wp-admin/options-discussion.php:33 wp-admin/options-general.php:61 +#: wp-admin/options-media.php:42 wp-admin/options-permalink.php:67 +#: wp-admin/options-reading.php:54 wp-admin/options-writing.php:54 +#: wp-admin/plugin-editor.php:156 wp-admin/plugin-install.php:122 +#: wp-admin/plugins.php:622 wp-admin/revision.php:160 +#: wp-admin/theme-editor.php:56 wp-admin/theme-install.php:157 +#: wp-admin/themes.php:210 wp-admin/tools.php:57 wp-admin/update-core.php:1055 +#: wp-admin/upload.php:200 wp-admin/upload.php:402 wp-admin/user-edit.php:79 +#: wp-admin/user-new.php:316 wp-admin/users.php:84 wp-admin/widgets-form.php:72 +#: wp-admin/network.php:83 wp-admin/network/settings.php:65 +#: wp-admin/network/themes.php:340 wp-admin/network/upgrade.php:33 +msgid "Support forums" +msgstr "Support forums" + +#: wp-admin/widgets-form.php:71 +msgid "Documentation on Widgets" +msgstr "Documentation on Widgets" + +#: wp-admin/users.php:63 +msgid "View takes you to a public author archive which lists all the posts published by the user." +msgstr "View takes you to a public author archive which lists all the posts published by the user." + +#: wp-admin/upload.php:386 +msgid "Download file downloads the original media file to your device." +msgstr "Download file downloads the original media file to your device." + +#: wp-admin/site-editor.php:121 +msgctxt "site editor title tag" +msgid "Editor" +msgstr "Editor" + +#: wp-admin/plugins.php:602 wp-admin/themes.php:202 +#: wp-admin/update-core.php:1030 wp-admin/network/themes.php:333 +msgid "Documentation on Auto-updates" +msgstr "Documentation on Auto-updates" + +#: wp-admin/options-general.php:559 +msgid "Documentation on date and time formatting." +msgstr "Documentation on date and time formatting." + +#: wp-admin/options-general.php:46 wp-admin/network/settings.php:56 +msgid "You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable)." +msgstr "You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable)." + +#: wp-admin/options-general.php:43 +msgid "If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users." +msgstr "If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users." + +#. translators: 1: http://, 2: https: +#: wp-admin/options-general.php:39 +msgid "Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines." +msgstr "Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:34 +msgid "Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different." +msgstr "Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different." + +#: wp-admin/options-general.php:31 +msgid "Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site." +msgstr "Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site." + +#: wp-admin/options-discussion.php:311 +msgid "RoboHash (Generated)" +msgstr "RoboHash (Generated)" + +#: wp-admin/menu.php:212 +msgctxt "site editor menu item" +msgid "Editor" +msgstr "Editor" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:856 +msgid "Allow trackbacks and pingbacks" +msgstr "Allow trackbacks and pingbacks" + +#: wp-admin/includes/meta-boxes.php:833 +msgid "https://wordpress.org/documentation/article/assign-custom-fields/" +msgstr "https://wordpress.org/documentation/article/assign-custom-fields/" + +#: wp-admin/includes/meta-boxes.php:758 +msgid "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/" +msgstr "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/" + +#. translators: %s: The function name. +#: wp-admin/includes/file.php:2789 +msgid "%s expects a non-empty string." +msgstr "%s expects a non-empty string." + +#: wp-admin/includes/file.php:2108 +msgid "The destination directory already exists and could not be removed." +msgstr "The destination directory already exists and could not be removed." + +#: wp-admin/includes/file.php:2105 +msgid "The destination folder already exists." +msgstr "The destination folder already exists." + +#: wp-admin/includes/file.php:2100 +msgid "The source and destination are the same." +msgstr "The source and destination are the same." + +#: wp-admin/includes/class-wp-screen.php:1119 +msgid "Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows." +msgstr "Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows." + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:847 +msgid "Download “%s”" +msgstr "Download “%s”" + +#. translators: %s: The "$dir" argument. +#: wp-admin/includes/class-wp-automatic-updater.php:83 +msgid "The \"%s\" argument must be a non-empty string." +msgstr "The \"%s\" argument must be a non-empty string." + +#: wp-admin/edit-form-advanced.php:312 +msgid "Documentation on Writing and Editing Posts" +msgstr "Documentation on Writing and Editing Posts" + +#: wp-admin/edit-comments.php:231 wp-admin/user-edit.php:364 +msgid "Documentation on Keyboard Shortcuts" +msgstr "Documentation on Keyboard Shortcuts" + +#: wp-admin/edit-comments.php:230 +msgid "Documentation on Comment Spam" +msgstr "Documentation on Comment Spam" + +#: wp-admin/customize.php:257 +msgid "Documentation on Customizer" +msgstr "Documentation on Customiser" + +#. translators: The localized WordPress download URL. +#: wp-admin/about.php:380 +msgid "https://wordpress.org/download/" +msgstr "https://en-gb.wordpress.org/download/" + +#. translators: %s: The major version of WordPress for this branch. +#: wp-admin/about.php:377 +msgid "This is the final release of WordPress %s" +msgstr "This is the final release of WordPress %s" + +#: wp-admin/includes/theme.php:342 +msgid "Site Editor" +msgstr "Site Editor" + +#: wp-admin/users.php:66 +msgid "Send password reset sends the user an email with a link to set a new password." +msgstr "Send password reset sends the user an email with a link to set a new password." + +#: wp-admin/user-edit.php:865 +msgid "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" +msgstr "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" + +#: wp-admin/upload.php:385 +msgid "Copy URL copies the URL for the media file to your clipboard." +msgstr "Copy URL copies the URL for the media file to your clipboard." + +#: wp-admin/upload.php:384 +msgid "View will take you to a public display page for that file." +msgstr "View will take you to a public display page for that file." + +#: wp-admin/upload.php:383 +msgid "Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached)." +msgstr "Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached)." + +#: wp-admin/upload.php:382 +msgid "Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail." +msgstr "Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail." + +#: wp-admin/upload.php:380 +msgid "Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:" +msgstr "Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:" + +#: wp-admin/theme-install.php:213 +msgctxt "themes" +msgid "Block Themes" +msgstr "Block Themes" + +#: wp-admin/theme-install.php:156 +msgid "Documentation on Block Themes" +msgstr "Documentation on Block Themes" + +#: wp-admin/theme-install.php:148 +msgid "Block themes" +msgstr "Block themes" + +#: wp-admin/theme-install.php:143 +msgid "With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates." +msgstr "With a block theme, you can place and edit blocks without affecting your content by customising or creating new templates." + +#: wp-admin/theme-install.php:142 +msgid "A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site." +msgstr "A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customise all parts of your site." + +#: wp-admin/site-health.php:277 +msgid "Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more." +msgstr "Recommended items are considered beneficial to your site, although not as important to prioritise as a critical issue, they may include improvements to things such as; Performance, user experience, and more." + +#: wp-admin/site-health.php:264 +msgid "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized." +msgstr "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritised." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:441 +msgid "Configuration rules for %s:" +msgstr "Configuration rules for %s:" + +#. translators: Hidden accessibility text. +#: wp-admin/options-permalink.php:370 +msgid "Customize permalink structure by selecting available tags" +msgstr "Customise permalink structure by selecting available tags" + +#. translators: %s: %postname% +#: wp-admin/options-permalink.php:322 +msgid "Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines." +msgstr "Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines." + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:313 +msgid "%s removed from permalink structure" +msgstr "%s removed from permalink structure" + +#. translators: %s: Number of critical Site Health checks. +#: wp-admin/menu.php:378 +msgid "Site Health %s" +msgstr "Site Health %s" + +#: wp-admin/includes/file.php:24 +msgid "Theme Styles & Block Settings" +msgstr "Theme Styles & Block Settings" + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/dashboard.php:1905 +msgid "The minimum recommended version of PHP is %s." +msgstr "The minimum recommended version of PHP is %s." + +#: wp-admin/includes/dashboard.php:1900 +msgid "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance." +msgstr "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1885 +msgid "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." +msgstr "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1872 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." +msgstr "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." + +#: wp-admin/includes/class-wp-site-health.php:2828 +msgid "Persistent object cache" +msgstr "Persistent object cache" + +#: wp-admin/includes/class-wp-site-health.php:2821 +msgid "Page cache" +msgstr "Page cache" + +#: wp-admin/includes/class-wp-site-health.php:2572 +msgid "You should use a persistent object cache" +msgstr "You should use a persistent object cache" + +#. translators: Available object caching services. +#: wp-admin/includes/class-wp-site-health.php:2551 +msgid "Your host appears to support the following object caching services: %s." +msgstr "Your host appears to support the following object caching services: %s." + +#: wp-admin/includes/class-wp-site-health.php:2546 +msgid "Your hosting provider can tell you if a persistent object cache can be enabled on your site." +msgstr "Your hosting provider can tell you if a persistent object cache can be enabled on your site." + +#: wp-admin/includes/class-wp-site-health.php:2539 +msgid "A persistent object cache is not required" +msgstr "A persistent object cache is not required" + +#: wp-admin/includes/class-wp-site-health.php:2528 +msgid "Learn more about persistent object caching." +msgstr "Learn more about persistent object caching." + +#: wp-admin/includes/class-wp-site-health.php:2523 +msgid "A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly." +msgstr "A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly." + +#: wp-admin/includes/class-wp-site-health.php:2520 +msgid "A persistent object cache is being used" +msgstr "A persistent object cache is being used" + +#: wp-admin/includes/class-wp-site-health.php:2485 +msgid "A page cache plugin was not detected." +msgstr "A page cache plugin was not detected." + +#: wp-admin/includes/class-wp-site-health.php:2482 +msgid "A page cache plugin was detected." +msgstr "A page cache plugin was detected." + +#. translators: %d: Number of caching headers. +#: wp-admin/includes/class-wp-site-health.php:2469 +msgid "There was %d client caching response header detected:" +msgid_plural "There were %d client caching response headers detected:" +msgstr[0] "There was %d client caching response header detected:" +msgstr[1] "There were %d client caching response headers detected:" + +#: wp-admin/includes/class-wp-site-health.php:2464 +msgid "No client caching response headers were detected." +msgstr "No client caching response headers were detected." + +#. translators: 1: The response time in milliseconds, 2: The recommended +#. threshold in milliseconds. +#: wp-admin/includes/class-wp-site-health.php:2457 +msgid "Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold." +msgstr "Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold." + +#. translators: 1: The response time in milliseconds, 2: The recommended +#. threshold in milliseconds. +#: wp-admin/includes/class-wp-site-health.php:2450 +msgid "Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold." +msgstr "Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold." + +#: wp-admin/includes/class-wp-site-health.php:2443 +msgid "Server response time could not be determined. Verify that loopback requests are working." +msgstr "Server response time could not be determined. Verify that loopback requests are working." + +#: wp-admin/includes/class-wp-site-health.php:2436 +msgid "Page cache is detected but the server response time is still slow" +msgstr "Page cache is detected but the server response time is still slow" + +#: wp-admin/includes/class-wp-site-health.php:2434 +msgid "Page cache is not detected and the server response time is slow" +msgstr "Page cache is not detected and the server response time is slow" + +#: wp-admin/includes/class-wp-site-health.php:2430 +msgid "Page cache is detected and the server response time is good" +msgstr "Page cache is detected and the server response time is good" + +#: wp-admin/includes/class-wp-site-health.php:2427 +msgid "Page cache is not detected but the server response time is OK" +msgstr "Page cache is not detected but the server response time is OK" + +#. translators: 1: Error message, 2: Error code. +#: wp-admin/includes/class-wp-site-health.php:2415 +msgid "Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)" +msgstr "Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)" + +#: wp-admin/includes/class-wp-site-health.php:2411 +msgid "Unable to detect the presence of page cache" +msgstr "Unable to detect the presence of page cache" + +#: wp-admin/includes/class-wp-site-health.php:2402 +msgid "Learn more about page cache" +msgstr "Learn more about page cache" + +#: wp-admin/includes/class-wp-site-health.php:2387 +msgid "Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:" +msgstr "Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:" + +#: wp-admin/includes/class-wp-site-health.php:2386 +msgid "Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits." +msgstr "Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits." + +#: wp-admin/includes/class-wp-site-health.php:2352 +msgid "If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance." +msgstr "If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance." + +#: wp-admin/includes/class-wp-site-health.php:2335 +msgid "The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site." +msgstr "The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site." + +#: wp-admin/includes/class-wp-site-health.php:2191 +msgid "When testing the REST API, an unexpected result was returned:" +msgstr "When testing the REST API, an unexpected result was returned:" + +#. translators: 1: The WordPress error code. 2: The WordPress error message. +#. translators: 1: The WordPress error code. 2: The HTTP status code error +#. message. +#: wp-admin/includes/class-wp-site-health.php:2179 +#: wp-admin/includes/class-wp-site-health.php:2199 +msgid "REST API Response: (%1$s) %2$s" +msgstr "REST API Response: (%1$s) %2$s" + +#. translators: %s: The REST API URL. +#: wp-admin/includes/class-wp-site-health.php:2174 +#: wp-admin/includes/class-wp-site-health.php:2194 +msgid "REST API Endpoint: %s" +msgstr "REST API Endpoint: %s" + +#: wp-admin/includes/class-wp-site-health.php:2171 +msgid "When testing the REST API, an error was encountered:" +msgstr "When testing the REST API, an error was encountered:" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:817 +#: wp-admin/includes/dashboard.php:1878 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated." +msgstr "Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:810 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress." +msgstr "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress." + +#: wp-admin/includes/class-wp-site-health.php:789 +msgid "Requirements" +msgstr "Requirements" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:784 +msgid "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress." +msgstr "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress." + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/class-wp-site-health.php:744 +msgid "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s." +msgstr "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s." + +#: wp-admin/includes/class-wp-site-health.php:609 +msgid "Your site does not have any installed themes." +msgstr "Your site does not have any installed themes." + +#: wp-admin/includes/class-wp-site-health.php:441 +msgid "Your site does not have any active plugins." +msgstr "Your site does not have any active plugins." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:197 +msgid "Another attempt will be made with the next release." +msgstr "Another attempt will be made with the next release." + +#. translators: 1: Name of the constant used. 2: Value of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:79 +msgid "The %1$s constant is defined as %2$s" +msgstr "The %1$s constant is defined as %2$s" + +#. translators: %1$s: The argument name. %2$s: The view name. +#: wp-admin/includes/class-wp-list-table.php:454 +#: wp-admin/includes/class-wp-list-table.php:469 +msgid "The %1$s argument must be a non-empty string for %2$s." +msgstr "The %1$s argument must be a non-empty string for %2$s." + +#. translators: %s: The $link_data argument. +#: wp-admin/includes/class-wp-list-table.php:437 +msgid "The %s argument must be an array." +msgstr "The %s argument must be an array." + +#. translators: 1: Plugin name, 2: Version number, 3: Plugin URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1372 +#: wp-admin/includes/class-wp-automatic-updater.php:1444 +msgid "- %1$s version %2$s%3$s" +msgstr "- %1$s version %2$s%3$s" + +#. translators: 1: Plugin name, 2: Current version number, 3: New version +#. number, 4: Plugin URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1363 +#: wp-admin/includes/class-wp-automatic-updater.php:1435 +msgid "- %1$s (from version %2$s to %3$s)%4$s" +msgstr "- %1$s (from version %2$s to %3$s)%4$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1069 +msgid "Reach out to WordPress Core developers to ensure you'll never have this problem again." +msgstr "Reach out to WordPress Core developers to ensure you'll never have this problem again." + +#. translators: 1: WordPress version number, 2: Link to update WordPress +#: wp-admin/about.php:374 +msgid "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." +msgstr "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." + +#. translators: 1: WordPress version number, 2: Link to update WordPress +#: wp-admin/about.php:371 +msgid "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." +msgstr "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:27 +msgid "https://make.wordpress.org/core/wordpress-%s-field-guide/" +msgstr "https://make.wordpress.org/core/wordpress-%s-field-guide/" + +#. translators: %s: Version number. +#: wp-admin/about.php:231 +msgid "Learn more about WordPress %s" +msgstr "Learn more about WordPress %s" + +#: wp-admin/includes/ajax-actions.php:1356 +#: wp-admin/includes/ajax-actions.php:1473 +msgid "Please type your comment text." +msgstr "Please type your comment text." + +#: wp-admin/users.php:461 wp-admin/users.php:493 +msgid "You cannot remove users." +msgstr "You cannot remove users." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/user-edit.php:799 +msgid "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." +msgid_plural "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." +msgstr[0] "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." +msgstr[1] "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." + +#: wp-admin/upgrade.php:160 +msgid "WordPress has been updated! Next and final step is to update your database to the newest version." +msgstr "WordPress has been updated! Next and final step is to update your database to the newest version." + +#: wp-admin/themes.php:208 +msgid "Documentation on Managing Themes" +msgstr "Documentation on Managing Themes" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:182 +msgid "This information is being used to create a %s file." +msgstr "This information is being used to create a %s file." + +#: wp-admin/setup-config.php:170 +msgid "Welcome to WordPress. Before getting started, you will need to know the following items." +msgstr "Welcome to WordPress. Before getting started, you will need to know the following items." + +#: wp-admin/options.php:358 +msgid "Settings save failed." +msgstr "Settings save failed." + +#: wp-admin/options-privacy.php:201 +msgid "After your Privacy Policy page is set, you should edit it." +msgstr "After your Privacy Policy page is set, you should edit it." + +#. translators: 1: .htaccess, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A +#: wp-admin/options-permalink.php:534 +msgid "Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all." +msgstr "Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all." + +#. translators: 1: web.config, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A, +#. 5: Element code. +#: wp-admin/options-permalink.php:466 +msgid "Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file." +msgstr "Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file." + +#: wp-admin/options-discussion.php:239 +msgid "An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site." +msgstr "An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site." + +#: wp-admin/includes/post.php:1593 +msgid "Change Permalink Structure" +msgstr "Change Permalink Structure" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-admin/includes/misc.php:1462 +msgid "" +"Howdy,\n" +"\n" +"A site administrator (###USERNAME###) recently requested to have the\n" +"administration email address changed on this site:\n" +"###SITEURL###\n" +"\n" +"To confirm this change, please click on the following link:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hi,\n" +"\n" +"A site administrator (###USERNAME###) recently requested to have the\n" +"administration email address changed on this site:\n" +"###SITEURL###\n" +"\n" +"To confirm this change, please click on the following link:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:598 +msgid "Where your data is sent" +msgstr "Where your data is sent" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:835 +msgid "Copy “%s” URL to clipboard" +msgstr "Copy “%s” URL to clipboard" + +#: wp-admin/includes/class-wp-automatic-updater.php:1084 +msgid "Some data that describes the error your site encountered has been put together." +msgstr "Some data that describes the error your site encountered has been put together." + +#: wp-admin/includes/class-wp-automatic-updater.php:1018 +msgid "An attempt was made, but your site could not be updated automatically." +msgstr "An attempt was made, but your site could not be updated automatically." + +#: wp-admin/includes/class-core-upgrader.php:166 +#: wp-admin/includes/class-wp-upgrader.php:206 +#: wp-admin/includes/update-core.php:1101 +msgid "The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions." +msgstr "The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions." + +#: wp-admin/export-personal-data.php:42 +msgid "Media — A list of URLs for media files the user uploads." +msgstr "Media — A list of URLs for media files the user uploads." + +#: wp-admin/export-personal-data.php:39 +msgid "Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information." +msgstr "Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information." + +#: wp-admin/export-personal-data.php:37 +msgid "WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:" +msgstr "WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:" + +#: wp-admin/export-personal-data.php:28 +msgid "Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses." +msgstr "Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organisation uses." + +#: wp-admin/export-personal-data.php:26 +msgid "Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the \"Right of Data Portability\". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another." +msgstr "Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the \"Right of Data Portability\". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy, or transfer personal data easily from one IT environment to another." + +#: wp-admin/erase-personal-data.php:41 +msgid "Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS)." +msgstr "Comments — WordPress does not delete comments. The software does anonymise (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS)." + +#: wp-admin/erase-personal-data.php:37 +msgid "WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:" +msgstr "WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymises it. That data can include:" + +#: wp-admin/erase-personal-data.php:28 +msgid "Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted." +msgstr "Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organisation uses gets deleted." + +#: wp-admin/erase-personal-data.php:26 +msgid "Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the \"Right to be Forgotten\"." +msgstr "Privacy Laws around the world require businesses and online services to delete, anonymise, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the \"Right to be Forgotten\"." + +#: wp-admin/erase-personal-data.php:25 +msgid "This screen is where you manage requests to erase personal data." +msgstr "This screen is where you manage requests to erase personal data." + +#: wp-admin/edit-form-advanced.php:462 +msgid "This post is being backed up in your browser, just in case." +msgstr "This post is being backed up in your browser, just in case." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/authorize-application.php:185 +msgid "This will grant access to the %2$s site on the network as you have Super Admin rights." +msgid_plural "This will grant access to all %2$s sites on the network as you have Super Admin rights." +msgstr[0] "This will grant access to the %2$s site on the network as you have Super Admin rights." +msgstr[1] "This will grant access to all %2$s sites on the network as you have Super Admin rights." + +#: wp-admin/includes/dashboard.php:2122 +msgid "Learn about block themes" +msgstr "Learn about block themes" + +#: wp-admin/includes/dashboard.php:2121 +msgid "There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles." +msgstr "There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles." + +#: wp-admin/includes/dashboard.php:2120 +msgid "Discover a new way to build your site." +msgstr "Discover a new way to build your site." + +#: wp-admin/includes/dashboard.php:2118 +msgid "Edit styles" +msgstr "Edit styles" + +#: wp-admin/includes/dashboard.php:2117 +msgid "Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?" +msgstr "Tweak your site, or give it a whole new look! Get creative – how about a new colour palette or font?" + +#: wp-admin/includes/dashboard.php:2116 +msgid "Switch up your site’s look & feel with Styles" +msgstr "Switch up your site’s look & feel with Styles" + +#: wp-admin/includes/dashboard.php:2104 +msgid "Open the Customizer" +msgstr "Open the Customiser" + +#: wp-admin/includes/dashboard.php:2102 +msgid "Configure your site’s logo, header, menus, and more in the Customizer." +msgstr "Configure your site’s logo, header, menus, and more in the Customiser." + +#: wp-admin/includes/dashboard.php:2101 +msgid "Start Customizing" +msgstr "Start customising" + +#: wp-admin/includes/dashboard.php:2099 +msgid "Open site editor" +msgstr "Open site editor" + +#: wp-admin/includes/dashboard.php:2098 +msgid "Design everything on your site — from the header down to the footer, all using blocks and patterns." +msgstr "Design everything on your site – from the header down to the footer, all using blocks and patterns." + +#: wp-admin/includes/dashboard.php:2097 +msgid "Customize your entire site with block themes" +msgstr "Customise your entire site with block themes" + +#: wp-admin/includes/dashboard.php:2087 +msgid "Add a new page" +msgstr "Add a new page" + +#: wp-admin/includes/dashboard.php:2086 +msgid "Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash." +msgstr "Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash." + +#: wp-admin/includes/dashboard.php:2085 +msgid "Author rich content with blocks and patterns" +msgstr "Author rich content with blocks and patterns" + +#. translators: %s: Current WordPress version. +#: wp-admin/includes/dashboard.php:2073 +msgid "Learn more about the %s version." +msgstr "Learn more about the %s version." + +#: wp-admin/freedoms.php:35 +msgid "WordPress is free and open source software" +msgstr "WordPress is free and open-source software" + +#: wp-admin/menu.php:286 wp-admin/menu.php:287 wp-admin/menu.php:316 +#: wp-admin/network/menu.php:112 +msgid "Plugin File Editor" +msgstr "Plugin file editor" + +#: wp-admin/menu.php:266 wp-admin/menu.php:267 wp-admin/network/menu.php:87 +msgid "Theme File Editor" +msgstr "Theme file editor" + +#. translators: %s: Documentation URL. +#: wp-admin/user-edit.php:864 +msgid "If this is a development website, you can set the environment type accordingly to enable application passwords." +msgstr "If this is a development website, you can set the environment type accordingly to enable application passwords." + +#: wp-admin/user-edit.php:859 +msgid "The application password feature requires HTTPS, which is not enabled on this site." +msgstr "The application password feature requires HTTPS, which is not enabled on this site." + +#. translators: Last update time format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/update-core.php:1115 +msgid "g:i a T" +msgstr "H:i T" + +#: wp-admin/theme-editor.php:53 +msgid "Documentation on Editing Themes" +msgstr "Documentation on Editing Themes" + +#: wp-admin/site-health.php:90 +msgid "Documentation on Site Health tool" +msgstr "Documentation on Site Health tool" + +#: wp-admin/site-health.php:84 +msgid "In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support." +msgstr "In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support." + +#: wp-admin/site-health.php:83 +msgid "In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention." +msgstr "In the status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention." + +#: wp-admin/site-health.php:82 +msgid "This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation." +msgstr "This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation." + +#: wp-admin/options-privacy.php:47 +msgid "Documentation on Privacy Settings" +msgstr "Documentation on Privacy Settings" + +#: wp-admin/options-privacy.php:41 +msgid "This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate." +msgstr "This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate." + +#: wp-admin/options-privacy.php:40 +msgid "The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show." +msgstr "The privacy screen lets you either build a new privacy policy page or choose one you already have to show." + +#: wp-admin/options-discussion.php:66 +msgid "Individual posts may override these settings. Changes here will only be applied to new posts." +msgstr "Individual posts may override these settings. Changes here will only be applied to new posts." + +#: wp-admin/nav-menus.php:597 +msgid "Menu item moved to the top" +msgstr "Menu item moved to the top" + +#: wp-admin/nav-menus.php:594 +msgid "Menu item removed" +msgstr "Menu item removed" + +#: wp-admin/index.php:37 +msgid "The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title." +msgstr "The dashboard is the first place you will come to, every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title." + +#: wp-admin/index.php:36 +msgid "Welcome to your WordPress Dashboard!" +msgstr "Welcome to your WordPress dashboard!" + +#: wp-admin/includes/user.php:680 +msgid "The application ID must be a UUID." +msgstr "The application ID must be a UUID." + +#: wp-admin/includes/dashboard.php:1378 +msgid "Select location" +msgstr "Select location" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:1203 +msgid "Visit plugin site for %s" +msgstr "Visit plugin site for %s" + +#: wp-admin/includes/class-wp-plugins-list-table.php:859 +#: wp-admin/includes/class-wp-plugins-list-table.php:965 +msgctxt "plugin" +msgid "Cannot Activate" +msgstr "Cannot activate" + +#: wp-admin/includes/class-wp-debug-data.php:1657 +msgid "Max connections number" +msgstr "Maximum connections number" + +#: wp-admin/includes/class-wp-debug-data.php:1653 +msgid "Max allowed packet size" +msgstr "Maximum allowed packet size" + +#: wp-admin/authorize-application.php:94 +msgid "Your website appears to use Basic Authentication, which is not currently compatible with application passwords." +msgstr "Your website appears to use basic authentication, which is not currently compatible with application passwords." + +#. translators: Editor admin screen title. 1: "Edit item" text for the post +#. type, 2: Post title. +#: wp-admin/admin-header.php:65 +msgid "%1$s “%2$s”" +msgstr "%1$s “%2$s”" + +#: wp-admin/includes/theme.php:347 +msgid "Template Editing" +msgstr "Template Editing" + +#. translators: %s: https://wordpress.org/about/license +#: wp-admin/freedoms.php:52 +msgid "WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL." +msgstr "WordPress comes with some awesome, worldview-changing rights courtesy of its licence, the GPL." + +#: wp-admin/credits.php:63 +msgid "Want to see your name in lights on this page?" +msgstr "Want to see your name in lights on this page?" + +#: wp-admin/credits.php:57 wp-admin/credits.php:65 +msgid "Get involved in WordPress." +msgstr "Get involved in WordPress." + +#. translators: 1: https://wordpress.org/about +#: wp-admin/credits.php:52 +msgid "WordPress is created by a worldwide team of passionate individuals." +msgstr "WordPress is created by a worldwide team of passionate individuals." + +#. translators: %s: Name of deactivated plugin. +#: wp-admin/includes/plugin.php:2656 +msgid "%s plugin deactivated during WordPress upgrade." +msgstr "%s plugin deactivated during WordPress upgrade." + +#. translators: 1: Name of deactivated plugin, 2: Plugin version deactivated, +#. 3: Current WP version. +#: wp-admin/includes/plugin.php:2644 +msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s." +msgstr "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s." + +#. translators: 1: Name of deactivated plugin, 2: Plugin version deactivated, +#. 3: Current WP version, 4: Compatible plugin version. +#: wp-admin/includes/plugin.php:2635 +msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." +msgstr "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." + +#: wp-admin/freedoms.php:30 +msgid "The Four Freedoms" +msgstr "The Four Freedoms" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:1311 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:641 +msgctxt "theme" +msgid "Delete %s" +msgstr "Delete %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:631 wp-admin/themes.php:650 wp-admin/themes.php:1022 +#: wp-admin/themes.php:1040 wp-admin/themes.php:1267 wp-admin/themes.php:1289 +msgctxt "theme" +msgid "Live Preview %s" +msgstr "Live Preview %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:610 wp-admin/themes.php:1002 +msgctxt "theme" +msgid "Customize %s" +msgstr "Customise %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:584 wp-admin/themes.php:976 +msgctxt "theme" +msgid "View Theme Details for %s" +msgstr "View theme details for %s" + +#. translators: Hidden accessibility text. +#: wp-admin/site-health.php:176 +msgid "Toggle extra menu items" +msgstr "Toggle extra menu items" + +#. translators: %s: The currently displayed tab. +#: wp-admin/site-health.php:43 +msgid "Site Health - %s" +msgstr "Site health – %s" + +#. translators: 1: wp-config.php, 2: Documentation URL. +#: wp-admin/setup-config.php:485 +msgid "You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information." +msgstr "You need to make the file %1$s writable before you can save your changes. See Changing file permissions for more information." + +#: wp-admin/options-permalink.php:478 wp-admin/options-permalink.php:510 +#: wp-admin/options-permalink.php:545 +msgid "Rewrite rules:" +msgstr "Rewrite rules:" + +#: wp-admin/nav-menus.php:1168 +msgid "List of menu items selected for deletion:" +msgstr "List of menu items selected for deletion:" + +#: wp-admin/nav-menus.php:1166 +msgid "Remove Selected Items" +msgstr "Remove selected items" + +#: wp-admin/nav-menus.php:1129 wp-admin/nav-menus.php:1164 +msgid "Bulk Select" +msgstr "Bulk select" + +#. translators: %s: Item name. +#: wp-admin/nav-menus.php:592 +msgid "Deleted menu item: %s." +msgstr "Deleted menu item: %s." + +#. translators: %s: Item name. +#: wp-admin/nav-menus.php:590 +msgid "item %s" +msgstr "item %s" + +#. translators: %s: Number of available theme updates. +#: wp-admin/menu.php:209 wp-admin/network/menu.php:68 +msgid "Themes %s" +msgstr "Themes %s" + +#. translators: %s: Error message. +#: wp-admin/includes/privacy-tools.php:419 +msgid "Unable to encode the personal data for export. Error: %s" +msgstr "Unable to encode the personal data for export. Error: %s" + +#. translators: %s: Post meta key. +#: wp-admin/includes/privacy-tools.php:404 +msgid "The %s post meta must be an array." +msgstr "The %s post meta must be an array." + +#: wp-admin/includes/dashboard.php:2014 +msgid "Your site’s health is looking good, but there is still one thing you can do to improve its performance and security." +msgstr "Your site’s health is looking good, but there is still one thing you can do to improve its performance and security." + +#: wp-admin/includes/dashboard.php:2010 +msgid "Your site has a critical issue that should be addressed as soon as possible to improve its performance and security." +msgstr "Your site has a critical issue that should be addressed as soon as possible to improve its performance and security." + +#. translators: %s: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1749 +msgid "Learn how to browse happy" +msgstr "Learn how to browse happy" + +#: wp-admin/includes/dashboard.php:1716 +msgid "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." +msgstr "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." + +#: wp-admin/includes/class-wp-debug-data.php:720 +msgid "GD supported file formats" +msgstr "GD supported file formats" + +#: wp-admin/includes/class-wp-debug-data.php:680 +msgid "Unable to determine" +msgstr "Unable to determine" + +#: wp-admin/includes/class-wp-debug-data.php:679 +msgid "ImageMagick supported file formats" +msgstr "ImageMagick-supported file formats" + +#: wp-admin/includes/class-wp-debug-data.php:598 +msgid "Imagick version" +msgstr "Imagick version" + +#: wp-admin/includes/class-theme-installer-skin.php:254 +msgctxt "theme" +msgid "Uploaded" +msgstr "Uploaded" + +#: wp-admin/includes/class-plugin-installer-skin.php:319 +msgctxt "plugin" +msgid "Replace current with uploaded" +msgstr "Replace current with uploaded" + +#: wp-admin/includes/class-plugin-installer-skin.php:231 +msgctxt "plugin" +msgid "Uploaded" +msgstr "Uploaded" + +#: wp-admin/includes/class-plugin-installer-skin.php:230 +msgctxt "plugin" +msgid "Current" +msgstr "Current" + +#. translators: %s: A link to activate the Link Manager plugin. +#: wp-admin/includes/bookmark.php:371 +msgid "Please activate the Link Manager plugin to use the link manager." +msgstr "Please activate the Link Manager plugin to use the link manager." + +#: wp-admin/options-privacy.php:265 +msgid "Create a new Privacy Policy page" +msgstr "Create a new Privacy Policy page" + +#: wp-admin/export-personal-data.php:132 +msgid "Send personal data export confirmation email." +msgstr "Send personal data export confirmation email." + +#: wp-admin/export-personal-data.php:108 +msgid "This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file." +msgstr "This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file." + +#: wp-admin/export-personal-data.php:65 +msgid "Documentation on Export Personal Data" +msgstr "Documentation on Export Personal Data" + +#: wp-admin/export-personal-data.php:57 +msgid "Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well." +msgstr "Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well." + +#. translators: %s: URL to Privacy Policy Guide screen. +#: wp-admin/export-personal-data.php:48 +msgid "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide." +msgstr "If you are not sure, check the plugin documentation, or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide." + +#: wp-admin/export-personal-data.php:41 +msgid "Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL." +msgstr "Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL." + +#: wp-admin/export-personal-data.php:25 +msgid "This screen is where you manage requests for an export of personal data." +msgstr "This screen is where you manage requests for an export of personal data." + +#: wp-admin/site-health.php:118 +msgid "Site URLs could not be switched to HTTPS." +msgstr "Site URLs could not be switched to HTTPS." + +#: wp-admin/site-health.php:109 +msgid "Site URLs switched to HTTPS." +msgstr "Site URLs switched to HTTPS." + +#: wp-admin/site-health.php:66 +msgid "It looks like HTTPS is not supported for your website at this point." +msgstr "It looks like HTTPS is not supported for your website, at this point." + +#: wp-admin/site-health.php:62 +msgid "Sorry, you are not allowed to update this site to HTTPS." +msgstr "Sorry, you are not allowed to update this site to HTTPS." + +#. translators: %s: Number of users. +#: wp-admin/users.php:660 +msgid "Password reset links sent to %s user." +msgid_plural "Password reset links sent to %s users." +msgstr[0] "Password reset links sent to %s user." +msgstr[1] "Password reset links sent to %s users." + +#: wp-admin/users.php:657 +msgid "Password reset link sent." +msgstr "Password reset link sent." + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:731 +msgid "Send %s a link to reset their password. This will not change their password, nor will it force a change." +msgstr "Send %s a link to reset their password. This will not change their password, nor will it force a change." + +#: wp-admin/user-edit.php:724 +msgid "Send Reset Link" +msgstr "Send Reset Link" + +#: wp-admin/privacy-policy-guide.php:95 +msgid "Policies" +msgstr "Policies" + +#: wp-admin/options-privacy.php:182 wp-admin/privacy-policy-guide.php:65 +msgid "The Privacy Settings require JavaScript." +msgstr "The Privacy Settings require JavaScript." + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/options-privacy.php:172 wp-admin/privacy-policy-guide.php:55 +msgctxt "Privacy Settings" +msgid "Policy Guide" +msgstr "Policy Guide" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/options-privacy.php:165 wp-admin/privacy-policy-guide.php:48 +msgctxt "Privacy Settings" +msgid "Settings" +msgstr "Settings" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:82 +msgid "Re-install version %s" +msgstr "Re-install version %s" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:71 +msgid "Update to latest %s nightly" +msgstr "Update to latest %s nightly" + +#: wp-admin/erase-personal-data.php:132 +msgid "Send personal data erasure confirmation email." +msgstr "Send personal data erasure confirmation email." + +#: wp-admin/erase-personal-data.php:127 wp-admin/export-personal-data.php:127 +msgid "Confirmation email" +msgstr "Confirmation email" + +#: wp-admin/erase-personal-data.php:108 +msgid "This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user." +msgstr "This tool helps site owners comply with local laws and regulations by deleting or anonymising known data for a given user." + +#: wp-admin/erase-personal-data.php:65 +msgid "Documentation on Erase Personal Data" +msgstr "Documentation on Erase Personal Data" + +#: wp-admin/erase-personal-data.php:57 +msgid "Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well." +msgstr "Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well." + +#: wp-admin/erase-personal-data.php:55 wp-admin/export-personal-data.php:55 +msgid "Plugin Data" +msgstr "Plugin Data" + +#. translators: %s: URL to Privacy Policy Guide screen. +#: wp-admin/erase-personal-data.php:48 +msgid "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide." +msgstr "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide." + +#: wp-admin/erase-personal-data.php:42 +msgid "Media — A list of URLs for all media file uploads made by the user." +msgstr "Media – a list of URLs for all media file uploads made by the user." + +#: wp-admin/erase-personal-data.php:40 wp-admin/export-personal-data.php:40 +msgid "Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login." +msgstr "Session Tokens – user login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login." + +#: wp-admin/erase-personal-data.php:39 +msgid "Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget." +msgstr "Community Events Location – the IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget." + +#: wp-admin/erase-personal-data.php:38 wp-admin/export-personal-data.php:38 +msgid "Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date." +msgstr "Profile Information – user email address, username, display name, nickname, first name, last name, description/bio, and registration date." + +#: wp-admin/erase-personal-data.php:35 wp-admin/export-personal-data.php:35 +msgid "Default Data" +msgstr "Default Data" + +#: wp-admin/erase-personal-data.php:27 wp-admin/export-personal-data.php:27 +msgid "The tool associates data stored in WordPress with a supplied email address, including profile data and comments." +msgstr "The tool associates data stored in WordPress with a supplied email address, including profile data and comments." + +#: wp-admin/includes/dashboard.php:1483 +msgid "https://make.wordpress.org/community/organize-event-landing-page/" +msgstr "https://make.wordpress.org/community/organize-event-landing-page/" + +#. translators: %s: Localized meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1482 +msgid "Want more events? Help organize the next one!" +msgstr "Want more events? Help organise the next one!" + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:5630 +msgid "A password reset link was emailed to %s." +msgstr "A password reset link was emailed to %s." + +#: wp-admin/includes/ajax-actions.php:5620 +msgid "Cannot send password reset, permission denied." +msgstr "Cannot send password reset, permission denied." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2295 +msgid "The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled." +msgstr "The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled." + +#: wp-admin/includes/class-wp-site-health.php:1563 +#: wp-admin/includes/class-wp-site-health.php:1570 +msgid "Talk to your web host about supporting HTTPS for your website." +msgstr "Talk to your web host about supporting HTTPS for your website." + +#: wp-admin/includes/class-wp-site-health.php:1544 +#: wp-admin/includes/class-wp-site-health.php:1552 +msgid "Update your site to use HTTPS" +msgstr "Update your site to use HTTPS" + +#. translators: 1: wp-config.php, 2: WP_HOME, 3: WP_SITEURL +#: wp-admin/includes/class-wp-site-health.php:1530 +msgid "However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s." +msgstr "However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s." + +#: wp-admin/includes/class-wp-site-health.php:1522 +msgid "HTTPS is already supported for your website." +msgstr "HTTPS is already supported for your website." + +#. translators: 1: URL to Settings > General > WordPress Address, 2: URL to +#. Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1511 +msgid "Your WordPress Address and Site Address are not set up to use HTTPS." +msgstr "Your WordPress Address and Site Address are not set up to use HTTPS." + +#. translators: 1: URL to Settings > General > WordPress Address, 2: URL to +#. Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1501 +msgid "You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default." +msgstr "You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default." + +#. translators: %s: URL to Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1490 +msgid "Your Site Address is not set up to use HTTPS." +msgstr "Your Site Address is not set up to use HTTPS." + +#: wp-admin/includes/class-wp-site-health.php:1379 +msgid "Learn more about debugging in WordPress." +msgstr "Learn more about debugging in WordPress." + +#: wp-admin/includes/revision.php:98 +msgid "Added" +msgstr "Added" + +#: wp-admin/includes/class-wp-users-list-table.php:286 +#: wp-admin/includes/class-wp-users-list-table.php:507 +msgid "Send password reset" +msgstr "Send password reset" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:612 +msgid "Contact information" +msgstr "Contact information" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:431 +msgid "Copy suggested policy text to clipboard" +msgstr "Copy suggested policy text to clipboard" + +#: wp-admin/includes/file.php:2018 +msgid "Directory listing failed." +msgstr "Directory listing failed." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:105 +#: wp-admin/includes/class-wp-theme-install-list-table.php:61 +#: wp-admin/includes/file.php:33 wp-admin/js/updates.js:3039 +msgid "Search Results" +msgstr "Search Results" + +#: wp-admin/includes/privacy-tools.php:944 +msgid "Invalid request ID when processing personal data to erase." +msgstr "Invalid request ID when processing personal data to erase." + +#: wp-admin/includes/privacy-tools.php:793 +msgid "Invalid request ID when merging personal data to export." +msgstr "Invalid request ID when merging personal data to export." + +#: wp-admin/includes/privacy-tools.php:545 +msgid "Unable to archive the personal data export file (HTML format)." +msgstr "Unable to archive the personal data export file (HTML format)." + +#: wp-admin/includes/privacy-tools.php:541 +msgid "Unable to archive the personal data export file (JSON format)." +msgstr "Unable to archive the personal data export file (JSON format)." + +#: wp-admin/includes/privacy-tools.php:447 +msgid "Unable to open personal data export (HTML report) for writing." +msgstr "Unable to open personal data export (HTML report) for writing." + +#: wp-admin/includes/privacy-tools.php:333 +msgid "Unable to create personal data export folder." +msgstr "Unable to create personal data export folder." + +#: wp-admin/includes/privacy-tools.php:173 +msgid "Request added successfully." +msgstr "Request added successfully." + +#: wp-admin/includes/privacy-tools.php:107 +#: wp-admin/includes/privacy-tools.php:124 +msgid "Invalid personal data action." +msgstr "Invalid personal data action." + +#: wp-admin/includes/privacy-tools.php:31 +msgid "Unable to initiate confirmation for personal data request." +msgstr "Unable to initiate confirmation for personal data request." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1891 +msgid "Your site is running on an outdated version of PHP (%s), which should be updated." +msgstr "Your site is running on an outdated version of PHP (%s), which should be updated." + +#: wp-admin/includes/dashboard.php:52 +msgid "PHP Update Recommended" +msgstr "PHP Update Recommended" + +#: wp-admin/user-edit.php:842 +msgid "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." +msgstr "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." + +#: wp-admin/includes/class-wp-site-health.php:2368 +msgid "https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working" +msgstr "https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working" + +#: wp-admin/update-core.php:411 +msgid "This site appears to be under version control. Automatic updates are disabled." +msgstr "This site appears to be under version control. Automatic updates are disabled." + +#: wp-admin/update-core.php:272 +msgid "You are using a development version of WordPress." +msgstr "You are using a development version of WordPress." + +#: wp-admin/update-core.php:78 +msgid "You can update to the latest nightly build manually:" +msgstr "You can update to the latest nightly build manually:" + +#: wp-admin/update-core.php:431 +msgid "Enable automatic updates for all new versions of WordPress." +msgstr "Enable automatic updates for all new versions of WordPress." + +#: wp-admin/update-core.php:420 +msgid "Switch to automatic updates for maintenance and security releases only." +msgstr "Switch to automatic updates for maintenance and security releases only." + +#. translators: Current version of WordPress. +#: wp-admin/update-core.php:1104 +msgid "Current version: %s" +msgstr "Current version: %s" + +#: wp-admin/update-core.php:435 +msgid "This site will not receive automatic updates for new versions of WordPress." +msgstr "This site will not receive automatic updates for new versions of WordPress." + +#: wp-admin/update-core.php:424 +msgid "This site is automatically kept up to date with maintenance and security releases of WordPress only." +msgstr "This site is automatically kept up to date with maintenance and security releases of WordPress only." + +#: wp-admin/update-core.php:413 +msgid "This site is automatically kept up to date with each new version of WordPress." +msgstr "This site is automatically kept up to date with each new version of WordPress." + +#: wp-admin/update-core.php:318 +msgid "WordPress will only receive automatic security and maintenance releases from now on." +msgstr "WordPress will only receive automatic security and maintenance releases from now on." + +#: wp-admin/update-core.php:309 +msgid "Automatic updates for all WordPress versions have been enabled. Thank you!" +msgstr "Automatic updates for all WordPress versions have been enabled. Thank you!" + +#: wp-admin/index.php:82 +msgid "Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website." +msgstr "Site Health Status – Informs you of any potential issues that should be addressed to improve the performance or security of your website." + +#. translators: %s: Application name. +#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:983 +#: wp-admin/js/auth-app.js:90 +msgid "Your new password for %s is:" +msgstr "Your new password for %s is:" + +#: wp-admin/user-edit.php:837 +msgid "Add Application Password" +msgstr "Add Application Password" + +#: wp-admin/user-edit.php:823 +msgid "Required to create an Application Password, but not to update the user." +msgstr "Required to create an Application Password, but not to update the user." + +#: wp-admin/about.php:315 +msgid "Go to Updates" +msgstr "Go to Updates" + +#: wp-admin/user-edit.php:225 +msgid "← Go to Users" +msgstr "← Go to Users" + +#: wp-admin/revision.php:112 +msgid "← Go to editor" +msgstr "← Go to editor" + +#: wp-admin/includes/class-plugin-installer-skin.php:145 +#: wp-admin/includes/class-plugin-installer-skin.php:151 +msgid "Go to Plugin Installer" +msgstr "Go to Plugin Installer" + +#: wp-admin/includes/class-plugin-installer-skin.php:139 +msgid "Go to Importers" +msgstr "Go to Importers" + +#: wp-admin/includes/class-theme-installer-skin.php:164 +msgid "Go to Theme Installer" +msgstr "Go to Theme Installer" + +#: wp-admin/includes/privacy-tools.php:294 +msgid "Go to top" +msgstr "Go to top" + +#. translators: %s is the name of the city we couldn't locate. Replace the +#. examples with cities in your locale, but test that they match the expected +#. location before including them. Use endonyms (native locale names) whenever +#. possible. +#: wp-admin/includes/dashboard.php:1440 +msgid "%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland." +msgstr "%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland." + +#: wp-admin/authorize-application.php:323 +msgid "You will be returned to the WordPress Dashboard, and no changes will be made." +msgstr "You will be returned to the WordPress Dashboard, and no changes will be made." + +#: wp-admin/authorize-application.php:305 +msgid "No, I do not approve of this connection" +msgstr "No, I do not approve of this connection" + +#: wp-admin/authorize-application.php:298 +msgid "You will be given a password to manually enter into the application in question." +msgstr "You will be given a password to manually enter into the application in question." + +#. translators: %s: The URL the user is being redirected to. +#: wp-admin/authorize-application.php:285 +#: wp-admin/authorize-application.php:319 +msgid "You will be sent to %s" +msgstr "You will be sent to %s" + +#: wp-admin/authorize-application.php:271 +msgid "Yes, I approve of this connection" +msgstr "Yes, I approve of this connection" + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/authorize-application.php:177 +msgid "This will grant access to the %2$s site in this installation that you have permissions on." +msgid_plural "This will grant access to all %2$s sites in this installation that you have permissions on." +msgstr[0] "This will grant access to the %2$s site in this installation on which you have permissions." +msgstr[1] "This will grant access to all %2$s sites in this installation on which you have permissions." + +#: wp-admin/authorize-application.php:164 +msgid "Would you like to give this application access to your account? You should only do this if you trust the application in question." +msgstr "Would you like to give this application access to your account? You should only do this if you trust the application in question." + +#. translators: %s: Application name. +#: wp-admin/authorize-application.php:158 +msgid "Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question." +msgstr "Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question." + +#: wp-admin/authorize-application.php:152 +msgid "An application would like to connect to your account." +msgstr "An application would like to connect to your account." + +#: wp-admin/authorize-application.php:88 wp-admin/authorize-application.php:95 +#: wp-admin/authorize-application.php:113 +msgid "Cannot Authorize Application" +msgstr "Cannot Authorise Application" + +#: wp-admin/authorize-application.php:87 +msgid "The Authorize Application request is not allowed." +msgstr "The Authorise Application request is not allowed." + +#: wp-admin/authorize-application.php:66 +msgid "Authorize Application" +msgstr "Authorise Application" + +#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:992 +#: wp-admin/js/auth-app.js:98 +msgid "Be sure to save this in a safe location. You will not be able to retrieve it." +msgstr "Be sure to save this in a safe location. You will not be able to retrieve it." + +#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:821 +msgid "New Application Password Name" +msgstr "New Application Password Name" + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/user-edit.php:791 +msgid "Application passwords grant access to the %2$s site in this installation that you have permissions on." +msgid_plural "Application passwords grant access to all %2$s sites in this installation that you have permissions on." +msgstr[0] "Application passwords grant access to the %2$s site in this installation on which you have permissions." +msgstr[1] "Application passwords grant access to all %2$s sites in this installation on which you have permissions." + +#: wp-admin/user-edit.php:779 +msgid "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." +msgstr "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." + +#: wp-admin/user-edit.php:778 +msgid "Application Passwords" +msgstr "Application Passwords" + +#: wp-admin/user-edit.php:702 +msgid "Type the new password again." +msgstr "Type the new password again." + +#: wp-admin/user-edit.php:678 +msgid "Set New Password" +msgstr "Set New Password" + +#: wp-admin/user-new.php:617 +msgid "Type the password again." +msgstr "Type the password again." + +#. translators: 1: Installed WordPress version number, 2: URL to WordPress +#. release notes, 3: New WordPress version number, including locale if +#. necessary. +#: wp-admin/update-core.php:142 +msgid "You can update from WordPress %1$s to WordPress %3$s manually:" +msgstr "You can update from WordPress %1$s to WordPress %3$s manually:" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:156 +msgid "Revoke all application passwords" +msgstr "Revoke all application passwords" + +#. translators: %s: the application password's given name. +#: wp-admin/includes/class-wp-application-passwords-list-table.php:117 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:237 +msgid "Revoke \"%s\"" +msgstr "Revoke \"%s\"" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:32 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:118 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:238 +msgid "Revoke" +msgstr "Revoke" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:31 +msgid "Last IP" +msgstr "Last IP" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:30 +msgid "Last Used" +msgstr "Last Used" + +#. translators: 1: The Site Health action that is no longer used by core. 2: +#. The new function that replaces it. +#: wp-admin/includes/ajax-actions.php:5358 +#: wp-admin/includes/ajax-actions.php:5391 +#: wp-admin/includes/ajax-actions.php:5424 +#: wp-admin/includes/ajax-actions.php:5474 +msgid "The Site Health check for %1$s has been replaced with %2$s." +msgstr "The Site Health check for %1$s has been replaced with %2$s." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:139 +msgid "Erase personal data" +msgstr "Erase personal data" + +#. translators: 1: Theme name, 2: Current version number, 3: New version +#. number. +#: wp-admin/includes/class-wp-automatic-updater.php:1395 +#: wp-admin/includes/class-wp-automatic-updater.php:1466 +msgid "- %1$s (from version %2$s to %3$s)" +msgstr "– %1$s (from version %2$s to %3$s)" + +#: wp-admin/includes/template.php:2433 +msgid "Current Header Video" +msgstr "Current Header Video" + +#: wp-admin/includes/class-wp-site-health.php:2810 +msgid "Authorization header" +msgstr "Authorisation header" + +#: wp-admin/includes/class-wp-site-health.php:2369 +msgid "Learn how to configure the Authorization header." +msgstr "Learn how to configure the Authorisation header." + +#: wp-admin/includes/class-wp-site-health.php:2363 +msgid "Flush permalinks" +msgstr "Flush permalinks" + +#: wp-admin/includes/class-wp-site-health.php:2344 +msgid "The authorization header is invalid" +msgstr "The authorisation header is invalid" + +#: wp-admin/includes/class-wp-site-health.php:2342 +msgid "The authorization header is missing" +msgstr "The authorisation header is missing" + +#: wp-admin/includes/class-wp-site-health.php:2327 +msgid "The Authorization header is working as expected" +msgstr "The authorisation header is working as expected" + +#: wp-admin/includes/class-wp-screen.php:1118 +msgid "Some screen elements can be shown or hidden by using the checkboxes." +msgstr "Some screen elements can be shown or hidden by using the checkboxes." + +#: wp-admin/includes/class-wp-screen.php:1116 +msgid "Screen elements" +msgstr "Screen elements" + +#: wp-admin/includes/user.php:751 +msgid "The URL must be served over a secure connection." +msgstr "The URL must be served over a secure connection." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:570 +msgid "If you request a password reset, your IP address will be included in the reset email." +msgstr "If you request a password reset, your IP address will be included in the reset email." + +#. translators: %s: Plugin search term. +#: wp-admin/includes/class-wp-plugins-list-table.php:420 +msgid "No plugins found for: %s." +msgstr "No plugins found for: %s." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:92 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:98 +msgid "Complete request" +msgstr "Complete request" + +#. translators: %s: Request email. +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:88 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:94 +msgid "Mark export request for “%s” as completed." +msgstr "Mark export request for “%s” as completed." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:346 +msgid "%d request deleted successfully." +msgid_plural "%d requests deleted successfully." +msgstr[0] "%d request deleted successfully." +msgstr[1] "%d requests deleted successfully." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:329 +msgid "%d request failed to delete." +msgid_plural "%d requests failed to delete." +msgstr[0] "%d request failed to delete." +msgstr[1] "%d requests failed to delete." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:303 +msgid "%d request marked as complete." +msgid_plural "%d requests marked as complete." +msgstr[0] "%d request marked as complete." +msgstr[1] "%d requests marked as complete." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:276 +msgid "%d confirmation request re-sent successfully." +msgid_plural "%d confirmation requests re-sent successfully." +msgstr[0] "%d confirmation request resent successfully." +msgstr[1] "%d confirmation requests resent successfully." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:259 +msgid "%d confirmation request failed to resend." +msgid_plural "%d confirmation requests failed to resend." +msgstr[0] "%d confirmation request failed to resend." +msgstr[1] "%d confirmation requests failed to resend." + +#: wp-admin/includes/class-wp-privacy-requests-table.php:217 +msgid "Mark requests as completed" +msgstr "Mark requests as completed" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:46 +msgid "Next steps" +msgstr "Next steps" + +#: wp-admin/includes/privacy-tools.php:566 +msgid "Unable to open personal data export file (archive) for writing." +msgstr "Unable to open personal data export file (archive) for writing." + +#: wp-admin/includes/privacy-tools.php:432 +msgid "Unable to open personal data export file (JSON report) for writing." +msgstr "Unable to open personal data export file (JSON report) for writing." + +#: wp-admin/includes/privacy-tools.php:341 +msgid "Unable to protect personal data export folder from browsing." +msgstr "Unable to protect personal data export folder from browsing." + +#: wp-admin/includes/privacy-tools.php:325 +msgid "Invalid email address when generating personal data export file." +msgstr "Invalid email address when generating personal data export file." + +#: wp-admin/includes/privacy-tools.php:319 +msgid "Invalid request ID when generating personal data export file." +msgstr "Invalid request ID when generating personal data export file." + +#: wp-admin/includes/privacy-tools.php:312 +msgid "Unable to generate personal data export file. ZipArchive not available." +msgstr "Unable to generate personal data export file. ZipArchive not available." + +#. translators: %s: Search query. +#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:343 +#: wp-admin/edit.php:429 wp-admin/link-manager.php:111 wp-admin/plugins.php:778 +#: wp-admin/upload.php:430 wp-admin/users.php:795 wp-admin/js/updates.js:3139 +#: wp-admin/network/sites.php:399 wp-admin/network/themes.php:374 +#: wp-admin/network/users.php:300 +msgid "Search results for: %s" +msgstr "Search results for: %s" + +#: wp-admin/options-reading.php:46 +msgid "Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive." +msgstr "Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive." + +#: wp-admin/options-reading.php:45 +msgid "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen." +msgstr "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2284 +msgid "The \"%1$s\" value is smaller than \"%2$s\"" +msgstr "The \"%1$s\" value is smaller than \"%2$s\"" + +#: wp-admin/includes/class-wp-debug-data.php:229 +msgid "Environment type" +msgstr "Environment type" + +#: wp-admin/plugins.php:597 +msgid "Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system." +msgstr "Auto-updates are only available for plugins recognised by WordPress.org, or that include a compatible update system." + +#: wp-admin/includes/theme.php:902 wp-admin/themes.php:1164 +msgid "Update Incompatible" +msgstr "Update Incompatible" + +#: wp-admin/update-core.php:733 +msgid "This update does not work with your version of WordPress." +msgstr "This update does not work with your version of WordPress." + +#: wp-admin/update-core.php:699 +msgid "This update does not work with your versions of WordPress and PHP." +msgstr "This update does not work with your versions of WordPress and PHP." + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:221 wp-admin/options-discussion.php:225 +msgid "Disallowed Comment Keys" +msgstr "Disallowed Comment Keys" + +#: wp-admin/includes/class-wp-site-health.php:2763 +msgid "Plugin and theme auto-updates" +msgstr "Plugin and theme auto-updates" + +#: wp-admin/includes/class-wp-site-health.php:3099 +msgid "There appear to be no issues with plugin and theme auto-updates." +msgstr "There appear to be no issues with plugin and theme auto-updates." + +#: wp-admin/includes/class-wp-site-health.php:3093 +msgid "Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." + +#: wp-admin/includes/class-wp-site-health.php:3088 +msgid "Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available." + +#: wp-admin/includes/class-wp-site-health.php:3083 +msgid "Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." + +#: wp-admin/includes/class-wp-site-health.php:3074 +msgid "Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected." +msgstr "Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected." + +#: wp-admin/includes/class-wp-site-health.php:1801 +msgid "Your site may have problems auto-updating plugins and themes" +msgstr "Your site may have problems auto-updating plugins and themes" + +#: wp-admin/includes/class-wp-site-health.php:1790 +msgid "Plugin and theme auto-updates ensure that the latest versions are always installed." +msgstr "Plugin and theme auto-updates ensure that the latest versions are always installed." + +#: wp-admin/includes/class-wp-site-health.php:1782 +msgid "Plugin and theme auto-updates appear to be configured correctly" +msgstr "Plugin and theme auto-updates appear to be configured correctly" + +#. translators: Hidden accessibility text. %s: Theme name. +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:149 +#: wp-admin/includes/class-theme-upgrader-skin.php:115 +#: wp-admin/includes/class-wp-themes-list-table.php:217 +msgctxt "theme" +msgid "Activate “%s”" +msgstr "Activate “%s”" + +#: wp-admin/includes/ajax-actions.php:5564 +msgid "Sorry, you are not allowed to modify plugins." +msgstr "Sorry, you are not allowed to modify plugins." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2305 +msgid "The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files." +msgstr "The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files." + +#. translators: 1: file_uploads, 2: 0 +#: wp-admin/includes/class-wp-site-health.php:2270 +msgid "%1$s is set to %2$s. You won't be able to upload files on your site." +msgstr "%1$s is set to %2$s. You won't be able to upload files on your site." + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-site-health.php:2258 +msgid "The %s function has been disabled, some media settings are unavailable because of this." +msgstr "The %s function has been disabled, some media settings are unavailable because of this." + +#. translators: 1: file_uploads, 2: php.ini +#: wp-admin/includes/class-wp-site-health.php:2245 +msgid "The %1$s directive in %2$s determines if uploading files is allowed on your site." +msgstr "The %1$s directive in %2$s determines if uploading files is allowed on your site." + +#: wp-admin/includes/class-wp-site-health.php:2235 +msgid "Files can be uploaded" +msgstr "Files can be uploaded" + +#: wp-admin/includes/class-wp-debug-data.php:635 +msgid "Max effective file size" +msgstr "Maximum effective file size" + +#: wp-admin/includes/class-wp-debug-data.php:631 +msgid "Max size of an uploaded file" +msgstr "Maximum size of an uploaded file" + +#: wp-admin/includes/class-wp-debug-data.php:627 +msgid "Max size of post data allowed" +msgstr "Maximum size of post data allowed" + +#: wp-admin/includes/class-wp-debug-data.php:622 +#: wp-admin/includes/class-wp-site-health.php:2759 +msgid "File uploads" +msgstr "File uploads" + +#: wp-admin/includes/class-wp-debug-data.php:604 +msgid "File upload settings" +msgstr "File upload settings" + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:452 +msgctxt "theme" +msgid "Cannot Install %s" +msgstr "Cannot Install %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/deprecated.php:1392 +msgctxt "plugin" +msgid "Install %s" +msgstr "Install %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-theme-install-list-table.php:338 +#: wp-admin/theme-install.php:445 +msgctxt "theme" +msgid "Install %s" +msgstr "Install %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:268 wp-admin/includes/update.php:758 +msgctxt "theme" +msgid "Update %s now" +msgstr "Update %s now" + +#. translators: 1: Theme name, 2: Version number. +#: wp-admin/includes/class-wp-automatic-updater.php:1403 +#: wp-admin/includes/class-wp-automatic-updater.php:1474 +msgid "- %1$s version %2$s" +msgstr "– %1$s version %2$s" + +#: wp-admin/theme-install.php:413 wp-admin/theme-install.php:492 +msgctxt "theme" +msgid "Activated" +msgstr "Activated" + +#: wp-admin/themes.php:86 +msgid "Sorry, you are not allowed to enable themes automatic updates." +msgstr "Sorry, you are not allowed to enable themes automatic updates." + +#: wp-admin/includes/class-plugin-installer-skin.php:217 +msgid "This plugin is already installed." +msgstr "This plugin is already installed." + +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/includes/plugin-install.php:973 wp-admin/includes/update.php:566 +#: wp-admin/js/updates.js:2544 +msgctxt "plugin" +msgid "Update %s now" +msgstr "Update %s now" + +#. translators: %s: Importer name. +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/import.php:165 wp-admin/includes/plugin-install.php:951 +#: wp-admin/js/updates.js:1308 wp-admin/js/updates.js:2553 +#: wp-admin/js/updates.js:2689 +msgctxt "plugin" +msgid "Install %s now" +msgstr "Install %s now" + +#. translators: Hidden accessibility text. +#: wp-admin/user-edit.php:997 wp-admin/js/application-passwords.js:203 +#: wp-admin/js/common.js:1109 +msgid "Dismiss this notice." +msgstr "Dismiss this notice." + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:430 wp-admin/themes.php:641 +#: wp-admin/themes.php:1031 wp-admin/themes.php:1299 +msgctxt "theme" +msgid "Cannot Activate %s" +msgstr "Cannot Activate %s" + +#: wp-admin/themes.php:335 wp-admin/network/themes.php:434 +msgid "Theme will no longer be auto-updated." +msgstr "Theme will no longer be auto-updated." + +#: wp-admin/themes.php:326 wp-admin/network/themes.php:423 +msgid "Theme will be auto-updated." +msgstr "Theme will be auto-updated." + +#: wp-admin/themes.php:191 wp-admin/network/themes.php:328 +msgid "Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system." + +#: wp-admin/themes.php:106 +msgid "Sorry, you are not allowed to disable themes automatic updates." +msgstr "Sorry, you are not allowed to disable themes automatic updates." + +#: wp-admin/plugins.php:469 +msgid "Sorry, you are not allowed to manage plugins automatic updates." +msgstr "Sorry, you are not allowed to manage plugins automatic updates." + +#: wp-admin/edit.php:185 wp-admin/post.php:326 +msgid "Error in deleting the item." +msgstr "Error in deleting the item." + +#: wp-admin/edit.php:160 wp-admin/post.php:291 wp-admin/upload.php:321 +msgid "Error in restoring the item from Trash." +msgstr "Error in restoring the item from Bin." + +#: wp-admin/edit.php:132 wp-admin/post.php:261 wp-admin/upload.php:300 +msgid "Error in moving the item to Trash." +msgstr "Error in moving the item to Bin." + +#: wp-admin/plugins.php:754 +msgid "Selected plugins will no longer be auto-updated." +msgstr "Selected plugins will no longer be auto-updated." + +#: wp-admin/plugins.php:752 +msgid "Selected plugins will be auto-updated." +msgstr "Selected plugins will be auto-updated." + +#: wp-admin/plugins.php:750 +msgid "Plugin will no longer be auto-updated." +msgstr "Plugin will no longer be auto-updated." + +#: wp-admin/plugins.php:748 +msgid "Plugin will be auto-updated." +msgstr "Plugin will be auto-updated." + +#: wp-admin/plugins.php:596 +msgid "Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system." + +#: wp-admin/plugins.php:473 +msgid "Please connect to your network admin to manage plugins automatic updates." +msgstr "Please connect to your network admin to manage plugins automatic updates." + +#. translators: %s: Human-readable time interval. +#: wp-admin/index.php:159 +msgid "The admin email verification page will reappear after %s." +msgstr "The admin email verification page will reappear after %s." + +#: wp-admin/includes/class-wp-debug-data.php:1168 wp-admin/plugins.php:594 +#: wp-admin/themes.php:197 wp-admin/update-core.php:1025 +#: wp-admin/network/themes.php:326 +msgid "Auto-updates" +msgstr "Auto-updates" + +#: wp-admin/plugins.php:598 wp-admin/themes.php:192 +#: wp-admin/update-core.php:1020 wp-admin/network/themes.php:329 +msgid "Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling." +msgstr "Please note: third-party themes and plugins, or custom code, may override WordPress scheduling." + +#: wp-admin/update-core.php:1019 +msgid "Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." + +#. translators: 1: Documentation on WordPress backups, 2: Documentation on +#. updating WordPress. +#: wp-admin/update-core.php:260 +msgid "Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page." +msgstr "Important: before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page." + +#: wp-admin/customize.php:203 wp-admin/theme-install.php:433 +#: wp-admin/theme-install.php:495 wp-admin/themes.php:645 +#: wp-admin/themes.php:1035 wp-admin/themes.php:1303 +msgctxt "theme" +msgid "Cannot Activate" +msgstr "Cannot Activate" + +#: wp-admin/comment.php:47 +msgid "You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again." +msgstr "You cannot edit this comment because the associated post is in the Bin. Please restore the post first, then try again." + +#: wp-admin/async-upload.php:70 +msgctxt "media item" +msgid "Success" +msgstr "Success" + +#. translators: 1: Current WordPress version, 2: Plugin name, 3: Required +#. WordPress version. +#: wp-admin/includes/plugin.php:1192 +msgctxt "plugin" +msgid "Error: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s." +msgstr "Error: current WordPress version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires WordPress %3$s." + +#. translators: 1: Current PHP version, 2: Plugin name, 3: Required PHP +#. version. +#: wp-admin/includes/plugin.php:1181 +msgctxt "plugin" +msgid "Error: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s." +msgstr "Error: current PHP version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires PHP %3$s." + +#. translators: 1: Current WordPress version, 2: Current PHP version, 3: Plugin +#. name, 4: Required WordPress version, 5: Required PHP version. +#: wp-admin/includes/plugin.php:1168 +msgctxt "plugin" +msgid "Error: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s." +msgstr "Error: current versions of WordPress (%1$s) and PHP (%2$s) do not meet the minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s." + +#: wp-admin/includes/ajax-actions.php:5586 +msgid "Invalid data. The item does not exist." +msgstr "Invalid data. The item does not exist." + +#: wp-admin/includes/ajax-actions.php:5557 +#: wp-admin/includes/ajax-actions.php:5582 +msgid "Invalid data. Unknown type." +msgstr "Invalid data. Unknown type." + +#: wp-admin/includes/ajax-actions.php:5552 +msgid "Invalid data. Unknown state." +msgstr "Invalid data. Unknown state." + +#: wp-admin/includes/ajax-actions.php:5546 +msgid "Invalid data. No selected item." +msgstr "Invalid data. No selected item." + +#: wp-admin/includes/ajax-actions.php:1326 +msgid "You cannot reply to a comment on a draft post." +msgstr "You cannot reply to a comment on a draft post." + +#. translators: %s: Themes screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1499 +msgid "To manage themes on your site, visit the Themes page: %s" +msgstr "To manage themes on your site, visit the Themes page: %s" + +#. translators: %s: Plugins screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1490 +msgid "To manage plugins on your site, visit the Plugins page: %s" +msgstr "To manage plugins on your site, visit the Plugins page: %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1460 +msgid "These themes are now up to date:" +msgstr "These themes are now up to date:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1422 +msgid "These plugins are now up to date:" +msgstr "These plugins are now up to date:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1389 +msgid "These themes failed to update:" +msgstr "These themes failed to update:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1345 +msgid "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." +msgstr "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1335 +msgid "Howdy! Themes failed to update on your site at %s." +msgstr "Hi! Themes failed to update on your site at %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1332 +msgid "[%s] Some themes have failed to update" +msgstr "[%s] Some themes have failed to update" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1327 +msgid "Howdy! Plugins failed to update on your site at %s." +msgstr "Hi! Plugins failed to update on your site at %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1324 +msgid "[%s] Some plugins have failed to update" +msgstr "[%s] Some plugins have failed to update" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1319 +msgid "Howdy! Plugins and themes failed to update on your site at %s." +msgstr "Hi! Plugins and themes failed to update on your site at %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1316 +msgid "[%s] Some plugins and themes have failed to update" +msgstr "[%s] Some plugins and themes have failed to update" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1306 +msgid "Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Hi! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1303 +msgid "[%s] Some themes were automatically updated" +msgstr "[%s] Some themes were automatically updated" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1298 +msgid "Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Hi! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1295 +msgid "[%s] Some plugins were automatically updated" +msgstr "[%s] Some plugins were automatically updated" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1290 +msgid "Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Hi! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1287 +msgid "[%s] Some plugins and themes have automatically updated" +msgstr "[%s] Some plugins and themes have automatically updated" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1420 +msgid "Move %s box down" +msgstr "Move %s box down" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1407 +msgid "Move %s box up" +msgstr "Move %s box up" + +#: wp-admin/includes/class-wp-comments-list-table.php:381 +msgctxt "comment" +msgid "Not spam" +msgstr "Not spam" + +#: wp-admin/includes/class-wp-site-health.php:2730 +msgid "PHP Sessions" +msgstr "PHP Sessions" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1187 +msgid "A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests." +msgstr "A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests." + +#: wp-admin/includes/class-wp-site-health.php:1181 +msgid "An active PHP session was detected" +msgstr "An active PHP session was detected" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1170 +msgid "PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests." +msgstr "PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests." + +#: wp-admin/includes/class-wp-site-health.php:1160 +msgid "No PHP sessions detected" +msgstr "No PHP sessions detected" + +#: wp-admin/includes/class-wp-list-table.php:170 +#: wp-admin/includes/class-wp-screen.php:1338 +msgid "Extended view" +msgstr "Extended view" + +#: wp-admin/includes/class-wp-list-table.php:169 +#: wp-admin/includes/class-wp-screen.php:1334 +msgid "Compact view" +msgstr "Compact view" + +#: wp-admin/includes/user.php:183 +msgid "Error: Passwords do not match. Please enter the same password in both password fields." +msgstr "Error: Passwords do not match. Please enter the same password in both password fields." + +#: wp-admin/includes/meta-boxes.php:383 wp-admin/includes/meta-boxes.php:384 +#: wp-admin/js/post.js:777 +msgctxt "post action/button label" +msgid "Schedule" +msgstr "Schedule" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:305 +#: wp-admin/js/updates.js:3158 +msgid "No plugins found. Try a different search." +msgstr "No plugins found. Try a different search." + +#. translators: %s: Time until the next update. +#: wp-admin/includes/update.php:1120 +msgid "Automatic update scheduled in %s." +msgstr "Automatic update scheduled in %s." + +#. translators: %s: Duration that WP-Cron has been overdue. +#: wp-admin/includes/update.php:1114 +msgid "Automatic update overdue by %s. There may be a problem with WP-Cron." +msgstr "Automatic update overdue by %s. There may be a problem with WP-Cron." + +#: wp-admin/includes/update.php:1104 +msgid "Automatic update not scheduled. There may be a problem with WP-Cron." +msgstr "Automatic update not scheduled. There may be a problem with WP-Cron." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:307 +msgid "You are updating a plugin. Be sure to back up your database and files first." +msgstr "You are updating a plugin. Be sure to back up your database and files first." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:301 +msgid "You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded plugin. +#: wp-admin/includes/class-plugin-installer-skin.php:286 +#: wp-admin/includes/class-plugin-upgrader.php:510 +msgid "Your WordPress version is %1$s, however the uploaded plugin requires %2$s." +msgstr "Your WordPress version is %1$s, however the uploaded plugin requires %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. plugin. +#: wp-admin/includes/class-plugin-installer-skin.php:274 +#: wp-admin/includes/class-plugin-upgrader.php:499 +msgid "The PHP version on your server is %1$s, however the uploaded plugin requires %2$s." +msgstr "The PHP version on your server is %1$s, however the uploaded plugin requires %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:265 +msgid "The plugin cannot be updated due to the following:" +msgstr "The plugin cannot be updated due to the following:" + +#: wp-admin/includes/class-plugin-installer-skin.php:222 +msgid "Plugin name" +msgstr "Plugin name" + +#: wp-admin/includes/class-theme-upgrader.php:107 +msgid "Theme downgraded successfully." +msgstr "Theme downgraded successfully." + +#: wp-admin/includes/class-theme-upgrader.php:106 +msgid "Theme downgrade failed." +msgstr "Theme downgrade failed." + +#: wp-admin/includes/class-theme-upgrader.php:105 +msgid "Downgrading the theme…" +msgstr "Downgrading the theme…" + +#: wp-admin/includes/class-theme-upgrader.php:99 +msgid "Updating the theme…" +msgstr "Updating the theme…" + +#. translators: %s: Theme error. +#: wp-admin/includes/class-theme-upgrader.php:95 +msgid "The active theme has the following error: \"%s\"." +msgstr "The active theme has the following error: \"%s\"." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1324 +#: wp-admin/themes.php:801 wp-admin/js/updates.js:3474 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:823 +msgid "Enable auto-updates" +msgstr "Enable auto-updates" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1320 +#: wp-admin/themes.php:797 wp-admin/js/updates.js:3463 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:819 +msgid "Disable auto-updates" +msgstr "Disable auto-updates" + +#: wp-admin/includes/class-wp-plugins-list-table.php:632 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:489 +msgid "Disable Auto-updates" +msgstr "Disable Auto-updates" + +#: wp-admin/includes/class-wp-plugins-list-table.php:629 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:485 +msgid "Enable Auto-updates" +msgstr "Enable Auto-updates" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:581 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:433 +msgid "Auto-updates Disabled (%s)" +msgid_plural "Auto-updates Disabled (%s)" +msgstr[0] "Auto-updates Disabled (%s)" +msgstr[1] "Auto-updates Disabled (%s)" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:573 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:425 +msgid "Auto-updates Enabled (%s)" +msgid_plural "Auto-updates Enabled (%s)" +msgstr[0] "Auto-updates Enabled (%s)" +msgstr[1] "Auto-updates Enabled (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:478 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:337 +msgid "Automatic Updates" +msgstr "Automatic Updates" + +#: wp-admin/includes/class-wp-plugins-list-table.php:429 +#: wp-admin/plugin-editor.php:34 wp-admin/js/updates.js:1457 +msgid "No plugins are currently available." +msgstr "No plugins are currently available." + +#: wp-admin/includes/image-edit.php:173 +msgid "Restore original image" +msgstr "Restore original image" + +#: wp-admin/includes/class-plugin-installer-skin.php:348 +#: wp-admin/includes/class-theme-installer-skin.php:383 +msgid "The uploaded file has expired. Please go back and upload it again." +msgstr "The uploaded file has expired. Please go back and upload it again." + +#: wp-admin/includes/class-plugin-installer-skin.php:330 +#: wp-admin/includes/class-theme-installer-skin.php:365 +msgid "Cancel and go back" +msgstr "Cancel and go back" + +#: wp-admin/includes/class-theme-installer-skin.php:354 +msgctxt "theme" +msgid "Replace installed with uploaded" +msgstr "Replace installed with uploaded" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:342 +msgid "You are updating a theme. Be sure to back up your database and files first." +msgstr "You are updating a theme. Be sure to back up your database and files first." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:336 +msgid "You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded theme. +#: wp-admin/includes/class-theme-installer-skin.php:321 +#: wp-admin/includes/class-theme-upgrader.php:658 +msgid "Your WordPress version is %1$s, however the uploaded theme requires %2$s." +msgstr "Your WordPress version is %1$s, however the uploaded theme requires %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. theme. +#: wp-admin/includes/class-theme-installer-skin.php:309 +#: wp-admin/includes/class-theme-upgrader.php:648 +msgid "The PHP version on your server is %1$s, however the uploaded theme requires %2$s." +msgstr "The PHP version on your server is %1$s, however the uploaded theme requires %2$s." + +#: wp-admin/includes/class-theme-installer-skin.php:300 +msgid "The theme cannot be updated due to the following:" +msgstr "The theme cannot be updated due to the following:" + +#: wp-admin/includes/class-theme-installer-skin.php:276 +msgid "(not found)" +msgstr "(not found)" + +#: wp-admin/includes/class-plugin-installer-skin.php:226 +#: wp-admin/includes/class-theme-installer-skin.php:249 +msgid "Required PHP version" +msgstr "Required PHP version" + +#: wp-admin/includes/class-plugin-installer-skin.php:225 +#: wp-admin/includes/class-theme-installer-skin.php:248 +msgid "Required WordPress version" +msgstr "Required WordPress version" + +#: wp-admin/includes/class-theme-installer-skin.php:245 +msgid "Theme name" +msgstr "Theme name" + +#: wp-admin/includes/theme.php:1092 wp-admin/theme-install.php:454 +#: wp-admin/theme-install.php:501 +msgctxt "theme" +msgid "Cannot Install" +msgstr "Cannot Install" + +#: wp-admin/includes/theme.php:332 +msgid "Block Editor Patterns" +msgstr "Block Editor Patterns" + +#: wp-admin/includes/class-plugin-upgrader.php:98 +msgid "Plugin downgraded successfully." +msgstr "Plugin downgraded successfully." + +#: wp-admin/includes/class-plugin-upgrader.php:97 +msgid "Plugin downgrade failed." +msgstr "Plugin downgrade failed." + +#: wp-admin/includes/class-plugin-upgrader.php:96 +msgid "Downgrading the plugin…" +msgstr "Downgrading the plugin…" + +#: wp-admin/includes/class-plugin-upgrader.php:90 +msgid "Updating the plugin…" +msgstr "Updating the plugin…" + +#: wp-admin/includes/class-plugin-upgrader.php:81 +msgid "Could not remove the current plugin." +msgstr "Could not remove the current plugin." + +#: wp-admin/includes/class-plugin-upgrader.php:80 +msgid "Removing the current plugin…" +msgstr "Removing the current plugin…" + +#: wp-admin/includes/class-wp-debug-data.php:1279 +msgid "Auto-update" +msgstr "Auto-update" + +#: wp-admin/includes/class-wp-debug-data.php:1005 +#: wp-admin/includes/class-wp-debug-data.php:1385 +#: wp-admin/includes/class-wp-plugins-list-table.php:1311 +#: wp-admin/themes.php:792 wp-admin/js/updates.js:3476 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:810 +msgid "Auto-updates disabled" +msgstr "Auto-updates disabled" + +#: wp-admin/includes/class-wp-debug-data.php:1003 +#: wp-admin/includes/class-wp-debug-data.php:1383 +#: wp-admin/includes/class-wp-plugins-list-table.php:1309 +#: wp-admin/themes.php:794 wp-admin/js/updates.js:3465 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:808 +msgid "Auto-updates enabled" +msgstr "Auto-updates enabled" + +#: wp-admin/includes/class-wp-debug-data.php:478 +msgid "Are pretty permalinks supported?" +msgstr "Are pretty permalinks supported?" + +#: wp-admin/includes/class-wp-debug-data.php:417 +msgid "PHP memory limit (only for admin screens)" +msgstr "PHP memory limit (only for admin screens)" + +#: wp-admin/includes/class-wp-debug-data.php:219 +msgid "Is this site discouraging search engines?" +msgstr "Is this site discouraging search engines?" + +#: wp-admin/includes/theme.php:359 +msgid "Wide Blocks" +msgstr "Wide Blocks" + +#: wp-admin/includes/theme.php:333 +msgid "Block Editor Styles" +msgstr "Block Editor Styles" + +#: wp-admin/edit-form-comment.php:123 +msgid "Spam" +msgstr "Spam" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:423 wp-admin/setup-config.php:492 +msgid "Unable to write to %s file." +msgstr "Unable to write to %s file." + +#. translators: %s: The options page name. +#: wp-admin/options.php:252 +msgid "Error: The %s options page is not in the allowed options list." +msgstr "Error: The %s options page is not in the allowed options list." + +#: wp-admin/import.php:65 wp-admin/themes.php:348 wp-admin/users.php:345 +#: wp-admin/includes/network.php:117 wp-admin/includes/network.php:161 +msgid "Error:" +msgstr "Error:" + +#. translators: %s: web.config +#. translators: %s: .htaccess +#: wp-admin/options-permalink.php:183 wp-admin/options-permalink.php:196 +msgid "You should update your %s file now." +msgstr "You should update your %s file now." + +#: wp-admin/update-core.php:183 +msgid "This localized version contains both the translation and various other localization fixes." +msgstr "This localised version contains both the translation and various other localisation fixes." + +#. translators: 1: Number of issues. 2: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:2026 +msgid "Take a look at the %1$d item on the Site Health screen." +msgid_plural "Take a look at the %1$d items on the Site Health screen." +msgstr[0] "Take a look at the %1$d item on the Site Health screen." +msgstr[1] "Take a look at the %1$d items on the Site Health screen." + +#: wp-admin/includes/dashboard.php:2016 +msgid "Your site’s health is looking good, but there are still some things you can do to improve its performance and security." +msgstr "Your site’s health is looking good, but there are still some things you can do to improve its performance and security." + +#: wp-admin/includes/dashboard.php:2008 +msgid "Great job! Your site currently passes all site health checks." +msgstr "Great job! Your site currently passes all site health checks." + +#: wp-admin/includes/dashboard.php:2012 +msgid "Your site has critical issues that should be addressed as soon as possible to improve its performance and security." +msgstr "Your site has critical issues that should be addressed as soon as possible to improve its performance and security." + +#. translators: %s: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:2000 +msgid "Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now." +msgstr "Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now." + +#: wp-admin/includes/dashboard.php:1987 +msgid "No information yet…" +msgstr "No information yet…" + +#. translators: 1: upload_max_filesize, 2: php.ini +#: wp-admin/includes/file.php:892 +msgid "The uploaded file exceeds the %1$s directive in %2$s." +msgstr "The uploaded file exceeds the %1$s directive in %2$s." + +#: wp-admin/includes/class-wp-comments-list-table.php:223 +msgid "No comments found in Trash." +msgstr "No comments found in Bin." + +#. translators: 1: php.ini, 2: post_max_size, 3: upload_max_filesize +#: wp-admin/includes/file.php:942 wp-admin/includes/import.php:87 +msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s." +msgstr "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s." + +#: wp-admin/includes/class-wp-site-health.php:3278 +#: wp-admin/js/site-health.js:338 +msgid "A test is unavailable" +msgstr "A test is unavailable" + +#. translators: 1: The WordPress error message. 2: The WordPress error code. +#: wp-admin/includes/class-wp-site-health.php:3150 +msgid "Error: %1$s (%2$s)" +msgstr "Error: %1$s (%2$s)" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:798 +msgid "Your site is running on an older version of PHP (%s), which should be updated" +msgstr "Your site is running on an older version of PHP (%s), which should be updated" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:767 +msgid "Your site is running on an older version of PHP (%s)" +msgstr "Your site is running on an older version of PHP (%s)" + +#. translators: %s: The recommended PHP version. +#: wp-admin/includes/class-wp-site-health.php:732 +msgid "Your site is running a recommended version of PHP (%s)" +msgstr "Your site is running a recommended version of PHP (%s)" + +#: wp-admin/includes/class-wp-media-list-table.php:259 +msgid "No media files found in Trash." +msgstr "No media files found in Bin." + +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Year. +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Ending year. +#: wp-admin/includes/class-wp-community-events.php:427 +#: wp-admin/js/dashboard.js:784 +msgid "%1$s %2$d – %3$s %4$d, %5$d" +msgstr "%1$s %2$d – %3$s %4$d, %5$d" + +#. translators: Upcoming events year format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:422 +#: wp-admin/includes/class-wp-community-events.php:432 +#: wp-admin/js/dashboard.js:797 wp-admin/js/dashboard.js:808 +msgctxt "upcoming events year format" +msgid "Y" +msgstr "Y" + +#. translators: Upcoming events day format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:419 +#: wp-admin/includes/class-wp-community-events.php:420 +#: wp-admin/includes/class-wp-community-events.php:429 +#: wp-admin/includes/class-wp-community-events.php:431 +#: wp-admin/js/dashboard.js:795 wp-admin/js/dashboard.js:796 +#: wp-admin/js/dashboard.js:805 wp-admin/js/dashboard.js:807 +msgctxt "upcoming events day format" +msgid "j" +msgstr "j" + +#. translators: Date string for upcoming events. 1: Month, 2: Starting day, 3: +#. Ending day, 4: Year. +#: wp-admin/includes/class-wp-community-events.php:416 +#: wp-admin/js/dashboard.js:782 +msgid "%1$s %2$d–%3$d, %4$d" +msgstr "%1$s %2$d–%3$d, %4$d" + +#. translators: Upcoming events month format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:410 +#: wp-admin/includes/class-wp-community-events.php:411 +#: wp-admin/js/dashboard.js:794 wp-admin/js/dashboard.js:804 +#: wp-admin/js/dashboard.js:806 +msgctxt "upcoming events month format" +msgid "F" +msgstr "F" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:216 +msgid "Resend confirmation requests" +msgstr "Resend confirmation requests" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:218 +msgid "Delete requests" +msgstr "Delete requests" + +#: wp-admin/includes/class-wp-debug-data.php:1638 +msgid "Table prefix" +msgstr "Table prefix" + +#: wp-admin/includes/class-wp-site-health.php:2726 +msgid "PHP Default Timezone" +msgstr "PHP Default Time Zone" + +#. translators: %s: date_default_timezone_set() +#: wp-admin/includes/class-wp-site-health.php:1142 +msgid "PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times." +msgstr "PHP default time zone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times." + +#: wp-admin/includes/class-wp-site-health.php:1136 +msgid "PHP default timezone is invalid" +msgstr "PHP default time zone is invalid" + +#: wp-admin/includes/class-wp-site-health.php:1127 +msgid "PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times." +msgstr "PHP default time zone was configured by WordPress on loading. This is necessary for correct calculations of dates and times." + +#: wp-admin/includes/class-wp-site-health.php:1119 +msgid "PHP default timezone is valid" +msgstr "PHP default time zone is valid" + +#. translators: %s: add_menu_page() +#. translators: %s: add_submenu_page() +#: wp-admin/includes/plugin.php:1406 wp-admin/includes/plugin.php:1510 +msgid "The seventh parameter passed to %s should be numeric representing menu position." +msgstr "The seventh parameter passed to %s should be numeric representing menu position." + +#. translators: 1: WordPress version number, 2: The PHP extension name needed. +#: wp-admin/includes/update-core.php:1207 +msgid "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." +msgstr "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." + +#: wp-admin/privacy.php:53 +msgid "https://wordpress.org/about/stats/" +msgstr "https://en-gb.wordpress.org/about/stats/" + +#: wp-admin/export.php:59 +msgid "Documentation on Export" +msgstr "Documentation on Export" + +#: wp-admin/plugin-install.php:121 +msgid "Documentation on Installing Plugins" +msgstr "Documentation on Installing Plugins" + +#: wp-admin/edit.php:326 +msgid "Documentation on Managing Pages" +msgstr "Documentation on Managing Pages" + +#: wp-admin/edit.php:301 +msgid "Documentation on Managing Posts" +msgstr "Documentation on Managing Posts" + +#: wp-admin/options-discussion.php:32 +msgid "Documentation on Discussion Settings" +msgstr "Documentation on Discussion Settings" + +#: wp-admin/theme-install.php:155 +msgid "Documentation on Adding New Themes" +msgstr "Documentation on Adding New Themes" + +#: wp-admin/media-new.php:61 +msgid "Documentation on Uploading Media Files" +msgstr "Documentation on Uploading Media Files" + +#: wp-admin/users.php:83 +msgid "Descriptions of Roles and Capabilities" +msgstr "Descriptions of Roles and Capabilities" + +#: wp-admin/users.php:82 +msgid "Documentation on Managing Users" +msgstr "Documentation on Managing Users" + +#: wp-admin/user-edit.php:78 +msgid "Documentation on User Profiles" +msgstr "Documentation on User Profiles" + +#: wp-admin/options-media.php:41 +msgid "Documentation on Media Settings" +msgstr "Documentation on Media Settings" + +#: wp-admin/import.php:32 +msgid "Documentation on Import" +msgstr "Documentation on Import" + +#: wp-admin/tools.php:56 +msgid "Documentation on Tools" +msgstr "Documentation on Tools" + +#: wp-admin/options.php:386 +msgid "This page allows direct access to your site settings. You can break things here. Please be cautious!" +msgstr "This page allows direct access to your site settings. You can break things here. Please be cautious!" + +#: wp-admin/edit-form-advanced.php:373 +msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format." +msgstr "Format – Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of ten possible formats. Learn more about each post format." + +#: wp-admin/edit-form-advanced.php:330 +msgid "Documentation on Editing Pages" +msgstr "Documentation on Editing Pages" + +#: wp-admin/edit-form-advanced.php:329 +msgid "Documentation on Adding New Pages" +msgstr "Documentation on Adding New Pages" + +#: wp-admin/upload.php:199 wp-admin/upload.php:401 +msgid "Documentation on Media Library" +msgstr "Documentation on Media Library" + +#: wp-admin/revision.php:159 +msgid "Revisions Management" +msgstr "Revisions Management" + +#: wp-admin/edit-form-advanced.php:348 +msgid "Documentation on Edit Media" +msgstr "Documentation on Edit Media" + +#: wp-admin/plugins.php:620 +msgid "Documentation on Managing Plugins" +msgstr "Documentation on Managing Plugins" + +#: wp-admin/index.php:132 +msgid "Documentation on Dashboard" +msgstr "Documentation on Dashboard" + +#: wp-admin/user-new.php:315 +msgid "Documentation on Adding New Users" +msgstr "Documentation on Adding New Users" + +#. translators: %s: URL to Site Health Status page. +#: wp-admin/site-health-info.php:47 +msgid "This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page." +msgstr "This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page." + +#: wp-admin/includes/dashboard.php:1989 wp-admin/site-health.php:137 +msgid "Results are still loading…" +msgstr "Results are still loading…" + +#: wp-admin/options-permalink.php:61 +msgid "Documentation on Using Permalinks" +msgstr "Documentation on Using Permalinks" + +#: wp-admin/options-permalink.php:60 +msgid "Documentation on Permalinks Settings" +msgstr "Documentation on Permalinks Settings" + +#: wp-admin/update-core.php:1053 +msgid "Documentation on Updating WordPress" +msgstr "Documentation on Updating WordPress" + +#: wp-admin/nav-menus.php:773 +msgid "Documentation on Menus" +msgstr "Documentation on Menus" + +#: wp-admin/plugin-editor.php:155 +msgid "Documentation on Writing Plugins" +msgstr "Documentation on Writing Plugins" + +#: wp-admin/theme-editor.php:55 +msgid "Documentation on Template Tags" +msgstr "Documentation on Template Tags" + +#: wp-admin/themes.php:207 +msgid "Documentation on Using Themes" +msgstr "Documentation on Using Themes" + +#: wp-admin/theme-editor.php:52 +msgid "Documentation on Theme Development" +msgstr "Documentation on Theme Development" + +#: wp-admin/comment.php:72 wp-admin/edit-comments.php:229 +msgid "Documentation on Comments" +msgstr "Documentation on Comments" + +#. translators: %s: UTC time. +#: wp-admin/options-general.php:405 +msgid "Universal time is %s." +msgstr "Universal time is %s." + +#. translators: %s: UTC abbreviation +#: wp-admin/options-general.php:394 +msgid "Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset." +msgstr "Choose either a city in the same time zone as you or a %s (Coordinated Universal Time) time offset." + +#: wp-admin/options-general.php:265 +msgid "Administration Email Address" +msgstr "Administration Email Address" + +#: wp-admin/options-general.php:60 +msgid "Documentation on General Settings" +msgstr "Documentation on General Settings" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:335 +#: wp-admin/theme-editor.php:366 +msgid "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." +msgstr "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." + +#: wp-admin/includes/ajax-actions.php:2512 +msgid "Upload failed. Please reload and try again." +msgstr "Upload failed. Please reload and try again." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:142 +msgid "Data erasure has failed." +msgstr "Data erasure has failed." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:67 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:141 +msgid "Erasure completed." +msgstr "Erasure completed." + +#: wp-admin/includes/image.php:171 +msgid "The attached file cannot be found." +msgstr "The attached file cannot be found." + +#: wp-admin/includes/template.php:2335 +msgctxt "page label" +msgid "Privacy Policy Page" +msgstr "Privacy Policy Page" + +#: wp-admin/includes/template.php:2330 +msgctxt "page label" +msgid "Posts Page" +msgstr "Posts Page" + +#: wp-admin/includes/template.php:2326 +msgctxt "page label" +msgid "Front Page" +msgstr "Front Page" + +#: wp-admin/includes/template.php:2317 +msgctxt "post status" +msgid "Sticky" +msgstr "Sticky" + +#: wp-admin/includes/template.php:2309 +msgctxt "post status" +msgid "Customization Draft" +msgstr "Customisation Draft" + +#: wp-admin/includes/template.php:2295 +msgctxt "post status" +msgid "Password protected" +msgstr "Password protected" + +#. translators: %s: The name of the late cron event. +#: wp-admin/includes/class-wp-site-health.php:1685 +msgid "The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." + +#: wp-admin/includes/class-wp-site-health.php:1679 +msgid "A scheduled event is late" +msgstr "A scheduled event is late" + +#: wp-admin/includes/class-wp-site-health.php:1455 +msgid "An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy." +msgstr "An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy." + +#. translators: %s: The current version of WordPress installed on this site. +#: wp-admin/includes/class-wp-site-health.php:330 +msgid "Your version of WordPress (%s) is up to date" +msgstr "Your version of WordPress (%s) is up to date" + +#: wp-admin/includes/meta-boxes.php:857 +msgid "https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments" +msgstr "https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments" + +#: wp-admin/includes/meta-boxes.php:796 +msgid "https://wordpress.org/documentation/article/introduction-to-blogging/#comments" +msgstr "https://wordpress.org/documentation/article/introduction-to-blogging/#comments" + +#: wp-admin/includes/dashboard.php:2122 +msgid "https://wordpress.org/documentation/article/block-themes/" +msgstr "https://wordpress.org/documentation/article/block-themes/" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:252 +msgid "Publish on: %s" +msgstr "Publish on: %s" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:249 +msgid "Schedule for: %s" +msgstr "Schedule for: %s" + +#. translators: Post date information. %s: Date on which the post was +#. published. +#: wp-admin/includes/meta-boxes.php:244 +msgid "Published on: %s" +msgstr "Published on: %s" + +#. translators: Post date information. %s: Date on which the post is currently +#. scheduled to be published. +#: wp-admin/includes/meta-boxes.php:241 +msgid "Scheduled for: %s" +msgstr "Scheduled for: %s" + +#. translators: Publish box time format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/edit-form-advanced.php:170 wp-admin/edit-form-comment.php:150 +#: wp-admin/includes/meta-boxes.php:236 wp-admin/includes/meta-boxes.php:442 +msgctxt "publish box time format" +msgid "H:i" +msgstr "H:i" + +#. translators: Publish box date format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/edit-form-advanced.php:168 wp-admin/edit-form-comment.php:148 +#: wp-admin/includes/meta-boxes.php:234 wp-admin/includes/meta-boxes.php:440 +msgctxt "publish box date format" +msgid "M j, Y" +msgstr "j F Y" + +#. translators: 1: Marker. +#: wp-admin/includes/misc.php:142 +msgid "" +"The directives (lines) between \"BEGIN %1$s\" and \"END %1$s\" are\n" +"dynamically generated, and should only be modified via WordPress filters.\n" +"Any changes to the directives between these markers will be overwritten." +msgstr "" +"The directives (lines) between \"BEGIN %1$s\" and \"END %1$s\" are\n" +"dynamically generated, and should only be modified via WordPress filters.\n" +"Any changes to the directives between these markers will be overwritten." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:158 +msgid "All automatic updates are disabled." +msgstr "All automatic updates are disabled." + +#: wp-admin/includes/class-wp-debug-data.php:1648 +msgid "Database collation" +msgstr "Database collation" + +#: wp-admin/includes/class-wp-debug-data.php:1643 +msgid "Database charset" +msgstr "Database charset" + +#: wp-admin/includes/class-wp-debug-data.php:1416 +msgid "Inactive Themes" +msgstr "Inactive Themes" + +#: wp-admin/includes/class-wp-debug-data.php:1287 +msgid "Parent Theme" +msgstr "Parent Theme" + +#. translators: %s: wp-content directory name. +#: wp-admin/includes/class-wp-debug-data.php:331 +#: wp-admin/includes/class-wp-plugins-list-table.php:678 +msgid "Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins." +msgstr "Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins." + +#. translators: Description for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:370 +msgctxt "personal data group description" +msgid "Overview of export report." +msgstr "Overview of export report." + +#: wp-admin/options-writing.php:53 +msgid "Documentation on Writing Settings" +msgstr "Documentation on Writing Settings" + +#: wp-admin/edit-tags.php:312 +msgid "Documentation on Tags" +msgstr "Documentation on Tags" + +#: wp-admin/edit-tags.php:308 +msgid "Documentation on Categories" +msgstr "Documentation on Categories" + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:199 +msgid "Your theme determines how content is displayed in browsers. Learn more about feeds." +msgstr "Your theme determines how content is displayed in browsers. Learn more about feeds." + +#. translators: Hidden accessibility text. +#: wp-admin/options-reading.php:183 wp-admin/options-reading.php:188 +msgid "For each post in a feed, include" +msgstr "For each post in a feed, include" + +#: wp-admin/options-reading.php:160 +msgid "Warning: these pages should not be the same as your Privacy Policy page!" +msgstr "Warning: these pages should not be the same as your Privacy Policy page!" + +#: wp-admin/options-reading.php:53 +msgid "Documentation on Reading Settings" +msgstr "Documentation on Reading Settings" + +#. translators: %s: Site title. +#: wp-admin/ms-delete-site.php:93 +msgid "[%s] Delete My Site" +msgstr "[%s] Delete My Site" + +#: wp-admin/options-discussion.php:64 +msgid "Allow people to submit comments on new posts" +msgstr "Allow people to submit comments on new posts" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:47 wp-admin/options-discussion.php:51 +msgid "Default post settings" +msgstr "Default post settings" + +#. translators: %s: Gravatar URL. +#: wp-admin/user-edit.php:632 +msgid "You can change your profile picture on Gravatar." +msgstr "You can change your profile picture on Gravatar." + +#: wp-admin/plugins.php:746 +msgid "Plugin resumed." +msgstr "Plugin resumed." + +#: wp-admin/plugins.php:742 +msgid "Selected plugins deactivated." +msgstr "Selected plugins deactivated." + +#: wp-admin/plugins.php:740 +msgid "Plugin deactivated." +msgstr "Plugin deactivated." + +#: wp-admin/plugins.php:738 +msgid "Selected plugins activated." +msgstr "Selected plugins activated." + +#: wp-admin/plugins.php:736 +msgid "Plugin activated." +msgstr "Plugin activated." + +#: wp-admin/plugins.php:731 +msgid "The selected plugins have been deleted." +msgstr "The selected plugins have been deleted." + +#: wp-admin/plugins.php:729 +msgid "The selected plugin has been deleted." +msgstr "The selected plugin has been deleted." + +#. translators: 1: Plugin file, 2: Error message. +#: wp-admin/plugins.php:644 +msgid "The plugin %1$s has been deactivated due to an error: %2$s" +msgstr "The plugin %1$s has been deactivated due to an error: %2$s" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:415 +msgid "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." +msgstr "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." + +#: wp-admin/theme-editor.php:407 +msgid "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." +msgstr "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." + +#. translators: Maximum number of words used in a preview of a draft on the +#. dashboard. +#: wp-admin/includes/dashboard.php:663 +msgctxt "draft_length" +msgid "10" +msgstr "10" + +#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:121 +#: wp-admin/theme-editor.php:311 +msgid "File does not exist! Please double check the name and try again." +msgstr "File does not exist! Please double check the name and try again." + +#. translators: 1: $image, 2: WP_Image_Editor +#: wp-admin/includes/image-edit.php:364 wp-admin/includes/image-edit.php:459 +#: wp-admin/includes/image-edit.php:629 +msgid "%1$s needs to be a %2$s object." +msgstr "%1$s needs to be a %2$s object." + +#. translators: %s: Recovery Mode exit link. +#: wp-admin/includes/update.php:1030 +msgid "You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode" +msgstr "You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode" + +#. translators: Tab heading for Site Health Info page. +#: wp-admin/site-health.php:18 +msgctxt "Site Health" +msgid "Info" +msgstr "Info" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/site-health.php:16 +msgctxt "Site Health" +msgid "Status" +msgstr "Status" + +#: wp-admin/includes/class-wp-debug-data.php:838 +msgid "Themes directory location" +msgstr "Themes directory location" + +#: wp-admin/includes/class-wp-debug-data.php:225 +msgctxt "comment status" +msgid "Closed" +msgstr "Closed" + +#. translators: %s: Number of critical issues found. +#: wp-admin/site-health.php:260 wp-admin/js/site-health.js:148 +msgid "%s critical issue" +msgid_plural "%s critical issues" +msgstr[0] "%s critical issue" +msgstr[1] "%s critical issues" + +#: wp-admin/update-core.php:262 +msgid "https://wordpress.org/documentation/article/updating-wordpress/" +msgstr "https://wordpress.org/documentation/article/updating-wordpress/" + +#: wp-admin/includes/class-wp-site-health.php:1341 +msgid "Get help resolving this issue." +msgstr "Get help resolving this issue." + +#: wp-admin/includes/class-wp-site-health.php:1224 +msgid "Learn more about what WordPress requires to run." +msgstr "Learn more about what WordPress requires to run." + +#. translators: Localized version of WordPress requirements if one exists. +#: wp-admin/includes/class-wp-site-health.php:1223 +msgid "https://wordpress.org/about/requirements/" +msgstr "https://wordpress.org/about/requirements/" + +#: wp-admin/includes/class-wp-site-health.php:1218 +msgid "The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings." +msgstr "The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings." + +#: wp-admin/includes/class-wp-site-health.php:889 +msgid "PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator." +msgstr "PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator." + +#: wp-admin/includes/class-wp-site-health.php:504 +msgid "Manage your themes" +msgstr "Manage your themes" + +#: wp-admin/includes/class-wp-site-health.php:471 +msgid "Manage inactive plugins" +msgstr "Manage inactive plugins" + +#: wp-admin/includes/class-wp-site-health.php:417 +msgid "Update your plugins" +msgstr "Update your plugins" + +#: wp-admin/includes/class-wp-site-health.php:370 +msgid "Manage your plugins" +msgstr "Manage your plugins" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:338 +msgid "View Privacy Policy Guide." +msgstr "View Privacy Policy Guide." + +#: wp-admin/includes/class-wp-debug-data.php:181 +msgid "User Language" +msgstr "User Language" + +#. translators: 1: WP_DEBUG_DISPLAY, 2: WP_DEBUG +#: wp-admin/includes/class-wp-site-health.php:1416 +msgid "The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site." +msgstr "The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site." + +#. translators: Background update finished notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1661 +msgid "[%s] Background Update Finished" +msgstr "[%s] Background Update Finished" + +#. translators: Background update failed notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1658 +msgid "[%s] Background Update Failed" +msgstr "[%s] Background Update Failed" + +#: wp-admin/plugins.php:680 +msgid "Plugin could not be resumed because it triggered a fatal error." +msgstr "Plugin could not be resumed because it triggered a fatal error." + +#: wp-admin/includes/class-wp-site-health.php:621 +#: wp-admin/includes/class-wp-site-health.php:667 +msgid "You should remove inactive themes" +msgstr "You should remove inactive themes" + +#: wp-admin/includes/class-wp-site-health.php:591 +msgid "Your site has 1 installed theme, and it is up to date." +msgstr "Your site has 1 installed theme, and it is up to date." + +#: wp-admin/includes/class-wp-site-health.php:423 +msgid "Your site has 1 active plugin, and it is up to date." +msgstr "Your site has 1 active plugin, and it is up to date." + +#: wp-admin/site-health.php:285 +msgid "Passed tests" +msgstr "Passed tests" + +#: wp-admin/site-health.php:48 +msgid "Sorry, you are not allowed to access site health information." +msgstr "Sorry, you are not allowed to access site health information." + +#: wp-admin/site-health-info.php:57 +msgid "Copy site info to clipboard" +msgstr "Copy site info to clipboard" + +#: wp-admin/site-health-info.php:51 +msgid "If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example." +msgstr "If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example." + +#: wp-admin/site-health-info.php:23 wp-admin/site-health.php:226 +msgid "The Site Health check requires JavaScript." +msgstr "The Site Health check requires JavaScript." + +#: wp-admin/site-health-info.php:41 +msgid "Site Health Info" +msgstr "Site Health Info" + +#: wp-admin/update-core.php:549 wp-admin/update-core.php:742 +msgid "This update does not work with your version of PHP." +msgstr "This update does not work with your version of PHP." + +#: wp-admin/includes/class-wp-posts-list-table.php:544 +msgid "All formats" +msgstr "All formats" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-posts-list-table.php:540 +msgid "Filter by post format" +msgstr "Filter by post format" + +#: wp-admin/includes/plugin.php:2579 wp-admin/includes/plugin.php:2661 +msgid "Go to the Plugins screen" +msgstr "Go to the Plugins screen" + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1516 +msgid "The authenticity of %s could not be verified." +msgstr "The authenticity of %s could not be verified." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1468 +msgid "The authenticity of %s could not be verified as no signature was found." +msgstr "The authenticity of %s could not be verified as no signature was found." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1416 wp-admin/includes/file.php:1450 +msgid "The authenticity of %s could not be verified as signature verification is unavailable on this system." +msgstr "The authenticity of %s could not be verified as signature verification is unavailable on this system." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5226 +msgid "Eraser callback is not valid: %s." +msgstr "Eraser callback is not valid: %s." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5216 +msgid "Eraser does not include a callback: %s." +msgstr "Eraser does not include a callback: %s." + +#: wp-admin/includes/ajax-actions.php:4938 +#: wp-admin/includes/ajax-actions.php:5129 +msgid "Sorry, you are not allowed to perform this action." +msgstr "Sorry, you are not allowed to perform this action." + +#. translators: 1: Name of the constant used. 2: List of allowed hostnames. +#: wp-admin/includes/class-wp-site-health.php:2102 +msgid "HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s." +msgstr "HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health.php:2087 +msgid "HTTP requests have been blocked by the %s constant, with no allowed hosts." +msgstr "HTTP requests have been blocked by the %s constant, with no allowed hosts." + +#. translators: 1: The name of the drop-in. 2: The name of the database engine. +#: wp-admin/includes/class-wp-site-health.php:1272 +msgid "You are using a %1$s drop-in which might mean that a %2$s database is not being used." +msgstr "You are using a %1$s drop-in which might mean that a %2$s database is not being used." + +#. translators: Localized team handbook, if one exists. +#: wp-admin/includes/class-wp-site-health.php:894 +msgid "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" +msgstr "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" + +#. translators: 1: Link to the hosting group page about recommended PHP +#. modules. 2: Additional link attributes. 3: Accessibility text. +#: wp-admin/includes/class-wp-site-health.php:892 +msgid "The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s." +msgstr "The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s." + +#: wp-admin/includes/class-wp-site-health.php:259 +#: wp-admin/includes/class-wp-site-health.php:737 +#: wp-admin/includes/class-wp-site-health.php:884 +#: wp-admin/includes/class-wp-site-health.php:1122 +#: wp-admin/includes/class-wp-site-health.php:1163 +#: wp-admin/includes/class-wp-site-health.php:1213 +#: wp-admin/includes/class-wp-site-health.php:1637 +#: wp-admin/includes/class-wp-site-health.php:2013 +#: wp-admin/includes/class-wp-site-health.php:2056 +#: wp-admin/includes/class-wp-site-health.php:2127 +#: wp-admin/includes/class-wp-site-health.php:2238 +#: wp-admin/includes/class-wp-site-health.php:2392 +#: wp-admin/includes/class-wp-site-health.php:2517 +#: wp-admin/includes/class-wp-site-health.php:2628 +msgid "Performance" +msgstr "Performance" + +#. translators: 1: The amount of inactive themes. 2: The default theme for +#. WordPress. 3: The currently active theme. +#: wp-admin/includes/class-wp-site-health.php:689 +msgid "Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgstr[0] "Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgstr[1] "Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme." + +#: wp-admin/includes/class-wp-site-health.php:682 +#: wp-admin/includes/class-wp-site-health.php:698 +msgid "You should consider removing any unused themes to enhance your site’s security." +msgstr "You should consider removing any unused themes to enhance your site’s security." + +#. translators: 1: The amount of inactive themes. 2: The currently active +#. theme. +#: wp-admin/includes/class-wp-site-health.php:674 +msgid "Your site has %1$d inactive theme, other than %2$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, your active theme." +msgstr[0] "Your site has %1$d inactive theme, other than %2$s, your active theme." +msgstr[1] "Your site has %1$d inactive themes, other than %2$s, your active theme." + +#. translators: %d: The number of inactive themes. +#: wp-admin/includes/class-wp-site-health.php:628 +#: wp-admin/includes/class-wp-site-health.php:647 +msgid "Your site has %d inactive theme." +msgid_plural "Your site has %d inactive themes." +msgstr[0] "Your site has %d inactive theme." +msgstr[1] "Your site has %d inactive themes." + +#: wp-admin/includes/class-wp-site-health.php:465 +msgid "Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it." +msgstr "Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it." + +#. translators: %d: The number of inactive plugins. +#: wp-admin/includes/class-wp-site-health.php:458 +msgid "Your site has %d inactive plugin." +msgid_plural "Your site has %d inactive plugins." +msgstr[0] "Your site has %d inactive plugin." +msgstr[1] "Your site has %d inactive plugins." + +#: wp-admin/includes/class-wp-site-health.php:320 +#: wp-admin/includes/class-wp-site-health.php:360 +#: wp-admin/includes/class-wp-site-health.php:494 +#: wp-admin/includes/class-wp-site-health.php:825 +#: wp-admin/includes/class-wp-site-health.php:1253 +#: wp-admin/includes/class-wp-site-health.php:1298 +#: wp-admin/includes/class-wp-site-health.php:1368 +#: wp-admin/includes/class-wp-site-health.php:1450 +#: wp-admin/includes/class-wp-site-health.php:1591 +#: wp-admin/includes/class-wp-site-health.php:1710 +#: wp-admin/includes/class-wp-site-health.php:1785 +#: wp-admin/includes/class-wp-site-health.php:1826 +#: wp-admin/includes/class-wp-site-health.php:1876 +#: wp-admin/includes/class-wp-site-health.php:2330 +msgid "Security" +msgstr "Security" + +#: wp-admin/erase-personal-data.php:96 +msgid "Erase personal data list" +msgstr "Erase personal data list" + +#: wp-admin/erase-personal-data.php:95 +msgid "Erase personal data list navigation" +msgstr "Erase personal data list navigation" + +#: wp-admin/erase-personal-data.php:94 +msgid "Filter erase personal data list" +msgstr "Filter erase personal data list" + +#: wp-admin/export-personal-data.php:96 +msgid "Export personal data list" +msgstr "Export personal data list" + +#: wp-admin/export-personal-data.php:95 +msgid "Export personal data list navigation" +msgstr "Export personal data list navigation" + +#: wp-admin/export-personal-data.php:94 +msgid "Filter export personal data list" +msgstr "Filter export personal data list" + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number 5: URL to Update PHP page. +#: wp-admin/includes/update.php:572 +msgid "There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP." +msgstr "There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1284 +msgid "This plugin failed to load properly and is paused during recovery mode." +msgstr "This plugin failed to load properly and is paused during recovery mode." + +#: wp-admin/includes/theme.php:1247 +msgid "Go to the Themes screen" +msgstr "Go to the Themes screen" + +#: wp-admin/includes/class-wp-debug-data.php:1994 +msgid "Total size is not available. Some errors were encountered when determining the size of your installation." +msgstr "Total size is not available. Some errors were encountered when determining the size of your installation." + +#: wp-admin/includes/class-wp-debug-data.php:1943 +msgid "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." +msgstr "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." + +#: wp-admin/includes/class-wp-debug-data.php:1950 +msgid "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." +msgstr "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." + +#: wp-admin/includes/class-wp-debug-data.php:1579 +msgid "These settings alter where and how parts of WordPress are loaded." +msgstr "These settings alter where and how parts of WordPress are loaded." + +#. translators: %s: Number of items with no issues. +#: wp-admin/site-health.php:294 wp-admin/js/site-health.js:158 +msgid "%s item with no issues detected" +msgid_plural "%s items with no issues detected" +msgstr[0] "%s item with no issues detected" +msgstr[1] "%s items with no issues detected" + +#. translators: %s: Number of recommended improvements. +#: wp-admin/site-health.php:273 wp-admin/js/site-health.js:153 +msgid "%s recommended improvement" +msgid_plural "%s recommended improvements" +msgstr[0] "%s recommended improvement" +msgstr[1] "%s recommended improvements" + +#: wp-admin/site-health.php:254 +msgid "The site health check shows information about your WordPress configuration and items that may need your attention." +msgstr "The site health check shows information about your WordPress configuration and items that may need your attention." + +#: wp-admin/includes/dashboard.php:68 wp-admin/site-health.php:251 +msgid "Site Health Status" +msgstr "Site Health Status" + +#: wp-admin/site-health.php:245 +msgid "Everything is running smoothly here." +msgstr "Everything is running smoothly here." + +#: wp-admin/site-health.php:241 +msgid "Great job!" +msgstr "Great job!" + +#: wp-admin/about.php:49 wp-admin/contribute.php:33 wp-admin/credits.php:36 +#: wp-admin/freedoms.php:39 wp-admin/includes/ms.php:1134 +#: wp-admin/nav-menus.php:811 wp-admin/options-privacy.php:161 +#: wp-admin/privacy-policy-guide.php:44 wp-admin/privacy.php:33 +#: wp-admin/site-health.php:141 +msgid "Secondary menu" +msgstr "Secondary menu" + +#: wp-admin/includes/class-wp-site-health.php:3171 +msgid "The loopback request to your site completed successfully." +msgstr "The loopback request to your site completed successfully." + +#. translators: %d: The HTTP response code returned. +#: wp-admin/includes/class-wp-site-health.php:3163 +msgid "The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected." +msgstr "The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected." + +#: wp-admin/includes/class-wp-site-health.php:3147 +msgid "The loopback request to your site failed, this means features relying on them are not currently working as expected." +msgstr "The loopback request to your site failed, this means features relying on them are not currently working as expected." + +#: wp-admin/includes/class-wp-site-health.php:2939 +msgid "No scheduled events exist on this site." +msgstr "No scheduled events exist on this site." + +#: wp-admin/includes/class-wp-site-health.php:2750 +msgid "REST API availability" +msgstr "REST API availability" + +#: wp-admin/includes/class-wp-site-health.php:2793 +msgid "Loopback request" +msgstr "Loopback request" + +#: wp-admin/includes/class-wp-site-health.php:2755 +msgid "Debugging enabled" +msgstr "Debugging enabled" + +#: wp-admin/includes/class-wp-site-health.php:2746 +msgid "HTTP Requests" +msgstr "HTTP Requests" + +#: wp-admin/includes/class-wp-site-health.php:2742 +msgid "Scheduled events" +msgstr "Scheduled events" + +#: wp-admin/includes/class-wp-site-health.php:2738 +msgid "Secure communication" +msgstr "Secure communication" + +#: wp-admin/includes/class-wp-site-health.php:2799 +msgid "HTTPS status" +msgstr "HTTPS status" + +#: wp-admin/includes/class-wp-site-health.php:2722 +msgid "PHP Extensions" +msgstr "PHP Extensions" + +#: wp-admin/includes/class-wp-site-health.php:2734 +msgid "Database Server version" +msgstr "Database Server version" + +#: wp-admin/includes/class-wp-site-health.php:2718 +msgid "PHP Version" +msgstr "PHP Version" + +#: wp-admin/includes/class-wp-site-health.php:2714 +msgid "Theme Versions" +msgstr "Theme Versions" + +#: wp-admin/includes/class-wp-site-health.php:2710 +msgid "Plugin Versions" +msgstr "Plugin Versions" + +#: wp-admin/includes/class-wp-site-health.php:2706 +msgid "WordPress Version" +msgstr "WordPress Version" + +#. translators: %s: The name of the query parameter being tested. +#: wp-admin/includes/class-wp-site-health.php:2216 +msgid "The REST API did not process the %s query parameter correctly." +msgstr "The REST API did not process the %s query parameter correctly." + +#: wp-admin/includes/class-wp-site-health.php:2210 +msgid "The REST API did not behave correctly" +msgstr "The REST API did not behave correctly" + +#: wp-admin/includes/class-wp-site-health.php:2187 +msgid "The REST API encountered an unexpected result" +msgstr "The REST API encountered an unexpected result" + +#: wp-admin/includes/class-wp-site-health.php:2167 +msgid "The REST API encountered an error" +msgstr "The REST API encountered an error" + +#: wp-admin/includes/class-wp-site-health.php:2132 +msgid "The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages." +msgstr "The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages." + +#: wp-admin/includes/class-wp-site-health.php:2124 +msgid "The REST API is available" +msgstr "The REST API is available" + +#: wp-admin/includes/class-wp-site-health.php:2096 +msgid "HTTP requests are partially blocked" +msgstr "HTTP requests are partially blocked" + +#: wp-admin/includes/class-wp-site-health.php:2081 +msgid "HTTP requests are blocked" +msgstr "HTTP requests are blocked" + +#: wp-admin/includes/class-wp-site-health.php:2061 +msgid "It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended." +msgstr "It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended." + +#: wp-admin/includes/class-wp-site-health.php:2053 +msgid "HTTP requests seem to be working as expected" +msgstr "HTTP requests seem to be working as expected" + +#: wp-admin/includes/class-wp-site-health.php:2029 +msgid "Your site could not complete a loopback request" +msgstr "Your site could not complete a loopback request" + +#: wp-admin/includes/class-wp-site-health.php:2018 +msgid "Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability." +msgstr "Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability." + +#: wp-admin/includes/class-wp-site-health.php:2010 +msgid "Your site can perform loopback requests" +msgstr "Your site can perform loopback requests" + +#: wp-admin/includes/class-wp-site-health.php:1748 +msgid "Background updates may not be working properly" +msgstr "Background updates may not be working properly" + +#: wp-admin/includes/class-wp-site-health.php:1739 +msgid "Background updates are not working as expected" +msgstr "Background updates are not working as expected" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1736 +msgid "Passed" +msgstr "Passed" + +#: wp-admin/includes/class-wp-site-health.php:1715 +msgid "Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using." +msgstr "Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using." + +#: wp-admin/includes/class-wp-site-health.php:1707 +msgid "Background updates are working" +msgstr "Background updates are working" + +#. translators: %s: The name of the failed cron event. +#: wp-admin/includes/class-wp-site-health.php:1672 +msgid "The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." + +#: wp-admin/includes/class-wp-site-health.php:1666 +msgid "A scheduled event has failed" +msgstr "A scheduled event has failed" + +#. translators: %s: The error message returned while from the cron scheduler. +#: wp-admin/includes/class-wp-site-health.php:1659 +msgid "While trying to test your site’s scheduled events, the following error was returned: %s" +msgstr "While trying to test your site’s scheduled events, the following error was returned: %s" + +#: wp-admin/includes/class-wp-site-health.php:1653 +msgid "It was not possible to check your scheduled events" +msgstr "It was not possible to check your scheduled events" + +#: wp-admin/includes/class-wp-site-health.php:1642 +msgid "Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed." +msgstr "Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed." + +#: wp-admin/includes/class-wp-site-health.php:1634 +msgid "Scheduled events are running" +msgstr "Scheduled events are running" + +#: wp-admin/includes/class-wp-site-health.php:1615 +msgid "Talk to your web host about OpenSSL support for PHP." +msgstr "Talk to your web host about OpenSSL support for PHP." + +#: wp-admin/includes/class-wp-site-health.php:1611 +msgid "Your site is unable to communicate securely with other services" +msgstr "Your site is unable to communicate securely with other services" + +#: wp-admin/includes/class-wp-site-health.php:1607 +msgid "Your site can communicate securely with other services" +msgstr "Your site can communicate securely with other services" + +#: wp-admin/includes/class-wp-site-health.php:1596 +msgid "Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more." +msgstr "Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more." + +#: wp-admin/includes/class-wp-site-health.php:1460 +msgid "Learn more about why you should use HTTPS" +msgstr "Learn more about why you should use HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1473 +msgid "Your website does not use HTTPS" +msgstr "Your website does not use HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1447 +msgid "Your website is using an active HTTPS connection" +msgstr "Your website is using an active HTTPS connection" + +#. translators: %s: URL to Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1481 +msgid "You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default." +msgstr "You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default." + +#: wp-admin/includes/class-wp-site-health.php:1403 +msgid "Your site is set to display errors to site visitors" +msgstr "Your site is set to display errors to site visitors" + +#. translators: %s: WP_DEBUG_LOG +#: wp-admin/includes/class-wp-site-health.php:1396 +msgid "The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users." +msgstr "The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users." + +#: wp-admin/includes/class-wp-site-health.php:1388 +msgid "Your site is set to log errors to a potentially public file" +msgstr "Your site is set to log errors to a potentially public file" + +#: wp-admin/includes/class-wp-site-health.php:1373 +msgid "Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website." +msgstr "Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website." + +#: wp-admin/includes/class-wp-site-health.php:1365 +msgid "Your site is not set to output debug information" +msgstr "Your site is not set to output debug information" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-site-health.php:1330 +msgid "Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s" +msgstr "Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s" + +#: wp-admin/includes/class-wp-site-health.php:1320 +msgid "Could not reach WordPress.org" +msgstr "Could not reach WordPress.org" + +#: wp-admin/includes/class-wp-site-health.php:1303 +msgid "Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins." +msgstr "Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins." + +#: wp-admin/includes/class-wp-site-health.php:1295 +msgid "Can communicate with WordPress.org" +msgstr "Can communicate with WordPress.org" + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server minimum version number. +#: wp-admin/includes/class-wp-site-health.php:1259 +msgid "WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this." + +#: wp-admin/includes/class-wp-site-health.php:1252 +msgid "Severely outdated SQL server" +msgstr "Severely outdated SQL server" + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server recommended version number. +#: wp-admin/includes/class-wp-site-health.php:1242 +msgid "For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this." + +#: wp-admin/includes/class-wp-site-health.php:1236 +msgid "Outdated SQL server" +msgstr "Outdated SQL server" + +#: wp-admin/includes/class-wp-site-health.php:1210 +msgid "SQL server is up to date" +msgstr "SQL server is up to date" + +#: wp-admin/includes/class-wp-site-health.php:1101 +msgid "One or more required modules are missing" +msgstr "One or more required modules are missing" + +#: wp-admin/includes/class-wp-site-health.php:1098 +msgid "One or more recommended modules are missing" +msgstr "One or more recommended modules are missing" + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1070 +msgid "The optional module, %s, is not installed, or has been disabled." +msgstr "The optional module, %s, is not installed, or has been disabled." + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1061 +msgid "The required module, %s, is not installed, or has been disabled." +msgstr "The required module, %s, is not installed, or has been disabled." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1058 +#: wp-admin/includes/class-wp-site-health.php:1327 +#: wp-admin/includes/class-wp-site-health.php:1744 +msgid "Error" +msgstr "Error" + +#: wp-admin/includes/class-wp-site-health.php:881 +msgid "Required and recommended modules are installed" +msgstr "Required and recommended modules are installed" + +#: wp-admin/includes/class-wp-site-health.php:712 +msgid "Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme." +msgstr "Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme." + +#: wp-admin/includes/class-wp-site-health.php:708 +msgid "Have a default theme available" +msgstr "Have a default theme available" + +#. translators: 1: The default theme for WordPress. 2: The currently active +#. theme. 3: The active theme's parent theme. +#: wp-admin/includes/class-wp-site-health.php:656 +msgid "To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme." +msgstr "To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme." + +#. translators: 1: The currently active theme. 2: The active theme's parent +#. theme. +#: wp-admin/includes/class-wp-site-health.php:637 +msgid "To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme." +msgstr "To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme." + +#: wp-admin/includes/class-wp-site-health.php:452 +msgid "You should remove inactive plugins" +msgstr "You should remove inactive plugins" + +#. translators: %d: The number of themes. +#: wp-admin/includes/class-wp-site-health.php:598 +msgid "Your site has %d installed theme, and it is up to date." +msgid_plural "Your site has %d installed themes, and they are all up to date." +msgstr[0] "Your site has %d installed theme, and it is up to date." +msgstr[1] "Your site has %d installed themes, and they are all up to date." + +#. translators: %d: The number of outdated themes. +#: wp-admin/includes/class-wp-site-health.php:578 +msgid "Your site has %d theme waiting to be updated." +msgid_plural "Your site has %d themes waiting to be updated." +msgstr[0] "Your site has %d theme waiting to be updated." +msgstr[1] "Your site has %d themes waiting to be updated." + +#: wp-admin/includes/class-wp-site-health.php:572 +msgid "You have themes waiting to be updated" +msgstr "You have themes waiting to be updated" + +#: wp-admin/includes/class-wp-site-health.php:499 +msgid "Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure." +msgstr "Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure." + +#: wp-admin/includes/class-wp-site-health.php:491 +msgid "Your themes are all up to date" +msgstr "Your themes are all up to date" + +#. translators: %d: The number of active plugins. +#: wp-admin/includes/class-wp-site-health.php:430 +msgid "Your site has %d active plugin, and it is up to date." +msgid_plural "Your site has %d active plugins, and they are all up to date." +msgstr[0] "Your site has %d active plugin, and it is up to date." +msgstr[1] "Your site has %d active plugins, and they are all up to date." + +#. translators: %d: The number of outdated plugins. +#: wp-admin/includes/class-wp-site-health.php:405 +msgid "Your site has %d plugin waiting to be updated." +msgid_plural "Your site has %d plugins waiting to be updated." +msgstr[0] "Your site has %d plugin waiting to be updated." +msgstr[1] "Your site has %d plugins waiting to be updated." + +#: wp-admin/includes/class-wp-site-health.php:399 +msgid "You have plugins waiting to be updated" +msgstr "You have plugins waiting to be updated" + +#: wp-admin/includes/class-wp-site-health.php:365 +msgid "Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date." +msgstr "Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date." + +#: wp-admin/includes/class-wp-site-health.php:357 +msgid "Your plugins are all up to date" +msgstr "Your plugins are all up to date" + +#: wp-admin/includes/class-wp-site-health.php:336 +msgid "You are currently running the latest version of WordPress available, keep it up!" +msgstr "You are currently running the latest version of WordPress available, keep it up!" + +#: wp-admin/includes/class-wp-site-health.php:323 +msgid "A new minor update is available for your site. Because minor updates often address security, it’s important to install them." +msgstr "A new minor update is available for your site. Because minor updates often address security, it’s important to install them." + +#: wp-admin/includes/class-wp-site-health.php:315 +msgid "A new version of WordPress is available." +msgstr "A new version of WordPress is available." + +#: wp-admin/includes/class-wp-site-health.php:307 +msgid "Install the latest version of WordPress" +msgstr "Install the latest version of WordPress" + +#. translators: %s: The latest version of WordPress available. +#: wp-admin/includes/class-wp-site-health.php:300 +msgid "WordPress update available (%s)" +msgstr "WordPress update available (%s)" + +#: wp-admin/includes/class-wp-site-health.php:287 +msgid "Check for updates manually" +msgstr "Check for updates manually" + +#: wp-admin/includes/class-wp-site-health.php:281 +msgid "Unable to check if any new versions of WordPress are available." +msgstr "Unable to check if any new versions of WordPress are available." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:472 +msgid "WordPress security and maintenance releases are blocked by the %s filter." +msgstr "WordPress security and maintenance releases are blocked by the %s filter." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:460 +msgid "WordPress security and maintenance releases are blocked by %s." +msgstr "WordPress security and maintenance releases are blocked by %s." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:437 +msgid "WordPress development updates are blocked by the %s filter." +msgstr "WordPress development updates are blocked by the %s filter." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:425 +msgid "WordPress development updates are blocked by the %s constant." +msgstr "WordPress development updates are blocked by the %s constant." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:400 +msgid "All of your WordPress files are writable." +msgstr "All of your WordPress files are writable." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:395 +msgid "Some files are not writable by WordPress:" +msgstr "Some files are not writable by WordPress:" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:369 +msgid "This could mean that connections are failing to WordPress.org." +msgstr "This could mean that connections are failing to WordPress.org." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:366 +msgid "Couldn't retrieve a list of the checksums for WordPress %s." +msgstr "Couldn't retrieve a list of the checksums for WordPress %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:312 +msgid "Your installation of WordPress does not require FTP credentials to perform updates." +msgstr "Your installation of WordPress does not require FTP credentials to perform updates." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:303 +msgid "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" +msgstr "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:302 +msgid "Your installation of WordPress prompts for FTP credentials to perform updates." +msgstr "Your installation of WordPress prompts for FTP credentials to perform updates." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:280 +msgid "No version control systems were detected." +msgstr "No version control systems were detected." + +#. translators: 1: Folder name. 2: Version control directory. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:271 +msgid "The folder %1$s was detected as being under version control (%2$s)." +msgstr "The folder %1$s was detected as being under version control (%2$s)." + +#. translators: 1: Folder name. 2: Version control directory. 3: Filter name. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:258 +msgid "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." +msgstr "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:192 +msgid "A previous automatic background update could not occur." +msgstr "A previous automatic background update could not occur." + +#. translators: %s: Code of error shown. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:200 +msgid "The error code was %s." +msgstr "The error code was %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:180 +msgid "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." +msgstr "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:179 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:194 +msgid "You would have received an email because of this." +msgstr "You would have received an email because of this." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:178 +msgid "A previous automatic background update ended with a critical failure, so updates are now disabled." +msgstr "A previous automatic background update ended with a critical failure, so updates are now disabled." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:129 +msgid "The %s filter is enabled." +msgstr "The %s filter is enabled." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:105 +msgid "A plugin has prevented updates by disabling %s." +msgstr "A plugin has prevented updates by disabling %s." + +#: wp-admin/includes/class-wp-debug-data.php:1727 +msgid "The must use plugins directory" +msgstr "The must use plugins directory" + +#: wp-admin/includes/class-wp-debug-data.php:1125 +msgid "Theme features" +msgstr "Theme features" + +#: wp-admin/includes/class-theme-installer-skin.php:250 +#: wp-admin/includes/class-wp-debug-data.php:1120 +msgid "Parent theme" +msgstr "Parent theme" + +#: wp-admin/includes/class-wp-debug-data.php:1115 +#: wp-admin/includes/class-wp-debug-data.php:1235 +msgid "Author website" +msgstr "Author website" + +#. translators: %s: Latest WordPress version number. +#. translators: %s: Latest plugin version number. +#. translators: %s: Latest theme version number. +#: wp-admin/includes/class-wp-debug-data.php:163 +#: wp-admin/includes/class-wp-debug-data.php:967 +#: wp-admin/includes/class-wp-debug-data.php:1072 +#: wp-admin/includes/class-wp-debug-data.php:1209 +#: wp-admin/includes/class-wp-debug-data.php:1354 +msgid "(Latest version: %s)" +msgstr "(Latest version: %s)" + +#. translators: 1: Plugin version number. 2: Plugin author name. +#. translators: 1: Theme version number. 2: Theme author name. +#: wp-admin/includes/class-wp-debug-data.php:773 +#: wp-admin/includes/class-wp-debug-data.php:949 +#: wp-admin/includes/class-wp-debug-data.php:1336 +msgid "Version %1$s by %2$s" +msgstr "Version %1$s by %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:768 +#: wp-admin/includes/class-wp-debug-data.php:944 +#: wp-admin/includes/class-wp-debug-data.php:1331 +msgid "No version or author information is available." +msgstr "No version or author information is available." + +#: wp-admin/includes/class-wp-debug-data.php:1615 +msgid "Server version" +msgstr "Server version" + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:497 +msgid "Your %s file contains only core WordPress features." +msgstr "Your %s file contains only core WordPress features." + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:494 +msgid "Custom rules have been added to your %s file." +msgstr "Custom rules have been added to your %s file." + +#: wp-admin/includes/class-wp-debug-data.php:501 +msgid ".htaccess rules" +msgstr ".htaccess rules" + +#: wp-admin/includes/class-wp-debug-data.php:469 +msgid "Is the Imagick library available?" +msgstr "Is the Imagick library available?" + +#: wp-admin/includes/class-wp-debug-data.php:460 +msgid "Is SUHOSIN installed?" +msgstr "Is SUHOSIN installed?" + +#: wp-admin/includes/class-wp-debug-data.php:445 +#: wp-admin/includes/class-wp-debug-data.php:450 +msgid "cURL version" +msgstr "cURL version" + +#: wp-admin/includes/class-wp-debug-data.php:436 +msgid "PHP post max size" +msgstr "PHP post max size" + +#: wp-admin/includes/class-wp-debug-data.php:432 +msgid "Upload max filesize" +msgstr "Upload max filesize" + +#: wp-admin/includes/class-wp-debug-data.php:428 +msgid "Max input time" +msgstr "Max input time" + +#: wp-admin/includes/class-wp-debug-data.php:413 +#: wp-admin/includes/class-wp-debug-data.php:422 +msgid "PHP memory limit" +msgstr "PHP memory limit" + +#: wp-admin/includes/class-wp-debug-data.php:407 +msgid "PHP time limit" +msgstr "PHP time limit" + +#: wp-admin/includes/class-wp-debug-data.php:403 +msgid "PHP max input variables" +msgstr "PHP max input variables" + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-debug-data.php:396 +#: wp-admin/includes/class-wp-debug-data.php:607 +msgid "Unable to determine some settings, as the %s function has been disabled." +msgstr "Unable to determine some settings, as the %s function has been disabled." + +#: wp-admin/includes/class-wp-debug-data.php:393 +msgid "Server settings" +msgstr "Server settings" + +#: wp-admin/includes/class-wp-debug-data.php:385 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +#: wp-admin/includes/class-wp-debug-data.php:360 +msgid "(Does not support 64bit values)" +msgstr "(Does not support 64bit values)" + +#: wp-admin/includes/class-wp-debug-data.php:360 +msgid "(Supports 64bit values)" +msgstr "(Supports 64bit values)" + +#: wp-admin/includes/class-wp-debug-data.php:380 +msgid "PHP version" +msgstr "PHP version" + +#: wp-admin/includes/class-wp-debug-data.php:376 +msgid "Unable to determine what web server software is used" +msgstr "Unable to determine what web server software is used" + +#: wp-admin/includes/class-wp-debug-data.php:375 +msgid "Web server" +msgstr "Web server" + +#: wp-admin/includes/class-wp-debug-data.php:371 +msgid "Unable to determine server architecture" +msgstr "Unable to determine server architecture" + +#: wp-admin/includes/class-wp-debug-data.php:370 +msgid "Server architecture" +msgstr "Server architecture" + +#: wp-admin/includes/class-wp-debug-data.php:741 +msgid "Ghostscript version" +msgstr "Ghostscript version" + +#: wp-admin/includes/class-wp-debug-data.php:736 +msgid "Unable to determine if Ghostscript is installed" +msgstr "Unable to determine if Ghostscript is installed" + +#: wp-admin/includes/class-wp-debug-data.php:693 +msgid "GD version" +msgstr "GD version" + +#: wp-admin/includes/class-wp-debug-data.php:667 +msgid "Imagick Resource Limits" +msgstr "Imagick Resource Limits" + +#: wp-admin/includes/class-wp-debug-data.php:591 +msgid "ImageMagick version string" +msgstr "ImageMagick version string" + +#: wp-admin/includes/class-wp-debug-data.php:586 +msgid "ImageMagick version number" +msgstr "ImageMagick version number" + +#: wp-admin/includes/class-wp-debug-data.php:451 +#: wp-admin/includes/class-wp-debug-data.php:568 +#: wp-admin/includes/class-wp-debug-data.php:582 +#: wp-admin/includes/class-wp-debug-data.php:599 +#: wp-admin/includes/class-wp-debug-data.php:1978 wp-admin/includes/ms.php:803 +msgid "Not available" +msgstr "Not available" + +#: wp-admin/includes/class-wp-debug-data.php:572 +msgid "Active editor" +msgstr "Active editor" + +#: wp-admin/includes/class-wp-debug-data.php:870 +msgid "Total installation size" +msgstr "Total installation size" + +#: wp-admin/includes/class-wp-debug-data.php:865 +msgid "Database size" +msgstr "Database size" + +#: wp-admin/includes/class-wp-debug-data.php:824 +msgid "WordPress directory size" +msgstr "WordPress directory size" + +#: wp-admin/includes/class-wp-debug-data.php:820 +msgid "WordPress directory location" +msgstr "WordPress directory location" + +#: wp-admin/includes/class-wp-debug-data.php:851 +msgid "Plugins directory size" +msgstr "Plugins directory size" + +#: wp-admin/includes/class-wp-debug-data.php:847 +msgid "Plugins directory location" +msgstr "Plugins directory location" + +#: wp-admin/includes/class-wp-debug-data.php:842 +msgid "Themes directory size" +msgstr "Themes directory size" + +#: wp-admin/includes/class-wp-debug-data.php:1129 +#: wp-admin/includes/class-wp-debug-data.php:1240 +msgid "Theme directory location" +msgstr "Theme directory location" + +#: wp-admin/includes/class-wp-debug-data.php:833 +msgid "Uploads directory size" +msgstr "Uploads directory size" + +#: wp-admin/includes/class-wp-debug-data.php:829 +msgid "Uploads directory location" +msgstr "Uploads directory location" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-debug-data.php:289 +msgid "Unable to reach WordPress.org at %1$s: %2$s" +msgstr "Unable to reach WordPress.org at %1$s: %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:281 +msgid "WordPress.org is reachable" +msgstr "WordPress.org is reachable" + +#: wp-admin/includes/class-wp-debug-data.php:280 +#: wp-admin/includes/class-wp-debug-data.php:286 +#: wp-admin/includes/class-wp-site-health.php:2781 +msgid "Communication with WordPress.org" +msgstr "Communication with WordPress.org" + +#: wp-admin/includes/class-wp-debug-data.php:265 +msgid "Network count" +msgstr "Network count" + +#: wp-admin/includes/class-wp-debug-data.php:260 +msgid "Site count" +msgstr "Site count" + +#: wp-admin/includes/class-wp-debug-data.php:271 +msgid "User count" +msgstr "User count" + +#: wp-admin/includes/class-wp-debug-data.php:1707 +msgid "The themes directory" +msgstr "The themes directory" + +#: wp-admin/includes/class-wp-debug-data.php:1702 +msgid "The plugins directory" +msgstr "The plugins directory" + +#: wp-admin/includes/class-wp-debug-data.php:1697 +msgid "The uploads directory" +msgstr "The uploads directory" + +#: wp-admin/includes/class-wp-debug-data.php:1692 +msgid "The wp-content directory" +msgstr "The wp-content directory" + +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 +msgid "Not writable" +msgstr "Not writable" + +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 +msgid "Writable" +msgstr "Writable" + +#: wp-admin/includes/class-wp-debug-data.php:1687 +msgid "The main WordPress directory" +msgstr "The main WordPress directory" + +#: wp-admin/includes/class-wp-debug-data.php:1735 +msgid "Shows whether WordPress is able to write to the directories it needs access to." +msgstr "Shows whether WordPress is able to write to the directories it needs access to." + +#: wp-admin/includes/class-wp-debug-data.php:1734 +msgid "Filesystem Permissions" +msgstr "File system permissions" + +#: wp-admin/includes/class-wp-debug-data.php:1116 +#: wp-admin/includes/class-wp-debug-data.php:1236 +#: wp-admin/includes/class-wp-debug-data.php:1443 +#: wp-admin/includes/class-wp-debug-data.php:1452 +#: wp-admin/includes/class-wp-debug-data.php:1461 +#: wp-admin/includes/class-wp-debug-data.php:1470 +#: wp-admin/includes/class-wp-debug-data.php:1479 +#: wp-admin/includes/class-wp-debug-data.php:1491 +#: wp-admin/includes/class-wp-debug-data.php:1496 +#: wp-admin/includes/class-wp-debug-data.php:1567 +msgid "Undefined" +msgstr "Undefined" + +#: wp-admin/includes/class-wp-debug-data.php:1578 +msgid "WordPress Constants" +msgstr "WordPress constants" + +#: wp-admin/includes/class-wp-debug-data.php:1663 +msgid "Database" +msgstr "Database" + +#: wp-admin/includes/class-wp-debug-data.php:553 +msgid "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." +msgstr "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." + +#: wp-admin/includes/class-wp-debug-data.php:552 +msgid "Server" +msgstr "Server" + +#: wp-admin/includes/class-wp-debug-data.php:747 +msgid "Media Handling" +msgstr "Media Handling" + +#: wp-admin/includes/class-wp-debug-data.php:907 +msgid "Inactive Plugins" +msgstr "Inactive Plugins" + +#: wp-admin/includes/class-wp-debug-data.php:892 +msgid "Active Plugins" +msgstr "Active Plugins" + +#: wp-admin/includes/class-wp-debug-data.php:797 +msgid "Must Use Plugins" +msgstr "Must Use Plugins" + +#: wp-admin/includes/class-wp-debug-data.php:1175 +#: wp-admin/includes/theme.php:862 wp-admin/themes.php:1086 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:945 +msgid "Active Theme" +msgstr "Active theme" + +#: wp-admin/includes/class-wp-debug-data.php:327 +msgid "Drop-ins" +msgstr "Drop-ins" + +#. translators: Filesystem directory paths and storage sizes. +#: wp-admin/includes/class-wp-debug-data.php:878 +msgid "Directories and Sizes" +msgstr "Directories and Sizes" + +#: wp-admin/includes/class-wp-debug-data.php:209 +msgid "Is this a multisite?" +msgstr "Is this a multisite?" + +#: wp-admin/includes/class-wp-debug-data.php:224 +msgid "Default comment status" +msgstr "Default comment status" + +#: wp-admin/includes/class-wp-debug-data.php:214 +msgid "Can anyone register on this site?" +msgstr "Can anyone register on this site?" + +#: wp-admin/includes/class-wp-debug-data.php:204 +msgid "Is this site using HTTPS?" +msgstr "Is this site using HTTPS?" + +#: wp-admin/includes/class-wp-debug-data.php:200 +msgid "No permalink structure set" +msgstr "No permalink structure set" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-debug-data.php:199 +#: wp-admin/options-permalink.php:330 wp-admin/options-permalink.php:336 +msgid "Permalink structure" +msgstr "Permalink structure" + +#: wp-admin/includes/class-wp-debug-data.php:194 +msgid "Site URL" +msgstr "Site URL" + +#: wp-admin/includes/class-wp-debug-data.php:189 +msgid "Home URL" +msgstr "Home URL" + +#: wp-admin/site-health.php:101 +msgid "Site Health" +msgstr "Site Health" + +#. translators: %s: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:163 +msgctxt "requests" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%d)" + +#: wp-admin/options-discussion.php:98 +msgid "Show comments cookies opt-in checkbox, allowing comment author cookies to be set" +msgstr "Show comments cookies opt in checkbox, allowing comment author cookies to be set" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:480 +msgid "Next theme" +msgstr "Next theme" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:474 +msgid "Previous theme" +msgstr "Previous theme" + +#: wp-admin/user-edit.php:551 +msgid "If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed." +msgstr "If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed." + +#: wp-admin/themes.php:309 +msgid "Theme resumed." +msgstr "Theme resumed." + +#: wp-admin/themes.php:318 +msgid "Theme could not be resumed because it triggered a fatal error." +msgstr "Theme could not be resumed because it triggered a fatal error." + +#: wp-admin/plugins.php:678 +msgid "If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin." +msgstr "If you notice “ headers already sent ” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin." + +#. translators: %d: Number of characters. +#: wp-admin/plugins.php:671 +msgid "The plugin generated %d character of unexpected output during activation." +msgid_plural "The plugin generated %d characters of unexpected output during activation." +msgstr[0] "The plugin generated %d character of unexpected output during activation." +msgstr[1] "The plugin generated %d characters of unexpected output during activation." + +#: wp-admin/plugins.php:451 +msgid "Sorry, you are not allowed to resume this plugin." +msgstr "Sorry, you are not allowed to resume this plugin." + +#. translators: %s: WordPress Planet URL. +#: wp-admin/index.php:97 +msgid "WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet." +msgstr "WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/update-core.php:133 wp-admin/upgrade.php:139 +msgid "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/update-core.php:124 wp-admin/upgrade.php:130 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." + +#: wp-admin/nav-menus.php:1067 +msgid "Add menu items" +msgstr "Add menu items" + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:1028 +msgid "or create a new menu. Do not forget to save your changes!" +msgstr "or create a new menu. Do not forget to save your changes!" + +#. translators: Hidden accessibility text. +#: wp-admin/nav-menus.php:973 wp-admin/nav-menus.php:1043 +msgid "Click the Save Menu button to save your changes." +msgstr "Click the Save Menu button to save your changes." + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:958 +msgid "Edit your menu below, or create a new menu. Do not forget to save your changes!" +msgstr "Edit your menu below, or create a new menu. Do not forget to save your changes!" + +#. translators: Hidden accessibility text. +#: wp-admin/nav-menus.php:949 +msgid "Fill in the Menu Name and click the Create Menu button to create your first menu." +msgstr "Fill in the Menu Name and click the Create Menu button to create your first menu." + +#: wp-admin/nav-menus.php:945 +msgid "Create your first menu below." +msgstr "Create your first menu below." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/install.php:289 +msgid "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/install.php:280 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." + +#: wp-admin/includes/class-wp-site-health.php:751 +#: wp-admin/includes/dashboard.php:1917 +msgid "Learn more about updating PHP" +msgstr "Learn more about updating PHP" + +#: wp-admin/includes/dashboard.php:1898 +msgid "What is PHP and how does it affect my site?" +msgstr "What is PHP and how does it affect my site?" + +#: wp-admin/includes/dashboard.php:50 +msgid "PHP Update Required" +msgstr "PHP Update Required" + +#: wp-admin/includes/plugin.php:2577 +msgid "You can find more details and make changes on the Plugins screen." +msgstr "You can find more details and make changes on the Plugins screen." + +#: wp-admin/includes/plugin.php:2576 +msgid "One or more plugins failed to load properly." +msgstr "One or more plugins failed to load properly." + +#: wp-admin/includes/plugin.php:2546 +msgid "Could not resume the plugin." +msgstr "Could not resume the plugin." + +#: wp-admin/includes/plugin.php:509 +msgid "Custom PHP fatal error handler." +msgstr "Custom PHP fatal error handler." + +#: wp-admin/includes/plugin.php:508 +msgid "Custom PHP error message." +msgstr "Custom PHP error message." + +#: wp-admin/includes/class-language-pack-upgrader.php:122 +msgid "Could not remove the old translation." +msgstr "Could not remove the old translation." + +#: wp-admin/includes/class-language-pack-upgrader.php:121 +msgid "Removing the old version of the translation…" +msgstr "Removing the old version of the translation…" + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/plugin-install.php:847 +msgid "Click here to update WordPress." +msgstr "Click here to update WordPress." + +#: wp-admin/includes/plugin-install.php:843 +msgid "Error: This plugin requires a newer version of WordPress." +msgstr "ERROR: this plugin requires a newer version of WordPress." + +#. translators: %s: URL to Update PHP page. +#: wp-admin/includes/plugin-install.php:817 +msgid "Click here to learn more about updating PHP." +msgstr "Click here to learn more about updating PHP." + +#: wp-admin/includes/plugin-install.php:812 +msgid "Error: This plugin requires a newer version of PHP." +msgstr "ERROR: this plugin requires a newer version of PHP." + +#. translators: Hidden accessibility text. %s: Widget title. +#: wp-admin/includes/widgets.php:257 +msgid "Add widget: %s" +msgstr "Add widget: %s" + +#. translators: %s: Widgets sidebar name. +#: wp-admin/includes/widgets.php:97 +msgid "Add to: %s" +msgstr "Add to: %s" + +#. translators: Audio file track information. %s: Audio track number. +#: wp-admin/includes/media.php:378 +msgid "Track %s." +msgstr "Track %s." + +#: wp-admin/includes/schema.php:1260 +msgid "My Network" +msgstr "My Network" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:641 +#: wp-admin/includes/class-wp-plugins-list-table.php:1453 +msgid "This plugin does not work with your version of PHP." +msgstr "This plugin does not work with your version of PHP." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:632 +#: wp-admin/includes/class-wp-plugins-list-table.php:1444 +msgid "This plugin does not work with your version of WordPress." +msgstr "This plugin does not work with your version of WordPress." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:608 +#: wp-admin/includes/class-wp-plugins-list-table.php:1420 +msgid "This plugin does not work with your versions of WordPress and PHP." +msgstr "This plugin does not work with your versions of WordPress and PHP." + +#. translators: %s: WordPress version number. +#. translators: %s: WordPress version. +#: wp-admin/about.php:21 wp-admin/includes/update.php:321 +#: wp-admin/index.php:119 wp-admin/install.php:250 wp-admin/update-core.php:94 +#: wp-admin/upgrade.php:100 +msgid "https://wordpress.org/documentation/wordpress-version/version-%s/" +msgstr "https://wordpress.org/documentation/wordpress-version/version-%s/" + +#: wp-admin/includes/class-wp-plugins-list-table.php:935 +#: wp-admin/themes.php:716 +msgid "Resume" +msgstr "Resume" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:934 +msgctxt "plugin" +msgid "Resume %s" +msgstr "Resume %s" + +#: wp-admin/includes/theme.php:1245 +msgid "You can find more details and make changes on the Themes screen." +msgstr "You can find more details and make changes on the Themes screen." + +#: wp-admin/includes/theme.php:1244 +msgid "One or more themes failed to load properly." +msgstr "One or more themes failed to load properly." + +#: wp-admin/includes/theme.php:1214 +msgid "Could not resume the theme." +msgstr "Could not resume the theme." + +#. translators: %s: Default category. +#: wp-admin/edit-tags.php:632 +msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." +msgstr "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." + +#. translators: %s: A link to install the Classic Widgets plugin. +#: wp-admin/widgets-form-blocks.php:114 +msgid "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin." +msgstr "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin." + +#: wp-admin/post.php:47 +msgid "A post type mismatch has been detected." +msgstr "A post type mismatch has been detected." + +#: wp-admin/includes/class-wp-screen.php:297 wp-admin/post.php:20 +msgid "A post ID mismatch has been detected." +msgstr "A post ID mismatch has been detected." + +#. translators: %s: A link to use the Classic Editor plugin. +#: wp-admin/includes/template.php:1232 +msgid "Please open the classic editor to use this meta box." +msgstr "Please open the Classic Editor plugin to use this meta box." + +#. translators: %s: A link to activate the Classic Editor plugin. +#: wp-admin/includes/template.php:1219 +msgid "Please activate the Classic Editor plugin to use this meta box." +msgstr "Please activate the Classic Editor plugin to use this meta box." + +#. translators: %s: A link to install the Classic Editor plugin. +#: wp-admin/includes/template.php:1207 +msgid "Please install the Classic Editor plugin to use this meta box." +msgstr "Please install the Classic Editor plugin to use this meta box." + +#: wp-admin/includes/template.php:1194 +msgid "This meta box is not compatible with the block editor." +msgstr "This meta box is not compatible with the block editor." + +#: wp-admin/freedoms.php:78 +msgid "To distribute copies of your modified versions to others." +msgstr "To distribute copies of your modified versions to others." + +#: wp-admin/freedoms.php:77 +msgid "The 4th Freedom" +msgstr "The Fourth Freedom" + +#: wp-admin/freedoms.php:73 +msgid "To redistribute." +msgstr "To redistribute." + +#: wp-admin/freedoms.php:72 +msgid "The 3rd Freedom" +msgstr "The Third Freedom" + +#: wp-admin/freedoms.php:68 +msgid "To study how the program works and change it to make it do what you wish." +msgstr "To study how the program works and change it to make it do what you wish." + +#: wp-admin/freedoms.php:67 +msgid "The 2nd Freedom" +msgstr "The Second Freedom" + +#: wp-admin/freedoms.php:63 +msgid "To run the program for any purpose." +msgstr "To run the program for any purpose." + +#: wp-admin/freedoms.php:62 +msgid "The 1st Freedom" +msgstr "The First Freedom" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:29 +msgid "Created" +msgstr "Created" + +#. translators: First post content. %s: Site link. +#: wp-admin/includes/upgrade.php:235 +msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" +msgstr "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" + +#. translators: First page content. %s: Site admin URL. +#: wp-admin/includes/upgrade.php:336 +msgid "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" +msgstr "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:330 +msgid "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." +msgstr "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:325 +msgid "...or something like this:" +msgstr "...or something like this:" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:320 +msgid "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" +msgstr "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:315 +msgid "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" +msgstr "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" + +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1573 +msgid "Export “%s” as JSON" +msgstr "Export “%s” as JSON" + +#: wp-admin/edit.php:386 +msgid "1 pattern not updated, somebody is editing it." +msgstr "1 pattern not updated, somebody is editing it." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:394 +msgid "%s pattern restored from the Trash." +msgid_plural "%s patterns restored from the Trash." +msgstr[0] "%s pattern restored from the Bin." +msgstr[1] "%s patterns restored from the Bin." + +#: wp-admin/setup-config.php:304 +msgid "Error: \"Table Prefix\" must not be empty." +msgstr "Error: \"Table Prefix\" must not be empty." + +#. translators: %s: The name of the plugin that generated this meta box. +#: wp-admin/includes/template.php:1192 wp-admin/includes/template.php:1444 +msgid "This meta box, from the %s plugin, is not compatible with the block editor." +msgstr "This meta box, from the %s plugin, is not compatible with the block editor." + +#. translators: Header for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:368 +msgctxt "personal data group label" +msgid "About" +msgstr "About" + +#. translators: Page title of the About WordPress page in the admin. +#: wp-admin/about.php:14 +msgctxt "page title" +msgid "About" +msgstr "About" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy +#. Policy page. +#: wp-admin/options-privacy.php:228 +msgid "Edit or preview your Privacy Policy page content." +msgstr "Edit or preview your Privacy Policy page content." + +#: wp-admin/includes/file.php:40 +msgid "Privacy Policy Page" +msgstr "Privacy Policy Page" + +#. translators: %s: Page title. +#: wp-admin/includes/misc.php:1554 +msgid "%s (Draft)" +msgstr "%s (Draft)" + +#: wp-admin/options-privacy.php:57 +msgid "Privacy Policy page updated successfully." +msgstr "Privacy Policy page updated successfully." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2433 +msgid "The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation." +msgstr "The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2422 +msgid "The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action." +msgstr "The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action." + +#. translators: %s: Privacy Policy Guide URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:143 +msgid "The suggested privacy policy text has changed. Please review the guide and update your privacy policy." +msgstr "The suggested privacy policy text has changed. Please review the guide and update your privacy policy." + +#: wp-admin/options-privacy.php:267 +msgid "There are no pages." +msgstr "There are no pages." + +#. translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-admin/options-privacy.php:239 +msgid "Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Need help putting together your new Privacy Policy page? Check out the Privacy Policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." + +#: wp-admin/privacy-policy-guide.php:21 wp-admin/privacy-policy-guide.php:74 +#: wp-admin/privacy-policy-guide.php:83 +msgid "Privacy Policy Guide" +msgstr "Privacy Policy Guide" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:607 +msgid "Visitor comments may be checked through an automated spam detection service." +msgstr "Visitor comments may be checked through an automated spam detection service." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:555 +msgid "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." +msgstr "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:512 +msgid "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." +msgstr "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:499 +msgid "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." +msgstr "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:483 +msgid "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." +msgstr "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:457 +msgid "Suggested text:" +msgstr "Suggested text:" + +#: wp-admin/privacy-policy-guide.php:77 +msgid "The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins." +msgstr "The template contains a suggestion of sections you will most likely need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins." + +#. translators: %s: Date of privacy policy text update. +#: wp-admin/includes/class-wp-privacy-policy-content.php:408 +msgid "Updated %s." +msgstr "Updated %s." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:396 +msgid "You deactivated this plugin on %s and may no longer need this policy." +msgstr "You deactivated this plugin on %s and may no longer need this policy." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:393 +msgid "Removed %s." +msgstr "Removed %s." + +#: wp-admin/privacy-policy-guide.php:75 +msgid "Introduction" +msgstr "Introduction" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:336 +msgid "Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:66 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:140 +msgid "Erasing data..." +msgstr "Erasing data..." + +#: wp-admin/erase-personal-data.php:114 +msgid "Add Data Erasure Request" +msgstr "Add Data Erasure Request" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:133 +msgid "Send export link" +msgstr "Send export link" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:656 +msgid "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." +msgstr "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:654 +msgid "Industry regulatory disclosure requirements" +msgstr "Industry regulatory disclosure requirements" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:649 +msgid "If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." +msgstr "If your website provides a service which includes automated decision making – for example, allowing customers to apply for credit, or aggregating their data into an advertising profile – you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:647 +msgid "What automated decision making and/or profiling we do with user data" +msgstr "What automated decision making and/or profiling we do with user data" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:642 +msgid "If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data." +msgstr "If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third-party data." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:640 +msgid "What third parties we receive data from" +msgstr "What third parties we receive data from" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:635 +msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." +msgstr "In this section, you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:633 +msgid "What data breach procedures we have in place" +msgstr "What data breach procedures we have in place" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:628 +msgid "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." +msgstr "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two-factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:626 +msgid "How we protect your data" +msgstr "How we protect your data" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:621 +msgid "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." +msgstr "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:619 +msgid "Additional information" +msgstr "Additional information" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:614 +msgid "In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." +msgstr "In this section, you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:604 +msgid "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." +msgstr "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third-party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:602 +msgid "In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." +msgstr "In this section, you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:594 +msgid "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." +msgstr "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:591 +msgid "In this section you should explain what rights your users have over their data and how they can invoke those rights." +msgstr "In this section, you should explain what rights your users have over their data and how they can invoke those rights." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:587 +msgid "What rights you have over your data" +msgstr "What rights you have over your data" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:583 +msgid "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." +msgstr "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:581 +msgid "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue." +msgstr "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:578 +msgid "In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." +msgstr "In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:574 +msgid "How long we retain your data" +msgstr "How long we retain your data" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:567 +msgid "By default WordPress does not share any personal data with anyone." +msgstr "By default WordPress does not share any personal data with anyone." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:565 +msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." +msgstr "In this section, you should name and list all third-party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:561 +msgid "Who we share your data with" +msgstr "Who we share your data with" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:557 +msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." +msgstr "By default, WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:553 +msgid "Analytics" +msgstr "Analytics" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:548 +msgid "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." +msgstr "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:546 +msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." +msgstr "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:544 +msgid "Embedded content from other websites" +msgstr "Embedded content from other websites" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:539 +msgid "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." +msgstr "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:537 +msgid "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." +msgstr "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:535 +msgid "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." +msgstr "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:533 +msgid "If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." +msgstr "If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:530 +msgid "In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." +msgstr "In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:526 +msgid "Cookies" +msgstr "Cookies" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:504 +msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." +msgstr "An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:502 +msgid "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." +msgstr "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:522 +msgid "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." +msgstr "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:520 +msgid "Contact forms" +msgstr "Contact forms" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:515 +msgid "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." +msgstr "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:491 +msgid "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." +msgstr "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:489 +msgid "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds." +msgstr "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third-party embeds." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:487 +msgid "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." +msgstr "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:485 +msgid "You should also note any collection and retention of sensitive personal data, such as data concerning health." +msgstr "You should also note any collection and retention of sensitive personal data, such as data concerning health." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:481 +msgid "What personal data we collect and why we collect it" +msgstr "What personal data we collect and why we collect it" + +#. translators: Default privacy policy text. %s: Site URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:476 +msgid "Our website address is: %s." +msgstr "Our website address is: %s." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:473 +msgid "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." +msgstr "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:471 +msgid "In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information." +msgstr "In this section, you should note your site URL, as well as the name of the company, organisation, or individual behind it, and some accurate contact information." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:467 +msgid "Who we are" +msgstr "Who we are" + +#: wp-admin/privacy-policy-guide.php:79 +msgid "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate." +msgstr "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate." + +#: wp-admin/privacy-policy-guide.php:78 +msgid "Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu." +msgstr "Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu." + +#: wp-admin/privacy-policy-guide.php:76 +msgid "This text template will help you to create your website’s privacy policy." +msgstr "This text template will help you to create your website’s privacy policy." + +#: wp-admin/options-privacy.php:193 +msgid "As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy." +msgstr "As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:68 +msgid "Force erasure has failed." +msgstr "Force erasure has failed." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:136 +msgid "Email could not be sent." +msgstr "Email could not be sent." + +#: wp-admin/includes/privacy-tools.php:386 +msgctxt "date/time" +msgid "On" +msgstr "On" + +#: wp-admin/includes/privacy-tools.php:382 +msgctxt "website URL" +msgid "At URL" +msgstr "At URL" + +#: wp-admin/includes/privacy-tools.php:378 +msgctxt "website name" +msgid "For site" +msgstr "For site" + +#: wp-admin/includes/privacy-tools.php:374 +msgctxt "email address" +msgid "Report generated for" +msgstr "Report generated for" + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:5022 +msgid "Exporter array at index %s does not include a friendly name." +msgstr "Exporter array at index %s does not include a friendly name." + +#: wp-admin/erase-personal-data.php:13 +msgid "Sorry, you are not allowed to erase personal data on this site." +msgstr "Sorry, you are not allowed to erase personal data on this site." + +#: wp-admin/export-personal-data.php:13 +msgid "Sorry, you are not allowed to export personal data on this site." +msgstr "Sorry, you are not allowed to export personal data on this site." + +#: wp-admin/includes/ajax-actions.php:5189 +msgid "Eraser index is out of range." +msgstr "Eraser index is out of range." + +#: wp-admin/includes/ajax-actions.php:5148 +msgid "Missing eraser index." +msgstr "Missing eraser index." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5073 +msgid "Expected done (boolean) in response array from exporter: %s." +msgstr "Expected done (boolean) in response array from exporter: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5066 +msgid "Expected data array in response array from exporter: %s." +msgstr "Expected data array in response array from exporter: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5059 +msgid "Expected data in response array from exporter: %s." +msgstr "Expected data in response array from exporter: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5052 +msgid "Expected response as an array from exporter: %s." +msgstr "Expected response as an array from exporter: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5038 +msgid "Exporter callback is not a valid callback: %s." +msgstr "Exporter callback is not a valid callback: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5031 +msgid "Exporter does not include a callback: %s." +msgstr "Exporter does not include a callback: %s." + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:5015 +msgid "Expected an array describing the exporter at index %s." +msgstr "Expected an array describing the exporter at index %s." + +#: wp-admin/includes/ajax-actions.php:5001 +msgid "Exporter index is out of range." +msgstr "Exporter index is out of range." + +#: wp-admin/includes/ajax-actions.php:4997 +msgid "Exporter index cannot be negative." +msgstr "Exporter index cannot be negative." + +#: wp-admin/includes/ajax-actions.php:4991 +msgid "An exporter has improperly used the registration filter." +msgstr "An exporter has improperly used the registration filter." + +#: wp-admin/includes/ajax-actions.php:4962 +#: wp-admin/includes/ajax-actions.php:5154 +msgid "Missing page index." +msgstr "Missing page index." + +#: wp-admin/includes/ajax-actions.php:4956 +msgid "Missing exporter index." +msgstr "Missing exporter index." + +#: wp-admin/includes/ajax-actions.php:4947 +#: wp-admin/includes/ajax-actions.php:5138 +msgid "Invalid request type." +msgstr "Invalid request type." + +#: wp-admin/options-privacy.php:311 +msgid "Use This Page" +msgstr "Use This Page" + +#: wp-admin/options-privacy.php:290 +msgid "Select a Privacy Policy page" +msgstr "Select a Privacy Policy page" + +#: wp-admin/options-privacy.php:288 +msgid "Change your Privacy Policy page" +msgstr "Change your Privacy Policy page" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy +#. Policy page. +#: wp-admin/options-privacy.php:221 +msgid "Edit or view your Privacy Policy page content." +msgstr "Edit or view your Privacy Policy page content." + +#: wp-admin/options-privacy.php:202 +msgid "You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy." +msgstr "You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy." + +#: wp-admin/options-privacy.php:198 +msgid "However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate." +msgstr "However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate." + +#: wp-admin/options-privacy.php:197 +msgid "The new page will include help and suggestions for your privacy policy." +msgstr "The new page will include help and suggestions for your privacy policy." + +#: wp-admin/options-privacy.php:194 +msgid "If you already have a Privacy Policy page, please select it below. If not, please create one." +msgstr "If you already have a Privacy Policy page, please select it below. If not, please create one." + +#. translators: %s: URL to Pages Trash. +#: wp-admin/options-privacy.php:136 +msgid "The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page." +msgstr "The currently selected Privacy Policy page is in the Bin. Please create or select a new Privacy Policy page or restore the current page." + +#: wp-admin/options-privacy.php:126 +msgid "The currently selected Privacy Policy page does not exist. Please create or select a new page." +msgstr "The currently selected Privacy Policy page does not exist. Please create or select a new page." + +#: wp-admin/options-privacy.php:102 +msgid "Unable to create a Privacy Policy page." +msgstr "Unable to create a Privacy Policy page." + +#. translators: Privacy Policy page slug. +#: wp-admin/includes/upgrade.php:399 +msgid "privacy-policy" +msgstr "privacy-policy" + +#. translators: %s: URL to Customizer -> Menus. +#: wp-admin/options-privacy.php:74 +msgid "Privacy Policy page setting updated successfully. Remember to update your menus!" +msgstr "Privacy Policy page setting updated successfully. Remember to update your menus!" + +#. translators: Hidden accessibility text. %s: Plugin name. +#: wp-admin/includes/class-wp-privacy-policy-content.php:435 +msgid "Copy suggested policy text from %s." +msgstr "Copy suggested policy text from %s." + +#. translators: Do not translate EXPIRATION, LINK, SITENAME, SITEURL: those are +#. placeholders. +#: wp-admin/includes/privacy-tools.php:662 +msgid "" +"Howdy,\n" +"\n" +"Your request for an export of personal data has been completed. You may\n" +"download your personal data by clicking on the link below. For privacy\n" +"and security, we will automatically delete the file on ###EXPIRATION###,\n" +"so please download it before then.\n" +"\n" +"###LINK###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hi,\n" +"\n" +"Your request for an export of personal data has been completed. You may\n" +"download your personal data by clicking on the link below. For privacy\n" +"and security, we will automatically delete the file on ###EXPIRATION###,\n" +"so please download it before then.\n" +"\n" +"###LINK###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:135 +msgid "Email sent." +msgstr "Email sent." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:134 +msgid "Sending email..." +msgstr "Sending email..." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:62 +msgid "Download personal data again" +msgstr "Download personal data again" + +#: wp-admin/includes/privacy-tools.php:746 +msgid "Unable to send personal data export email." +msgstr "Unable to send personal data export email." + +#. translators: Personal data export notification email subject. %s: Site +#. title. +#: wp-admin/includes/privacy-tools.php:636 +msgid "[%s] Personal Data Export" +msgstr "[%s] Personal Data Export" + +#: wp-admin/includes/privacy-tools.php:593 +msgid "Invalid request ID when sending personal data export email." +msgstr "Invalid request ID when sending personal data export email." + +#: wp-admin/includes/privacy-tools.php:467 +msgid "Personal Data Export" +msgstr "Personal Data Export" + +#. translators: %s: User's email address. +#: wp-admin/includes/privacy-tools.php:361 +msgid "Personal Data Export for %s" +msgstr "Personal Data Export for %s" + +#: wp-admin/includes/ajax-actions.php:4952 +msgid "A valid email address must be given." +msgstr "A valid email address must be given." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:65 +msgid "Force erase personal data" +msgstr "Force erase personal data" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:156 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:163 +msgid "Remove request" +msgstr "Remove request" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:116 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:122 +msgid "Waiting for confirmation" +msgstr "Waiting for confirmation" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:63 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:136 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:142 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:68 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:142 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:149 +msgid "Retry" +msgstr "Retry" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:61 +msgid "Downloading data..." +msgstr "Downloading data..." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:60 +msgid "Download personal data" +msgstr "Download personal data" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:45 +msgid "Requested" +msgstr "Requested" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:43 +msgid "Requester" +msgstr "Requester" + +#: wp-admin/erase-personal-data.php:138 wp-admin/export-personal-data.php:138 +msgid "Send Request" +msgstr "Send request" + +#: wp-admin/erase-personal-data.php:119 wp-admin/export-personal-data.php:119 +msgid "Username or email address" +msgstr "Username or email address" + +#: wp-admin/export-personal-data.php:114 +msgid "Add Data Export Request" +msgstr "Add Data Export Request" + +#: wp-admin/includes/privacy-tools.php:171 +msgid "Confirmation request initiated successfully." +msgstr "Confirmation request initiated successfully." + +#: wp-admin/includes/privacy-tools.php:135 +msgid "Unable to add this request. A valid email address or username must be supplied." +msgstr "Unable to add this request. A valid email address or username must be supplied." + +#: wp-admin/includes/privacy-tools.php:91 +msgid "Confirmation request sent again successfully." +msgstr "Confirmation request sent again successfully." + +#: wp-admin/includes/privacy-tools.php:155 +msgid "Unable to initiate confirmation request." +msgstr "Unable to initiate confirmation request." + +#: wp-admin/includes/ajax-actions.php:4934 +#: wp-admin/includes/ajax-actions.php:5124 +msgid "Invalid request ID." +msgstr "Invalid request ID." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5298 +msgid "Expected done flag in response array from %1$s eraser (index %2$d)." +msgstr "Expected done flag in response array from %1$s eraser (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5287 +msgid "Expected messages key to reference an array in response array from %1$s eraser (index %2$d)." +msgstr "Expected messages key to reference an array in response array from %1$s eraser (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5276 +msgid "Expected messages key in response array from %1$s eraser (index %2$d)." +msgstr "Expected messages key in response array from %1$s eraser (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5265 +msgid "Expected items_retained key in response array from %1$s eraser (index %2$d)." +msgstr "Expected items_retained key in response array from %1$s eraser (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5254 +msgid "Expected items_removed key in response array from %1$s eraser (index %2$d)." +msgstr "Expected items_removed key in response array from %1$s eraser (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5243 +msgid "Did not receive array from %1$s eraser (index %2$d)." +msgstr "Did not receive array from %1$s eraser (index %2$d)." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5207 +msgid "Eraser array at index %d does not include a friendly name." +msgstr "Eraser array at index %d does not include a friendly name." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5202 +msgid "Expected an array describing the eraser at index %d." +msgstr "Expected an array describing the eraser at index %d." + +#: wp-admin/includes/ajax-actions.php:5005 +#: wp-admin/includes/ajax-actions.php:5193 +msgid "Page index cannot be less than one." +msgstr "Page index cannot be less than one." + +#: wp-admin/includes/ajax-actions.php:5185 +msgid "Eraser index cannot be less than one." +msgstr "Eraser index cannot be less than one." + +#: wp-admin/includes/ajax-actions.php:5144 +msgid "Invalid email address in request." +msgstr "Invalid email address in request." + +#: wp-admin/includes/plugin-install.php:682 +msgid "Requires PHP Version:" +msgstr "Requires PHP:" + +#. translators: %s: https://wordpress.org/about/stats +#: wp-admin/privacy.php:52 +msgid "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." +msgstr "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." + +#. translators: %s: Link to Custom CSS section in the Customizer. +#: wp-admin/theme-editor.php:216 +msgid "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." +msgstr "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." + +#: wp-admin/theme-editor.php:214 +msgid "Did you know?" +msgstr "Did you know?" + +#: wp-admin/credits.php:130 +msgid "Noteworthy Contributors" +msgstr "Noteworthy Contributors" + +#: wp-admin/theme-editor.php:421 +msgid "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." + +#: wp-admin/plugin-editor.php:369 +msgid "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." + +#: wp-admin/plugin-editor.php:368 +msgid "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates." +msgstr "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended, as it may introduce incompatibilities that break your site and your changes may be lost in future updates." + +#. translators: 1: Documentation URL, 2: URL to Reading Settings screen. +#: wp-admin/options-writing.php:241 +msgid "WordPress is not notifying any Update Services because of your site’s visibility settings." +msgstr "WordPress is not notifying any Update Services because of your site’s visibility settings." + +#. translators: 1: Documentation URL, 2: web.config, 3: Ctrl + A, 4: ⌘ + A +#: wp-admin/options-permalink.php:499 +msgid "Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file." +msgstr "Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:253 +msgid "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." +msgstr "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." + +#: wp-admin/freedoms.php:53 wp-admin/freedoms.php:103 +msgid "https://wordpress.org/about/license/" +msgstr "https://en-gb.wordpress.org/about/license/" + +#: wp-admin/privacy.php:46 +msgid "From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes." +msgstr "From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes." + +#. translators: Attachment information. %s: Date the attachment was uploaded. +#: wp-admin/includes/meta-boxes.php:445 +msgid "Uploaded on: %s" +msgstr "Uploaded on: %s" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-plugin-upgrader.php:77 +#: wp-admin/includes/class-theme-upgrader.php:75 +msgid "Downloading installation package from %s…" +msgstr "Downloading installation package from %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-language-pack-upgrader.php:117 +msgid "Downloading translation from %s…" +msgstr "Downloading translation from %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-core-upgrader.php:37 +#: wp-admin/includes/class-plugin-upgrader.php:60 +#: wp-admin/includes/class-theme-upgrader.php:59 +msgid "Downloading update from %s…" +msgstr "Downloading update from %s…" + +#. translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: +#. add_meta_boxes +#: wp-admin/includes/template.php:2681 +msgid "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." +msgstr "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." + +#: wp-admin/includes/template.php:2304 +msgid "Customization Draft" +msgstr "Customisation Draft" + +#. translators: %s: URL to the Customizer. +#: wp-admin/includes/meta-boxes.php:316 +msgid "This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." +msgstr "This draft comes from your unpublished customisation changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." + +#: wp-admin/theme-editor.php:283 +msgid "Theme Files" +msgstr "Theme Files" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/misc.php:421 wp-admin/includes/misc.php:523 +msgid "folder" +msgstr "folder" + +#: wp-admin/includes/file.php:591 +msgid "Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP." +msgstr "Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP." + +#: wp-admin/press-this.php:75 wp-admin/press-this.php:81 +msgid "Installation Required" +msgstr "Installation Required" + +#. translators: %s: Plugin filename. +#: wp-admin/includes/plugin.php:1048 +msgid "Could not fully remove the plugin %s." +msgstr "Could not fully remove the plugin %s." + +#: wp-admin/user-new.php:371 +msgid "User has been created, but could not be added to this site." +msgstr "User has been created, but could not be added to this site." + +#: wp-admin/user-new.php:368 +msgid "That user could not be added to this site." +msgstr "That user could not be added to this site." + +#: wp-admin/user-edit.php:328 +msgid "Disable syntax highlighting when editing code" +msgstr "Disable syntax highlighting when editing code" + +#: wp-admin/user-edit.php:325 +msgid "Syntax Highlighting" +msgstr "Syntax Highlighting" + +#: wp-admin/setup-config.php:446 wp-admin/setup-config.php:511 +msgid "Run the installation" +msgstr "Run the installation" + +#: wp-admin/privacy.php:63 +msgid "https://wordpress.org/about/privacy/" +msgstr "https://en-gb.wordpress.org/about/privacy/" + +#: wp-admin/press-this.php:80 +msgid "Press This is not available. Please contact your site administrator." +msgstr "Press This is not available. Please contact your site administrator." + +#. translators: %s: URL to Press This bookmarklet on the main site. +#: wp-admin/press-this.php:68 +msgid "Press This is not installed. Please install Press This from the main site." +msgstr "Press This is not installed. Please install Press This from the main site." + +#: wp-admin/press-this.php:44 +msgid "Activate Press This" +msgstr "Activate Press This" + +#: wp-admin/plugin-editor.php:373 wp-admin/theme-editor.php:425 +msgid "I understand" +msgstr "I understand" + +#: wp-admin/plugin-editor.php:367 wp-admin/theme-editor.php:404 +msgid "Heads up!" +msgstr "Heads up!" + +#: wp-admin/plugin-editor.php:317 +msgid "Warning: Making changes to active plugins is not recommended." +msgstr "Warning: Making changes to active plugins is not recommended." + +#: wp-admin/plugin-editor.php:297 wp-admin/theme-editor.php:321 +msgid "Selected file content:" +msgstr "Selected file content:" + +#: wp-admin/plugin-editor.php:207 wp-admin/theme-editor.php:202 +msgid "There was an error while trying to update the file. You may need to fix something and try updating again." +msgstr "There was an error while trying to update the file. You may need to fix something and try updating again." + +#. translators: %s: Select field to choose the front page. +#: wp-admin/options-reading.php:116 +msgid "Homepage: %s" +msgstr "Homepage: %s" + +#: wp-admin/options-permalink.php:386 +msgid "Available tags:" +msgstr "Available tags:" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:315 +msgid "%s (already used in permalink structure)" +msgstr "%s (already used in permalink structure)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:311 +msgid "%s added to permalink structure" +msgstr "%s added to permalink structure" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:298 +msgid "%s (A sanitized version of the author name.)" +msgstr "%s (A sanitised version of the author name.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:296 +msgid "%s (Category slug. Nested sub-categories appear as nested directories in the URL.)" +msgstr "%s (Category slug. Nested sub-categories appear as nested directories in the URL.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:294 +msgid "%s (The sanitized post title (slug).)" +msgstr "%s (The sanitised post title (slug).)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:292 +msgid "%s (The unique ID of the post, for example 423.)" +msgstr "%s (The unique ID of the post, for example 423.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:290 +msgid "%s (Second of the minute, for example 33.)" +msgstr "%s (Second of the minute, for example 33.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:288 +msgid "%s (Minute of the hour, for example 43.)" +msgstr "%s (Minute of the hour, for example 43.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:286 +msgid "%s (Hour of the day, for example 15.)" +msgstr "%s (Hour of the day, for example 15.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:284 +msgid "%s (Day of the month, for example 28.)" +msgstr "%s (Day of the month, for example 28.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:282 +msgid "%s (Month of the year, for example 05.)" +msgstr "%s (Month of the year, for example 05.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:280 +msgid "%s (The year of the post, four digits, for example 2004.)" +msgstr "%s (The year of the post, four digits, for example 2004.)" + +#: wp-admin/includes/theme-install.php:264 +msgid "Theme Installation" +msgstr "Theme Installation" + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1881 +msgid "%s is currently editing this post." +msgstr "%s is currently editing this post." + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1878 +msgid "%s is currently editing this post. Do you want to take over?" +msgstr "%s is currently editing this post. Do you want to take over?" + +#: wp-admin/includes/plugin.php:505 +msgid "Custom installation script." +msgstr "Custom installation script." + +#: wp-admin/includes/plugin-install.php:689 +msgid "Active Installations:" +msgstr "Active Installations:" + +#: wp-admin/includes/plugin-install.php:604 wp-admin/update.php:128 +msgid "Plugin Installation" +msgstr "Plugin Installation" + +#: wp-admin/includes/ms.php:1159 +msgid "Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database." +msgstr "Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are greyed out and say Serialised Data. You cannot modify these values due to the way the setting is stored in the database." + +#. translators: %s: URL to Network Themes screen. +#: wp-admin/includes/ms.php:1156 +msgid "Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen." +msgstr "Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen." + +#: wp-admin/includes/ms.php:1153 +msgid "Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network." +msgstr "Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network." + +#: wp-admin/includes/ms.php:1152 +msgid "Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable." +msgstr "Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable." + +#: wp-admin/includes/ms.php:1151 +msgid "The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable." +msgstr "The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable." + +#: wp-admin/includes/file.php:520 +msgid "Unable to write to file." +msgstr "Unable to write to file." + +#. translators: 1: Line number, 2: File path. +#: wp-admin/includes/file.php:316 +msgid "Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again." +msgstr "Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again." + +#. translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), +#. then use that. Otherwise, leave untranslated. +#: wp-admin/includes/dashboard.php:1336 +msgctxt "Events and News dashboard widget" +msgid "https://wordpress.org/news/" +msgstr "https://en-gb.wordpress.org/news/" + +#: wp-admin/includes/dashboard.php:87 wp-admin/includes/dashboard.php:659 +msgid "Your Recent Drafts" +msgstr "Your Recent Drafts" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-users-list-table.php:589 +#: wp-admin/includes/class-wp-ms-users-list-table.php:316 +msgctxt "name" +msgid "Unknown" +msgstr "Unknown" + +#. translators: %s: Author's display name. +#: wp-admin/includes/class-wp-users-list-table.php:497 +msgid "View posts by %s" +msgstr "View posts by %s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-terms-list-table.php:579 +msgid "No description" +msgstr "No description" + +#. translators: %s: Number of installations. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:723 +msgid "%s Active Installations" +msgstr "%s Active Installations" + +#: wp-admin/includes/class-theme-upgrader.php:81 +msgid "Theme installation failed." +msgstr "Theme installation failed." + +#: wp-admin/includes/class-plugin-upgrader.php:83 +msgid "Plugin installation failed." +msgstr "Plugin installation failed." + +#: wp-admin/includes/class-plugin-installer-skin.php:116 +msgid "Activate Plugin & Go to Press This" +msgstr "Activate Plugin and Go to Press This" + +#: wp-admin/customize.php:71 +msgid "Your scheduled changes just published" +msgstr "Your scheduled changes just published" + +#: wp-admin/includes/class-theme-installer-skin.php:147 +#: wp-admin/includes/class-theme-upgrader-skin.php:113 +#: wp-admin/includes/class-wp-themes-list-table.php:218 +#: wp-admin/js/updates.js:1815 +msgctxt "theme" +msgid "Activate" +msgstr "Activate" + +#: wp-admin/options-discussion.php:60 +msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" +msgstr "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:852 +#: wp-admin/includes/plugin-install.php:1010 wp-admin/js/updates.js:972 +msgctxt "plugin" +msgid "Network Activate %s" +msgstr "Network Activate %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:958 +#: wp-admin/includes/plugin-install.php:997 wp-admin/js/updates.js:983 +msgctxt "plugin" +msgid "Activate %s" +msgstr "Activate %s" + +#: wp-admin/includes/class-wp-media-list-table.php:261 +msgid "No media files found." +msgstr "No media files found." + +#: wp-admin/import.php:139 wp-admin/import.php:188 wp-admin/js/updates.js:1261 +msgid "Run Importer" +msgstr "Run Importer" + +#. translators: %s: Importer name. +#: wp-admin/import.php:138 wp-admin/import.php:187 wp-admin/js/updates.js:1257 +msgid "Run %s" +msgstr "Run %s" + +#: wp-admin/includes/class-wp-debug-data.php:225 +msgctxt "comment status" +msgid "Open" +msgstr "Open" + +#: wp-admin/includes/image-edit.php:66 +msgid "Image Rotation" +msgstr "Image Rotation" + +#. translators: %s: Meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1507 +msgid "There are no events scheduled near you at the moment. Would you like to organize a WordPress event?" +msgstr "There are no events scheduled near you at the moment. Would you like to organise a WordPress event?" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:45 +msgid "Edit User %s" +msgstr "Edit User %s" + +#. translators: Hidden accessibility text. %s: Widget title. +#: wp-admin/includes/widgets.php:251 +msgid "Edit widget: %s" +msgstr "Edit widget: %s" + +#: wp-admin/includes/dashboard.php:1499 wp-admin/includes/dashboard.php:1508 +msgid "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" +msgstr "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" + +#. translators: 1: The city the user searched for, 2: Meetup organization +#. documentation URL. +#: wp-admin/includes/dashboard.php:1497 +msgid "There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?" +msgstr "There are no events scheduled near %1$s at the moment. Would you like to organise a WordPress event?" + +#. translators: %s: The name of a city. +#: wp-admin/includes/dashboard.php:1426 +msgid "Attend an upcoming event near %s." +msgstr "Attend an upcoming event near %s." + +#: wp-admin/includes/dashboard.php:1396 +msgid "Cincinnati" +msgstr "London" + +#: wp-admin/includes/dashboard.php:1384 +msgid "City:" +msgstr "City:" + +#: wp-admin/includes/dashboard.php:1324 +msgid "WordCamps" +msgstr "WordCamps" + +#: wp-admin/includes/dashboard.php:1312 +msgid "Meetups" +msgstr "Meetups" + +#: wp-admin/includes/dashboard.php:1354 wp-admin/js/dashboard.js:591 +msgid "An error occurred. Please try again." +msgstr "An error occurred. Please try again." + +#: wp-admin/includes/dashboard.php:92 +msgid "WordPress Events and News" +msgstr "WordPress Events and News" + +#. translators: Date format for upcoming events on the dashboard. Include the +#. day of the week. See https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:401 +#: wp-admin/includes/class-wp-community-events.php:406 +#: wp-admin/js/dashboard.js:780 +msgid "l, M j, Y" +msgstr "l j F Y" + +#: wp-admin/includes/class-wp-community-events.php:125 +msgid "Unknown API error." +msgstr "Unknown API error." + +#. translators: %d: Numeric HTTP status code, e.g. 400, 403, 500, 504, etc. +#: wp-admin/includes/class-wp-community-events.php:120 +msgid "Invalid API response code (%d)." +msgstr "Invalid API response code (%d)." + +#: wp-admin/users.php:193 wp-admin/users.php:287 +msgid "Sorry, you are not allowed to delete users." +msgstr "Sorry, you are not allowed to delete users." + +#: wp-admin/user-new.php:23 wp-admin/user-new.php:195 +msgid "Sorry, you are not allowed to create users." +msgstr "Sorry, you are not allowed to create users." + +#: wp-admin/customize.php:272 +msgctxt "short (~12 characters) label for hide controls button" +msgid "Hide Controls" +msgstr "Hide Controls" + +#: wp-admin/theme-install.php:71 +msgid "Expand Sidebar" +msgstr "Expand Sidebar" + +#: wp-admin/nav-menus.php:1200 +msgid "Display location" +msgstr "Display location" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:537 +msgid "ID #%1$s: %2$s Sorry, you are not allowed to remove this user." +msgstr "ID #%1$s: %2$s Sorry, you are not allowed to remove this user." + +#: wp-admin/user-edit.php:62 +msgid "You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see." +msgstr "You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see." + +#: wp-admin/theme-install.php:271 +msgid "Edit Filters" +msgstr "Edit Filters" + +#: wp-admin/theme-install.php:244 wp-admin/theme-install.php:266 +msgid "Clear current filters" +msgstr "Clear current filters" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:73 +msgid "Select one or more Theme features to filter by" +msgstr "Select one or more Theme features to filter by" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/theme.php:885 wp-admin/theme-install.php:526 +msgid "(%s ratings)" +msgstr "(%s ratings)" + +#: wp-admin/includes/template.php:2446 +msgid "Current Background Image" +msgstr "Current Background Image" + +#: wp-admin/includes/template.php:2426 +msgid "Current Header Image" +msgstr "Current Header Image" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:147 +msgid "Set status" +msgstr "Set status" + +#. translators: Hidden accessibility text. %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1057 +msgid "“%s” is locked" +msgstr "“%s” is locked" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:718 +#: wp-admin/includes/plugin-install.php:699 +msgctxt "Active plugin installations" +msgid "Less Than 10" +msgstr "Less Than 10" + +#: wp-admin/includes/ajax-actions.php:2595 +msgid "Sorry, you are not allowed to attach files to this post." +msgstr "Sorry, you are not allowed to attach files to this post." + +#: wp-admin/freedoms.php:96 wp-admin/includes/plugin-install.php:405 +#: wp-admin/includes/plugin-install.php:706 wp-admin/plugin-install.php:101 +#: wp-admin/plugins.php:570 +msgid "https://wordpress.org/plugins/" +msgstr "https://en-gb.wordpress.org/plugins/" + +#: wp-admin/customize.php:252 +msgid "The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes." +msgstr "The Customiser allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customiser is intended for use with non-block themes." + +#: wp-admin/customize.php:72 wp-admin/customize.php:81 +msgid "Customize New Changes" +msgstr "Customise New Changes" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-custom-background.php:485 +#: wp-admin/includes/class-custom-background.php:489 +msgctxt "Background Scroll" +msgid "Scroll" +msgstr "Scroll" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-custom-background.php:472 +#: wp-admin/includes/class-custom-background.php:476 +msgctxt "Background Repeat" +msgid "Repeat" +msgstr "Repeat" + +#: wp-admin/plugin-install.php:103 +msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." +msgstr "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/plugin-install.php:100 +msgid "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses." +msgstr "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the licence WordPress uses." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:324 +msgid "Search plugins by:" +msgstr "Search plugins by:" + +#: wp-admin/includes/import.php:224 +msgid "Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file." +msgstr "Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file." + +#: wp-admin/includes/import.php:218 +msgid "Import posts & media from Tumblr using their API." +msgstr "Import posts & media from Tumblr using their API." + +#: wp-admin/includes/import.php:212 +msgid "Import posts from an RSS feed." +msgstr "Import posts from an RSS feed." + +#: wp-admin/includes/import.php:206 +msgid "Import posts and comments from a Movable Type or TypePad blog." +msgstr "Import posts and comments from a Movable Type or TypePad blog." + +#: wp-admin/includes/import.php:200 +msgid "Import posts from LiveJournal using their API." +msgstr "Import posts from LiveJournal using their API." + +#: wp-admin/includes/import.php:194 +msgid "Convert existing categories to tags or tags to categories, selectively." +msgstr "Convert existing categories to tags or tags to categories, selectively." + +#: wp-admin/includes/import.php:188 +msgid "Import posts, comments, and users from a Blogger blog." +msgstr "Import posts, comments, and users from a Blogger blog." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:916 +msgctxt "plugin" +msgid "Deactivate %s" +msgstr "Deactivate %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:882 +#: wp-admin/includes/class-wp-plugins-list-table.php:988 +msgctxt "plugin" +msgid "Delete %s" +msgstr "Delete %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:827 +msgctxt "plugin" +msgid "Network Deactivate %s" +msgstr "Network Deactivate %s" + +#: wp-admin/user-new.php:285 +msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." +msgstr "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." + +#: wp-admin/user-new.php:283 +msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." +msgstr "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." + +#. translators: %s: Plugin name. +#: wp-admin/includes/update.php:995 +msgctxt "plugin" +msgid "%s was successfully deleted." +msgstr "%s was successfully deleted." + +#: wp-admin/plugins.php:566 +msgid "The search for installed plugins will search for terms in their name, description, or author." +msgstr "The search for installed plugins will search for terms in their name, description, or author." + +#: wp-admin/includes/theme.php:337 +msgid "Custom Logo" +msgstr "Custom Logo" + +#: wp-admin/users.php:470 wp-admin/users.php:502 +#: wp-admin/network/site-users.php:120 +msgid "Sorry, you are not allowed to remove users." +msgstr "Sorry, you are not allowed to remove users." + +#: wp-admin/user-new.php:16 wp-admin/user-new.php:57 +#: wp-admin/network/user-new.php:14 +msgid "Sorry, you are not allowed to add users to this network." +msgstr "Sorry, you are not allowed to add users to this network." + +#: wp-admin/customize.php:35 +msgid "Sorry, you are not allowed to edit this changeset." +msgstr "Sorry, you are not allowed to edit this changeset." + +#: wp-admin/includes/ajax-actions.php:4302 wp-admin/update.php:211 +#: wp-admin/update.php:234 +msgid "Sorry, you are not allowed to update themes for this site." +msgstr "Sorry, you are not allowed to update themes for this site." + +#: wp-admin/update-core.php:23 wp-admin/update-core.php:1155 +#: wp-admin/update-core.php:1191 wp-admin/update-core.php:1232 +#: wp-admin/update-core.php:1273 wp-admin/update-core.php:1302 +msgid "Sorry, you are not allowed to update this site." +msgstr "Sorry, you are not allowed to update this site." + +#: wp-admin/themes.php:448 wp-admin/themes.php:846 +msgid "New version available. " +msgstr "New version available. " + +#: wp-admin/theme-install.php:187 +msgid "The Theme Installer screen requires JavaScript." +msgstr "The Theme Installer screen requires JavaScript." + +#: wp-admin/includes/file.php:439 wp-admin/theme-editor.php:18 +msgid "Sorry, you are not allowed to edit templates for this site." +msgstr "Sorry, you are not allowed to edit templates for this site." + +#: wp-admin/setup-config.php:343 +msgid "Error: \"Table Prefix\" is invalid." +msgstr "Error: \"Table Prefix\" is invalid." + +#: wp-admin/plugins.php:228 +msgid "Sorry, you are not allowed to deactivate plugins for this site." +msgstr "Sorry, you are not allowed to deactivate plugins for this site." + +#: wp-admin/plugins.php:94 +msgid "Sorry, you are not allowed to activate plugins for this site." +msgstr "Sorry, you are not allowed to activate plugins for this site." + +#: wp-admin/includes/file.php:406 wp-admin/plugin-editor.php:18 +msgid "Sorry, you are not allowed to edit plugins for this site." +msgstr "Sorry, you are not allowed to edit plugins for this site." + +#: wp-admin/options.php:260 +msgid "Sorry, you are not allowed to modify unregistered settings for this site." +msgstr "Sorry, you are not allowed to modify unregistered settings for this site." + +#: wp-admin/options-discussion.php:12 wp-admin/options-general.php:16 +#: wp-admin/options-media.php:13 wp-admin/options-permalink.php:13 +#: wp-admin/options-reading.php:13 wp-admin/options-writing.php:13 +#: wp-admin/options.php:52 wp-admin/network.php:19 +msgid "Sorry, you are not allowed to manage options for this site." +msgstr "Sorry, you are not allowed to manage options for this site." + +#: wp-admin/nav-menus.php:796 wp-admin/widgets-form.php:394 +msgid "Manage with Live Preview" +msgstr "Manage with Live Preview" + +#: wp-admin/ms-delete-site.php:17 +msgid "Sorry, you are not allowed to delete this site." +msgstr "Sorry, you are not allowed to delete this site." + +#: wp-admin/link-add.php:13 +msgid "Sorry, you are not allowed to add links to this site." +msgstr "Sorry, you are not allowed to add links to this site." + +#. translators: %s: Gravatar URL. +#: wp-admin/includes/upgrade.php:285 +msgid "" +"Hi, this is a comment.\n" +"To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" +"Commenter avatars come from Gravatar." +msgstr "" +"Hi, this is a comment.\n" +"To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" +"Commenter avatars come from Gravatar." + +#. translators: %s: Theme name. +#: wp-admin/includes/update.php:1003 +msgctxt "theme" +msgid "%s was successfully deleted." +msgstr "%s was successfully deleted." + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version. +#: wp-admin/includes/update.php:337 +msgid "WordPress %2$s is available! Please notify the site administrator." +msgstr "WordPress %2$s is available! Please notify the site administrator." + +#: wp-admin/includes/update.php:332 +msgid "Please update WordPress now" +msgstr "Please update WordPress now" + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version, 3: +#. URL to network admin, 4: Accessibility text. +#: wp-admin/includes/update.php:328 +msgid "WordPress %2$s is available! Please update now." +msgstr "WordPress %2$s is available! Please update now." + +#: wp-admin/includes/theme.php:327 +msgid "Portfolio" +msgstr "Portfolio" + +#: wp-admin/includes/theme.php:326 +msgid "Photography" +msgstr "Photography" + +#: wp-admin/includes/dashboard.php:1337 wp-admin/includes/theme.php:325 +msgid "News" +msgstr "News" + +#: wp-admin/includes/theme.php:323 +msgid "Food & Drink" +msgstr "Food & Drink" + +#: wp-admin/includes/theme.php:322 +msgid "Entertainment" +msgstr "Entertainment" + +#: wp-admin/includes/theme.php:321 +msgid "Education" +msgstr "Education" + +#: wp-admin/includes/theme.php:320 +msgid "E-Commerce" +msgstr "E-Commerce" + +#: wp-admin/includes/theme.php:319 +msgid "Blog" +msgstr "Blog" + +#: wp-admin/includes/theme.php:341 +msgid "Footer Widgets" +msgstr "Footer Widgets" + +#: wp-admin/includes/theme.php:352 +msgid "Grid Layout" +msgstr "Grid Layout" + +#: wp-admin/includes/template.php:2708 +msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." +msgstr "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:2037 +msgid "Close media attachment panel" +msgstr "Close media attachment panel" + +#: wp-admin/includes/ms.php:1068 +msgid "Info" +msgstr "Info" + +#: wp-admin/includes/meta-boxes.php:1083 +msgid "Need help? Use the Help tab above the screen title." +msgstr "Need help? Use the Help tab above the screen title." + +#: wp-admin/includes/menu.php:380 wp-admin/my-sites.php:17 +#: wp-admin/network/index.php:17 wp-admin/network/settings.php:17 +#: wp-admin/network/site-info.php:32 wp-admin/network/site-settings.php:32 +#: wp-admin/network/site-themes.php:57 wp-admin/network/site-users.php:50 +#: wp-admin/network/sites.php:14 wp-admin/network/sites.php:151 +#: wp-admin/network/upgrade.php:39 wp-admin/network/user-new.php:37 +#: wp-admin/network/users.php:14 wp-admin/network/users.php:24 +#: wp-admin/network/users.php:51 wp-admin/network/users.php:65 +#: wp-admin/network/users.php:160 +msgid "Sorry, you are not allowed to access this page." +msgstr "Sorry, you are not allowed to access this page." + +#: wp-admin/includes/file.php:52 +msgid "Embed Footer Template" +msgstr "Embed Footer Template" + +#: wp-admin/includes/file.php:51 +msgid "Embed Header Template" +msgstr "Embed Header Template" + +#: wp-admin/includes/file.php:50 +msgid "Embed Content Template" +msgstr "Embed Content Template" + +#: wp-admin/includes/file.php:49 +msgid "Embed 404 Template" +msgstr "Embed 404 Template" + +#: wp-admin/includes/file.php:48 +msgid "Embed Template" +msgstr "Embed Template" + +#: wp-admin/includes/plugin-install.php:991 wp-admin/js/updates.js:1155 +#: wp-admin/js/updates.js:1163 +msgctxt "plugin" +msgid "Active" +msgstr "Active" + +#: wp-admin/includes/class-wp-media-list-table.php:597 +msgid "(Private post)" +msgstr "(Private post)" + +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:379 +#: wp-admin/link-manager.php:12 wp-admin/link-manager.php:92 +msgid "Sorry, you are not allowed to edit the links for this site." +msgstr "Sorry, you are not allowed to edit the links for this site." + +#: wp-admin/options-privacy.php:13 wp-admin/privacy-policy-guide.php:13 +msgid "Sorry, you are not allowed to manage privacy options on this site." +msgstr "Sorry, you are not allowed to manage privacy options on this site." + +#: wp-admin/includes/ajax-actions.php:4777 +msgid "Plugin could not be deleted." +msgstr "Plugin could not be deleted." + +#: wp-admin/includes/ajax-actions.php:4631 wp-admin/update.php:29 +#: wp-admin/update.php:57 wp-admin/update.php:80 +msgid "Sorry, you are not allowed to update plugins for this site." +msgstr "Sorry, you are not allowed to update plugins for this site." + +#: wp-admin/includes/ajax-actions.php:4577 +msgid "Sorry, you are not allowed to activate plugins on this site." +msgstr "Sorry, you are not allowed to activate plugins on this site." + +#: wp-admin/includes/ajax-actions.php:4433 +msgid "Theme could not be deleted." +msgstr "Theme could not be deleted." + +#: wp-admin/includes/ajax-actions.php:4395 +msgid "Sorry, you are not allowed to delete themes on this site." +msgstr "Sorry, you are not allowed to delete themes on this site." + +#: wp-admin/includes/ajax-actions.php:4175 wp-admin/theme-install.php:16 +#: wp-admin/update.php:262 wp-admin/update.php:304 wp-admin/update.php:342 +msgid "Sorry, you are not allowed to install themes on this site." +msgstr "Sorry, you are not allowed to install themes on this site." + +#: wp-admin/includes/ajax-actions.php:4162 +#: wp-admin/includes/ajax-actions.php:4288 +#: wp-admin/includes/ajax-actions.php:4383 +msgid "No theme specified." +msgstr "No theme specified." + +#: wp-admin/admin.php:306 wp-admin/import.php:15 +msgid "Sorry, you are not allowed to import content into this site." +msgstr "Sorry, you are not allowed to import content into this site." + +#: wp-admin/export.php:13 +msgid "Sorry, you are not allowed to export the content of this site." +msgstr "Sorry, you are not allowed to export the content of this site." + +#: wp-admin/edit.php:265 +msgid "You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts." +msgstr "You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts." + +#. translators: Hidden accessibility text. +#: wp-admin/customize.php:217 +msgid "Close the Customizer and go back to the previous page" +msgstr "Close the Customiser and go back to the previous page" + +#: wp-admin/includes/class-custom-image-header.php:1122 +msgid "Sorry, you are not allowed to customize headers." +msgstr "Sorry, you are not allowed to customise headers." + +#: wp-admin/credits.php:135 +msgid "Release Deputy" +msgstr "Release Deputy" + +#: wp-admin/credits.php:134 +msgid "Release Design Lead" +msgstr "Release Design Lead" + +#: wp-admin/about.php:133 +msgid "Editor improvements" +msgstr "Editor improvements" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:832 +msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." +msgstr "Custom fields can be used to add extra metadata to a post that you can use in your theme." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:795 +msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary." +msgstr "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:757 +msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." +msgstr "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." + +#: wp-admin/edit-form-advanced.php:288 +msgid "The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." + +#: wp-admin/edit-form-advanced.php:287 +msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." +msgstr "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." + +#: wp-admin/upload.php:117 +msgid "Error saving media file." +msgstr "Error saving media file." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:106 +msgid "%s media file restored from the Trash." +msgid_plural "%s media files restored from the Trash." +msgstr[0] "%s media file restored from the Bin." +msgstr[1] "%s media files restored from the Bin." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:83 +msgid "%s media file moved to the Trash." +msgid_plural "%s media files moved to the Trash." +msgstr[0] "%s media file moved to the Bin." +msgstr[1] "%s media files moved to the Bin." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:66 +msgid "%s media file permanently deleted." +msgid_plural "%s media files permanently deleted." +msgstr[0] "%s media file permanently deleted." +msgstr[1] "%s media files permanently deleted." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:49 +msgid "%s media file detached." +msgid_plural "%s media files detached." +msgstr[0] "%s media file detached." +msgstr[1] "%s media files detached." + +#: wp-admin/upload.php:45 +msgid "Media file detached." +msgstr "Media file detached." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:32 +msgid "%s media file attached." +msgid_plural "%s media files attached." +msgstr[0] "%s media file attached." +msgstr[1] "%s media files attached." + +#: wp-admin/upload.php:28 +msgid "Media file attached." +msgstr "Media file attached." + +#: wp-admin/edit-form-advanced.php:203 wp-admin/upload.php:18 +#: wp-admin/upload.php:115 +msgid "Media file updated." +msgstr "Media file updated." + +#. translators: 1: Theme name, 2: Version number. +#. translators: 1: Plugin name, 2: Version number. +#: wp-admin/includes/theme.php:235 wp-admin/includes/theme.php:248 +#: wp-admin/includes/theme.php:261 wp-admin/includes/update.php:532 +#: wp-admin/includes/update.php:545 wp-admin/includes/update.php:559 +#: wp-admin/includes/update.php:578 wp-admin/includes/update.php:725 +#: wp-admin/includes/update.php:738 wp-admin/includes/update.php:751 +#: wp-admin/update-core.php:575 +msgid "View %1$s version %2$s details" +msgstr "View %1$s version %2$s details" + +#. translators: 1: Relative date, 2: Time. +#: wp-admin/includes/dashboard.php:1036 +msgctxt "dashboard" +msgid "%1$s, %2$s" +msgstr "%1$s, %2$s" + +#: wp-admin/edit-form-advanced.php:369 +msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." +msgstr "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." + +#. translators: %s: New email. +#: wp-admin/user-edit.php:563 +msgid "There is a pending change of your email to %s." +msgstr "There is a pending change of your email to %s." + +#: wp-admin/user-edit.php:242 +msgid "Error while saving the new email address. Please try again." +msgstr "Error while saving the new email address. Please try again." + +#: wp-admin/upload.php:371 +msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." +msgstr "You can narrow the list by file type/status or by date using the dropdown menus above the media table." + +#: wp-admin/themes.php:676 wp-admin/network/themes.php:470 +msgid "The following themes are installed but incomplete." +msgstr "The following themes are installed but incomplete." + +#: wp-admin/themes.php:282 +msgid "New theme activated." +msgstr "New theme activated." + +#: wp-admin/themes.php:273 +msgid "Settings saved and theme activated." +msgstr "Settings saved and theme activated." + +#: wp-admin/freedoms.php:97 wp-admin/theme-install.php:110 +#: wp-admin/themes.php:157 +msgid "https://wordpress.org/themes/" +msgstr "https://en-gb.wordpress.org/themes/" + +#: wp-admin/users.php:201 +msgid "Sorry, you are not allowed to delete that user." +msgstr "Sorry, you are not allowed to delete that user." + +#: wp-admin/setup-config.php:248 +msgid "Your database password." +msgstr "Your database password." + +#: wp-admin/setup-config.php:236 +msgid "Your database username." +msgstr "Your database username." + +#: wp-admin/setup-config.php:231 +msgid "The name of the database you want to use with WordPress." +msgstr "The name of the database you want to use with WordPress." + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:383 +msgctxt "plugin" +msgid "%1$s by %2$s" +msgstr "%1$s by %2$s" + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:379 +msgid "%1$s by %2$s (will also delete its data)" +msgstr "%1$s by %2$s (will also delete its data)" + +#. translators: %s: New admin email. +#: wp-admin/options-general.php:273 +msgid "There is a pending change of the admin email to %s." +msgstr "There is a pending change of the admin email to %s." + +#: wp-admin/install.php:454 +msgid "WordPress has been installed. Thank you, and enjoy!" +msgstr "WordPress has been installed. Thank you, and enjoy!" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/install.php:344 +msgid "The constant %s cannot be defined when installing WordPress." +msgstr "The constant %s cannot be defined when installing WordPress." + +#. translators: %s: wp-config.php +#: wp-admin/install.php:331 +msgid "Your %s file has an empty database table prefix, which is not supported." +msgstr "Your %s file has an empty database table prefix, which is not supported." + +#: wp-admin/index.php:187 +msgid "Dismiss the welcome panel" +msgstr "Dismiss the welcome panel" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:203 +msgid "Theme zip file" +msgstr "Theme zip file" + +#: wp-admin/includes/template.php:2033 +msgid "Attach to existing content" +msgstr "Attach to existing content" + +#: wp-admin/includes/post.php:1682 +msgid "Click the image to edit or update" +msgstr "Click the image to edit or update" + +#. translators: 1: Number of stars (used to determine singular/plural), 2: +#. Number of reviews. +#: wp-admin/includes/plugin-install.php:747 +msgid "Reviews with %1$d star: %2$s. Opens in a new tab." +msgid_plural "Reviews with %1$d stars: %2$s. Opens in a new tab." +msgstr[0] "Reviews with %1$d star: %2$s. Opens in a new tab." +msgstr[1] "Reviews with %1$d stars: %2$s. Opens in a new tab." + +#: wp-admin/includes/plugin-install.php:739 +msgid "Read all reviews on WordPress.org or write your own!" +msgstr "Read all reviews on WordPress.org or write your own!" + +#: wp-admin/includes/plugin-install.php:738 +msgid "Reviews" +msgstr "Reviews" + +#. translators: %s: URL to "Features as Plugins" page. +#: wp-admin/includes/plugin-install.php:397 +msgid "You are using a development version of WordPress. These feature plugins are also under development. Learn more." +msgstr "You are using a development version of WordPress. These feature plugins are also under development. Learn more." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:287 +msgid "Thumbnail Settings Help" +msgstr "Thumbnail Settings Help" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:243 +msgid "selection height" +msgstr "selection height" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:235 +msgid "selection width" +msgstr "selection width" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:223 +msgid "crop ratio height" +msgstr "crop ratio height" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:215 +msgid "crop ratio width" +msgstr "crop ratio width" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:197 +msgid "Image Crop Help" +msgstr "Image Crop Help" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:154 wp-admin/includes/image-edit.php:159 +msgid "scale height" +msgstr "scale height" + +#: wp-admin/includes/image-edit.php:149 +msgid "New dimensions:" +msgstr "New dimensions:" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:130 +msgid "Scale Image Help" +msgstr "Scale Image Help" + +#: wp-admin/includes/file.php:38 +msgid "Single Page" +msgstr "Single Page" + +#: wp-admin/includes/file.php:36 +msgid "Singular Template" +msgstr "Singular Template" + +#: wp-admin/includes/file.php:34 +msgid "Date Template" +msgstr "Date Template" + +#: wp-admin/includes/file.php:29 +msgid "Taxonomy Template" +msgstr "Taxonomy Template" + +#: wp-admin/includes/dashboard.php:1763 +msgid "Dismiss the browser warning panel" +msgstr "Dismiss the browser warning panel" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:1115 +msgid "View more comments" +msgstr "View more comments" + +#. translators: 1: Type of comment, 2: Post link, 3: Notification if the +#. comment is pending. +#: wp-admin/includes/dashboard.php:892 +msgctxt "dashboard" +msgid "%1$s on %2$s %3$s" +msgstr "%1$s on %2$s %3$s" + +#: wp-admin/includes/dashboard.php:801 +msgid "View this comment" +msgstr "View this comment" + +#: wp-admin/includes/class-core-upgrader.php:34 +msgid "Another update is currently in progress." +msgstr "Another update is currently in progress." + +#: wp-admin/includes/class-plugin-upgrader-skin.php:85 +#: wp-admin/update-core.php:1215 wp-admin/update-core.php:1256 +msgid "Update progress" +msgstr "Update progress" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:530 +msgid "View “%s” archive" +msgstr "View “%s” archive" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:520 +msgid "Delete “%s”" +msgstr "Delete “%s”" + +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-posts-list-table.php:1509 +#: wp-admin/includes/class-wp-terms-list-table.php:509 +msgid "Quick edit “%s” inline" +msgstr "Quick edit “%s” inline" + +#: wp-admin/includes/class-wp-plugins-list-table.php:424 +msgid "Search for plugins in the WordPress Plugin Directory." +msgstr "Search for plugins in the WordPress Plugin Directory." + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:788 +#: wp-admin/includes/class-wp-posts-list-table.php:1521 +msgid "Restore “%s” from the Trash" +msgstr "Restore “%s” from the Bin" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:809 +#: wp-admin/includes/class-wp-posts-list-table.php:1539 +msgid "Delete “%s” permanently" +msgstr "Delete “%s” permanently" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:796 +#: wp-admin/includes/class-wp-posts-list-table.php:1529 +msgid "Move “%s” to the Trash" +msgstr "Move “%s” to the Bin" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:627 +#: wp-admin/includes/class-wp-media-list-table.php:857 +msgid "Attach “%s” to existing content" +msgstr "Attach “%s” to existing content" + +#. translators: %s: Title of the post the attachment is attached to. +#: wp-admin/includes/class-wp-media-list-table.php:613 +msgid "Detach from “%s”" +msgstr "Detach from “%s”" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-media-list-table.php:465 +#: wp-admin/includes/class-wp-posts-list-table.php:1145 +#: wp-admin/includes/class-wp-terms-list-table.php:419 +msgid "“%s” (Edit)" +msgstr "“%s” (Edit)" + +#: wp-admin/includes/class-wp-media-list-table.php:169 +msgctxt "attachment filter" +msgid "Trash" +msgstr "Bin" + +#: wp-admin/includes/class-wp-comments-list-table.php:839 +msgid "Quick edit this comment inline" +msgstr "Quick edit this comment inline" + +#: wp-admin/includes/class-wp-comments-list-table.php:827 +#: wp-admin/includes/dashboard.php:759 +msgid "Edit this comment" +msgstr "Edit this comment" + +#: wp-admin/includes/class-wp-comments-list-table.php:790 +msgid "Restore this comment from the spam" +msgstr "Restore this comment from the spam" + +#. translators: 1: User login, 2: User email address. +#: wp-admin/includes/ajax-actions.php:355 +msgctxt "user autocomplete result" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. translators: %s: Importer slug. +#: wp-admin/import.php:67 +msgid "The %s importer is invalid or is not installed." +msgstr "The %s importer is invalid or is not installed." + +#: wp-admin/edit-form-comment.php:137 +msgctxt "comment status" +msgid "Pending" +msgstr "Pending" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:650 +msgid "Suggested height is %s." +msgstr "Suggested height is %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:638 +msgid "Suggested width is %s." +msgstr "Suggested width is %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:622 +msgid "Images should be at least %s tall." +msgstr "Images should be at least %s tall." + +#. translators: %d: Custom header width. +#. translators: %d: Custom header height. +#: wp-admin/includes/class-custom-image-header.php:613 +#: wp-admin/includes/class-custom-image-header.php:625 +#: wp-admin/includes/class-custom-image-header.php:641 +#: wp-admin/includes/class-custom-image-header.php:653 +msgid "%d pixels" +msgstr "%d pixels" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:610 +msgid "Images should be at least %s wide." +msgstr "Images should be at least %s wide." + +#: wp-admin/user-new.php:633 +msgid "Send the new user an email about their account" +msgstr "Send the new user an email about their account" + +#: wp-admin/user-new.php:630 +msgid "Send User Notification" +msgstr "Send User Notification" + +#. translators: %s: Menu name. +#: wp-admin/nav-menus.php:1220 +msgctxt "menu location" +msgid "(Currently set to: %s)" +msgstr "(Currently set to: %s)" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:345 +msgid "Version %s addressed one security issue." +msgstr "Version %s addressed one security issue." + +#. translators: The localized Gravatar URL. +#: wp-admin/includes/upgrade.php:291 wp-admin/user-edit.php:634 +msgid "https://gravatar.com/" +msgstr "https://gravatar.com/" + +#: wp-admin/user-edit.php:624 +msgid "Profile Picture" +msgstr "Profile Picture" + +#: wp-admin/about.php:342 +msgid "Maintenance and Security Releases" +msgstr "Maintenance and Security Releases" + +#: wp-admin/about.php:339 +msgid "Security Releases" +msgstr "Security Releases" + +#: wp-admin/about.php:336 +msgid "Maintenance Releases" +msgstr "Maintenance Releases" + +#: wp-admin/options-permalink.php:246 +msgid "Plain" +msgstr "Plain" + +#. translators: %s: Documentation URL. +#: wp-admin/options-permalink.php:226 +msgid "WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." +msgstr "WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." + +#: wp-admin/options-permalink.php:34 +msgid "Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure." +msgstr "Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:429 +msgid "You can create the %s file manually and paste the following text into it." +msgstr "You can create the %s file manually and paste the following text into it." + +#. translators: %s: localhost +#: wp-admin/setup-config.php:257 +msgid "You should be able to get this info from your web host, if %s does not work." +msgstr "You should be able to get this info from your web host, if %s does not work." + +#. translators: 1: wp-config-sample.php, 2: wp-config.php +#: wp-admin/setup-config.php:190 +msgid "If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s." +msgstr "If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s." + +#. translators: %s: wp-content/uploads +#: wp-admin/options-media.php:143 +msgid "Default is %s" +msgstr "Default is %s" + +#. translators: 1: .po, 2: .mo, 3: .l10n.php +#: wp-admin/includes/class-language-pack-upgrader.php:359 +msgid "The language pack is missing either the %1$s, %2$s, or %3$s files." +msgstr "The language pack is missing either the %1$s, %2$s, or %3$s files." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:610 +msgid "The %s stylesheet does not contain a valid theme header." +msgstr "The %s stylesheet does not contain a valid theme header." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:585 +msgid "The theme is missing the %s stylesheet." +msgstr "The theme is missing the %s stylesheet." + +#: wp-admin/theme-install.php:231 +msgid "If you have marked themes as favorites on WordPress.org, you can browse them here." +msgstr "If you have marked themes as favourites on WordPress.org, you can browse them here." + +#: wp-admin/theme-install.php:214 +msgctxt "themes" +msgid "Favorites" +msgstr "Favourites" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:91 +msgid "Database repair results" +msgstr "Database repair results" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:32 +msgid "Allow automatic database repair" +msgstr "Allow automatic database repair" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:506 +msgid "Successful database connection" +msgstr "Successful database connection" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:222 +msgid "Set up your database connection" +msgstr "Set up your database connection" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:167 +msgid "Before getting started" +msgstr "Before getting started" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:176 +msgid "WordPress database repair" +msgstr "WordPress database repair" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:81 +msgid "Check secret keys" +msgstr "Check secret keys" + +#. translators: %s: Nav menu title. +#: wp-admin/includes/nav-menu.php:1496 +msgid "%s has been updated." +msgstr "%s has been updated." + +#. translators: %s: Walker class name. +#: wp-admin/includes/nav-menu.php:1276 +msgid "The Walker class named %s does not exist." +msgstr "The Walker class named %s does not exist." + +#. translators: 1: Drop-in constant name, 2: wp-config.php +#: wp-admin/includes/class-wp-plugins-list-table.php:788 +msgid "Requires %1$s in %2$s file." +msgstr "Requires %1$s in %2$s file." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:448 +msgid "Standard time begins on: %s." +msgstr "Standard time begins on: %s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:446 +msgid "Daylight saving time begins on: %s." +msgstr "Daylight saving time begins on: %s." + +#. translators: %s: File name. +#: wp-admin/includes/media.php:1741 +msgid "You are about to delete %s." +msgstr "You are about to delete %s." + +#. translators: %s: mu-plugins directory name. +#: wp-admin/includes/class-wp-plugins-list-table.php:672 +msgid "Files in the %s directory are executed automatically." +msgstr "Files in the %s directory are executed automatically." + +#: wp-admin/widgets-form.php:500 +msgid "This will clear all items from the inactive widgets list. You will not be able to restore any customizations." +msgstr "This will clear all items from the inactive widgets list. You will not be able to restore any customisations." + +#: wp-admin/widgets-form.php:490 +msgid "Clear Inactive Widgets" +msgstr "Clear Inactive Widgets" + +#: wp-admin/users.php:159 wp-admin/network/site-users.php:159 +msgid "One of the selected users is not a member of this site." +msgstr "One of the selected users is not a member of this site." + +#: wp-admin/users.php:91 wp-admin/network/users.php:250 +msgid "Users list" +msgstr "Users list" + +#: wp-admin/users.php:90 wp-admin/network/users.php:249 +msgid "Users list navigation" +msgstr "Users list navigation" + +#: wp-admin/users.php:89 wp-admin/network/users.php:248 +msgid "Filter users list" +msgstr "Filter users list" + +#: wp-admin/upload.php:409 +msgid "Media items list" +msgstr "Media items list" + +#: wp-admin/upload.php:408 +msgid "Media items list navigation" +msgstr "Media items list navigation" + +#: wp-admin/upload.php:407 +msgid "Filter media items list" +msgstr "Filter media items list" + +#: wp-admin/themes.php:754 +msgid "Install Parent Theme" +msgstr "Install Parent Theme" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:278 wp-admin/network/themes.php:347 +msgid "Themes list" +msgstr "Themes list" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:201 wp-admin/network/themes.php:345 +msgid "Filter themes list" +msgstr "Filter themes list" + +#: wp-admin/plugins.php:744 +msgid "All selected plugins are up to date." +msgstr "All selected plugins are up to date." + +#: wp-admin/plugin-install.php:129 wp-admin/plugins.php:629 +msgid "Plugins list" +msgstr "Plugins list" + +#: wp-admin/plugin-install.php:128 wp-admin/plugins.php:628 +msgid "Plugins list navigation" +msgstr "Plugins list navigation" + +#: wp-admin/plugin-install.php:127 wp-admin/plugins.php:627 +msgid "Filter plugins list" +msgstr "Filter plugins list" + +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:238 +msgid "Browsing %s (inactive)" +msgstr "Browsing %s (inactive)" + +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:235 wp-admin/theme-editor.php:238 +msgid "Editing %s (inactive)" +msgstr "Editing %s (inactive)" + +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:230 +msgid "Browsing %s (active)" +msgstr "Browsing %s (active)" + +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:227 wp-admin/theme-editor.php:235 +msgid "Editing %s (active)" +msgstr "Editing %s (active)" + +#. translators: %s: Local time. +#: wp-admin/options-general.php:415 +msgid "Local time is %s." +msgstr "Local time is %s." + +#: wp-admin/link-manager.php:85 +msgid "Links list" +msgstr "Links list" + +#. translators: %s: WordPress version. +#: wp-admin/includes/update.php:284 +msgid "Get Version %s" +msgstr "Get Version %s" + +#. translators: %s: Hidden accessibility text. Meta box title. +#: wp-admin/includes/template.php:1427 +msgid "Toggle panel: %s" +msgstr "Toggle panel: %s" + +#: wp-admin/includes/post.php:1921 +msgid "Saving revision…" +msgstr "Saving revision…" + +#: wp-admin/includes/post.php:1608 +msgid "Edit permalink" +msgstr "Edit permalink" + +#. translators: 1: Site Wide Only: true, 2: Network: true +#: wp-admin/includes/plugin.php:99 +msgid "The %1$s plugin header is deprecated. Use %2$s instead." +msgstr "The %1$s plugin header is deprecated. Use %2$s instead." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1067 +#: wp-admin/includes/class-wp-site-health.php:1753 +msgid "Warning" +msgstr "Warning" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:1381 wp-admin/options.php:386 +#: wp-admin/includes/network.php:139 wp-admin/includes/network.php:203 +#: wp-admin/includes/network.php:211 wp-admin/includes/network.php:276 +#: wp-admin/includes/network.php:332 wp-admin/includes/network.php:345 +#: wp-admin/includes/network.php:453 wp-admin/includes/network.php:657 +#: wp-admin/includes/network.php:719 +msgid "Warning:" +msgstr "Warning:" + +#: wp-admin/includes/ms.php:993 +msgid "Once you hit “Confirm Deletion”, these users will be permanently removed." +msgstr "Once you hit “Confirm Deletion”, these users will be permanently removed." + +#: wp-admin/includes/ms.php:991 +msgid "Once you hit “Confirm Deletion”, the user will be permanently removed." +msgstr "Once you hit “Confirm Deletion”, the user will be permanently removed." + +#: wp-admin/includes/ms.php:976 +msgid "User has no sites or content and will be deleted." +msgstr "User has no sites or content and will be deleted." + +#. translators: %s: Link to user's site. +#: wp-admin/includes/ms.php:961 +msgid "Site: %s" +msgstr "Site: %s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/ms.php:939 +msgid "Select a user" +msgstr "Select a user" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:921 +msgid "What should be done with content owned by %s?" +msgstr "What should be done with content owned by %s?" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:902 +msgid "Warning! User cannot be deleted. The user %s is a network administrator." +msgstr "Warning! User cannot be deleted. The user %s is a network administrator." + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:892 +msgid "Warning! User %s cannot be deleted." +msgstr "Warning! User %s cannot be deleted." + +#: wp-admin/includes/ms.php:871 +msgid "You have chosen to delete the following users from all networks and sites." +msgstr "You have chosen to delete the following users from all networks and sites." + +#: wp-admin/includes/ms.php:869 +msgid "You have chosen to delete the user from all networks and sites." +msgstr "You have chosen to delete the user from all networks and sites." + +#: wp-admin/includes/media.php:1045 +msgid "Invalid image URL." +msgstr "Invalid image URL." + +#: wp-admin/includes/file.php:17 +msgid "Theme Header" +msgstr "Theme Header" + +#: wp-admin/includes/file.php:18 +msgid "Theme Footer" +msgstr "Theme Footer" + +#. translators: Date and time format for recent posts on the dashboard, from a +#. different calendar year, see https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/dashboard.php:1023 +msgid "M jS Y" +msgstr "j F Y" + +#. translators: 1: Comment author, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:863 +msgid "From %1$s %2$s" +msgstr "From %1$s %2$s" + +#: wp-admin/includes/dashboard.php:655 +msgid "View all drafts" +msgstr "View all drafts" + +#: wp-admin/includes/class-wp-users-list-table.php:670 +msgctxt "no user roles" +msgid "None" +msgstr "None" + +#: wp-admin/includes/class-wp-users-list-table.php:246 +msgid "No role" +msgstr "No role" + +#. translators: 1: Title of an update, 2: Error message. +#: wp-admin/includes/class-bulk-upgrader-skin.php:63 +msgid "An error occurred while updating %1$s: %2$s" +msgstr "An error occurred while updating %1$s: %2$s" + +#: wp-admin/includes/class-wp-screen.php:1331 +msgid "View mode" +msgstr "View mode" + +#. translators: %s: Number of columns on the page. +#: wp-admin/includes/class-wp-screen.php:1216 +msgid "%s column" +msgid_plural "%s columns" +msgstr[0] "%s column" +msgstr[1] "%s columns" + +#: wp-admin/includes/class-wp-screen.php:1005 +msgid "Additional settings" +msgstr "Additional settings" + +#: wp-admin/includes/class-wp-screen.php:765 +msgid "Items list" +msgstr "Items list" + +#: wp-admin/includes/class-wp-screen.php:764 +msgid "Items list navigation" +msgstr "Items list navigation" + +#: wp-admin/includes/class-wp-screen.php:763 +msgid "Filter items list" +msgstr "Filter items list" + +#: wp-admin/includes/class-wp-plugins-list-table.php:895 +msgid "Network Only" +msgstr "Network Only" + +#: wp-admin/includes/class-wp-plugins-list-table.php:891 +msgid "Network Active" +msgstr "Network Active" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:950 +msgid "No pending comments" +msgstr "No pending comments" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:176 +msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" +msgstr "Failed to initialise a SFTP subsystem session with the SSH2 Server %s" + +#: wp-admin/includes/class-wp-comments-list-table.php:484 +msgctxt "column name" +msgid "Submitted on" +msgstr "Submitted on" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:277 +msgctxt "comments" +msgid "Trash (%s)" +msgid_plural "Trash (%s)" +msgstr[0] "Bin (%s)" +msgstr[1] "Bin (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:270 +msgctxt "comments" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Spam (%s)" +msgstr[1] "Spam (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:263 +msgctxt "comments" +msgid "Approved (%s)" +msgid_plural "Approved (%s)" +msgstr[0] "Approved (%s)" +msgstr[1] "Approved (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:256 +msgctxt "comments" +msgid "Pending (%s)" +msgid_plural "Pending (%s)" +msgstr[0] "Pending (%s)" +msgstr[1] "Pending (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:242 +msgctxt "comments" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%s)" + +#. translators: %s: The new user. +#: wp-admin/includes/ajax-actions.php:1779 +msgid "User %s added" +msgstr "User %s added" + +#: wp-admin/export.php:229 wp-admin/export.php:281 wp-admin/export.php:326 +msgid "End date:" +msgstr "End date:" + +#. translators: Hidden accessibility text. +#: wp-admin/export.php:186 +msgid "Content to export" +msgstr "Content to export" + +#: wp-admin/edit.php:266 +msgid "You can view posts in a simple title list or with an excerpt using the Screen Options tab." +msgstr "You can view posts in a simple title list or with an excerpt using the Screen Options tab." + +#. translators: %s: Comment date. +#: wp-admin/edit-form-comment.php:156 +msgid "Submitted on: %s" +msgstr "Submitted on: %s" + +#: wp-admin/edit-form-comment.php:37 +msgctxt "comment" +msgid "Permalink:" +msgstr "Permalink:" + +#: wp-admin/edit-form-advanced.php:201 +msgid "Page draft updated." +msgstr "Page draft updated." + +#. translators: %s: Scheduled date for the page. +#: wp-admin/edit-form-advanced.php:200 +msgid "Page scheduled for: %s." +msgstr "Page scheduled for: %s." + +#: wp-admin/edit-form-advanced.php:198 +msgid "Page submitted." +msgstr "Page submitted." + +#: wp-admin/edit-form-advanced.php:186 +msgid "Post draft updated." +msgstr "Post draft updated." + +#. translators: %s: Scheduled date for the post. +#: wp-admin/edit-form-advanced.php:185 +msgid "Post scheduled for: %s." +msgstr "Post scheduled for: %s." + +#: wp-admin/edit-form-advanced.php:183 +msgid "Post submitted." +msgstr "Post submitted." + +#: wp-admin/edit-form-advanced.php:159 +msgid "View page" +msgstr "View page" + +#: wp-admin/edit-form-advanced.php:145 wp-admin/edit-form-advanced.php:152 +msgid "Preview page" +msgstr "Preview page" + +#: wp-admin/edit-form-advanced.php:124 wp-admin/edit-form-advanced.php:131 +msgid "Preview post" +msgstr "Preview post" + +#: wp-admin/edit-comments.php:239 +msgid "Comments list" +msgstr "Comments list" + +#: wp-admin/edit-comments.php:238 +msgid "Comments list navigation" +msgstr "Comments list navigation" + +#: wp-admin/edit-comments.php:237 +msgid "Filter comments list" +msgstr "Filter comments list" + +#: wp-admin/edit-comments.php:222 +msgid "In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site." +msgstr "In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site." + +#: wp-admin/edit-comments.php:220 +msgid "In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment." +msgstr "In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or bin that comment." + +#. translators: %s: Comments count. +#: wp-admin/edit-comments.php:194 wp-admin/js/edit-comments.js:196 +#: wp-admin/js/edit-comments.js:216 +msgid "Comments (%s)" +msgstr "Comments (%s)" + +#. translators: 1: Comments count, 2: Post title. +#: wp-admin/edit-comments.php:175 +msgid "Comments (%1$s) on “%2$s”" +msgstr "Comments (%1$s) on “%2$s”" + +#: wp-admin/includes/ajax-actions.php:5574 +msgid "Sorry, you are not allowed to modify themes." +msgstr "Sorry, you are not allowed to modify themes." + +#: wp-admin/includes/class-custom-image-header.php:1033 +msgid "The active theme does not support a flexible sized header image." +msgstr "The active theme does not support a flexible sized header image." + +#: wp-admin/includes/user.php:542 +msgid "You are using the auto-generated password for your account. Would you like to change it?" +msgstr "You are using the auto-generated password for your account. Would you like to change it?" + +#: wp-admin/users.php:521 +msgid "You have specified this user for removal:" +msgstr "You have specified this user for removal:" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:768 +msgid "Log %s out of all locations." +msgstr "Log %s out of all locations." + +#: wp-admin/user-edit.php:756 +msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." +msgstr "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." + +#: wp-admin/user-edit.php:744 wp-admin/user-edit.php:754 +msgid "Log Out Everywhere Else" +msgstr "Log Out Everywhere Else" + +#: wp-admin/user-edit.php:742 wp-admin/user-edit.php:752 +#: wp-admin/user-edit.php:762 +msgid "Sessions" +msgstr "Sessions" + +#: wp-admin/user-edit.php:688 +msgid "Cancel password change" +msgstr "Cancel password change" + +#: wp-admin/user-new.php:599 +msgid "Generate password" +msgstr "Generate password" + +#: wp-admin/user-edit.php:671 +msgid "Account Management" +msgstr "Account Management" + +#. translators: The non-breaking space prevents 1Password from thinking the +#. text "log in" should trigger a password save prompt. +#: wp-admin/install.php:155 +msgid "You will need this password to log in. Please store it in a secure location." +msgstr "You will need this password to log in. Please store it in a secure location." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:917 +msgid "No approved comments" +msgstr "No approved comments" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:867 +msgid "%s pending comment" +msgid_plural "%s pending comments" +msgstr[0] "%s pending comment" +msgstr[1] "%s pending comments" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:861 +msgid "%s approved comment" +msgid_plural "%s approved comments" +msgstr[0] "%s approved comment" +msgstr[1] "%s approved comments" + +#: wp-admin/includes/ajax-actions.php:4023 +msgid "Image could not be processed." +msgstr "Image could not be processed." + +#: wp-admin/install.php:169 wp-admin/user-edit.php:707 +#: wp-admin/user-new.php:621 +msgid "Confirm Password" +msgstr "Confirm Password" + +#: wp-admin/options-general.php:207 +msgid "Remove Site Icon" +msgstr "Remove Site Icon" + +#. translators: 1: wp-config.php, 2: Secret key service URL. +#: wp-admin/maint/repair.php:85 +msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." +msgstr "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." + +#: wp-admin/options-general.php:192 +msgid "Set as Site Icon" +msgstr "Set as Site Icon" + +#: wp-admin/options-general.php:190 wp-admin/options-general.php:199 +msgid "Choose a Site Icon" +msgstr "Choose a Site Icon" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-application-passwords-list-table.php:258 +#: wp-admin/includes/class-wp-comments-list-table.php:909 +#: wp-admin/includes/class-wp-list-table.php:689 +#: wp-admin/includes/class-wp-list-table.php:1823 +#: wp-admin/includes/update.php:933 +msgid "Show more details" +msgstr "Show more details" + +#. translators: %s: Number of menus. +#: wp-admin/nav-menus.php:840 +msgid "Your theme supports %s menu. Select which menu appears in each location." +msgid_plural "Your theme supports %s menus. Select which menu appears in each location." +msgstr[0] "Your theme supports %s menu. Select which menu appears in each location." +msgstr[1] "Your theme supports %s menus. Select which menu appears in each location." + +#. translators: Hidden accessibility text. %s: Number of posts. +#: wp-admin/includes/class-wp-users-list-table.php:607 +msgid "%s post by this author" +msgid_plural "%s posts by this author" +msgstr[0] "%s post by this author" +msgstr[1] "%s posts by this author" + +#. translators: Hidden accessibility text. %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:139 +#: wp-admin/includes/class-theme-upgrader-skin.php:105 +msgid "Live Preview “%s”" +msgstr "Live Preview “%s”" + +#: wp-admin/options-discussion.php:150 +msgid "last page" +msgstr "last page" + +#: wp-admin/options-discussion.php:151 +msgid "first page" +msgstr "first page" + +#. translators: %s: Post link. +#: wp-admin/edit-form-comment.php:197 +msgid "In response to: %s" +msgstr "In response to: %s" + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:169 wp-admin/includes/meta-boxes.php:304 +msgid "Date and time" +msgstr "Date and time" + +#: wp-admin/edit-form-advanced.php:355 +msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." +msgstr "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." + +#: wp-admin/includes/class-custom-background.php:110 +msgid "Documentation on Custom Background" +msgstr "Documentation on Custom Background" + +#: wp-admin/edit-tags.php:310 +msgid "Documentation on Link Categories" +msgstr "Documentation on Link Categories" + +#: wp-admin/edit-link-form.php:76 +msgid "Documentation on Creating Links" +msgstr "Documentation on Creating Links" + +#: wp-admin/link-manager.php:79 +msgid "Documentation on Managing Links" +msgstr "Documentation on Managing Links" + +#: wp-admin/includes/class-custom-image-header.php:145 +msgid "Documentation on Custom Header" +msgstr "Documentation on Custom Header" + +#: wp-admin/my-sites.php:52 +msgid "Documentation on My Sites" +msgstr "Documentation on My Sites" + +#: wp-admin/widgets.php:24 +msgid "The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." +msgstr "The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." + +#. translators: %s: Documentation URL. +#: wp-admin/options-writing.php:227 +msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks." +msgstr "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks." + +#: wp-admin/includes/options.php:137 +msgid "The character encoding of your site (UTF-8 is recommended)" +msgstr "The character encoding of your site (UTF-8 is recommended)" + +#: wp-admin/includes/file.php:2589 +msgid "example: www.wordpress.org" +msgstr "example: www.wordpress.org" + +#: wp-admin/themes.php:138 +msgid "The search for installed themes will search for terms in their name, description, author, or tag." +msgstr "The search for installed themes will search for terms in their name, description, author, or tag." + +#: wp-admin/theme-install.php:113 +msgid "Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it." +msgstr "Alternately, you can browse the themes that are popular or latest. When you find a theme you like, you can preview it or install it." + +#: wp-admin/theme-install.php:112 +msgid "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter." +msgstr "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter." + +#. translators: %d: Number of themes. +#: wp-admin/theme-install.php:68 wp-admin/themes.php:237 +msgid "Number of Themes found: %d" +msgstr "Number of Themes found: %d" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:552 +msgid "Custom time format:" +msgstr "Custom time format:" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:548 +msgid "enter a custom time format in the following field" +msgstr "enter a custom time format in the following field" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:504 +msgid "Custom date format:" +msgstr "Custom date format:" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:500 +msgid "enter a custom date format in the following field" +msgstr "enter a custom date format in the following field" + +#: wp-admin/includes/class-plugin-upgrader.php:66 +msgid "Plugins updated successfully." +msgstr "Plugins updated successfully." + +#. translators: %s: Number of millions. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:714 +#: wp-admin/includes/plugin-install.php:695 +msgctxt "Active plugin installations" +msgid "%s+ Million" +msgid_plural "%s+ Million" +msgstr[0] "%s+ Million" +msgstr[1] "%s+ Million" + +#. translators: 1: Error message, 2: Line number. +#: wp-admin/link-parse-opml.php:93 +msgid "XML Error: %1$s at line %2$s" +msgstr "XML Error: %1$s at line %2$s" + +#: wp-admin/menu-header.php:293 +msgid "Main menu" +msgstr "Main menu" + +#: wp-admin/includes/file.php:2639 +msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." +msgstr "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." + +#. translators: %s: Number of users. +#: wp-admin/users.php:616 +msgid "%s user deleted." +msgid_plural "%s users deleted." +msgstr[0] "%s user deleted." +msgstr[1] "%s users deleted." + +#: wp-admin/users.php:406 +msgid "What should be done with content owned by these users?" +msgstr "What should be done with content owned by these users?" + +#: wp-admin/users.php:356 +msgid "You have specified these users for deletion:" +msgstr "You have specified these users for deletion:" + +#: wp-admin/plugins.php:369 +msgid "You are about to remove the following plugins:" +msgstr "You are about to remove the following plugins:" + +#: wp-admin/plugins.php:360 +msgid "These plugins may be active on other sites in the network." +msgstr "These plugins may be active on other sites in the network." + +#: wp-admin/plugins.php:357 +msgid "Delete Plugins" +msgstr "Delete Plugins" + +#: wp-admin/edit.php:373 +msgid "1 page not updated, somebody is editing it." +msgstr "1 page not updated, somebody is editing it." + +#: wp-admin/edit.php:360 +msgid "1 post not updated, somebody is editing it." +msgstr "1 post not updated, somebody is editing it." + +#: wp-admin/user-edit.php:64 +msgid "You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button." +msgstr "You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button." + +#: wp-admin/update-core.php:829 +msgid "New translations are available." +msgstr "New translations are available." + +#: wp-admin/theme-install.php:531 +msgid "This theme has not been rated yet." +msgstr "This theme has not been rated yet." + +#. translators: Date and time format for exact current time, mainly about +#. timezones, see https://www.php.net/manual/datetime.format.php +#: wp-admin/options-general.php:23 +msgctxt "timezone date format" +msgid "Y-m-d H:i:s" +msgstr "j F Y H:i" + +#: wp-admin/nav-menus.php:745 +msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" +msgstr "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" + +#. translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those +#. are placeholders. +#: wp-admin/ms-delete-site.php:58 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently clicked the 'Delete Site' link on your site and filled in a\n" +"form on that page.\n" +"\n" +"If you really want to delete your site, click the link below. You will not\n" +"be asked to confirm again so only click this link if you are absolutely certain:\n" +"###URL_DELETE###\n" +"\n" +"If you delete your site, please consider opening a new site here some time in\n" +"the future! (But remember that your current site and username are gone forever.)\n" +"\n" +"Thank you for using the site,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hi ###USERNAME###,\n" +"\n" +"You recently clicked the 'Delete Site' link on your site and filled in a\n" +"form on that page.\n" +"\n" +"If you really want to delete your site, click the link below. You will not\n" +"be asked to confirm again so only click this link if you are absolutely certain:\n" +"###URL_DELETE###\n" +"\n" +"If you delete your site, please consider opening a new site here some time in\n" +"the future! (But remember that your current site and username are gone forever.)\n" +"\n" +"Thank you for using the site,\n" +"All at ###SITENAME###\n" +"###SITEURL###" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:847 wp-admin/themes.php:1071 +msgid "Close details dialog" +msgstr "Close details dialog" + +#: wp-admin/includes/template.php:2798 wp-admin/includes/template.php:2817 +msgid "You are currently editing the page that shows your latest posts." +msgstr "You are currently editing the page that shows your latest posts." + +#: wp-admin/includes/class-wp-screen.php:1238 +msgid "Number of items per page:" +msgstr "Number of items per page:" + +#: wp-admin/includes/revision.php:252 wp-admin/includes/revision.php:295 +msgctxt "revision date short format" +msgid "j M @ H:i" +msgstr "j F @ H:i" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/ms.php:314 wp-admin/network/settings.php:420 +msgid "Size in megabytes" +msgstr "Size in megabytes" + +#: wp-admin/includes/ms.php:306 +msgid "Site Upload Space Quota" +msgstr "Site Upload Space Quota" + +#: wp-admin/includes/class-wp-automatic-updater.php:1665 +msgid "" +"UPDATE LOG\n" +"==========" +msgstr "" +"UPDATE LOG\n" +"==========" + +#: wp-admin/includes/class-wp-automatic-updater.php:1642 +msgid "" +"BETA TESTING?\n" +"=============\n" +"\n" +"This debugging email is sent when you are using a development version of WordPress.\n" +"\n" +"If you think these failures might be due to a bug in WordPress, could you report it?\n" +" * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta\n" +" * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/\n" +"\n" +"Thanks! -- The WordPress Team" +msgstr "" +"BETA TESTING?\n" +"=============\n" +"\n" +"This debugging email is sent when you are using a development version of WordPress.\n" +"\n" +"If you think these failures might be due to a bug in WordPress, could you report it?\n" +" * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta\n" +" * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/\n" +"\n" +"Thanks! -- The WordPress Team" + +#: wp-admin/includes/revision.php:251 wp-admin/includes/revision.php:294 +msgid "M j, Y @ H:i" +msgstr "j F Y @ H:i" + +#: wp-admin/comment.php:227 +msgid "Submitted on" +msgstr "Submitted on" + +#. translators: Column name or table row header. +#: wp-admin/comment.php:201 +#: wp-admin/includes/class-wp-comments-list-table.php:481 +msgid "In response to" +msgstr "In response to" + +#. translators: 1: Month, 2: Day, 3: Year, 4: Hour, 5: Minute. +#: wp-admin/includes/template.php:869 wp-admin/js/comment.js:89 +#: wp-admin/js/post.js:794 +msgid "%1$s %2$s, %3$s at %4$s:%5$s" +msgstr "%1$s %2$s, %3$s at %4$s:%5$s" + +#: wp-admin/user-edit.php:746 +msgid "You are only logged in at this location." +msgstr "You are only logged in at this location." + +#: wp-admin/includes/plugin-install.php:409 +msgid "These suggestions are based on the plugins you and other users have installed." +msgstr "These suggestions are based on the plugins you and other users have installed." + +#: wp-admin/edit-form-advanced.php:290 +msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." +msgstr "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." + +#: wp-admin/user-edit.php:764 +msgid "Log Out Everywhere" +msgstr "Log Out Everywhere" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:114 +msgctxt "Plugin Installer" +msgid "Recommended" +msgstr "Recommended" + +#. translators: New site notification email. 1: New site URL, 2: User login, 3: +#. User password or password reset link, 4: Login URL. +#: wp-admin/includes/upgrade.php:589 +msgid "" +"Your new WordPress site has been successfully set up at:\n" +"\n" +"%1$s\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: %2$s\n" +"Password: %3$s\n" +"Log in here: %4$s\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The WordPress Team\n" +"https://wordpress.org/\n" +msgstr "" +"Your new WordPress site has been successfully set up at:\n" +"\n" +"%1$s\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: %2$s\n" +"Password: %3$s\n" +"Log in here: %4$s\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The WordPress Team\n" +"https://wordpress.org/\n" + +#: wp-admin/themes.php:301 +msgid "You cannot delete a theme while it has an active child theme." +msgstr "You cannot delete a theme while it has an active child theme." + +#: wp-admin/options-discussion.php:304 +msgid "Mystery Person" +msgstr "Mystery Person" + +#: wp-admin/install.php:127 +msgid "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol." +msgstr "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, full stops, and the @ symbol." + +#: wp-admin/includes/class-wp-screen.php:1007 +msgid "Enable full-height editor and distraction-free functionality." +msgstr "Enable full-height editor and distraction-free functionality." + +#. translators: Link to the Planet feed of the locale. +#: wp-admin/includes/dashboard.php:1583 +msgid "https://planet.wordpress.org/feed/" +msgstr "https://planet.wordpress.org/feed/" + +#. translators: Link to the Planet website of the locale. +#: wp-admin/includes/dashboard.php:1570 wp-admin/index.php:98 +msgid "https://planet.wordpress.org/" +msgstr "https://planet.wordpress.org/" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:729 +msgid "Untested with your version of WordPress" +msgstr "Untested with your version of WordPress" + +#: wp-admin/includes/meta-boxes.php:1180 +msgid "All categories" +msgstr "All categories" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:517 +msgid "Filter by comment type" +msgstr "Filter by comment type" + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:3998 +msgid "%s has been logged out." +msgstr "%s has been logged out." + +#: wp-admin/includes/ajax-actions.php:3994 +msgid "You are now logged out everywhere else." +msgstr "You are now logged out everywhere else." + +#: wp-admin/includes/ajax-actions.php:3985 +msgid "Could not log out user sessions. Please try again." +msgstr "Could not log out user sessions. Please try again." + +#: wp-admin/includes/ajax-actions.php:3856 +msgid "This preview is unavailable in the editor." +msgstr "This preview is unavailable in the editor." + +#: wp-admin/edit-form-advanced.php:289 +msgid "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." +msgstr "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." + +#: wp-admin/edit-form-advanced.php:286 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab." +msgstr "Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab." + +#. translators: %s: URL to header image configuration in Customizer. +#: wp-admin/includes/class-custom-image-header.php:518 +msgid "You can now manage and live-preview Custom Header in the Customizer." +msgstr "You can now manage and live-preview Custom Header in the Customiser." + +#. translators: %s: URL to background image configuration in Customizer. +#: wp-admin/includes/class-custom-background.php:249 +msgid "You can now manage and live-preview Custom Backgrounds in the Customizer." +msgstr "You can now manage and live-preview Custom Backgrounds in the Customiser." + +#: wp-admin/includes/class-wp-screen.php:1138 +msgctxt "Welcome panel" +msgid "Welcome" +msgstr "Welcome" + +#. translators: %s: Number of users. +#. translators: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:206 +#: wp-admin/includes/class-wp-ms-users-list-table.php:144 +msgctxt "users" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%s)" + +#: wp-admin/edit-link-form.php:123 +#: wp-admin/includes/class-wp-links-list-table.php:135 +#: wp-admin/includes/class-wp-links-list-table.php:149 +msgctxt "link name" +msgid "Name" +msgstr "Name" + +#. translators: %s: Placeholder that must come at the start of the URL. +#: wp-admin/options-permalink.php:417 +msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used." +msgstr "If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorised/. If you leave these blank the defaults will be used." + +#: wp-admin/credits.php:133 +msgid "Release Lead" +msgstr "Release Lead" + +#: wp-admin/upload.php:192 +msgid "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." +msgstr "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." + +#: wp-admin/upload.php:193 +msgid "You can also delete individual items and access the extended edit screen from the details dialog." +msgstr "You can also delete individual items and access the extended edit screen from the details dialog." + +#: wp-admin/upload.php:191 +msgid "Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved." +msgstr "Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved." + +#: wp-admin/upload.php:182 +msgid "To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media." +msgstr "To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media." + +#: wp-admin/upload.php:181 wp-admin/upload.php:372 +msgid "You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media." +msgstr "You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media." + +#: wp-admin/upload.php:180 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first." +msgstr "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first." + +#: wp-admin/plugin-install.php:113 +msgid "If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly." +msgstr "If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly." + +#: wp-admin/plugin-install.php:155 +msgid "Browse Plugins" +msgstr "Browse Plugins" + +#: wp-admin/plugin-install.php:51 +msgid "Add Plugins" +msgstr "Add Plugins" + +#. translators: 1: WPLANG, 2: wp-config.php +#: wp-admin/options-general.php:350 +msgid "The %1$s constant in your %2$s file is no longer needed." +msgstr "The %1$s constant in your %2$s file is no longer needed." + +#: wp-admin/includes/translation-install.php:38 +msgid "Invalid translation type." +msgstr "Invalid translation type." + +#: wp-admin/install.php:393 +msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." +msgstr "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:733 +msgid "Compatible with your version of WordPress" +msgstr "Compatible with your version of WordPress" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:731 +msgid "Incompatible with your version of WordPress" +msgstr "Incompatible with your version of WordPress" + +#. translators: %s: Number of stars. +#: wp-admin/includes/plugin-install.php:765 +msgid "%d star" +msgid_plural "%d stars" +msgstr[0] "%d star" +msgstr[1] "%d stars" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:604 +msgid "Select bulk action" +msgstr "Select bulk action" + +#: wp-admin/user-new.php:489 wp-admin/user-new.php:656 +msgid "Add the user without sending an email that requires their confirmation" +msgstr "Add the user without sending an email that requires their confirmation" + +#. translators: %s: List view URL. +#: wp-admin/upload.php:236 +msgid "The grid view for the Media Library requires JavaScript. Switch to the list view." +msgstr "The grid view for the Media Library requires JavaScript. Switch to the list view." + +#: wp-admin/credits.php:27 wp-admin/includes/plugin-install.php:779 +msgid "Contributors" +msgstr "Contributors" + +#: wp-admin/includes/plugin-install.php:710 +#: wp-admin/includes/plugin-install.php:797 +msgid "Donate to this plugin »" +msgstr "Donate to this plugin »" + +#: wp-admin/includes/plugin-install.php:580 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Reviews" + +#. translators: %s: Support email address. +#: wp-admin/includes/class-wp-automatic-updater.php:1054 +msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." +msgstr "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:67 +msgctxt "themes" +msgid "Recently Updated" +msgstr "Recently Updated" + +#: wp-admin/includes/class-wp-terms-list-table.php:200 +#: wp-admin/includes/class-wp-terms-list-table.php:222 +msgctxt "Number/count of items" +msgid "Count" +msgstr "Count" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1199 +msgid "View details" +msgstr "View details" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:576 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:828 +msgid "More Details" +msgstr "More Details" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:495 +msgctxt "Plugin installer group title" +msgid "Tools" +msgstr "Tools" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:494 +msgctxt "Plugin installer group title" +msgid "Social" +msgstr "Social" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:493 +msgctxt "Plugin installer group title" +msgid "Performance" +msgstr "Performance" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:109 +msgctxt "Plugin Installer" +msgid "Beta Testing" +msgstr "Beta Testing" + +#. translators: %s: URL that could not be embedded. +#: wp-admin/includes/ajax-actions.php:3822 +msgid "%s failed to embed." +msgstr "%s failed to embed." + +#: wp-admin/theme-install.php:269 +msgid "Filtering by:" +msgstr "Filtering by:" + +#: wp-admin/includes/media.php:3291 +msgid "Displayed on attachment pages." +msgstr "Displayed on attachment pages." + +#: wp-admin/includes/image-edit.php:291 +msgid "You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image." +msgstr "You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image." + +#: wp-admin/includes/image-edit.php:206 +msgid "Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings." +msgstr "Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings." + +#: wp-admin/includes/image-edit.php:203 +msgid "The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc." +msgstr "The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc." + +#: wp-admin/includes/image-edit.php:201 +msgid "To crop the image, click on it and drag to make your selection." +msgstr "To crop the image, click on it and drag to make your selection." + +#: wp-admin/includes/image-edit.php:134 +msgid "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." +msgstr "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." + +#. translators: %s: Alt + F10 +#: wp-admin/edit-form-advanced.php:293 +msgid "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." +msgstr "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." + +#: wp-admin/edit-comments.php:218 +msgid "A red bar on the left means the comment is waiting for you to moderate it." +msgstr "A red bar on the left means the comment is waiting for you to moderate it." + +#: wp-admin/includes/class-wp-comments-list-table.php:522 +msgid "All comment types" +msgstr "All comment types" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:66 +#: wp-admin/theme-install.php:212 +msgctxt "themes" +msgid "Latest" +msgstr "Latest" + +#: wp-admin/theme-install.php:211 +msgctxt "themes" +msgid "Popular" +msgstr "Popular" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:64 +msgctxt "themes" +msgid "Featured" +msgstr "Featured" + +#: wp-admin/includes/ms.php:967 wp-admin/users.php:416 +msgid "Attribute all content to:" +msgstr "Attribute all content to:" + +#: wp-admin/includes/ms.php:965 wp-admin/users.php:412 +msgid "Delete all content." +msgstr "Delete all content." + +#: wp-admin/users.php:404 +msgid "What should be done with content owned by this user?" +msgstr "What should be done with content owned by this user?" + +#: wp-admin/users.php:60 +msgid "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions." +msgstr "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions." + +#: wp-admin/users.php:58 +msgid "Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions." +msgstr "Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions." + +#: wp-admin/theme-install.php:391 +msgctxt "theme" +msgid "Details & Preview" +msgstr "Details & Preview" + +#: wp-admin/theme-install.php:58 +msgid "Search Themes" +msgstr "Search Themes" + +#: wp-admin/theme-install.php:25 +msgid "Add Themes" +msgstr "Add Themes" + +#: wp-admin/maint/repair.php:162 +msgid "https://wordpress.org/support/forum/how-to-and-troubleshooting" +msgstr "https://wordpress.org/support/forum/how-to-and-troubleshooting" + +#: wp-admin/index.php:86 +msgid "At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using." +msgstr "At a Glance – Displays a summary of the content on your site and identifies which theme and version of WordPress you are using." + +#: wp-admin/index.php:65 +msgid "Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it." +msgstr "Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it." + +#: wp-admin/themes.php:43 +msgid "Sorry, you are not allowed to resume this theme." +msgstr "Sorry, you are not allowed to resume this theme." + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:162 wp-admin/includes/meta-boxes.php:296 +msgid "Edit date and time" +msgstr "Edit date and time" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:278 +msgid "Browse revisions" +msgstr "Browse revisions" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:200 +msgid "Edit visibility" +msgstr "Edit visibility" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:138 +msgid "Edit status" +msgstr "Edit status" + +#: wp-admin/includes/ms.php:1173 wp-admin/network/index.php:57 +#: wp-admin/network/site-new.php:33 wp-admin/network/sites.php:45 +#: wp-admin/network/user-new.php:30 wp-admin/network/users.php:243 +msgid "Support forums" +msgstr "Support forums" + +#. translators: %s: https://wordpress.org +#: wp-admin/admin-footer.php:37 +msgid "Thank you for creating with WordPress." +msgstr "Thank you for creating with WordPress." + +#: wp-admin/update-core.php:1005 +msgid "Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button." +msgstr "Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button." + +#: wp-admin/update-core.php:1001 +msgid "In most cases, WordPress will automatically apply maintenance and security updates in the background for you." +msgstr "In most cases, WordPress will automatically apply maintenance and security updates in the background for you." + +#: wp-admin/update-core.php:1001 +msgid "WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available." +msgstr "WordPress – updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available." + +#: wp-admin/update-core.php:991 +msgid "If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu." +msgstr "If an update is available, you᾿ll see a notification appear in the toolbar and navigation menu." + +#: wp-admin/update-core.php:1002 +msgid "Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button." +msgstr "Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button." + +#: wp-admin/update-core.php:990 +msgid "On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories." +msgstr "On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories." + +#. translators: %s: https://wordpress.org/themes +#: wp-admin/themes.php:156 +msgid "If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgstr "If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!" + +#. translators: 1: Number of megabytes, 2: Percentage. +#: wp-admin/includes/dashboard.php:1682 +msgid "%1$s MB (%2$s%%) Space Used" +msgstr "%1$s MB (%2$s%%) Space Used" + +#. translators: %s: Number of megabytes. +#: wp-admin/includes/dashboard.php:1667 +msgid "%s MB Space Allowed" +msgstr "%s MB Space Allowed" + +#. translators: Date and time format for recent posts on the dashboard, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/dashboard.php:1026 +msgid "M jS" +msgstr "j F" + +#. translators: %s: Number of pages. +#: wp-admin/includes/dashboard.php:315 +msgid "%s Page" +msgid_plural "%s Pages" +msgstr[0] "%s Page" +msgstr[1] "%s Pages" + +#. translators: %s: Number of posts. +#: wp-admin/includes/dashboard.php:312 +msgid "%s Post" +msgid_plural "%s Posts" +msgstr[0] "%s Post" +msgstr[1] "%s Posts" + +#: wp-admin/options-reading.php:47 +msgid "When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site." +msgstr "When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site." + +#: wp-admin/includes/dashboard.php:73 +msgid "At a Glance" +msgstr "At a Glance" + +#: wp-admin/themes.php:599 wp-admin/themes.php:991 +msgctxt "theme" +msgid "Active:" +msgstr "Active:" + +#: wp-admin/includes/theme.php:331 +msgid "Accessibility Ready" +msgstr "Accessibility Ready" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:976 wp-admin/themes.php:1243 +msgid "This is a child theme of %s." +msgstr "This is a child theme of %s." + +#: wp-admin/themes.php:175 +msgid "When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again." +msgstr "When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again." + +#: wp-admin/themes.php:174 +msgid "The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu." +msgstr "The theme being previewed is fully interactive – navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate and Publish button above the menu." + +#: wp-admin/themes.php:173 +msgid "Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way." +msgstr "Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customised in this way." + +#: wp-admin/themes.php:137 +msgid "The active theme is displayed highlighted as the first theme." +msgstr "The active theme is displayed highlighted as the first theme." + +#: wp-admin/themes.php:136 +msgid "Click Customize for the active theme or Live Preview for any other theme to see a live preview" +msgstr "Click Customise for the active theme or Live Preview for any other theme to see a live preview" + +#: wp-admin/themes.php:135 +msgid "Click on the theme to see the theme name, version, author, description, tags, and the Delete link" +msgstr "Click on the theme to see the theme name, version, author, description, tags, and the Delete link" + +#: wp-admin/themes.php:134 +msgid "Hover or tap to see Activate and Live Preview buttons" +msgstr "Hover or tap to see Activate and Live Preview buttons" + +#: wp-admin/themes.php:132 +msgid "This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties." +msgstr "This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties." + +#: wp-admin/widgets-form.php:453 +msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." +msgstr "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." + +#. translators: Hidden accessibility text. %s: The rating. +#: wp-admin/includes/template.php:2773 +msgid "%s rating" +msgstr "%s rating" + +#. translators: Hidden accessibility text. 1: The rating, 2: The number of +#. ratings. +#: wp-admin/includes/template.php:2769 +msgid "%1$s rating based on %2$s rating" +msgid_plural "%1$s rating based on %2$s ratings" +msgstr[0] "%1$s rating based on %2$s rating" +msgstr[1] "%1$s rating based on %2$s ratings" + +#: wp-admin/my-sites.php:46 +msgid "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." +msgstr "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1703 +msgid "Error: [%1$s] %2$s" +msgstr "ERROR: [%1$s] %2$s" + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1700 +msgid "Rollback Error: [%1$s] %2$s" +msgstr "ROLLBACK ERROR: [%1$s] %2$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1617 +msgid "The following translations failed to update:" +msgstr "The following translations failed to update:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1616 +msgid "The following themes failed to update:" +msgstr "The following themes failed to update:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1615 +msgid "The following plugins failed to update:" +msgstr "The following plugins failed to update:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1602 +msgid "The following translations were successfully updated:" +msgstr "The following translations were successfully updated:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1601 +msgid "The following themes were successfully updated:" +msgstr "The following themes were successfully updated:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1600 +msgid "The following plugins were successfully updated:" +msgstr "The following plugins were successfully updated:" + +#: wp-admin/widgets-form.php:574 +msgid "Add Widget" +msgstr "Add Widget" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:841 wp-admin/themes.php:1065 +msgid "Show next theme" +msgstr "Show next theme" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:835 wp-admin/themes.php:1059 +msgid "Show previous theme" +msgstr "Show previous theme" + +#: wp-admin/includes/theme.php:897 wp-admin/themes.php:1159 +msgid "Update Available" +msgstr "Update Available" + +#: wp-admin/themes.php:230 +msgid "" +"Are you sure you want to delete this theme?\n" +"\n" +"Click 'Cancel' to go back, 'OK' to confirm the delete." +msgstr "" +"Are you sure you want to delete this theme?\n" +"\n" +"Click 'Cancel' to go back, 'OK' to confirm the delete." + +#: wp-admin/post.php:82 +msgid "Unable to submit this form, please refresh and try again." +msgstr "Unable to submit this form, please refresh and try again." + +#: wp-admin/index.php:92 +msgid "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." +msgstr "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." + +#: wp-admin/index.php:89 +msgid "Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them." +msgstr "Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them." + +#: wp-admin/index.php:63 +msgid "Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show." +msgstr "Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:1675 wp-admin/includes/dashboard.php:1691 +msgid "Manage Uploads" +msgstr "Manage Uploads" + +#: wp-admin/includes/deprecated.php:1389 +msgid "Popular Plugin" +msgstr "Popular Plugin" + +#: wp-admin/includes/dashboard.php:1020 +msgid "Tomorrow" +msgstr "Tomorrow" + +#: wp-admin/includes/dashboard.php:954 +msgid "No activity yet!" +msgstr "No activity yet!" + +#: wp-admin/includes/dashboard.php:945 +msgid "Recently Published" +msgstr "Recently Published" + +#: wp-admin/includes/dashboard.php:936 +msgid "Publishing Soon" +msgstr "Publishing Soon" + +#: wp-admin/includes/dashboard.php:599 +msgid "What’s on your mind?" +msgstr "What’s on your mind?" + +#. translators: 1: Version number, 2: Theme name. +#: wp-admin/includes/update.php:381 +msgid "WordPress %1$s running %2$s theme." +msgstr "WordPress %1$s running %2$s theme." + +#: wp-admin/includes/dashboard.php:87 +msgid "Quick Draft" +msgstr "Quick Draft" + +#: wp-admin/includes/dashboard.php:82 +msgid "Activity" +msgstr "Activity" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1625 +msgid "FAILED: %s" +msgstr "FAILED: %s" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1608 +msgid "SUCCESS: %s" +msgstr "SUCCESS: %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1583 +msgid "FAILED: WordPress failed to update to %s" +msgstr "FAILED: WordPress failed to update to %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1580 +msgid "SUCCESS: WordPress was successfully updated to %s" +msgstr "SUCCESS: WordPress was successfully updated to %s" + +#. translators: %s: Network home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1572 +msgid "WordPress site: %s" +msgstr "WordPress site: %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1083 +msgid "Your site was running version %s." +msgstr "Your site was running version %s." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1029 +msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." +msgstr "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." + +#. translators: %s: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:995 +msgid "WordPress %s is also now available." +msgstr "WordPress %s is also now available." + +#: wp-admin/includes/update-core.php:1297 +#: wp-admin/includes/update-core.php:1333 +msgid "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." +msgstr "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." + +#: wp-admin/includes/class-language-pack-upgrader.php:114 +#: wp-admin/update-core.php:820 +msgid "Your translations are all up to date." +msgstr "Your translations are all up to date." + +#: wp-admin/update-core.php:819 wp-admin/update-core.php:827 +msgid "Translations" +msgstr "Translations" + +#. translators: %s: Error code. +#: wp-admin/includes/class-wp-automatic-updater.php:1104 +msgid "Error code: %s" +msgstr "Error code: %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1085 +msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" +msgstr "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1078 +#: wp-admin/includes/class-wp-automatic-updater.php:1508 +msgid "The WordPress Team" +msgstr "The WordPress Team" + +#: wp-admin/includes/class-wp-automatic-updater.php:1074 +msgid "You also have some plugins or themes with updates available. Update them now:" +msgstr "You also have some plugins or themes with updates available. Update them now:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1059 +#: wp-admin/includes/class-wp-automatic-updater.php:1506 +msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." +msgstr "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." + +#: wp-admin/includes/class-wp-automatic-updater.php:1065 +#: wp-admin/update-core.php:991 +msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." +msgstr "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." + +#: wp-admin/includes/class-wp-automatic-updater.php:1044 +msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" +msgstr "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1042 +msgid "This means your site may be offline or broken. Don't panic; this can be fixed." +msgstr "This means your site may be offline or broken. Don't panic; this can be fixed." + +#. translators: 1: Home URL, 2: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:1036 +msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." +msgstr "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." + +#: wp-admin/includes/class-wp-automatic-updater.php:996 +#: wp-admin/includes/class-wp-automatic-updater.php:1021 +msgid "Updating is easy and only takes a few moments:" +msgstr "Updating is easy and only takes a few moments:" + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1006 +msgid "Please update your site at %1$s to WordPress %2$s." +msgstr "Please update your site at %1$s to WordPress %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:990 +msgid "For more on version %s, see the About WordPress screen:" +msgstr "For more on version %s, see the About WordPress screen:" + +#: wp-admin/includes/class-wp-automatic-updater.php:984 +msgid "No further action is needed on your part." +msgstr "No further action is needed on your part." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:978 +msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." +msgstr "Hi! Your site at %1$s has been updated automatically to WordPress %2$s." + +#. translators: Site down notification email subject. 1: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:961 +msgid "[%1$s] URGENT: Your site may be down due to a failed update" +msgstr "[%1$s] URGENT: Your site may be down due to a failed update" + +#. translators: Update available notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:956 +msgid "[%1$s] WordPress %2$s is available. Please update!" +msgstr "[%1$s] WordPress %2$s is available. Please update!" + +#. translators: Site updated notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:950 +msgid "[%1$s] Your site has updated to WordPress %2$s" +msgstr "[%1$s] Your site has updated to WordPress %2$s" + +#. translators: %s: Project name (plugin, theme, or WordPress). +#: wp-admin/includes/class-wp-automatic-updater.php:438 +msgid "Translations for %s" +msgstr "Translations for %s" + +#. translators: 1: Project name (plugin, theme, or WordPress), 2: Language. +#: wp-admin/includes/class-language-pack-upgrader-skin.php:60 +#: wp-admin/includes/class-wp-automatic-updater.php:440 +msgid "Updating translations for %1$s (%2$s)…" +msgstr "Updating translations for %1$s (%2$s)…" + +#: wp-admin/includes/class-language-pack-upgrader-skin.php:37 +#: wp-admin/update-core.php:831 wp-admin/update-core.php:1283 +msgid "Update Translations" +msgstr "Update Translations" + +#: wp-admin/includes/class-wp-site-health.php:2787 +msgid "Background updates" +msgstr "Background updates" + +#: wp-admin/includes/update-core.php:1400 +msgid "There is not enough free disk space to complete the update." +msgstr "There is not enough free disk space to complete the update." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-automatic-updater.php:433 +msgid "Updating plugin: %s" +msgstr "Updating plugin: %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-automatic-updater.php:421 +msgid "Updating theme: %s" +msgstr "Updating theme: %s" + +#: wp-admin/includes/class-language-pack-upgrader.php:120 +msgid "Translation updated successfully." +msgstr "Translation updated successfully." + +#: wp-admin/includes/class-language-pack-upgrader.php:119 +msgid "Translation update failed." +msgstr "Translation update failed." + +#: wp-admin/includes/class-language-pack-upgrader.php:113 +msgid "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." +msgstr "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." + +#: wp-admin/user-new.php:518 +msgid "Create a brand new user and add them to this site." +msgstr "Create a brand new user and add them to this site." + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:43 +msgid "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead." +msgstr "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead." + +#: wp-admin/options-media.php:56 +msgid "The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library." +msgstr "The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library." + +#: wp-admin/options-discussion.php:191 +msgid "Comment must be manually approved" +msgstr "Comment must be manually approved" + +#: wp-admin/nav-menus.php:743 +msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." +msgstr "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." + +#. translators: 1: URL to Widgets screen, 2 and 3: The names of the default +#. themes. +#: wp-admin/nav-menus.php:712 +msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." +msgstr "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." + +#. translators: %s: URL to Widgets screen. +#: wp-admin/nav-menus.php:695 +msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." +msgstr "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." + +#: wp-admin/install.php:443 +msgid "Sorry, that is not a valid email address. Email addresses look like username@example.com." +msgstr "Sorry, that is not a valid email address. Email addresses look like username@example.com." + +#: wp-admin/install.php:439 +msgid "You must provide an email address." +msgstr "You must provide an email address." + +#: wp-admin/install.php:435 +msgid "Your passwords do not match. Please try again." +msgstr "Your passwords do not match. Please try again." + +#: wp-admin/install.php:431 +msgid "The username you provided has invalid characters." +msgstr "The username you provided has invalid characters." + +#: wp-admin/install.php:428 +msgid "Please provide a valid username." +msgstr "Please provide a valid username." + +#: wp-admin/includes/update-core.php:1314 +msgid "Copying the required files…" +msgstr "Copying the required files…" + +#: wp-admin/includes/update-core.php:1221 +msgid "Preparing to install the latest version…" +msgstr "Preparing to install the latest version…" + +#: wp-admin/includes/file.php:2603 +msgid "This password will not be stored on the server." +msgstr "This password will not be stored on the server." + +#. translators: 1: File checksum, 2: Expected checksum value. +#: wp-admin/includes/file.php:1387 +msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." +msgstr "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." + +#. translators: %s: Version number. +#. translators: %s: WordPress version. +#: wp-admin/about.php:41 wp-admin/includes/class-wp-automatic-updater.php:409 +msgid "WordPress %s" +msgstr "WordPress %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:407 +msgid "Updating to WordPress %s" +msgstr "Updating to WordPress %s" + +#: wp-admin/includes/class-core-upgrader.php:42 +msgid "Due to an error during updating, WordPress has been restored to your previous version." +msgstr "Due to an error during updating, WordPress has been restored to your previous version." + +#. translators: 1: Folder to locate, 2: Folder to start searching from. +#: wp-admin/includes/class-wp-filesystem-base.php:268 +msgid "Looking for %1$s in %2$s" +msgstr "Looking for %1$s in %2$s" + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:381 +msgid "%s page restored from the Trash." +msgid_plural "%s pages restored from the Trash." +msgstr[0] "%s page restored from the Bin." +msgstr[1] "%s pages restored from the Bin." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:379 +msgid "%s page moved to the Trash." +msgid_plural "%s pages moved to the Trash." +msgstr[0] "%s page moved to the Bin." +msgstr[1] "%s pages moved to the Bin." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:377 +msgid "%s page permanently deleted." +msgid_plural "%s pages permanently deleted." +msgstr[0] "%s page permanently deleted." +msgstr[1] "%s pages permanently deleted." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:375 +msgid "%s page not updated, somebody is editing it." +msgid_plural "%s pages not updated, somebody is editing them." +msgstr[0] "%s page not updated, somebody is editing it." +msgstr[1] "%s pages not updated, somebody is editing them." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:372 +msgid "%s page updated." +msgid_plural "%s pages updated." +msgstr[0] "%s page updated." +msgstr[1] "%s pages updated." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:368 +msgid "%s post restored from the Trash." +msgid_plural "%s posts restored from the Trash." +msgstr[0] "%s post restored from the Bin." +msgstr[1] "%s posts restored from the Bin." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:366 +msgid "%s post moved to the Trash." +msgid_plural "%s posts moved to the Trash." +msgstr[0] "%s post moved to the Bin." +msgstr[1] "%s posts moved to the Bin." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:364 +msgid "%s post permanently deleted." +msgid_plural "%s posts permanently deleted." +msgstr[0] "%s post permanently deleted." +msgstr[1] "%s posts permanently deleted." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:362 +msgid "%s post not updated, somebody is editing it." +msgid_plural "%s posts not updated, somebody is editing them." +msgstr[0] "%s post not updated, somebody is editing it." +msgstr[1] "%s posts not updated, somebody is editing them." + +#: wp-admin/includes/edit-tag-messages.php:39 +msgid "Tags deleted." +msgstr "Tags deleted." + +#: wp-admin/includes/edit-tag-messages.php:38 +msgid "Tag not updated." +msgstr "Tag not updated." + +#: wp-admin/includes/edit-tag-messages.php:37 +msgid "Tag not added." +msgstr "Tag not added." + +#: wp-admin/includes/edit-tag-messages.php:36 +msgid "Tag updated." +msgstr "Tag updated." + +#: wp-admin/includes/edit-tag-messages.php:35 +msgid "Tag deleted." +msgstr "Tag deleted." + +#: wp-admin/includes/edit-tag-messages.php:34 +msgid "Tag added." +msgstr "Tag added." + +#: wp-admin/includes/edit-tag-messages.php:29 +msgid "Categories deleted." +msgstr "Categories deleted." + +#: wp-admin/includes/edit-tag-messages.php:28 +msgid "Category not updated." +msgstr "Category not updated." + +#: wp-admin/includes/edit-tag-messages.php:27 +msgid "Category not added." +msgstr "Category not added." + +#: wp-admin/includes/edit-tag-messages.php:26 +msgid "Category updated." +msgstr "Category updated." + +#: wp-admin/includes/edit-tag-messages.php:25 +msgid "Category deleted." +msgstr "Category deleted." + +#: wp-admin/includes/edit-tag-messages.php:24 +msgid "Category added." +msgstr "Category added." + +#: wp-admin/revision.php:147 +msgid "Compare two different revisions by selecting the “Compare any two revisions” box to the side." +msgstr "Compare two different revisions by selecting the “Compare any two revisions” box to the side." + +#: wp-admin/includes/revision.php:396 +msgid "Compare any two revisions" +msgstr "Compare any two revisions" + +#: wp-admin/includes/revision.php:455 +msgid "Restore This Autosave" +msgstr "Restore This Autosave" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:427 +msgid "Current Revision by %s" +msgstr "Current Revision by %s" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:417 +msgid "Autosave by %s" +msgstr "Autosave by %s" + +#: wp-admin/includes/meta-boxes.php:275 +msgctxt "revisions" +msgid "Browse" +msgstr "Browse" + +#. translators: Post revisions heading. %s: The number of available revisions. +#: wp-admin/includes/meta-boxes.php:273 +msgid "Revisions: %s" +msgstr "Revisions: %s" + +#. translators: %s: Audio track title. +#: wp-admin/includes/media.php:343 +msgid "\"%s\"." +msgstr "\"%s\"." + +#. translators: 1: Audio track title, 2: Artist name. +#: wp-admin/includes/media.php:340 +msgid "\"%1$s\" by %2$s." +msgstr "\"%1$s\" by %2$s." + +#. translators: 1: Audio track title, 2: Album title. +#: wp-admin/includes/media.php:337 +msgid "\"%1$s\" from %2$s." +msgstr "\"%1$s\" from %2$s." + +#. translators: 1: Audio track title, 2: Album title, 3: Artist name. +#: wp-admin/includes/media.php:334 +msgid "\"%1$s\" from %2$s by %3$s." +msgstr "\"%1$s\" from %2$s by %3$s." + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:437 +msgid "Revision by %s" +msgstr "Revision by %s" + +#: wp-admin/edit-form-advanced.php:461 +msgid "Connection lost. Saving has been disabled until you are reconnected." +msgstr "Connection lost. Saving has been disabled until you are reconnected." + +#: wp-admin/install.php:160 wp-admin/user-new.php:614 +msgid "Repeat Password" +msgstr "Repeat Password" + +#: wp-admin/user-edit.php:696 +msgid "Repeat New Password" +msgstr "Repeat New Password" + +#: wp-admin/includes/nav-menu.php:1252 +msgid "Add menu items from the column on the left." +msgstr "Add menu items from the column on the left." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/includes/plugin-install.php:404 +msgid "Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page." +msgstr "Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page." + +#. Plugin URI of the plugin +#: hello.php +msgid "http://wordpress.org/plugins/hello-dolly/" +msgstr "http://wordpress.org/plugins/hello-dolly/" + +#: wp-admin/includes/class-theme-upgrader.php:80 +msgid "The theme contains no files." +msgstr "The theme contains no files." + +#: wp-admin/includes/class-wp-upgrader.php:202 +msgid "The package contains no files." +msgstr "The package contains no files." + +#: wp-admin/revision.php:146 +msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." +msgstr "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." + +#: wp-admin/customize.php:155 wp-admin/includes/class-wp-debug-data.php:816 +#: wp-admin/includes/dashboard.php:1164 +msgid "Loading…" +msgstr "Loading…" + +#: wp-admin/post.php:308 +msgid "This item has already been deleted." +msgstr "This item has already been deleted." + +#: wp-admin/post.php:279 +msgid "The item you are trying to restore from the Trash no longer exists." +msgstr "The item you are trying to restore from the Bin no longer exists." + +#: wp-admin/post.php:242 +msgid "The item you are trying to move to the Trash no longer exists." +msgstr "The item you are trying to move to the Bin no longer exists." + +#: wp-admin/nav-menus.php:1118 +msgid "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." +msgstr "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." + +#: wp-admin/nav-menus.php:731 +msgid "If you have not yet created any menus, click the ’create a new menu’ link to get started" +msgstr "If you have not yet created any menus, click the ’create a new menu’ link to get started" + +#: wp-admin/revision.php:148 +msgid "To restore a revision, click Restore This Revision." +msgstr "To restore a revision, click Restore This Revision." + +#: wp-admin/revision.php:145 +msgid "From this screen you can review, compare, and restore revisions:" +msgstr "From this screen you can review, compare, and restore revisions:" + +#: wp-admin/revision.php:144 +msgid "Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added." +msgstr "Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added." + +#: wp-admin/revision.php:143 +msgid "This screen is used for managing your content revisions." +msgstr "This screen is used for managing your content revisions." + +#: wp-admin/includes/revision.php:407 +msgctxt "Followed by post revision info" +msgid "To:" +msgstr "To:" + +#: wp-admin/includes/revision.php:377 +msgctxt "Button label for a next revision" +msgid "Next" +msgstr "Next" + +#: wp-admin/includes/revision.php:373 +msgctxt "Button label for a previous revision" +msgid "Previous" +msgstr "Previous" + +#: wp-admin/includes/revision.php:405 +msgctxt "Followed by post revision info" +msgid "From:" +msgstr "From:" + +#: wp-admin/nav-menus.php:918 +msgctxt "menu" +msgid "Use new menu" +msgstr "Use new menu" + +#: wp-admin/nav-menus.php:897 +msgctxt "menu" +msgid "Edit" +msgstr "Edit" + +#: wp-admin/nav-menus.php:864 +msgid "Select a Menu" +msgstr "Select a Menu" + +#: wp-admin/nav-menus.php:855 +msgid "Assigned Menu" +msgstr "Assigned Menu" + +#: wp-admin/nav-menus.php:854 +msgid "Theme Location" +msgstr "Theme Location" + +#: wp-admin/nav-menus.php:823 +msgid "Manage Locations" +msgstr "Manage Locations" + +#: wp-admin/nav-menus.php:812 +msgid "Edit Menus" +msgstr "Edit Menus" + +#: wp-admin/nav-menus.php:760 +msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" +msgstr "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" + +#: wp-admin/nav-menus.php:759 +msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" +msgstr "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" + +#: wp-admin/nav-menus.php:758 +msgid "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" +msgstr "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" + +#: wp-admin/nav-menus.php:757 +msgid "This screen is used for globally assigning menus to locations defined by your theme." +msgstr "This screen is used for globally assigning menus to locations defined by your theme." + +#: wp-admin/nav-menus.php:752 +msgid "Editing Menus" +msgstr "Editing Menus" + +#: wp-admin/nav-menus.php:747 +msgid "Delete a menu item by expanding it and clicking the Remove link" +msgstr "Delete a menu item by expanding it and clicking the Remove link" + +#: wp-admin/nav-menus.php:746 +msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" +msgstr "To reorganise menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" + +#: wp-admin/nav-menus.php:744 +msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" +msgstr "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" + +#: wp-admin/nav-menus.php:742 +msgid "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." +msgstr "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." + +#: wp-admin/nav-menus.php:737 +msgid "Menu Management" +msgstr "Menu Management" + +#: wp-admin/nav-menus.php:732 +msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." +msgstr "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." + +#: wp-admin/nav-menus.php:730 +msgid "To edit an existing menu, choose a menu from the dropdown and click Select" +msgstr "To edit an existing menu, choose a menu from the dropdown and click Select" + +#: wp-admin/nav-menus.php:729 +msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." +msgstr "The menu management box at the top of the screen is used to control which menu is opened in the editor below." + +#: wp-admin/nav-menus.php:719 +msgid "Add, organize, and modify individual menu items" +msgstr "Add, organise, and modify individual menu items" + +#: wp-admin/nav-menus.php:718 +msgid "Create, edit, and delete menus" +msgstr "Create, edit, and delete menus" + +#: wp-admin/nav-menus.php:717 wp-admin/themes.php:133 +msgid "From this screen you can:" +msgstr "From this screen you can:" + +#: wp-admin/nav-menus.php:709 +msgid "This screen is used for managing your navigation menus." +msgstr "This screen is used for managing your navigation menus." + +#: wp-admin/nav-menus.php:535 +msgid "Menu locations updated." +msgstr "Menu locations updated." + +#: wp-admin/includes/post.php:1922 +msgid "Your latest changes were saved as a revision." +msgstr "Your latest changes were saved as a revision." + +#: wp-admin/includes/media.php:3474 +msgid "Audio Codec:" +msgstr "Audio Codec:" + +#: wp-admin/includes/media.php:3473 +msgid "Audio Format:" +msgstr "Audio Format:" + +#. translators: Audio file genre information. %s: Audio genre name. +#: wp-admin/includes/media.php:387 +msgid "Genre: %s." +msgstr "Genre: %s." + +#. translators: Audio file track information. 1: Audio track number, 2: Total +#. audio tracks. +#: wp-admin/includes/media.php:371 +msgid "Track %1$s of %2$s." +msgstr "Track %1$s of %2$s." + +#. translators: Audio file track information. %d: Year of audio track release. +#: wp-admin/includes/media.php:361 +msgid "Released: %d." +msgstr "Released: %d." + +#. translators: 1: Audio album title, 2: Artist name. +#: wp-admin/includes/media.php:349 +msgid "%1$s by %2$s." +msgstr "%1$s by %2$s." + +#: wp-admin/includes/revision.php:457 +msgid "Restore This Revision" +msgstr "Restore This Revision" + +#. translators: %s: Capability name. +#: wp-admin/user-edit.php:932 +msgid "Denied: %s" +msgstr "Denied: %s" + +#: wp-admin/user-edit.php:918 +msgid "Capabilities" +msgstr "Capabilities" + +#: wp-admin/nav-menus.php:1175 wp-admin/network/settings.php:511 +msgid "Menu Settings" +msgstr "Menu Settings" + +#: wp-admin/nav-menus.php:1075 +msgid "Menu structure" +msgstr "Menu structure" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:289 +msgid "To the top" +msgstr "To the top" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:286 +msgid "Down one" +msgstr "Down one" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:285 +msgid "Up one" +msgstr "Up one" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:284 +msgid "Move" +msgstr "Move" + +#. translators: 1: Post creation date, 2: Post creation time. +#: wp-admin/includes/ajax-actions.php:1638 +msgid "Draft created on %1$s at %2$s" +msgstr "Draft created on %1$s at %2$s" + +#. translators: %s: User's display name. +#: wp-admin/post.php:257 +msgid "You cannot move this item to the Trash. %s is currently editing." +msgstr "You cannot move this item to the Bin. %s is currently editing." + +#. translators: %s: User's display name. +#: wp-admin/includes/misc.php:1208 +msgid "%s has taken over and is currently editing." +msgstr "%s has taken over and is currently editing." + +#: wp-admin/nav-menus.php:980 +msgid "Select a menu to edit:" +msgstr "Select a menu to edit:" + +#. translators: %s: URL to Upgrade Network screen. +#: wp-admin/includes/ms.php:699 +msgid "Thank you for Updating! Please visit the Upgrade Network page to update all your sites." +msgstr "Thank you for Updating! Please visit the Upgrade Network page to update all your sites." + +#: wp-admin/setup-config.php:509 +msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" +msgstr "All right, sunshine! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" + +#: wp-admin/includes/class-wp-debug-data.php:1619 +msgid "Client version" +msgstr "Client version" + +#: wp-admin/nav-menus.php:1191 +msgid "Auto add pages" +msgstr "Auto add pages" + +#: wp-admin/nav-menus.php:1145 +msgid "Give your menu a name, then click Create Menu." +msgstr "Give your menu a name, then click Create Menu." + +#: wp-admin/nav-menus.php:1116 +msgid "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." +msgstr "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." + +#: wp-admin/nav-menus.php:358 +msgid "Selected menus have been successfully deleted." +msgstr "Selected menus have been successfully deleted." + +#: wp-admin/theme-editor.php:32 +msgid "For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." +msgstr "For PHP files, you can use the documentation dropdown to select from functions recognised in that file. Look Up takes you to a web page with reference material about that particular function." + +#: wp-admin/plugin-editor.php:308 wp-admin/theme-editor.php:332 +msgid "Look Up" +msgstr "Look Up" + +#: wp-admin/plugin-editor.php:140 +msgid "The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." +msgstr "The documentation menu below the editor lists the PHP functions recognised in the plugin file. Clicking Look Up takes you to a web page about that particular function." + +#. translators: %s: User's display name. +#: wp-admin/includes/class-wp-posts-list-table.php:1126 +#: wp-admin/includes/misc.php:1155 +msgid "%s is currently editing" +msgstr "%s is currently editing" + +#: wp-admin/edit-form-advanced.php:354 +msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." +msgstr "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." + +#: wp-admin/includes/image-edit.php:83 +msgid "Image rotation is not supported by your web host." +msgstr "Image rotation is not supported by your web host." + +#. translators: %s: A link to install the Link Manager plugin. +#: wp-admin/includes/bookmark.php:356 +msgid "If you are looking to use the link manager, please install the Link Manager plugin." +msgstr "If you are looking to use the link manager, please install the Link Manager plugin." + +#: wp-admin/widgets-form.php:65 +msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." +msgstr "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." + +#: wp-admin/edit-tags.php:289 +msgid "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." +msgstr "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." + +#: wp-admin/edit-form-advanced.php:367 +msgid "Several boxes on this screen contain settings for how your content will be published, including:" +msgstr "Several boxes on this screen contain settings for how your content will be published, including:" + +#: wp-admin/edit-form-advanced.php:360 +msgid "Inserting Media" +msgstr "Inserting Media" + +#: wp-admin/edit-form-advanced.php:275 +msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." +msgstr "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimise or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." + +#: wp-admin/includes/class-custom-image-header.php:139 +msgid "Do not forget to click “Save Changes” when you are done!" +msgstr "Do not forget to click “Save Changes” when you are done!" + +#: wp-admin/includes/class-custom-background.php:102 +msgid "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." +msgstr "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." + +#. translators: 1: URL to browser uploader, 2: Additional link attributes. +#: wp-admin/includes/media.php:3049 +msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." +msgstr "You are using the multi-file uploader. Problems? Try the browser uploader instead." + +#: wp-admin/async-upload.php:68 +msgctxt "media item" +msgid "Edit" +msgstr "Edit" + +#. translators: %s: Default text color. +#: wp-admin/includes/class-custom-image-header.php:795 +msgctxt "color" +msgid "Default: %s" +msgstr "Default: %s" + +#: wp-admin/includes/class-wp-media-list-table.php:368 +#: wp-admin/includes/class-wp-media-list-table.php:402 +msgctxt "column name" +msgid "Uploaded to" +msgstr "Uploaded to" + +#: wp-admin/includes/ajax-actions.php:2622 +#: wp-admin/includes/class-custom-background.php:542 +#: wp-admin/includes/class-custom-image-header.php:980 +msgid "The uploaded file is not a valid image. Please try again." +msgstr "The uploaded file is not a valid image. Please try again." + +#: wp-admin/includes/class-custom-image-header.php:683 +msgid "Choose a Custom Header" +msgstr "Choose a Custom Header" + +#: wp-admin/includes/class-custom-background.php:362 +msgid "Choose a Background Image" +msgstr "Choose a Background Image" + +#: wp-admin/includes/class-custom-image-header.php:138 +msgid "In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a colour for the text by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker." + +#: wp-admin/includes/class-custom-background.php:103 +msgid "You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "You can also choose a background colour by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker." + +#: wp-admin/edit-comments.php:221 +msgid "In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post." +msgstr "In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post." + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:383 wp-admin/users.php:550 +msgid "ID #%1$s: %2$s" +msgstr "ID #%1$s: %2$s" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:370 +msgid "ID #%1$s: %2$s The current user will not be deleted." +msgstr "ID #%1$s: %2$s The current user will not be deleted." + +#. translators: Storage space that's been used. 1: Percentage of used space, 2: +#. Total space allowed in megabytes or gigabytes. +#: wp-admin/includes/ms.php:266 +msgid "Used: %1$s%% of %2$s" +msgstr "Used: %1$s%% of %2$s" + +#: wp-admin/users.php:345 +msgid "Please select an option." +msgstr "Please select an option." + +#: wp-admin/setup-config.php:445 +msgid "After you’ve done that, click “Run the installation”." +msgstr "After you’ve done that, click “Run the installation”." + +#: wp-admin/plugin-install.php:115 +msgid "If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin." +msgstr "If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin." + +#: wp-admin/plugin-install.php:114 +msgid "You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username." +msgstr "You can also browse a user’s favourite plugins, by using the Favourites link above the plugins list and entering their WordPress.org username." + +#: wp-admin/plugin-install.php:112 +msgid "If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag." +msgstr "If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag." + +#: wp-admin/install.php:211 wp-admin/options-reading.php:245 +msgid "It is up to search engines to honor this request." +msgstr "It is up to search engines to honour this request." + +#: wp-admin/install.php:202 wp-admin/install.php:210 +#: wp-admin/options-reading.php:223 wp-admin/options-reading.php:244 +msgid "Discourage search engines from indexing this site" +msgstr "Discourage search engines from indexing this site" + +#: wp-admin/install.php:200 wp-admin/options-reading.php:221 +msgid "Allow search engines to index this site" +msgstr "Allow search engines to index this site" + +#. translators: Hidden accessibility text. +#: wp-admin/install.php:184 wp-admin/install.php:193 +#: wp-admin/options-reading.php:44 wp-admin/options-reading.php:208 +#: wp-admin/options-reading.php:216 +msgid "Search engine visibility" +msgstr "Search engine visibility" + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1702 wp-admin/update-core.php:923 +msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." +msgstr "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." + +#: wp-admin/includes/plugin-install.php:376 wp-admin/theme-install.php:237 +msgid "Get Favorites" +msgstr "Get Favourites" + +#: wp-admin/includes/plugin-install.php:374 wp-admin/theme-install.php:234 +msgid "Your WordPress.org username:" +msgstr "Your WordPress.org username:" + +#: wp-admin/includes/plugin-install.php:370 +msgid "If you have marked plugins as favorites on WordPress.org, you can browse them here." +msgstr "If you have marked plugins as favourites on WordPress.org, you can browse them here." + +#: wp-admin/includes/dashboard.php:2068 +msgid "Welcome to WordPress!" +msgstr "Welcome to WordPress!" + +#: wp-admin/includes/dashboard.php:400 +msgid "Search engines discouraged" +msgstr "Search engines discouraged" + +#. translators: 1: Link to documentation on child themes, 2: Name of parent +#. theme. +#: wp-admin/includes/class-wp-themes-list-table.php:287 +msgid "This child theme requires its parent theme, %2$s." +msgstr "This child theme requires its parent theme, %2$s." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:115 +msgctxt "Plugin Installer" +msgid "Favorites" +msgstr "Favourites" + +#: wp-admin/theme-install.php:130 +msgid "To install the theme so you can preview it with your site’s content and customize its theme options, click the \"Install\" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the \"Activate\" link, or by navigating to your Manage Themes screen and clicking the \"Live Preview\" link under any installed theme’s thumbnail image." +msgstr "To install the theme so you can preview it with your site’s content and customise its theme options, click the \"Install\" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the \"Activate\" link, or by navigating to your Manage Themes screen and clicking the \"Live Preview\" link under any installed theme’s thumbnail image." + +#: wp-admin/includes/widgets.php:264 +msgctxt "widget" +msgid "Add" +msgstr "Add" + +#: wp-admin/includes/widgets.php:263 +msgctxt "widget" +msgid "Edit" +msgstr "Edit" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:125 +msgid "Search by tag" +msgstr "Search by tag" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:121 +msgid "Search by author" +msgstr "Search by author" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:117 +#: wp-admin/includes/theme-install.php:134 +msgid "Search by keyword" +msgstr "Search by keyword" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:104 +msgid "Type of search" +msgstr "Type of search" + +#: wp-admin/includes/class-wp-screen.php:1064 +msgid "Screen Options Tab" +msgstr "Screen Options Tab" + +#: wp-admin/includes/class-wp-screen.php:873 +msgid "Contextual Help Tab" +msgstr "Contextual Help Tab" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:931 +msgid "Select comment" +msgstr "Select comment" + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:656 +msgid "Tags can be selectively converted to categories using the tag to category converter." +msgstr "Tags can be selectively converted to categories using the tag to category converter." + +#: wp-admin/edit-tags.php:263 +msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." +msgstr "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." + +#: wp-admin/edit-form-advanced.php:317 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Creating a Page is very similar to creating a Post, and the screens can be customised in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." + +#: wp-admin/includes/class-custom-image-header.php:595 +msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." +msgstr "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." + +#: wp-admin/menu-header.php:294 +msgid "Skip to main content" +msgstr "Skip to main content" + +#: wp-admin/includes/class-custom-image-header.php:120 +msgid "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button." +msgstr "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button." + +#: wp-admin/includes/class-custom-image-header.php:958 +msgid "Skip Cropping, Publish Image as Is" +msgstr "Skip Cropping, Publish Image as Is" + +#: wp-admin/includes/class-custom-background.php:363 +#: wp-admin/includes/class-custom-image-header.php:684 +msgid "Choose Image" +msgstr "Choose Image" + +#: wp-admin/includes/class-custom-background.php:360 +#: wp-admin/includes/class-custom-image-header.php:680 +msgid "Or choose an image from your media library:" +msgstr "Or choose an image from your media library:" + +#: wp-admin/includes/class-custom-background.php:350 +#: wp-admin/includes/class-custom-image-header.php:593 +msgid "Select Image" +msgstr "Select Image" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:406 +#: wp-admin/theme-install.php:603 +msgid "Collapse" +msgstr "Collapse" + +#: wp-admin/includes/class-custom-image-header.php:123 +msgid "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." +msgstr "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." + +#: wp-admin/includes/plugin-install.php:1032 +msgctxt "plugin" +msgid "Installed" +msgstr "Installed" + +#: wp-admin/themes.php:180 +msgid "Previewing and Customizing" +msgstr "Previewing and Customising" + +#: wp-admin/theme-install.php:135 +msgid "Previewing and Installing" +msgstr "Previewing and Installing" + +#: wp-admin/theme-install.php:129 +msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." +msgstr "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." + +#: wp-admin/includes/media.php:3066 +msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." +msgstr "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." + +#: wp-admin/tools.php:50 +msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." +msgstr "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." + +#: wp-admin/tools.php:49 +msgid "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content." +msgstr "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realise that the other would work better for their content." + +#. translators: %s: URL to General Settings screen. +#: wp-admin/includes/class-custom-image-header.php:134 +msgid "For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section." +msgstr "For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section." + +#: wp-admin/includes/class-custom-image-header.php:122 +msgid "If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature." +msgstr "If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature." + +#: wp-admin/includes/class-custom-image-header.php:121 +msgid "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button." +msgstr "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button." + +#: wp-admin/includes/class-custom-image-header.php:111 +msgid "You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed." +msgstr "You can choose from the theme’s default header images, or use one of your own. You can also customise how your Site Title and Tagline are displayed." + +#: wp-admin/includes/class-custom-image-header.php:110 +msgid "This screen is used to customize the header section of your theme." +msgstr "This screen is used to customise the header section of your theme." + +#: wp-admin/install.php:328 wp-admin/install.php:341 +msgid "Configuration Error" +msgstr "Configuration Error" + +#: wp-admin/media-new.php:55 +msgid "Revert to the Browser Uploader by clicking the link below the drag and drop box." +msgstr "Revert to the Browser Uploader by clicking the link below the drag and drop box." + +#: wp-admin/users.php:613 wp-admin/network/users.php:260 +msgid "User deleted." +msgstr "User deleted." + +#: wp-admin/includes/class-core-upgrader.php:40 wp-admin/includes/file.php:1741 +#: wp-admin/includes/file.php:1923 +msgid "Could not copy files. You may have run out of disk space." +msgstr "Could not copy files. You may have run out of disk space." + +#: wp-admin/includes/theme-install.php:153 +msgid "Find a theme based on specific features." +msgstr "Find a theme based on specific features." + +#: wp-admin/includes/theme-install.php:95 +msgid "Search for themes by keyword." +msgstr "Search for themes by keyword." + +#: wp-admin/setup-config.php:205 +msgid "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" +msgstr "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" + +#: wp-admin/theme-editor.php:274 +msgid "This theme is broken." +msgstr "This theme is broken." + +#: wp-admin/includes/class-custom-image-header.php:684 +msgid "Set as header" +msgstr "Set as header" + +#: wp-admin/includes/class-custom-background.php:363 +msgid "Set as background" +msgstr "Set as background" + +#. translators: Hidden accessibility text. %s: Theme name. +#: wp-admin/includes/class-theme-upgrader-skin.php:94 +msgid "Customize “%s”" +msgstr "Customise “%s”" + +#: wp-admin/install.php:161 wp-admin/user-edit.php:498 +#: wp-admin/user-edit.php:546 wp-admin/user-new.php:543 +#: wp-admin/user-new.php:547 wp-admin/user-new.php:594 +#: wp-admin/user-new.php:614 +msgid "(required)" +msgstr "(required)" + +#: wp-admin/link.php:114 +msgid "Edit Link" +msgstr "Edit Link" + +#: wp-admin/includes/user.php:213 +msgid "Error: This email is already registered. Please choose another one." +msgstr "Error: This email is already registered. Please choose another one." + +#: wp-admin/includes/user.php:157 +msgid "Error: Please enter a nickname." +msgstr "Error: Please enter a nickname." + +#: wp-admin/credits.php:53 +msgid "https://wordpress.org/about/" +msgstr "https://en-gb.wordpress.org/about/" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1427 +#: wp-admin/includes/nav-menu.php:812 wp-admin/includes/nav-menu.php:1107 +#: wp-admin/update-core.php:501 wp-admin/update-core.php:625 +#: wp-admin/update-core.php:677 wp-admin/update-core.php:801 +msgid "Select All" +msgstr "Select all" + +#: wp-admin/includes/meta-boxes.php:186 wp-admin/js/post.js:888 +msgid "Public, Sticky" +msgstr "Public, Sticky" + +#: wp-admin/includes/meta-boxes.php:109 wp-admin/includes/meta-boxes.php:154 +#: wp-admin/js/post.js:808 wp-admin/js/post.js:810 +msgid "Privately Published" +msgstr "Privately Published" + +#: wp-admin/includes/meta-boxes.php:59 wp-admin/js/post.js:842 +msgid "Save as Pending" +msgstr "Save as Pending" + +#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3010 +msgid "Enter a link URL or click above for presets." +msgstr "Enter a link URL or click above for presets." + +#: wp-admin/includes/media.php:1415 +msgid "Link URL" +msgstr "Link URL" + +#: wp-admin/includes/meta-boxes.php:912 +msgid "No comments yet." +msgstr "No comments yet." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:520 +#: wp-admin/includes/class-wp-themes-list-table.php:281 +#: wp-admin/includes/plugin-install.php:660 +msgid "Version:" +msgstr "Version:" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:404 +#: wp-admin/theme-install.php:70 wp-admin/theme-install.php:601 +msgid "Collapse Sidebar" +msgstr "Collapse Sidebar" + +#: wp-admin/includes/class-wp-plugins-list-table.php:473 +msgid "Plugin" +msgstr "Plugin" + +#: wp-admin/export.php:197 wp-admin/export.php:209 wp-admin/export.php:239 +#: wp-admin/export.php:261 wp-admin/export.php:291 +#: wp-admin/includes/class-wp-users-list-table.php:189 +msgid "All" +msgstr "All" + +#. translators: %s: Number of words. +#: wp-admin/edit-form-advanced.php:638 +msgid "Word count: %s" +msgstr "Word count: %s" + +#: wp-admin/edit-comments.php:399 wp-admin/edit-comments.php:413 +msgid "Edit comment" +msgstr "Edit comment" + +#: wp-admin/options-general.php:508 wp-admin/options-general.php:556 +msgid "Preview:" +msgstr "Preview:" + +#: wp-admin/includes/class-wp-users-list-table.php:397 +#: wp-admin/includes/class-wp-ms-users-list-table.php:217 +msgid "E-mail" +msgstr "Email" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-upgrader.php:93 +msgid "The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme." +msgstr "The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:91 +msgid "Successfully installed the parent theme, %1$s %2$s." +msgstr "Successfully installed the parent theme, %1$s %2$s." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:89 +msgid "The parent theme, %1$s %2$s, is currently installed." +msgstr "The parent theme, %1$s %2$s, is currently installed." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:87 +msgid "Preparing to install %1$s %2$s…" +msgstr "Preparing to install %1$s %2$s…" + +#: wp-admin/includes/class-theme-upgrader.php:85 +msgid "This theme requires a parent theme. Checking if it is installed…" +msgstr "This theme requires a parent theme. Checking if it is installed…" + +#: wp-admin/includes/class-custom-image-header.php:767 +msgid "Show header text with your image." +msgstr "Show header text with your image." + +#: wp-admin/includes/class-custom-image-header.php:130 +#: wp-admin/includes/class-custom-image-header.php:759 +#: wp-admin/includes/class-custom-image-header.php:764 +msgid "Header Text" +msgstr "Header Text" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#: wp-admin/includes/theme.php:255 wp-admin/includes/update.php:553 +#: wp-admin/includes/update.php:745 +msgid "There is a new version of %1$s available. View version %4$s details or update now." +msgstr "There is a new version of %1$s available. View version %4$s details or update now." + +#. translators: %s: Plugin author. +#: wp-admin/includes/plugin.php:215 +msgid "By %s." +msgstr "By %s." + +#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:464 +#: wp-admin/includes/template.php:508 +msgid "Add Comment" +msgstr "Add Comment" + +#. Author URI of the plugin +#: hello.php +msgid "http://ma.tt/" +msgstr "https://ma.tt/" + +#. Description of the plugin +#: hello.php +msgid "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page." +msgstr "This is not just a plugin, it symbolises the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page." + +#. Plugin Name of the plugin +#: hello.php +msgid "Hello Dolly" +msgstr "Hello Dolly" + +#: wp-admin/index.php:78 +msgid "Welcome — Shows links for some of the most common tasks when setting up a new site." +msgstr "Welcome — Shows links for some of the most common tasks when setting up a new site." + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:242 wp-admin/includes/update.php:732 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." +msgstr "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." + +#: wp-admin/install.php:108 wp-admin/install.php:392 +msgctxt "Howdy" +msgid "Welcome" +msgstr "Welcome" + +#: wp-admin/ms-delete-site.php:132 +msgid "Delete My Site Permanently" +msgstr "Delete My Site Permanently" + +#. translators: %s: Site address. +#: wp-admin/ms-delete-site.php:127 +msgid "I'm sure I want to permanently delete my site, and I am aware I can never get it back or use %s again." +msgstr "I'm sure I want to permanently delete my site, and I am aware I can never get it back or use %s again." + +#: wp-admin/ms-delete-site.php:118 +msgid "Remember, once deleted your site cannot be restored." +msgstr "Remember, once deleted your site cannot be restored." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:113 +msgid "If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site." +msgstr "If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site." + +#: wp-admin/ms-delete-site.php:104 +msgid "Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked." +msgstr "Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked." + +#: wp-admin/ms-delete-site.php:31 +msgid "Sorry, the link you clicked is stale. Please select another option." +msgstr "Sorry, the link you clicked is stale. Please select another option." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:26 +msgid "Thank you for using %s, your site has been deleted. Happy trails to you until we meet again." +msgstr "Thank you for using %s, your site has been deleted. Cheerio!" + +#. translators: My Sites label. +#: wp-admin/includes/ms.php:771 +msgid "Primary Site" +msgstr "Primary Site" + +#: wp-admin/includes/ms.php:646 +msgid "British English" +msgstr "UK English" + +#: wp-admin/includes/ms.php:642 +msgid "American English" +msgstr "US English" + +#: wp-admin/includes/ms.php:599 +msgid "View Site" +msgstr "View Site" + +#: wp-admin/includes/ms.php:598 +msgid "Visit Dashboard" +msgstr "Visit Dashboard" + +#: wp-admin/includes/ms.php:592 +msgid "Your Sites" +msgstr "Your Sites" + +#: wp-admin/includes/ms.php:590 +msgid "If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way." +msgstr "If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way." + +#. translators: 1: Site title. +#: wp-admin/includes/ms.php:578 wp-admin/includes/ms.php:587 +msgid "You attempted to access the \"%1$s\" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the \"%1$s\" dashboard, please contact your network administrator." +msgstr "You attempted to access the \"%1$s\" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the \"%1$s\" dashboard, please contact your network administrator." + +#: wp-admin/includes/ms.php:316 +msgid "MB (Leave blank for network default)" +msgstr "MB (Leave blank for network default)" + +#. translators: New admin email address notification email subject. %s: Site +#. title. +#: wp-admin/includes/misc.php:1520 +msgid "[%s] New Admin Email Address" +msgstr "[%s] New Admin Email Address" + +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1161 +#: wp-admin/includes/class-wp-debug-data.php:1272 +#: wp-admin/includes/class-wp-debug-data.php:1431 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 +#: wp-admin/includes/class-wp-debug-data.php:1562 +msgid "Disabled" +msgstr "Disabled" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:557 +msgid "Paused (%s)" +msgid_plural "Paused (%s)" +msgstr[0] "Paused (%s)" +msgstr[1] "Paused (%s)" + +#: wp-admin/my-sites.php:127 +msgid "Global Settings" +msgstr "Global Settings" + +#: wp-admin/my-sites.php:86 +msgid "You must be a member of at least one site to use this page." +msgstr "You must be a member of at least one site to use this page." + +#: wp-admin/my-sites.php:33 +msgid "The primary site you chose does not exist." +msgstr "The primary site you chose does not exist." + +#: wp-admin/setup-config.php:264 +msgid "If you want to run multiple WordPress installations in a single database, change this." +msgstr "If you want to run multiple WordPress installations in a single database, change this." + +#: wp-admin/setup-config.php:262 +msgid "Table Prefix" +msgstr "Table Prefix" + +#: wp-admin/setup-config.php:252 +msgid "Database Host" +msgstr "Database Host" + +#: wp-admin/setup-config.php:242 +msgctxt "example password" +msgid "password" +msgstr "password" + +#: wp-admin/setup-config.php:235 +msgctxt "example username" +msgid "username" +msgstr "username" + +#: wp-admin/setup-config.php:229 +msgid "Database Name" +msgstr "Database Name" + +#: wp-admin/setup-config.php:226 +msgid "Below you should enter your database connection details. If you are not sure about these, contact your host." +msgstr "Below you should enter your database connection details. If you are not sure about these, contact your host." + +#: wp-admin/setup-config.php:207 +msgid "Let’s go!" +msgstr "Let’s go!" + +#: wp-admin/setup-config.php:176 +msgid "Table prefix (if you want to run more than one WordPress in a single database)" +msgstr "Table prefix (if you want to run more than one WordPress in a single database)" + +#: wp-admin/includes/class-wp-debug-data.php:1628 wp-admin/setup-config.php:175 +msgid "Database host" +msgstr "Database host" + +#: wp-admin/setup-config.php:174 +msgid "Database password" +msgstr "Database password" + +#: wp-admin/includes/class-wp-debug-data.php:1623 wp-admin/setup-config.php:173 +msgid "Database username" +msgstr "Database username" + +#: wp-admin/includes/class-wp-debug-data.php:1633 wp-admin/setup-config.php:172 +msgid "Database name" +msgstr "Database name" + +#: wp-admin/setup-config.php:111 +msgid "WordPress › Setup Configuration File" +msgstr "WordPress › Setup Configuration File" + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:76 +msgid "The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:63 +msgid "The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." + +#. translators: %s: wp-config-sample.php +#: wp-admin/setup-config.php:52 +msgid "Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation." +msgstr "Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation." + +#. translators: %s: wp-config.php +#: wp-admin/maint/repair.php:38 +msgid "To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page." +msgstr "To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page." + +#: wp-admin/includes/class-wp-comments-list-table.php:221 +msgid "No comments awaiting moderation." +msgstr "No comments awaiting moderation." + +#: wp-admin/includes/plugin-install.php:581 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Other Notes" + +#: wp-admin/includes/plugin-install.php:579 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: wp-admin/includes/plugin-install.php:578 +msgctxt "Plugin installer section title" +msgid "Screenshots" +msgstr "Screenshots" + +#: wp-admin/includes/plugin-install.php:577 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: wp-admin/includes/plugin-install.php:576 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: wp-admin/includes/plugin-install.php:575 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Description" + +#: wp-admin/includes/plugin-install.php:708 +msgid "Plugin Homepage »" +msgstr "Plugin Homepage »" + +#: wp-admin/export.php:52 +msgid "You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status." +msgstr "You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:129 +msgid "Failed to repair the %1$s table. Error: %2$s" +msgstr "Failed to repair the %1$s table. Error: %2$s" + +#: wp-admin/user-new.php:281 +msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." +msgstr "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." + +#: wp-admin/includes/image-edit.php:329 +msgid "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor." +msgstr "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor." + +#: wp-admin/options-writing.php:35 +msgid "Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret." +msgstr "Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret." + +#: wp-admin/users.php:47 +msgid "You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed." +msgstr "You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed." + +#: wp-admin/import.php:26 +msgid "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." +msgstr "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." + +#. translators: %s: URL to view the autosave. +#: wp-admin/edit-form-advanced.php:246 +msgid "There is an autosave of this post that is more recent than the version below. View the autosave" +msgstr "There is an autosave of this post that is more recent than the version below. View the autosave" + +#: wp-admin/includes/class-custom-image-header.php:915 +#: wp-admin/includes/class-custom-image-header.php:1074 +#: wp-admin/includes/class-custom-image-header.php:1420 +msgid "Image could not be processed. Please go back and try again." +msgstr "Image could not be processed. Please go back and try again." + +#: wp-admin/themes.php:263 +msgid "The active theme is broken. Reverting to the default theme." +msgstr "The active theme is broken. Reverting to the default theme." + +#: wp-admin/maint/repair.php:186 +msgid "WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing." +msgstr "WordPress can also attempt to optimise the database. This improves performance in some situations. Repairing and optimising the database can take a long time and the database will be locked while optimising." + +#: wp-admin/maint/repair.php:182 +msgid "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient." +msgstr "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient." + +#: wp-admin/maint/repair.php:170 +msgid "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users." +msgstr "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorised users." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:119 +msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" +msgstr "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" + +#: wp-admin/user-new.php:454 +msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." + +#: wp-admin/user-new.php:450 +msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." + +#: wp-admin/user-edit.php:374 +msgid "Show Toolbar when viewing site" +msgstr "Show toolbar when viewing site" + +#. translators: %s: HelpHub URL. +#. translators: %s: Documentation URL. +#: wp-admin/about.php:76 wp-admin/about.php:368 +msgid "For more information, see the release notes." +msgstr "For more information, see the release notes." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. More +#. than one security issue. +#: wp-admin/about.php:362 +msgid "Version %1$s addressed some security issues and fixed %2$s bug." +msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." +msgstr[0] "Version %1$s addressed some security issues and fixed %2$s bug." +msgstr[1] "Version %1$s addressed some security issues and fixed %2$s bugs." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. Singular +#. security issue. +#: wp-admin/about.php:356 +msgid "Version %1$s addressed a security issue and fixed %2$s bug." +msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." +msgstr[0] "Version %1$s addressed a security issue and fixed %2$s bug." +msgstr[1] "Version %1$s addressed a security issue and fixed %2$s bugs." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. +#: wp-admin/about.php:64 wp-admin/about.php:350 +msgid "Version %1$s addressed %2$s bug." +msgid_plural "Version %1$s addressed %2$s bugs." +msgstr[0] "Version %1$s addressed %2$s bug." +msgstr[1] "Version %1$s addressed %2$s bugs." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:347 +msgid "Version %s addressed some security issues." +msgstr "Version %s addressed some security issues." + +#: wp-admin/about.php:59 wp-admin/about.php:341 +msgid "Maintenance and Security Release" +msgstr "Maintenance and Security Release" + +#: wp-admin/about.php:338 +msgid "Security Release" +msgstr "Security Release" + +#: wp-admin/about.php:335 +msgid "Maintenance Release" +msgstr "Maintenance Release" + +#: wp-admin/about.php:50 wp-admin/contribute.php:34 wp-admin/credits.php:37 +#: wp-admin/freedoms.php:40 wp-admin/privacy.php:34 +msgid "What’s New" +msgstr "What’s New" + +#: wp-admin/options-permalink.php:25 +msgid "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." +msgstr "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1710 wp-admin/update-core.php:931 +msgid "Welcome to WordPress %1$s. Learn more." +msgstr "Welcome to WordPress %1$s. Learn more." + +#: wp-admin/media-new.php:51 +msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" +msgstr "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" + +#: wp-admin/edit-tags.php:299 +msgid "Adding Tags" +msgstr "Adding Tags" + +#: wp-admin/edit-tags.php:299 +msgid "Adding Categories" +msgstr "Adding Categories" + +#: wp-admin/plugins.php:577 +msgid "Troubleshooting" +msgstr "Troubleshooting" + +#: wp-admin/update-core.php:1011 +msgid "How to Update" +msgstr "How to Update" + +#: wp-admin/export.php:178 +msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site." +msgstr "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site." + +#: wp-admin/upload.php:393 +msgid "Attaching Files" +msgstr "Attaching Files" + +#: wp-admin/edit.php:290 +msgid "You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply." +msgstr "You can also edit or move multiple posts to the Bin at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply." + +#: wp-admin/edit.php:274 wp-admin/upload.php:378 wp-admin/users.php:74 +msgid "Available Actions" +msgstr "Available Actions" + +#: wp-admin/edit.php:262 +msgid "You can customize the display of this screen’s contents in a number of ways:" +msgstr "You can customise the display of this screen’s contents in a number of ways:" + +#: wp-admin/edit.php:260 wp-admin/users.php:43 +msgid "Screen Content" +msgstr "Screen Content" + +#: wp-admin/edit.php:254 +msgid "This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow." +msgstr "This screen provides access to all of your posts. You can customise the display of this screen to suit your workflow." + +#. translators: %s: URL to Add Plugins screen. +#: wp-admin/import.php:234 +msgid "If the importer you need is not listed, search the plugin directory to see if an importer is available." +msgstr "If the importer you need is not listed, search the plugin directory to see if an importer is available." + +#: wp-admin/edit-comments.php:216 +msgid "Moderating Comments" +msgstr "Moderating Comments" + +#. translators: %s: URL to Import screen. +#: wp-admin/tools.php:78 +msgid "If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen." +msgstr "If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen." + +#: wp-admin/plugin-install.php:110 +msgid "Adding Plugins" +msgstr "Adding Plugins" + +#: wp-admin/themes.php:164 +msgid "Adding Themes" +msgstr "Adding Themes" + +#: wp-admin/user-new.php:304 +msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." +msgstr "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." + +#: wp-admin/user-new.php:306 +msgid "Authors can publish and manage their own posts, and are able to upload files." +msgstr "Authors can publish and manage their own posts, and are able to upload files." + +#: wp-admin/user-new.php:302 +msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" +msgstr "Here is a basic overview of the different user roles and the permissions associated with each one:" + +#: wp-admin/user-new.php:301 +msgid "User Roles" +msgstr "User Roles" + +#: wp-admin/user-new.php:288 +msgid "Remember to click the Add User button at the bottom of this screen when you are finished." +msgstr "Remember to click the Add User button at the bottom of this screen when you are finished." + +#: wp-admin/user-new.php:277 +msgid "To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom." +msgstr "To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom." + +#: wp-admin/options-permalink.php:53 +msgid "Custom Structures" +msgstr "Custom Structures" + +#: wp-admin/options-permalink.php:317 +msgid "Common Settings" +msgstr "Common Settings" + +#: wp-admin/options-permalink.php:24 +msgid "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink." +msgstr "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink." + +#: wp-admin/options-writing.php:24 +msgid "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links." +msgstr "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links." + +#: wp-admin/options-media.php:26 +msgid "Uploading Files allows you to choose the folder and path for storing your uploaded files." +msgstr "Uploading Files allows you to choose the folder and path for storing your uploaded files." + +#: wp-admin/themes.php:152 +msgid "Installing themes on Multisite can only be done from the Network Admin section." +msgstr "Installing themes on Multisite can only be done from the Network Admin section." + +#: wp-admin/options-writing.php:46 +msgid "If desired, WordPress will automatically alert various services of your new posts." +msgstr "If desired, WordPress will automatically alert various services of your new posts." + +#: wp-admin/options-writing.php:34 +msgid "Post Via Email" +msgstr "Post Via Email" + +#: wp-admin/options-discussion.php:25 +msgid "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does." +msgstr "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does." + +#: wp-admin/user-edit.php:61 +msgid "You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens." +msgstr "You can change your password, turn on keyboard shortcuts, change the colour scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens." + +#: wp-admin/widgets-form.php:94 +msgid "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar." +msgstr "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar." + +#: wp-admin/widgets-form.php:91 +msgid "Inactive Sidebar (not used)" +msgstr "Inactive Sidebar (not used)" + +#: wp-admin/media-new.php:54 +msgid "Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen." +msgstr "Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen." + +#: wp-admin/media-new.php:53 +msgid "Drag and drop your files into the area below. Multiple files are allowed." +msgstr "Drag and drop your files into the area below. Multiple files are allowed." + +#: wp-admin/edit-tags.php:259 +msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." +msgstr "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." + +#: wp-admin/edit-tags.php:257 +msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." +msgstr "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." + +#: wp-admin/widgets-form.php:62 +msgid "Missing Widgets" +msgstr "Missing Widgets" + +#: wp-admin/widgets-form.php:52 +msgid "Removing and Reusing" +msgstr "Removing and Reusing" + +#: wp-admin/upload.php:395 +msgid "If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file." +msgstr "If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file." + +#: wp-admin/upload.php:370 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen." +msgstr "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customise the display of this screen." + +#: wp-admin/edit.php:320 +msgid "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once." +msgstr "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once." + +#: wp-admin/edit.php:319 +msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." +msgstr "Managing pages is very similar to managing posts, and the screens can be customised in the same way." + +#: wp-admin/edit-form-advanced.php:316 wp-admin/edit.php:311 +msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." +msgstr "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorised or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." + +#: wp-admin/edit-comments.php:223 +msgid "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more." +msgstr "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more." + +#: wp-admin/edit-comments.php:219 +msgid "In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address." +msgstr "In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address." + +#: wp-admin/edit-comments.php:210 +msgid "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions." +msgstr "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customisable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions." + +#: wp-admin/index.php:52 +msgid "Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information." +msgstr "Links in the toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information." + +#: wp-admin/link-manager.php:71 +msgid "Deleting Links" +msgstr "Deleting Links" + +#: wp-admin/link-manager.php:64 +msgid "Links may be separated into Link Categories; these are different than the categories used on your posts." +msgstr "Links may be separated into Link Categories; these are different than the categories used on your posts." + +#. translators: 1: URL to About screen, 2: WordPress version. +#: wp-admin/update-core.php:292 +msgid "Learn more about WordPress %2$s." +msgstr "Learn more about WordPress %2$s." + +#: wp-admin/users.php:55 +msgid "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username." +msgstr "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username." + +#: wp-admin/users.php:53 +msgid "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:" +msgstr "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:" + +#: wp-admin/users.php:48 +msgid "You can view all posts made by a user by clicking on the number under the Posts column." +msgstr "You can view all posts made by a user by clicking on the number under the Posts column." + +#: wp-admin/users.php:46 +msgid "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab." +msgstr "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab." + +#: wp-admin/edit.php:317 +msgid "Managing Pages" +msgstr "Managing Pages" + +#: wp-admin/edit.php:281 +msgid "Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status." +msgstr "Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status." + +#: wp-admin/edit.php:280 +msgid "Trash removes your post from this list and places it in the Trash, from which you can permanently delete it." +msgstr "Bin removes your post from this list and places it in the Bin, from which you can permanently delete it." + +#: wp-admin/edit.php:279 +msgid "Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen." +msgstr "Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen." + +#: wp-admin/edit.php:278 +msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." +msgstr "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." + +#: wp-admin/user-new.php:280 +msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." +msgstr "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." + +#: wp-admin/about.php:322 +msgid "Go to Dashboard → Home" +msgstr "Go to Dashboard → Home" + +#: wp-admin/about.php:315 +msgid "Go to Dashboard → Updates" +msgstr "Go to Dashboard → Updates" + +#: wp-admin/user-edit.php:217 +msgid "Profile updated." +msgstr "Profile updated." + +#. translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. +#: wp-admin/user-new.php:127 +msgid "" +"Hi,\n" +"\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"\n" +"Please click the following link to confirm the invite:\n" +"%4$s" +msgstr "" +"Hi,\n" +"\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"\n" +"Please click the following link to confirm the invite:\n" +"%4$s" + +#: wp-admin/credits.php:138 +msgid "Core Developer" +msgstr "Core Developer" + +#: wp-admin/includes/class-plugin-upgrader.php:490 +msgid "No valid plugins were found." +msgstr "No valid plugins were found." + +#: wp-admin/includes/class-plugin-upgrader.php:82 +msgid "The plugin contains no files." +msgstr "The plugin contains no files." + +#: wp-admin/includes/class-wp-upgrader.php:205 +msgid "The package could not be installed." +msgstr "The package could not be installed." + +#: wp-admin/includes/media.php:1290 +msgid "Attachment Post URL" +msgstr "Attachment Post URL" + +#: wp-admin/menu.php:85 +msgctxt "admin menu" +msgid "All Links" +msgstr "All Links" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:298 +msgid "%s plugins" +msgstr "%s plugins" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:296 +msgid "%s plugin" +msgstr "%s plugin" + +#. translators: 1: Table name. 2: Error message. +#: wp-admin/maint/repair.php:151 +msgid "Failed to optimize the %1$s table. Error: %2$s" +msgstr "Failed to optimise the %1$s table. Error: %2$s" + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:148 +msgid "Successfully optimized the %s table." +msgstr "Successfully optimised the %s table." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:141 +msgid "The %s table is already optimized." +msgstr "The %s table is already optimised." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:126 +msgid "Successfully repaired the %s table." +msgstr "Successfully repaired the %s table." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:116 +msgid "The %s table is okay." +msgstr "The %s table is fine." + +#. translators: %s: Plugin version. +#: wp-admin/update-core.php:577 +msgid "View version %s details." +msgstr "View version %s details." + +#: wp-admin/includes/import.php:217 +msgid "Tumblr" +msgstr "Tumblr" + +#. translators: 1: Browser update URL, 2: Browser name, 3: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1755 +msgid "Update %2$s or learn how to browse happy" +msgstr "Update %2$s or learn how to browse happy" + +#. translators: 1: Link start tag, 2: Link end tag, 3: Width, 4: Height. +#: wp-admin/includes/media.php:3098 +msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." +msgstr "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." + +#: wp-admin/includes/media.php:2958 +msgid "Audio, Video, or Other File" +msgstr "Audio, Video, or Other File" + +#: wp-admin/includes/media.php:2428 +msgid "Insert media from another website" +msgstr "Insert media from another website" + +#: wp-admin/includes/file.php:2507 +msgid "Error: Could not connect to the server. Please verify the settings are correct." +msgstr "Error: Could not connect to the server. Please verify the settings are correct." + +#: wp-admin/index.php:64 +msgid "Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box." +msgstr "Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a grey dotted-line rectangle appear in the location you want to place the box." + +#: wp-admin/index.php:62 +msgid "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well." +msgstr "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well." + +#: wp-admin/index.php:51 +msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." +msgstr "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimise this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." + +#. translators: %s: Number of pending updates. +#. translators: %s: Number of available updates. +#: wp-admin/menu.php:54 wp-admin/network/menu.php:35 +msgid "Updates %s" +msgstr "Updates %s" + +#: wp-admin/menu.php:308 wp-admin/network/menu.php:110 +msgid "Installed Plugins" +msgstr "Installed Plugins" + +#. translators: %s: Number of available plugin updates. +#: wp-admin/menu.php:306 wp-admin/network/menu.php:93 +msgid "Plugins %s" +msgstr "Plugins %s" + +#: wp-admin/menu.php:330 wp-admin/network/menu.php:61 +msgid "All Users" +msgstr "All Users" + +#: wp-admin/includes/ms.php:997 wp-admin/users.php:444 +msgid "Confirm Deletion" +msgstr "Confirm Deletion" + +#: wp-admin/includes/class-wp-users-list-table.php:376 +#: wp-admin/user-edit.php:451 wp-admin/user-new.php:478 +#: wp-admin/user-new.php:639 wp-admin/network/site-users.php:325 +#: wp-admin/network/site-users.php:366 +msgid "Role" +msgstr "Role" + +#: wp-admin/user-edit.php:271 wp-admin/user-new.php:393 +#: wp-admin/user-new.php:447 wp-admin/user-new.php:508 wp-admin/users.php:787 +#: wp-admin/network/site-users.php:316 +msgid "Add Existing User" +msgstr "Add Existing User" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:497 wp-admin/includes/dashboard.php:501 +#: wp-admin/users.php:808 wp-admin/network/site-users.php:292 +#: wp-admin/network/users.php:312 +msgid "Search Users" +msgstr "Search Users" + +#: wp-admin/users.php:720 wp-admin/network/site-users.php:263 +msgid "User removed from this site." +msgstr "User removed from this site." + +#: wp-admin/users.php:674 wp-admin/network/site-users.php:256 +msgid "Changed roles." +msgstr "Changed roles." + +#: wp-admin/comment.php:175 wp-admin/plugins.php:346 wp-admin/plugins.php:360 +#: wp-admin/theme-editor.php:340 wp-admin/includes/network.php:473 +#: wp-admin/network/themes.php:140 wp-admin/network/themes.php:151 +msgid "Caution:" +msgstr "Caution:" + +#: wp-admin/user-new.php:382 wp-admin/network/site-users.php:243 +#: wp-admin/network/user-new.php:91 wp-admin/network/users.php:272 +msgid "User added." +msgstr "User added." + +#: wp-admin/includes/class-wp-users-list-table.php:455 +#: wp-admin/user-edit.php:476 +#: wp-admin/includes/class-wp-ms-users-list-table.php:287 +msgid "Super Admin" +msgstr "Super Admin" + +#. translators: %s: Plugin version. +#. translators: %s: Plugin version number. +#. translators: %s: Theme version number. +#. translators: %s: WordPress version. +#. translators: %s: Theme version. +#: wp-admin/includes/ajax-actions.php:4641 +#: wp-admin/includes/ajax-actions.php:4684 +#: wp-admin/includes/class-wp-debug-data.php:784 +#: wp-admin/includes/class-wp-debug-data.php:960 +#: wp-admin/includes/class-wp-debug-data.php:1347 +#: wp-admin/includes/class-wp-plugins-list-table.php:1172 +#: wp-admin/includes/update.php:250 wp-admin/includes/update.php:290 +#: wp-admin/index.php:113 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:736 +msgid "Version %s" +msgstr "Version %s" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:565 +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Update Available (%s)" +msgstr[1] "Update Available (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:810 +#: wp-admin/includes/class-wp-plugins-list-table.php:900 +#: wp-admin/includes/class-wp-plugins-list-table.php:917 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:772 +msgid "Deactivate" +msgstr "Deactivate" + +#: wp-admin/menu.php:382 wp-admin/ms-delete-site.php:39 +msgid "Delete Site" +msgstr "Delete Site" + +#: wp-admin/my-sites.php:60 wp-admin/options-head.php:20 +#: wp-admin/options.php:367 wp-admin/network/settings.php:142 +#: wp-admin/network/sites.php:366 +msgid "Settings saved." +msgstr "Settings saved." + +#: wp-admin/comment.php:71 wp-admin/edit-comments.php:228 +#: wp-admin/edit-form-advanced.php:311 wp-admin/edit-form-advanced.php:328 +#: wp-admin/edit-form-advanced.php:347 wp-admin/edit-link-form.php:75 +#: wp-admin/edit-tags.php:305 wp-admin/edit.php:300 wp-admin/edit.php:325 +#: wp-admin/erase-personal-data.php:64 wp-admin/export-personal-data.php:64 +#: wp-admin/export.php:58 wp-admin/import.php:31 +#: wp-admin/includes/class-custom-background.php:109 +#: wp-admin/includes/class-custom-image-header.php:144 +#: wp-admin/includes/ms.php:1171 wp-admin/index.php:131 +#: wp-admin/link-manager.php:78 wp-admin/media-new.php:60 +#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:772 +#: wp-admin/options-discussion.php:31 wp-admin/options-general.php:59 +#: wp-admin/options-media.php:40 wp-admin/options-permalink.php:59 +#: wp-admin/options-privacy.php:46 wp-admin/options-reading.php:52 +#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:153 +#: wp-admin/plugin-install.php:120 wp-admin/plugins.php:619 +#: wp-admin/revision.php:158 wp-admin/site-health.php:89 +#: wp-admin/theme-editor.php:51 wp-admin/theme-install.php:154 +#: wp-admin/themes.php:206 wp-admin/tools.php:55 wp-admin/update-core.php:1052 +#: wp-admin/upload.php:198 wp-admin/upload.php:400 wp-admin/user-edit.php:77 +#: wp-admin/user-new.php:314 wp-admin/users.php:81 wp-admin/widgets-form.php:70 +#: wp-admin/network.php:67 wp-admin/network.php:80 +#: wp-admin/network/index.php:55 wp-admin/network/settings.php:63 +#: wp-admin/network/site-new.php:31 wp-admin/network/sites.php:43 +#: wp-admin/network/themes.php:337 wp-admin/network/upgrade.php:31 +#: wp-admin/network/user-new.php:28 wp-admin/network/users.php:241 +msgid "For more information:" +msgstr "For more information:" + +#: wp-admin/edit-form-advanced.php:322 +msgid "About Pages" +msgstr "About Pages" + +#: wp-admin/edit-form-advanced.php:300 +msgid "Title and Post Editor" +msgstr "Title and Post Editor" + +#: wp-admin/edit-form-advanced.php:280 +msgid "Customizing This Display" +msgstr "Customising This Display" + +#: wp-admin/options-reading.php:224 +msgid "Note: Neither of these options blocks access to your site — it is up to search engines to honor your request." +msgstr "Note: Neither of these options blocks access to your site — it is up to search engines to honour your request." + +#: wp-admin/options-permalink.php:270 +msgid "Post name" +msgstr "Post name" + +#: wp-admin/options-permalink.php:254 wp-admin/options-permalink.php:260 +#: wp-admin/options-permalink.php:272 +msgctxt "sample permalink structure" +msgid "sample-post" +msgstr "sample-post" + +#: wp-admin/options-permalink.php:265 wp-admin/options-permalink.php:266 +msgctxt "sample permalink base" +msgid "archives" +msgstr "archives" + +#. translators: %s: URL to Import screen on the main site. +#: wp-admin/import.php:171 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "This importer is not installed. Please install importers from the main site." + +#: wp-admin/includes/class-wp-debug-data.php:177 +#: wp-admin/options-general.php:325 wp-admin/network/site-new.php:250 +msgid "Site Language" +msgstr "Site Language" + +#: wp-admin/options-discussion.php:56 +msgid "Attempt to notify any blogs linked to from the post" +msgstr "Attempt to notify any blogs linked to from the post" + +#. translators: 1: Site title, 2: Site URL, 3: User role. +#: wp-admin/includes/user.php:620 +msgid "" +"Hi,\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"If you do not want to join this site please ignore\n" +"this email. This invitation will expire in a few days.\n" +"\n" +"Please click the following link to activate your user account:\n" +"%%s" +msgstr "" +"Hi,\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"If you do not want to join this site please ignore\n" +"this email. This invitation will expire in a few days.\n" +"\n" +"Please click the following link to activate your user account:\n" +"%%s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:537 wp-admin/includes/theme.php:344 +msgid "Post Formats" +msgstr "Post Formats" + +#: wp-admin/includes/theme.php:343 +msgid "Full Width Template" +msgstr "Full Width Template" + +#: wp-admin/includes/theme.php:340 +msgid "Featured Images" +msgstr "Featured Images" + +#: wp-admin/includes/theme.php:339 +msgid "Featured Image Header" +msgstr "Featured Image Header" + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1726 +msgid "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." +msgstr "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1720 +msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." +msgstr "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." + +#: wp-admin/includes/nav-menu.php:1304 +msgid "There are some invalid menu items. Please check or delete them." +msgstr "There are some invalid menu items. Please check or delete them." + +#: wp-admin/edit-tag-form.php:150 wp-admin/edit-tags.php:464 +#: wp-admin/includes/class-wp-terms-list-table.php:192 +#: wp-admin/includes/class-wp-terms-list-table.php:219 +#: wp-admin/includes/class-wp-terms-list-table.php:696 +msgctxt "term name" +msgid "Name" +msgstr "Name" + +#: wp-admin/includes/template.php:592 wp-admin/includes/template.php:607 +#: wp-admin/includes/template.php:742 +msgctxt "meta name" +msgid "Name" +msgstr "Name" + +#: wp-admin/themes.php:685 +msgctxt "theme name" +msgid "Name" +msgstr "Name" + +#. translators: %s: Theme Directory URL. +#: wp-admin/theme-install.php:109 +msgid "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses." +msgstr "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the licence WordPress uses." + +#. translators: %s: WordPress Plugin Directory URL. +#: wp-admin/plugins.php:569 +msgid "If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgstr "If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!" + +#. translators: %s: MAX_FILE_SIZE +#: wp-admin/includes/file.php:898 +msgid "The uploaded file exceeds the %s directive that was specified in the HTML form." +msgstr "The uploaded file exceeds the %s directive that was specified in the HTML form." + +#: wp-admin/credits.php:151 +msgid "External Libraries" +msgstr "External Libraries" + +#: wp-admin/menu.php:385 wp-admin/network.php:53 wp-admin/network/menu.php:117 +msgid "Network Setup" +msgstr "Network Setup" + +#: wp-admin/menu.php:374 +msgid "Available Tools" +msgstr "Available Tools" + +#: wp-admin/includes/credits.php:101 +msgctxt "Translate this to be the equivalent of English Translators in your language for the credits page Translators section" +msgid "Translators" +msgstr "UK English Translators" + +#. translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: +#. https://wordpress.org/about/license +#: wp-admin/freedoms.php:100 +msgid "Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them." +msgstr "Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible licence, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress licence, it is not recommended to use them." + +#. translators: %s: https://wordpressfoundation.org/trademark-policy +#: wp-admin/freedoms.php:88 +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first." +msgstr "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first." + +#: wp-admin/menu.php:112 +msgid "All Comments" +msgstr "All Comments" + +#: wp-admin/credits.php:132 +msgid "Lead Developer" +msgstr "Lead Developer" + +#: wp-admin/credits.php:131 +msgid "Cofounder, Project Lead" +msgstr "Cofounder, Project Lead" + +#. translators: %s: The current WordPress version number. +#: wp-admin/credits.php:129 +msgid "Core Contributors to WordPress %s" +msgstr "Core Contributors to WordPress %s" + +#: wp-admin/credits.php:127 +msgid "Project Leaders" +msgstr "Project Leaders" + +#: wp-admin/about.php:51 wp-admin/contribute.php:35 wp-admin/credits.php:14 +#: wp-admin/credits.php:38 wp-admin/freedoms.php:41 wp-admin/privacy.php:35 +msgid "Credits" +msgstr "Credits" + +#: wp-admin/widgets-form.php:449 +msgctxt "removing-widget" +msgid "Deactivate" +msgstr "Deactivate" + +#: wp-admin/includes/dashboard.php:37 +msgid "Your browser is out of date!" +msgstr "Your browser is out of date!" + +#: wp-admin/includes/dashboard.php:35 +msgid "You are using an insecure browser!" +msgstr "You are using an insecure browser!" + +#: wp-admin/about.php:52 wp-admin/contribute.php:36 wp-admin/credits.php:39 +#: wp-admin/freedoms.php:19 wp-admin/freedoms.php:42 wp-admin/privacy.php:36 +msgid "Freedoms" +msgstr "Freedoms" + +#: wp-admin/includes/class-custom-image-header.php:717 +msgid "You can use one of these cool headers or show a random one on each page." +msgstr "You can use one of these cool headers or show a random one on each page." + +#: wp-admin/includes/class-custom-image-header.php:715 +msgid "If you do not want to upload your own image, you can use one of these cool headers, or show a random one." +msgstr "If you do not want to upload your own image, you can use one of these cool headers, or show a random one." + +#: wp-admin/includes/class-custom-image-header.php:701 +msgid "You can choose one of your previously uploaded headers, or show a random one." +msgstr "You can choose one of your previously uploaded headers, or show a random one." + +#: wp-admin/menu-header.php:287 +msgid "Collapse Menu" +msgstr "Collapse Menu" + +#: wp-admin/includes/class-custom-image-header.php:699 +msgid "Uploaded Images" +msgstr "Uploaded Images" + +#: wp-admin/includes/class-custom-image-header.php:325 +msgid "Random: Show a different image on each page." +msgstr "Random: Show a different image on each page." + +#: wp-admin/users.php:354 +msgid "You have specified this user for deletion:" +msgstr "You have specified this user for deletion:" + +#. translators: %s: Template name. +#: wp-admin/includes/file.php:93 +msgid "%s Page Template" +msgstr "%s Page Template" + +#: wp-admin/includes/ajax-actions.php:4746 wp-admin/plugins.php:667 +msgid "You cannot delete a plugin while it is active on the main site." +msgstr "You cannot delete a plugin while it is active on the main site." + +#: wp-admin/plugins.php:346 +msgid "This plugin may be active on other sites in the network." +msgstr "This plugin may be active on other sites in the network." + +#: wp-admin/options-writing.php:106 +msgid "Default Post Format" +msgstr "Default Post Format" + +#: wp-admin/plugin-editor.php:148 wp-admin/theme-editor.php:46 +msgid "Any edits to files from this screen will be reflected on all sites in the network." +msgstr "Any edits to files from this screen will be reflected on all sites in the network." + +#: wp-admin/users.php:35 +msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." +msgstr "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." + +#: wp-admin/plugin-editor.php:147 +msgid "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." +msgstr "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." + +#: wp-admin/index.php:75 +msgid "The boxes on your Dashboard screen are:" +msgstr "The boxes on your Dashboard screen are:" + +#. translators: Default page slug. +#: wp-admin/includes/upgrade.php:354 +msgid "sample-page" +msgstr "sample-page" + +#: wp-admin/includes/upgrade.php:352 +msgid "Sample Page" +msgstr "Sample Page" + +#: wp-admin/options-discussion.php:310 +msgid "Retro (Generated)" +msgstr "Retro (Generated)" + +#. translators: %s: URL to Themes tab on Edit Site screen. +#: wp-admin/includes/class-wp-themes-list-table.php:110 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes." +msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes." + +#. translators: 1: URL to Themes tab on Edit Site screen, 2: URL to Add Themes +#. screen. +#: wp-admin/includes/class-wp-themes-list-table.php:101 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes." +msgstr "You currently have only one theme enabled for this site. Visit the Network Admin to enable or install more themes." + +#: wp-admin/user-edit.php:481 +msgid "Super admin privileges cannot be removed because this user has the network admin email." +msgstr "Super admin privileges cannot be removed because this user has the network admin email." + +#. translators: %s: URL to Add Themes screen. +#: wp-admin/includes/class-wp-themes-list-table.php:121 +msgid "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above." +msgstr "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above." + +#: wp-admin/maint/repair.php:180 +msgid "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient." +msgstr "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient." + +#: wp-admin/includes/file.php:56 +msgid "Visual Editor RTL Stylesheet" +msgstr "Visual Editor RTL Stylesheet" + +#: wp-admin/theme-editor.php:341 +msgid "This is a file in your current parent theme." +msgstr "This is a file in your current parent theme." + +#. translators: %s: Link to edit parent theme. +#: wp-admin/theme-editor.php:290 +msgid "This child theme inherits templates from a parent theme, %s." +msgstr "This child theme inherits templates from a parent theme, %s." + +#: wp-admin/includes/class-theme-installer-skin.php:156 +#: wp-admin/js/updates.js:1804 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:469 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:594 +msgid "Network Enable" +msgstr "Network Enable" + +#: wp-admin/upgrade.php:173 +msgid "Your WordPress database has been successfully updated!" +msgstr "Your WordPress database has been successfully updated!" + +#: wp-admin/upgrade.php:172 +msgid "Update Complete" +msgstr "Update Complete" + +#: wp-admin/upgrade.php:162 +msgid "Update WordPress Database" +msgstr "Update WordPress Database" + +#: wp-admin/upgrade.php:161 wp-admin/network/upgrade.php:144 +msgid "The database update process may take a little while, so please be patient." +msgstr "The database update process may take a little while, so please be patient." + +#: wp-admin/upgrade.php:159 wp-admin/network/upgrade.php:140 +msgid "Database Update Required" +msgstr "Database Update Required" + +#: wp-admin/upgrade.php:92 +msgid "No Update Required" +msgstr "No Update Required" + +#: wp-admin/upgrade.php:84 +msgid "WordPress › Update" +msgstr "WordPress › Update" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:188 +msgid "You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released." +msgstr "You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localised version to be released." + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/update.php:539 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin." +msgstr "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin." + +#: wp-admin/includes/class-theme-upgrader-skin.php:44 wp-admin/update.php:219 +msgid "Update Theme" +msgstr "Update Theme" + +#: wp-admin/includes/class-plugin-upgrader-skin.php:62 wp-admin/update.php:63 +msgid "Update Plugin" +msgstr "Update Plugin" + +#: wp-admin/includes/class-theme-upgrader.php:64 +#: wp-admin/includes/class-theme-upgrader.php:101 +msgid "Theme updated successfully." +msgstr "Theme updated successfully." + +#: wp-admin/includes/ajax-actions.php:4362 +#: wp-admin/includes/class-theme-upgrader.php:63 +#: wp-admin/includes/class-theme-upgrader.php:100 +msgid "Theme update failed." +msgstr "Theme update failed." + +#: wp-admin/includes/class-plugin-upgrader.php:65 +#: wp-admin/includes/class-plugin-upgrader.php:92 +msgid "Plugin updated successfully." +msgstr "Plugin updated successfully." + +#: wp-admin/includes/ajax-actions.php:4703 +#: wp-admin/includes/class-plugin-upgrader.php:64 +#: wp-admin/includes/class-plugin-upgrader.php:91 +msgid "Plugin update failed." +msgstr "Plugin update failed." + +#: wp-admin/includes/class-core-upgrader.php:35 +#: wp-admin/includes/class-language-pack-upgrader.php:115 +#: wp-admin/includes/class-plugin-upgrader.php:58 +#: wp-admin/includes/class-theme-upgrader.php:57 +msgid "Update package not available." +msgstr "Update package not available." + +#. translators: Hidden accessibility text. +#: wp-admin/export.php:221 wp-admin/export.php:273 wp-admin/export.php:318 +msgid "Date range:" +msgstr "Date range:" + +#: wp-admin/export.php:201 wp-admin/export.php:253 +msgid "Authors:" +msgstr "Authors:" + +#: wp-admin/export.php:191 +msgid "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts." +msgstr "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts." + +#: wp-admin/export.php:190 +msgid "All content" +msgstr "All content" + +#: wp-admin/export.php:180 +msgid "Choose what to export" +msgstr "Choose what to export" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:249 +msgctxt "comments" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Mine (%s)" +msgstr[1] "Mine (%s)" + +#. translators: Admin screen title. %s: Admin screen name. +#: wp-admin/admin-header.php:55 +msgid "%s — WordPress" +msgstr "%s — WordPress" + +#: wp-admin/includes/class-wp-comments-list-table.php:551 +msgctxt "column name" +msgid "In Response To" +msgstr "In Response To" + +#: wp-admin/widgets-form.php:46 +msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." +msgstr "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." + +#: wp-admin/edit-form-advanced.php:342 +msgid "Remember to click Update to save metadata entered or changed." +msgstr "Remember to click Update to save metadata entered or changed." + +#: wp-admin/edit-form-advanced.php:341 +msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." +msgstr "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." + +#: wp-admin/edit-form-advanced.php:340 +msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." +msgstr "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." + +#: wp-admin/edit-form-advanced.php:339 +msgid "This screen allows you to edit fields for metadata in a file within the media library." +msgstr "This screen allows you to edit fields for metadata in a file within the media library." + +#: wp-admin/user-new.php:455 +msgid "Email or Username" +msgstr "Email or Username" + +#: wp-admin/themes.php:235 wp-admin/network/site-themes.php:240 +#: wp-admin/network/themes.php:463 +msgid "Search installed themes" +msgstr "Search installed themes" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/update-core.php:665 +msgid "Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications." +msgstr "Please Note: Any customisations you have made to theme files will be lost. Please consider using child themes for modifications." + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:404 +msgctxt "posts" +msgid "Sticky (%s)" +msgid_plural "Sticky (%s)" +msgstr[0] "Sticky (%s)" +msgstr[1] "Sticky (%s)" + +#: wp-admin/update-core.php:1117 +msgid "Check again." +msgstr "Check again." + +#. translators: 1: Date, 2: Time. +#: wp-admin/update-core.php:1111 +msgid "Last checked on %1$s at %2$s." +msgstr "Last checked on %1$s at %2$s." + +#: wp-admin/update-core.php:1086 +msgid "Please select one or more plugins to update." +msgstr "Please select one or more plugins to update." + +#: wp-admin/update-core.php:1076 +msgid "Please select one or more themes to update." +msgstr "Please select one or more themes to update." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:61 +msgid "The update process is starting. This process may take a while on some hosts, so please be patient." +msgstr "The update process is starting. This process may take a while on some hosts, so please be patient." + +#: wp-admin/theme-install.php:243 wp-admin/theme-install.php:265 +msgid "Apply Filters" +msgstr "Apply Filters" + +#: wp-admin/includes/theme.php:338 +msgid "Editor Style" +msgstr "Editor Style" + +#: wp-admin/users.php:235 +msgid "Sorry, you are not allowed to edit users." +msgstr "Sorry, you are not allowed to edit users." + +#: wp-admin/includes/file.php:2560 +msgid "To perform the requested action, WordPress needs to access your web server." +msgstr "To perform the requested action, WordPress needs to access your web server." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1108 +#: wp-admin/includes/class-wp-list-table.php:1117 +msgid "Current Page" +msgstr "Current Page" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:176 +msgid "No themes match your request." +msgstr "No themes match your request." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:510 wp-admin/includes/dashboard.php:514 +#: wp-admin/network/sites.php:413 +msgid "Search Sites" +msgstr "Search Sites" + +#: wp-admin/includes/dashboard.php:454 +msgid "Create a New User" +msgstr "Create a New User" + +#. translators: 1: Text indicating the number of sites on the network, 2: Text +#. indicating the number of users on the network. +#: wp-admin/includes/dashboard.php:466 +msgid "You have %1$s and %2$s." +msgstr "You have %1$s and %2$s." + +#. translators: %s: Number of sites on the network. +#: wp-admin/includes/dashboard.php:463 +msgid "%s site" +msgid_plural "%s sites" +msgstr[0] "%s site" +msgstr[1] "%s sites" + +#. translators: %s: Number of users on the network. +#: wp-admin/includes/dashboard.php:461 +msgid "%s user" +msgid_plural "%s users" +msgstr[0] "%s user" +msgstr[1] "%s users" + +#: wp-admin/includes/dashboard.php:1543 +msgid "https://wordpress.org/news/feed/" +msgstr "https://en-gb.wordpress.org/news/feed/" + +#: wp-admin/includes/dashboard.php:1534 +msgid "https://wordpress.org/news/" +msgstr "https://en-gb.wordpress.org/news/" + +#: wp-admin/options-discussion.php:84 +msgid "(Signup has been disabled. Only members of this site can comment.)" +msgstr "(Signup has been disabled. Only members of this site can comment.)" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:229 wp-admin/includes/update.php:526 +#: wp-admin/includes/update.php:719 +msgid "There is a new version of %1$s available. View version %4$s details." +msgstr "There is a new version of %1$s available. View version %4$s details." + +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:78 +#: wp-admin/includes/class-theme-installer-skin.php:170 +#: wp-admin/includes/class-theme-upgrader-skin.php:127 +msgid "Go to Themes page" +msgstr "Go to Themes page" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:82 +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:83 +#: wp-admin/includes/class-language-pack-upgrader-skin.php:98 +msgid "Go to WordPress Updates page" +msgstr "Go to WordPress Updates page" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:77 +#: wp-admin/includes/class-plugin-installer-skin.php:157 +#: wp-admin/includes/class-plugin-upgrader-skin.php:101 +msgid "Go to Plugins page" +msgstr "Go to Plugins page" + +#: wp-admin/includes/nav-menu.php:1295 +msgid "Click Save Menu to make pending menu items public." +msgstr "Click Save Menu to make pending menu items public." + +#: wp-admin/includes/dashboard.php:1660 +msgid "Storage Space" +msgstr "Storage Space" + +#: wp-admin/includes/dashboard.php:451 +msgid "Create a New Site" +msgstr "Create a New Site" + +#. translators: 1: Image width in pixels, 2: Image height in pixels. +#: wp-admin/includes/class-custom-image-header.php:602 +msgid "Images of exactly %1$d × %2$d pixels will be used as-is." +msgstr "Images of exactly %1$d × %2$d pixels will be used as-is." + +#: wp-admin/includes/class-custom-image-header.php:952 +msgid "Crop and Publish" +msgstr "Crop and Publish" + +#: wp-admin/edit-link-form.php:70 +msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." +msgstr "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." + +#: wp-admin/includes/file.php:2570 +msgid "FTP Password" +msgstr "FTP Password" + +#: wp-admin/includes/file.php:2569 +msgid "FTP Username" +msgstr "FTP Username" + +#: wp-admin/includes/file.php:2566 +msgid "FTP/SSH Password" +msgstr "FTP/SSH Password" + +#: wp-admin/includes/file.php:2565 +msgid "FTP/SSH Username" +msgstr "FTP/SSH Username" + +#: wp-admin/widgets-form.php:64 +msgid "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area." +msgstr "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area." + +#. translators: %s: URL to create a new page. +#: wp-admin/options-reading.php:29 +msgid "You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed." +msgstr "You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed." + +#: wp-admin/options-permalink.php:54 +msgid "The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized." +msgstr "The Optional fields let you customise the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorised” category could be /topics/uncategorised instead of /category/uncategorised." + +#. translators: 1: %category%, 2: %tag% +#: wp-admin/options-permalink.php:42 +msgid "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s." +msgstr "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s." + +#. translators: %s: Percent sign (%). +#: wp-admin/options-permalink.php:37 +msgid "If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there." +msgstr "If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there." + +#: wp-admin/widgets-form.php:54 +msgid "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." +msgstr "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." + +#: wp-admin/users.php:36 +msgid "To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section." +msgstr "To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section." + +#: wp-admin/options-media.php:20 +msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." +msgstr "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." + +#: wp-admin/options-general.php:28 +msgid "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." +msgstr "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." + +#: wp-admin/edit-form-advanced.php:407 +msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." +msgstr "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." + +#: wp-admin/includes/file.php:2574 +msgid "If you do not remember your credentials, you should contact your web host." +msgstr "If you do not remember your credentials, you should contact your web host." + +#: wp-admin/includes/file.php:2568 +msgid "Please enter your FTP credentials to proceed." +msgstr "Please enter your FTP credentials to proceed." + +#: wp-admin/includes/file.php:2564 +msgid "Please enter your FTP or SSH credentials to proceed." +msgstr "Please enter your FTP or SSH credentials to proceed." + +#: wp-admin/user-edit.php:60 +msgid "Your profile contains information about you (your “account”) as well as some personal options related to using WordPress." +msgstr "Your profile contains information about you (your “account”) as well as some personal options related to using WordPress." + +#. translators: %s: /wp-content/themes +#: wp-admin/theme-install.php:116 +msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." +msgstr "You can Upload a theme manually if you have already downloaded its zip archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." + +#: wp-admin/edit-form-advanced.php:394 +msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." +msgstr "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." + +#: wp-admin/user-new.php:305 +msgid "Contributors can write and manage their posts but not publish posts or upload media files." +msgstr "Contributors can write and manage their posts but not publish posts or upload media files." + +#: wp-admin/user-new.php:308 +msgid "Administrators have access to all the administration features." +msgstr "Administrators have access to all the administration features." + +#: wp-admin/plugin-editor.php:138 +msgid "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." +msgstr "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customisations." + +#: wp-admin/link-manager.php:73 +msgid "If you delete a link, it will be removed permanently, as Links do not have a Trash function yet." +msgstr "If you delete a link, it will be removed permanently, as Links do not have a Rubbish Bin function yet." + +#. translators: %s: URL to Widgets screen. +#: wp-admin/link-manager.php:61 +msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." +msgstr "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." + +#: wp-admin/edit-tags.php:286 +msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." + +#. translators: %s: URL to Press This bookmarklet. +#: wp-admin/edit-form-advanced.php:308 +msgid "You can also create posts with the Press This bookmarklet." +msgstr "You can also create posts with the Press This bookmarklet." + +#: wp-admin/includes/class-custom-background.php:104 +msgid "Do not forget to click on the Save Changes button when you are finished." +msgstr "Do not forget to click on the Save Changes button when you are finished." + +#: wp-admin/includes/class-custom-background.php:101 +msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." +msgstr "You can customise the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a colour." + +#: wp-admin/user-new.php:307 +msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." +msgstr "Editors can publish posts, manage posts as well as manage other people’s posts, etc." + +#: wp-admin/user-edit.php:66 +msgid "Remember to click the Update Profile button when you are finished." +msgstr "Remember to click the Update Profile button when you are finished." + +#: wp-admin/user-edit.php:65 +msgid "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so." +msgstr "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so." + +#: wp-admin/user-edit.php:63 +msgid "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts." +msgstr "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts." + +#: wp-admin/comment.php:66 +msgid "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment." +msgstr "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment." + +#: wp-admin/comment.php:65 +msgid "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error." +msgstr "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error." + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:34 +msgid "You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds." +msgstr "You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds." + +#: wp-admin/options-reading.php:26 +msgid "This screen contains the settings that affect the display of your content." +msgstr "This screen contains the settings that affect the display of your content." + +#: wp-admin/options-general.php:47 +msgid "UTC means Coordinated Universal Time." +msgstr "UTC is the same as Greenwich Mean Time (GMT)." + +#: wp-admin/options-general.php:27 +msgid "The fields on this screen determine some of the basics of your site setup." +msgstr "The fields on this screen determine some of the basics of your site setup." + +#: wp-admin/options-discussion.php:26 wp-admin/options-general.php:48 +#: wp-admin/options-media.php:29 wp-admin/options-permalink.php:26 +#: wp-admin/options-permalink.php:46 wp-admin/options-permalink.php:55 +#: wp-admin/options-reading.php:37 wp-admin/options-writing.php:25 +msgid "You must click the Save Changes button at the bottom of the screen for new settings to take effect." +msgstr "You must click the Save Changes button at the bottom of the screen for new settings to take effect." + +#: wp-admin/edit-link-form.php:69 +msgid "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box." +msgstr "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimise boxes by clicking on the title bar of the box." + +#: wp-admin/update-core.php:643 +msgid "Your themes are all up to date." +msgstr "Your themes are all up to date." + +#: wp-admin/update-core.php:470 +msgid "Your plugins are all up to date." +msgstr "Your plugins are all up to date." + +#: wp-admin/update-core.php:287 +msgid "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated." +msgstr "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated." + +#: wp-admin/update-core.php:255 +msgid "An updated version of WordPress is available." +msgstr "An updated version of WordPress is available." + +#: wp-admin/update-core.php:274 +msgid "You have the latest version of WordPress." +msgstr "You have the latest version of WordPress." + +#: wp-admin/plugin-editor.php:181 wp-admin/theme-editor.php:172 +msgid "Function Name…" +msgstr "Function Name…" + +#: wp-admin/includes/class-plugin-installer-skin.php:110 +msgid "Activate Plugin & Run Importer" +msgstr "Activate Plugin & Run Importer" + +#: wp-admin/edit-link-form.php:68 +msgid "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." +msgstr "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:643 +msgid "Categories can be selectively converted to tags using the category to tag converter." +msgstr "Categories can be selectively converted to tags using the category to tag converter." + +#: wp-admin/import.php:25 +msgid "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform." +msgstr "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform." + +#: wp-admin/export.php:53 +msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." +msgstr "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." + +#: wp-admin/plugin-editor.php:139 +msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." +msgstr "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." + +#: wp-admin/link-manager.php:65 +msgid "You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table." +msgstr "You can customise the display of this screen using the Screen Options tab and/or the dropdown filters above the links table." + +#: wp-admin/plugins.php:579 +msgid "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue." +msgstr "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue." + +#: wp-admin/widgets-form.php:56 +msgid "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop." +msgstr "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop." + +#: wp-admin/widgets-form.php:55 +msgid "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required." +msgstr "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required." + +#: wp-admin/widgets-form.php:45 +msgid "Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them." +msgstr "Widgets are independent sections of content that can be placed into any widgetised area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them." + +#: wp-admin/theme-editor.php:40 +msgid "Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use." +msgstr "Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use." + +#: wp-admin/theme-editor.php:39 +msgid "After typing in your edits, click Update File." +msgstr "After typing in your edits, click Update File." + +#: wp-admin/theme-editor.php:31 +msgid "Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box." +msgstr "Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box." + +#: wp-admin/theme-editor.php:30 +msgid "You can use the theme file editor to edit the individual CSS and PHP files which make up your theme." +msgstr "You can use the theme file editor to edit the individual CSS and PHP files which make up your theme." + +#: wp-admin/includes/meta-boxes.php:1010 +msgid "(no parent)" +msgstr "(no parent)" + +#: wp-admin/edit-form-advanced.php:406 +msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." +msgstr "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." + +#: wp-admin/edit-form-advanced.php:405 +msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." +msgstr "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:68 +msgid "All updates have been completed." +msgstr "All updates have been completed." + +#: wp-admin/edit-tags.php:294 +msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." +msgstr "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." + +#: wp-admin/edit-tags.php:292 +msgid "Description — The description is not prominent by default; however, some themes may display it." +msgstr "Description — The description is not prominent by default; however, some themes may display it." + +#: wp-admin/edit-tags.php:284 +msgid "Name — The name is how it appears on your site." +msgstr "Name — The name is how it appears on your site." + +#: wp-admin/edit-tags.php:280 +msgid "When adding a new tag on this screen, you’ll fill in the following fields:" +msgstr "When adding a new tag on this screen, you’ll fill in the following fields:" + +#: wp-admin/edit-tags.php:278 +msgid "When adding a new category on this screen, you’ll fill in the following fields:" +msgstr "When adding a new category on this screen, you’ll fill in the following fields:" + +#: wp-admin/edit-tags.php:265 +msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." +msgstr "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." + +#. translators: %s: URL to Writing Settings screen. +#: wp-admin/edit-tags.php:253 +msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." +msgstr "You can use categories to define sections of your site and group related posts. The default category is “Uncategorised” until you change it in your writing settings." + +#: wp-admin/includes/class-custom-image-header.php:934 +msgid "You need JavaScript to choose a part of the image." +msgstr "You need JavaScript to choose a part of the image." + +#: wp-admin/includes/class-custom-image-header.php:930 +msgid "Crop Header Image" +msgstr "Crop Header Image" + +#: wp-admin/includes/class-custom-image-header.php:986 +msgid "Image Upload Error" +msgstr "Image Upload Error" + +#: wp-admin/includes/class-custom-image-header.php:773 +msgid "Text Color" +msgstr "Text Colour" + +#: wp-admin/includes/class-custom-image-header.php:750 +msgid "Restore Original Header Image" +msgstr "Restore Original Header Image" + +#: wp-admin/includes/class-custom-image-header.php:749 +msgid "This will restore the original header image. You will not be able to restore any customizations." +msgstr "This will restore the original header image. You will not be able to restore any customisations." + +#: wp-admin/includes/class-custom-image-header.php:747 +msgid "Reset Image" +msgstr "Reset Image" + +#: wp-admin/includes/class-custom-image-header.php:732 +msgid "Remove Header Image" +msgstr "Remove Header Image" + +#: wp-admin/includes/class-custom-image-header.php:731 +msgid "This will remove the header image. You will not be able to restore any customizations." +msgstr "This will remove the header image. You will not be able to restore any customisations." + +#: wp-admin/includes/class-custom-image-header.php:712 +msgid "Default Images" +msgstr "Default Images" + +#: wp-admin/includes/class-wp-comments-list-table.php:810 +#: wp-admin/includes/dashboard.php:785 +msgid "Delete this comment permanently" +msgstr "Delete this comment permanently" + +#: wp-admin/includes/class-wp-comments-list-table.php:800 +msgid "Restore this comment from the Trash" +msgstr "Restore this comment from the Bin" + +#: wp-admin/includes/meta-boxes.php:851 +msgid "Allow comments" +msgstr "Allow comments" + +#: wp-admin/edit-form-advanced.php:395 +msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." +msgstr "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." + +#. translators: %s: Featured image. +#: wp-admin/edit-form-advanced.php:379 +msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." +msgstr "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." + +#: wp-admin/edit-form-advanced.php:285 +msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." +msgstr "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." + +#: wp-admin/edit.php:276 +msgid "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:" +msgstr "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:" + +#: wp-admin/edit.php:267 +msgid "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list." +msgstr "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list." + +#: wp-admin/edit.php:264 +msgid "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab." +msgstr "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab." + +#: wp-admin/users.php:44 +msgid "You can customize the display of this screen in a number of ways:" +msgstr "You can customise the display of this screen in a number of ways:" + +#: wp-admin/plugins.php:806 +msgid "Search installed plugins" +msgstr "Search installed plugins" + +#: wp-admin/nav-menus.php:836 +msgid "Your theme supports one menu. Select which menu you would like to use." +msgstr "Your theme supports %s menu. Select which menu appears in each location." + +#: wp-admin/nav-menus.php:19 +msgid "Your theme does not support navigation menus or widgets." +msgstr "Your theme does not support navigation menus or widgets." + +#: wp-admin/includes/import.php:193 wp-admin/tools.php:48 wp-admin/tools.php:73 +msgid "Categories and Tags Converter" +msgstr "Categories and Tags Converter" + +#: wp-admin/includes/nav-menu.php:584 wp-admin/includes/nav-menu.php:607 +msgid "Most Recent" +msgstr "Most Recent" + +#: wp-admin/export.php:224 wp-admin/export.php:276 wp-admin/export.php:321 +msgid "Start date:" +msgstr "Start date:" + +#: wp-admin/includes/theme-install.php:110 +msgctxt "Theme Installer" +msgid "Tag" +msgstr "Tag" + +#: wp-admin/includes/plugin-install.php:330 +msgctxt "Plugin Installer" +msgid "Tag" +msgstr "Tag" + +#: wp-admin/includes/media.php:2589 +msgctxt "verb" +msgid "Clear" +msgstr "Clear" + +#: wp-admin/comment.php:135 +#: wp-admin/includes/class-wp-comments-list-table.php:375 +msgctxt "comment" +msgid "Mark as spam" +msgstr "Mark as spam" + +#: wp-admin/includes/class-custom-background.php:327 +msgid "Remove Background Image" +msgstr "Remove Background Image" + +#. translators: %s: Post title. +#. translators: %s: Link to post. +#: wp-admin/edit-comments.php:183 wp-admin/edit-comments.php:252 +msgid "Comments on “%s”" +msgstr "Comments on “%s”" + +#: wp-admin/includes/nav-menu.php:1335 +msgid "Show advanced menu properties" +msgstr "Show advanced menu properties" + +#. translators: 1: Plugin version, 2: New version. +#. translators: 1: Theme version, 2: New version. +#: wp-admin/update-core.php:602 wp-admin/update-core.php:780 +msgid "You have version %1$s installed. Update to %2$s." +msgstr "You have version %1$s installed. Update to %2$s." + +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1159 +#: wp-admin/includes/class-wp-debug-data.php:1270 +#: wp-admin/includes/class-wp-debug-data.php:1435 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 +msgid "Enabled" +msgstr "Enabled" + +#: wp-admin/includes/class-wp-comments-list-table.php:791 +msgctxt "comment" +msgid "Not Spam" +msgstr "Not Spam" + +#: wp-admin/includes/class-custom-background.php:342 +msgid "This will restore the original background image. You will not be able to restore any customizations." +msgstr "This will restore the original background image. You will not be able to restore any customisations." + +#: wp-admin/includes/dashboard.php:1552 +msgid "WordPress Blog" +msgstr "WordPress Blog" + +#: wp-admin/users.php:518 +msgid "Remove Users from Site" +msgstr "Remove Users from Site" + +#: wp-admin/includes/class-wp-users-list-table.php:315 +#: wp-admin/user-edit.php:464 wp-admin/user-edit.php:466 wp-admin/users.php:127 +msgid "— No role for this site —" +msgstr "— No role for this site —" + +#: wp-admin/includes/upgrade.php:614 +msgid "New WordPress Site" +msgstr "New WordPress Site" + +#: wp-admin/includes/schema.php:413 +msgid "My Site" +msgstr "My Site" + +#: wp-admin/includes/post.php:919 +msgid "Sorry, you are not allowed to create posts or drafts on this site." +msgstr "Sorry, you are not allowed to create posts or drafts on this site." + +#: wp-admin/includes/post.php:917 +msgid "Sorry, you are not allowed to create pages on this site." +msgstr "Sorry, you are not allowed to create pages on this site." + +#: wp-admin/includes/plugin.php:516 +msgid "Custom site suspended message." +msgstr "Custom site suspended message." + +#: wp-admin/includes/plugin.php:515 +msgid "Custom site inactive message." +msgstr "Custom site inactive message." + +#: wp-admin/includes/plugin.php:514 +msgid "Custom site deleted message." +msgstr "Custom site deleted message." + +#: wp-admin/import.php:78 +msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" +msgstr "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" + +#: wp-admin/includes/nav-menu.php:509 wp-admin/includes/nav-menu.php:874 +msgid "No items." +msgstr "No items." + +#. translators: %s: Asterisk symbol (*). +#: wp-admin/includes/schema.php:1146 +msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." +msgstr "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." + +#. translators: %s: Host name. +#: wp-admin/includes/schema.php:1135 +msgid "The installer attempted to contact a random hostname (%s) on your domain." +msgstr "The installer attempted to contact a random hostname (%s) on your domain." + +#: wp-admin/nav-menus.php:285 +msgid "The menu item has been successfully deleted." +msgstr "The menu item has been successfully deleted." + +#: wp-admin/includes/ajax-actions.php:1689 +msgid "Please provide a custom field name." +msgstr "Please provide a custom field name." + +#: wp-admin/includes/class-custom-background.php:372 +msgid "Display Options" +msgstr "Display Options" + +#: wp-admin/includes/class-custom-background.php:323 +#: wp-admin/includes/class-custom-image-header.php:729 +msgid "Remove Image" +msgstr "Remove Image" + +#: wp-admin/users.php:738 +msgid "Other users have been removed." +msgstr "Other users have been removed." + +#: wp-admin/users.php:730 +msgid "You cannot remove the current user." +msgstr "You cannot remove the current user." + +#: wp-admin/users.php:569 +msgid "There are no valid users selected for removal." +msgstr "There are no valid users selected for removal." + +#: wp-admin/users.php:565 +msgid "Confirm Removal" +msgstr "Confirm Removal" + +#: wp-admin/users.php:523 +msgid "You have specified these users for removal:" +msgstr "You have specified these users for removal:" + +#: wp-admin/users.php:173 wp-admin/users.php:276 +msgid "User deletion is not allowed from this screen." +msgstr "User deletion is not allowed from this screen." + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:67 +msgid "%s updated successfully." +msgstr "%s updated successfully." + +#: wp-admin/includes/user.php:552 +msgid "No thanks, do not remind me again" +msgstr "No thanks, do not remind me again" + +#: wp-admin/includes/user.php:547 +msgid "Yes, take me to my profile page" +msgstr "Yes, take me to my profile page" + +#: wp-admin/includes/upgrade.php:120 +msgid "Your chosen password." +msgstr "Your chosen password." + +#: wp-admin/edit.php:156 wp-admin/post.php:287 wp-admin/upload.php:317 +msgid "Sorry, you are not allowed to restore this item from the Trash." +msgstr "Sorry, you are not allowed to restore this item from the Bin." + +#: wp-admin/edit.php:123 wp-admin/post.php:250 wp-admin/upload.php:296 +msgid "Sorry, you are not allowed to move this item to the Trash." +msgstr "Sorry, you are not allowed to move this item to the Bin." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:378 +msgid "%s comment restored from the Trash." +msgid_plural "%s comments restored from the Trash." +msgstr[0] "%s comment restored from the Bin." +msgstr[1] "%s comments restored from the Bin." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:366 +msgid "%s comment moved to the Trash." +msgid_plural "%s comments moved to the Trash." +msgstr[0] "%s comment moved to the Bin." +msgstr[1] "%s comments moved to the Bin." + +#: wp-admin/update-core.php:660 +msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." +msgstr "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." + +#: wp-admin/user-new.php:365 +msgid "That user is already a member of this site." +msgstr "That user is already a member of this site." + +#: wp-admin/user-new.php:356 +msgid "User has been added to your site." +msgstr "User has been added to your site." + +#: wp-admin/user-new.php:353 +msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." +msgstr "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." + +#: wp-admin/update-core.php:493 +msgid "The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”." +msgstr "The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”." + +#: wp-admin/includes/class-custom-background.php:328 +msgid "This will remove the background image. You will not be able to restore any customizations." +msgstr "This will remove the background image. You will not be able to restore any customisations." + +#. translators: %s: Network title. +#: wp-admin/includes/class-wp-themes-list-table.php:131 +msgid "Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes." +msgstr "Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes." + +#: wp-admin/includes/file.php:31 +msgid "Tag Template" +msgstr "Tag Template" + +#: wp-admin/includes/file.php:28 +msgid "Author Template" +msgstr "Author Template" + +#: wp-admin/includes/file.php:55 +msgid "Visual Editor Stylesheet" +msgstr "Visual Editor Stylesheet" + +#: wp-admin/edit-form-advanced.php:197 +msgid "Page saved." +msgstr "Page saved." + +#. translators: %s: Importer name. +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/import.php:210 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:574 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:826 +#: wp-admin/includes/class-wp-plugins-list-table.php:1197 +#: wp-admin/includes/class-wp-plugins-list-table.php:1656 +msgid "More information about %s" +msgstr "More information about %s" + +#: wp-admin/user-edit.php:479 +msgid "Grant this user super admin privileges for the Network." +msgstr "Grant this user super admin privileges for the Network." + +#: wp-admin/user-edit.php:206 +msgid "This user has super admin privileges." +msgstr "This user has super admin privileges." + +#: wp-admin/install.php:153 wp-admin/user-edit.php:206 +msgid "Important:" +msgstr "Important:" + +#. translators: %s: Theme version. +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-theme-install-list-table.php:321 +#: wp-admin/includes/class-wp-theme-install-list-table.php:478 +#: wp-admin/update-core.php:74 +msgid "Update to version %s" +msgstr "Update to version %s" + +#: wp-admin/setup-config.php:309 +msgid "Error: \"Table Prefix\" can only contain numbers, letters, and underscores." +msgstr "Error: \"Table Prefix\" can only contain numbers, letters, and underscores." + +#: wp-admin/user-edit.php:446 +msgid "Usernames cannot be changed." +msgstr "Usernames cannot be changed." + +#: wp-admin/options-reading.php:180 +msgid "items" +msgstr "items" + +#: wp-admin/nav-menus.php:322 +msgid "The menu has been successfully deleted." +msgstr "The menu has been successfully deleted." + +#. translators: Hidden accessibility text. +#: wp-admin/install.php:184 wp-admin/install.php:191 +#: wp-admin/options-reading.php:44 wp-admin/options-reading.php:208 +#: wp-admin/options-reading.php:214 +msgid "Site visibility" +msgstr "Site visibility" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:224 +msgid "CSS Classes (optional)" +msgstr "CSS Classes (optional)" + +#: wp-admin/includes/nav-menu.php:1337 +msgid "Link Target" +msgstr "Link Target" + +#: wp-admin/nav-menus.php:1101 wp-admin/nav-menus.php:1238 +msgid "Save Menu" +msgstr "Save Menu" + +#. translators: 1: Theme name, 2: Number of the theme, 3: Total number of +#. themes being updated. +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:40 +msgid "Updating Theme %1$s (%2$d/%3$d)" +msgstr "Updating Theme %1$s (%2$d/%3$d)" + +#: wp-admin/includes/schema.php:1150 +msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." +msgstr "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." + +#. translators: %s: Error message. +#: wp-admin/includes/schema.php:1140 +msgid "This resulted in an error message: %s" +msgstr "This resulted in an error message: %s" + +#: wp-admin/includes/schema.php:1014 +msgid "You must provide a valid email address." +msgstr "You must provide a valid email address." + +#: wp-admin/includes/schema.php:1003 wp-admin/includes/schema.php:1009 +msgid "The network already exists." +msgstr "The network already exists." + +#: wp-admin/includes/schema.php:996 +msgid "You must provide a name for your network of sites." +msgstr "You must provide a name for your network of sites." + +#: wp-admin/includes/schema.php:993 +msgid "You must provide a domain name." +msgstr "You must provide a domain name." + +#: wp-admin/includes/user.php:541 +msgid "Notice:" +msgstr "Notice:" + +#: wp-admin/edit-form-advanced.php:572 +msgid "Get Shortlink" +msgstr "Get Shortlink" + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:65 +msgid "The update of %s failed." +msgstr "The update of %s failed." + +#. translators: 1: Plugin name, 2: Number of the plugin, 3: Total number of +#. plugins being updated. +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:39 +msgid "Updating Plugin %1$s (%2$d/%3$d)" +msgstr "Updating Plugin %1$s (%2$d/%3$d)" + +#: wp-admin/includes/upgrade.php:141 +msgid "The password you chose during installation." +msgstr "The password you chose during installation." + +#: wp-admin/includes/upgrade.php:124 +msgid "User already exists. Password inherited." +msgstr "User already exists. Password inherited." + +#: wp-admin/includes/class-wp-automatic-updater.php:529 +#: wp-admin/includes/update-core.php:1696 wp-admin/update-core.php:919 +msgid "WordPress updated successfully." +msgstr "WordPress updated successfully." + +#: wp-admin/update-core.php:872 +msgid "Update WordPress" +msgstr "Update WordPress" + +#: wp-admin/plugins.php:159 wp-admin/update-core.php:496 +#: wp-admin/update-core.php:629 wp-admin/update-core.php:1209 +#: wp-admin/update-core.php:1214 +msgid "Update Plugins" +msgstr "Update Plugins" + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/update-core.php:113 wp-admin/upgrade.php:119 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." + +#: wp-admin/update-core.php:987 wp-admin/update-core.php:1067 +msgid "WordPress Updates" +msgstr "WordPress Updates" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:185 +msgid "Edit menu item" +msgstr "Edit menu item" + +#: wp-admin/about.php:322 +msgid "Go to Dashboard" +msgstr "Go to Dashboard" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:549 +msgid "Drop-in (%s)" +msgid_plural "Drop-ins (%s)" +msgstr[0] "Drop-in (%s)" +msgstr[1] "Drop-ins (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:541 +msgid "Must-Use (%s)" +msgid_plural "Must-Use (%s)" +msgstr[0] "Must-Use (%s)" +msgstr[1] "Must-Use (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:785 +msgid "Inactive:" +msgstr "Inactive:" + +#: wp-admin/plugins.php:411 +msgid "Yes, delete these files and data" +msgstr "Yes, delete these files and data" + +#: wp-admin/plugins.php:393 +msgid "Are you sure you want to delete these files and data?" +msgstr "Are you sure you want to delete these files and data?" + +#: wp-admin/plugins.php:355 +msgid "You are about to remove the following plugin:" +msgstr "You are about to remove the following plugin:" + +#: wp-admin/plugins.php:343 +msgid "Delete Plugin" +msgstr "Delete Plugin" + +#: wp-admin/options-general.php:454 +msgid "This timezone does not observe daylight saving time." +msgstr "This timezone does not observe daylight saving time." + +#: wp-admin/options-general.php:431 +msgid "This timezone is currently in daylight saving time." +msgstr "This timezone is currently in daylight saving time." + +#: wp-admin/options-general.php:267 wp-admin/network/settings.php:170 +msgid "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." +msgstr "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." + +#: wp-admin/includes/nav-menu.php:592 wp-admin/includes/nav-menu.php:964 +msgid "View All" +msgstr "View All" + +#: wp-admin/nav-menus.php:446 wp-admin/nav-menus.php:475 +msgid "Please enter a valid menu name." +msgstr "Please enter a valid menu name." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/install.php:269 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." + +#: wp-admin/includes/plugin.php:513 +msgid "Executed before Multisite is loaded." +msgstr "Executed before Multisite is loaded." + +#: wp-admin/includes/plugin.php:507 +msgid "External object cache." +msgstr "External object cache." + +#: wp-admin/includes/plugin.php:506 +msgid "Custom maintenance message." +msgstr "Custom maintenance message." + +#: wp-admin/includes/plugin.php:504 +msgid "Custom database error message." +msgstr "Custom database error message." + +#: wp-admin/includes/plugin.php:503 +msgid "Custom database class." +msgstr "Custom database class." + +#: wp-admin/includes/plugin.php:502 +msgid "Advanced caching plugin." +msgstr "Advanced caching plugin." + +#: wp-admin/includes/file.php:938 +msgid "File is empty. Please upload something more substantial." +msgstr "File is empty. Please upload something more substantial." + +#: wp-admin/edit-comments.php:410 +msgid "This comment is already marked as spam." +msgstr "This comment is already marked as spam." + +#: wp-admin/edit-comments.php:406 +msgid "View Trash" +msgstr "View Bin" + +#: wp-admin/edit-comments.php:403 +msgid "This comment is already in the Trash." +msgstr "This comment is already in the Bin." + +#: wp-admin/edit-comments.php:396 +msgid "This comment is already approved." +msgstr "This comment is already approved." + +#: wp-admin/comment.php:161 +msgid "This comment is currently in the Trash." +msgstr "This comment is currently in the Bin." + +#: wp-admin/comment.php:158 +msgid "This comment is currently marked as spam." +msgstr "This comment is currently marked as spam." + +#: wp-admin/comment.php:155 +msgid "This comment is currently approved." +msgstr "This comment is currently approved." + +#: wp-admin/comment.php:102 +msgid "Moderate Comment" +msgstr "Moderate Comment" + +#: wp-admin/export.php:196 +msgid "Categories:" +msgstr "Categories:" + +#: wp-admin/widgets-form.php:113 +msgid "Drag widgets here to remove them from the sidebar but keep their settings." +msgstr "Drag widgets here to remove them from the sidebar but keep their settings." + +#. translators: Hidden accessibility text. +#: wp-admin/widgets-form.php:444 wp-admin/widgets-form.php:449 +msgid "Available Widgets" +msgstr "Available Widgets" + +#: wp-admin/widgets-form.php:368 +msgid "Error in displaying the widget settings form." +msgstr "Error in displaying the widget settings form." + +#: wp-admin/includes/misc.php:1365 wp-admin/includes/post.php:2151 +#: wp-admin/widgets-form.php:367 +msgid "Error while saving." +msgstr "Error while saving." + +#: wp-admin/widgets-form.php:363 wp-admin/js/inline-edit-post.js:525 +#: wp-admin/js/inline-edit-tax.js:227 +msgid "Changes saved." +msgstr "Changes saved." + +#: wp-admin/widgets-form.php:345 +msgid "Save Widget" +msgstr "Save Widget" + +#: wp-admin/widgets-form.php:298 +msgid "Select both the sidebar for this widget and the position of the widget in that sidebar." +msgstr "Select both the sidebar for this widget and the position of the widget in that sidebar." + +#. translators: %s: Widget name. +#: wp-admin/widgets-form.php:283 +msgid "Widget %s" +msgstr "Widget %s" + +#: wp-admin/widgets-form.php:110 +msgid "Inactive Widgets" +msgstr "Inactive Widgets" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-users-list-table.php:309 +#: wp-admin/includes/class-wp-users-list-table.php:313 +msgid "Change role to…" +msgstr "Change role to…" + +#. translators: 1: User role name, 2: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:231 +#: wp-admin/includes/class-wp-users-list-table.php:249 +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: wp-admin/users.php:710 +msgid "Other users have been deleted." +msgstr "Other users have been deleted." + +#: wp-admin/users.php:702 +msgid "You cannot delete the current user." +msgstr "You cannot delete the current user." + +#: wp-admin/users.php:692 +msgid "Other user roles have been changed." +msgstr "Other user roles have been changed." + +#: wp-admin/users.php:684 +msgid "The current user’s role must have user editing capabilities." +msgstr "The current user’s role must have user editing capabilities." + +#: wp-admin/users.php:629 +msgid "New user created." +msgstr "New user created." + +#: wp-admin/users.php:448 +msgid "There are no valid users selected for deletion." +msgstr "There are no valid users selected for deletion." + +#: wp-admin/users.php:340 +msgid "Delete Users" +msgstr "Delete Users" + +#: wp-admin/user-new.php:486 wp-admin/user-new.php:653 +msgid "Skip Confirmation Email" +msgstr "Skip Confirmation Email" + +#: wp-admin/user-new.php:350 +msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." +msgstr "Invitation email sent to new user. A confirmation link must be clicked before their account is created." + +#. translators: Joining confirmation notification email subject. %s: Site +#. title. +#: wp-admin/user-new.php:140 +msgid "[%s] Joining Confirmation" +msgstr "[%s] Joining Confirmation" + +#: wp-admin/user-edit.php:946 +msgid "Update User" +msgstr "Update User" + +#: wp-admin/user-edit.php:946 +msgid "Update Profile" +msgstr "Update Profile" + +#: wp-admin/user-edit.php:914 +msgid "Additional Capabilities" +msgstr "Additional Capabilities" + +#: wp-admin/user-edit.php:700 +msgid "Type your new password again." +msgstr "Type your new password again." + +#: wp-admin/user-edit.php:675 +msgid "New Password" +msgstr "New Password" + +#: wp-admin/user-edit.php:619 +msgid "Share a little biographical information to fill out your profile. This may be shown publicly." +msgstr "Share a little biographical information to fill out your profile. This may be shown publicly." + +#: wp-admin/user-edit.php:617 +msgid "Biographical Info" +msgstr "Biographical Info" + +#: wp-admin/user-edit.php:613 +msgid "About the user" +msgstr "About the user" + +#: wp-admin/user-edit.php:613 +msgid "About Yourself" +msgstr "About Yourself" + +#: wp-admin/user-edit.php:542 +msgid "Contact Info" +msgstr "Contact Info" + +#: wp-admin/user-edit.php:504 +msgid "Display name publicly as" +msgstr "Display name publicly as" + +#: wp-admin/user-edit.php:498 +msgid "Nickname" +msgstr "Nickname" + +#: wp-admin/user-edit.php:493 wp-admin/user-new.php:556 +msgid "Last Name" +msgstr "Last Name" + +#: wp-admin/user-edit.php:488 wp-admin/user-new.php:552 +msgid "First Name" +msgstr "First Name" + +#: wp-admin/user-edit.php:362 +msgid "Enable keyboard shortcuts for comment moderation." +msgstr "Enable keyboard shortcuts for comment moderation." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/misc.php:1028 wp-admin/user-edit.php:336 +msgid "Admin Color Scheme" +msgstr "Admin Colour Scheme" + +#: wp-admin/user-edit.php:304 +msgid "Disable the visual editor when writing" +msgstr "Disable the visual editor when writing" + +#: wp-admin/user-edit.php:301 +msgid "Visual Editor" +msgstr "Visual Editor" + +#: wp-admin/user-edit.php:296 +msgid "Personal Options" +msgstr "Personal Options" + +#: wp-admin/user-edit.php:219 +msgid "User updated." +msgstr "User updated." + +#: wp-admin/includes/user.php:597 +msgid "Always use https when visiting the admin" +msgstr "Always use https when visiting the admin" + +#: wp-admin/includes/user.php:596 +msgid "Use https" +msgstr "Use https" + +#: wp-admin/user-new.php:359 wp-admin/users.php:641 +#: wp-admin/network/user-new.php:94 +msgid "Edit user" +msgstr "Edit user" + +#: wp-admin/upload.php:102 wp-admin/upload.php:123 +msgid "Media file restored from the Trash." +msgstr "Media file restored from the Bin." + +#: wp-admin/upload.php:79 wp-admin/upload.php:118 +msgid "Media file moved to the Trash." +msgstr "Media file moved to the Bin." + +#: wp-admin/upload.php:62 wp-admin/upload.php:116 +msgid "Media file permanently deleted." +msgstr "Media file permanently deleted." + +#: wp-admin/edit-tags.php:137 wp-admin/options.php:85 +msgid "Sorry, you are not allowed to delete these items." +msgstr "Sorry, you are not allowed to delete these items." + +#: wp-admin/upgrade.php:93 +msgid "Your WordPress database is already up to date!" +msgstr "Your WordPress database is already up to date!" + +#. translators: %s: File name. +#: wp-admin/update.php:323 +msgid "Installing theme from uploaded file: %s" +msgstr "Installing theme from uploaded file: %s" + +#: wp-admin/theme-install.php:59 wp-admin/theme-install.php:177 +#: wp-admin/theme-install.php:179 wp-admin/update.php:316 +msgid "Upload Theme" +msgstr "Upload Theme" + +#. translators: %s: Theme name and version. +#: wp-admin/update.php:291 +msgid "Installing Theme: %s" +msgstr "Installing Theme: %s" + +#. translators: %s: File name. +#: wp-admin/update.php:171 +msgid "Installing plugin from uploaded file: %s" +msgstr "Installing plugin from uploaded file: %s" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:122 +#: wp-admin/plugin-install.php:154 wp-admin/update.php:164 +msgid "Upload Plugin" +msgstr "Upload Plugin" + +#. translators: %s: Plugin name and version. +#: wp-admin/update.php:135 +msgid "Installing Plugin: %s" +msgstr "Installing Plugin: %s" + +#: wp-admin/update.php:96 +msgid "Plugin failed to reactivate due to a fatal error." +msgstr "Plugin failed to reactivate due to a fatal error." + +#: wp-admin/update.php:92 +msgid "Plugin reactivated successfully." +msgstr "Plugin reactivated successfully." + +#: wp-admin/update.php:90 +msgid "Plugin Reactivation" +msgstr "Plugin Reactivation" + +#: wp-admin/includes/class-wp-automatic-updater.php:526 +#: wp-admin/update-core.php:913 wp-admin/js/updates.js:863 +#: wp-admin/js/updates.js:1891 +msgid "Installation failed." +msgstr "Installation failed." + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:532 wp-admin/update-core.php:541 +msgid "Compatibility with WordPress %s: Unknown" +msgstr "Compatibility with WordPress %s: unknown" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:529 wp-admin/update-core.php:538 +msgid "Compatibility with WordPress %s: 100%% (according to its author)" +msgstr "Compatibility with WordPress %s: 100%% (according to its author)" + +#: wp-admin/update-core.php:211 +msgid "Hide hidden updates" +msgstr "Hide hidden updates" + +#: wp-admin/update-core.php:210 wp-admin/update-core.php:229 +msgid "Show hidden updates" +msgstr "Show hidden updates" + +#: wp-admin/update-core.php:177 +msgid "Bring back this update" +msgstr "Bring back this update" + +#: wp-admin/update-core.php:175 +msgid "Hide this update" +msgstr "Hide this update" + +#: wp-admin/themes.php:675 +msgid "Broken Themes" +msgstr "Broken Themes" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-themes-list-table.php:234 +msgid "" +"You are about to delete this theme '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"You are about to delete this theme '%s'\n" +" 'Cancel' to stop, 'OK' to delete." + +#: wp-admin/themes.php:292 wp-admin/network/themes.php:412 +msgid "Theme deleted." +msgstr "Theme deleted." + +#: wp-admin/theme-editor.php:252 +msgid "Select theme to edit:" +msgstr "Select theme to edit:" + +#: wp-admin/theme-editor.php:22 +msgid "Edit Themes" +msgstr "Edit Themes" + +#: wp-admin/includes/theme.php:1056 wp-admin/themes.php:1249 +msgid "Tags:" +msgstr "Tags:" + +#. translators: %s: Post title. +#: wp-admin/revision.php:111 +msgid "Compare Revisions of “%s”" +msgstr "Compare revisions of “%s”" + +#: wp-admin/post.php:143 +msgid "You cannot edit this item because it is in the Trash. Please restore it and try again." +msgstr "You cannot edit this item because it is in the Bin. Please restore it and try again." + +#: wp-admin/edit-tags.php:173 wp-admin/includes/class-wp-screen.php:297 +#: wp-admin/includes/post.php:2157 wp-admin/media-upload.php:47 +#: wp-admin/post.php:20 wp-admin/post.php:47 wp-admin/post.php:139 +#: wp-admin/term.php:43 +msgid "Sorry, you are not allowed to edit this item." +msgstr "Sorry, you are not allowed to edit this item." + +#: wp-admin/edit-tags.php:160 wp-admin/edit-tags.php:180 wp-admin/post.php:127 +#: wp-admin/term.php:31 +msgid "You attempted to edit an item that does not exist. Perhaps it was deleted?" +msgstr "You attempted to edit an item that does not exist. Perhaps it was deleted?" + +#: wp-admin/includes/class-wp-plugins-list-table.php:427 +msgid "No plugins found." +msgstr "No plugins found." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:533 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inactive (%s)" +msgstr[1] "Inactive (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:525 +msgid "Recently Active (%s)" +msgid_plural "Recently Active (%s)" +msgstr[0] "Recently Active (%s)" +msgstr[1] "Recently Active (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:517 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Active (%s)" +msgstr[1] "Active (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:508 +msgctxt "plugins" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:668 +msgid "Clear List" +msgstr "Clear List" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1209 +msgid "Visit plugin site" +msgstr "Visit plugin site" + +#. translators: %s: Error message. +#: wp-admin/plugins.php:716 +msgid "Plugin could not be deleted due to an error: %s" +msgstr "Plugin could not be deleted due to an error: %s" + +#: wp-admin/plugins.php:682 +msgid "Plugin could not be activated because it triggered a fatal error." +msgstr "Plugin could not be activated because it triggered a fatal error." + +#. translators: %s: WP_PLUGIN_DIR constant value. +#: wp-admin/plugins.php:582 +msgid "If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." +msgstr "If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." + +#: wp-admin/plugins.php:565 +msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." +msgstr "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." + +#: wp-admin/plugins.php:419 +msgid "No, return me to the plugin list" +msgstr "No, return me to the plugin list" + +#: wp-admin/plugins.php:411 +msgid "Yes, delete these files" +msgstr "Yes, delete these files" + +#: wp-admin/plugins.php:395 +msgid "Are you sure you want to delete these files?" +msgstr "Are you sure you want to delete these files?" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:113 +msgctxt "Plugin Installer" +msgid "Popular" +msgstr "Popular" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:112 +msgctxt "Plugin Installer" +msgid "Featured" +msgstr "Featured" + +#: wp-admin/plugin-editor.php:327 wp-admin/theme-editor.php:356 +msgid "Update File" +msgstr "Update File" + +#: wp-admin/plugin-editor.php:306 wp-admin/theme-editor.php:330 +msgid "Documentation:" +msgstr "Documentation:" + +#: wp-admin/plugin-editor.php:276 +msgid "Plugin Files" +msgstr "Plugin Files" + +#: wp-admin/plugin-editor.php:253 +msgid "Select plugin to edit:" +msgstr "Select plugin to edit:" + +#: wp-admin/includes/ajax-actions.php:4914 wp-admin/plugin-editor.php:199 +#: wp-admin/theme-editor.php:193 +msgid "File edited successfully." +msgstr "File edited successfully." + +#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:128 +msgid "Files of this type are not editable." +msgstr "Files of this type are not editable." + +#: wp-admin/plugin-editor.php:22 +msgid "Edit Plugins" +msgstr "Edit Plugins" + +#: wp-admin/options.php:382 +msgid "All Settings" +msgstr "All Settings" + +#: wp-admin/options-writing.php:45 wp-admin/options-writing.php:219 +msgid "Update Services" +msgstr "Update Services" + +#: wp-admin/options-writing.php:190 +msgid "Default Mail Category" +msgstr "Default Mail Category" + +#: wp-admin/options-writing.php:170 +msgid "Login Name" +msgstr "Login Name" + +#: wp-admin/options-writing.php:165 +msgid "Port" +msgstr "Port" + +#: wp-admin/options-writing.php:163 +msgid "Mail Server" +msgstr "Mail Server" + +#. translators: 1, 2, 3: Examples of random email addresses. +#: wp-admin/options-writing.php:153 +msgid "To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s." +msgstr "To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s." + +#: wp-admin/options-writing.php:148 +msgid "Post via email" +msgstr "Post via email" + +#: wp-admin/options-writing.php:120 +msgid "Default Link Category" +msgstr "Default Link Category" + +#: wp-admin/options-writing.php:86 +msgid "Default Post Category" +msgstr "Default Post Category" + +#: wp-admin/options-writing.php:81 +msgid "WordPress should correct invalidly nested XHTML automatically" +msgstr "WordPress should correct invalidly nested XHTML automatically" + +#: wp-admin/options-writing.php:80 +msgid "Convert emoticons like :-) and :-P to graphics on display" +msgstr "Convert emoticons like :-) and :-P to graphics on display" + +#. translators: Hidden accessibility text. +#: wp-admin/options-writing.php:71 wp-admin/options-writing.php:75 +msgid "Formatting" +msgstr "Formatting" + +#: wp-admin/options-writing.php:17 +msgid "Writing Settings" +msgstr "Writing Settings" + +#: wp-admin/options-reading.php:68 +msgid "Encoding for pages and feeds" +msgstr "Encoding for pages and feeds" + +#: wp-admin/options-reading.php:192 +msgid "Full text" +msgstr "Full text" + +#: wp-admin/options-reading.php:179 +msgid "Syndication feeds show the most recent" +msgstr "Syndication feeds show the most recent" + +#: wp-admin/options-reading.php:175 +msgid "posts" +msgstr "posts" + +#: wp-admin/options-reading.php:173 +msgid "Blog pages show at most" +msgstr "Blog pages show at most" + +#: wp-admin/options-reading.php:150 +msgid "Warning: these pages should not be the same!" +msgstr "Warning: these pages should not be the same!" + +#. translators: %s: Select field to choose the page for posts. +#: wp-admin/options-reading.php:133 +msgid "Posts page: %s" +msgstr "Posts page: %s" + +#. translators: %s: URL to Pages screen. +#: wp-admin/options-reading.php:105 +msgid "A static page (select below)" +msgstr "A static page (select below)" + +#: wp-admin/options-reading.php:17 +msgid "Reading Settings" +msgstr "Reading Settings" + +#: wp-admin/options-privacy.php:191 +msgid "Privacy Settings" +msgstr "Privacy Settings" + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:521 +msgid "If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created." +msgstr "If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:489 +msgid "If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved." +msgstr "If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved." + +#: wp-admin/options-permalink.php:439 +msgid "Tag base" +msgstr "Tag base" + +#. translators: Prefix for category permalinks. +#: wp-admin/options-permalink.php:427 +msgid "Category base" +msgstr "Category base" + +#: wp-admin/options-permalink.php:412 +msgid "Optional" +msgstr "Optional" + +#: wp-admin/options-permalink.php:365 +msgid "Custom Structure" +msgstr "Custom Structure" + +#: wp-admin/options-permalink.php:264 +msgid "Numeric" +msgstr "Numeric" + +#: wp-admin/options-permalink.php:258 +msgid "Month and name" +msgstr "Month and name" + +#: wp-admin/options-permalink.php:252 +msgid "Day and name" +msgstr "Day and name" + +#: wp-admin/options-permalink.php:176 +msgid "Permalink structure updated." +msgstr "Permalink structure updated." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:189 +msgid "Permalink structure updated. Remove write access on %s file now!" +msgstr "Permalink structure updated. Remove write access on %s file now!" + +#: wp-admin/options-permalink.php:17 wp-admin/options-permalink.php:33 +msgid "Permalink Settings" +msgstr "Permalink Settings" + +#: wp-admin/options-media.php:163 +msgid "Organize my uploads into month- and year-based folders" +msgstr "Organise my uploads into month- and year-based folders" + +#: wp-admin/options-media.php:152 +msgid "Configuring this is optional. By default, it should be blank." +msgstr "Configuring this is optional. By default, it should be blank." + +#: wp-admin/options-media.php:150 +msgid "Full URL path to files" +msgstr "Full URL path to files" + +#: wp-admin/options-media.php:138 +msgid "Store uploads in this folder" +msgstr "Store uploads in this folder" + +#: wp-admin/options-media.php:126 +msgid "Uploading Files" +msgstr "Uploading Files" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:95 wp-admin/options-media.php:99 +msgid "Large size" +msgstr "Large size" + +#: wp-admin/options-media.php:89 wp-admin/options-media.php:105 +msgid "Max Height" +msgstr "Max Height" + +#: wp-admin/options-media.php:86 wp-admin/options-media.php:102 +msgid "Max Width" +msgstr "Max Width" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:79 wp-admin/options-media.php:83 +msgid "Medium size" +msgstr "Medium size" + +#: wp-admin/options-media.php:74 +msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" +msgstr "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:60 wp-admin/options-media.php:64 +msgid "Thumbnail size" +msgstr "Thumbnail size" + +#: wp-admin/options-media.php:55 +msgid "Image sizes" +msgstr "Image sizes" + +#: wp-admin/options-media.php:17 +msgid "Media Settings" +msgstr "Media Settings" + +#: wp-admin/options-general.php:565 +msgid "Week Starts On" +msgstr "Week Starts On" + +#: wp-admin/options-general.php:498 wp-admin/options-general.php:546 +msgid "Custom:" +msgstr "Custom:" + +#: wp-admin/options-general.php:433 +msgid "This timezone is currently in standard time." +msgstr "This time zone is currently in standard time." + +#: wp-admin/includes/class-wp-debug-data.php:185 +#: wp-admin/options-general.php:383 +msgid "Timezone" +msgstr "Time zone" + +#: wp-admin/options-general.php:308 +msgid "New User Default Role" +msgstr "New User Default Role" + +#: wp-admin/options-general.php:303 +msgid "Anyone can register" +msgstr "Anyone can register" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:295 wp-admin/options-general.php:299 +msgid "Membership" +msgstr "Membership" + +#: wp-admin/options-general.php:20 +msgid "General Settings" +msgstr "General Settings" + +#: wp-admin/options-discussion.php:309 +msgid "MonsterID (Generated)" +msgstr "MonsterID (Generated)" + +#: wp-admin/options-discussion.php:308 +msgid "Wavatar (Generated)" +msgstr "Wavatar (Generated)" + +#: wp-admin/options-discussion.php:307 +msgid "Identicon (Generated)" +msgstr "Identicon (Generated)" + +#: wp-admin/options-discussion.php:306 +msgid "Gravatar Logo" +msgstr "Gravatar Logo" + +#: wp-admin/options-discussion.php:305 +msgid "Blank" +msgstr "Blank" + +#: wp-admin/options-discussion.php:299 +msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address." +msgstr "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address." + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:279 +msgid "X — Even more mature than above" +msgstr "X — Even more mature than above" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:277 +msgid "R — Intended for adult audiences above 17" +msgstr "R — Intended for adult audiences above 17" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:275 +msgid "PG — Possibly offensive, usually for audiences 13 and above" +msgstr "PG — Possibly offensive, usually for audiences 13 and above" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:273 +msgid "G — Suitable for all audiences" +msgstr "G — Suitable for all audiences" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:262 wp-admin/options-discussion.php:266 +msgid "Maximum Rating" +msgstr "Maximum Rating" + +#: wp-admin/options-discussion.php:257 +msgid "Show Avatars" +msgstr "Show Avatars" + +#: wp-admin/options-discussion.php:253 +msgid "Avatar Display" +msgstr "Avatar Display" + +#: wp-admin/options-discussion.php:237 +msgid "Avatars" +msgstr "Avatars" + +#: wp-admin/options-discussion.php:228 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Bin. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." + +#: wp-admin/options-discussion.php:214 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." + +#. translators: %s: Number of links. +#: wp-admin/options-discussion.php:208 +msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" +msgstr "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:197 wp-admin/options-discussion.php:201 +msgid "Comment Moderation" +msgstr "Comment Moderation" + +#: wp-admin/options-discussion.php:193 +msgid "Comment author must have a previously approved comment" +msgstr "Comment author must have a previously approved comment" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:182 wp-admin/options-discussion.php:186 +msgid "Before a comment appears" +msgstr "Before a comment appears" + +#: wp-admin/options-discussion.php:178 +msgid "A comment is held for moderation" +msgstr "A comment is held for moderation" + +#: wp-admin/options-discussion.php:174 +msgid "Anyone posts a comment" +msgstr "Anyone posts a comment" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:165 wp-admin/options-discussion.php:169 +msgid "Email me whenever" +msgstr "Email me whenever" + +#: wp-admin/options-discussion.php:158 +msgid "newer" +msgstr "newer" + +#: wp-admin/options-discussion.php:157 +msgid "older" +msgstr "older" + +#: wp-admin/options-discussion.php:81 +msgid "Users must be registered and logged in to comment" +msgstr "Users must be registered and logged in to comment" + +#: wp-admin/options-discussion.php:77 +msgid "Comment author must fill out name and email" +msgstr "Comment author must fill out name and email" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:70 wp-admin/options-discussion.php:74 +msgid "Other comment settings" +msgstr "Other comment settings" + +#: wp-admin/edit-form-advanced.php:400 wp-admin/options-discussion.php:16 +msgid "Discussion Settings" +msgstr "Discussion Settings" + +#: wp-admin/includes/class-wp-users-list-table.php:158 +#: wp-admin/includes/deprecated.php:579 +#: wp-admin/includes/class-wp-ms-users-list-table.php:125 +msgid "No users found." +msgstr "No users found." + +#: wp-admin/update-core.php:672 wp-admin/update-core.php:805 +#: wp-admin/update-core.php:1250 wp-admin/update-core.php:1255 +#: wp-admin/network/themes.php:85 +msgid "Update Themes" +msgstr "Update Themes" + +#: wp-admin/my-sites.php:139 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:841 +#: wp-admin/network/site-info.php:146 wp-admin/network/site-settings.php:95 +#: wp-admin/network/site-themes.php:181 wp-admin/network/site-users.php:226 +msgid "Visit" +msgstr "Visit" + +#: wp-admin/includes/revision.php:97 +msgid "Removed" +msgstr "Removed" + +#: wp-admin/ms-delete-site.php:13 wp-admin/my-sites.php:13 +#: wp-admin/network/admin.php:17 +msgid "Multisite support is not enabled." +msgstr "Multisite support is not enabled." + +#: wp-admin/menu.php:394 +msgid "Permalinks" +msgstr "Permalinks" + +#: wp-admin/about.php:53 wp-admin/contribute.php:37 wp-admin/credits.php:40 +#: wp-admin/freedoms.php:43 wp-admin/menu.php:395 +#: wp-admin/options-privacy.php:22 wp-admin/options-privacy.php:157 +#: wp-admin/privacy-policy-guide.php:40 wp-admin/privacy.php:13 +#: wp-admin/privacy.php:24 wp-admin/privacy.php:37 +msgid "Privacy" +msgstr "Privacy" + +#: wp-admin/menu.php:391 +msgid "Reading" +msgstr "Reading" + +#: wp-admin/menu.php:390 +msgid "Writing" +msgstr "Writing" + +#: wp-admin/menu.php:389 +msgctxt "settings screen" +msgid "General" +msgstr "General" + +#: wp-admin/menu.php:325 wp-admin/menu.php:337 wp-admin/menu.php:340 +#: wp-admin/user-edit.php:41 wp-admin/user/menu.php:19 +msgid "Profile" +msgstr "Profile" + +#. translators: %s: Number of comments. +#: wp-admin/menu.php:101 +msgid "Comments %s" +msgstr "Comments %s" + +#: wp-admin/menu.php:72 +msgid "Library" +msgstr "Library" + +#: wp-admin/media-new.php:43 +msgid "Upload New Media" +msgstr "Upload New Media" + +#: wp-admin/maint/repair.php:187 +msgid "Repair and Optimize Database" +msgstr "Repair and Optimise Database" + +#: wp-admin/maint/repair.php:185 +msgid "Repair Database" +msgstr "Repair Database" + +#. translators: %s: URL to "Fixing WordPress" forum. +#: wp-admin/maint/repair.php:161 +msgid "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance." +msgstr "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance." + +#: wp-admin/maint/repair.php:20 +msgid "WordPress › Database Repair" +msgstr "WordPress › Database Repair" + +#: wp-admin/link.php:120 +msgid "Link not found." +msgstr "Link not found." + +#: wp-admin/includes/class-wp-links-list-table.php:82 +msgid "No links found." +msgstr "No links found." + +#: wp-admin/link-manager.php:139 +msgid "Search Links" +msgstr "Search Links" + +#. translators: %s: Number of links. +#: wp-admin/link-manager.php:124 +msgid "%s link deleted." +msgid_plural "%s links deleted." +msgstr[0] "%s link deleted." +msgstr[1] "%s links deleted" + +#: wp-admin/install.php:452 +msgid "Success!" +msgstr "Success!" + +#: wp-admin/install.php:396 +msgid "Please provide the following information. Do not worry, you can always change these settings later." +msgstr "Please provide the following information. Do not worry, you can always change these settings later." + +#: wp-admin/install.php:395 +msgid "Information needed" +msgstr "Information needed" + +#: wp-admin/install.php:217 +msgid "Install WordPress" +msgstr "Install WordPress" + +#: wp-admin/install.php:181 +msgid "Double-check your email address before continuing." +msgstr "Double-check your email address before continuing." + +#: wp-admin/install.php:179 +msgid "Your Email" +msgstr "Your Email" + +#: wp-admin/install.php:122 +msgid "User(s) already exists." +msgstr "User(s) already exists." + +#: wp-admin/install.php:73 +msgid "WordPress › Installation" +msgstr "WordPress › Installation" + +#: wp-admin/includes/user.php:207 +msgid "Error: Please enter an email address." +msgstr "Error: Please enter an email address." + +#: wp-admin/includes/user.php:178 +msgid "Error: Passwords may not contain the character \"\\\"." +msgstr "Error: Passwords may not contain the character \"\\\"." + +#: wp-admin/includes/user.php:173 +msgid "Error: Please enter a password." +msgstr "Error: Please enter a password." + +#. translators: Default post slug. +#: wp-admin/includes/upgrade.php:249 wp-admin/includes/upgrade.php:529 +msgctxt "Default post slug" +msgid "hello-world" +msgstr "hello-world" + +#: wp-admin/includes/upgrade.php:247 +msgid "Hello world!" +msgstr "Hello world!" + +#. translators: %s: Site link. +#. translators: First post content. %s: Site link. +#: wp-admin/includes/schema.php:1273 wp-admin/includes/upgrade.php:220 +msgid "Welcome to %s. This is your first post. Edit or delete it, then start writing!" +msgstr "Welcome to %s. This is your first post. Edit or delete it, then start writing!" + +#. translators: Default category slug. +#: wp-admin/includes/upgrade.php:184 +msgctxt "Default category slug" +msgid "Uncategorized" +msgstr "Uncategorised" + +#: wp-admin/includes/upgrade.php:113 +msgid "Note that password carefully! It is a random password that was generated just for you." +msgstr "Note that password carefully! It is a random password that was generated just for you." + +#: wp-admin/includes/update.php:887 +msgid "An automated WordPress update has failed to complete! Please notify the site administrator." +msgstr "An automated WordPress update has failed to complete! Please notify the site administrator." + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/update.php:883 +msgid "An automated WordPress update has failed to complete - please attempt the update again now." +msgstr "An automated WordPress update has failed to complete - please attempt the update again now." + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:375 +msgid "Latest" +msgstr "Latest" + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:375 +msgid "Update to %s" +msgstr "Update to %s" + +#. translators: 1: WordPress version number, 2: URL to WordPress Updates +#. screen. +#: wp-admin/includes/update.php:272 +msgid "You are using a development version (%1$s). Cool! Please stay updated." +msgstr "You are using a development version (%1$s). Cool! Please stay updated." + +#: wp-admin/includes/update-core.php:1569 +msgid "Upgrading database…" +msgstr "Upgrading database…" + +#: wp-admin/includes/update-core.php:1085 +msgid "The update could not be unpacked" +msgstr "The update could not be unpacked" + +#: wp-admin/includes/update-core.php:1067 +msgid "Verifying the unpacked files…" +msgstr "Verifying the unpacked files…" + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number, 3: Current MySQL version number. +#: wp-admin/includes/update-core.php:1187 +msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Current PHP version number. +#: wp-admin/includes/update-core.php:1176 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Minimum required MySQL version number, 4: Current PHP version +#. number, 5: Current MySQL version number. +#: wp-admin/includes/update-core.php:1163 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:104 +msgid "Could not fully remove the theme %s." +msgstr "Could not fully remove the theme %s." + +#: wp-admin/includes/class-wp-upgrader.php:195 wp-admin/includes/theme.php:72 +msgid "Unable to locate WordPress theme directory." +msgstr "Unable to locate WordPress theme directory." + +#: wp-admin/includes/class-theme-installer-skin.php:230 +msgid "This theme is already installed." +msgstr "This theme is already installed." + +#. translators: %s: Theme version. +#: wp-admin/includes/theme.php:867 wp-admin/theme-install.php:537 +#: wp-admin/themes.php:1091 +msgid "Version: %s" +msgstr "Version: %s" + +#: wp-admin/includes/theme-install.php:197 +msgid "If you have a theme in a .zip format, you may install or update it by uploading it here." +msgstr "If you have a theme in a .zip format, you may install or update it by uploading it here." + +#: wp-admin/includes/theme-install.php:185 +msgid "Find Themes" +msgstr "Find Themes" + +#: wp-admin/includes/theme.php:324 +msgid "Holiday" +msgstr "Holiday" + +#: wp-admin/includes/theme.php:318 wp-admin/includes/theme.php:389 +msgid "Subject" +msgstr "Subject" + +#: wp-admin/includes/theme.php:345 +msgid "Sticky Post" +msgstr "Sticky Post" + +#: wp-admin/includes/theme.php:348 +msgid "Theme Options" +msgstr "Theme Options" + +#: wp-admin/includes/theme.php:330 wp-admin/includes/theme.php:388 +msgid "Features" +msgstr "Features" + +#: wp-admin/includes/theme.php:358 +msgid "Right Sidebar" +msgstr "Right Sidebar" + +#: wp-admin/includes/theme.php:357 +msgid "Left Sidebar" +msgstr "Left Sidebar" + +#: wp-admin/includes/theme.php:356 +msgid "Four Columns" +msgstr "Four Columns" + +#: wp-admin/includes/theme.php:355 +msgid "Three Columns" +msgstr "Three Columns" + +#: wp-admin/includes/theme.php:354 +msgid "Two Columns" +msgstr "Two Columns" + +#: wp-admin/includes/theme.php:353 +msgid "One Column" +msgstr "One Column" + +#: wp-admin/includes/theme-install.php:152 wp-admin/theme-install.php:217 +msgid "Feature Filter" +msgstr "Feature Filter" + +#: wp-admin/includes/class-wp-screen.php:972 +msgid "Screen Options" +msgstr "Screen Options" + +#: wp-admin/widgets-form.php:401 +msgid "Disable accessibility mode" +msgstr "Disable accessibility mode" + +#: wp-admin/widgets-form.php:401 +msgid "Enable accessibility mode" +msgstr "Enable accessibility mode" + +#: wp-admin/update.php:284 +msgid "Install Themes" +msgstr "Install Themes" + +#: wp-admin/includes/template.php:1041 +msgid "Upload file and import" +msgstr "Upload file and import" + +#. translators: %s: Maximum allowed file size. +#: wp-admin/includes/template.php:1034 +msgid "Maximum size: %s" +msgstr "Maximum size: %s" + +#: wp-admin/includes/template.php:1032 +msgid "Choose a file from your computer:" +msgstr "Choose a file from your computer:" + +#: wp-admin/includes/template.php:1016 +msgid "Before you can upload your import file, you will need to fix the following error:" +msgstr "Before you can upload your import file, you will need to fix the following error:" + +#: wp-admin/includes/template.php:779 +msgid "Add Custom Field" +msgstr "Add Custom Field" + +#: wp-admin/includes/template.php:764 +msgid "Enter new" +msgstr "Enter new" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:665 +msgid "Key" +msgstr "Key" + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:570 +msgid "Comment by %s marked as spam." +msgstr "Comment by %s marked as spam." + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:561 +msgid "Comment by %s moved to the Trash." +msgstr "Comment by %s moved to the Bin." + +#: wp-admin/includes/template.php:510 +msgid "Submit Reply" +msgstr "Submit Reply" + +#: wp-admin/includes/template.php:463 +msgid "Reply to Comment" +msgstr "Reply to Comment" + +#: wp-admin/includes/class-wp-posts-list-table.php:1217 +msgid "Missed schedule" +msgstr "Missed schedule" + +#: wp-admin/includes/class-wp-posts-list-table.php:2024 +msgid "Make this post sticky" +msgstr "Make this post sticky" + +#: wp-admin/includes/class-wp-posts-list-table.php:2016 +msgid "Not Sticky" +msgstr "Not Sticky" + +#: wp-admin/includes/class-wp-posts-list-table.php:1974 +msgid "Allow Pings" +msgstr "Allow Pings" + +#: wp-admin/includes/class-wp-posts-list-table.php:1965 +msgid "Allow Comments" +msgstr "Allow Comments" + +#: wp-admin/includes/class-wp-posts-list-table.php:1936 +#: wp-admin/includes/class-wp-posts-list-table.php:1949 +msgid "Do not allow" +msgstr "Do not allow" + +#: wp-admin/includes/class-wp-posts-list-table.php:1935 +#: wp-admin/includes/class-wp-posts-list-table.php:1948 +msgid "Allow" +msgstr "Allow" + +#. translators: Between password field and private checkbox on post quick edit +#. interface. +#: wp-admin/includes/class-wp-posts-list-table.php:1791 +msgid "–OR–" +msgstr "–OR–" + +#: wp-admin/includes/class-wp-posts-list-table.php:1748 +#: wp-admin/includes/class-wp-posts-list-table.php:1851 +#: wp-admin/includes/class-wp-posts-list-table.php:1891 +#: wp-admin/includes/class-wp-posts-list-table.php:1934 +#: wp-admin/includes/class-wp-posts-list-table.php:1947 +#: wp-admin/includes/class-wp-posts-list-table.php:1991 +#: wp-admin/includes/class-wp-posts-list-table.php:2014 +#: wp-admin/includes/class-wp-posts-list-table.php:2039 +msgid "— No Change —" +msgstr "— No Change —" + +#: wp-admin/includes/class-wp-posts-list-table.php:1688 +msgid "Bulk Edit" +msgstr "Bulk Edit" + +#: wp-admin/includes/class-wp-links-list-table.php:139 +#: wp-admin/includes/class-wp-links-list-table.php:151 +msgid "Visible" +msgstr "Visible" + +#: wp-admin/includes/class-wp-links-list-table.php:138 +msgid "Relationship" +msgstr "Relationship" + +#: wp-admin/includes/class-wp-comments-list-table.php:477 +#: wp-admin/includes/class-wp-post-comments-list-table.php:26 +msgctxt "column name" +msgid "Comment" +msgstr "Comment" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:381 +msgctxt "column name" +msgid "Date" +msgstr "Date" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:337 +#: wp-admin/includes/class-wp-media-list-table.php:400 +msgctxt "column name" +msgid "File" +msgstr "File" + +#. translators: Posts screen column name. +#: wp-admin/includes/class-wp-posts-list-table.php:664 +msgctxt "column name" +msgid "Title" +msgstr "Title" + +#: wp-admin/includes/class-wp-comments-list-table.php:840 +#: wp-admin/includes/class-wp-posts-list-table.php:1510 +#: wp-admin/includes/class-wp-terms-list-table.php:510 +msgid "Quick Edit" +msgstr "Quick Edit" + +#: wp-admin/includes/class-wp-posts-list-table.php:1688 +#: wp-admin/includes/class-wp-terms-list-table.php:693 +msgid "Quick Edit" +msgstr "Quick Edit" + +#: wp-admin/includes/schema.php:1131 +msgid "Warning! Wildcard DNS may not be configured correctly!" +msgstr "Warning! Wildcard DNS may not be configured correctly!" + +#. translators: %s: Network title. +#: wp-admin/options-general.php:86 +msgid "Just another %s site" +msgstr "Just another %s site" + +#. translators: Site tagline. +#: wp-admin/options-general.php:83 +msgid "Just another WordPress site" +msgstr "Just another WordPress site" + +#: wp-admin/includes/post.php:767 +msgid "Auto Draft" +msgstr "Auto Draft" + +#: wp-admin/includes/post.php:37 wp-admin/includes/post.php:82 +msgid "Sorry, you are not allowed to edit posts as this user." +msgstr "Sorry, you are not allowed to edit posts as this user." + +#: wp-admin/includes/post.php:35 wp-admin/includes/post.php:80 +msgid "Sorry, you are not allowed to edit pages as this user." +msgstr "Sorry, you are not allowed to edit pages as this user." + +#: wp-admin/includes/plugin.php:1119 +msgid "The plugin does not have a valid header." +msgstr "The plugin does not have a valid header." + +#: wp-admin/includes/plugin.php:1114 +msgid "Plugin file does not exist." +msgstr "Plugin file does not exist." + +#: wp-admin/includes/plugin.php:1111 +msgid "Invalid plugin path." +msgstr "Invalid plugin path." + +#. translators: %s: Comma-separated list of plugin filenames. +#: wp-admin/includes/plugin.php:1051 +msgid "Could not fully remove the plugins %s." +msgstr "Could not fully remove the plugins %s." + +#: wp-admin/includes/plugin.php:886 +msgid "One of the plugins is invalid." +msgstr "One of the plugins is invalid." + +#: wp-admin/includes/plugin.php:735 +msgid "The plugin generated unexpected output." +msgstr "The plugin generated unexpected output." + +#: wp-admin/includes/plugin-install.php:836 +msgid "Warning: This plugin has not been tested with your current version of WordPress." +msgstr "Warning: this plugin has not been tested with your current version of WordPress." + +#: wp-admin/includes/plugin-install.php:714 +msgid "Average Rating" +msgstr "Average Rating" + +#: wp-admin/includes/plugin-install.php:706 +msgid "WordPress.org Plugin Page »" +msgstr "WordPress.org Plugin Page »" + +#: wp-admin/includes/plugin-install.php:679 +msgid "Compatible up to:" +msgstr "Compatible up to:" + +#. translators: %s: Version number. +#: wp-admin/includes/plugin-install.php:675 +#: wp-admin/includes/plugin-install.php:685 +msgid "%s or higher" +msgstr "%s or higher" + +#: wp-admin/includes/plugin-install.php:672 +msgid "Requires WordPress Version:" +msgstr "Requires WordPress:" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:702 +#: wp-admin/includes/plugin-install.php:664 +msgid "Last Updated:" +msgstr "Last Updated:" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/plugin-install.php:728 +msgid "(based on %s rating)" +msgid_plural "(based on %s ratings)" +msgstr[0] "(based on %s rating)" +msgstr[1] "(based on %s ratings)" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:351 +msgid "Plugin zip file" +msgstr "Plugin zip file" + +#: wp-admin/includes/plugin-install.php:345 +msgid "If you have a plugin in a .zip format, you may install or update it by uploading it here." +msgstr "If you have a plugin in a .zip format, you may install or update it by uploading it here." + +#: wp-admin/includes/plugin-install.php:319 +#: wp-admin/includes/plugin-install.php:332 +msgid "Search Plugins" +msgstr "Search Plugins" + +#: wp-admin/includes/plugin-install.php:270 +msgid "You may also browse based on the most popular tags in the Plugin Directory:" +msgstr "You may also browse based on the most popular tags in the Plugin Directory:" + +#: wp-admin/includes/plugin-install.php:269 +msgid "Popular tags" +msgstr "Popular tags" + +#: wp-admin/includes/meta-boxes.php:1504 +msgid "(Leave at 0 for no rating.)" +msgstr "(Leave at 0 for no rating.)" + +#: wp-admin/includes/class-wp-links-list-table.php:140 +#: wp-admin/includes/class-wp-links-list-table.php:152 +#: wp-admin/includes/meta-boxes.php:1493 +msgid "Rating" +msgstr "Rating" + +#: wp-admin/includes/meta-boxes.php:1489 +msgid "Notes" +msgstr "Notes" + +#: wp-admin/includes/meta-boxes.php:1485 +msgid "RSS Address" +msgstr "RSS Address" + +#: wp-admin/includes/meta-boxes.php:1481 +msgid "Image Address" +msgstr "Image Address" + +#: wp-admin/includes/meta-boxes.php:1466 +msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." +msgstr "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea, check out XFN." + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1460 +msgid "sweetheart" +msgstr "sweetheart" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1457 +msgid "date" +msgstr "date" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1454 +msgid "crush" +msgstr "crush" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1451 +msgid "muse" +msgstr "muse" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1442 wp-admin/includes/meta-boxes.php:1447 +msgid "romantic" +msgstr "romantic" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1434 +msgid "spouse" +msgstr "spouse" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1431 +msgid "sibling" +msgstr "sibling" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1428 +msgid "parent" +msgstr "parent" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1425 +msgid "kin" +msgstr "kin" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1422 +msgid "child" +msgstr "child" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1413 wp-admin/includes/meta-boxes.php:1418 +msgid "family" +msgstr "family" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1405 +msgid "neighbor" +msgstr "neighbour" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1402 +msgid "co-resident" +msgstr "co-resident" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1393 wp-admin/includes/meta-boxes.php:1398 +msgid "geographical" +msgstr "geographical" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1388 +msgid "colleague" +msgstr "colleague" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1385 +msgid "co-worker" +msgstr "co-worker" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1376 wp-admin/includes/meta-boxes.php:1381 +msgid "professional" +msgstr "professional" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1371 +msgid "met" +msgstr "met" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1362 wp-admin/includes/meta-boxes.php:1367 +msgid "physical" +msgstr "physical" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1354 +msgid "friend" +msgstr "friend" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1351 +msgid "acquaintance" +msgstr "acquaintance" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1348 +msgid "contact" +msgstr "contact" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1339 wp-admin/includes/meta-boxes.php:1344 +msgid "friendship" +msgstr "friendship" + +#: wp-admin/includes/meta-boxes.php:1335 +msgid "another web address of mine" +msgstr "another web address of mine" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1325 wp-admin/includes/meta-boxes.php:1330 +msgid "identity" +msgstr "identity" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1321 +msgid "rel:" +msgstr "rel:" + +#: wp-admin/includes/meta-boxes.php:1247 +msgid "Choose the target frame for your link." +msgstr "Choose the target frame for your link." + +#: wp-admin/includes/meta-boxes.php:1245 +msgid "_none — same window or tab." +msgstr "_none — same window or tab." + +#: wp-admin/includes/meta-boxes.php:1242 +msgid "_top — current window or tab, with no frames." +msgstr "_top — current window or tab, with no frames." + +#: wp-admin/includes/meta-boxes.php:1239 +msgid "_blank — new window or tab." +msgstr "_blank — new window or tab." + +#. translators: %s: Link name. +#: wp-admin/includes/class-wp-links-list-table.php:356 +#: wp-admin/includes/meta-boxes.php:1140 +msgid "" +"You are about to delete this link '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"You are about to delete this link '%s'\n" +" 'Cancel' to stop, 'OK' to delete." + +#: wp-admin/includes/meta-boxes.php:1122 +msgid "Keep this link private" +msgstr "Keep this link private" + +#: wp-admin/includes/meta-boxes.php:1114 +msgid "Visit Link" +msgstr "Visit Link" + +#: wp-admin/includes/class-wp-posts-list-table.php:1845 +msgid "Main Page (no parent)" +msgstr "Main Page (no parent)" + +#: wp-admin/includes/meta-boxes.php:922 +msgid "Show comments" +msgstr "Show comments" + +#: wp-admin/includes/meta-boxes.php:790 +msgid "Separate multiple URLs with spaces" +msgstr "Separate multiple URLs with spaces" + +#: wp-admin/includes/meta-boxes.php:787 +msgid "Send trackbacks to:" +msgstr "Send trackbacks to:" + +#: wp-admin/includes/meta-boxes.php:777 +msgid "Already pinged:" +msgstr "Already pinged:" + +#: wp-admin/includes/meta-boxes.php:1211 +msgid "New category name" +msgstr "New category name" + +#: wp-admin/includes/meta-boxes.php:246 wp-admin/includes/meta-boxes.php:260 +msgid "Publish immediately" +msgstr "Publish immediately" + +#: wp-admin/includes/meta-boxes.php:214 +msgid "Stick this post to the front page" +msgstr "Stick this post to the front page" + +#: wp-admin/edit-form-comment.php:113 wp-admin/export.php:237 +#: wp-admin/export.php:289 wp-admin/includes/meta-boxes.php:104 +msgid "Status:" +msgstr "Status:" + +#: wp-admin/includes/meta-boxes.php:71 +msgid "Preview Changes" +msgstr "Preview Changes" + +#: wp-admin/includes/media.php:2978 +msgid "Link text, e.g. “Ransom Demands (PDF)”" +msgstr "Link text, e.g. “Ransom Demands (PDF)”" + +#: wp-admin/includes/media.php:3009 +msgid "Link to image" +msgstr "Link to image" + +#: wp-admin/includes/media.php:3004 +msgid "Link Image To:" +msgstr "Link Image To:" + +#: wp-admin/includes/media.php:2935 +msgid "Image Caption" +msgstr "Image Caption" + +#: wp-admin/includes/media.php:2888 +msgid "Filter »" +msgstr "Filter »" + +#: wp-admin/includes/media.php:2797 +msgid "All Types" +msgstr "All Types" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-media-list-table.php:319 +#: wp-admin/includes/class-wp-media-list-table.php:323 +#: wp-admin/includes/media.php:2762 +msgid "Search Media" +msgstr "Search Media" + +#: wp-admin/includes/media.php:2696 +msgid "Update gallery settings" +msgstr "Update gallery settings" + +#: wp-admin/includes/media.php:2675 +msgid "Gallery columns:" +msgstr "Gallery columns:" + +#: wp-admin/includes/media.php:2660 +msgid "Order:" +msgstr "Order:" + +#: wp-admin/includes/media.php:2652 +msgid "Random" +msgstr "Random" + +#: wp-admin/includes/media.php:2651 +msgid "Date/Time" +msgstr "Date/Time" + +#: wp-admin/includes/media.php:2649 +msgid "Menu order" +msgstr "Menu order" + +#: wp-admin/includes/media.php:2644 +msgid "Order images by:" +msgstr "Order images by:" + +#: wp-admin/includes/media.php:2634 +msgid "Image File" +msgstr "Image File" + +#: wp-admin/includes/media.php:2629 +msgid "Link thumbnails to:" +msgstr "Link thumbnails to:" + +#: wp-admin/includes/media.php:2588 wp-admin/includes/media.php:2668 +msgid "Descending" +msgstr "Descending" + +#: wp-admin/includes/media.php:2587 wp-admin/includes/media.php:2665 +msgid "Ascending" +msgstr "Ascending" + +#: wp-admin/includes/media.php:2586 +msgid "Sort Order:" +msgstr "Sort Order:" + +#: wp-admin/includes/media.php:2582 +msgid "All Tabs:" +msgstr "All Tabs:" + +#: wp-admin/includes/media.php:2390 wp-admin/includes/media.php:2608 +#: wp-admin/includes/media.php:2914 +msgid "Save all changes" +msgstr "Save all changes" + +#: wp-admin/includes/media.php:2360 +msgid "Add media files from your computer" +msgstr "Add media files from your computer" + +#: wp-admin/includes/media.php:1730 wp-admin/includes/media.php:3015 +#: wp-admin/includes/media.php:3021 +msgid "Insert into Post" +msgstr "Insert into Post" + +#: wp-admin/includes/media.php:1705 +msgid "Upload date:" +msgstr "Upload date:" + +#: wp-admin/includes/media.php:1621 wp-admin/includes/media.php:2584 +#: wp-admin/install.php:149 wp-admin/user-edit.php:686 +#: wp-admin/user-new.php:608 wp-admin/js/password-toggle.js:28 +#: wp-admin/js/user-profile.js:91 +msgid "Hide" +msgstr "Hide" + +#: wp-admin/includes/media.php:1429 +msgid "Location of the uploaded file." +msgstr "Location of the uploaded file." + +#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2985 +msgid "Alt text for the image, e.g. “The Mona Lisa”" +msgstr "Alt text for the image, e.g. “The Mona Lisa”" + +#: wp-admin/includes/media.php:1289 wp-admin/includes/media.php:1425 +msgid "File URL" +msgstr "File URL" + +#: wp-admin/includes/class-wp-debug-data.php:298 +#: wp-admin/includes/class-wp-privacy-policy-content.php:702 +#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2139 +#: wp-admin/install.php:77 wp-admin/maint/repair.php:24 +#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:88 +msgid "WordPress" +msgstr "WordPress" + +#: wp-admin/includes/media.php:540 +msgid "Uploads" +msgstr "Uploads" + +#. translators: %s: Number of attachments. +#: wp-admin/includes/media.php:64 +msgid "Gallery (%s)" +msgstr "Gallery (%s)" + +#: wp-admin/includes/media.php:19 +msgid "From URL" +msgstr "From URL" + +#: wp-admin/includes/media.php:18 +msgid "From Computer" +msgstr "From Computer" + +#: wp-admin/includes/image-edit.php:1152 +msgid "Image saved" +msgstr "Image saved" + +#: wp-admin/includes/image-edit.php:1012 +msgid "Unable to save the image." +msgstr "Unable to save the image." + +#: wp-admin/includes/image-edit.php:960 +msgid "Nothing to save, the image has not changed." +msgstr "Nothing to save, the image has not changed." + +#: wp-admin/includes/image-edit.php:950 +msgid "Error while saving the scaled image. Please reload the page and try again." +msgstr "Error while saving the scaled image. Please reload the page and try again." + +#: wp-admin/includes/image-edit.php:917 +msgid "Unable to create new image." +msgstr "Unable to create new image." + +#: wp-admin/includes/image-edit.php:885 +msgid "Image restored successfully." +msgstr "Image restored successfully." + +#: wp-admin/includes/image-edit.php:883 +msgid "Image metadata is inconsistent." +msgstr "Image metadata is inconsistent." + +#: wp-admin/includes/image-edit.php:878 +msgid "Cannot save image metadata." +msgstr "Cannot save image metadata." + +#: wp-admin/includes/image-edit.php:810 +msgid "Cannot load image metadata." +msgstr "Cannot load image metadata." + +#: wp-admin/includes/image-edit.php:315 +msgid "All sizes except thumbnail" +msgstr "All sizes except thumbnail" + +#: wp-admin/includes/image-edit.php:305 +msgid "All image sizes" +msgstr "All image sizes" + +#: wp-admin/includes/image-edit.php:301 +msgid "Apply changes to:" +msgstr "Apply changes to:" + +#: wp-admin/includes/image-edit.php:297 +msgid "Current thumbnail" +msgstr "Current thumbnail" + +#: wp-admin/includes/image-edit.php:283 +msgid "Thumbnail Settings" +msgstr "Thumbnail Settings" + +#: wp-admin/includes/image-edit.php:230 +msgid "Selection:" +msgstr "Selection:" + +#: wp-admin/includes/image-edit.php:210 +msgid "Aspect ratio:" +msgstr "Aspect ratio:" + +#: wp-admin/includes/image-edit.php:205 +msgid "Crop Selection" +msgstr "Crop Selection" + +#: wp-admin/includes/image-edit.php:202 +msgid "Crop Aspect Ratio" +msgstr "Crop Aspect Ratio" + +#: wp-admin/includes/image-edit.php:184 +msgid "Restore image" +msgstr "Restore image" + +#: wp-admin/includes/image-edit.php:179 +msgid "Previously edited copies of the image will not be deleted." +msgstr "Previously edited copies of the image will not be deleted." + +#: wp-admin/includes/image-edit.php:177 +msgid "Discard any changes and restore the original image." +msgstr "Discard any changes and restore the original image." + +#: wp-admin/includes/class-custom-background.php:337 +#: wp-admin/includes/class-custom-background.php:341 +msgid "Restore Original Image" +msgstr "Restore Original Image" + +#. translators: %s: Image width and height in pixels. +#: wp-admin/includes/image-edit.php:141 +msgid "Original dimensions %s" +msgstr "Original dimensions %s" + +#: wp-admin/includes/image-edit.php:126 +msgid "Scale Image" +msgstr "Scale Image" + +#: wp-admin/includes/image-edit.php:92 +msgid "Flip horizontal" +msgstr "Flip horizontally" + +#: wp-admin/includes/image-edit.php:91 +msgid "Flip vertical" +msgstr "Flip vertically" + +#: wp-admin/includes/image-edit.php:28 wp-admin/includes/image-edit.php:968 +msgid "Image data does not exist. Please re-upload the image." +msgstr "Image data does not exist. Please re-upload the image." + +#: wp-admin/includes/file.php:2661 +msgid "Proceed" +msgstr "Proceed" + +#: wp-admin/includes/file.php:2609 +msgid "Connection Type" +msgstr "Connection Type" + +#: wp-admin/includes/file.php:2636 +msgid "Private Key:" +msgstr "Private Key:" + +#: wp-admin/includes/file.php:2632 +msgid "Public Key:" +msgstr "Public Key:" + +#: wp-admin/includes/file.php:2630 +msgid "Authentication Keys" +msgstr "Authentication Keys" + +#: wp-admin/includes/file.php:2588 +msgid "Hostname" +msgstr "Hostname" + +#: wp-admin/includes/file.php:2554 +msgid "Connection Information" +msgstr "Connection Information" + +#: wp-admin/includes/file.php:2528 +msgid "SSH2" +msgstr "SSH2" + +#: wp-admin/includes/file.php:2525 +msgid "FTPS (SSL)" +msgstr "FTPS (SSL)" + +#: wp-admin/includes/file.php:2522 +msgid "FTP" +msgstr "FTP" + +#: wp-admin/includes/file.php:1893 +msgid "Empty archive." +msgstr "Empty archive." + +#: wp-admin/includes/file.php:1831 wp-admin/includes/file.php:1985 +#: wp-admin/includes/file.php:2043 wp-admin/includes/update-core.php:1507 +msgid "Could not copy file." +msgstr "Could not copy file." + +#: wp-admin/includes/file.php:1826 +msgid "Could not extract file from archive." +msgstr "Could not extract file from archive." + +#: wp-admin/includes/file.php:1701 wp-admin/includes/file.php:1806 +msgid "Could not retrieve file from archive." +msgstr "Could not retrieve file from archive." + +#: wp-admin/includes/file.php:1169 +msgid "Could not create temporary file." +msgstr "Could not create temporary file." + +#: wp-admin/includes/file.php:931 +msgid "Specified file failed upload test." +msgstr "Specified file failed upload test." + +#: wp-admin/includes/file.php:920 +msgid "Invalid form submission." +msgstr "Invalid form submission." + +#: wp-admin/includes/file.php:906 +msgid "File upload stopped by extension." +msgstr "File upload stopped by extension." + +#: wp-admin/includes/file.php:905 +msgid "Failed to write file to disk." +msgstr "Failed to write file to disk." + +#: wp-admin/includes/file.php:904 +msgid "Missing a temporary folder." +msgstr "Missing a temporary folder." + +#: wp-admin/includes/file.php:902 +msgid "No file was uploaded." +msgstr "No file was uploaded." + +#: wp-admin/includes/file.php:901 +msgid "The uploaded file was only partially uploaded." +msgstr "The uploaded file was only partially uploaded." + +#: wp-admin/includes/file.php:418 wp-admin/includes/file.php:479 +#: wp-admin/includes/file.php:746 wp-admin/includes/file.php:752 +msgid "Sorry, that file cannot be edited." +msgstr "Sorry, that file cannot be edited." + +#: wp-admin/includes/file.php:64 +msgid "Popup Comments Template" +msgstr "Popup Comments Template" + +#: wp-admin/includes/file.php:63 +msgid "Comments Template" +msgstr "Comments Template" + +#: wp-admin/includes/file.php:60 +msgid ".htaccess (for rewrite rules )" +msgstr ".htaccess (for rewrite rules )" + +#: wp-admin/includes/file.php:59 +msgid "my-hacks.php (legacy hacks support)" +msgstr "my-hacks.php (legacy hacks support)" + +#: wp-admin/includes/file.php:46 +msgid "Application Attachment Template" +msgstr "Application Attachment Template" + +#: wp-admin/includes/file.php:45 +msgid "Audio Attachment Template" +msgstr "Audio Attachment Template" + +#: wp-admin/includes/file.php:44 +msgid "Video Attachment Template" +msgstr "Video Attachment Template" + +#: wp-admin/includes/file.php:43 +msgid "Image Attachment Template" +msgstr "Image Attachment Template" + +#: wp-admin/includes/file.php:42 +msgid "Attachment Template" +msgstr "Attachment Template" + +#: wp-admin/includes/file.php:16 +msgid "Theme Functions" +msgstr "Theme Functions" + +#: wp-admin/includes/file.php:23 +msgid "Links Template" +msgstr "Links Template" + +#: wp-admin/includes/file.php:22 +msgid "404 Template" +msgstr "404 Template" + +#: wp-admin/includes/file.php:37 +msgid "Single Post" +msgstr "Single Post" + +#: wp-admin/includes/file.php:21 +msgid "Search Form" +msgstr "Search Form" + +#: wp-admin/erase-personal-data.php:150 wp-admin/export-personal-data.php:150 +msgid "Search Requests" +msgstr "Search Requests" + +#: wp-admin/includes/file.php:30 +msgid "Category Template" +msgstr "Category Template" + +#: wp-admin/includes/file.php:65 +msgid "Popup Comments" +msgstr "Popup Comments" + +#: wp-admin/includes/file.php:57 +msgid "RTL Stylesheet" +msgstr "RTL Stylesheet" + +#: wp-admin/includes/file.php:26 +msgid "Main Index Template" +msgstr "Main Index Template" + +#: wp-admin/includes/dashboard.php:1166 +msgid "This widget requires JavaScript." +msgstr "This widget requires JavaScript." + +#. translators: 1: Type of comment, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:900 +msgctxt "dashboard" +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: wp-admin/includes/dashboard.php:858 wp-admin/includes/dashboard.php:865 +#: wp-admin/includes/dashboard.php:895 wp-admin/includes/dashboard.php:902 +msgid "[Pending]" +msgstr "[Pending]" + +#. translators: 1: Comment author, 2: Post link, 3: Notification if the comment +#. is pending. +#: wp-admin/includes/dashboard.php:855 +msgid "From %1$s on %2$s %3$s" +msgstr "From %1$s on %2$s %3$s" + +#: wp-admin/includes/class-wp-comments-list-table.php:818 +#: wp-admin/includes/dashboard.php:793 +msgid "Move this comment to the Trash" +msgstr "Move this comment to the bin" + +#. translators: "Mark as spam" link. +#: wp-admin/includes/class-wp-comments-list-table.php:783 +#: wp-admin/includes/dashboard.php:777 +msgctxt "verb" +msgid "Spam" +msgstr "Spam" + +#: wp-admin/includes/class-wp-comments-list-table.php:781 +#: wp-admin/includes/dashboard.php:775 +msgid "Mark this comment as spam" +msgstr "Mark this comment as spam" + +#: wp-admin/includes/class-wp-comments-list-table.php:849 +#: wp-admin/includes/dashboard.php:767 +msgid "Reply to this comment" +msgstr "Reply to this comment" + +#: wp-admin/includes/class-wp-comments-list-table.php:746 +#: wp-admin/includes/class-wp-comments-list-table.php:771 +#: wp-admin/includes/dashboard.php:752 +msgid "Unapprove this comment" +msgstr "Unapprove this comment" + +#: wp-admin/includes/class-wp-comments-list-table.php:754 +#: wp-admin/includes/class-wp-comments-list-table.php:763 +#: wp-admin/includes/dashboard.php:744 +msgid "Approve this comment" +msgstr "Approve this comment" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/nav-menu.php:532 wp-admin/includes/nav-menu.php:904 +msgid "Page" +msgstr "Page" + +#: wp-admin/includes/dashboard.php:210 +msgid "Configure" +msgstr "Configure" + +#: wp-admin/includes/dashboard.php:148 +msgid "View all" +msgstr "View all" + +#: wp-admin/includes/dashboard.php:1593 +msgid "Other WordPress News" +msgstr "Other WordPress News" + +#: wp-admin/includes/dashboard.php:77 +msgid "Right Now" +msgstr "Right Now" + +#. translators: %s: Destination file path. +#: wp-admin/includes/file.php:1033 +msgid "The uploaded file could not be moved to %s." +msgstr "The uploaded file could not be moved to %s." + +#: wp-admin/includes/class-file-upload-upgrader.php:57 +#: wp-admin/includes/class-file-upload-upgrader.php:120 +#: wp-admin/includes/class-file-upload-upgrader.php:136 +msgid "Please select a file" +msgstr "Please select a file" + +#: wp-admin/includes/class-file-upload-upgrader.php:89 +msgid "Return to the Theme Installer" +msgstr "Return to the theme installer" + +#. translators: %s: Post title. +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-posts-list-table.php:1553 +#: wp-admin/includes/class-wp-theme-install-list-table.php:286 +msgid "Preview “%s”" +msgstr "Preview “%s”" + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:84 +msgid "Successfully installed the theme %1$s %2$s." +msgstr "Successfully installed the theme %1$s %2$s." + +#: wp-admin/includes/class-file-upload-upgrader.php:80 +msgid "Return to the Plugin Installer" +msgstr "Return to the plugin installer" + +#. translators: 1: Plugin name, 2: Plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:86 +msgid "Successfully installed the plugin %1$s %2$s." +msgstr "Successfully installed the plugin %1$s %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:122 +#: wp-admin/includes/class-plugin-upgrader-skin.php:96 +msgid "Activate Plugin" +msgstr "Activate Plugin" + +#: wp-admin/includes/class-core-upgrader.php:39 +msgid "Could not copy files." +msgstr "Could not copy files." + +#: wp-admin/includes/class-core-upgrader.php:33 +msgid "WordPress is at the latest version." +msgstr "WordPress is at the latest version." + +#: wp-admin/includes/class-theme-upgrader.php:82 +msgid "Theme installed successfully." +msgstr "Theme installed successfully." + +#: wp-admin/includes/class-theme-upgrader.php:77 +msgid "Installing the theme…" +msgstr "Installing the theme…" + +#: wp-admin/includes/class-theme-upgrader.php:62 +#: wp-admin/includes/class-theme-upgrader.php:79 +msgid "Could not remove the old theme." +msgstr "Could not remove the old theme." + +#: wp-admin/includes/class-theme-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:78 +msgid "Removing the old version of the theme…" +msgstr "Removing the old version of the theme…" + +#: wp-admin/includes/class-theme-upgrader.php:56 +msgid "The theme is at the latest version." +msgstr "The theme is at the latest version." + +#: wp-admin/includes/class-plugin-upgrader.php:84 +msgid "Plugin installed successfully." +msgstr "Plugin installed successfully." + +#: wp-admin/includes/class-plugin-upgrader.php:79 +msgid "Installing the plugin…" +msgstr "Installing the plugin…" + +#: wp-admin/includes/class-plugin-upgrader.php:78 +#: wp-admin/includes/class-theme-upgrader.php:76 +msgid "Unpacking the package…" +msgstr "Unpacking the package…" + +#: wp-admin/includes/class-plugin-upgrader.php:75 +#: wp-admin/includes/class-theme-upgrader.php:73 +msgid "Installation package not available." +msgstr "Installation package not available." + +#: wp-admin/includes/class-plugin-upgrader.php:63 +msgid "Could not remove the old plugin." +msgstr "Could not remove the old plugin." + +#: wp-admin/includes/class-plugin-upgrader.php:62 +msgid "Removing the old version of the plugin…" +msgstr "Removing the old version of the plugin…" + +#: wp-admin/includes/class-core-upgrader.php:38 +#: wp-admin/includes/class-language-pack-upgrader.php:118 +#: wp-admin/includes/class-plugin-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:60 +msgid "Unpacking the update…" +msgstr "Unpacking the update…" + +#: wp-admin/includes/class-plugin-upgrader.php:57 +msgid "The plugin is at the latest version." +msgstr "The plugin is at the latest version." + +#: wp-admin/includes/class-wp-upgrader.php:210 +#: wp-admin/includes/update-core.php:1454 +msgid "Disabling Maintenance mode…" +msgstr "Disabling Maintenance mode…" + +#: wp-admin/includes/class-wp-upgrader.php:209 +#: wp-admin/includes/update-core.php:1305 +msgid "Enabling Maintenance mode…" +msgstr "Enabling Maintenance mode…" + +#: wp-admin/includes/class-file-upload-upgrader.php:82 +#: wp-admin/includes/class-file-upload-upgrader.php:91 +#: wp-admin/includes/file.php:1691 wp-admin/includes/file.php:1889 +msgid "Incompatible Archive." +msgstr "Incompatible Archive." + +#: wp-admin/includes/class-wp-upgrader.php:204 wp-admin/includes/file.php:1777 +#: wp-admin/includes/file.php:1958 wp-admin/includes/file.php:2051 +#: wp-admin/includes/file.php:2134 +msgid "Could not create directory." +msgstr "Could not create directory." + +#: wp-admin/includes/class-wp-upgrader.php:203 +msgid "Destination folder already exists." +msgstr "Destination folder already exists." + +#: wp-admin/includes/class-wp-upgrader.php:201 +msgid "Installing the latest version…" +msgstr "Installing the latest version…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:63 +#: wp-admin/includes/class-wp-upgrader.php:200 +msgid "Download failed." +msgstr "Download failed." + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-upgrader.php:197 +msgid "Unable to locate needed folder (%s)." +msgstr "Unable to locate needed folder (%s)." + +#: wp-admin/includes/class-wp-site-health.php:1907 +msgid "Unable to locate WordPress content directory" +msgstr "Unable to locate WordPress content directory" + +#: wp-admin/includes/class-wp-upgrader.php:194 wp-admin/includes/plugin.php:958 +msgid "Unable to locate WordPress plugin directory." +msgstr "Unable to locate WordPress plugin directory." + +#: wp-admin/includes/class-wp-upgrader.php:191 +msgid "Unable to locate WordPress root directory." +msgstr "Unable to locate WordPress root directory." + +#: wp-admin/includes/class-wp-upgrader.php:190 wp-admin/includes/plugin.php:952 +#: wp-admin/includes/theme.php:66 +msgid "Filesystem error." +msgstr "Filesystem error." + +#: wp-admin/includes/class-wp-site-health.php:1898 +msgid "Could not access filesystem" +msgstr "Could not access filesystem" + +#: wp-admin/includes/class-wp-upgrader.php:188 +msgid "Invalid data provided." +msgstr "Invalid data provided." + +#. translators: %s: Command. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:228 +msgid "Unable to perform command: %s" +msgstr "Unable to perform command: %s" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:160 +msgid "Public and Private keys incorrect for %s" +msgstr "Public and Private keys incorrect for %s" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:133 +msgid "Failed to connect to SSH2 Server %s" +msgstr "Failed to connect to SSH2 Server %s" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:105 +msgid "SSH2 password is required" +msgstr "SSH2 password is required" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:95 +msgid "SSH2 username is required" +msgstr "SSH2 username is required" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:81 +msgid "SSH2 hostname is required" +msgstr "SSH2 hostname is required" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:69 +msgid "The ssh2 PHP extension is not available" +msgstr "The ssh2 PHP extension is not available" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ftpext.php:110 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:113 +#: wp-admin/includes/class-wp-filesystem-ssh2.php:147 +msgid "Username/Password incorrect for %s" +msgstr "Username/Password incorrect for %s" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ftpext.php:97 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:87 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:100 +msgid "Failed to connect to FTP Server %s" +msgstr "Failed to connect to FTP Server %s" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:66 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:62 +msgid "FTP password is required" +msgstr "FTP password is required" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:60 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:56 +msgid "FTP username is required" +msgstr "FTP username is required" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:53 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:49 +msgid "FTP hostname is required" +msgstr "FTP hostname is required" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:37 +msgid "The ftp PHP extension is not available" +msgstr "The ftp PHP extension is not available" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:317 +msgid "Found %s" +msgstr "Found %s" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:297 +msgid "Changing to %s" +msgstr "Changing to %s" + +#: wp-admin/includes/bookmark.php:236 +msgid "Could not insert link into the database." +msgstr "Could not insert link into the database." + +#: wp-admin/includes/bookmark.php:228 +msgid "Could not update link in the database." +msgstr "Could not update link in the database." + +#: wp-admin/includes/import.php:205 +msgid "Movable Type and TypePad" +msgstr "Movable Type and TypePad" + +#: wp-admin/includes/import.php:199 +msgid "LiveJournal" +msgstr "LiveJournal" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:295 +#: wp-admin/includes/class-wp-theme-install-list-table.php:159 +#: wp-admin/setup-config.php:301 wp-admin/theme-install.php:66 +msgid "Try Again" +msgstr "Try Again" + +#: wp-admin/includes/import.php:187 +msgid "Blogger" +msgstr "Blogger" + +#: wp-admin/import.php:102 +msgid "No importers are available." +msgstr "No importers are available." + +#: wp-admin/export.php:345 +msgid "Download Export File" +msgstr "Download Export File" + +#: wp-admin/export.php:177 +msgid "This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." +msgstr "This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." + +#: wp-admin/export.php:176 +msgid "When you click the button below WordPress will create an XML file for you to save to your computer." +msgstr "When you click the button below WordPress will create an XML file for you to save to your computer." + +#: wp-admin/export.php:20 wp-admin/menu.php:376 +msgid "Export" +msgstr "Export" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:345 +msgctxt "posts" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%s)" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:324 +msgctxt "posts" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Mine (%s)" +msgstr[1] "Mine (%s)" + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:388 +msgid "%s pattern not updated, somebody is editing it." +msgid_plural "%s patterns not updated, somebody is editing them." +msgstr[0] "%s pattern not updated, somebody is editing it." +msgstr[1] "%s patterns not updated, somebody is editing them." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:359 +msgid "%s post updated." +msgid_plural "%s posts updated." +msgstr[0] "%s post updated." +msgstr[1] "%s posts updated." + +#: wp-admin/edit-tags.php:117 wp-admin/edit.php:176 wp-admin/post.php:316 +#: wp-admin/themes.php:63 wp-admin/upload.php:332 +msgid "Sorry, you are not allowed to delete this item." +msgstr "Sorry, you are not allowed to delete this item." + +#: wp-admin/includes/edit-tag-messages.php:17 +msgid "Item not added." +msgstr "Item not added." + +#: wp-admin/includes/edit-tag-messages.php:16 +msgid "Item updated." +msgstr "Item updated." + +#: wp-admin/includes/edit-tag-messages.php:15 +msgid "Item deleted." +msgstr "Item deleted." + +#: wp-admin/edit-tag-form.php:198 wp-admin/edit-tags.php:515 +msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." +msgstr "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." + +#: wp-admin/edit-link-form.php:142 +msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." +msgstr "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." + +#: wp-admin/edit-link-form.php:134 +msgid "Example: https://wordpress.org/ — do not forget the https://" +msgstr "Example: https://wordpress.org/ — do not forget the https://" + +#: wp-admin/edit-link-form.php:131 +msgid "Web Address" +msgstr "Web Address" + +#: wp-admin/edit-link-form.php:126 +msgid "Example: Nifty blogging software" +msgstr "Example: Nifty blogging software" + +#: wp-admin/edit-link-form.php:97 +msgid "Link added." +msgstr "Link added." + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:22 +msgid "Links / Add Link" +msgstr "Links / Add Link" + +#: wp-admin/edit-link-form.php:17 wp-admin/includes/meta-boxes.php:1149 +msgid "Update Link" +msgstr "Update Link" + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:16 +msgid "Links / Edit Link" +msgstr "Links / Edit Link" + +#: wp-admin/themes.php:273 wp-admin/themes.php:282 +msgid "Visit site" +msgstr "Visit site" + +#: wp-admin/includes/template.php:509 +msgid "Update Comment" +msgstr "Update Comment" + +#. translators: 1: Post edited date, 2: Post edited time. +#. translators: 1: Date of last edit, 2: Time of last edit. +#: wp-admin/edit-form-advanced.php:660 wp-admin/includes/ajax-actions.php:2902 +msgid "Last edited on %1$s at %2$s" +msgstr "Last edited on %1$s at %2$s" + +#. translators: 1: Name of most recent post author, 2: Post edited date, 3: +#. Post edited time. +#. translators: 1: User's display name, 2: Date of last edit, 3: Time of last +#. edit. +#: wp-admin/edit-form-advanced.php:652 wp-admin/includes/ajax-actions.php:2899 +msgid "Last edited by %1$s on %2$s at %3$s" +msgstr "Last edited by %1$s on %2$s at %3$s" + +#: wp-admin/includes/meta-boxes.php:1652 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: wp-admin/includes/meta-boxes.php:1646 +msgid "Send Trackbacks" +msgstr "Send Trackbacks" + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:195 +msgid "Page restored to revision from %s." +msgstr "Page restored to revision from %s." + +#: wp-admin/edit-form-advanced.php:182 +msgid "Post saved." +msgstr "Post saved." + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:180 +msgid "Post restored to revision from %s." +msgstr "Post restored to revision from %s." + +#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-advanced.php:192 +msgid "Custom field deleted." +msgstr "Custom field deleted." + +#: wp-admin/edit-form-advanced.php:176 wp-admin/edit-form-advanced.php:191 +msgid "Custom field updated." +msgstr "Custom field updated." + +#: wp-admin/includes/class-wp-comments-list-table.php:225 +msgid "No comments found." +msgstr "No comments found." + +#: wp-admin/includes/class-wp-comments-list-table.php:433 +#: wp-admin/includes/class-wp-media-list-table.php:222 +#: wp-admin/includes/class-wp-posts-list-table.php:607 +msgid "Empty Trash" +msgstr "Empty Bin" + +#: wp-admin/includes/class-wp-comments-list-table.php:433 +msgid "Empty Spam" +msgstr "Empty Spam" + +#: wp-admin/includes/class-wp-comments-list-table.php:425 +#: wp-admin/includes/class-wp-links-list-table.php:123 +#: wp-admin/includes/class-wp-media-list-table.php:217 +#: wp-admin/includes/class-wp-posts-list-table.php:600 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:344 +msgid "Filter" +msgstr "Filter" + +#: wp-admin/includes/class-wp-comments-list-table.php:509 +#: wp-admin/includes/class-wp-posts-list-table.php:1945 +msgid "Pings" +msgstr "Pings" + +#: wp-admin/includes/class-wp-comments-list-table.php:371 +#: wp-admin/includes/class-wp-comments-list-table.php:755 +#: wp-admin/includes/class-wp-comments-list-table.php:764 +#: wp-admin/includes/dashboard.php:745 +msgid "Approve" +msgstr "Approve" + +#: wp-admin/includes/class-wp-comments-list-table.php:367 +#: wp-admin/includes/class-wp-comments-list-table.php:747 +#: wp-admin/includes/class-wp-comments-list-table.php:772 +#: wp-admin/includes/dashboard.php:753 +msgid "Unapprove" +msgstr "Unapprove" + +#: wp-admin/edit.php:288 wp-admin/includes/class-wp-list-table.php:607 +msgid "Bulk actions" +msgstr "Bulk actions" + +#. translators: 1: Starting number of users on the current page, 2: Ending +#. number of users, 3: Total number of users. +#: wp-admin/includes/deprecated.php:614 +msgid "Displaying %1$s–%2$s of %3$s" +msgstr "Displaying %1$s–%2$s of %3$s" + +#: wp-admin/edit-comments.php:436 +msgid "Search Comments" +msgstr "Search Comments" + +#: wp-admin/edit-form-comment.php:117 +msgid "Approved" +msgstr "Approved" + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:386 +msgid "%s comment permanently deleted." +msgid_plural "%s comments permanently deleted." +msgstr[0] "%s comment permanently deleted." +msgstr[1] "%s comments permanently deleted." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:356 +msgid "%s comment restored from the spam." +msgid_plural "%s comments restored from the spam." +msgstr[0] "%s comment restored from the spam." +msgstr[1] "%s comments restored from the spam." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:344 +msgid "%s comment marked as spam." +msgid_plural "%s comments marked as spam." +msgstr[0] "%s comment marked as spam." +msgstr[1] "%s comments marked as spam." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:334 +msgid "%s comment approved." +msgid_plural "%s comments approved." +msgstr[0] "%s comment approved." +msgstr[1] "%s comments approved." + +#: wp-admin/includes/class-wp-media-list-table.php:194 +#: wp-admin/includes/class-wp-media-list-table.php:628 +#: wp-admin/includes/class-wp-media-list-table.php:858 +msgid "Attach" +msgstr "Attach" + +#: wp-admin/includes/class-wp-media-list-table.php:618 +msgid "(Unattached)" +msgstr "(Unattached)" + +#: wp-admin/includes/class-wp-media-list-table.php:547 +#: wp-admin/includes/class-wp-posts-list-table.php:1197 +msgid "Unpublished" +msgstr "Unpublished" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:825 +#: wp-admin/includes/class-wp-posts-list-table.php:1562 +msgid "View “%s”" +msgstr "View “%s”" + +#: wp-admin/edit-form-comment.php:242 +#: wp-admin/includes/class-wp-comments-list-table.php:811 +#: wp-admin/includes/class-wp-media-list-table.php:810 +#: wp-admin/includes/class-wp-posts-list-table.php:1540 +#: wp-admin/includes/dashboard.php:786 wp-admin/includes/media.php:1736 +msgid "Delete Permanently" +msgstr "Delete Permanently" + +#. translators: %s: Link name. +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-links-list-table.php:205 +#: wp-admin/includes/class-wp-media-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:1491 +#: wp-admin/includes/class-wp-terms-list-table.php:491 +#: wp-admin/includes/dashboard.php:675 wp-admin/includes/dashboard.php:1039 +msgid "Edit “%s”" +msgstr "Edit “%s”" + +#: wp-admin/includes/class-custom-image-header.php:933 +msgid "Choose the part of the image you want to use as your header." +msgstr "Choose the part of the image you want to use as your header." + +#: wp-admin/includes/class-custom-image-header.php:915 +#: wp-admin/includes/class-custom-image-header.php:1074 +msgid "Image Processing Error" +msgstr "Image Processing Error" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-image-header.php:533 +msgid "Header updated. Visit your site to see how it looks." +msgstr "Header updated. Visit your site to see how it looks." + +#: wp-admin/includes/class-custom-image-header.php:512 +#: wp-admin/includes/theme.php:336 +msgid "Custom Header" +msgstr "Custom Header" + +#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2602 +#: wp-admin/nav-menus.php:928 wp-admin/options.php:440 +msgid "Save Changes" +msgstr "Save Changes" + +#: wp-admin/includes/class-custom-background.php:353 +#: wp-admin/includes/class-custom-image-header.php:663 +msgid "Choose an image from your computer:" +msgstr "Choose an image from your computer:" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-background.php:264 +msgid "Background updated. Visit your site to see how it looks." +msgstr "Background updated. Visit your site to see how it looks." + +#: wp-admin/includes/class-custom-background.php:243 +#: wp-admin/includes/theme.php:334 +msgid "Custom Background" +msgstr "Custom Background" + +#: wp-admin/comment.php:383 +msgid "Unknown action." +msgstr "Unknown action." + +#: wp-admin/comment.php:147 +msgid "Approve comment" +msgstr "Approve comment" + +#: wp-admin/comment.php:146 +msgid "You are about to approve the following comment:" +msgstr "You are about to approve the following comment:" + +#: wp-admin/comment.php:143 +msgid "Permanently delete comment" +msgstr "Permanently delete comment" + +#: wp-admin/comment.php:142 +msgid "You are about to delete the following comment:" +msgstr "You are about to delete the following comment:" + +#: wp-admin/comment.php:138 +msgid "You are about to move the following comment to the Trash:" +msgstr "You are about to move the following comment to the Bin:" + +#: wp-admin/comment.php:134 +msgid "You are about to mark the following comment as spam:" +msgstr "You are about to mark the following comment as spam:" + +#: wp-admin/comment.php:88 +msgid "This comment is in the Trash. Please move it out of the Trash if you want to edit it." +msgstr "This comment is in the Bin. Please move it out of the Bin if you want to edit it." + +#: wp-admin/comment.php:295 wp-admin/edit-comments.php:300 +#: wp-admin/includes/comment.php:55 +msgid "Sorry, you are not allowed to edit comments on this post." +msgstr "Sorry, you are not allowed to edit comments on this post." + +#: wp-admin/authorize-application.php:98 wp-admin/authorize-application.php:116 +msgid "Go Back" +msgstr "Go Back" + +#: wp-admin/comment.php:58 wp-admin/edit-form-comment.php:22 +#: wp-admin/includes/template.php:462 +msgid "Edit Comment" +msgstr "Edit Comment" + +#: wp-admin/admin.php:339 wp-admin/import.php:19 wp-admin/menu.php:375 +msgid "Import" +msgstr "Import" + +#. translators: %s: Admin page generated by a plugin. +#: wp-admin/admin.php:270 +msgid "Cannot load %s." +msgstr "Cannot load %s." + +#: wp-admin/admin.php:263 +msgid "Invalid plugin page." +msgstr "Invalid plugin page." + +#: wp-admin/includes/ajax-actions.php:2208 +#: wp-admin/includes/ajax-actions.php:2214 +#: wp-admin/includes/edit-tag-messages.php:18 +msgid "Item not updated." +msgstr "Item not updated." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2085 +msgid "Saving is disabled: %s is currently editing this post." +msgstr "Saving is disabled: %s is currently editing this post." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2089 +msgid "Saving is disabled: %s is currently editing this page." +msgstr "Saving is disabled: %s is currently editing this page." + +#: wp-admin/includes/ajax-actions.php:2082 +msgid "Someone" +msgstr "Someone" + +#. translators: %s: Date and time. +#: wp-admin/includes/misc.php:1373 +msgid "Draft saved at %s." +msgstr "Draft saved at %s." + +#. translators: Draft saved date format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/misc.php:1369 +msgid "g:i:s a" +msgstr "H:i:s" + +#: wp-admin/includes/ajax-actions.php:1658 +#: wp-admin/includes/ajax-actions.php:1666 +msgid "Please provide a custom field value." +msgstr "Please provide a custom field value." + +#: wp-admin/includes/ajax-actions.php:1350 +msgid "Sorry, you must be logged in to reply to a comment." +msgstr "Sorry, you must be logged in to reply to a comment." + +#: wp-admin/includes/taxonomy.php:136 +msgid "You did not enter a category name." +msgstr "You did not enter a category name." + +#. translators: %d: Comment ID. +#: wp-admin/includes/ajax-actions.php:990 +msgid "Comment %d does not exist" +msgstr "Comment %d does not exist" + +#: wp-admin/includes/media.php:2840 wp-admin/includes/nav-menu.php:530 +#: wp-admin/includes/nav-menu.php:902 +msgid "»" +msgstr "»" + +#: wp-admin/includes/media.php:2839 wp-admin/includes/nav-menu.php:529 +#: wp-admin/includes/nav-menu.php:901 +msgid "«" +msgstr "«" \ No newline at end of file diff --git a/web/app/languages/admin-fr_BE.l10n.php b/web/app/languages/admin-fr_BE.l10n.php new file mode 100755 index 00000000..7231bcf1 --- /dev/null +++ b/web/app/languages/admin-fr_BE.l10n.php @@ -0,0 +1,170 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2024-02-01 23:56:53+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.5.x - Development - Administration','language'=>'fr_BE','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/Brussels','Only .zip archives may be uploaded.'=>'Uniquement les archives .zip peuvent être téléversées.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','Add New Site'=>'Ajouter un site','Add New Plugin'=>'Ajouter une extension','Rotate 180°'=>'Rotation de 180°','Rotate 90° right'=>'Rotation de 90° à droite','Rotate 90° left'=>'Rotation de 90° à gauche','%s pattern moved to the Trash.'=>'La composition %s a été mise à la corbeille.' . "\0" . 'Les compositions %s ont été mises à la corbeille.','%s pattern permanently deleted.'=>'Composition %s définitivement supprimée.' . "\0" . 'Compositions %s définitivement supprimées.','%s pattern updated.'=>'Composition %s mise à jour.' . "\0" . 'Compositions %s mises à jour.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste.','Explore the WordPress %2$s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explorez le Guide des changements techniques de WordPress %2$s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous aident à construire avec WordPress.','Read the WordPress %2$s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Lisez les notes de version de WordPress %2$s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers.','Invalid URL format.'=>'Format d’URL invalide.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'La version de PHP sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','https://wordpress.org/support/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Les mises à jour peuvent prendre plusieurs minutes à se terminer. S’il n’y a aucun retour après 5 minutes, ou s’il y a des erreurs, veuillez vous référer à la section Aide ci-dessus.','Common Errors'=>'Erreurs courantes','Restore Plugin or Theme'=>'Restaurer l’extension ou le thème','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'Sur les systèmes avec moins de ressources, ça peut mener à des dépassement de délais serveur ou à atteindre les limites des ressources. Si vous rencontrez un problème lors du processus de mise à jour, veuillez créer un fil de discussion dans le forum d’aide et indiquer Restauration dans le titre du fil.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://fr.wordpress.org/support/article/using-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'En quelques mots, expliquez ce que représente ce site. Exemple : « %s ».','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note : le fait de décourager les moteurs de recherche ne bloque pas l’accès à votre site. Il appartient aux moteurs de recherche d’honorer votre demande.','New custom field name'=>'Nouveau nom de champ personnalisé','Search Media:'=>'Rechercher un média :','Clear Crop'=>'Annuler le recadrage','Apply Crop'=>'Appliquer le recadrage','vertical start position'=>'position verticale de départ','horizontal start position'=>'position horizontale de départ','Starting Coordinates:'=>'Coordonnées de départ :','Crop Image'=>'Recadrer l’image','Images cannot be scaled to a size larger than the original.'=>'Les images ne peuvent pas être mises à l’échelle dans une taille supérieure à celle de l’original.','Save Edits'=>'Enregistrer les modifications','Cancel Editing'=>'Annuler la modification','Could not create the destination directory.'=>'Impossible de créer le répertoire de destination.','Table ordered by E-mail.'=>'Tableau trié par e-mail.','Table ordered by Username.'=>'Tableau trié par identifiant.','Could not delete the temporary backup directory for %s.'=>'Impossible de supprimer le répertoire de sauvegarde temporaire de %s.','Could not restore the original version of %s.'=>'Impossible de restaurer la version originale de %s.','Could not move the old version to the %s directory.'=>'Impossible de déplacer l’ancienne version vers le répertoire %s.','Could not create the %s directory.'=>'Impossible de créer le répertoire %s.','Table ordered by Links.'=>'Tableau trié par liens.','Table ordered by Posts Count.'=>'Tableau trié par nombre de publications.','Table ordered by Slug.'=>'Tableau trié par slug.','Table ordered by Description.'=>'Tableau trié par description.','Table ordered hierarchically.'=>'Tableau trié hiérarchiquement.','Available disk space'=>'Espace disque disponible','Plugin and theme temporary backup directory access'=>'Accès au répertoire de sauvegarde temporaire des extensions et des thèmes','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'Le répertoire %1$s n’existe pas et le serveur n’a pas les droits en écriture dans %2$s pour le créer. Ce répertoire est utilisé pour les mises à jour des extensions et de thèmes. Veuillez vous assurer que le serveur dispose des droits en écriture dans %2$s.','The upgrade directory cannot be created'=>'Le répertoire de mise à niveau ne peut pas être créé','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour les mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The upgrade directory exists but is not writable'=>'Le répertoire de mise à niveau existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire existe mais n’est pas accessible en écriture.','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour de thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','Theme temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des thèmes existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ce répertoire.','Plugin temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des extensions existe mais n’est pas accessible en écriture','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'Les répertoires %1$s et %2$s existent mais ne sont pas accessibles en écriture. Ces répertoires sont utilisés pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ces répertoires.','Plugin and theme temporary backup directories exist but are not writable'=>'Les répertoires de sauvegarde temporaire des extensions et des thèmes existent mais ne sont pas accessibles en écriture.','The %s directory cannot be located.'=>'Le répertoire %s est introuvable.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'Le répertoire %s utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes est accessible en écriture.','Plugin and theme temporary backup directory is writable'=>'Le répertoire de sauvegarde temporaire des extensions et des thèmes est accessible en écriture','Could not determine available disk space for updates.'=>'Impossible de déterminer l’espace disque disponible pour les mises à jour.','Available disk space is critically low, less than 20 MB available. Proceed with caution, updates may fail.'=>'L’espace disque disponible est extrêmement faible, moins de 20 Mo disponibles. Procédez avec prudence, les mises à jour peuvent échouer.','Available disk space is low, less than 100 MB available.'=>'L’espace disque disponible est faible, moins de 100 Mo disponibles.','%s available disk space was detected, update routines can be performed safely.'=>'%s d’espace disque disponible a été détecté, les routines de mise à jour peuvent être effectuées en toute sécurité.','Disk space available to safely perform updates'=>'Espace disque disponible pour effectuer les mises à jour en toute sécurité','Table ordered by Hierarchical Menu Order and Title.'=>'Tableau trié par l’ordre hiérarchique du menu et par son titre.','Table ordered by Title.'=>'Tableau trié par titre.','Table ordered by Date.'=>'Tableau trié par date.','Table ordered by Comments.'=>'Tableau trié par commentaires.','Table ordered by Uploaded To.'=>'Tableau trié par destination du téléversement.','Table ordered by Author.'=>'Tableau trié par auteur.','Table ordered by File Name.'=>'Tableau trié par nom de fichier.','Descending.'=>'Décroissant.','Ascending.'=>'Croissant.','Sort descending.'=>'Tri décroissant','Sort ascending.'=>'Tri croissant','Table ordered by Rating.'=>'Tableau trié par évaluation.','Table ordered by Visibility.'=>'Tableau trié par visibilité.','Table ordered by URL.'=>'Tableau trié par URL.','Table ordered by Name.'=>'Tableau trié par nom.','Current Server time'=>'Heure actuelle du serveur','Current UTC time'=>'Heure UTC actuelle','Current time'=>'Heure actuelle','Ordered by Comment Date, descending.'=>'Tableau trié par date de commentaire, décroissante.','Table ordered by Post Replied To.'=>'Tableau trié par commentaire lié à l’article.','Table ordered by Comment Author.'=>'Tableau trié par l’auteur du commentaire.','Attempting to restore the previous version.'=>'Tentative de restauration de la version précédente.','More details.'=>'Plus de détails.','Find your team →'=>'Trouvez votre équipe →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Trouver le domaine qui correspond à vos compétences et à vos intérêts est le premier pas vers une contribution significative. Avec plus de 20 équipes Make WordPress travaillant sur différentes parties du projet open source WordPress, il y a une place pour tout le monde, quelles que soient vos compétences.','Shape the future of the web with WordPress'=>'Façonnez l’avenir du web avec WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'Applications mobiles WordPress : Kotlin, Java, Swift, Objective-C, Vue, Python et TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'Cœur de WP et éditeur de blocs : HTML, CSS, PHP, SQL, JavaScript et React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress adopte de nouvelles technologies, tout en s’engageant à en assurer la rétro-compatibilité. Le projet WordPress utilise les langages et outils suivants :','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribuez au code, améliorez l’expérience d’utilisation, et testez les applications mobiles WordPress','Write and submit patches to fix bugs or help build new features.'=>'Écrivez et envoyez des corrections de bogues ou contribuez à l’élaboration de nouvelles fonctionnalités','Test new releases and proposed features for the Block Editor.'=>'Testez les nouvelles versions et fonctionnalités proposées pour l’éditeur de blocs.','Find and report bugs in the WordPress core software.'=>'Trouvez et signalez des bogues dans le cœur de WordPress','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'Si vous codez, ou souhaitez apprendre à le faire, vous pouvez contribuer techniquement de nombreuses manières :','Code-based contribution'=>'Contribution au code de WordPress','Explore ways to reduce the environmental impact of websites.'=>'Explorez les moyens de réduire l’impact environnemental des millions de sites WordPress.','Edit videos and add captions to WordPress.tv.'=>'Gérez les vidéos et ajoutez des sous-titres sur WordPress.tv','Lend your creative imagination to the WordPress UI design.'=>'Laissez libre cours à votre imagination créative pour la conception de l’interface d’utilisation de WordPress','Organize or participate in local Meetups and WordCamps.'=>'Organisez ou participez à des Meetups WordPress locaux ou à des WordCamps','Curate submissions or take photos for the Photo Directory.'=>'Sélectionnez les propositions ou prenez des photos pour le répertoire de photos de WordPress.','Promote the WordPress project to your community.'=>'Faites la promotion du projet WordPress auprès de la communauté','Create and improve WordPress educational materials.'=>'Créez et améliorez le matériel pédagogique de WordPress','Translate WordPress into your local language.'=>'Traduisez WordPress dans votre langue','Write or improve documentation for WordPress.'=>'Rédigez ou améliorez la documentation de WordPress','Share your knowledge in the WordPress support forums.'=>'Partagez vos connaissances sur les forums d’entraide de WordPress','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress se nourrit de contributions techniques, mais il n’est pas nécessaire de savoir coder pour contribuer. Voici quelques-unes des façons qui vous permettent d’avoir un impact sans écrire une seule ligne de code :','No-code contribution'=>'Contributer sans coder','Grow your network and make friends.'=>'Développez votre réseau et faites-vous des amis','Apply your skills or learn new ones.'=>'Appliquez vos compétences ou apprenez-en de nouvelles','Be part of a global open source community.'=>'Rejoignez une communauté mondiale dédiée au logiciel libre','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Rejoignez la communauté WordPress et connectez-vous avec d’autres personnes qui ont à cœur de maintenir le web libre et ouvert.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Vous utilisez WordPress dans le cadre de votre travail, de vos projets personnels ou simplement pour le plaisir ? Vous pouvez contribuer au succès à long terme du projet open source qui alimente des millions de sites web dans le monde.','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress.','Support forums'=>'forums de support','Documentation on Widgets'=>'Écran Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'Voir vous emmène sur l’archive publique de l’auteur ou de l’autrice, qui liste toutes ses publications mises en ligne.','Download file downloads the original media file to your device.'=>'Télécharger le fichier télécharge le fichier média original sur votre appareil.','site editor title tagEditor'=>'Éditeur','Documentation on Auto-updates'=>'Documentation sur les mises à jour automatiques','Documentation on date and time formatting.'=>'Documentation sur le formatage de la date et de l’heure.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'Vous pouvez définir la langue, et WordPress va automatiquement télécharger et installer les fichiers de traduction (disponible si votre système de fichier autorise l’écriture).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'Si vous voulez que les internautes puissent créer eux-mêmes un compte sur le site, cochez la case d’adhésion. Si vous voulez que l’administrateur ou l’administratrice du site soit responsable de l’inscription de chaque compte chaque, laissez la case non-cochée. Dans tous les cas, vous pouvez définir un rôle par défaut pour tout nouveau compte.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'L’URL de WordPress et l’URL du site peuvent commencer par %1$s ou %2$s. Une URL commençant par %2$s nécessite de disposer d’un certificat SSL, alors assurez-vous d’en avoir un installé avant de passer à %2$s. Avec %2$s, un cadenas va s’afficher à côté de l’adresse du site dans votre navigateur. Le fait d’avoir une adresse en %2$s et d’afficher le cadenas dans le navigateur est un bon indice que votre site respecte certaines bases de sécurité web, ce qui permet d’établir une relation de confiance avec les internautes tout comme avec les moteurs de recherche.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Même si le terme correspond à deux concepts spécifiques, en pratique cela peut être la même adresse ou des adresses différentes. Par exemple, vous pouvez avoir les fichiers du cœur de WordPress dans le répertoire racine (https://example.com), auquel cas les deux URL seront similaires. Vous pouvez aussi placer les fichiers de WordPress dans un sous répertoire (https://example.com/wordpress). Dans ce cas, l’URL de WordPress et l’URL du site seront différentes.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Il est important de différencier URL de WordPress et URL du site. L’URL de WordPress est l’endroit où se trouvent les fichiers d’installation du cœur de WordPress, et l’URL du site est l’adresse qu’un visiteur utilise dans son navigateur pour se rendre sur votre site.','RoboHash (Generated)'=>'RoboHash (généré)','site editor menu itemEditor'=>'Éditeur','Allow trackbacks and pingbacks'=>'Autoriser les rétroliens et pings','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://fr.wordpress.org/support/article/custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://fr.wordpress.org/support/article/excerpt/','%s expects a non-empty string.'=>'%s attend une chaine non vide.','The destination directory already exists and could not be removed.'=>'Le répertoire de destination existe déjà et ne peut être supprimé.','The destination folder already exists.'=>'Le dossier de destination existe déjà.','The source and destination are the same.'=>'La source et la destination sont identiques.','https://wordpress.org/documentation/article/changing-file-permissions/'=>'https://fr.wordpress.org/support/article/changing-file-permissions/','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas.','Download “%s”'=>'Télécharger « %s »','The "%s" argument must be a non-empty string.'=>'L’argument « %s » doit être une chaine non vide.','Documentation on Writing and Editing Posts'=>'Documentation sur la rédaction d’articles','Documentation on Keyboard Shortcuts'=>'Documentation sur les raccourcis clavier','Documentation on Comment Spam'=>'Documentation sur les commentaires indésirables','Documentation on Customizer'=>'Documentation sur l’outil de personnalisation','https://wordpress.org/download/'=>'https://wordpress.org/download/','This is the final release of WordPress %s'=>'Il s’agit de la version finale de WordPress %s','Site Editor'=>'Éditeur de site','Send password reset sends the user an email with a link to set a new password.'=>'Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copier l’URL copie l’URL du fichier média dans votre presse-papier.','View will take you to a public display page for that file.'=>'Le lien Voir vous mènera vers une page publique pour ce fichier.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Le lien Supprimer définitivement détruira le fichier de la médiathèque (ainsi que dans n’importe quelle publication à laquelle il serait attaché).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Modifier vous amène à un écran simple pour modifier les métadonnées de ce fichier individuel. Vous pouvez également accéder à cet écran en cliquant sur le nom ou sur la vignette du média.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Le survol d’une ligne révèle des liens d’action qui vous permettent de gérer les médias. Vous pouvez effectuer les actions suivantes :','themesBlock Themes'=>'Thèmes basés sur des blocs','Documentation on Block Themes'=>'Documentation sur les thèmes basés sur des blocs','Block themes'=>'Thèmes basés sur des blocs','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'Avec un thème basé sur des blocs, vous pouvez disposer et modifier les blocs sans affecter votre contenu en personnalisant ou en créant de nouveaux modèles.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'Un thème basé sur des blocs est un thème qui utilise des blocs pour tous les éléments du site, ce qui comprend les menus de navigation, l’en-tête, le contenu ou encore le pied de page du site. Ces thèmes sont conçus pour prendre en charge les fonctionnalités qui vous permettent de modifier et de personnaliser toutes les parties de votre site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Les éléments recommandés sont considérés comme bénéfiques pour votre site. Bien qu’ils ne soient pas aussi prioritaires que les anomalies critiques, ils peuvent inclure des améliorations de performances, d’expérience d’utilisation, et bien plus encore.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité.','The theme you are currently using is not compatible with the Site Editor.'=>'Le thème que vous utilisez actuellement n’est pas compatible avec l’éditeur de site.','Configuration rules for %s:'=>'Règles de configuration pour %s :','Site Health %s'=>'Santé du site %s','Customize permalink structure by selecting available tags'=>'Personnalisez la structure des permaliens en sélectionnant les balises disponibles','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Sélectionnez la structure de permaliens de votre site. L’inclusion de la balise %s rend les liens plus faciles à lire et peut aider le référencement de vos publications.','%s removed from permalink structure'=>'%s retiré de la structure de permaliens','Theme Styles & Block Settings'=>'Styles du thème et réglages des blocs','The minimum recommended version of PHP is %s.'=>'La version minimale recommandée de PHP est %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress. Assurez-vous dès que possible que PHP soit mis à jour sur votre serveur. Sinon, vous ne pourrez pas mettre à jour WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress. Assurez-vous que PHP est à jour sur votre serveur dès que possible. Sinon, vous ne pourrez plus mettre à niveau WordPress à l’avenir.','Persistent object cache'=>'Cache objet persistant','Page cache'=>'Cache des page','You should use a persistent object cache'=>'Vous devriez utiliser un cache objet persistant','Your host appears to support the following object caching services: %s.'=>'Votre hébergeur semble prendre en charge les services de cache objet suivants : %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Votre hébergeur peut vous indiquer si un cache objet persistant peut être activé sur votre site.','A persistent object cache is not required'=>'Le cache objet persistant n’est pas obligatoire','Learn more about persistent object caching.'=>'En savoir plus sur la mise en cache objet persistant.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'Un cache objets persistant rend la base de données de votre site plus efficace, ce qui assure des temps de chargement plus rapides car WordPress peut récupérer le contenu et les réglages de votre site beaucoup plus rapidement.','A persistent object cache is being used'=>'Un cache objet persistant est utilisé','https://wordpress.org/documentation/article/optimization/#persistent-object-cache'=>'https://wordpress.org/documentation/article/optimization/#persistent-object-cache (en anglais)','A page cache plugin was not detected.'=>'Aucune extension de mise en cache des pages n’a été détectée.','A page cache plugin was detected.'=>'Une extension de mise en cache des pages a été détectée.','There was %d client caching response header detected:'=>'%d en-tête de réponse de cache client a été détecté :' . "\0" . '%d en-têtes de réponses de cache client ont été détectés :','No client caching response headers were detected.'=>'Aucun en-tête de réponse de cache client n’a été détecté.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. Il devrait être inférieur au seuil recommandé de %2$s millisecondes.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. C’est moins que le seuil recommandé de %2$s millisecondes.','Server response time could not be determined. Verify that loopback requests are working.'=>'Le temps de réponse du serveur n’a pas pu être déterminé. Vérifiez que les boucles de requêtes fonctionnent.','Page cache is detected but the server response time is still slow'=>'La mise en cache des pages est détectée mais le temps de réponse du serveur est toujours lent','Page cache is not detected and the server response time is slow'=>'La mise en cache des pages n’est pas détectée et le temps de réponse du serveur est lent','Page cache is detected and the server response time is good'=>'La mise en cache des pages est détectée et le temps de réponse du serveur est bon','Page cache is not detected but the server response time is OK'=>'La mise en cache des pages n’est pas détectée mais le temps de réponse du serveur est OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Impossible de détecter le cache de la page en raison d’un éventuel problème de boucle de requête. Veuillez vérifier que le test de boucle de requête passe correctement. Erreur : %1$s (code : %2$s)','Unable to detect the presence of page cache'=>'Impossible de détecter la présence de la mise en cache des pages','Learn more about page cache'=>'En savoir plus sur la mise en cache des pages','https://wordpress.org/documentation/article/optimization/#Caching'=>'https://wordpress.org/documentation/article/optimization/#Caching (en anglais)','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Le cache de page est détecté en recherchant une éventuelle extension de cache active sur le site, et aussi en effectuant trois requêtes sur la page d’accueil et en recherchant un ou plusieurs en-têtes de réponse de mise en cache du client HTTP parmi les en-têtes suivants :','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'L’utilisation de la mise en cache des pages améliore la vitesse et les performances de votre site en servant des pages statiques au lieu de générer entièrement chaque page à chaque visite d’un internaute.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'Si vous voyez toujours cet avertissement après avoir essayé les actions ci-dessous, vous devriez peut-être contacter votre hébergeur pour obtenir de l’aide.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'L’en-tête d’autorisation est utilisé par les applications tierces que vous avez approuvées pour ce site. Sans cet en-tête, ces applications ne peuvent pas se connecter à votre site.','When testing the REST API, an unexpected result was returned:'=>'Lors du test de l’API REST, un résultat inattendu a été retourné :','REST API Response: (%1$s) %2$s'=>'Réponse de l’API REST : (%1$s) %2$s','REST API Endpoint: %s'=>'Point de terminaison de l’API REST : %s','When testing the REST API, an error was encountered:'=>'Lors du test de l’API REST, une erreur s’est produite :','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas les mises à jour de sécurité. Une mise à jour est nécessaire.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit plus de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress.','Requirements'=>'Prérequis','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Votre site fonctionne avec une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site. La version minimale recommandée de PHP est %s.','Your site does not have any installed themes.'=>'Votre site ne dispose d’aucun thème installé.','Your site does not have any active plugins.'=>'Votre site ne dispose d’aucune extension installée.','Another attempt will be made with the next release.'=>'Une autre tentative sera faite avec la prochaine version.','The %1$s constant is defined as %2$s'=>'La constante %1$s est définie à %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'Le paramètre %1$s doit être une chaîne non vide pour %2$s.','The %s argument must be an array.'=>'Le paramètre %s doit être un tableau.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (de la version %2$s vers %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','Learn more about WordPress %s'=>'Savoir plus sur WordPress %s','Please type your comment text.'=>'Veuillez saisir le texte de votre commentaire.','You cannot remove users.'=>'Vous ne pouvez pas supprimer ces comptes.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin.' . "\0" . 'Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données.','Documentation on Managing Themes'=>'Documentation sur la gestion des thèmes','This information is being used to create a %s file.'=>'Ces informations sont utilisées pour créer un fichier %s.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Bienvenue sur WordPress. Avant de commencer, vous aurez besoin de connaître les éléments suivants.','Settings save failed.'=>'L’enregistrement des réglages a échoué.','After your Privacy Policy page is set, you should edit it.'=>'Après avoir défini votre page de politique de confidentialité, vous devez la modifier.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, il n’a donc pas été possible de le mettre à jour automatiquement. Voici les règles mod_rewrite que vous devriez avoir dans votre fichier %1$s. Cliquez dans le champs et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, donc sa mise à jour automatique n’a pas été possible. Il s’agit de la règle de réécriture d’URL que vous devriez avoir dans le fichier %1$s. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Ensuite, insérez cette règle dans l’élément %5$s du fichier %1$s.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'Un avatar est une image qui peut être associée à un compte sur plusieurs sites. Dans cette zone, vous pouvez choisir d’afficher les avatars des comptes qui interagissent avec le site.','Change Permalink Structure'=>'Modifier la structure des permaliens','Howdy ###USERNAME###, + +Someone with administrator capabilities recently requested to have the +administration email address changed on this site: +###SITEURL### + +To confirm this change, please click on the following link: +###ADMIN_URL### + +You can safely ignore and delete this email if you do not want to +take this action. + +This email has been sent to ###EMAIL### + +Regards, +All at ###SITENAME### +###SITEURL###'=>'Bonjour ###USERNAME###, + +Quelqu’un ayant les droits d’administrateur ou d’administratrice a récemment demandé de modifier l’adresse e-mail de l’administration de ce site : +###SITEURL### + +Pour confirmer cette modification, veuillez cliquer sur le lien suivant : +###ADMIN_URL### + +Vous pouvez ignorer et supprimer cet e-mail si vous ne souhaitez pas effectuer cette action. + +Cet e-mail a été envoyé à ###EMAIL### + +Salutations, +L’équipe de ###SITENAME### +###SITEURL###','Where your data is sent'=>'Où vos données sont envoyées','Copy “%s” URL to clipboard'=>'Copier l’URL de “%s” dans le presse-papier','Some data that describes the error your site encountered has been put together.'=>'Des données relatives à l’erreur rencontrée par votre site ont été recueillies.','An attempt was made, but your site could not be updated automatically.'=>'Une tentative a été faite, mais votre site n’a pas pu être mis à jour automatiquement.','themeActive'=>'Actif','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée car certains fichiers n’ont pas pu être copiés. Ceci est généralement dû à des incohérences dans les droits des fichiers.','Media — A list of URLs for media files the user uploads.'=>'Médias — Une liste d’URL pour les téléversements de médias effectués par le compte.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Emplacement des évènements communautaires — L’adresse IP du compte, qui alimente le widget du tableau de bord des évènements communautaires à venir avec des informations pertinentes.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des personnes inscrites qui se sont connectées sur le site. En général, ce sont des personnes qui contribuent au site d’une certaine façon : contenu, gestion de boutique, et ainsi de suite. Hormis de rares exceptions, ces comptes n’incluent pas les visiteurs occasionnels qui pourraient s’être inscrits pour commenter des articles ou acheter des produits. Les données que WordPress conserve peuvent inclure :','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Remarque : Étant donné que cet outil collecte uniquement des données de WordPress et des extensions qui y contribuent, vous pourriez avoir besoin d’aller plus loin pour que vos demandes d’exportations soient conformes. Par exemple, vous devriez également envoyer au demandeur une partie des données collectées ou conservées par les services tiers que votre entreprise ou votre site utilise.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Les lois sur la protection de la vie privée du monde entier exigent des entreprises et des services en ligne qu’ils fournissent une exportation de certaines des données qu’ils recueillent sur les individus, et qu’ils fournissent cette exportation sur demande. Les droits que ces lois garantissent sont souvent appelés « droit à la portabilité des données ». Cela permet aux personnes d’obtenir et de réutiliser leurs données personnelles à leurs propres fins dans différents services. L’objectif est de leur permettre de déplacer, copier ou transférer facilement leurs données personnelles d’un environnement informatique à un autre.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Commentaires : WordPress ne supprime pas les commentaires. Le logiciel anonymise (et ne publie jamais) les informations associées comme l’adresse e-mail, l’adresse IP ou l’agent utilisateur (navigateur et système d’exploitation).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des comptes connectés mais ces données sont ensuite supprimées ou anonymisées. Ces données peuvent inclure :','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note : comme cet outil recueille uniquement des données provenant de WordPress et des extensions utilisées, il se peut que vous deviez faire davantage pour vous conformer aux demandes d’effacement de données. Par exemple, il vous incombe également de veiller à ce que les données collectées ou stockées par les services tiers utilisés par votre organisation soient aussi effacées.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Les lois sur la protection de la vie privée en vigueur dans le monde entier obligent les entreprises et les services en ligne à supprimer, anonymiser ou oublier les données recueillies sur une personne. Les droits que ces lois garantissent sont souvent appelés « droit à l’oubli ».','This screen is where you manage requests to erase personal data.'=>'Cet écran vous permet de gérer les demandes de suppression de données personnelles.','This post is being backed up in your browser, just in case.'=>'Cette publication est sauvegardée dans votre navigateur, au cas où.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'Ceci vous donne accès à %2$s site sur le réseau étant donné que vous avez des droits de Super Admin.' . "\0" . 'Ceci vous donne accès à l’ensemble des %2$s sites sur le réseau étant donné que vous avez des droits de Super Admin.','Learn about block themes'=>'En savoir plus sur les thèmes de blocs','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'Il existe maintenant une nouvelle sorte de thème WordPress : les thèmes basés sur des blocs. Ils vous donnent la possibilité de construire le site que vous avez toujours voulu, en agençant des blocs et en leur donnant des styles graphiques.','Add a new page'=>'Ajouter nouvelle page','Discover a new way to build your site.'=>'Découvrez un nouveau moyen de construire votre site.','Open the Customizer'=>'Ouvrir la Personnalisation','Customize your entire site with block themes'=>'Personnalisez votre site entier avec les blocs','Open site editor'=>'Ouvrir l\'éditeur de site','Learn more about the %s version.'=>'En savoir plus sur la version %s.','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configurez le logo de votre site, le header, les menus et plus dans la Personnalisation.','Start Customizing'=>'Démarrer la Personnalisation','Switch up your site’s look & feel with Styles'=>'Modifiez l’apparence de votre site avec les styles globaux','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Ajustez votre site, ou donnez-lui une apparence totalement nouvelle ! Laissez libre cours à votre imagination… que diriez vous d’une nouvelle palette de couleurs ou de nouvelles polices d’écriture ?','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Bâtissez l’ensemble de votre site, de l’en-tête au pied de page, en utilisant simplement des blocs et des compositions.','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Les compositions de blocs sont des mises en page de blocs pré-configurées. Utilisez-les pour vous en inspirer ou pour créer des nouvelles page en un clin d’œil.','Author rich content with blocks and patterns'=>'Créez des contenus riches avec les blocs et les compositions','Plugin File Editor'=>'Éditeur de fichiers des extensions','Theme File Editor'=>'Éditeur de fichiers des thèmes','If this is a development website you can set the environment type accordingly to enable application passwords.'=>'S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications.','g:i a T'=>'g:i a T','The application password feature requires HTTPS, which is not enabled on this site.'=>'La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site.','Documentation on Editing Themes'=>'Documentation sur l’éditeur de thèmes','Documentation on Site Health tool'=>'Documentation sur l’outil Santé du site','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'Dans l’onglet Informations, vous trouverez tous les détails concernant la configuration de votre site WordPress, le serveur, et la base de données. Il existe également une fonctionnalité d’exportation qui vous permet de copier toutes les informations concernant votre site vers le presse-papiers, ce qui vous aidera à résoudre les problèmes sur votre site lorsque vous chercherez de l’aide sur les forums.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'Dans l’onglet État, vous pouvez voir les informations critiques concernant votre configuration de WordPress, ainsi que tout ce qui requiert votre attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'Cet écran vous permet d’obtenir un diagnostic de santé de votre site, et affiche une évaluation globale de l’état de votre installation.','Documentation on Privacy Settings'=>'Documentation sur les réglages de confidentialité','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'Cet écran comprend des suggestions pour vous aider à rédiger votre propre politique de confidentialité. Cependant, il est de votre responsabilité d’utiliser correctement ces ressources, de fournir les informations requises par votre politique de confidentialité, et de maintenir ces informations à jour et exactes.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'L’écran Confidentialité vous permet soit de créer une nouvelle page de politique de confidentialité, soit de choisir une page existante à afficher.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Des publications individuelles peuvent surcharger ces réglages. Les modifications ne seront ici appliquées qu’aux nouvelles publications.','Menu item removed'=>'Élément de menu supprimé','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'Le Tableau de bord est le premier endroit sur lequel vous arrivez à chaque fois que vous vous connectez à votre site. C’est là que vous trouverez tous vos outils WordPress. Si vous avez besoin d’aide, cliquez simplement sur l’onglet « Aide » au dessus du titre de l’écran.','Menu item moved to the top'=>'Élément de menu déplacé vers le haut','Welcome to your WordPress Dashboard!'=>'Bienvenue dans votre Tableau de bord WordPress!','The application ID must be a UUID.'=>'L’ID de l’application doit être un UUID.','Select location'=>'Choisissez un lieu','Visit plugin site for %s'=>'Visiter le site du plugin %s','Max connections number'=>'Nombre maximum de connexions','Max allowed packet size'=>'Taille maximum autorisée du paquet','pluginCannot Activate'=>'Impossible à activer','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Votre site semble utiliser une authentification de base, ce qui n’est actuellement pas compatible avec les mots de passe d’applications.','%1$s “%2$s”'=>'%1$s « %2$s »','Template Editing'=>'Modification de modèles','Want to see your name in lights on this page?'=>'Voudriez-vous voir votre nom cité sur cette page ?','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress est créé par une équipe de personnes passionnées répartie dans le monde entier.','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress est distribué avec des droits impressionnants qui changent la vision du monde grâce à sa licence, la GPL.','Get involved in WordPress.'=>'Contribuez à WordPress.','%s plugin deactivated during WordPress upgrade.'=>'Extension « %s » désactivée pendant la mise à jour de WordPress.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus.','The Four Freedoms'=>'Les quatre libertés','themeDelete %s'=>'Supprimer %s','themeLive Preview %s'=>'Prévisualiser %s','themeCustomize %s'=>'Personnaliser %s','themeView Theme Details for %s'=>'Voir les détails du thème %s','Toggle extra menu items'=>'Permuter les éléments de menu additionnels','Site Health - %s'=>'Santé du site – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre le fichier %1$s accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Changer les droits des fichiers pour plus d’informations.','Rewrite rules:'=>'Règles de réécriture :','List of menu items selected for deletion:'=>'Liste des éléments de menu sélectionnés pour la suppression :','Remove Selected Items'=>'Supprimer les éléments sélectionnés','Bulk Select'=>'Sélection groupée','Deleted menu item: %s.'=>'Élément de menu supprimé : %s.','item %s'=>'élément %s','Unable to encode the personal data for export. Error: %s'=>'Impossible d’encoder les données personnelles pour l’exportation. Erreur : %s','The %s post meta must be an array.'=>'La metadonnée de publication %s doit être un tableau.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'La santé de votre site semble bonne, mais il y a encore une chose que vous pouvez faire pour améliorer ses performances et sa sécurité.','Learn how to browse happy'=>'Apprenez comment naviguer sereinement','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site.','Themes %s'=>'Thèmes %s','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Votre site a un problème critique qui doit être résolu dès que possible pour améliorer ses performances et sa sécurité.','GD supported file formats'=>'Formats de fichier GD pris en charge','Unable to determine'=>'Impossible à déterminer','ImageMagick supported file formats'=>'Formats de fichier ImageMagik pris en charge','Imagick version'=>'Version de Imagick','themeUploaded'=>'Téléversé','pluginReplace current with uploaded'=>'Remplacer l’extension actuelle par celle que vous avez téléversée','pluginUploaded'=>'Téléversé','pluginCurrent'=>'Actuel','Please activate the Link Manager plugin to use the link manager.'=>'Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien.','Create a new Privacy Policy page'=>'Créer une nouvelle page de politique de confidentialité','Send personal data export confirmation email.'=>'Envoyer l\'e-mail de confirmation d’exportation des données personnelles.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en exportant les données connues d’un compte donné dans un fichier ZIP.','Documentation on Export Personal Data'=>'Documentation sur l’exportation de données personnelles (en anglais)','Plugin authors can learn more about how to add the Personal Data Exporter to a plugin here.'=>'Les auteurs et autrices d’extensions peuvent en savoir plus sur l’ajout d’un exportateur de données personnelles à leurs extensions en suivant ce lien (en anglais).','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles dans la base de données WordPress ou sur leurs propres serveurs. Toute demande d’exportation de données personnelles doit également inclure les données des extensions.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil d’exportation des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Commentaires — Pour tout commentaire fait par l\'utilisateur, Adresse E-mail, Adresse IP, Agent Utilisateur (Navigateur/Système d\'Exploitation), Date/Heure, Contenu du Commentaire et URL du Contenu.','This screen is where you manage requests for an export of personal data.'=>'Cet écran vous permet de gérer les demandes d\'export de données personnelles.','Site URLs could not be switched to HTTPS.'=>'Les URL du site n\'ont pas pu être basculés vers HTTPS.','Site URLs switched to HTTPS.'=>'Les URL du site sont passées au HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'Il semble que HTTPS ne soit pas pris en charge pour votre site Web à ce stade.','Sorry, you are not allowed to update this site to HTTPS.'=>'Désolé, vous n\'êtes pas autorisé à mettre à jour ce site en HTTPS.','Password reset links sent to %s user.'=>'Le lien de réinitialisation du mot de passe a été envoyé à %s compte.' . "\0" . 'Le lien de réinitialisation du mot de passe a été envoyé à %s comptes.','Password reset link sent.'=>'Lien de réinitialisation du mot de passe envoyé.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas leur mot de passe et ne forcera pas un changement.','Send Reset Link'=>'Envoyer le lien de réinitialisation','Policies'=>'Politiques de Confidentialité','The Privacy Settings require JavaScript.'=>'Les paramètres de confidentialité nécessitent JavaScript.','Privacy SettingsPolicy Guide'=>'Guide des politiques de Confidentialité','Privacy SettingsSettings'=>'Réglages','Re-install version %s'=>'Réinstaller la version %s','Update to latest %s nightly'=>'Mise à jour vers la dernière version %s tous les soirs','Send personal data erasure confirmation email.'=>'Envoyer un e-mail de confirmation d\'effacement des données personnelles.','Confirmation email'=>'Email de Confirmation','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en supprimant ou en anonymisant les données connues d\'un utilisateur donné.','Documentation on Erase Personal Data'=>'Documentation sur l\'effacement des données personnelles','If you are a plugin author, you can learn more about how to add support for the Personal Data Eraser to a plugin here.'=>'Les auteurs de Plugins peuvent en savoir plus sur comment ajoutez la prise en charge de Personal Data Eraser à un plugin ici.','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'De nombreux plugins peuvent collecter ou stocker des données personnelles soit dans la base de données WordPress, soit à distance. Toute demande d\'effacement des données personnelles doit également supprimer les données des plugins.','Plugin Data'=>'Données de l\'Extension','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'Si vous n\'êtes pas sûr, consultez la documentation de l\'Extension ou contactez l\'auteur de l\'Extension pour voir si l\'extension collecte des données et s\'il prend en charge l\'outil Data Eraser. Ces informations peuvent être disponibles dans le Guide de politique de confidentialité.','Media — A list of URLs for all media file uploads made by the user.'=>'Fichiers Multimédias : une liste d\'URL pour tous les téléversements de fichiers multimédias effectués par l\'utilisateur.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Jetons de session : informations de connexion de l\'utilisateur, adresses IP, date d\'expiration, agent utilisateur (navigateur/système d\'exploitation) et dernière connexion.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Emplacement des événements communautaires : l\'adresse IP de l\'utilisateur qui est utilisée pour les événements communautaires à venir affichés dans le widget du tableau de bord.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Informations sur le profil : adresse e-mail de l\'utilisateur, nom d\'utilisateur, nom d\'affichage, surnom, prénom, nom, description/bio et date d\'enregistrement.','Default Data'=>'Données par défaut','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'L\'outil associe les données stockées dans WordPress par une adresse e-mail fournie, y compris les données de profil et les commentaires.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Vous voulez plus d’évènements ? Aidez à organiser le prochain  !','A password reset link was emailed to %s.'=>'Un lien de réinitialisation du mot de passe a été envoyé par e-mail à %s.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'Le réglage pour %1$s est actuellement configuré à 0, ce qui pourrait causer quelques problèmes lorsque vous essayez de téléverser des fichiers par le biais d’extensions ou de thèmes qui dépendent de différentes méthodes de téléversement. Il est recommandé de configurer ce réglage à une valeur fixe, correspondant idéalement à la valeur de %2$s, car certaines méthodes de téléversement lisent la valeur 0 comme étant soit illimitée, soit désactivée.','Cannot send password reset, permission denied.'=>'Impossible d\'envoyer la réinitialisation du mot de passe, autorisation refusée.','Talk to your web host about supporting HTTPS for your website.'=>'Contactez votre hébergeur pour la prise en charge HTTPS sur votre site.','Update your site to use HTTPS'=>'Mettre à jour votre site pour utiliser le HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'Votre adresse WordPress est actuellement contrôlée par une constante PHP et ne peut donc pas être mise à jour. Vous devez modifier votre %1$s et supprimer ou mettre à jour les définitions de %2$s et de %3$s.','HTTPS is already supported for your website.'=>'Le HTTPS est déjà pris en charge pour votre site.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant le HTTPS, mais votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS par défaut.','Your Site Address is not set up to use HTTPS.'=>'Votre adresse de site n’est pas configurée pour utiliser le HTTPS.','Learn more about debugging in WordPress.'=>'En apprendre plus sur le débogage de WordPress.','Added'=>'Ajouté','Send password reset'=>'Envoyer la réinitialisation du mot de passe','Contact information'=>'Informations de contact','Copy suggested policy text to clipboard'=>'Copier la suggestion de texte de politique de confidentialité dans le presse-papiers','Search Results'=>'Résultats de recherche','Directory listing failed.'=>'Le listage du répertoire a échoué.','Invalid request ID when processing personal data to erase.'=>'ID non valide lors de la fusion des données personnelles à supprimer.','Invalid request ID when merging personal data to export.'=>'ID non valide lors de la fusion des données personnelles à exporter.','Unable to archive the personal data export file (HTML format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format HTML).','Unable to archive the personal data export file (JSON format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format JSON).','Unable to open personal data export (HTML report) for writing.'=>'Impossible d’ouvrir le fichier d’exportation des données personnelles (rapport HTML) en écriture.','Unable to create personal data export folder.'=>'Impossible de créer le dossier d’exportation des données personnelles du compte.','Request added successfully.'=>'La demande a bien été ajoutée.','Invalid personal data action.'=>'Action des données personnelles non valide.','Unable to initiate confirmation for personal data request.'=>'Impossible d’initier la confirmation pour la demande de données personnelles.','https://wordpress.org/documentation/article/update-services/'=>'https://fr.wordpress.org/support/article/update-services/','PHP Update Recommended'=>'Mise à jour PHP recommandée','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Votre site utilise une version obsolète de PHP (%s), qui devrait être mise à jour.','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'Ce site semble être sous contrôle de version. Les mises à jour automatiques sont désactivées.','You are using a development version of WordPress.'=>'Vous utilisez actuellement une version de développement de WordPress.','You can update to the latest nightly build manually:'=>'Vous pouvez mettre à jour vers la dernière version du jour manuellement :','Enable automatic updates for all new versions of WordPress.'=>'Activer les mises à jour automatiques pour toutes les nouvelles versions de WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Basculer sur les mises à jour de maintenance et de sécurité uniquement.','Current version: %s'=>'Version actuelle : %s','This site will not receive automatic updates for new versions of WordPress.'=>'Ce site ne recevra pas de mise à jour automatique pour les nouvelles versions de WordPress.','This site is automatically kept up to date with each new version of WordPress.'=>'Ce site est automatiquement mis à jour avec chaque nouvelle version de WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'À partir de maintenant, WordPress ne recevra que les mises à jour automatiques de sécurité et de maintenance.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Les mises à jour automatiques de toutes les nouvelles versions de WordPress ont été activées. Merci !','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'Ce site est automatiquement mis à jour avec uniquement les versions de maintenance et de sécurité de WordPress.','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site.','Your new password for %s is:'=>'Votre nouveau mot de passe %s est :','Add New Application Password'=>'Ajouter un nouveau mot de passe d\'application','Required to create an Application Password, but not to update the user.'=>'Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte.','Go to Updates'=>'Aller aux mises à jour','← Go to Users'=>'← Aller aux utilisateurs','← Go to editor'=>'← Aller à l’éditeur','Go to Plugin Installer'=>'Aller à l’installeur d’extensions','Go to Importers'=>'Aller à la page d’importation','Go to Theme Installer'=>'Aller à l’installeur de thèmes','Go to top'=>'Aller en haut','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'Nous ne pouvons localiser %s. Veuillez essayer une autre ville proche. Par exemple : Liège, Namur ou Durbuy.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'Vous serez redirigé vers le Tableau de bord de WordPress, et aucune modification ne sera faite.','You will be sent to %s'=>'Vous allez être redirigé vers %s','You will be given a password to manually enter into the application in question.'=>'Un mot de passe à saisir manuellement dans l’application en question vous sera donné.','Yes, I approve of this connection'=>'Oui, j’autorise la connection','No, I do not approve of this connection'=>'Non, je n\'approuve pas cette connexion','This will grant access to the %2$s site in this installation that you have permissions on.'=>'Cela donnera accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Cela donnera accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir à cette application un accès à votre compte ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir un accès à votre compte à l’application s’identifiant comme %s ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','An application would like to connect to your account.'=>'Une application souhaite se connecter à votre compte.','Cannot Authorize Application'=>'Impossible d’autoriser l’application','Authorize Application'=>'Autoriser l’application','New Application Password Name'=>'Nouveau nom pour le mot de passe d\'application','The Authorize Application request is not allowed.'=>'La demande d’autorisation pour les applications n’est pas autorisée.','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer.','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site.','Application Passwords'=>'Mots de passe d’application','Type the new password again.'=>'Saisissez à nouveau le nouveau mot de passe.','Type the password again.'=>'Saisissez à nouveau le nouveau mot de passe.','Set New Password'=>'Définir le nouveau mot de passe','You can update from WordPress %1$s to WordPress %3$s manually:'=>'Vous pouvez mettre à jour de WordPress %1$s à WordPress %3$s manuellement :','Revoke "%s"'=>'Révoquer « %s »','Revoke'=>'Révoquer','Last IP'=>'Dernière IP','Last Used'=>'Dernier utilisé','Erase personal data'=>'Effacer les données personnelles','Revoke all application passwords'=>'Révoquer tous les mots de passe d’application','The Site Health check for %1$s has been replaced with %2$s.'=>'La fonction %1$s de l’outil Santé du site a été remplacée par %2$s.','- %1$s (from version %2$s to %3$s)'=>'- %1$s (de la version %2$s à %3$s)','Current Header Video'=>'Vidéo d’en-tête actuelle','Flush permalinks'=>'Vider les permaliens','Authorization header'=>'En-tête d’autorisation','Learn how to configure the Authorization header.'=>'En savoir davantage sur la configuration des en-têtes d’autorisation.','The authorization header is missing'=>'L’en-tête d’autorisation manquant','The authorization header is invalid'=>'L’en-tête d’autorisation n\'est pas valide','The Authorization header is working as expected'=>'L’en-tête d’autorisation fonctionne comme prévu','Some screen elements can be shown or hidden by using the checkboxes.'=>'Certains éléments de l’écran peuvent être affichés ou masqués en utilisant les cases à cocher.','Screen elements'=>'Éléments de l’écran','The URL must be served over a secure connection.'=>'L’URL doit être accédée via une connexion sécurisée.','If you request a password reset, your IP address will be included in the reset email.'=>'Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.','No plugins found for: %s.'=>'Aucune extension trouvée pour : %s.','Mark export request for “%s” as completed.'=>'Marquer la demande d’exportation pour « %s » comme terminée.','Complete request'=>'Demande terminée','%d request deleted successfully.'=>'%d demande bien supprimée.' . "\0" . '%d demandes bien supprimées.','%d request failed to delete.'=>'%d requête non supprimée.' . "\0" . '%d requêtes non supprimées.','%d request marked as complete.'=>'%d demande marquée comme terminée.' . "\0" . '%d demandes marquées comme terminées.','%d confirmation request re-sent successfully.'=>'%d demande de confirmation renvoyée avec succès.' . "\0" . '%d demandes de confirmation renvoyées avec succès.','%d confirmation request failed to resend.'=>'%d demande de confirmation n’a pas pu être renvoyée.' . "\0" . '%d demandes de confirmation n’ont pas pu être renvoyées.','Mark requests as completed'=>'Marquer les demandes comme terminées','Next steps'=>'Étapes suivantes','Unable to open personal data export file (archive) for writing.'=>'Impossible d’ouvrir en écriture le fichier (archive) d’exportation des données confidentielles du compte.','Unable to open personal data export file (JSON report) for writing.'=>'Impossible d’ouvrir le fichier (rapport JSON) d’export des données confidentielles du compte.','Search results for: %s'=>'Résultats de recherche pour : %s','Unable to protect personal data export folder from browsing.'=>'Impossible de protéger le dossier d’exportation de confidentialité du compte contre l’affichage public.','Invalid email address when generating personal data export file.'=>'Réception d’une adresse e-mail non valide lors de la génération du fichier d’exportation de confidentialité du compte.','Invalid request ID when generating personal data export file.'=>'ID non valide lors de la demande génération du fichier d’exportation de confidentialité du compte.','Unable to generate personal data export file. ZipArchive not available.'=>'Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible.','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Notez que même lorsqu’il est paramétré pour décourager les moteurs de recherche, votre site est toujours visible sur le web et que tous les moteurs de recherche ne suivent pas cette directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés ou non. Si vous préférez que ces services ignorent votre site, cochez l’option « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran.','Environment type'=>'Type d’environnement','The "%1$s" value is smaller than "%2$s"'=>'La valeur « %1$s » est inférieure à « %2$s »','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible.','Update Incompatible'=>'Mise à jour non compatible','This update does not work with your version of WordPress.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress.','This update does not work with your versions of WordPress and PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress et de PHP.','Disallowed Comment Keys'=>'Clés de commentaires non autorisées.','Plugin and theme auto-updates'=>'Mise à jour auto des extensions et thèmes','There appear to be no issues with plugin and theme auto-updates.'=>'Il ne semble pas y avoir de problème avec les mises à jour automatiques des extensions et des thèmes.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions et des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Les mises à jour automatiques des extensions et/ou des thèmes semblent désactivées, mais les réglages s’affichent tout de même. Cela pourrait empêcher les mises à jour automatiques de fonctionner normalement.','Your site may have problems auto-updating plugins and themes'=>'Votre site semble avoir des problèmes avec les mises à jour automatiques des extensions et des thèmes.','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Les mises à jour automatiques des extensions et des thèmes permettent de s’assurer qu’ils soient toujours installés dans leur dernière version disponible.','Plugin and theme auto-updates appear to be configured correctly'=>'Les mises à jour automatiques des extensions et des thèmes semblent correctement configurées','themeActivate “%s”'=>'Activer « %s »','Sorry, you are not allowed to modify plugins.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'Le réglage de %1$s est inférieur à %2$s, ce qui pourrait causer des problèmes lors du téléversement de fichiers.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s est réglé sur %2$s. Vous ne pourrez pas téléverser des fichiers sur votre site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'La fonction %s a été désactivée. De ce fait, certains réglages des médias ne sont pas disponibles.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'La directive %1$s dans le fichier %2$s détermine si le téléversement de fichiers est autorisé sur votre site.','File uploads'=>'Téléversements de fichiers','Max number of files allowed'=>'Nombre maximal de fichiers autorisés.','Max effective file size'=>'Taille de fichier effective maximale.','Max size of an uploaded file'=>'Taille maximale des fichiers téléversés','Max size of post data allowed'=>'Taille maximale autorisée pour les données des publications','File upload settings'=>'Réglages des téléversements de fichiers','Files can be uploaded'=>'Les fichiers peuvent être téléversés','themeCannot Install %s'=>'Impossible d’installer %s','pluginInstall %s'=>'Installer %s','themeInstall %s'=>'Installer %s','themeUpdate %s now'=>'Mettre à jour %s maintenant','- %1$s version %2$s'=>'- %1$s version %2$s','themeActivated'=>'Activé','Sorry, you are not allowed to enable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation d’activer les mises à jour automatiques de thèmes.','This plugin is already installed.'=>'Cette extension est déjà installée.','pluginUpdate %s now'=>'Mettre à jour %s maintenant','pluginInstall %s now'=>'Installer %s maintenant','Dismiss this notice.'=>'Ignorer cette notification.','themeCannot Activate %s'=>'Impossible d’activer %s','Theme will no longer be auto-updated.'=>'Le thème ne sera plus mis à jour automatiquement.','Theme will be auto-updated.'=>'Le thème sera mis à jour automatiquement.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour chaque thème. Les thèmes qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Error in deleting the item.'=>'Erreur lors de la suppression de l’élément.','Sorry, you are not allowed to disable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les mises à jour automatiques des thèmes.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Désolé, vous n’êtes pas autorisé à gérer les mises à jour automatiques d’extensions.','Error in restoring the item from Trash.'=>'Erreur lors de la restauration de l’élément depuis la corbeille.','Error in moving the item to Trash.'=>'Erreur lors du déplacement de l’élément vers la corbeille.','Selected plugins will no longer be auto-updated.'=>'Les extensions sélectionnées ne seront plus mises à jour automatiquement.','Selected plugins will be auto-updated.'=>'Les extensions sélectionnées seront mises à jour automatiquement.','Plugin will no longer be auto-updated.'=>'L’extension ne sera plus mise à jour automatiquement.','Plugin will be auto-updated.'=>'L’extension sera mise à jour automatiquement.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées extension par extension. Les extensions dont les mises à jour automatiques sont activées afficheront la date estimée de la prochaine mise à jour automatique. Les mises à jour automatiques dépendent du système de planification des tâches de WP-Cron.','Please connect to your network admin to manage plugins automatic updates.'=>'Veuillez vous connecter à l’administration de votre réseau pour gérer les mises à jour automatiques des extensions.','The admin email verification page will reappear after %s.'=>'La page de vérification de l’e-mail d’administration réapparaîtra après %s.','Auto-updates'=>'Mises à jour auto','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Veuillez noter que des thèmes et extensions tiers ou du code personnalisé peuvent passer outre la planification WordPress.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour les versions majeures de WordPress et pour chaque thème ou extension. Les thèmes et les extensions qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, visitez la page de documentation Comment mettre à jour WordPress.','themeCannot Activate'=>'Impossible à activer','media itemSuccess'=>'Succès','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau.','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Erreur : la version courante de WordPress (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Erreur : la version courante de PHP (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Erreur : la version courante de WordPress (%1$s) et PHP (%2$s) ne correspondent pas aux prérequis minimaux pour %3$s. L’extension nécessite WordPress %4$s et PHP %5$s.','Invalid data. The item does not exist.'=>'Données non valides. L’élément n’existe pas.','Invalid data. Unknown type.'=>'Données non valides. Type inconnu.','Invalid data. Unknown state.'=>'Données non valides. État inconnu.','Invalid data. No selected item.'=>'Données non valides. Aucun élément sélectionné.','To manage themes on your site, visit the Themes page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des thèmes : %s','To manage plugins on your site, visit the Plugins page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des extensions : %s','These themes are now up to date:'=>'Ces thèmes sont maintenant à jour :','These plugins are now up to date:'=>'Ces extensions sont maintenant à jour :','These themes failed to update:'=>'Ces thèmes n’ont pas été mis à jour :','These plugins failed to update:'=>'Ces extensions n’ont pas été mises à jour :','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire.','You cannot reply to a comment on a draft post.'=>'Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon.','Howdy! Themes failed to update on your site at %s.'=>'Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some themes have failed to update'=>'[%s] Certaines mises à jour de thèmes ont échoué','Howdy! Plugins failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins have failed to update'=>'[%s] Certaines mises à jour d’extensions ont échoué','Howdy! Plugins and themes failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Certaines mises à jour d’extensions et de thèmes ont échoué','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some themes were automatically updated'=>'[%s] Certains thèmes ont été mis à jour automatiquement','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins were automatically updated'=>'[%s] Certaines extensions ont été mises à jour automatiquement','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins and themes have automatically updated'=>'[%s] Des extensions et thèmes ont été mis à jour automatiquement','Move %s box down'=>'Déplacer la boite %s vers le bas','Move %s box up'=>'Déplacer la boite %s vers le haut','commentNot spam'=>'N’est pas un indésirable','PHP Sessions'=>'Sessions PHP','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'Une session PHP a été créée par un appel de fonction %1$s. Cela interfère avec l’API REST et les requêtes de boucle (loopback). La session devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','An active PHP session was detected'=>'Une session PHP active a été détectée','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'Les sessions PHP créées par un appel de fonction %1$s peuvent interférer avec l’API REST et les requêtes de boucle (loopback). Une session active devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','No PHP sessions detected'=>'Aucune session PHP détectée.','Extended view'=>'Vue étendue','Compact view'=>'Vue compacte','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Erreur : les mots de passe ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs.','post action/button labelSchedule'=>'Planifier','No plugins found. Try a different search.'=>'Aucune extension trouvée. Essayez une recherche différente.','Automatic update scheduled in %s.'=>'Mise à jour automatique planifiée dans %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'La mise à jour automatique est en retard de %s. Il peut y avoir un problème avec WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Mise à jour automatique non planifiée. Il peut y avoir un problème avec WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'Vous mettez à jour une extension. Au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version d’une extension actuelle. Vous pouvez poursuivre l’installation de l’ancienne version, mais assurez-vous de sauvegarder la base de donnée et les fichiers auparavant.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais l’extension téléversée nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais l’extension téléversée nécessite la version %2$s.','The plugin cannot be updated due to the following:'=>'L’extension ne peut être mise à jour pour la raison suivante :','Plugin name'=>'Nom de l’extension','Theme downgraded successfully.'=>'Le thème a bien été rétrogradé.','Theme downgrade failed.'=>'La rétrogradation du thème a échoué.','Downgrading the theme…'=>'Rétrogradation du thème…','Enable Auto-updates'=>'Activer les mises à jour auto','Restore original image'=>'Restaurer l’image originale','The uploaded file has expired. Please go back and upload it again.'=>'Le fichier téléversé a expiré. Veuillez le téléverser à nouveau.','Cancel and go back'=>'Annuler et revenir en arrière','Updating the theme…'=>'Mise à jour du thème…','Enable auto-updates'=>'Activer les mises à jour auto','Disable auto-updates'=>'Désactiver les mises à jour auto','Disable Auto-updates'=>'Désactiver les mises à jour auto','Auto-updates Disabled (%s)'=>'Mises à jour auto désactivées (%s)' . "\0" . 'Mises à jour auto désactivées (%s)','Auto-updates Enabled (%s)'=>'Mises à jour auto activées (%s)' . "\0" . 'Mises à jour auto activées (%s)','Automatic Updates'=>'Mises à jour automatiques','No plugins are currently available.'=>'Aucune extension n’est disponible pour l’instant.','You are updating a theme. Be sure to back up your database and files first.'=>'Vous mettez à jour un thème. Assurez-vous de sauvegarder votre base de données et vos fichiers d’abord.','themeReplace active with uploaded'=>'Remplacer l’élément actuel par celui que vous avez téléversé','The active theme has the following error: "%s".'=>'Le thème actif contient l’erreur suivante : « %s ».','https://wordpress.org/documentation/article/wordpress-backups/'=>'https://fr.wordpress.org/support/article/wordpress-backups/','You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version d’un thème actif. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','The theme cannot be updated due to the following:'=>'Le thème ne peut pas être mis à jour pour les raisons suivantes :','(not found)'=>'(non trouvé)','Required PHP version'=>'Version de PHP nécessaire','Theme name'=>'Nom du thème','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais le thème téléversé nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais le thème téléversé nécessite la version %2$s.','Required WordPress version'=>'Version de WordPress nécessaire','themeCannot Install'=>'Impossible d’installer','Block Editor Patterns'=>'Motifs pour l’éditeur','Plugin downgraded successfully.'=>'L’extension a bien été rétrogradée.','Plugin downgrade failed.'=>'La rétrogradation de l’extension a échoué.','Downgrading the plugin…'=>'Rétrogradation de l’extension…','Updating the plugin…'=>'Mise à jour de l’extension…','Could not remove the current plugin.'=>'Impossible de supprimer l’extension actuelle.','Removing the current plugin…'=>'Suppression de l’extension actuelle…','Auto-update'=>'Mise à jour auto','Auto-updates disabled'=>'Mises à jour auto désactivées','Auto-updates enabled'=>'Mises à jour auto activées','Are pretty permalinks supported?'=>'Les permaliens sont-ils pris en charge ?','PHP memory limit (only for admin screens)'=>'Limite de mémoire PHP (uniquement pour les écrans d’administration)','Is this site discouraging search engines?'=>'Ce site décourage-t-il les moteurs de recherche ?','Wide Blocks'=>'Blocs larges','Block Editor Styles'=>'Styles de l’éditeur de bloc','Spam'=>'Indésirable','Unable to write to %s file.'=>'Impossible d’écrire dans le fichier %s.','Error: The %s options page is not in the allowed options list.'=>'Erreur : page d’options %s introuvable dans la liste des options autorisées.','Error:'=>'Erreur :','You should update your %s file now.'=>'Vous devez mettre à jour votre fichier %s maintenant.','This localized version contains both the translation and various other localization fixes.'=>'Cette version localisée contient à la fois les traductions et d’autres correctifs de localisation.','Take a look at the %1$d item on the Site Health screen.'=>'Jetez un œil à %1$d élément sur l’écran de santé du site.' . "\0" . 'Jetez un œil à %1$d éléments sur l’écran de santé du site.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'L’état de santé de votre site semble correct, mais il reste des choses que vous pourriez faire afin d’améliorer ses performances et sa sécurité.','Great job! Your site currently passes all site health checks.'=>'Bon travail ! Votre site passe actuellement toutes les vérifications de santé du site.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre des erreurs critiques qui devraient être réglées dès que possible afin d’améliorer ses performances et sa sécurité.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Des contrôles de santé du site seront automatiquement effectués périodiquement pour recueillir des informations sur votre site. Vous pouvez également vous rendre sur l’écran de Santé du site pour recueillir dès maintenant des informations sur votre site.','No information yet…'=>'Aucune information pour le moment…','The uploaded file exceeds the %1$s directive in %2$s.'=>'Le fichier téléversé dépasse la directive %1$s dans %2$s.','No comments found in Trash.'=>'Aucun commentaire trouvé dans la corbeille.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel. Cette erreur peut également être due au fait que les téléversements sont désactivés dans votre fichier %1$s ou que %2$s est défini comme inférieur à %3$s dans %1$s.','A test is unavailable'=>'Un test n’est pas disponible','Error: %1$s (%2$s)'=>'Erreur : %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Votre site utilise une version dépréciée de PHP (%s), elle devrait être mise à niveau.','Your site is running on an older version of PHP (%s)'=>'Votre site utilise une version ancienne de PHP (%s)','Your site is running the current version of PHP (%s)'=>'Votre site utilise la version actuelle de PHP (%s)','No media files found in Trash.'=>'Aucun fichier média trouvé dans la corbeille.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Table prefix'=>'Préfixe de table','Resend confirmation requests'=>'Renvoyer les demandes de confirmation','Delete requests'=>'Supprimer les demandes','PHP Default Timezone'=>'Fuseau horaire par défaut de PHP','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été modifié après le chargement de WordPress par un appel à la fonction %s. Cela perturbe le fonctionnement du calcul des dates et des heures.','PHP default timezone is invalid'=>'Le fuseau horaire par défaut de PHP n’est pas valide.','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été configuré au chargement de WordPress. Ceci est nécessaire au fonctionnement du calcul des dates et des heures.','PHP default timezone is valid'=>'Le fuseau horaire par défaut de PHP est valide','The seventh parameter passed to %s should be numeric representing menu position.'=>'Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s.','UTF8MB4 is the character set WordPress prefers for database storage because it safely supports the widest set of characters and encodings, including Emoji, enabling better support for non-English languages.'=>'WordPress préfère le jeu de caractères UTF8mb4 pour le stockage de ses données, car il propose en toute sécurité le plus large ensemble de caractères et d’encodages, y compris les émojis, ce qui permet de mieux travailler avec les langues autres que l\'anglais.','https://wordpress.org/about/stats/'=>'https://fr.wordpress.org/about/stats/','Documentation on Export'=>'Documentation sur l’exportation','Documentation on Installing Plugins'=>'Documentation sur l’installation d’extensions','Documentation on Managing Pages'=>'Documentation sur la gestion des pages','Documentation on Managing Posts'=>'Documentation sur la gestion des articles','Documentation on Discussion Settings'=>'Documentation sur les réglages des commentaires','Documentation on Adding New Themes'=>'Documentation sur l’ajout de nouveaux thèmes','Documentation on Uploading Media Files'=>'Documentation sur le téléversement de médias','Descriptions of Roles and Capabilities'=>'Description des rôles et des permissions','Documentation on Managing Users'=>'Documentation sur la gestion des comptes','Documentation on User Profiles'=>'Documentation sur l’écran Profil','Documentation on Media Settings'=>'Documentation sur les réglages des médias','Documentation on Import'=>'Documentation sur l’import','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des chose ici, donc faites attention !','The %s setting is unregistered. Unregistered settings are deprecated. See https://developer.wordpress.org/plugins/settings/settings-api/'=>'Le réglage %s n’est pas enregistré. Les réglages non enregistrés ne sont plus acceptés, comme indiqué sur https://developer.wordpress.org/plugins/settings/settings-api/','Documentation on Tools'=>'Documentation sur l’écran Outils','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format.','Documentation on Editing Pages'=>'Documentation sur la modification des pages','Documentation on Adding New Pages'=>'Documentation sur la création de nouvelles pages','Documentation on Media Library'=>'Documentation sur la médiathèque','Revisions Management'=>'Gestion des révisions','Documentation on Edit Media'=>'Documentation sur la modification des médias','Documentation on Managing Plugins'=>'Documentation sur la gestion des extensions (en anglais)','Documentation on Dashboard'=>'Documentation sur le Tableau de bord','Documentation on Adding New Users'=>'Documentation sur l’ajout de nouveaux comptes','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'Cette page peut vous afficher tous les détails sur la configuration de votre site WordPress. Pour toute amélioration qui pourrait être apportée, consultez la page État de santé du site.','Results are still loading…'=>'Les résultats sont toujours en cours de chargement…','Documentation on Nginx configuration.'=>'Documentation sur la configuration Nginx (en anglais).','Documentation on Using Permalinks'=>'Documentation sur l’utilisation des permaliens','Documentation on Permalinks Settings'=>'Documentation sur les réglages des permaliens','Documentation on Updating WordPress'=>'Documentation sur la mise à jour de WordPress','Documentation on Menus'=>'Documentation sur les menus','Documentation on Writing Plugins'=>'Documentation sur l’écriture d’extensions','Documentation on Template Tags'=>'Documentation sur les marqueurs de modèles','Documentation on Editing Plugins'=>'Documentation sur la modification d’extensions','Documentation on Theme Development'=>'Documentation sur le développement de thèmes','Documentation on Editing Files'=>'Documentation sur la modification de fichiers','Documentation on Using Themes'=>'Documentation sur l’utilisation des thèmes','Documentation on Comments'=>'Documentation sur les commentaires','Universal time is %s.'=>'L’heure universelle est %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire de %s (Temps Universel Coordonné).','Administration Email Address'=>'Adresse e-mail d’administration','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations.','https://wordpress.org/documentation/article/giving-wordpress-its-own-directory/'=>'https://fr.wordpress.org/support/article/giving-wordpress-its-own-directory/','Documentation on General Settings'=>'Documentation sur les réglages généraux','Upload failed. Please reload and try again.'=>'Téléversement échoué. Veuillez actualiser et réessayer.','Erasure completed.'=>'Effacement terminé.','Data erasure has failed.'=>'L’effacement des données a échoué.','The attached file cannot be found.'=>'Le fichier attaché ne peut pas être trouvé.','page labelPrivacy Policy Page'=>'Page de politique de confidentialité','page labelPosts Page'=>'Page des articles','page labelFront Page'=>'Page d’accueil','post statusSticky'=>'Épinglé','post statusCustomization Draft'=>'Brouillon de personnalisation','post statusPassword protected'=>'Protégé par mot de passe','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L\'évènement planifié %s, est en retard. Votre site fonctionne toujours, mais cela peut indiquer que la planification des articles ou des mises à jour automatisées peuvent ne pas fonctionner comme prévu.','A scheduled event is late'=>'Un évènement planifié est en retard','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'Une connexion HTTPS est un moyen plus sûr de naviguer sur le web. De nombreux services ont maintenant HTTPS comme exigence. HTTPS vous permet de profiter de nouvelles fonctionnalités qui peuvent augmenter la vitesse du site, améliorer les classements de recherche et gagner la confiance de vos visiteurs en aidant à protéger leur vie privée en ligne.','Your version of WordPress (%s) is up to date'=>'Votre version de WordPress (%s) est à jour','Documentation on Site Management'=>'Documentation sur la gestion des sites','Publish on: %s'=>'Publier le : %s','Schedule for: %s'=>'Planifier pour le : %s','Published on: %s'=>'Publié le : %s','Scheduled for: %s'=>'Planifié pour le : %s','publish box time formatH:i'=>'H\\h i \\m\\i\\n','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are +dynamically generated, and should only be modified via WordPress filters. +Any changes to the directives between these markers will be overwritten.'=>'Les directives (lignes) entre « BEGIN %1$s » et « END %1$s » sont générées +dynamiquement, et doivent être modifiées uniquement via les filtres WordPress. +Toute modification des directives situées entre ces marqueurs sera outrepassée.','https://wordpress.org/documentation/article/block-themes/'=>'https://fr.wordpress.org/support/article/block-themes/','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#gerer-les-commentaires','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#les-commentaires-spam','All automatic updates are disabled.'=>'Toutes les mises à jour automatiques sont désactivées.','Database collation'=>'Classement de base de données','Database charset'=>'Jeu de caractères de la base de données','Inactive Themes'=>'Thèmes inactifs','Parent Theme'=>'Thème parent','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Les extensions avancées sont des fichiers uniques, trouvés dans le répertoire de %s, qui remplacent ou améliorent les fonctionnalités WordPress d\'une manière qui n\'est pas possible pour les extensions traditionnelles.','personal data group descriptionOverview of export report.'=>'Vue globale du rapport sur les exportations.','Documentation on Writing Settings'=>'Documentation sur les réglages d’écriture','Documentation on Tags'=>'Documentation sur les étiquettes','Documentation on Categories'=>'Documentation sur les catégories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Votre thème détermine comment le contenu est affiché dans les navigateurs. En savoir plus sur les flux.','For each post in a feed, include'=>'Dans chaque publication du flux, inclure','Warning: these pages should not be the same as your Privacy Policy page!'=>'Avertissement : ces pages ne doivent pas être les mêmes que votre page de politique de confidentialité !','Documentation on Reading Settings'=>'Documentation sur les réglages de lecture','https://wordpress.org/documentation/article/wordpress-feeds/'=>'https://fr.wordpress.org/support/article/wordpress-feeds/','[%s] Delete My Site'=>'[%s] Supprimer mon site','Allow people to submit comments on new posts'=>'Autoriser les commentaires sur les nouvelles publications','Default post settings'=>'Réglages de publication par défaut','You can change your profile picture on Gravatar.'=>'Vous pouvez changer votre image de profil sur Gravatar.','Plugin resumed.'=>'Extension reprise.','Selected plugins deactivated.'=>'Extensions sélectionnées désactivées.','Plugin deactivated.'=>'Extension désactivée.','Selected plugins activated.'=>'Extensions sélectionnées activées.','Plugin activated.'=>'Extension activée.','The selected plugins have been deleted.'=>'Les extensions sélectionnées ont été supprimées.','The selected plugin has been deleted.'=>'L’extension sélectionnée a été supprimée.','The plugin %1$s has been deactivated due to an error: %2$s'=>'L’extension %1$s a été désactivée en raison d’une erreur : %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer.','%1$s needs to be a %2$s object.'=>'%1$s doit être un objet %2$s.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'Vous êtes en mode de récupération. Cela signifie qu’il pourrait y avoir une erreur avec un thème ou une extension. Pour sortir du mode de récupération, déconnectez vous ou utilisez le bouton Sortir. Exit Recovery Mode','Site HealthStatus'=>'État','Site HealthInfo'=>'Informations','Themes directory location'=>'Emplacement du répertoire de thèmes','comment statusClosed'=>'Fermé','%s critical issue'=>'%s problème critique' . "\0" . '%s problèmes critiques','WordPress’ utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer. Please contact your server administrator.'=>'Le support de utf8mb4 par WordPress nécessite la bibliothèque MySQL (%1$s) version %2$s ou supérieure. Veuillez contacter votre hébergeur.','WordPress’ utf8mb4 support requires MariaDB version %s or greater. Please contact your server administrator.'=>'Le support de utf8mb4 par WordPress nécessite MariaDB version %s ou supérieur. Veuillez contacter votre hébergeur.','WordPress’ utf8mb4 support requires MySQL version %s or greater. Please contact your server administrator.'=>'Le support de utf8mb4 par WordPress nécessite MySQL version %s ou supérieur. Veuillez contacter votre hébergeur.','Learn more about what WordPress requires to run.'=>'En savoir plus sur les pré-requis de fonctionnement de WordPress.','https://wordpress.org/about/requirements/'=>'https://wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'Le serveur SQL est un élément obligatoire de l’architecture utilisée par WordPress pour stocker les contenus et réglages de votre site.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'Les modules PHP réalisent la plupart des tâches sur le serveur qui fait fonctionner votre site. Toute modification les concernant doit être réalisée par la personne chargée de l’administration de votre serveur.','Get help resolving this issue.'=>'Obtenez de l’aide pour résoudre ce problème.','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://fr.wordpress.org/support/article/updating-wordpress/','Manage your themes'=>'Gérez vos thèmes','Manage inactive plugins'=>'Gérer les extensions inactives','Update your plugins'=>'Mettez à jour vos extensions','Manage your plugins'=>'Gérez vos extensions','View Privacy Policy Guide.'=>'Voir le guide de politique de confidentialité.','User Language'=>'Langue de l’utilisateur','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier de configuration. Cela fera apparaître les erreurs sur l’interface publique de votre site.','[%s] Background Update Finished'=>'[%s] Mise à jour en arrière-plan terminée','[%s] Background Update Failed'=>'[%s] Mise à jour en arrière-plan échouée','Plugin could not be resumed because it triggered a fatal error.'=>'L’extension n’a pas pu être relancée car elle a déclenché une erreur fatale.','You should remove inactive themes'=>'Vous devriez retirer les thèmes inactifs','Your site has 1 installed theme, and it is up to date.'=>'Votre site a 1 thème installé, et il est à jour.','Your site has 1 active plugin, and it is up to date.'=>'Votre site a 1 extension active, et elle est à jour.','Passed tests'=>'Tests passés','Sorry, you are not allowed to access site health information.'=>'Désolé, vous n’avez pas l’autorisation d’accéder aux informations de santé du site.','Copy site info to clipboard'=>'Copier les informations du site dans le presse-papier','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'SI vous souhaitez exporter une liste de toutes les informations contenues dans cette page, vous pouvez utiliser le bouton ci-dessous pour les copier dans votre presse-papier. Vous pourrez ensuite les coller dans un fichier texte pour les enregistrer sur votre ordinateur, dans un e-mail d’échange avec un support technique, ou encore dans une discussion avec une développeuse ou un développeur de thème/extension.','The Site Health check requires JavaScript.'=>'La vérification de santé du site nécessite JavaScript.','Site Health Info'=>'Information de santé du site','All formats'=>'Tous les formats','Filter by post format'=>'Filtrer par format de publication','Go to the Plugins screen'=>'Aller à l’écran des extensions','The authenticity of %s could not be verified.'=>'L’authenticité de %s ne peut pas être vérifiée.','The authenticity of %s could not be verified as no signature was found.'=>'L’authenticité de %s n\'a pas pu être vérifiée car aucune signature n’a été trouvée.','This update does not work with your version of PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de PHP.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système.','Eraser callback is not valid: %s.'=>'Le retour de l’outil de suppression n’est pas valide : %s.','Eraser does not include a callback: %s.'=>'L’outil de suppression n’inclue aucun retour : %s.','Sorry, you are not allowed to perform this action.'=>'Désolé, vous n’avez pas l’autorisation d’effectuer cette action.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'Les requêtes HTTP ont été bloquées par la constante %s, avec aucun hôte autorisé.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'Les requêtes HTTP ont été bloquées par la constante %1$s, avec certains hôtes autorisés : %2$s.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'Vous utilisez une extension avancée %1$s, ce qui pourrait signifier que la base de données %2$s n’est pas utilisée.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'L’équipe Hébergement de WordPress maintient une liste des modules recommandés et obligatoires dans le manuel de l’équipe (en anglais)%3$s.','Performance'=>'Performance','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, votre thème actif.','You should consider removing any unused themes to enhance your site’s security.'=>'Nous recommandons de supprimer tous les thèmes non utilisés pour améliorer la sécurité de votre site.','Security'=>'Sécurité','Erase personal data list'=>'Supprimer la liste de données personnelles','Erase personal data list navigation'=>'Supprimer la navigation dans la liste de données personnelles','Filter erase personal data list'=>'Filtrer la suppression de la liste de données personnelles','Export personal data list'=>'Exporter la liste de données personnelles','Export personal data list navigation'=>'Exporter la navigation dans la liste de données personnelles','Filter export personal data list'=>'Filtrer l’export de la liste de données personnelles','Your site has %d inactive theme.'=>'Votre site a %d thème inactif.' . "\0" . 'Votre site a %d thèmes inactifs.','Your site has %d inactive plugin.'=>'Votre site a %d extension inactive.' . "\0" . 'Votre site a %d extensions inactives.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Les extensions inactives sont des cibles tentantes pour les pirates. Si vous n’utilisez plus une extension, vous devriez envisager de la retirer.','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'Il existe une nouvelle version disponible de %1$s, mais elle ne fonctionne pas avec votre version de PHP. Voir les détails de la version %4$s ou en savoir plus sur la mise à jour de PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'Cette extension n’a pas pu se charger correctement et a été mise en pause dans le cadre du mode de récupération.','Go to the Themes screen'=>'Aller à l’écran des thèmes','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers.','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides.','These settings alter where and how parts of WordPress are loaded.'=>'Ces réglages modifient où et comment les parties de WordPress sont chargées.','Site Health Status'=>'État de santé du site','Everything is running smoothly here.'=>'Tout fonctionne parfaitement ici.','Great job!'=>'Bon travail !','%s item with no issues detected'=>'%s élément sans problème détecté' . "\0" . '%s éléments sans problème détectés','%s recommended improvement'=>'%s amélioration recommandée' . "\0" . '%s améliorations recommandées','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'La vérification de santé du site affiche des informations critiques à propos de votre configuration WordPress et les éléments qui nécessitent votre attention.','Secondary menu'=>'Menu secondaire','The loopback request to your site completed successfully.'=>'La demande de bouclage vers votre site s’est bien terminée.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'La requête de bouclage a renvoyé un code d’état HTTP inattendu, %d. Il n’a pas été possible de déterminer si cela peut empêcher des fonctionnalités de fonctionner convenablement.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'La requête de bouclage sur votre site a échoué, ce qui signifie que les fonctionnalités qui s’appuient sur ces requêtes ne fonctionnent actuellement pas comme elles le devraient.','No scheduled events exist on this site.'=>'Aucun évènement planifié n’existe sur ce site.','REST API availability'=>'Disponibilité de l’API REST','Loopback request'=>'Demande de bouclage','Debugging enabled'=>'Débogage activé','HTTP Requests'=>'Requêtes HTTP','Scheduled events'=>'Évènements planifiés','Secure communication'=>'Communication sécurisée','HTTPS status'=>'État HTTPS','MySQL utf8mb4 support'=>'Prise en charge de utf8mb4 dans MySQL','PHP Extensions'=>'Extensions PHP','Database Server version'=>'Version du serveur de base de données','PHP Version'=>'Version de PHP','Theme Versions'=>'Version des thèmes','Plugin Versions'=>'Versions des extensions','WordPress Version'=>'Version de WordPress','The REST API did not process the %s query parameter correctly.'=>'L’API REST n’a pas traité correctement le paramètre de la requête %s.','The REST API did not behave correctly'=>'L’API REST ne s’est pas correctement comportée','The REST API encountered an unexpected result'=>'L’API REST a rencontré un résultat inattendu','The REST API encountered an error'=>'L’API REST a rencontré une erreur','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'L’API REST est l’une des façon pour WordPress ou d’autres applications de communiquer avec le serveur. Par exemple, l’écran de l’éditeur s’appuie sur celui-ci pour afficher et enregistrer vos publications.','The REST API is available'=>'L’API REST est disponible','HTTP requests are partially blocked'=>'Les requêtes HTTP sont partiellement bloquées','HTTP requests are blocked'=>'Les requêtes HTTP sont bloquées','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'Il est possible pour les responsables du site de bloquer tout ou partie de la communication vers d’autres sites et services. Si la configuration est incorrecte, cela peut empêcher les extensions et thèmes de fonctionner comme prévu.','HTTP requests seem to be working as expected'=>'Les requêtes HTTP semblent fonctionner comme prévu','Your site could not complete a loopback request'=>'Votre site n’a pas pu terminer la requête de bouclage','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Les requêtes de bouclage sont utilisées pour lancer des évènements planifiés, ainsi que par les éditeurs de thèmes et d’extensions pour vérifier la stabilité du code.','Your site can perform loopback requests'=>'Votre site peut lancer des requêtes de bouclage','Background updates may not be working properly'=>'Les mises à jour d’arrière-plan pourraient ne pas fonctionner correctement','Background updates are not working as expected'=>'Les mises à jour d’arrière-plan ne fonctionnent pas comme prévu','Passed'=>'Succès','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Les mises à jour d’arrière-plan assurent que WordPress peut se mettre à jour automatiquement si une mise à jour de sécurité est disponible pour la version que vous utilisez actuellement.','Background updates are working'=>'Les mises à jour d’arrière-plan fonctionnent','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s a échoué. Votre site fonctionne toujours, mais cela pourrait indiquer que les publications planifiées ou les mises à jour automatiques ne fonctionnent pas comme elles le devraient.','A scheduled event has failed'=>'Un évènement planifié a échoué','While trying to test your site’s scheduled events, the following error was returned: %s'=>'Lors du test des évènements planifiés de votre site, l’erreur suivante a été retournée : %s','It was not possible to check your scheduled events'=>'Il n’a pas été possible de vérifier vos évènements planifiés','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Les évènements planifiés permettent de vérifier périodiquement les mises à jour d’extensions, de thèmes et de WordPress lui-même. Cela permet également de s’assurer que les publications planifiées sont publiées à temps. Ils sont également utilisés par diverses extensions pour exécuter des actions planifiées.','Scheduled events are running'=>'Les évènements planifiés fonctionnent','Talk to your web host about OpenSSL support for PHP.'=>'Demandez à votre hébergeur la prise en charge de OpenSSL pour PHP.','Your site is unable to communicate securely with other services'=>'Votre site n’est pas en mesure de communiquer en toute sécurité avec d’autres services','Your site can communicate securely with other services'=>'Votre site peut communiquer en toute sécurité avec d’autres services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Des communications sécurisées entre serveurs sont nécessaires pour des transactions telles que le parcours de fichiers, la vente sur les boutiques en ligne, et plus encore.','Learn more about why you should use HTTPS'=>'Découvrez pourquoi vous devriez utiliser HTTPS','Your website does not use HTTPS'=>'Votre site n’utilise pas HTTPS','Your website is using an active HTTPS connection'=>'Votre site utilise une connexion HTTPS opérationnelle.','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant HTTPS, mais votre Adresse WordPress n’est pas configurée pour utiliser HTTPS par défaut.','Your site is set to display errors to site visitors'=>'Votre site est réglé pour afficher les erreurs aux visiteurs du site','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'La valeur %s a été ajoutée au fichier de configuration de votre site. Cela signifie que toute erreur sur le site sera enregistrée dans un fichier qui est potentiellement visible par toutes les utilisatrices et tous les utilisateurs.','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Le mode débogage est souvent activé pour obtenir plus de détails à propos d’une erreur ou d’une défaillance du site, mais peut contenir des informations sensibles qui ne devraient pas être disponibles sur un site web accessible au public.','Your site is set to log errors to a potentially public file'=>'Votre site est configuré pour enregistrer le journal des erreurs dans un fichier potentiellement public','Your site is not set to output debug information'=>'Votre site n’est pas réglé pour afficher les informations de débogage','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Votre site ne peut pas rejoindre WordPress.org sur %1$s et a retourné l’erreur suivante : %2$s','Could not reach WordPress.org'=>'Impossible de rejoindre WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'La communication avec les serveurs WordPress est utilisée pour vérifier l’existence de nouvelles versions et pour installer et mettre à jour le cœur WordPress, les thèmes et les extensions.','Can communicate with WordPress.org'=>'Peut communiquer avec WordPress.org','utf8mb4 requires a newer client library'=>'utf8mb4 nécessite une librairie cliente plus récente','Your MariaDB version supports utf8mb4.'=>'Votre version de MariaDB prend en charge utf8mb4.','utf8mb4 requires a MariaDB update'=>'utf8mb4 nécessite une mise à jour de MariaDB','Your MySQL version supports utf8mb4.'=>'Votre version MySQL prend en charge utf8mb4.','utf8mb4 requires a MySQL update'=>'utf8mb4 nécessite une mise à jour de MySQL','UTF8MB4 is supported'=>'UTF8MB4 est pris en charge','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress nécessite %1$s version %2$s ou plus. Contactez votre hébergeur web pour corriger cela.','Severely outdated SQL server'=>'Serveur SQL fortement obsolète ','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'Pour des performances optimales et pour des raisons de sécurité, nous recommandons %1$s version %2$s ou supérieure. Contactez votre hébergeur pour corriger cela.','Outdated SQL server'=>'Serveur SQL obsolète','SQL server is up to date'=>'Le serveur SQL est à jour','One or more required modules are missing'=>'Un module nécessaire ou plus sont manquants.','One or more recommended modules are missing'=>'Un ou plusieurs modules recommandés sont manquants','The optional module, %s, is not installed, or has been disabled.'=>'Le module facultatif, %s, n’est pas installé, ou a été désactivé.','The required module, %s, is not installed, or has been disabled.'=>'Le module obligatoire %s n’est pas installé, ou a été désactivé.','Error'=>'Erreur','Required and recommended modules are installed'=>'Les modules obligatoires et recommandés sont installés','Have a default theme available'=>'Avoir un thème par défaut disponible','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Votre site n’a pas de thème par défaut. Les thèmes par défaut sont utilisés par WordPress automatiquement si quelque chose ne va pas avec votre thème actif.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver %1$s, le thème WordPress par défaut, %2$s, votre thème actuel, et %3$s, son thème parent.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver uniquement votre thème actuel, %1$s et %2$s, son thème parent.','You should remove inactive plugins'=>'Vous devriez retirer les extensions inactives','You have themes waiting to be updated'=>'Vous avez des thèmes en attente de mise à jour','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Les thèmes concernent l’aspect visuel de votre site. Il est important de les tenir à jour, pour la cohérence de votre identité visuelle et pour garder votre site sécurisé.','Your site has %d installed theme, and it is up to date.'=>'Votre site a %d thème installé et il est à jour.' . "\0" . 'Votre site a %d thèmes installés et ils sont tous à jour.','Your site has %d theme waiting to be updated.'=>'Votre site à %d thème en attente de mise à jour.' . "\0" . 'Votre site à %d thèmes en attente de mise à jour.','Your themes are all up to date'=>'Vos thèmes sont à jour','You have plugins waiting to be updated'=>'Vous avez des extensions en attente de mise à jour','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Les extensions étendent les fonctionnalités de votre site avec des choses comme des formulaires de contact, une boutique e-commerce et bien plus. Cela signifie qu’elles ont accès à votre site en profondeur, il est donc vital de les tenir à jour.','Your site has %d active plugin, and it is up to date.'=>'Votre site a %d extension installée et elle est à jour.' . "\0" . 'Votre site a %d extensions installées et elles sont toutes à jour.','Your site has %d plugin waiting to be updated.'=>'Votre site a %d extension en attente de mise à jour.' . "\0" . 'Votre site a %d extensions en attente de mise à jour.','Your plugins are all up to date'=>'Vos extensions sont à jour','You are currently running the latest version of WordPress available, keep it up!'=>'Vous utilisez actuellement la dernière version disponible de WordPress, gardez-la à jour !','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'Une mise à jour mineure est disponible pour votre site. Comme les mises à jour mineures concernent souvent la sécurité, il est important de les installer.','A new version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','Install the latest version of WordPress'=>'Installer la dernière version de WordPress','WordPress update available (%s)'=>'Mise à jour de WordPress disponible (%s)','Check for updates manually'=>'Vérifier les mises à jour manuellement','WordPress security and maintenance releases are blocked by the %s filter.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s.','WordPress security and maintenance releases are blocked by %s.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par %s.','WordPress development updates are blocked by the %s filter.'=>'Les mises à jour de développement WordPress sont bloquées par le filtre %s.','WordPress development updates are blocked by the %s constant.'=>'Les mises à jour de développement WordPress sont bloquées par la constante %s.','All of your WordPress files are writable.'=>'Tous vos fichiers WordPress sont accessibles en écriture.','Some files are not writable by WordPress:'=>'Certains fichiers ne sont pas accessibles par WordPress :','This could mean that connections are failing to WordPress.org.'=>'Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Impossible de récupérer une liste des checksums pour WordPress %s.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour.','No version control systems were detected.'=>'Aucun système de contrôle de version n’a été détecté.','The folder %1$s was detected as being under version control (%2$s).'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour.','A previous automatic background update could not occur.'=>'Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée.','The error code was %s.'=>'Le code d’erreur était %s.','You would have received an email because of this.'=>'Vous auriez reçu un courriel à cause de cela.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'Une précédente mise à jour automatique en arrière-plan s\'est terminée par un échec critique, les mises à jour sont désormais désactivées.','The %s filter is enabled.'=>'Le filtre %s est activé.','A plugin has prevented updates by disabling %s.'=>'Une extension a empêché les mises à jour en désactivant %s.','The must use plugins directory'=>'Le répertoire des extensions indispensables','Theme features'=>'Fonctionnalités de thèmes','Parent theme'=>'Thème parent','Author website'=>'Site de l’auteur','(Latest version: %s)'=>'(dernière version : %s)','Version %1$s by %2$s'=>'Version %1$s par %2$s','No version or author information is available.'=>'Aucune information de version ou d’auteur·e n’est disponible.','Server version'=>'Version du serveur','Extension'=>'Extension','Your %s file contains only core WordPress features.'=>'Votre fichier %s ne contient que des fonctionnalités du cœur WordPress.','Custom rules have been added to your %s file.'=>'Des règles personnalisées ont été ajoutées à votre fichier %s.','.htaccess rules'=>'Règles du .htaccess','Is the Imagick library available?'=>'La bibliothèque Imagick est-elle disponible ?','Is SUHOSIN installed?'=>'SUHOSIN est-il installé ?','cURL version'=>'version de cURL','PHP post max size'=>'PHP post max size','Upload max filesize'=>'Upload max filesize','Max input time'=>'Temps d’entrée max','PHP memory limit'=>'Limite de mémoire PHP','PHP time limit'=>'Limite d’exécution PHP','PHP max input variables'=>'Valeur maximale des variables PHP','Unable to determine some settings, as the %s function has been disabled.'=>'Impossible de déterminer certains réglages, car la fonction %s a été désactivée.','Server settings'=>'Réglages du serveur','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(ne prend pas en charge les valeurs 64 bits)','(Supports 64bit values)'=>'(Supporte les valeurs 64 bits)','PHP version'=>'Version de PHP','Unable to determine what web server software is used'=>'Impossible de déterminer le serveur web utilisé','Web server'=>'Serveur web','Unable to determine server architecture'=>'Impossible de déterminer l’architecture du serveur','Server architecture'=>'Architecture serveur','Ghostscript version'=>'Version de Ghostscript','Unable to determine if Ghostscript is installed'=>'Impossible de déterminer si Ghostscript est installé','GD version'=>'Version de GD','Imagick Resource Limits'=>'Limites de ressources Imagick','ImageMagick version string'=>'Chaîne de version ImageMagick','ImageMagick version number'=>'Numéro de version ImageMagick','Not available'=>'Non disponible','Active editor'=>'Éditeur actif','Unable to check if any new versions of WordPress are available.'=>'Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour.','Total installation size'=>'Taille totale de l’installation','Database size'=>'Taille de la base de données','WordPress directory size'=>'Taille du répertoire de WordPress','WordPress directory location'=>'Emplacement du répertoire de WordPress','Plugins directory size'=>'Taille du répertoire des extensions','Plugins directory location'=>'Emplacement du répertoire des extensions','Themes directory size'=>'Taille du répertoire des thèmes','Theme directory location'=>'Emplacement du répertoire des thèmes','Uploads directory size'=>'Taille du répertoire des téléversements','Uploads directory location'=>'Emplacement du répertoire des téléversements','Unable to reach WordPress.org at %1$s: %2$s'=>'Impossible d’atteindre WordPress.org à %1$s : %2$s','WordPress.org is reachable'=>'WordPress.org est accessible','Communication with WordPress.org'=>'Communication avec WordPress.org','Network count'=>'Nombre de réseaux','Site count'=>'Nombre de sites','User count'=>'Nombre d’utilisatrices et d’utilisateurs','The themes directory'=>'Le répertoire de thèmes','The plugins directory'=>'Le répertoire d’extensions','The uploads directory'=>'Le répertoire des téléversements','The wp-content directory'=>'Le répertoire wp-content','Not writable'=>'Non accessible en écriture','Writable'=>'Accessible en écriture','The main WordPress directory'=>'Le répertoire principal de WordPress','Shows whether WordPress is able to write to the directories it needs access to.'=>'Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder.','Filesystem Permissions'=>'Droits des fichiers système','Undefined'=>'Indéfini','WordPress Constants'=>'Constantes WordPress','Database'=>'Base de données','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur.','Server'=>'Serveur','Media Handling'=>'Prise en charge des médias','Inactive Plugins'=>'Extensions inactives','Active Plugins'=>'Extensions actives','Must Use Plugins'=>'Extensions indispensables','Active Theme'=>'Thème actif','Drop-ins'=>'Avancées','Directories and Sizes'=>'Répertoires et tailles','Is this a multisite?'=>'S’agit-il d’un multisite ?','Default comment status'=>'État par défaut des commentaires','Can anyone register on this site?'=>'Tout le monde peut-il s’inscrire sur ce site ?','Is this site using HTTPS?'=>'Est-ce que ce site utilise HTTPS ?','No permalink structure set'=>'Aucune structure de permaliens définie','Permalink structure'=>'Structure des permaliens','Site URL'=>'URL du site','Home URL'=>'URL de la page d’accueil','Site Health'=>'Santé du site','requestsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Afficher la case à cocher pour accepter les cookies sur les commentaires, ce qui permet l’enregistrement de cookies pour les auteurs de commentaires.','Next theme'=>'Thème suivant','Previous theme'=>'Thème précédent','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'Si vous modifiez cela, vous recevrez un e-mail de confirmation à votre nouvelle adresse. La nouvelle adresse ne sera pas active tant que vous n’aurez pas confirmé.','Theme resumed.'=>'Thème relancé.','Theme could not be resumed because it triggered a fatal error.'=>'Le thème n’a pas pu être relancé car il a déclenché une erreur fatale.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'Si vous remarquez des messages « headers already sent », des problèmes avec vos flux de syndication ou d’autres soucis, essayez de désactiver ou de supprimer cette extension.','Sorry, you are not allowed to resume this plugin.'=>'Désolé, vous n’êtes pas autorisé à relancer cette extension.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'Évènements et actualités WordPress – évènements à venir près de chez vous et dernières actualités officielles du projet WordPress ainsi que de l’écosystème WordPress.','The plugin generated %d character of unexpected output during activation.'=>'Cette extension a généré %d caractère de sortie inattendu lors de son activation.' . "\0" . 'Cette extension a généré %d caractères de sortie inattendus lors de son activation.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Add menu items'=>'Ajouter des éléments de menu','Click the Save Menu button to save your changes.'=>'Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications.','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu.','Create your first menu below.'=>'Créez votre premier menu ci-dessous.','or create a new menu. Do not forget to save your changes!'=>'ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Learn more about updating PHP'=>'En savoir plus sur la mise à jour de PHP','What is PHP and how does it affect my site?'=>'Qu’est-ce que PHP et comment cela affecte t-il mon site ?','PHP Update Required'=>'Mise à jour de PHP nécessaire','You can find more details and make changes on the Plugins screen.'=>'Vous pouvez trouver davantage de détails et faire des modifications sur l’écran des extensions.','One or more plugins failed to load properly.'=>'Le chargement d’une ou plusieurs extensions a échoué.','Could not resume the plugin.'=>'Impossible de relancer l’extension.','Custom PHP fatal error handler.'=>'Gestionnaire d’erreur fatale PHP personnalisée.','Custom PHP error message.'=>'Message d’erreur PHP personnalisé.','Could not remove the old translation.'=>'Impossible de retirer l’ancienne traduction.','Removing the old version of the translation…'=>'Retrait de l’ancienne version de la traduction…','Click here to update WordPress.'=>'Cliquer ici pour mettre WordPress à jour.','Error: This plugin requires a newer version of WordPress.'=>'Erreur : Cette extension nécessite une version plus récente de WordPress.','Click here to learn more about updating PHP.'=>'Cliquez ici pour en apprendre davantage sur la mise à jour de PHP.','Add widget: %s'=>'Ajouter le widget : %s','Add to: %s'=>'Ajouter à : %s','Track %s.'=>'Piste %s.','Error: This plugin requires a newer version of PHP.'=>'Erreur : Cette extension nécessite une version plus récente de PHP.','My Network'=>'Mon réseau','This plugin does not work with your version of PHP.'=>'Cette extension ne fonctionne pas avec votre version de PHP.','This plugin does not work with your version of WordPress.'=>'Cette extension ne fonctionne pas avec votre version de WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'Cette extension ne fonctionne pas avec vos versions de WordPress et de PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','Resume'=>'Relancer','pluginResume %s'=>'Relancer %s','You can find more details and make changes on the Themes screen.'=>'Vous trouverez plus de détails et pouvez apporter des modifications sur l’écran des thèmes.','One or more themes failed to load properly.'=>'Un ou plusieurs thèmes ont échoués à se charger correctement.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée.','Could not resume the theme.'=>'Impossible de relancer le thème.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'Les blocs widgets nécessite JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur, ou essayez l’extension Classic Editor.','A post type mismatch has been detected.'=>'Une incohérence de type de publication a été détectée.','A post ID mismatch has been detected.'=>'Une incohérence d’identifiant de publication a été détectée.','Please open the classic editor to use this meta box.'=>'Veuillez ouvrir l’éditeur classique pour utiliser cette boîte méta.','Please activate the Classic Editor plugin to use this meta box.'=>'Veuillez activer l’extension Classic Editor pour utiliser cette boîte méta.','Please install the Classic Editor plugin to use this meta box.'=>'Veuillez installer l’extension Classic Editor pour utiliser cette boîte méta.','This meta box is not compatible with the block editor.'=>'Cette boîte méta n’est pas compatible avec le nouvel éditeur.','To distribute copies of your modified versions to others.'=>'la liberté d\'améliorer le programme et de distribuer ces améliorations au public, pour en faire profiter toute la communauté.','The 4th Freedom'=>'La quatrième liberté','To redistribute.'=>'La liberté de redistribution ;','The 3rd Freedom'=>'La troisième liberté','To study how the program works and change it to make it do what you wish.'=>'La liberté d’étudier le fonctionnement du programme et de l’adapter à ses besoins ;','The 2nd Freedom'=>'La deuxième liberté','To run the program for any purpose.'=>'La liberté d’exécuter le programme, pour tous les usages ;','The 1st Freedom'=>'La première liberté','Created'=>'Créé','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules super pour la communauté bouzemontoise.','...or something like this:'=>'...ou quelque chose comme cela :','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka-ananas (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil).','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux visiteurs du site. Cela pourrait ressembler à quelque chose comme cela :','Export “%s” as JSON'=>'Exporter « %s » en JSON','1 pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour, quelqu’un est train de la modifier.','%s pattern restored from the Trash.'=>'%s composition restaurée depuis la corbeille.' . "\0" . '%s compositions restaurées depuis la corbeille.','Error: "Table Prefix" must not be empty.'=>'Erreur : le préfixe de table ne doit pas être vide.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'Cette boîte méta de l’extension %s n’est pas compatible avec le nouvel éditeur.','personal data group labelAbout'=>'À propos','page titleAbout'=>'À propos','Edit or preview your Privacy Policy page content.'=>'Modifier ou prévisualiser le contenu de votre page de politique de confidentialité.','Privacy Policy Page'=>'Page de politique de confidentialité','%s (Draft)'=>'%s (Brouillon)','Privacy Policy page updated successfully.'=>'La page de politique de confidentialité a bien été mise à jour.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté en utilisant l’action %s (ou ultérieurement). Veuillez vous référer à la documentation en ligne.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté uniquement dans wp-admin en utilisant l’action %s (ou ultérieurement).','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'Le texte suggéré pour votre politique de confidentialité a été modifié. Veuillez relire le guide et mettre à jour votre politique de confidentialité.','There are no pages.'=>'Il n’y a aucune page.','Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème.','Privacy Policy Guide'=>'Guide de la politique de confidentialité','Visitor comments may be checked through an automated spam detection service.'=>'Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les utilisateurs et utilisatrices pouvant téléverser des fichiers dans votre bibliothèque de médias. Les fichiers téléversés sont généralement accessibles publiquement.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs et visiteurs de votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse de messagerie, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies.','Suggested text:'=>'Texte suggéré :','Updated %s.'=>'%s mis à jour.','You deactivated this plugin on %s and may no longer need this policy.'=>'Vous avez désactivé l’extension %s et n’avez donc normalement plus besoin de ces informations.','Removed %s.'=>'%s supprimé.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez notre guide pour des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions.','Add Data Erasure Request'=>'Ajout d’une demande d’effacement de données','Erasing data...'=>'Effacement des données…','Send export link'=>'Envoyer le lien d’export','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici.','Industry regulatory disclosure requirements'=>'Affichage des informations liées aux secteurs soumis à des régulations spécifiques','What automated decision making and/or profiling we do with user data'=>'Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles','What third parties we receive data from'=>'Les services tiers qui nous transmettent des données','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues ».','What data breach procedures we have in place'=>'Procédures mises en œuvre en cas de fuite de données','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos utilisateurs. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici.','How we protect your data'=>'Comment nous protégeons vos données','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'Si vous utilisez votre site web dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment.','Additional information'=>'Informations supplémentaires','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'Dans cette section, indiquez les droits de vos utilisateurs et utilisatrices concernant leurs données et comment ils et elles peuvent exercer ces droits.','What rights you have over your data'=>'Les droits que vous avez sur vos données','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'Pour les utilisateurs et utilisatrices qui s’enregistrent sur notre site (si cela est possible), nous stockons également les données personnelles indiquées dans leur profil. Tous les utilisateurs et utilisatrices peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur nom d’utilisateur·ice). Les gestionnaires du site peuvent aussi voir et modifier ces informations.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.','How long we retain your data'=>'Durées de stockage de vos données','By default WordPress does not share any personal data with anyone.'=>'Par défaut, WordPress ne partage vos informations personnelles avec personne.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible.','Who we share your data with'=>'Utilisation et transmission de vos données personnelles','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici.','Analytics'=>'Statistiques et mesures d’audience','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.','Embedded content from other websites'=>'Contenu embarqué depuis d’autres sites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse de messagerie et site web dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'Une chaîne anonymisée créée à partir de votre adresse de messagerie (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'Quand vous laissez un commentaire sur notre site web, les données inscrites dans le formulaire de commentaire, mais aussi votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales.','Contact forms'=>'Formulaires de contact','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'Si vous êtes un utilisateur ou une utilisatrice enregistré·e et que vous téléversez des images sur le site web, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les visiteurs de votre site web peuvent télécharger et extraire des données de localisation depuis ces images.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des utilisateurs enregistrés. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Les données personnelles ne sont pas créées par les interactions de vos utilisateurs avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales.','What personal data we collect and why we collect it'=>'Utilisation des données personnelles collectées','Our website address is: %s.'=>'L’adresse de notre site Web est : %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact.','Who we are'=>'Qui sommes-nous ?','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'Il est de votre responsabilité de rédiger une politique de confidentialité compréhensible, de vous assurer qu’elle reflète les exigences nationales et internationales sur la vie privée et de maintenir cette politique à jour et exacte.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Veuillez modifier le contenu de votre politique de confidentialité. Assurez-vous de supprimer les exemples de textes et d’ajouter les différentes informations à propos de vos thèmes et extensions. Une fois votre page publiée, pensez à l’ajouter à votre menu de navigation ou à votre pied de page.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'En tant que propriétaire du site, vous pourriez avoir besoin de suivre des réglementations nationales ou internationales en matière de confidentialité. Par exemple, vous pouvez avoir besoin de créer et d’afficher une politique de confidentialité.','Email could not be sent.'=>'L’e-mail n’a pas pu être envoyé.','date/timeOn'=>'Le','website URLAt URL'=>'À l’URL','website nameFor site'=>'Pour le site','email addressReport generated for'=>'Rapport généré pour','Force erasure has failed.'=>'L’effacement forcé a échoué.','Exporter array at index %s does not include a friendly name.'=>'Le tableau d’export ne contient aucun « friendly name » à l’index %s.','Sorry, you are not allowed to export personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter les données personnelles sur ce site.','Eraser index is out of range.'=>'L’index d’effacement est hors de portée.','Missing eraser index.'=>'Index d’effacement manquant.','Expected done (boolean) in response array from exporter: %s.'=>'Résultat attendu (booléen) dans le tableau de réponse de l’exportateur : %s.','Expected data array in response array from exporter: %s.'=>'Donnée tabulaire attendue dans le tableau de réponse de l’exportateur : %s.','Expected data in response array from exporter: %s.'=>'Donnée attendue dans le tableau de réponse de l’exportateur : %s.','Expected response as an array from exporter: %s.'=>'Réponse attendue de l’exportateur en tant que tableau : %s.','Exporter callback is not a valid callback: %s.'=>'Le retour de l’exportateur n’est pas un retour valide : %s.','Exporter does not include a callback: %s.'=>'L’exportateur n’inclue aucun retour : %s.','Expected an array describing the exporter at index %s.'=>'Réponse attendue sous forme de tableau décrivant l’exportateur à l’index %s.','Exporter index is out of range.'=>'L’index d’export hors limite.','Exporter index cannot be negative.'=>'L’index d’exportation ne peut pas être un nombre inférieur à zéro.','An exporter has improperly used the registration filter.'=>'Un outil d’export a utilisé le filtre d’inscription de façon erronée.','Missing page index.'=>'Index de page manquant.','Missing exporter index.'=>'Index d’export manquant.','Invalid request type.'=>'Type de requête non valide.','Sorry, you are not allowed to erase personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’effacer les données personnelles sur ce site.','Use This Page'=>'Utiliser cette page','Select a Privacy Policy page'=>'Sélectionner une page de politique de confidentialité','Change your Privacy Policy page'=>'Modifier la page de politique de confidentialité','Edit or view your Privacy Policy page content.'=>'Modifiez ou visualisez le contenu de votre page de politique de confidentialité.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'Vous devriez aussi relire votre politique de confidentialité régulièrement, spécialement après l’installation ou la mise à jour de thèmes ou d’extensions. Il se peut que des changements ou de nouvelles informations vous fassent envisager de les ajouter à votre politique.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'Cependant, il est de votre responsabilité d’utiliser ces ressources correctement, afin de fournir les informations que votre politique de confidentialité nécessite, de tenir à jour ces informations et de garantir leur pertinence.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'Si vous disposez déjà d’une page de politique de confidentialité, veuillez la sélectionner ci-dessous. Sinon, veuillez en créer une.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'La page de politique de confidentialité actuellement sélectionnée est dans la corbeille. Veuillez créer ou sélectionner une nouvelle page de politique de confidentialité ou restaurer la page actuelle.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'La page de politique de confidentialité actuellement sélectionnée n’existe pas. Veuillez créer ou sélectionner une nouvelle page.','Unable to create a Privacy Policy page.'=>'Impossible de créer une page de politique de confidentialité.','privacy-policy'=>'politique-de-confidentialite','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'La page de politique de confidentialité a bien été mise à jour. Pensez à mettre à jour vos menus !','The new page will include help and suggestions for your privacy policy.'=>'La nouvelle page contiendra de l’aide et des suggestions pour votre politique de confidentialité.','Copy suggested policy text from %s.'=>'Copier la suggestion de politique de confidentialité depuis %s.','Howdy, + +Your request for an export of personal data has been completed. You may +download your personal data by clicking on the link below. For privacy +and security, we will automatically delete the file on ###EXPIRATION###, +so please download it before then. + +###LINK### + +Regards, +All at ###SITENAME### +###SITEURL###'=>'Bonjour, + +Votre demande d’export de données personnelles a été traitée. Vous pouvez télécharger vos données personnelles en cliquant sur le lien ci-dessous. Par sécurité et afin de respecter vos données privées, ce fichier sera automatiquement supprimé le ###EXPIRATION###, alors veuillez le télécharger d’ici là. + +###LINK### + +Cordialement, +L’équipe de ###SITENAME### +###SITEURL###','Email sent.'=>'E-mail envoyé.','Unable to send personal data export email.'=>'Impossible d’envoyer l’export de données personnelles par e-mail.','[%s] Personal Data Export'=>'[%s] Export de données personnelles','Sending email...'=>'Envoi de l’e-mail…','Download personal data again'=>'Retélécharger les données personnelles','Invalid request ID when sending personal data export email.'=>'ID non valide lors de l’envoi par e-mail des données d’export.','Personal Data Export'=>'Export de données personnelles','Personal Data Export for %s'=>'Export de données personnelles pour %s','A valid email address must be given.'=>'Erreur : une adresse de messagerie valide doit être fournie.','Retry'=>'Réessayer','Remove request'=>'Supprimer la demande','Waiting for confirmation'=>'Attente de confirmation','Requested'=>'Demande envoyée','Requester'=>'Origine de la demande','Send Request'=>'Envoyer une demande','Username or email address'=>'Nom d’utilisateur/utilisatrice ou adresse de messagerie','Add Data Export Request'=>'Ajouter une demande d’export de données','Confirmation request initiated successfully.'=>'Demande de confirmation bien initialisée.','Unable to add this request. A valid email address or username must be supplied.'=>'Impossible d’ajouter cette demande. Une adresse de messagerie ou un nom d’utilisateur valide doit être fourni.','Confirmation request sent again successfully.'=>'Demande de confirmation bien ré-envoyée.','Unable to initiate confirmation request.'=>'Impossible d’initialiser la demande de confirmation.','Invalid request ID.'=>'ID de demande non valide.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Marqueur de résultat attendu dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Clé de messages de référence d’un tableau attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Clé de messages attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Clé items_retained attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Clé items_removed attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Pas de tableau reçu depuis l’effaceur %1$s (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Le tableau d’effacement à l’index %d ne contient pas de nom élégant.','Expected an array describing the eraser at index %d.'=>'Un tableau décrivant l’effaceur à l’index %d est attendu.','Page index cannot be less than one.'=>'L’index de page ne peut pas être inférieur à 1.','Eraser index cannot be less than one.'=>'L’index de suppression ne peut pas être inférieur à 1.','Invalid email address in request.'=>'Adresse de messagerie non valide dans la demande.','Force erase personal data'=>'Forcer l’effacement des données personnelles','Downloading data...'=>'Téléchargement des données…','Download personal data'=>'Télécharger les données personnelles','Requires PHP Version:'=>'Nécessite PHP en version :','This changeset cannot be further modified.'=>'Ce jeu de modifications ne peut pas être modifié davantage.','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées pour réaliser des statistiques comme celles que vous pouvez consulter sur la page de statistiques de WordPress.org.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué.','Did you know?'=>'Le saviez-vous ?','Noteworthy Contributors'=>'Contributrices & contributeurs remarquables','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress ne notifie aucun service de mise à jour du fait de vos réglages de visibilité.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Erreur : Le répertoire racine de votre site n\'est pasaccessible en écriture, la création d\'un fichier n\'a pas pu être faite automatiquement. Voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress.','We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy.'=>'Nous prenons très au sérieux le respect de la vie privée et la transparence. Pour en savoir plus sur les données que nous collectons, et comment nous les utilisons, veuillez visiter notre politique de confidentialité.','https://wordpress.org/about/license/'=>'https://fr.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'De temps en temps, votre site WordPress peut envoyer des données sur WordPress.org incluant entre autres la version de WordPress utilisée et la liste des extensions et des thèmes installés.','Uploaded on: %s'=>'Téléversé sur : %s','Downloading installation package from %s…'=>'Téléchargement du paquet d’installation depuis %s…','Downloading translation from %s…'=>'Téléchargement des traductions depuis %s…','Downloading update from %s…'=>'Téléchargement de la mise à jour depuis %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s.','Customization Draft'=>'Brouillon de personnalisation','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements.','Theme Files'=>'Fichiers du thème','folder'=>'dossier','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Impossible d’envoyer un message au site afin de vérifier l’absence d’erreurs fatales. Du coup, la modification PHP a été annulée. Vous allez devoir téléverser votre fichier PHP modifié par un autre moyen, par exemple en utilisant un client FTP.','Installation Required'=>'Installation requise','Could not fully remove the plugin %s.'=>'Impossible de supprimer l’extension %s.','User has been created, but could not be added to this site.'=>'L’utilisateur a été créé, mais il ne peut pas être ajouté à ce site.','That user could not be added to this site.'=>'Cet utilisateur ne peut pas être ajouté à ce site.','Disable syntax highlighting when editing code'=>'Désactiver le surlignage syntaxique lors de l’édition de code.','Syntax Highlighting'=>'Édition de code','Run the installation'=>'Lancer l’installation','https://wordpress.org/about/privacy/'=>'https://wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This n’est pas disponible. Veuillez contacter l’administrateur du site.','Press This is not installed. Please install Press This from the main site.'=>'Press This n’est pas installé. Veuillez installer Press This depuis le site principal.','Activate Press This'=>'Activer Press This','I understand'=>'J’ai compris','Heads up!'=>'Faites attention !','Warning: Making changes to active plugins is not recommended.'=>'Attention : Effectuer des changements dans les extensions actives n’est pas recommandé.','Selected file content:'=>'Contenu du fichier sélectionné :','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'Une erreur s\'est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer.','Homepage: %s'=>'Page d’accueil : %s','Available tags:'=>'Étiquettes disponibles :','%s (already used in permalink structure)'=>'%s (déjà utilisé dans la structure de permalien)','%s added to permalink structure'=>'%s ajouté à la structure du permalien','%s (A sanitized version of the author name.)'=>'%s (Une version sanitisée du nom de l’auteur)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (identifiant de catégorie. les sous-catégories imbriquées apparaissent sous la forme de sous-répertoires dans l’adresse web)','%s (The sanitized post title (slug).)'=>'%s (Le titre sanitisé de l’article (identifiant).)','%s (The unique ID of the post, for example 423.)'=>'%s (L\'ID unique de l\'article, par exemple 423.)','%s (Second of the minute, for example 33.)'=>'%s (Seconde de la minute, par exemple 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute de l\'heure, par exemple 43.)','%s (Hour of the day, for example 15.)'=>'%s (Heure de la journée, par exemple 15.)','%s (Day of the month, for example 28.)'=>'%s (Jour du mois, par exemple 28.)','%s (Month of the year, for example 05.)'=>'%s (Mois de l\'année, par exemple 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (L’année de l\'article, en quatre chiffres, par exemple 2004.)','Theme Installation'=>'Installation du thème','%s is currently editing this post.'=>'%s modifie actuellement cette publication.','%s is currently editing this post. Do you want to take over?'=>'%s modifie actuellement cette publication. Voulez-vous prendre la main ?','Plugin Installation'=>'Installation de l\'extension','Custom installation script.'=>'Script personnalisé d\'installation.','Active Installations:'=>'Installations actives :','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Réglages — Cette page affiche une liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par les extensions que vous activez. notez que certains champs sont grisé et affichent « Serialized Data » ; vous ne pouvez pas modifier ces valeurs en raison de la manière dont elles sont stockées dans la base de données.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Thèmes — Cette zone affiche les thèmes qui n’ont pas ancore été activés sur le réseau. Un thème activé dans ce menu le rendra accessible au présent site. Cela n’active pas le thème, mais l\'affichera dans le menu Apparence du site. Pour activer un thème sur le réseau entier, allez sur l’écran Thèmes du Réseau.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Utilisateurs — Cette page affiche les utilisateurs associés à ce site. Vous pouvez modifier leur rôle, mettre à zéro leur mot de passe, ou les retirer du site. Retirer un utilisateur d’un site ne le retire pas du réseau.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — L’adresse web du site est rarement modifiée, car cela peut empêche le site de fonctionnement correctement. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs du réseau peuvent archiver un site, le marquer comme indésirable, le supprimer et le marquer comme étant « pour adultes », afin de le retirer de la liste publique, ou le désactiver.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'Le menu sert à modifier les informations propres à chaque site, notamment si leur interface d’administration est inaccessible.','Unable to write to file.'=>'Impossible d\'écrire sur le fichier','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://fr.wordpress.org/news/','Your Recent Drafts'=>'Vos brouillons récents','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Vos modifications de code PHP ont été annulées en raison d’une erreur sur la ligne %1$s du fichier %2$s. Veuillez la corriger et réessayer d’enregistrer.','nameUnknown'=>'Inconnu','View posts by %s'=>'Voir les articles par %s','No description'=>'Aucune description','%s Active Installations'=>'%s installations activées','Theme installation failed.'=>'L’installation du thème a échoué.','Plugin installation failed.'=>'L\'installation de l\'extension a échouée.','Your scheduled changes just published'=>'Votre planification vient d\'être publiée','Activate Plugin & Go to Press This'=>'Activer l’extension et aller sur Press This','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications.','Collapse Main menu'=>'Replier le menu principal','pluginNetwork Activate %s'=>'Activer %s sur le réseau','pluginActivate %s'=>'Activer %s','No media files found.'=>'Aucun fichier média trouvé.','Run Importer'=>'Lancer l’outil d’importation','Run %s'=>'Lancer %s','comment statusOpen'=>'Ouvert','Image Rotation'=>'Rotation de l’image','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de vous pour le moment. Voulez-vous en organiser un ?','Edit User %s'=>'Modifier l’utilisateur %s','Edit widget: %s'=>'Modifier le widget : %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','Attend an upcoming event near %s.'=>'Participez à un évènement à venir près de %s.','City:'=>'Ville :','WordCamps'=>'WordCamps','Meetups'=>'Meetups','WordPress Events and News'=>'Évènements et nouveautés WordPress','l, M j, Y'=>'l j M Y','Unknown API error.'=>'Erreur d’API inconnue.','Cincinnati'=>'Paris','Invalid API response code (%d).'=>'Code de réponse d’API non valide (%d).','An error occurred. Please try again.'=>'Une erreur est survenue. Veuillez essayer à nouveau.','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de %1$s pour le moment. Voulez-vous en organiser un ?','Sorry, you are not allowed to create users.'=>'Désolé, vous n’avez pas l’autorisation de créer des utilisateurs.','Sorry, you are not allowed to delete users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des utilisateurs.','short (~12 characters) label for hide controls buttonHide Controls'=>'Masquer les controles','Expand Sidebar'=>'Étendre la colonne latérale','Display location'=>'Afficher l’emplacement','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s : %2$s Désolé, vous n’êtes pas autorisé à supprimer cet utilisateur.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans que cela affecte la langue que les visiteurs du site voient.','Edit Filters'=>'Modifier les filtres','Clear current filters'=>'Réinitialiser les filtres actuels','Select one or more Theme features to filter by'=>'Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer','(%s ratings)'=>'(%s votes)','Current Background Image'=>'Image d’arrière plan actuelle','Current Header Image'=>'Image d’en-tête actuelle','Search plugins...'=>'Rechercher des extensions...','“%s” is locked'=>'“%s” est verrouillé','Set status'=>'État','Sorry, you are not allowed to attach files to this post.'=>'Désolé, vous n’êtes pas autorisé à attacher des fichiers à ce contenu.','Active plugin installationsLess Than 10'=>'Inférieur à 10','https://wordpress.org/plugins/'=>'https://fr.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'L’outil de personnalisation vous permet de prévisualiser les modifications sur votre site avant de les publier. Vous pouvez naviguer sur différentes pages de votre site au sein de la prévisualisation. Des raccourcis sont affichés pour certains éléments modifiables. La personnalisation est destinée à être utilisée avec des thèmes non basé sur les blocs.','Customize New Changes'=>'Personnaliser les nouvelles modifications','Background ScrollScroll'=>'Défilement','Background RepeatRepeat'=>'Répétition','Support'=>'Forums d’entraide','%s update failed.'=>'%s mise à jour a échoué.','%s updates failed.'=>'%s mises à jour ont échoué.','Search installed plugins...'=>'Recherchez parmi vos extensions...','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section d’extensions','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress.','Search plugins by:'=>'Recherche d’extensions par :','Convert existing categories to tags or tags to categories, selectively.'=>'Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective.','Import posts from LiveJournal using their API.'=>'Importer les articles depuis LiveJournal par le biais de leur API.','Import posts and comments from a Movable Type or TypePad blog.'=>'Importer les articles et commentaires depuis un blog Movable Type ou TypePad.','Import posts from an RSS feed.'=>'Importer des articles depuis un flux RSS.','Import posts & media from Tumblr using their API.'=>'Importer des articles et des fichiers média depuis Tumblr par le biais de leur API.','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’export WordPress.','Import posts, comments, and users from a Blogger blog.'=>'Importer des articles, commentaires et utilisateurs depuis un blog Blogger.','pluginNetwork Deactivate %s'=>'Désactiver %s du réseau','pluginDelete %s'=>'Supprimer %s','pluginDeactivate %s'=>'Désactiver %s','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'Les nouveaux utilisateurs reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher le mot de passe ». L’identifiant ne peut pas être modifié une fois que le compte utilisateur a été créé.','plugin%s was successfully deleted.'=>'%s a bien été supprimé.','The search for installed plugins will search for terms in their name, description, or author.'=>'La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions ou leurs auteurs.','Custom Logo'=>'Logo personnalisé','Sorry, you are not allowed to add users to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des utilisateurs pour ce réseau.','Sorry, you are not allowed to edit this changeset.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications.','Sorry, you are not allowed to remove users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des utilisateurs.','New version available. '=>'Nouvelle version disponible. ','Sorry, you are not allowed to update this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour ce site.','Sorry, you are not allowed to update themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site.','The Theme Installer screen requires JavaScript.'=>'L’écran d’installation de thèmes nécessite JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site.','Error: "Table Prefix" is invalid.'=>'Erreur : préfixe de table invalide.','Sorry, you are not allowed to activate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site.','Sorry, you are not allowed to edit plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site. ','Sorry, you are not allowed to delete this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Manage with Live Preview'=>'Gérer avec l’aperçu en direct','Sorry, you are not allowed to manage options for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de ce site. ','Sorry, you are not allowed to add links to this site.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site.','Hi, this is a comment. +To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. +Commenter avatars come from Gravatar.'=>'Bonjour, ceci est un commentaire. +Pour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord. +Les avatars des personnes qui commentent arrivent depuis Gravatar.','theme%s was successfully deleted.'=>'%s a bien été supprimé.','Grid Layout'=>'Style en grille','Footer Widgets'=>'Widgets de pied de page','Blog'=>'Blog','E-Commerce'=>'E-Commerce','Education'=>'Éducation','Entertainment'=>'Divertissement','Food & Drink'=>'Nourriture & Boisson','News'=>'Nouvelles','Photography'=>'Photographie','Portfolio'=>'Portfolio','Please update WordPress now'=>'Veuillez mettre WordPress à jour maintenant','%s themes successfully updated.'=>'%s thèmes mis à jour.','%s plugins successfully updated.'=>'%s extensions mises à jour.','%s theme successfully updated.'=>'%s thème mis à jour.','%s plugin successfully updated.'=>'%s extension mise à jour.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s est disponible ! Veuillez informer l’administrateur du site.','WordPress %2$s is available! Please update now.'=>'WordPress %2$s est disponible ! Veuillez faire la mise à jour maintenant.','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée.','Close media attachment panel'=>'Fermer le panneau des fichiers attachés.','Embed Template'=>'Modèle intégré','Embed 404 Template'=>'Modèle intégré 404','Embed Content Template'=>'Modèle intégré de contenu','Embed Header Template'=>'Modèle intégré d’en-tête','Embed Footer Template'=>'Modèle intégré de pied de page','Sorry, you are not allowed to access this page.'=>'Désolé, vous n’avez pas l’autorisation d’accéder à cette page.','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Besoin d’aide ? Utilisez l’onglet « Aide » au dessus du titre de l’écran.','Sorry, you are not allowed to update plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site.','Plugin could not be deleted.'=>'L’extension ne peut pas être supprimée.','Sorry, you are not allowed to edit the links for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site.','(Private post)'=>'(Article privé)','pluginActive'=>'Actif','Sorry, you are not allowed to manage privacy options on this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de confidentialité sur ce site.','No theme specified.'=>'Aucun thème spécifié.','Sorry, you are not allowed to install themes on this site.'=>'Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site.','Sorry, you are not allowed to delete themes on this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Theme could not be deleted.'=>'Le thème ne peut pas être supprimé.','Sorry, you are not allowed to import content into this site.'=>'Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'Vous pouvez filtrer la liste des articles par statut en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec ce statut. La vue par défaut affiche tous les articles.','Sorry, you are not allowed to export the content of this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site.','Sorry, you are not allowed to customize headers.'=>'Désolé, vous n’avez pas l’autorisation de personnaliser les en-têtes.','Close the Customizer and go back to the previous page'=>'Fermer l’outil de personnalisation et retour vers la page précédente.','Release Deputy'=>'Assistant du responsable de cette version','Release Design Lead'=>'Responsable Design de cette version','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à un article, que vous pouvez ensuite utiliser dans votre thème.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus.','The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'Le mode textuel vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode texte, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options.','Error saving media file.'=>'Une erreur est survenue pendant la sauvegarde du fichier média.','%s media file restored from the Trash.'=>'%s fichier média restauré depuis la corbeille.' . "\0" . '%s fichiers médias restaurés depuis la corbeille.','%s media file moved to the Trash.'=>'%s fichier média déplacé dans la corbeille.' . "\0" . '%s fichiers médias déplacés dans la corbeille.','Media file attached.'=>'Fichier média attaché.','%s media file attached.'=>'%s fichier média attaché.' . "\0" . '%s fichiers médias attachés.','Media file detached.'=>'Fichier média détaché.','%s media file detached.'=>'%s fichier média détaché.' . "\0" . '%s fichiers médias détachés.','%s media file permanently deleted.'=>'%s fichier média supprimé définitivement.' . "\0" . '%s fichiers médias supprimés définitivement.','Media file updated.'=>'Fichier média mis à jour.','View %1$s version %2$s details'=>'Afficher les détails de la version %2$s du thème %1$s','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publier - Vous pouvez définir la manière dont votre article est publié dans le bloc « Publier ». Pour « État », « Visibilité », et « Publier (tout de suite) », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger l’article avec un mot de passe ou faire en sorte qu’il reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacun de vos articles avec un mot de passe. L’option « Privé » cache l’article pour tout le monde, sauf aux Éditeurs et Administrateurs. « Publier (tout de suite) » vous permet de planifier la publication de votre article à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance des articles à publier, ou de les antidater. ','There is a pending change of your email to %s.'=>'Il y a une modification en cours de votre adresse de messagerie, en faveur de %s.','Error while saving the new email address. Please try again.'=>'Une erreur est survenue durant l’enregistrement de votre adresse de messagerie. Veuillez réessayer.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias.','New theme activated.'=>'Nouveau thème activé.','The following themes are installed but incomplete.'=>'Les thèmes suivants sont installés mais incomplets.','Settings saved and theme activated.'=>'Réglages sauvegardés et thème activé.','The name of the database you want to use with WordPress.'=>'Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress. ','Your database username.'=>'Nom d’utilisateur MySQL.','https://wordpress.org/themes/'=>'https://fr.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Désolé, vous n’avez pas l’autorisation de supprimer cet utilisateur. ','Your database password.'=>'Votre mot de passe de base de données.','plugin%1$s by %2$s'=>'%1$s par %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s par %2$s (attention : supprimera également les données liées) ','There is a pending change of the admin email to %s.'=>'Il y a un changement en attente de l’e-mail de l’administrateur vers %s.','Dismiss the welcome panel'=>'Ignorer le panneau de bienvenue','The constant %s cannot be defined when installing WordPress.'=>'La constante %s ne peut pas être définie lors de l’installation de WordPress.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress est installé. Merci et profitez bien !','Your %s file has an empty database table prefix, which is not supported.'=>'Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté.','Reviews'=>'Avis','Read all reviews on WordPress.org or write your own!'=>'Lisez tous les avis sur WordPress.org ou écrivez le vôtre !','Click the image to edit or update'=>'Cliquez sur l’image pour la modifier ou la mettre à jour.','Attach to existing content'=>'Attacher à un contenu existant','Theme zip file'=>'Fichier zip du thème','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus.','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre.' . "\0" . 'Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre.','Scale Image Help'=>'Aide sur le redimensionnement d’image ','scale height'=>'Redimensionner en hauteur','Image Crop Help'=>'Aide au recadrage d’image','crop ratio width'=>'Proportion horizontale','crop ratio height'=>'Proportion verticale','selection width'=>'largeur de la sélection','selection height'=>'hauteur de la sélection','Thumbnail Settings Help'=>'Aide aux réglages de la miniature','New dimensions:'=>'Nouvelles dimensions :','dashboard%1$s on %2$s %3$s'=>'%1$s sur %2$s %3$s','View more comments'=>'Voir plus de commentaires','Date Template'=>'Modèle de date','Singular Template'=>'Modèle individuel','Single Page'=>'Page individuelle','Taxonomy Template'=>'Modèle de taxonomie','Dismiss the browser warning panel'=>'Masquer l’alerte du navigateur','View this comment'=>'Voir ce commentaire','Attach “%s” to existing content'=>'Attacher « %s &rasquo; à du contenu existant','Move “%s” to the Trash'=>'Déplacer “%s” dans la corbeille','Delete “%s” permanently'=>'Supprimer “%s” définitivement','Restore “%s” from the Trash'=>'Restaurer “%s” depuis la corbeille','Search for plugins in the WordPress Plugin Directory.'=>'Rechercher des extensions dans le répertoire des extensions WordPress.','Quick edit “%s” inline'=>'Modifier rapidement “%s” en ligne','Delete “%s”'=>'Supprimer “%s”','View “%s” archive'=>'Voir l&rquo;archive pour « %s »','Update progress'=>'Progression de la mise à jour','Another update is currently in progress.'=>'Une autre mise à jour est actuellement en cours.','Edit this comment'=>'Éditer ce commentaire','Quick edit this comment inline'=>'Modifier ce commentaire sur cette page','attachment filterTrash'=>'Corbeille','“%s” (Edit)'=>'« %s » (Modifier)','Detach from “%s”'=>'Détacher de « %s &rasquo;','Restore this comment from the spam'=>'Restaurer ce commentaire des indésirables','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'L’importateur %s n’est pas installé ou n’est pas valide.','comment statusPending'=>'En attente','Images should be at least %s wide.'=>'Les images doivent être large de %s minimum.','%d pixels'=>'%d pixels','Images should be at least %s tall.'=>'Les images devraient faire au moins %s de haut','Suggested width is %s.'=>'La taille suggérée est de %s.','Suggested height is %s.'=>'La hauteur suggérée est de %s.','Send User Notification'=>'Envoyer une notification à l’utilisateur','menu location(Currently set to: %s)'=>'(Actuellement réglé sur : %s)','Version %s addressed one security issue.'=>'La version %s a corrigé un problème de sécurité.','https://en.gravatar.com/'=>'https://fr.gravatar.com/','Profile Picture'=>'Illustration du profil','Maintenance Releases'=>'Mises à jour de maintenance','Security Releases'=>'Mises à jour de sécurité','Maintenance and Security Releases'=>'Mises à jour de maintenance et de sécurité','Plain'=>'Simple','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress vous offre la possibilité de créer une structure personnalisée d’adresses web pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreux marqueurs sont disponibles, et nous vous donnons quelques exemples pour commencer.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa data ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée.','You can create the %s file manually and paste the following text into it.'=>'Vous pouvez créer le fichier %s manuellement et y coller le contenu suivant.','You should be able to get this info from your web host, if %s does not work.'=>'Si %s ne fonctionne pas, demandez cette information à l’hébergeur de votre site.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s.','Default is %s'=>'Par défaut, %s','The theme is missing the %s stylesheet.'=>'Le thème n’a pas de fichier %s.','The language pack is missing either the %1$s or %2$s files.'=>'Il manque soit le fichier %1$s, soit le fichier %2$s du pack de langue.','The %s stylesheet does not contain a valid theme header.'=>'Le fichier %s ne contient pas d’en-tête de thème valide.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici.','Allow automatic database repair'=>'Autoriser la réparation automatique de la base de données','Database repair results'=>'Résultats de la réparation de la base de données','themesFavorites'=>'Favoris','Check secret keys'=>'Vérifier les clés secrètes','WordPress database repair'=>'Réparation de la base de données de WordPress','Before getting started'=>'Avant de se lancer','Successful database connection'=>'La connexion à la base de données s’est bien faite','Set up your database connection'=>'Configurer la connexion à votre base de données','The Walker class named %s does not exist.'=>'La classe Walker nommée %s n’existe pas.','%s has been updated.'=>'%s a été mis à jour.','Requires %1$s in %2$s file.'=>'Requiert la constance %1$s dans le fichier %2$s.','You are about to delete %s.'=>'Vous êtes sur le point de supprimer %s.','Daylight saving time begins on: %s.'=>'Le passage à l’heure d’été commence le %s.','Standard time begins on: %s.'=>'Le passage à l’heure d’hiver commence le %s. ','Files in the %s directory are executed automatically.'=>'Les fichiers du répertoire %s sont exécutés automatiquement.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation.','Users list navigation'=>'Navigation de la liste des utilisateurs','Users list'=>'Liste des utilisateurs','One of the selected users is not a member of this site.'=>'Un des utilisateurs sélectionnés n’est pas un abonné de ce site.','Clear Inactive Widgets'=>'Vider les widgets désactivés','Filter users list'=>'Liste des filtres utilisateurs','Filter media items list'=>'Filtrer la liste des fichiers média.','Media items list navigation'=>'Navigation de la liste des éléments média','Media items list'=>'Liste des éléments média','Filter themes list'=>'Filtrer la liste des thèmes','Themes list'=>'Liste des thèmes','Install Parent Theme'=>'Installer le thème parent','All selected plugins are up to date.'=>'Toutes les extensions sélectionnées sont à jour.','Editing %s (active)'=>'Modification de %s (activée)','Browsing %s (active)'=>'Parcours de %s (activée)','Editing %s (inactive)'=>'Modification de %s (désactivée)','Browsing %s (inactive)'=>'Parcours de %s (désactivée)','Filter plugins list'=>'Filtrer la liste des extensions','Plugins list navigation'=>'Navigation de la liste des extensions','Plugins list'=>'Liste des extensions','Local time is %s.'=>'L’heure locale est %s.','Links list'=>'Liste des liens','Toggle panel: %s'=>'Ouvrir/fermer le bloc %s','Get Version %s'=>'Obtenir la version %s','The %1$s plugin header is deprecated. Use %2$s instead.'=>'L’en-tête d’extensions %1$s est obsolète. Utilisez plutôt %2$s.','Edit permalink'=>'Modifier le permalien','Saving revision…'=>'Enregistrement de la révision…','Warning'=>'Avertissement','Warning:'=>'Attention :','What should be done with content owned by %s?'=>'Que faire du contenu ayant %s pour propriétaire ?','Select a user'=>'Sélectionnez un utilisateur','Site: %s'=>'Site : %s','User has no sites or content and will be deleted.'=>'L’utilisateur n’a pas de site ou de contenu, et sera supprimé.','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », ces utilisateurs seront définitivement supprimés.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », l’utilisateur sera définitivement supprimé.','Theme Footer'=>'Pied de page du thème','Theme Header'=>'En-tête du thème','You have chosen to delete the user from all networks and sites.'=>'Vous avez choisi de supprimer l’utilisateur de tous les réseaux et sites.','You have chosen to delete the following users from all networks and sites.'=>'Vous avez choisi de supprimer les utilisateurs suivants de tous les réseaux et sites. ','Warning! User %s cannot be deleted.'=>'Attention ! L’utilisateur %s ne peut pas être supprimé.','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Attention ! L’utilisateur ne peut pas être supprimé. L’utilsateur %s est administrateur du réseau.','Invalid image URL.'=>'Adresse web non valide pour l’image.','Items list navigation'=>'Navigation de la liste des éléments','Items list'=>'Liste des éléments','Additional settings'=>'Réglages supplémentaires','%s column'=>'%s colonne' . "\0" . '%s colonnes','An error occurred while updating %1$s: %2$s'=>'Une erreur est survenue lors de la mise à jour de %1$s  %2$s','No role'=>'Aucun rôle','no user rolesNone'=>'Aucun','From %1$s %2$s'=>'De %1$s %2$s','M jS Y'=>'j M Y','View all drafts'=>'Voir tous les brouillons','View mode'=>'Mode d’affichage','End date:'=>'Date de fin :','commentsAll (%s)'=>'Tous (%s) ' . "\0" . 'Tous (%s) ','commentsPending (%s)'=>'En attente (%s)' . "\0" . 'En attente (%s)','commentsApproved (%s)'=>'Approuvé (%s)' . "\0" . 'Approuvés (%s)','commentsSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Échec de l&rquo;initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s.','No pending comments'=>'Aucun commentaire en attente','Network Active'=>'Activé sur le réseau','Network Only'=>'Réseau seul','Filter items list'=>'Filtrer la liste des éléments','commentsTrash (%s)'=>'Mis à la corbeille (%s)' . "\0" . 'Mis à la corbeille (%s)','User %s added'=>'L’utilisateur %s a été ajouté','column nameSubmitted on'=>'Envoyé le','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'Vous pouvez voir la liste des articles en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran ». ','Content to export'=>'Contenu à exporter','Submitted on: %s'=>'Envoyé le : %s','commentPermalink:'=>'Permalien :','Page scheduled for: %s.'=>'Page programmée pour le %s.','Page draft updated.'=>'Le brouillon de la page a été mis à jour.','Page submitted.'=>'Page envoyée.','Post submitted.'=>'Article envoyé.','Post scheduled for: %s.'=>'Article programmé pour le %s.','Post draft updated.'=>'Le brouillon de l’article a été mis à jour.','View page'=>'Voir la page','Filter comments list'=>'Filtrer la liste des commentaires','Comments list navigation'=>'Navigation de la liste des commentaires','Comments list'=>'Liste des commentaires','Preview post'=>'Prévisualiser l’article','Preview page'=>'Prévisualiser la page','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'Dans la colonne « Envoyé le », vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la publication où se situe le commentaire.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d’afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille.','Comments (%1$s) on “%2$s”'=>'Commentaires (%1$s) sur « %2$s »','Sorry, you are not allowed to modify themes.'=>'Désolé, vous n’avez pas l’autorisation de modifier les thèmes.','Comments (%s)'=>'Commentaires (%s)','The active theme does not support a flexible sized header image.'=>'Le thème actif ne prend pas en charge les images d’en-tête de taille variable.','The active theme does not support uploading a custom header image.'=>'Le thème actif ne prend pas en charge le téléversement d’images d’en-tête personnalisées.','You are using the auto-generated password for your account. Would you like to change it?'=>'Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?','You have specified this user for removal:'=>'Vous avez indiqué que cet utilisateur devait être supprimé :','Log %s out of all locations.'=>'Déconnecter %s de tous les supports/appareils.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez rester connecté ici tout en vous déconnectant partout ailleurs.','Log Out Everywhere Else'=>'Me déconnecter partout ailleurs','Cancel password change'=>'Annuler la modification du mot de passe','Sessions'=>'Sessions','Account Management'=>'Gestion de compte','Generate password'=>'Générer un mot de passe','You will need this password to log in. Please store it in a secure location.'=>'Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr.','No approved comments'=>'Aucun commentaire approuvé','%s approved comment'=>'%s commentaire approuvé' . "\0" . '%s commentaires approuvés','%s pending comment'=>'%s commentaire en attente' . "\0" . '%s commentaires en attente','Image could not be processed.'=>'L’image n’a pas pu être traitée.','Confirm Password'=>'Confirmation du mot de passe','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org.','Show more details'=>'Afficher plus de détails','Your theme supports %s menu. Select which menu appears in each location.'=>'Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître dans l’emplacement.' . "\0" . 'Votre thème peut utiliser %s menus. Sélectionnez les menu qui devront apparaître dans chaque emplacement.','Live Preview “%s”'=>'Prévisualisation de « %s »','%s post by this author'=>'%s article par cet auteur' . "\0" . '%s articles par cet auteur','Comment status'=>'État du commentaire','Date and time'=>'Date et heure','In response to: %s'=>'En réponse à : %s','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués (en anglais).','Documentation on Custom Background'=>'Documentation sur l’arrière-plan personnalisé (en)','Documentation on Link Categories'=>'Documentation sur les catégories de liens (en)','Documentation on Creating Links'=>'Documentation sur la création de liens (en)','Documentation on Managing Links'=>'Documentation sur la gestion des liens (en)','Documentation on Custom Header'=>'Documentation sur l’en-tête personnalisé','Documentation on My Sites'=>'Documentation sur Mes Sites (en)','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions (en anglais).','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication est disponible sur la documentation de WordPress. Séparez les URL de services par des retours à la ligne.','The character encoding of your site (UTF-8 is recommended)'=>'Le codage de caractères utilisé par votre site (nous recommandons UTF-8)','example: www.wordpress.org'=>'exemple : www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'La recherche parmi les thèmes installés se fait sur leurs noms, leurs descriptions, leurs auteurs et leurs étiquettes.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'Vous pouvez chercher un thème par mot-clé, auteur ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités.','Number of Themes found: %d'=>'Nombre de thèmes trouvés : %d','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Autrement, vous pouvez parcourir les thèmes mis en avant, populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer.','Custom time format:'=>'Format d’heure personnalisé :','enter a custom time format in the following field'=>'saisissez un format d’heure personnalisé dans le champ suivant','Custom date format:'=>'Format de date personnalisé :','enter a custom date format in the following field'=>'saisissez un format de date personnalisé dans le champ suivant','Plugins updated successfully.'=>'Les extensions ont bien été mises à jour.','Active plugin installations%s+ Million'=>'%s million et +' . "\0" . '%s millions et +','XML Error: %1$s at line %2$s'=>'Erreur XML : %1$s à la ligne %2$s','Main menu'=>'Menu principal','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus.','You have specified these users for deletion:'=>'Vous avez indiqué que vous voulez supprimer ces utilisateurs :','What should be done with content owned by these users?'=>'Que doit-il arriver aux contenus appartenant à ces utilisateurs ?','%s user deleted.'=>'%s utilisateur supprimé.' . "\0" . '%s utilisateurs supprimés.','Delete Plugins'=>'Supprimer les extensions','You are about to remove the following plugins:'=>'Vous êtes sur le point de supprimer les extensions suivantes :','These plugins may be active on other sites in the network.'=>'Ces extensions peuvent être actives sur d’autres sites du réseau.','1 page not updated, somebody is editing it.'=>'Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier.','1 post not updated, somebody is editing it.'=>'Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier.','This theme has not been rated yet.'=>'Ce thème n’a pas encore reçu de note.','New translations are available.'=>'De nouvelles traductions sont disponibles.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Me déconnecter partout ailleurs »','timezone date formatY-m-d H:i:s'=>'Y-m-d H:i:s','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une adresse web et un texte pour le lien, et cliquez sur « Ajouter au menu »','Close details dialog'=>'Fermer la fenêtre des détails','You are currently editing the page that shows your latest posts.'=>'Vous êtes en train de modifier la page qui affiche vos derniers articles.','Posts Page'=>'Page des articles','Number of items per page:'=>'Nombre d’éléments par page :','Howdy ###USERNAME###, + +You recently clicked the \'Delete Site\' link on your site and filled in a +form on that page. + +If you really want to delete your site, click the link below. You will not +be asked to confirm again so only click this link if you are absolutely certain: +###URL_DELETE### + +If you delete your site, please consider opening a new site here some time in +the future! (But remember that your current site and username are gone forever.) + +Thank you for using the site, +All at ###SITENAME### +###SITEURL###'=>'Bonjour ###USERNAME###, + +Vous avez récemment cliqué sur le lien « Supprimer le site » de votre site, +et avez complété le formulaire présent sur cette même page. + +Si vous confirmez la suppression de votre site, cliquez sur le lien ci-dessous. +Aucune confirmation ne vous sera demandée par la suite, soyez donc totalement +certain·e de ce que vous faites : +###URL_DELETE### + +Si vous effacez votre site, n’hésitez pas à revenir créer un autre site à l’avenir ! +(mais souvenez-vous que votre site actuel et votre identifiant ne seront plus jamais disponibles). + +Merci d’avoir utilisé ce site, + +Les responsables de ###SITENAME### +###SITEURL###','Size in megabytes'=>'Taille en mégaoctets','Site Upload Space Quota'=>'Quota d’espace de fichiers','UPDATE LOG +=========='=>'JOURNAL DE LA MISE À JOUR +==========','revision date short formatj M @ H:i'=>'j F \\à G \\h i \\m\\i\\n ','BETA TESTING? +============= + +This debugging email is sent when you are using a development version of WordPress. + +If you think these failures might be due to a bug in WordPress, could you report it? + * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta + * Or, if you\'re comfortable writing a bug report: https://core.trac.wordpress.org/ + +Thanks! -- The WordPress Team'=>'BETA TESTEUR ? +============== + +Cet e-mail de débogage est envoyé lorsque vous utilisez une version de développement de WordPress. + +Si vous pensez que ces erreurs puissent être dues à un problème du côté de WordPress, pourriez-vous nous les signaler ? +* Ouvrez une discussion sur le forum de support en anglais : https://wordpress.org/support/forum/alphabeta +* Ou, si rédiger un rapport de bug ne vous fait pas peur : http://core.trac.wordpress.org/ + +Merci ! -- L’équipe WordPress','M j, Y @ H:i'=>'j F Y \\à G \\h i \\m\\i\\n ','Submitted on'=>'Envoyé le','In response to'=>'En réponse à','%1$s %2$s, %3$s at %4$s:%5$s'=>'%2$s %1$s %3$s à %4$sh%5$s','You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.'=>'Vous pouvez activer le mode d’écriture sans distraction en cliquant sur l’icône à droite. Cette fonctionnalité n’est pas disponible pour les anciens navigateurs ou les appareils à petits écrans, et requiert l’activation de l’éditeur plein-écran dans les options de l’écran.','These suggestions are based on the plugins you and other users have installed.'=>'Ces suggestions sont basées sur les extensions que vous et d’autres utilisateurs ont installées.','You are only logged in at this location.'=>'Vous n’êtes connecté·e qu’à cet endroit.','Log Out Everywhere'=>'Déconnexion globale','Plugin InstallerRecommended'=>'Recommandées','Your new WordPress site has been successfully set up at: + +%1$s + +You can log in to the administrator account with the following information: + +Username: %2$s +Password: %3$s +Log in here: %4$s + +We hope you enjoy your new site. Thanks! + +--The WordPress Team +https://wordpress.org/ +'=>'Votre nouveau site WordPress a bien été installé à l’adresse : + +%1$s + +Vous pouvez vous y connecter en tant qu’administrateur avec les informations suivantes : + +Identifiant : %2$s +Mot de passe : %3$s +Connectez-vous ici : %4$s + +Nous espérons que vous aimerez votre nouveau site ! Merci à vous ! + +--L’équipe WordPress +https://wordpress.org/ +','Mystery Person'=>'Personne mystère','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas ("_"), des traits d’union ("-"), des points et le symbole @.','You cannot delete a theme while it has an active child theme.'=>'Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant.','Enable full-height editor and distraction-free functionality.'=>'Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction.','Untested with your version of WordPress'=>'Non testé avec votre version de WordPress','https://planet.wordpress.org/'=>'https://wpfr.net','https://planet.wordpress.org/feed/'=>'https://feeds.feedburner.com/wpfr','All categories'=>'Toutes les catégories','Filter by comment type'=>'Filtrer par type de commentaire','Could not log out user sessions. Please try again.'=>'Impossible de déconnecter les sessions utilisateur. Veuillez réessayer.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab.'=>'Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel ou Texte. Choisissez un mode en cliquant sur l’onglet correspondant.','This preview is unavailable in the editor.'=>'Cette prévisualisation n’est pas disponible dans l’éditeur.','%s has been logged out.'=>'%s a été déconnecté·e.','You are now logged out everywhere else.'=>'Vous êtes désormais déconnecté·e partout ailleurs.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation.','You can now manage and live-preview Custom Header in the Customizer.'=>'Vous pouvez gérer et prévisualiser l’en-tête personnalisée dans l’outil de personnalisation.','Welcome panelWelcome'=>'Bienvenue','usersAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','link nameName'=>'Nom','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les adresses web de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée.','Release Lead'=>'Responsable de cette version','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran de modifications étendues par la fenêtre des détails.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées.','Browse Plugins'=>'Parcourir les extensions','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'Tous les fichiers que vous avez téléversés sont listés dans la bibliothèque de médias, avec le dernier téléversé qui apparaît en premier.','Add Plugins'=>'Ajouter des extensions','Invalid translation type.'=>'Type de traduction non valide.','The %1$s constant in your %2$s file is no longer needed.'=>'La constante %1$s de votre fichier %2$s n’est plus nécessaire.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde.','Incompatible with your version of WordPress'=>'Incompatible avec votre version de WordPress','Compatible with your version of WordPress'=>'Compatible avec votre version de WordPress','%d star'=>'%d étoile' . "\0" . '%d étoiles','Select bulk action'=>'Sélectionnez l’action groupée','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'La vue en grille de la Bibliothèque de Médias nécessite JavaScript. Passer à la vue en liste.','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne.','%s failed to embed.'=>'%s n’a pas pu être intégré.','Plugin InstallerBeta Testing'=>'Test de phase beta','Plugin installer group titlePerformance'=>'Performance','Plugin installer group titleSocial'=>'Social','Plugin installer group titleTools'=>'Outils','More Details'=>'Plus de détails','themesRecently Updated'=>'Mis à jour récemment','Plugin installer section titleReviews'=>'Avis','Donate to this plugin »'=>'Faites à un don à cette extension »','Contributors'=>'Contributeurs','Number/count of itemsCount'=>'Total','Filtering by:'=>'Trier par :','To crop the image, click on it and drag to make your selection.'=>'Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection.','A red bar on the left means the comment is waiting for you to moderate it.'=>'Une barre rouge sur la gauche signifie que le commentaire attention votre validation.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Shift tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image.','Displayed on attachment pages.'=>'Affiché sur les pages des fichiers joints.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils.','All comment types'=>'Tous les types de commentaire','themesFeatured'=>'Mis en avant','themesPopular'=>'Populaires','themesLatest'=>'Derniers en date','Add Themes'=>'Ajouter des thèmes','Search Themes'=>'Chercher parmi les thèmes','Search themes...'=>'Recherche parmi les thèmes...','themeDetails & Preview'=>'Détails et prévisualisation','What should be done with content owned by this user?'=>'Que faire du contenu ayant cet utilisateur pour propriétaire ?','Delete all content.'=>'Supprimer tout le contenu.','Attribute all content to:'=>'Attribuer tout le contenu à :','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Contrôles des blocs — Cliquez sur la barre de titre d’un bloc pour l’ouvrir ou le fermer. Certains blocs ajoutés par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris.','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wpfr.net/support/forum/support-de-wordpress/','Sorry, you are not allowed to resume this theme.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter ce thème.','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'Supprimer vous amène à l’écran de suppression des utilisateurs pour confirmer votre action, d’où vous pouvez supprimer un utilisateur de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs utilisateurs à la fois avec les actions groupées.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Supprimervous permet de retirer un utilisateur de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs utilisateurs à la fois avec les actions groupées.','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez.','Thank you for creating with WordPress.'=>'Merci de faire de WordPress votre outil de création.','Edit visibility'=>'Modifier la visibilité','Browse revisions'=>'Parcourir les révisions','Edit date and time'=>'Modifier la date et l’heure','Edit status'=>'Modifier l’état','Support forums'=>'Forums d’entraide','Search installed themes...'=>'Chercher parmi les thèmes installés...','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Traductions — Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton "Mettre à jour les traductions".','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – Mise à jour de votre installation WordPress en un clic : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié·e qu’une nouvelle version est disponible.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Thèmes et extensions — Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à jour pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions d’un coup, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le boutons de mise à jour.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org.','If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'=>'Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire de thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !','%s Post'=>'%s articles' . "\0" . '%s articles','%s Page'=>'%s page' . "\0" . '%s pages','M jS'=>'j M','%s MB Space Allowed'=>'%s Mo d’espace autorisés','%1$s MB (%2$s%%) Space Used'=>'%1$s Mo (%2$s%%) d’espace utilisés','At a Glance'=>'D’un coup d’œil','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'Lorsque ce réglage est actif, un rappel est affiché dans la section « D’un coup d’œil » du Tableau de bord, indiquant « Moteurs de recherche découragés » pour que vous n’oubliez pas que vous avez indiqué aux moteurs de recherche de ne pas parcourir votre site.','themeActive:'=>'Activé :','Accessibility Ready'=>'Optimisé pour l’accessibilité','This is a child theme of %s.'=>'Ceci est un thème enfant de %s.','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers.','Hover or tap to see Activate and Live Preview buttons'=>'Survolez out touchez pour voir les boutons Activer et Prévisualisation','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Touchez ou survolez n’importe quel thème puis cliquez sur le bouton Prévisualisation pour voir une prévisualisation de ce thème et changer les options du thème dans un vie séparée et plein écran. Vous pouvez également trouver un bouton Prévisualisation au bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière.','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Cliquez sur le thème pour voir le nom du thème, sa version, son auteur, sa description, ses étiquettes et le bouton Supprimer.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, cliquez à nouveau sur l’icône de réduction.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres modèles de pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un clic, cliquez sur le bouton « Enregistrer et publier » en haut du menu.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Cliquer sur « Personnaliser » pour le thème actif ou « Prévisualiser en direct » pour n’importe quel autre thème afin d’afficher la prévisualisation.','The active theme is displayed highlighted as the first theme.'=>'Le thème actif est mis en avant en tant que premier thème.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale.','%1$s rating based on %2$s rating'=>'Une note de %1$s basée sur %2$s vote' . "\0" . 'Une note de %1$s basée sur %2$s votes','%s rating'=>'Note : %s','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'Cet écran affiche à un utilisateur individuel tous ses sites sur ce réseau, et permet également à cet utilisateur de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration.','Rollback Error: [%1$s] %2$s'=>'Erreur de restauration : [%1$s] %2$s','Error: [%1$s] %2$s'=>'Erreur : [%1$s] %2$s','The following plugins were successfully updated:'=>'Les extensions suivantes ont bien été mises à jour :','The following themes were successfully updated:'=>'Les thèmes suivants ont bien été mis à jour :','The following translations were successfully updated:'=>'Les traductions suivantes ont bien été mises à jour :','The following plugins failed to update:'=>'Les extensions suivantes n’ont pas pu être mises à jour :','The following themes failed to update:'=>'Les thèmes suivants n’ont pas pu être mis à jour :','The following translations failed to update:'=>'Les traductions suivantes n’ont pas pu être mises à jour :','Add New Theme'=>'Ajouter un thème','Update Available'=>'Mise à jour disponible','Show previous theme'=>'Affichier le thème précédent','Show next theme'=>'Afficher le thème suivant','Add Widget'=>'Ajouter le widget','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les blocs à afficher dans le Tableau de bord.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activité — Affiche les articles programmés, ceux récemment publiés, et les commentaires récents sur vos articles, que vous pouvez valider ou non.','Are you sure you want to delete this theme? + +Click \'Cancel\' to go back, \'OK\' to confirm the delete.'=>'Confirmez-vous la suppression de ce thème ? + +« Annuler » pour arrêter, « OK » pour supprimer.','Unable to submit this form, please refresh and try again.'=>'Impossible d’envoyer ce formulaire. Veuillez recharger la page et réessayer.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Brouillon rapide — Vous permet de créer une nouvelle publication et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 3 derniers brouillons que vous avez créés.','Activity'=>'Activité','WordPress site: %s'=>'Site WordPress : %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCÈS : WordPress a bien été mis à jour vers %s','FAILED: WordPress failed to update to %s'=>'ÉCHEC : WordPress n’a pas pu être mis à jour vers %s','SUCCESS: %s'=>'SUCCÈS : %s','FAILED: %s'=>'ÉCHEC : %s','Quick Draft'=>'Brouillon rapide','WordPress %1$s running %2$s theme.'=>'WordPress %1$s avec le thème %2$s.','What’s on your mind?'=>'Qu’avez-vous en tête ?','Publishing Soon'=>'Bientôt publié','Recently Published'=>'Publié récemment','No activity yet!'=>'Aucune activité pour le moment !','Tomorrow'=>'Demain','Manage Uploads'=>'Gérer les téléversements','Popular Plugin'=>'Extensions populaires ','WordPress %s is also now available.'=>'WordPress %s est disponible.','Your site was running version %s.'=>'Votre site utilise la version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers.','Updating translations for %1$s (%2$s)…'=>'Mise à jour de la traduction de %1$s (%2$s)…','Translations for %s'=>'Traductions pour %s','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Votre site a été mis à jour vers WordPress %2$s','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible.','Updating is easy and only takes a few moments:'=>'La mise à jour est facile et ne requiert que quelques secondes :','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le Web plus sûr pour vous et vos lecteurs.','You also have some plugins or themes with updates available. Update them now:'=>'Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :','Translations'=>'Traductions','Your translations are all up to date.'=>'Vos traductions sont toutes à jour.','Error code: %s'=>'Code d’erreur : %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :','The WordPress Team'=>'L’équipe WordPress','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de wpfr.net devraient pouvoir vous aider.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s.','Please update your site at %1$s to WordPress %2$s.'=>'Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : ','No further action is needed on your part.'=>'Vous n’avez rien de plus à faire.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Salutations ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s.','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s est disponible. Veuillez faire la mise à jour !','Update Translations'=>'Mise à jour des traductions','Background updates'=>'Mises à jour en arrière-plan','Translation update failed.'=>'La mise à jour de la traduction a échoué.','Translation updated successfully.'=>'La traduction a bien été mise à jour.','Updating theme: %s'=>'Mise à jour du thème : %s','Updating plugin: %s'=>'Mise à jour de l’extension : %s','There is not enough free disk space to complete the update.'=>'Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour.','Comment must be manually approved'=>'Le commentaire doit être approuvé manuellement','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la bibliothèque de médias.','Create a brand new user and add them to this site.'=>'Créer un nouvel utilisateur et l’ajouter à ce site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant.','Looking for %1$s in %2$s'=>'Recherche %1$s dans %2$s','Updating to WordPress %s'=>'Mise à jour vers WordPress %s','WordPress %s'=>'WordPress %s','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s).','This password will not be stored on the server.'=>'Le mot de passe ne sera pas stocké sur le serveur.','Please provide a valid username.'=>'Veuillez saisir un identifiant valide.','Your passwords do not match. Please try again.'=>'Vos mots de passe ne correspondent pas. Veuillez réessayer.','You must provide an email address.'=>'Vous devez saisir une adresse de messagerie.','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran ».','Preparing to install the latest version…'=>'Préparation de l’installation de la dernière version…','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget “Menu de navigation” depuis l’écran Widgets.','The username you provided has invalid characters.'=>'L’identifiant que vous avez fourni contient des caractères non valides.','Copying the required files…'=>'Copie des fichiers nécessaires…','Due to an error during updating, WordPress has been restored to your previous version.'=>'Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com.','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté.','Category added.'=>'Catégorie ajoutée.','Category deleted.'=>'Catégorie effacée.','Category updated.'=>'Catégorie mise à jour.','Category not added.'=>'Catégorie non ajoutée.','Category not updated.'=>'Catégorie non mise à jour.','Categories deleted.'=>'Catégories supprimées.','%s post not updated, somebody is editing it.'=>'%s article n’a pas été mis à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s articles n’ont pas été mis à jour : quelqu’un est déjà en train de les modifier.','%s post permanently deleted.'=>'%s article supprimé définitivement.' . "\0" . '%s articles supprimés définitivement.','%s page updated.'=>'%s page mise à jour.' . "\0" . '%s pages mises à jour.','%s page not updated, somebody is editing it.'=>'%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','%s page permanently deleted.'=>'%s page définitivement supprimée.' . "\0" . '%s pages définitivement supprimées.','Tag added.'=>'Étiquette ajoutée.','Tag deleted.'=>'Étiquette supprimée.','Tag updated.'=>'Étiquette mise à jour.','Tag not added.'=>'Étiquette non ajoutée.','Tag not updated.'=>'Étiquette non mise à jour.','Tags deleted.'=>'Étiquette supprimée.','%s page restored from the Trash.'=>'%s page récupérée depuis la corbeille.' . "\0" . '%s pages récupérées depuis la corbeille.','%s page moved to the Trash.'=>'%s page déplacée dans la corbeille.' . "\0" . '%s pages déplacées dans la corbeille.','%s post restored from the Trash.'=>'%s article récupéré depuis la corbeille.' . "\0" . '%s articles récupérés depuis la corbeille.','%s post moved to the Trash.'=>'%s article déplacé dans la corbeille.' . "\0" . '%s articles déplacés dans la corbeille.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté.','Compare any two revisions'=>'Comparer n’importe quelles révisions','"%1$s" from %2$s by %3$s.'=>'%1$s tiré de %2$s par %3$s.','"%1$s" from %2$s.'=>'%1$s tiré de %2$s','"%1$s" by %2$s.'=>'%1$s par %2$s.','"%s".'=>'%s.','Revisions: %s'=>'Révisions : %s','revisionsBrowse'=>'Parcourir','Autosave by %s'=>'Sauvegarde automatique par %s','Current Revision by %s'=>'Révision actuelle par %s','Restore This Autosave'=>'Rétablir cette sauvegarde automatique','Revision by %s'=>'Révision par %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion.','Sorry, something went wrong. The requested comparison could not be loaded.'=>'Désolé, quelque chose s’est mal déroulé. La comparaison demandée n’a pas pu être chargée.','Repeat New Password'=>'Répétez le nouveau mot de passe','Repeat Password'=>'Répétez le mot de passe','Add menu items from the column on the left.'=>'Ajouter des éléments de menu depuis la colonne de gauche.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou téléverser une extension au format .zip en cliquant sur le bouton en haut de cette page.','http://wordpress.org/plugins/hello-dolly/'=>'http://wordpress.org/plugins/hello-dolly/','The package contains no files.'=>'Ce paquet ne contient aucun fichier.','The theme contains no files.'=>'Ce thème ne contient aucun fichier.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante.','Loading…'=>'Chargement…','This item has already been deleted.'=>'Cet élément a déjà été supprimé.','The item you are trying to restore from the Trash no longer exists.'=>'L’élément que vous essayez de sortir de la corbeille n’existe plus.','The item you are trying to move to the Trash no longer exists.'=>'L’élément que vous essayez de placer dans la corbeille n’existe plus.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer','This screen is used for managing your content revisions.'=>'Cet écran est utilisé pour gérer les révisions de vos contenus.','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été enlevé. Sur la droite, le texte en vert indique le contenu qui a été ajouté.','From this screen you can review, compare, and restore revisions:'=>'Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :','To restore a revision, click Restore This Revision.'=>'Pour rétablir cette révision, cliquez sur « Rétablir cette révision ».','Followed by post revision infoTo:'=>'Vers :','Followed by post revision infoFrom:'=>'Depuis :','Button label for a previous revisionPrevious'=>'Précédente','Button label for a next revisionNext'=>'Suivante','Menu locations updated.'=>'Les emplacements de menu ont été mis à jour.','%1$s by %2$s.'=>'%1$s par %2$s.','Released: %d.'=>'Date de sortie : %d.','Track %1$s of %2$s.'=>'Piste %1$s sur %2$s.','Genre: %s.'=>'Genre : %s','Audio Format:'=>'Format audio :','Audio Codec:'=>'Codex audio :','Your latest changes were saved as a revision.'=>'Vos dernières modifications ont été enregistrées dans une révision.','From this screen you can:'=>'Depuis cet écran, vous pouvez :','Create, edit, and delete menus'=>'Créer, modifier et supprimer des menus','Add, organize, and modify individual menu items'=>'Ajouter, organiser et modifier des éléments de menu individuels','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'Le bloc de gestion des menus, en haut de l’écran, est utilisé pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous.','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran.','Menu Management'=>'Gestion des menus','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu','Delete a menu item by expanding it and clicking the Remove link'=>'Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer','Editing Menus'=>'Modification des menus','This screen is used for globally assigning menus to locations defined by your theme.'=>'Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème.','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'Pour ajouter un nouveau menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème','Edit Menus'=>'Modifier les menus','Manage Locations'=>'Gérer les emplacements','Theme Location'=>'Emplacement du thème','Assigned Menu'=>'Menu assigné','Select a Menu'=>'Choisir un menu','menuEdit'=>'Modifier','menuUse new menu'=>'Utiliser le nouveau menu','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des urls personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’un des blocs situés dans la colonne de gauche ci-dessous.','This screen is used for managing your navigation menus.'=>'Cet écran est utilisé pour gérer vos menus de navigation.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »','Restore This Revision'=>'Rétablir cette révision','Denied: %s'=>'Refusé : %s','Capabilities'=>'Permissions','Move'=>'Déplacer','Up one'=>'Un cran vers le haut','Down one'=>'Descendre d’un cran','To the top'=>'Tout en haut','Menu Settings'=>'Réglages du menu','Menu structure'=>'Structure du menu','Draft created on %1$s at %2$s'=>'Brouillon créé le %1$s à %2$s','%s has taken over and is currently editing.'=>'%s a pris la main et modifie actuellement ce contenu.','You cannot move this item to the Trash. %s is currently editing.'=>'Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier.','Select a menu to edit:'=>'Sélectionnez le menu à modifier :','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Merci d’avoir fait cette mise à jour ! Rendez-vous sur la page de mise à jour du réseau afin de mettre à jour tous vos sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…','Client version'=>'Version du client','Selected menus have been successfully deleted.'=>'Les menus sélectionnés ont bien été supprimés.','Auto add pages'=>'Ajoutez automatiquement des pages','Give your menu a name, then click Create Menu.'=>'Donnez à votre menu un nom, puis cliquez sur « Créer le menu ».','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications.','Look Up'=>'Consulter','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction.','%s is currently editing'=>'%s modifie actuellement ce contenu','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la bibliothèque de médias, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie ».','Image rotation is not supported by your web host.'=>'La rotation d’image n’est pas disponible avec cet hébergeur.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager.','Inserting Media'=>'Insertion du média','Several boxes on this screen contain settings for how your content will be published, including:'=>'Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente » .','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'Le champ du titre et la zone d’édition de l’article sont inamovibles, mais vous pouvez déplacer toutes les autres blocs par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque boite. Utilisez l’onglet « Options de l’écran » pour masquer d’autres boites (Extrait, Envoyer des rétroliens, Champs personnalisés, Discussion, Identifiant, Auteur) ou pour choisir un affichage sur une ou deux colonnes pour cet écran.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'En changeant de thèmes, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des barres latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avec changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages.','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre Bibliothèque de Médias en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps.','Do not forget to click “Save Changes” when you are done!'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place.','media itemEdit'=>'Modifier','colorDefault: %s'=>'Par défaut : %s','column nameUploaded to'=>'Téléversé sur ','The uploaded file is not a valid image. Please try again.'=>'Le fichier téléversé n’est pas une image valide. Veuillez réessayer.','Choose a Background Image'=>'Choisir une image d’arrière-plan','Choose a Custom Header'=>'Choisir un en-tête personnalisé','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : #ff0000 pour du rouge) ou en cliquant sur le sélecteur de couleur.','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Dans la section « Texte d’en-tête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : #ff0000 pour du rouge) ou en cliquant sur le sélecteur de couleur.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour n’ afficher que ceux qui sont liés à cet article.','Used: %1$s%% of %2$s'=>'Taux d’utilisation : %1$s%% sur %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID n°%1$s : %2$s L’utilisateur actuel ne sera pas supprimé.','ID #%1$s: %2$s'=>'ID n°%1$s : %2$s','Please select an option.'=>'Veuillez choisir une option.','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici.','Your WordPress.org username:'=>'Votre identifiant WordPress.org :','Discourage search engines from indexing this site'=>'Demander aux moteurs de recherche de ne pas indexer ce site','It is up to search engines to honor this request.'=>'Certains moteurs de recherche peuvent décider de l’indexer malgré tout.','Allow search engines to index this site'=>'Autoriser les moteurs de recherche à indexer ce site','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'Vous pouvez voir les extensions favorites d’un utilisateur en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org.','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Téléverser une extension ». Il vous sera demandé d’indiquer le fichier .zip à téléverser, et ceci fait, vous pourrez activer l’extension.','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici.','Get Favorites'=>'Récupérer les extensions favorites','Welcome to WordPress!'=>'Bienvenue sur WordPress !','After you’ve done that, click “Run the installation”.'=>'Après cela, cliquez sur « Lancer l’installation »','Search engines discouraged'=>'Moteurs de recherche découragés','Search engine visibility'=>'Visibilité par les moteurs de recherche','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur/autrice, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions.','This child theme requires its parent theme, %2$s.'=>'Ce thème enfant nécessite son thème parent, %2$s.','Plugin InstallerFavorites'=>'Favorites','widgetAdd'=>'Ajouter','widgetEdit'=>'Modifier','Search by author'=>'Recherche par auteur','Type of search'=>'Type de recherche','Screen Options Tab'=>'Onglet des options de l’écran','Contextual Help Tab'=>'Onglet d’aide contextuelle','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualisation » situé sous la miniature de chaque thème.','Search by tag'=>'Recherche par étiquette','Search by keyword'=>'Recherche par mot-clé.','Select comment'=>'Sélectionnez un commentaire','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut.','Select %s'=>'Sélectionner %s','Skip to main content'=>'Aller au contenu principal','Tags can be selectively converted to categories using the tag to category converter.'=>'Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’Écran », et en ouvrant/fermant les blocs selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Texte, via les boutons « Plein Écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans le bloc « Attributs de Page » :','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'Vous pouvez choisir une image d’en-tête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre bibliothèque de médias. Après avoir sélectionné l’image, vous pourrez la recadrer.','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'Vous pouvez utiliser une image d’en-tête personnalisée pour votre site. Téléversez simplement l’image, recadrez-la, et le nouvel en-tête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été téléversée dans votre Bibliothèque de Médias, en cliquant sur le bouton « Choisissez une image ».','Skip Cropping, Publish Image as Is'=>'Aucun recadrage, utiliser l’image telle quelle','Or choose an image from your media library:'=>'Ou choisissez une image dans votre bibliothèque de médias :','Select Image'=>'Sélectionnez une image','Choose Image'=>'Choisissez une image','Collapse'=>'Réduire','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'Si vous ne souhaitez pas que votre site utilise une image d’en-tête, cliquez sur le bouton « Retirer l’image d’en-tête » en bas de la section « Image d’en-tête » de cette page. Si vous souhaitez réactiver l’image d’en-tête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications ».','pluginInstalled'=>'Installée','This theme is already installed and is up to date'=>'Ce thème est déjà installé et à jour','Previewing and Customizing'=>'Aperçu et personnalisation','Previewing and Installing'=>'Aperçu et installation','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclus la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement.','Preview %s'=>'Aperçu de %s','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriqués. Parfois, des auteurs commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre.','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'Le lien « convertisseur de catégories et étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Activer l’extension & lancer l’importateur » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre.','This screen is used to customize the header section of your theme.'=>'Cet écran est utilisé pour personnaliser la section d’en-tête de votre thème.','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'Vous pouvez choisir à partir des images d’en-tête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'Si votre thème a plus d’une image d’en-tête par défaut, ou si vous avez téléversé plus d’une image d’en-tête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images téléversées » pour activer cette fonctionnalité.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'Pour la plupart des thèmes, le texte d’en-tête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Certains thèmes disposent d’une série d’images d’en-tête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications ».','Configuration Error'=>'Erreur de configuration','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revenez à l’outil de téléversement du navigateur en cliquant sur le lien sous la zone de glisser-déposer.','User deleted.'=>'Utilisateur supprimé.','Could not copy files. You may have run out of disk space.'=>'Impossible de copier les fichiers. Il se pourrait que vous manquiez de place.','Search for themes by keyword.'=>'Chercher un thème par mot-clé.','Find a theme based on specific features.'=>'Trouver un thème selon des critères précis.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…','This theme is broken.'=>'Le thème est cassé.','Set as background'=>'Utiliser comme image de fond','Set as header'=>'Utiliser comme en-tête','Customize “%s”'=>'Personnaliser « %s »','Edit comment'=>'Modifier le commentaire','All'=>'Tout','Plugin'=>'Extension','Version:'=>'Version : ','Link URL'=>'Adresse du lien','Enter a link URL or click above for presets.'=>'Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis.','Select All'=>'Tout sélectionner','Edit Link'=>'Modifier le lien','Word count: %s'=>'Nombre de mots : %s','(required)'=>'(nécessaire)','No comments yet.'=>'Aucun commentaire pour l’instant.','Collapse Sidebar'=>'Réduire la colonne latérale','Preview:'=>'Aperçu :','https://wordpress.org/about/'=>'https://fr.wordpress.org/about/','Public, Sticky'=>'Public, épinglé','Privately Published'=>'Publié en privé','Save as Pending'=>'Mettre en attente','Error: This email is already registered. Please choose another one.'=>'Erreur : cet e-mail est déjà inscrit. Veuillez en choisir un autre.','E-mail'=>'E-mail','Error: Please enter a nickname.'=>'Erreur : veuillez saisir un pseudonyme.','This theme requires a parent theme. Checking if it is installed…'=>'Ce thème nécessite un thème parent. Nous vérifions s’il est installé…','Preparing to install %1$s %2$s…'=>'Préparation à l’installation de %1$s %2$s…','The parent theme, %1$s %2$s, is currently installed.'=>'Le thème parent, %1$s %2$s, est bien installé.','Successfully installed the parent theme, %1$s %2$s.'=>'Le thème parent, %1$s %2$s, a bien été installé.','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant.','Header Text'=>'Texte de l’en-tête','Show header text with your image.'=>'Afficher le texte d’en-tête avec l’image.','There is a new version of %1$s available. View version %4$s details or update now.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour maintenant.','By %s.'=>'par %s','Add Comment'=>'Ajouter un commentaire','Add New Comment'=>'Ajouter un nouveau commentaire','Hello Dolly'=>'Hello Dolly','http://ma.tt/'=>'http://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration.','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème.','HowdyWelcome'=>'Bienvenue','Delete My Site Permanently'=>'Effacer mon site définitivement','Remember, once deleted your site cannot be restored.'=>'Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Merci à vous d’avoir utilisé %s, votre site a été effacé. Nous espérons vous revoir.','Sorry, the link you clicked is stale. Please select another option.'=>'Désolé, mais le lien que vous avez cliqué est avarié. Veuillez sélectionner une autre option.','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'Je suis certain·e de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais récupérer ni utiliser %s pour un nouveau site.','Visit Dashboard'=>'Se rendre sur le Tableau de bord','Your Sites'=>'Vos sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur du réseau.','MB (Leave blank for network default)'=>'Mo (Laisser vide pour utiliser la valeur par défaut du réseau)','British English'=>'Anglais (UK)','View Site'=>'Afficher le site','American English'=>'Anglais (US)','Primary Site'=>'Site principal','[%s] New Admin Email Address'=>'[%s] Nouvelle adresse e-mail d’administration','Disabled'=>'Désactivé','Paused (%s)'=>'Mis en pause (%s)' . "\0" . 'Mises en pause (%s)','You must be a member of at least one site to use this page.'=>'Vous devez être membre d’au moins un site pour utiliser cette page.','Global Settings'=>'Réglages globaux','The primary site you chose does not exist.'=>'Le site principal que vous avez choisi n’existe pas.','WordPress › Setup Configuration File'=>'WordPress › Fichier de configuration','Database name'=>'Nom de la base de données','Database username'=>'Nom d’utilisateur MySQL','Database password'=>'Mot de passe de l’utilisateur','Database host'=>'Adresse de la base de données','Table prefix (if you want to run more than one WordPress in a single database)'=>'Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)','Let’s go!'=>'C’est parti !','Database Name'=>'Nom de la base de données','example usernameusername'=>'utilisateur','example passwordpassword'=>'mot de passe','Database Host'=>'Adresse de la base de données','Table Prefix'=>'Préfixe des tables','If you want to run multiple WordPress installations in a single database, change this.'=>'Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage.','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation maintenant.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer de lancer l’installation maintenant.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Désolé, il est nécessaire de disposer d’un fichier %s à partir duquel travailler. Veuillez téléverser ce fichier à nouveau au sein de votre installation WordPress.','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page.','No comments awaiting moderation.'=>'Aucun commentaire en attente de modération.','Plugin installer section titleChangelog'=>'Liste des modifications','Plugin installer section titleOther Notes'=>'Autres notes','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin installer section titleScreenshots'=>'Captures d’écrans','Plugin Homepage »'=>'Site Web de l’extension »','Failed to repair the %1$s table. Error: %2$s'=>'Impossible de réparer la table %1$s. Erreur : %2$s','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une plate-forme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur donné, une catégorie précise, ou des états de publication.','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'Dans les versions précédentes de WordPress, tous les importateurs étaient directement inclus . Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'Vous pouvez filtrer la liste des utilisateurs par rôle, à l’aide des liens textuels au-dessus de la liste des utilisateurs, afin d’afficher tous les utilisateurs, ou seulement les administrateurs, les éditeurs, les auteurs ou les contributeurs. Par défaut, tous les utilisateurs sont affichés. Les rôles sans utilisateurs ne sont pas listés.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’images.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards.','The active theme is broken. Reverting to the default theme.'=>'Le thème courant est endommagé. Retour au thème par défaut.','Image could not be processed. Please go back and try again.'=>'L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…','There is an autosave of this post that is more recent than the version below. View the autosave'=>'Une sauvegarde automatique existe pour cet article ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des utilisateurs non autorisés.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress peut automatiquement chercher les problèmes courants des base de données et les réparer. La réparation peut prendre un certain temps, merci donc de votre patience.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation.','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Pour inviter un utilisateur de ce réseau sur ce site, saisissez son adresse de messagerie ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Saisissez l’adresse de messagerie d’un utilisateur existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation.','Show Toolbar when viewing site'=>'Afficher la barre d’outils lorsque vous visitez le site','For more information, see the release notes.'=>'Pour plus d’informations, consultez les notes de publication.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'La version %1$s a corrigé un problème de sécurité et %2$s bug.' . "\0" . 'La version %1$s a corrigé un problème de sécurité et %2$s bugs.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bug.' . "\0" . 'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bugs.','Version %1$s addressed %2$s bug.'=>'La version %1$s a corrigé %2$s bug.' . "\0" . 'La version %1$s a corrigé %2$s bugs.','What’s New'=>'Nouveautés','Maintenance and Security Release'=>'Mise à jour de maintenance et de sécurité','Security Release'=>'Mise à jour de sécurité','Maintenance Release'=>'Mise à jour de maintenance','Version %s addressed some security issues.'=>'La version %s a corrigé quelques problèmes de sécurité.','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens.','Welcome to WordPress %1$s. Learn more.'=>'Bienvenu dans WordPress %1$s. En savoir plus.','Adding Categories'=>'Ajout de catégories','Troubleshooting'=>'Diagnostic','Adding Tags'=>'Ajout d’étiquettes','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'Vous pouvez ici téléverser des fichiers sans devoir créer un nouvel article avant. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :','Remember to click the Add New User button at the bottom of this screen when you are finished.'=>'N’oubliez pas de cliquer sur le bouton « Ajouter un utilisateur », en bas de cet écran, quand vous aurez terminé.','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site.','Attaching Files'=>'Fichiers des extensions','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Voici un rapide survol des différents rôles assignables aux utilisateurs, et des permissions qui leurs sont associées :','User Roles'=>'Rôles utilisateurs','To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom.'=>'Pour ajouter un nouvel utilisateur à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un nouvel utilisateur » en bas de l’écran.','Moderating Comments'=>'Modération des commentaires','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Les abonnés peuvent lire les commentaires/commenter/recevoir les newsletters, etc. Mais ils ne peuvent pas créer du contenu sur le site.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'Si l’importateur dont vous avec besoin n’est pas présent, lancez une recherche dans le dépôt d’extensions pour voir s’il s’y trouve.','Available Actions'=>'Actions disponibles','How to Update'=>'Comment faire la mise à jour','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins.','Adding Plugins'=>'Ajout d’extensions','Screen Content'=>'Contenu de l’écran','You can customize the display of this screen’s contents in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Adding Themes'=>'Ajout de thèmes','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des importateurs.','Authors can publish and manage their own posts, and are able to upload files.'=>'Les auteurs peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers.','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action en cochant leurs cases, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer ».','Common Settings'=>'Réglages les plus courants','Custom Structures'=>'Structure personnalisée','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Les permaliens sont des adresses Web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'« Envoi de fichiers » vous permet de choisir le dossier et le chemin de stockage de vos fichiers téléversés.','Installing themes on Multisite can only be done from the Network Admin section.'=>'En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau.','Post Via Email'=>'Envoi d’article par e-mail','If desired, WordPress will automatically alert various services of your new posts.'=>'Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications.','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. D’ailleurs, il y en a tellement qu’elles ne tiennent pas toutes ici :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage des commentaires.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier la combinaison de couleurs des écrans de l’administration, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur la partie publique de votre site, mais elle ne peut pas être enlevée des écrans d’administration.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'Cette colonne latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement.','Inactive Sidebar (not used)'=>'Colonne latérale inactive (inutilisée)','Drag and drop your files into the area below. Multiple files are allowed.'=>'Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois.','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Un clic sur Sélectionner les fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles.','Removing and Reusing'=>'Retirer et réutiliser','Missing Widgets'=>'Widgets manquants','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles.','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress.','Deleting Links'=>'Suppression de liens','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'De nombreux utilisateurs utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages.','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Attaché à », et vous pourrez cliquer sur le lien « Attacher » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'Tous les fichiers que vous avez téléversés sont listés dans la Bibliothèque de Médias, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées ».','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'Dans la colonne Auteur/autrice, en plus de trouver le nom de l’auteur ou de l’autrice, son adresse e-mail et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP.','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles.','Learn more about WordPress %2$s.'=>'À propos de WordPress %2$s.','Managing Pages'=>'Gestion de pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Aperçu vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de l’article. L’action disponible dépend de l’état de votre article.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des utilisateurs, fera s’afficher des liens vous permettant de gérer l’utilisateur. Vous pouvez lancer les actions suivantes :','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Modifier vous envoie sur l’écran de modification de cet article. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de l’article.','You can view all posts made by a user by clicking on the number under the Posts column.'=>'Vous pouvez afficher tous les articles faits par un même utilisateur en cliquant sur le nombre sous la colonne « Articles ».','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre d’articles à afficher par écran à l’aide de l’onglet « Options de l’écran ».','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'« Modifier » vous envoie sur l’écran de modification de cet utilisateur. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom de l’utilisateur.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un nom d’utilisateur ou une adresse de messagerie, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur pour modifier son profil utilisateur, depuis l’écran « Tous les utilisateurs ».','Welcome to WordPress %s'=>'Bienvenue sur WordPress %s.','Go to Dashboard → Home'=>'Aller sur l’accueil','Go to Dashboard → Updates'=>'Aller sur Tableau de bord → Mises à jour','Profile updated.'=>'Profil mis à jour.','Hi, + +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. + +Please click the following link to confirm the invite: +%4$s'=>'Bonjour, + +Vous avez été invité·e à rejoindre « %1$s » sur +%2$s en tant que %3$s. +Veuillez cliquer sur le lien suivant pour confirmer l’invitation : +%4$s','Core Developer'=>'Développeur cœur','The package could not be installed.'=>'L’archive n’a pas pu être installée.','The plugin contains no files.'=>'Cette extension ne contient aucun fichier.','No valid plugins were found.'=>'Aucune extension valide trouvée.','Attachment Post URL'=>'Adresse de l’article du fichier joint','admin menuAll Links'=>'Tous les liens','%s plugins'=>'%s extensions','%s plugin'=>'%s extension','Successfully optimized the %s table.'=>'La table %s a bien été optimisée.','Failed to optimize the %1$s table. Error: %2$s'=>'Impossible d’optimiser la table %1$s. Erreur : %2$s','Successfully repaired the %s table.'=>'La table %s a bien été réparée.','The %s table is already optimized.'=>'La table %s a déjà été optimisée.','The %s table is okay.'=>'La table %s est correcte.','View version %s details.'=>'Afficher les détails de la version %s.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Mettez %2$s à jour, ou apprenez à naviguer sereinement','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, vidéo ou un autre format','Insert media from another website'=>'Insérer un média depuis un autre site','Error: Could not connect to the server. Please verify the settings are correct.'=>'Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichant au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord pour afin de se plier à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière.','Overview'=>'Vue d’ensemble','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Glisser/déposer - Pour réarranger les blocs, glissez/déposez-les en cliquant sur la barre de titre du bloc sélectionné, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer le bloc.','Updates %s'=>'Mises à jour %s','Update Available (%s)'=>'Prête à mettre à jour (%s)' . "\0" . 'Prêtes à mettre à jour (%s)','Caution:'=>'Attention :','Add New User'=>'Ajouter un utilisateur','Installed Plugins'=>'Extensions installées','Deactivate'=>'Désactiver','Version %s'=>'Version %s','User added.'=>'Utilisateur ajouté.','Super Admin'=>'Super-admin','Settings saved.'=>'Options enregistrées.','Changed roles.'=>'Rôles modifiés.','User removed from this site.'=>'Utilisateur supprimé de ce site.','Search Users'=>'Chercher un utilisateur','Add Existing User'=>'Ajouter un utilisateur existant','Role'=>'Rôle','For more information:'=>'Plus d’informations :','All Users'=>'Tous les utilisateurs','Plugins %s'=>'Extensions %s','Delete Site'=>'Supprimer le site','Confirm Deletion'=>'Confirmer cette action','About Pages'=>'À propos des pages','Customizing This Display'=>'Personnaliser cet écran','Title and Post Editor'=>'Titre et éditeur d’article','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note : Aucune de ses options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande.','Post name'=>'Nom de l’article','sample permalink structuresample-post'=>'exemple-article','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'Cet importateur n’est pas installé. Veuillez installer les importateurs depuis le site principal.','Site Language'=>'Langue du site','Attempt to notify any blogs linked to from the post'=>'Tenter de notifier les sites liés depuis la publication','Hi, +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. +If you do not want to join this site please ignore +this email. This invitation will expire in a few days. + +Please click the following link to activate your user account: +%%s'=>'Bonjour, +Vous avez été invité·e à rejoindre « %1$s » sur +%2$s en tant que %3$s. +Si vous ne souhaitez pas rejoindre ce site, veuillez ignorer +cet e-mail. L’invitation expirera dans quelques jours. + +Veuillez cliquer sur le lien suivant pour activer votre compte utilisateur : +%%s','Full Width Template'=>'Modèle pleine largeur','Post Formats'=>'Format d’article','Featured Images'=>'Images mises en avant','Featured Image Header'=>'Image d’en-tête mise en avant','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur.','There are some invalid menu items. Please check or delete them.'=>'Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer.','term nameName'=>'Nom','meta nameName'=>'Nom','theme nameName'=>'Nom','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress.','If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'=>'Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le dépôt d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du dépôt sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML.','External Libraries'=>'Bibliothèques tierces','Available Tools'=>'Outils disponibles','Network Setup'=>'Création du réseau','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'Traducteurs','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Tous les thèmes et extensions disponibles sur le répertoire WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y rechercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien que la licence GPL est respectée. Si cela n’est pas le cas, il vaut mieux ne pas l’utiliser.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first.'=>'WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation de la marque déposée « WordPress ».','Lead Developer'=>'Développeur principal','Credits'=>'Crédits','removing-widgetDeactivate'=>'Désactiver','Cofounder, Project Lead'=>'Cofondateur, chef de projet','All Comments'=>'Tous les commentaires','Project Leaders'=>'Chefs de projet','Core Contributors to WordPress %s'=>'Contributrices & contributeurs au cœur de WordPress %s','You are using an insecure browser!'=>'Vous utilisez un navigateur peu sûr !','Your browser is out of date!'=>'Votre navigateur est obsolète !','Freedoms'=>'Libertés','You can use one of these cool headers or show a random one on each page.'=>'Vous pouvez choisir parmi ces en-têtes, ou en afficher un aléatoirement à chaque chargement de page.','You can choose one of your previously uploaded headers, or show a random one.'=>'Vous pouvez choisir un en-tête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’un de ces en-têtes, ou en afficher un aléatoirement.','Collapse menu'=>'Réduire le menu','Random: Show a different image on each page.'=>'Aléatoire  : affiche une image différente sur chaque page.','Uploaded Images'=>'Images téléversées','You have specified this user for deletion:'=>'Vous avez choisi de supprimer cet utilisateur :','%s Page Template'=>'Modèle de page %s','This plugin may be active on other sites in the network.'=>'Cette extension peut uniquement être activée sur l’ensemble des sites du réseau.','You cannot delete a plugin while it is active on the main site.'=>'Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal.','Default Post Format'=>'Format par défaut des articles','Any edits to files from this screen will be reflected on all sites in the network.'=>'Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau.','The boxes on your Dashboard screen are:'=>'Les blocs de l’écran du tableau de bord sont :','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'Cet écran liste tous les utilisateurs actuels de votre site. Chaque utilisateur a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur du site : Administrateur, Éditeur, Auteur, Contributeur ou Abonné. Les utilisateurs avec un rôle autre qu’Administrateur verront moins d’options quand ils seront connectés, en fonction de leur rôle.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre.','sample-page'=>'page-d-exemple','Sample Page'=>'Page d’exemple','Retro (Generated)'=>'Rétro (généré)','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Les privilèges de super-admin ne peuvent pas être enlevés, car cet utilisateur est celui avec l’adresse de messagerie administrative du réseau.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient.','Visual Editor RTL Stylesheet'=>'Feuille de style de l’éditeur visuel (lecture de droite à gauche)','This child theme inherits templates from a parent theme, %s.'=>'Ce thème enfant hérite de certains modèles de son thème parent, %s.','This is a file in your current parent theme.'=>'Ceci est un fichier de votre thème parent actuel.','Network Enable'=>'Activer sur le réseau','Your WordPress database has been successfully updated!'=>'La base de données de WordPress a bien été mise à jour !','Update WordPress Database'=>'Mettre à jour la base de données de WordPress','WordPress › Update'=>'WordPress › Mise à jour','Update Complete'=>'Mise à jour terminée','The database update process may take a little while, so please be patient.'=>'Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience.','No Update Required'=>'Aucune mise à jour nécessaire','Database Update Required'=>'Mise à jour de la base de données nécessaire','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que cette version soit officiellement traduite dans votre langue.','Plugin updated successfully.'=>'L’extension a bien été mise à jour.','Update Theme'=>'Mettre à jour le thème','Plugin update failed.'=>'La mise à jour de l’extension a échoué.','Theme update failed.'=>'La mise à jour du thème a échoué.','Theme updated successfully.'=>'Le thème a bien été mis à jour.','Update Plugin'=>'Mettre à jour l’extension','Update package not available.'=>'Aucune archive de mise à jour disponible.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension.','Date range:'=>'Date de création :','Choose what to export'=>'Choisissez ce que vous souhaitez exporter','All content'=>'Tout le contenu','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de contenus personnalisés.','Authors:'=>'Auteurs :','commentsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s — WordPress'=>'%s – WordPress','column nameIn Response To'=>'En réponse à','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les blocs sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton Aide de ces blocs pour obtenir plus d’informations.','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera enlevé du site.','This screen allows you to edit fields for metadata in a file within the media library.'=>'Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la bibliothèque des médias.','Remember to click Update to save metadata entered or changed.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées.','Email or Username'=>'E-mail ou identifiant','Search Installed Themes'=>'Chercher parmi les thèmes installés','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications.','postsSticky (%s)'=>'Mis en avant (%s)' . "\0" . 'Mis en avant (%s)','Please select one or more plugins to update.'=>'Veuillez sélectionner une ou plusieurs extensions à mettre à jour.','Please select one or more themes to update.'=>'Veuillez sélectionner un ou plusieurs thèmes à mettre à jour.','Last checked on %1$s at %2$s.'=>'Dernière vérification le %1$s à %2$s.','Check again.'=>'Vérifier à nouveau.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience.','Apply Filters'=>'Appliquer les filtres','Editor Style'=>'Éditeur de style','Sorry, you are not allowed to edit users.'=>'Désolé, vous n’avez pas l’autorisation de modifier les comptes.','To perform the requested action, WordPress needs to access your web server.'=>'Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web.','No themes match your request.'=>'Aucun thème ne correspond à votre requête.','Current Page'=>'Page actuelle','Search Sites'=>'Chercher un site','Create a New User'=>'Créer un nouvel utilisateur','You have %1$s and %2$s.'=>'Vous avez %1$s et %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s utilisateur' . "\0" . '%s utilisateurs','https://wordpress.org/news/'=>'https://wpfr.net/','https://wordpress.org/news/feed/'=>'https://fr.wordpress.org/news/feed/','(Signup has been disabled. Only members of this site can comment.)'=>' (L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)','There is a new version of %1$s available. View version %4$s details.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s.','Go to WordPress Updates page'=>'Aller à la page des mises à jour de WordPress','Go to Themes page'=>'Aller sur la page des thèmes','Go to Plugins page'=>'Aller sur la page des extensions','Click Save Menu to make pending menu items public.'=>'Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente.','Storage Space'=>'Espace disque','Create a New Site'=>'Créer un nouveau site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles.','Crop and Publish'=>'Recadrer et publier','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur ou le propriétaire de la page liée.','FTP Password'=>'Mot de passe FTP','FTP Username'=>'Identifiant FTP','FTP/SSH Password'=>'Mot de passe FTP/SSH','FTP/SSH Username'=>'Identifiant FTP/SSH','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'De nombreux thèmes affichent par défaut quelques widgets dans la colonne latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de colonne latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles ».','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/.','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les marqueurs de structure (encadrés par %s), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %1$s ou %2$s.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'Si vous voulez enlever le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les rajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes.','To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section.'=>'Pour ajouter un nouvel utilisateur à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Utilisateurs ».','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez indiquer un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc.','Please enter your FTP or SSH credentials to proceed.'=>'Veuillez saisir votre identifiant FTP ou SSH pour continuer.','Please enter your FTP credentials to proceed.'=>'Veuillez saisir votre identifiant FTP pour continuer.','If you do not remember your credentials, you should contact your web host.'=>'Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite.','Administrators have access to all the administration features.'=>'Les administrateurs peuvent accéder à toutes les fonctionnalités de l’administration ;','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'Vous pouvez ici ajouter les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur.','You can also create posts with the Press This bookmarklet.'=>'Vous pouvez également créer des articles avec le bookmarklet Press This.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Identifiant — L’identifiant est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union ;','Do not forget to click on the Save Changes button when you are finished.'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles.','Remember to click the Update Profile button when you are finished.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Les éditeurs peuvent publier et gérer leurs propres articles, ainsi que ceux des autres membres ;','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'Vous pouvez également modérer le commentaire depuis cet écran, à l’aide du bloc État, d’où vous pouvez également changer l’horodatage du commentaire.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'Au besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe.','UTC means Coordinated Universal Time.'=>'UTC signifie « Temps universel coordonné ».','The fields on this screen determine some of the basics of your site setup.'=>'Les champs de cet écran déterminent certains des réglages de base de votre site.','This screen contains the settings that affect the display of your content.'=>'Cet écran présente les réglages qui influent sur l’affichage de votre contenu.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’entrées à afficher, s’il faut afficher l’article en entier ou juste un résumé. En savoir plus sur les flux.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'Les sections pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnées par glisser/déposer. Vous pouvez également masquer les sections que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les sections en cliquant sur leur barre de titre.','Your plugins are all up to date.'=>'Vos extensions sont toutes à jour.','You have the latest version of WordPress.'=>'Vous avez la dernière version de WordPress.','Your themes are all up to date.'=>'Vos thèmes sont tous à jour.','An updated version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'Durant le processus de mise à jour, votre site sera mis en mode de maintenance. Dès que le processus sera achevé, ce mode sera désactivé.','Function Name…'=>'Nom de fonction…','Activate Plugin & Run Importer'=>'Activer l’extension & lancer l’importateur','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacun des blocs. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse).','Categories can be selectively converted to tags using the category to tag converter.'=>'Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plates-formes de blogs ou gestionnaires de contenus. Choisissez la plate-forme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plate-forme, cliquez sur le lien « Recherche » dans le Dépôt d’Extensions et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plate-forme de blog capable de lire ce format.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer.','After typing in your edits, click Update File.'=>'Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier ».','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la colonne latérale). Pour remplir les zones à widgets de votre colonne latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier les fichiers CSS et PHP qui composent votre thème.','(no parent)'=>'(pas de parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages.','All updates have been completed.'=>'Toutes les mises à jour sont terminées.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture.','When adding a new category on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :','When adding a new tag on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent.','Name — The name is how it appears on your site.'=>'Nom — Le nom est utilisé un peu partout sur votre site ;','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau.','Default Images'=>'Images par défaut','Crop Header Image'=>'Recadrer l’image d’en-tête','This will remove the header image. You will not be able to restore any customizations.'=>'Ceci retirera l’image d’en-tête. Il ne vous sera pas possible de rétablir vos personnalisations.','Remove Header Image'=>'Retirer l’image d’en-tête','Reset Image'=>'Remettre l’image d’origine','This will restore the original header image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’en-tête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations.','Restore Original Header Image'=>'Rétablir l’image d’en-tête d’origine','Text Color'=>'Couleur du texte','Image Upload Error'=>'Erreur lors de l’envoi de l’image','You need JavaScript to choose a part of the image.'=>'Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image.','Restore this comment from the Trash'=>'Récupérer ce commentaire depuis la corbeille','Delete this comment permanently'=>'Supprimer définitivement ce commentaire','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s — Vous pouvez associer une image à votre article, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un en-tête personnalisé, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir.','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Discussion — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer.','You can customize the display of this screen in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste d’articles, fera s’afficher des liens vous permettant de gérer l’article. Vous pouvez lancer les actions suivantes :','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur d’un article, sa catégorie ou une étiquette.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre d’articles à afficher par écran à l’aide de l’onglet « Options de l’écran » ;','Search Installed Plugins'=>'Recherchez parmi vos extensions','Your theme supports one menu. Select which menu you would like to use.'=>'Votre thème peut utiliser %s menu. Sélectionnez le menu que vous voudriez utiliser.','Your theme does not support navigation menus or widgets.'=>'Le thème actuel n’accepte pas les menus de navigation ni les widgets.','Categories and Tags Converter'=>'Convertisseur de catégories et étiquettes','Most Recent'=>'Les plus récentes','Start date:'=>'Date de début :','Plugin InstallerTag'=>'Étiquette','Theme InstallerTag'=>'Étiquette','verbClear'=>'Effacer','commentMark as spam'=>'Marquer comme indésirable','Remove Background Image'=>'Retirer l’image d’arrière-plan','Comments on “%s”'=>'Commentaires sur « %s »','Show advanced menu properties'=>'Afficher les propriétés avancées du menu','You have version %1$s installed. Update to %2$s.'=>'Vous utilisez la version %1$s. Mettez à jour vers la version %2$s.','Enabled'=>'Activé','commentNot Spam'=>'N’est pas un indésirable','This will restore the original background image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations.','WordPress Blog'=>'Blog WordPress','— No role for this site —'=>'— Pas de rôle sur ce site —','Remove Users from Site'=>'Supprimer des utilisateurs de ce site','Custom site deleted message.'=>'Message personnalisé de site supprimé.','Custom site suspended message.'=>'Message personnalisé de site suspendu.','Custom site inactive message.'=>'Message personnalisé de site inactif.','My Site'=>'Mon site','New WordPress Site'=>'Nouveau site WordPress','Sorry, you are not allowed to create pages on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site.','Sorry, you are not allowed to create posts or drafts on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :','No items.'=>'Aucune entrée.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS.','The installer attempted to contact a random hostname (%s) on your domain.'=>'L’installateur a tenté de contacter un nom d’hôte aléatoire (%s) sur votre domaine.','The menu item has been successfully deleted.'=>'L’élément du menu a bien été supprimé.','Please provide a custom field name.'=>'Veuillez saisir un nom pour le champ personnalisé.','Display Options'=>'Options d’affichage','Remove Image'=>'Retirer l’image','You have specified these users for removal:'=>'Vous avez choisi de supprimer ces utilisateurs :','User deletion is not allowed from this screen.'=>'La suppression d’un utilisateur n’est pas autorisée depuis cet écran.','There are no valid users selected for removal.'=>'Aucun utilisateur valide n’est sélectionné pour la suppression.','Other users have been removed.'=>'Les autres utilisateurs ont été supprimés.','Confirm Removal'=>'Confirmer cette action','You cannot remove the current user.'=>'Vous ne pouvez pas supprimer le compte actuellement utilisé.','%s updated successfully.'=>'%s a bien été mis à jour.','Yes, take me to my profile page'=>'Oui, je veux aller sur mon profil maintenant','Your chosen password.'=>'Le mot de passe que vous avez choisi.','No thanks, do not remind me again'=>'Non, ne pas me relancer à ce sujet','Sorry, you are not allowed to move this item to the Trash.'=>'Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille.','Sorry, you are not allowed to restore this item from the Trash.'=>'Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille.','%s comment moved to the Trash.'=>'%s commentaire déplacé dans la corbeille.' . "\0" . '%s commentaires déplacés dans la corbeille.','%s comment restored from the Trash.'=>'%s commentaire récupéré depuis la corbeille' . "\0" . '%s commentaires récupérés depuis la corbeille','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes ».','User has been added to your site.'=>'L’utilisateur a été ajouté à votre site.','That user is already a member of this site.'=>'Cet utilisateur est déjà membre de ce site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'L’invitation a été envoyée à l’utilisateur sur son adresse de messagerie. Il devra cliquer sur un lien de confirmation pour être ajouté à votre site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les extensions ».','This will remove the background image. You will not be able to restore any customizations.'=>'Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Vous n’avez accès qu’au thème déjà actif. Contactez l’administrateur ou l’administratrice de %s pour obtenir des informations sur l’accès à d’autres thèmes.','Author Template'=>'Modèle pour un auteur','Visual Editor Stylesheet'=>'Feuille de style de l’éditeur visuel','Tag Template'=>'Modèle pour étiquette','Page saved.'=>'Page enregistrée.','More information about %s'=>'Plus d’informations à propos de %s','Grant this user super admin privileges for the Network.'=>'Donner les privilèges de super-admin à cet utilisateur pour le réseau.','Important:'=>'Important :','This user has super admin privileges.'=>'Cet utilisateur possède les privilèges de super-admin.','Update to version %s'=>'Mettre à jour vers la version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Erreur : le préfixe de table ne doit contenir que des chiffres, des lettres ou le caractère tiret bas.','items'=>'éléments','Usernames cannot be changed.'=>'Les identifiants ne peuvent être modifiés.','The menu has been successfully deleted.'=>'Le menu a bien été supprimé.','Site visibility'=>'Visibilité du site','Link Target'=>'Cible du lien','CSS Classes (optional)'=>'Classes CSS (facultatives)','Save Menu'=>'Enregistrer le menu','Updating Theme %1$s (%2$d/%3$d)'=>'Mise à jour du thème %1$s (%2$d/%3$d)','You must provide a domain name.'=>'vous devez fournir un nom de domaine.','You must provide a name for your network of sites.'=>'vous devez fournir un nom pour votre réseau de sites.','The network already exists.'=>'Le réseau existe déjà.','This resulted in an error message: %s'=>'Cela a abouti à ce message d’erreur : %s','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message.','You must provide a valid email address.'=>'Vous devez saisir une adresse de messagerie valide.','Notice:'=>'Avertissement :','Get Shortlink'=>'Obtenir le lien court','Updating Plugin %1$s (%2$d/%3$d)'=>'Mise à jour de l’extension %1$s (%2$d/%3$d)','The update of %s failed.'=>'La mise à jour de %s a échoué.','User already exists. Password inherited.'=>'L’utilisateur existe déjà et a hérité du mot de passe.','The password you chose during installation.'=>'Le mot de passe que vous avez choisi pendant l’installation.','Update WordPress'=>'Mettre à jour WordPress','Update Plugins'=>'Mettre à jour les extensions','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','WordPress updated successfully.'=>'WordPress a bien été mis à jour.','WordPress Updates'=>'Mises à jour de WordPress','Edit menu item'=>'Modifier un élément du menu','You are about to remove the following plugin:'=>'Vous êtes sur le point de supprimer l’extension suivante :','Delete Plugin'=>'Supprimer l’extension','Inactive:'=>'Inactif :','Go to Dashboard'=>'Aller sur le tableau de bord','Please enter a valid menu name.'=>'Veuillez saisir un nom de menu valide.','View All'=>'Afficher tout','This timezone is currently in daylight saving time.'=>'Ce fuseau horaire est actuellement à l’heure d’été.','This timezone does not observe daylight saving time.'=>'Ce fuseau horaire n’a pas d’heure d’été','Yes, delete these files and data'=>'Oui, supprimer ces fichiers et données','Must-Use (%s)'=>'Indispensable (Must-Use) (%s)' . "\0" . 'Indispensable (Must-Use) (%s)','Are you sure you want to delete these files and data?'=>'Confirmez-vous la suppression de ces fichiers et données ?','Drop-in (%s)'=>'Avancée (%s)' . "\0" . 'Avancées (%s)','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée.','Executed before Multisite is loaded.'=>'Exécuté avant que la fonctionnalité multisites ne soit chargée.','External object cache.'=>'Cache d’objet externe.','Custom maintenance message.'=>'Message personnalisé pour la maintenance.','Custom database error message.'=>'Message personnalisé pour l’erreur de base de données.','Custom database class.'=>'Classe personnalisée de connexion à la base de données.','Advanced caching plugin.'=>'Extension de cache avancée.','File is empty. Please upload something more substantial.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','This comment is currently marked as spam.'=>'Ce commentaire est actuellement marqué comme indésirable.','Moderate Comment'=>'Modérer le commentaire','This comment is currently approved.'=>'Ce commentaire est actuellement approuvé.','This comment is already approved.'=>'Ce commentaire est déjà approuvé.','This comment is already in the Trash.'=>'Ce commentaire est déjà marqué comme indésirable.','This comment is already marked as spam.'=>'Ce commentaire est déjà marqué comme indésirable.','View Trash'=>'Voir la corbeille','This comment is currently in the Trash.'=>'Ce commentaire est actuellement dans la corbeille.','Screen Options'=>'Options de l’écran','Feature Filter'=>'Filtre de fonctionnalités','One Column'=>'Une colonne','Two Columns'=>'Deux colonnes','Three Columns'=>'Trois colonnes','Four Columns'=>'Quatre colonnes','Left Sidebar'=>'Colonne latérale gauche','Right Sidebar'=>'Colonne latérale droite','Features'=>'Fonctionnalités','Custom Colors'=>'Couleurs personnalisées','Theme Options'=>'Options du thème','Sticky Post'=>'Article mis en avant','Subject'=>'Thème','Holiday'=>'Vacances','Find Themes'=>'Trouver des thèmes','Version: %s'=>'Version : %s','Unable to locate WordPress theme directory.'=>'Impossible de localiser le dossier des thèmes de WordPress.','Could not fully remove the theme %s.'=>'Impossible de supprimer complètement le thème %s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s.','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s.','Verifying the unpacked files…'=>'Vérification des fichiers décompressés…','The update could not be unpacked'=>'La mise à jour ne peut pas être décompressée','Upgrading database…'=>'Mise à jour de la base de données…','You are using a development version (%1$s). Cool! Please stay updated.'=>'Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour.','Update to %s'=>'Mettre à jour vers la version %s','Latest'=>'Dernière version','An automated WordPress update has failed to complete - please attempt the update again now.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur du site.','Note that password carefully! It is a random password that was generated just for you.'=>'Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique.','Default post slughello-world'=>'bonjour-tout-le-monde','WordPress › Installation'=>'WordPress » Installation','User(s) already exists.'=>'L’utilisateur existe déjà.','Double-check your email address before continuing.'=>'Vérifiez bien cette adresse de messagerie avant de continuer.','Install WordPress'=>'Installer WordPress','Information needed'=>'Informations nécessaires','Success!'=>'Quel succès !','Add New Link'=>'Ajouter un lien','%s link deleted.'=>'%s lien supprimé' . "\0" . '%s liens supprimés','Search Links'=>'Chercher un lien','No links found.'=>'Aucun lien trouvé.','Link not found.'=>'Lien non trouvé.','WordPress › Database Repair'=>'WordPress » Réparation de la base de données','Repair Database'=>'Réparer la base de données','Repair and Optimize Database'=>'Réparer et optimiser la base de données','Upload New Media'=>'Envoi d’un nouveau média','Library'=>'Bibliothèque','Comments %s'=>'Commentaires %s','Profile'=>'Profil','settings screenGeneral'=>'Général','Writing'=>'Écriture','Reading'=>'Lecture','Privacy'=>'Vie privée','Permalinks'=>'Permaliens','Multisite support is not enabled.'=>'Le support multisites n’est pas activé.','Visit'=>'Visiter','Update Themes'=>'Mettre à jour les thèmes','No users found.'=>'Aucun utilisateur trouvé.','Discussion Settings'=>'Options de discussion','Other comment settings'=>'Autres réglages des commentaires','Users must be registered and logged in to comment'=>'Un utilisateur doit être enregistré et connecté pour publier des commentaires','Enable threaded (nested) comments %s levels deep'=>'Activer les commentaires imbriqués jusqu’à %s niveaux','last'=>'dernière','first'=>'première','Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default'=>'Diviser les commentaires en pages, avec %1$s commentaires de premier niveau par page et la %2$s page affichée par défaut','older'=>'ancien','newer'=>'récent','Comments should be displayed with the %s comments at the top of each page'=>'Les commentaires doivent être affichés avec le plus %s en premier','Anyone posts a comment'=>'Un nouveau commentaire est publié','A comment is held for moderation'=>'Un commentaire est en attente de modération','Before a comment appears'=>'Avant la publication d’un commentaire','Comment author must have a previously approved comment'=>'L’auteur d’un commentaire doit avoir déjà au moins un commentaire approuvé','Comment Moderation'=>'Modération de commentaires','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)','Avatars'=>'Avatars','Avatar Display'=>'Affichage des avatars','Show Avatars'=>'Afficher les avatars','Maximum Rating'=>'Classement maximal','G — Suitable for all audiences'=>'G — Visibles par tous','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus','R — Intended for adult audiences above 17'=>'R — Réservés aux personnes de plus de 17 ans','X — Even more mature than above'=>'X — Réservés aux adultes','Blank'=>'Vide','Gravatar Logo'=>'Logo Gravatar','Identicon (Generated)'=>'Identicon (généré)','Wavatar (Generated)'=>'Wavatar (généré)','MonsterID (Generated)'=>'MonsterID (généré)','General Settings'=>'Réglages généraux','Membership'=>'Inscription','Anyone can register'=>'Tout le monde peut s’enregistrer','New User Default Role'=>'Rôle par défaut de tout nouvel utilisateur','Timezone'=>'Fuseau horaire','This timezone is currently in standard time.'=>'Ce fuseau horaire est actuellement à l’heure d’hiver.','Custom:'=>'Personnalisé :','Week Starts On'=>'La semaine débute le','Media Settings'=>'Réglages des médias','Image sizes'=>'Tailles des images','Thumbnail size'=>'Taille des miniatures','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Recadrer les images pour parvenir aux dimensions exactes (normalement, les miniatures sont au format carré)','Medium size'=>'Taille moyenne','Max Width'=>'Largeur maximale','Max Height'=>'Hauteur maximale','Large size'=>'Grande taille','Uploading Files'=>'Envoi de fichiers','Store uploads in this folder'=>'Stocker les fichiers envoyés dans ce dossier','Full URL path to files'=>'Adresse web complète pour les fichiers','Configuring this is optional. By default, it should be blank.'=>'Ce réglage est facultatif. Par défaut, ce champ devrait être vide.','Organize my uploads into month- and year-based folders'=>'Organiser mes fichiers envoyés dans des dossiers mensuels et annuels','Permalink structure updated.'=>'Structure des permaliens enregistrée.','Day and name'=>'Date et titre','Month and name'=>'Mois et titre','Numeric'=>'Numérique','Custom Structure'=>'Structure personnalisée','Optional'=>'Facultatif','Category base'=>'Préfixe des catégories','Reading Settings'=>'Options de lecture','A static page (select below)'=>'Une page statique (choisir ci-dessous)','Posts page: %s'=>'Page des articles : %s','Warning: these pages should not be the same!'=>'Attention : ces pages ne devraient pas être les mêmes !','Blog pages show at most'=>'Les pages du site doivent afficher au plus','posts'=>'articles','Syndication feeds show the most recent'=>'Les flux de syndication affichent les derniers','Full text'=>'Le texte complet','Writing Settings'=>'Options d’écriture','Formatting'=>'Mise en forme','Convert emoticons like :-) and :-P to graphics on display'=>'Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage','Default Post Category'=>'Catégorie par défaut des articles','Default Link Category'=>'Catégorie par défaut des liens','Mail Server'=>'Serveur de messagerie','Port'=>'Port','Login Name'=>'Identifiant','Default Mail Category'=>'Catégorie par défaut des articles envoyés par e-mail','Update Services'=>'Services de mise à jour','All Settings'=>'Toutes les options','Edit Plugins'=>'Modifier les extensions','Files of this type are not editable.'=>'Les fichiers de ce type ne sont pas éditables.','File edited successfully.'=>'Le fichier a bien été modifié.','Select plugin to edit:'=>'Sélectionnez l’extension à modifier :','Plugin Files'=>'Fichiers de l’extension','Documentation:'=>'Documentation :','Update File'=>'Mettre à jour le fichier','Plugin InstallerFeatured'=>'Mises en avant','Plugin InstallerPopular'=>'Populaires','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici.','Plugin could not be deleted due to an error: %s'=>'L’extension n’a pu être supprimée suite à une erreur fatale : %s','Visit plugin site'=>'Aller sur le site de l’extension','Clear List'=>'Vider la liste','pluginsAll (%s)'=>'Toutes (%s)' . "\0" . 'Toutes (%s)','Active (%s)'=>'Activée (%s)' . "\0" . 'Activées (%s)','Recently Active (%s)'=>'Récemment désactivée (%s)' . "\0" . 'Récemment désactivées (%s)','Inactive (%s)'=>'Désactivée (%s)' . "\0" . 'Désactivées (%s)','No plugins found.'=>'Aucune extension trouvée.','Edit Themes'=>'Modifier les thèmes','Select theme to edit:'=>'Sélectionnez le thème à modifier :','Theme deleted.'=>'Thème supprimé.','Broken Themes'=>'Thèmes endommagés','Hide this update'=>'Masquer cette mise à jour','Bring back this update'=>'Réafficher cette mise à jour','Show hidden updates'=>'Afficher les mises à jour cachées','Hide hidden updates'=>'Masquer les mises à jour cachées','Plugin Reactivation'=>'Réactivation d’extension','Plugin reactivated successfully.'=>'L’extension a bien été réactivée.','Plugin failed to reactivate due to a fatal error.'=>'L’extension n’a pu être réactivée suite à une erreur fatale.','Installing Plugin: %s'=>'Extension en cours d’installation : %s','Installing Theme: %s'=>'Installation du thème : %s','Use https'=>'Utiliser https','Always use https when visiting the admin'=>'Toujours utiliser https lors de l’utilisation de l’administration','User updated.'=>'Utilisateur mis à jour.','Personal Options'=>'Options personnelles','Visual Editor'=>'Éditeur visuel','Disable the visual editor when writing'=>'Désactiver l’éditeur visuel pour écrire','Admin Color Scheme'=>'Couleurs de l’interface d’administration','Enable keyboard shortcuts for comment moderation.'=>'Activer les raccourcis clavier pour la modération de commentaires.','First Name'=>'Prénom','Last Name'=>'Nom','Nickname'=>'Pseudonyme','Display name publicly as'=>'Nom à afficher publiquement','Contact Info'=>'Informations de contact','About Yourself'=>'À propos de vous','About the user'=>'À propos de l’utilisateur','Biographical Info'=>'Renseignements biographiques','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement.','New Password'=>'Nouveau mot de passe','Type your new password again.'=>'Veuillez saisir une deuxième fois votre mot de passe.','Update Profile'=>'Mettre à jour le profil','Update User'=>'Mettre à jour l’utilisateur','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Envoi d’un message d’invitation au nouvel utilisateur. Un lien de confirmation devra d’abord être cliqué avant la création du compte.','Skip Confirmation Email'=>'Passer la confirmation par e-mail','Delete Users'=>'Supprimer des utilisateurs','There are no valid users selected for deletion.'=>'Aucun utilisateur valide n’est sélectionné pour la suppression.','New user created.'=>'Le nouvel utilisateur a été créé.','Other user roles have been changed.'=>'Les rôles des autres utilisateurs ont été modifiés.','Other users have been deleted.'=>'Les autres utilisateurs ont été supprimés.','%1$s (%2$s)'=>'%1$s (%2$s)','Change role to…'=>'Changer de rôle pour…','Inactive Widgets'=>'Widgets désactivés','Widget %s'=>'Widget %s','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale.','Save Widget'=>'Enregistrer le widget','Changes saved.'=>'Modifications enregistrées.','Error while saving.'=>'Erreur lors de la sauvegarde.','Error in displaying the widget settings form.'=>'Une erreur est survenue durant l’affichage du formulaire de paramétrage du widget.','Available Widgets'=>'Widgets disponibles','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels.','Categories:'=>'Catégories :','Tag base'=>'Base des étiquettes','Encoding for pages and feeds'=>'Codage pour les pages et les flux RSS','Yes, delete these files'=>'Oui, supprimer ces fichiers','No, return me to the plugin list'=>'Non, retourner à la liste des extensions','Tags:'=>'Étiquettes :','Your Email'=>'Votre adresse de messagerie','Comment author must fill out name and email'=>'L’auteur d’un commentaire doit renseigner son nom et son adresse de messagerie','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'Les utilisateurs n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse de messagerie.','Post via email'=>'Envoi d’article par e-mail','Media file permanently deleted.'=>'Fichier média définitivement supprimé.','Sorry, you are not allowed to edit this item.'=>'Désolé, vous n’avez pas l’autorisation de modifier cet élément.','Sorry, you are not allowed to delete these items.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ces éléments.','The current user’s role must have user editing capabilities.'=>'L’utilisateur actuel doit avoir un rôle lui permettant de modifier les utilisateurs.','Additional Capabilities'=>'Permissions supplémentaires','Upload Theme'=>'Téléverser un thème','Upload Plugin'=>'Téléverser une extension','You are about to delete this theme \'%s\' + \'Cancel\' to stop, \'OK\' to delete.'=>'Vous êtes sur le point de supprimer le thème « %s ». +« Annuler » pour arrêter, « OK » pour supprimer.','Plugin could not be activated because it triggered a fatal error.'=>'L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale.','WordPress should correct invalidly nested XHTML automatically'=>'WordPress doit automatiquement corriger l’imbrication XHTML erronée','Permalink Settings'=>'Réglages des permaliens','Email me whenever'=>'M’envoyer un message lorsque','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations.','Hello world!'=>'Bonjour tout le monde !','Default category slugUncategorized'=>'Non classé','[%s] Joining Confirmation'=>'[%s] Confirmation d’inscription','Edit user'=>'Modifier l’utilisateur','Media file restored from the Trash.'=>'Fichier média récupéré depuis la corbeille.','Media file moved to the Trash.'=>'Fichier média déplacé dans la corbeille.','Your WordPress database is already up to date!'=>'Votre base de données WordPress est déjà à jour !','Compatibility with WordPress %s: Unknown'=>'Compatibilité avec WordPress %s : inconnue','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibilité avec WordPress %s : 100%% (selon l’auteur)','Compare Revisions of “%s”'=>'Comparer les révisions de « %s »','Are you sure you want to delete these files?'=>'Confirmez-vous la suppression de ces fichiers ?','Privacy Settings'=>'Réglages de confidentialité','Permalink structure updated. Remove write access on %s file now!'=>'La structure des permaliens a été mise à jour. Retirez les droits d’accès au fichier %s dès maintenant !','Automatically close comments on posts older than %s days'=>'Fermer automatiquement les commentaires pour les publications datant de plus de %s jours','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !','Installation failed.'=>'Échec de l’installation','Installing plugin from uploaded file: %s'=>'Installation de l’extension à partir du fichier téléversé : %s','Installing theme from uploaded file: %s'=>'Installation du thème à partir du fichier téléversé : %s','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'Pour publier par e-mail sur WordPress, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaînes aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s.','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez un thème au format .zip, vous pouvez l’installer en le téléversant ici.','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son e-mail, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son adresse de messagerie, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','This theme is already installed.'=>'Ce thème est déjà installé.','Removed'=>'Retiré','Error: Passwords may not contain the character "\\".'=>'Erreur : le mot de passe ne doit pas contenir le caractère « \\ ».','Error: Please enter a password.'=>'Erreur : veuillez saisir un mot de passe.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'Si vous rendez le fichier %s accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','You cannot delete the current user.'=>'Vous ne pouvez pas supprimer l’utilisateur en cours d’utilisation.','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Restaurez-le, puis réessayez.','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'Si vous rendez temporairement le dossier racine accessible en écriture pour que WordPress y génère directement le fichier %s, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','Error: Please enter an email address.'=>'Erreur : veuillez saisir une adresse e-mail.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?','Please provide the following information. Do not worry, you can always change these settings later.'=>'Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard.','You are about to approve the following comment:'=>'Vous êtes sur le point d’approuver le commentaire suivant :','Unknown action.'=>'Action inconnue.','Custom Background'=>'Arrière-plan personnalisé','Background updated. Visit your site to see how it looks.'=>'L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu.','Choose an image from your computer:'=>'Choisissez une image sur votre ordinateur :','Save Changes'=>'Enregistrer les modifications','Custom Header'=>'Personnalisation de l’en-tête','Header updated. Visit your site to see how it looks.'=>'L’en-tête a été mis à jour. Visiter le site pour voir son nouvel aspect.','Image Processing Error'=>'Erreur lors du traitement de l’image','Choose the part of the image you want to use as your header.'=>'Choisissez la partie de l’image que vous voulez utiliser comme en-tête.','View “%s”'=>'Afficher « %s »','Unpublished'=>'Non publié','(Unattached)'=>'(Non attaché)','Attach'=>'Joindre','%s comment marked as spam.'=>'%s commentaire marqué comme indésirable.' . "\0" . '%s commentaires marqués comme indésirables.','Approved'=>'Approuvé' . "\0" . 'Approuvés','Search Comments'=>'Chercher un commentaire','Unapprove'=>'Désapprouver','Approve'=>'Approuver','Pings'=>'Pings','Filter'=>'Filtrer','Empty Spam'=>'Supprimer tous les indésirables','No comments found.'=>'Aucun commentaire trouvé.','Custom field updated.'=>'Champ personnalisé mis à jour.','Custom field deleted.'=>'Champ personnalisé supprimé.','Post saved.'=>'Article enregistré.','Send Trackbacks'=>'Envoyer des rétroliens','Custom Fields'=>'Champs personnalisés','Last edited by %1$s on %2$s at %3$s'=>'Dernière modification par %1$s, le %2$s à %3$s','Last edited on %1$s at %2$s'=>'Dernière modification le %1$s à %2$s','Update Comment'=>'Mettre à jour le commentaire','Links / Edit Link'=>'Liens / Modifier le lien','Update Link'=>'Mettre à jour le lien','Links / Add New Link'=>'Liens / Ajouter un nouveau lien','Link added.'=>'Lien ajouté.','Example: Nifty blogging software'=>'Exemple : Logiciel de création de sites rapide, puissant et efficace','Web Address'=>'Adresse web','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit.','Item deleted.'=>'Contenu supprimé.','Item updated.'=>'Contenu mis à jour.','Item not added.'=>'Contenu non ajouté.','Items deleted.'=>'Élements supprimés.','%s post updated.'=>'%s article mis à jour.' . "\0" . '%s articles mis à jour.','postsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','postsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','Export'=>'Exporter','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur.','Download Export File'=>'Télécharger le fichier d’export','No importers are available.'=>'Aucun outil d’importation n’est disponible.','Blogger'=>'Blogger','LiveJournal'=>'LiveJournal','Movable Type and TypePad'=>'Movable Type et TypePad','Changing to %s'=>'Modifier à %s','Found %s'=>'Trouvé %s','The ftp PHP extension is not available'=>'L’extension ftp de PHP n’est pas disponible','Username/Password incorrect for %s'=>'Le couple identifiant / mot de passe est incorrect pour %s','The ssh2 PHP extension is not available'=>'L’extension ssh2 de PHP n’est pas disponible','Public and Private keys incorrect for %s'=>'Les clés publiques et privées de %s ne sont pas correctes','Filesystem error.'=>'Erreur du système de fichier.','Unable to locate needed folder (%s).'=>'Impossible de localiser le dossier nécessaire (%s).','Download failed.'=>'Le téléchargement a échoué.','Installing the latest version…'=>'Installation de la dernière version…','Destination folder already exists.'=>'Le dossier de destination existe déjà.','Could not create directory.'=>'Impossible de créer le dossier.','Incompatible Archive.'=>'Archive incompatible.','Enabling Maintenance mode…'=>'Activation du mode maintenance…','Disabling Maintenance mode…'=>'Désactivation du mode maintenance…','The plugin is at the latest version.'=>'Vous avez la dernière version de cette extension.','Unpacking the update…'=>'Décompression de la mise à jour…','Removing the old version of the plugin…'=>'Retrait de l’ancienne version de l’extension…','Could not remove the old plugin.'=>'Impossible de supprimer l’ancienne extension.','Unpacking the package…'=>'Décompression de l’archive de l’extension…','Installing the plugin…'=>'Installation de l’extension…','Plugin installed successfully.'=>'L’extension a bien été installée.','The theme is at the latest version.'=>'Vous avez la dernière version de ce thème.','Removing the old version of the theme…'=>'Retrait de l’ancienne version du thème…','Could not remove the old theme.'=>'Impossible de supprimer l’ancien thème.','Installing the theme…'=>'Installation du thème…','Theme installed successfully.'=>'Le thème a bien été installé.','WordPress is at the latest version.'=>'Vous avez la dernière version de WordPress.','Could not copy files.'=>'Impossible de copier les fichiers.','Activate Plugin'=>'Activer l’extension','Successfully installed the theme %1$s %2$s.'=>'Le thème %1$s %2$s a bien été installé.','Preview “%s”'=>'Prévisualiser « %s »','Please select a file'=>'Veuillez choisir un fichier','Right Now'=>'Aujourd’hui','Other WordPress News'=>'Autres actualités de WordPress (en français)','View all'=>'Afficher tout','Configure'=>'Configurer','Approve this comment'=>'Approuver ce commentaire','Unapprove this comment'=>'Désapprouver ce commentaire','Reply to this comment'=>'Répondre à ce commentaire','Mark this comment as spam'=>'Marquer ce commentaire comme indésirable','verbSpam'=>'Indésirable','[Pending]'=>'[En attente]','This widget requires JavaScript.'=>'Ce widget requiert JavaScript.','Main Index Template'=>'Modèle pour la page d’accueil','RTL Stylesheet'=>'Feuille de style RTL','Popup Comments'=>'Commentaires en popup','Category Template'=>'Modèle pour les catégories','Search Form'=>'Formulaire de recherche','Single Post'=>'Article seul','404 Template'=>'Modèle pour l’erreur 404','Links Template'=>'Modèle pour les liens','Theme Functions'=>'Fonctions du thème','Attachment Template'=>'Modèle pour les fichiers attachés','Image Attachment Template'=>'Modèle pour les images attachées','Video Attachment Template'=>'Modèle pour les vidéos attachées','Audio Attachment Template'=>'Modèle pour les fichiers audio attachés','Application Attachment Template'=>'Modèle pour les programmes attachés','my-hacks.php (legacy hacks support)'=>'my-hacks.php (reconnaissance des hacks existants)','.htaccess (for rewrite rules )'=>'.htaccess (pour les règles de réécriture)','Comments Template'=>'Modèle pour les commentaires','Popup Comments Template'=>'Modèle pour la fenêtre de commentaires','The uploaded file was only partially uploaded.'=>'Le fichier n’a été que partiellement envoyé.','No file was uploaded.'=>'Aucun fichier n’a été envoyé.','Missing a temporary folder.'=>'Un dossier temporaire est manquant.','Failed to write file to disk.'=>'Échec de l’écriture du fichier sur le disque.','File upload stopped by extension.'=>'L’envoi de fichier est arrêté par l’extension.','Invalid form submission.'=>'Envoi non valide du formulaire.','Specified file failed upload test.'=>'Le test d’envoi du fichier spécifié a échoué.','Could not retrieve file from archive.'=>'Impossible de récupérer le fichier depuis l’archive.','Could not extract file from archive.'=>'Impossible d’extraire les fichiers depuis l’archive.','Could not copy file.'=>'Impossible de copier le fichier.','Empty archive.'=>'Archive vide.','FTP'=>'FTP','FTPS (SSL)'=>'FTPS (SSL)','SSH2'=>'SSH2','Authentication Keys'=>'Clés d’authentification','Public Key:'=>'Clé publique :','Private Key:'=>'Clé privée :','Connection Type'=>'Type de connexion','Proceed'=>'Continuer','Scale Image'=>'Redimensionnement de l’image','Original dimensions %s'=>'Taille originale : %s','Restore Original Image'=>'Rétablir l’image originale','Previously edited copies of the image will not be deleted.'=>'Les copies de l’image précédemment modifiées ne seront pas effacées.','Restore image'=>'Rétablir l’image','Crop Aspect Ratio'=>'Proportion de taille du recadrage','Crop Selection'=>'Sélection de recadrage','Aspect ratio:'=>'Proportion de taille :','Selection:'=>'Sélection :','Thumbnail Settings'=>'Réglages de la miniature','Current thumbnail'=>'Miniature actuelle','Apply changes to:'=>'Appliquer les modifications à :','All image sizes'=>'Toutes les tailles','All sizes except thumbnail'=>'Toutes les tailles sauf la miniature','Cannot load image metadata.'=>'Impossible de charger les métadonnées de l’image.','Cannot save image metadata.'=>'Impossible d’enregistrer les métadonnées de l’image.','Image metadata is inconsistent.'=>'Les métadonnées de l’image ne sont pas cohérentes.','Image restored successfully.'=>'L’image a bien été rétablie.','Error while saving the scaled image. Please reload the page and try again.'=>'Une erreur est survenue pendant la modification de l’échelle de l’image. Veuillez recharger la page pour faire une nouvelle tentative.','Nothing to save, the image has not changed.'=>'Rien à enregistrer, l’image n’a pas été modifiée.','Image saved'=>'Image enregistrée','From Computer'=>'Depuis votre ordinateur','From URL'=>'Depuis le Web','Gallery (%s)'=>'Galerie (%s)','Uploads'=>'Fichiers envoyés','WordPress'=>'WordPress','File URL'=>'Adresse web du fichier','Location of the uploaded file.'=>'Emplacement du fichier envoyé.','Show'=>'Afficher','Insert into Post'=>'Insérer dans l’article','Add media files from your computer'=>'Ajouter un fichier média depuis votre ordinateur','Save all changes'=>'Enregistrer toutes les modifications','All Tabs:'=>'Tous les onglets :','Sort Order:'=>'Ordre de tri :','Ascending'=>'Croissant','Descending'=>'Décroissant','Link thumbnails to:'=>'Lier les miniatures à :','Image File'=>'Fichier image','Order images by:'=>'Ranger les images par :','Menu order'=>'Ordre du menu','Date/Time'=>'Horodatage','Random'=>'Aléatoire','Order:'=>'Ordre :','Gallery columns:'=>'Colonnes de galerie :','Update gallery settings'=>'Mettre à jour les réglages de galerie','All Types'=>'Tous les types','Filter »'=>'Filtrer »','Image Caption'=>'Légende de l’image','Link Image To:'=>'Lier l’image à :','Link to image'=>'Lier à l’image','Link text, e.g. “Ransom Demands (PDF)”'=>'Texte du lien, par exemple « Théorie sur le chaos (PDF) »','Preview Changes'=>'Prévisualiser les modifications','Status:'=>'État :','Stick this post to the front page'=>'Mettre cet article en avant sur la page d’accueil','Publish immediately'=>'Publier tout de suite','+ Add New Category'=>'+ Ajouter une nouvelle catégorie','New category name'=>'Nom de la nouvelle catégorie','Already pinged:'=>'Déjà notifié(s) par ping :','Separate multiple URLs with spaces'=>'Séparez les adresses web par des espaces','Main Page (no parent)'=>'Page principale (pas de page parente)','Visit Link'=>'Visiter le lien','Keep this link private'=>'Ce lien est privé','_blank — new window or tab.'=>'_blank — nouvelle fenêtre ou onglet.','_none — same window or tab.'=>'_none — même fenêtre ou onglet.','rel:'=>'rel :','identity'=>'identité','friendship'=>'amitié','contact'=>'contact','acquaintance'=>'connaissance','none'=>'aucune','physical'=>'physique','professional'=>'professionnel','co-worker'=>'collègue de travail','colleague'=>'confrère','geographical'=>'géographique','co-resident'=>'colocataire','neighbor'=>'voisin','family'=>'famille','child'=>'enfant','kin'=>'apparenté','parent'=>'parent','sibling'=>'frère/sœur','spouse'=>'conjoint','romantic'=>'romantique','muse'=>'muse','crush'=>'coup de foudre','sweetheart'=>'être aimé','Image Address'=>'Adresse de l’image','RSS Address'=>'Adresse du flux RSS','Notes'=>'Commentaires','Rating'=>'Note','Search Plugins'=>'Chercher parmi les extensions','Plugin zip file'=>'Archive Zip de l’extension','(based on %s rating)'=>'(basée sur %s vote)' . "\0" . '(basée sur %s votes)','Last Updated:'=>'Dernière mise à jour :','Requires WordPress Version:'=>'Nécessite WordPress en version :','%s or higher'=>'%s ou plus','Compatible up to:'=>'Compatible jusqu’à la version : ','WordPress.org Plugin Page »'=>'Page WordPress.org de l’extension »','Average Rating'=>'Moyenne des notes','The plugin generated unexpected output.'=>'Cette extension a produit un résultat inattendu.','One of the plugins is invalid.'=>'L’une des extensions n’est pas valide.','Invalid plugin path.'=>'Chemin d’extension non valide','Plugin file does not exist.'=>'Le fichier de l’extension n’existe pas.','The plugin does not have a valid header.'=>'Cette extension ne dispose pas d’un en-tête valide.','Auto Draft'=>'Brouillon auto','Permalink:'=>'Permalien :','Just another WordPress site'=>'Un site utilisant WordPress','Just another %s site'=>'Un site utilisant %s','Warning! Wildcard DNS may not be configured correctly!'=>'Attention ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !','Quick Edit'=>'Modification rapide','Quick Edit'=>'Modification rapide','column nameTitle'=>'Titre','column nameFile'=>'Fichier','column nameDate'=>'Date','column nameComment'=>'Commentaire','Relationship'=>'Relation','Visible'=>'Visible','Bulk Edit'=>'Modifications groupées','— No Change —'=>'— Aucun changement —','–OR–'=>'— OU —','Allow'=>'Autoriser','Do not allow'=>'Refuser','Allow Comments'=>'Autoriser les commentaires','Allow Pings'=>'Autoriser les notifications par ping','Not Sticky'=>'Pas mis en avant','Make this post sticky'=>'Mettre ce contenu en avant','Missed schedule'=>'Planification manquée','Reply to Comment'=>'Répondre au commentaire','Submit Reply'=>'Envoyer la réponse','Comment by %s marked as spam.'=>'Commentaire de %s marqué comme indésirable.','Key'=>'Clé','Add New Custom Field:'=>'Ajouter un nouveau champ personnalisé :','Enter new'=>'Saisissez-en un nouveau','Add Custom Field'=>'Ajouter un champ personnalisé','Choose a file from your computer:'=>'Choisissez un fichier sur votre ordinateur :','Maximum size: %s'=>'Taille maximale : %s','Install Themes'=>'Installer des thèmes','Enable accessibility mode'=>'Activer le mode « Accessibilité »','Disable accessibility mode'=>'Désactiver le mode Accessibilité','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif.','Popular tags'=>'Étiquettes populaires','You may also browse based on the most popular tags in the Plugin Directory:'=>'Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :','Edit “%s”'=>'Modifier « %s »','Post restored to revision from %s.'=>'Article rétabli à partir de la révision du %s.','Page restored to revision from %s.'=>'Page rétablie à partir de la révision du %s.','Failed to connect to FTP Server %s'=>'Impossible de se connecter au serveur FTP %s','Failed to connect to SSH2 Server %s'=>'Impossible de se connecter au serveur SSH2 %s','Move this comment to the Trash'=>'Déplacer ce commentaire dans la corbeille','From %1$s on %2$s %3$s'=>'Par %1$s, sur %2$s%3$s','dashboard%1$s %2$s'=>'%1$s dans %2$s','Discard any changes and restore the original image.'=>'Abandonner toutes modifications et rétablir l’image originale.','Sorry, you are not allowed to edit posts as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des articles sous cet identifiant.','Sorry, you are not allowed to edit pages as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des pages sous cet identifiant.','Unable to locate WordPress plugin directory.'=>'Impossible de localiser le répertoire d’extension de WordPress.','Unable to locate WordPress root directory.'=>'Impossible de localiser le répertoire racine de WordPress.','Invalid data provided.'=>'Les données fournies ne sont pas valides.','Sorry, you are not allowed to delete this item.'=>'Désolé, vous n’avez pas l’autorisation de supprimer cet élément.','Page'=>'Page','Upload file and import'=>'Envoyer le fichier et l’importer','Before you can upload your import file, you will need to fix the following error:'=>'Avant de téléverser votre fichier d’import, il vous faut corriger l’erreur suivante :','Could not fully remove the plugins %s.'=>'Impossible de supprimer complètement la ou les extensions %s.','(Leave at 0 for no rating.)'=>'(Laissez à 0 pour ne pas donner de note.)','date'=>'petit·e ami·e','met'=>'rencontré·e','friend'=>'ami·e','another web address of mine'=>'une autre de mes adresses Web','Choose the target frame for your link.'=>'Choisissez le cadre dans lequel le lien doit s’ouvrir.','_top — current window or tab, with no frames.'=>'_top — fenêtre ou onglet en cours, sans cadre incorporé (frame).','You are about to delete this link \'%s\' + \'Cancel\' to stop, \'OK\' to delete.'=>'Vous êtes sur le point de supprimer le lien « %s ». +« Annuler » pour arrêter, « OK » pour supprimer.','Show comments'=>'Afficher les commentaires','Send trackbacks to:'=>'Envoyer un rétrolien vers :','Upload date:'=>'Date de téléversement :','Alt text for the image, e.g. “The Mona Lisa”'=>'Texte alternatif de l’image, par ex. : « La Joconde »','Unable to save the image.'=>'Impossible d’enregistrer l’image.','Unable to create new image.'=>'Impossible de créer une nouvelle image.','Image data does not exist. Please re-upload the image.'=>'Il n’y a aucune donnée d’image. Veuillez téléverser l’image à nouveau.','Hostname'=>'Nom de l’hôte :','Connection Information'=>'Informations de connexion','Invalid URL Provided.'=>'L’URL fournie n’est pas valide.','The uploaded file could not be moved to %s.'=>'Le fichier n’a pas pu être déplacé vers %s.','Installation package not available.'=>'L’archive d’installation n’est pas disponible.','Unable to perform command: %s'=>'Impossible de lancer la commande : %s','SSH2 password is required'=>'Le mot de passe SSH2 est nécessaire','SSH2 username is required'=>'L’identifiant SSH2 est nécessaire','SSH2 hostname is required'=>'Le nom de l’hôte SSH2 est nécessaire','FTP password is required'=>'Le mot de passe FTP est nécessaire','FTP username is required'=>'L’identifiant FTP est nécessaire','FTP hostname is required'=>'Le nom de l’hôte FTP est nécessaire','Try Again'=>'Recommencez','Visit site'=>'Aller sur le site','Empty Trash'=>'Vider la corbeille','Comment by %s moved to the Trash.'=>'Commentaire par %s déplacé dans la corbeille.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Avertissement : cette extension n’a pas été testée avec votre version actuelle de WordPress.','Flip horizontal'=>'Retourner horizontalement','Flip vertical'=>'Retourner verticalement','Sorry, that file cannot be edited.'=>'Désolé, ce fichier ne peut être modifié.','Search Requests'=>'Recherche dans les demandes','verbTrash'=>'Corbeille','Successfully installed the plugin %1$s %2$s.'=>'L’extension %1$s %2$s a bien été installée.','Displaying %1$s–%2$s of %3$s'=>'Affichage de %1$s à %2$s sur %3$ss','%s comment restored from the spam.'=>'%s commentaire rétabli depuis les commentaires indésirables.' . "\0" . '%s commentaires rétablis depuis les commentaires indésirables.','%s comment permanently deleted.'=>'%s commentaire supprimé définitivement.' . "\0" . '%s commentaires supprimés définitivement.','%s comment approved.'=>'%s commentaire approuvé.' . "\0" . '%s commentaires approuvés.','Permanently delete comment'=>'Supprimer définitivement le commentaire','Approve comment'=>'Approuver le commentaire','Could not update link in the database.'=>'Impossible de mettre à jour le lien dans la base de données.','Could not insert link into the database.'=>'Impossible d’insérer le lien dans la base de données.','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez une extension au format .zip, vous pouvez l’installer ou la mettre à jour en la téléversant ici.','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en apprendre plus sur ce système, consultez le site de XFN.','Search Media'=>'Chercher parmi les médias','Delete Permanently'=>'Supprimer définitivement','Could not access filesystem'=>'Impossible d’accéder au système de fichiers.','Unable to locate WordPress content directory'=>'Impossible de localiser le répertoire de contenu de WordPress.','Could not create temporary file.'=>'Impossible de créer le fichier temporaire.','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes.','%s pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour : quelqu’un est en train de la modifier.' . "\0" . '%s compositions n’ont pas été mises à jour : quelqu’un est en train de les modifier.','Example: https://wordpress.org/ — do not forget the https://'=>'Exemple : https://fr.wordpress.org/ — Et n’oubliez pas le https://','«'=>'«','»'=>'»','Comment %d does not exist'=>'Le commentaire %d n’existe pas.','You did not enter a category name.'=>'Vous n’avez pas entré de nom de catégorie.','Please provide a custom field value.'=>'Veuillez saisir une valeur pour le champ personnalisé.','g:i:s a'=>'G \\h i \\m\\i\\n s \\s','Draft saved at %s.'=>'Brouillon enregistré à %s.','Saving is disabled: %s is currently editing this page.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette page.','Saving is disabled: %s is currently editing this post.'=>'Enregistrement automatique désactivé : %s modifie actuellement cet article.','Item not updated.'=>'L’élément n’a pas été mis à jour','Cannot load %s.'=>'Impossible de charger %s.','Import'=>'Importer','Edit Comment'=>'Modifier le commentaire','You are about to mark the following comment as spam:'=>'Vous êtes sur le point de marquer le commentaire suivant comme indésirable :','You are about to delete the following comment:'=>'Vous êtes sur le point de supprimer le commentaire suivant :','Sorry, you are not allowed to edit comments on this post.'=>'Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cet article.','You are about to move the following comment to the Trash:'=>'Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier.','Invalid plugin page.'=>'Page d’extension non valide','Someone'=>'Quelqu’un','Sorry, you must be logged in to reply to a comment.'=>'Désolé, vous devez être connecté·e pour répondre à un commentaire.','Go Back'=>'Retour']]; \ No newline at end of file diff --git a/web/app/languages/admin-fr_BE.mo b/web/app/languages/admin-fr_BE.mo new file mode 100755 index 00000000..f089bf24 Binary files /dev/null and b/web/app/languages/admin-fr_BE.mo differ diff --git a/web/app/languages/admin-fr_BE.po b/web/app/languages/admin-fr_BE.po new file mode 100755 index 00000000..7a54f5dc --- /dev/null +++ b/web/app/languages/admin-fr_BE.po @@ -0,0 +1,16014 @@ +# Translation of WordPress - 6.5.x - Development - Administration in French (Belgium) +# This file is distributed under the same license as the WordPress - 6.5.x - Development - Administration package. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-01 23:56:53+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: fr_BE\n" +"Project-Id-Version: WordPress - 6.5.x - Development - Administration\n" + +#. translators: Default start of the week. 0 = Sunday, 1 = Monday. +#: wp-admin/includes/schema.php:418 +#, gp-priority: high +msgctxt "start of week" +msgid "1" +msgstr "1" + +#. translators: default GMT offset or timezone string. Must be either a valid +#. offset (-12 to 14) or a valid timezone string (America/New_York). See +#. https://www.php.net/manual/en/timezones.php for all timezone strings +#. currently supported by PHP. Important: When a previous timezone string, like +#. `Europe/Kiev`, has been superseded by an updated one, like `Europe/Kyiv`, as +#. a rule of thumb, the **old** timezone name should be used in the +#. "translation" to allow for the default timezone setting to be PHP +#. cross-version compatible, as old timezone names will be recognized in new +#. PHP versions, while new timezone names cannot be recognized in old PHP +#. versions. To verify which timezone strings are available in the _oldest_ PHP +#. version supported, you can use https://3v4l.org/6YQAt#v5.6.20 and replace +#. the "BR" (Brazil) in the code line with the country code for which you want +#. to look up the supported timezone names. +#: wp-admin/includes/schema.php:403 +#, gp-priority: high +msgctxt "default GMT offset or timezone string" +msgid "0" +msgstr "Europe/Brussels" + +#: wp-admin/update.php:158 wp-admin/update.php:310 +msgid "Only .zip archives may be uploaded." +msgstr "Uniquement les archives .zip peuvent être téléversées." + +#. translators: %s: Link to install the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:338 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." +msgstr "L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor." + +#. translators: %s: Link to activate the Classic Widgets plugin. +#: wp-admin/widgets-form-blocks.php:87 +msgid "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin." +msgstr "Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets." + +#. translators: %s: Link to activate the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:329 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." +msgstr "L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor." + +#: wp-admin/my-sites.php:81 wp-admin/network/menu.php:53 +#: wp-admin/network/site-new.php:182 wp-admin/network/site-new.php:192 +#: wp-admin/network/sites.php:381 +msgid "Add New Site" +msgstr "Ajouter un site" + +#: wp-admin/menu.php:310 wp-admin/plugins.php:757 wp-admin/network/menu.php:106 +msgid "Add New Plugin" +msgstr "Ajouter une extension" + +#: wp-admin/includes/image-edit.php:80 +msgid "Rotate 180°" +msgstr "Rotation de 180°" + +#: wp-admin/includes/image-edit.php:79 +msgid "Rotate 90° right" +msgstr "Rotation de 90° à droite" + +#: wp-admin/includes/image-edit.php:78 +msgid "Rotate 90° left" +msgstr "Rotation de 90° à gauche" + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:392 +msgid "%s pattern moved to the Trash." +msgid_plural "%s patterns moved to the Trash." +msgstr[0] "La composition %s a été mise à la corbeille." +msgstr[1] "Les compositions %s ont été mises à la corbeille." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:390 +msgid "%s pattern permanently deleted." +msgid_plural "%s patterns permanently deleted." +msgstr[0] "Composition %s définitivement supprimée." +msgstr[1] "Compositions %s définitivement supprimées." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:385 +msgid "%s pattern updated." +msgid_plural "%s patterns updated." +msgstr[0] "Composition %s mise à jour." +msgstr[1] "Compositions %s mises à jour." + +#. translators: %s: The dismiss dashicon used for buttons that dismiss or +#. remove. +#: wp-admin/edit.php:293 +msgid "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears." +msgstr "Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste." + +#. translators: 1: WordPress Field Guide link, 2: WordPress version number. +#: wp-admin/about.php:364 +msgid "Explore the WordPress %2$s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." +msgstr "Explorez le Guide des changements techniques de WordPress %2$s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous aident à construire avec WordPress." + +#. translators: 1: WordPress Release Notes link, 2: WordPress version number. +#: wp-admin/about.php:383 +msgid "Read the WordPress %2$s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." +msgstr "Lisez les notes de version de WordPress %2$s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers." + +#: wp-admin/includes/user.php:721 wp-admin/includes/user.php:744 +msgid "Invalid URL format." +msgstr "Format d’URL invalide." + +#. translators: 1: Current PHP version, 2: PHP version required by the new +#. plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:369 +msgid "The PHP version on your server is %1$s, however the new plugin version requires %2$s." +msgstr "La version de PHP sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s." + +#. translators: 1: Current WordPress version, 2: WordPress version required by +#. the new plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:355 +msgid "Your WordPress version is %1$s, however the new plugin version requires %2$s." +msgstr "La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/about.php:66 wp-admin/about.php:91 wp-admin/about.php:116 +#: wp-admin/about.php:141 +msgid "https://wordpress.org/support/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + +#: wp-admin/contribute.php:103 wp-admin/credits.php:57 wp-admin/credits.php:65 +msgid "https://make.wordpress.org/contribute/" +msgstr "https://make.wordpress.org/contribute/" + +#: wp-admin/update-core.php:1068 +msgid "Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above." +msgstr "Les mises à jour peuvent prendre plusieurs minutes à se terminer. S’il n’y a aucun retour après 5 minutes, ou s’il y a des erreurs, veuillez vous référer à la section Aide ci-dessus." + +#: wp-admin/update-core.php:1048 +msgid "Common Errors" +msgstr "Erreurs courantes" + +#: wp-admin/update-core.php:1043 +msgid "Restore Plugin or Theme" +msgstr "Restaurer l’extension ou le thème" + +#: wp-admin/update-core.php:1038 +msgid "On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title." +msgstr "Sur les systèmes avec moins de ressources, ça peut mener à des dépassement de délais serveur ou à atteindre les limites des ressources. Si vous rencontrez un problème lors du processus de mise à jour, veuillez créer un fil de discussion dans le forum d’aide et indiquer Restauration dans le titre du fil." + +#: wp-admin/update-core.php:1036 +msgid "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." +msgstr "Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus." + +#: wp-admin/site-editor.php:176 +msgid "The site editor requires JavaScript. Please enable JavaScript in your browser settings." +msgstr "L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur." + +#: wp-admin/options-permalink.php:227 +msgid "https://wordpress.org/documentation/article/customize-permalinks/" +msgstr "https://fr.wordpress.org/support/article/using-permalinks/" + +#. translators: %s: Site tagline example. +#: wp-admin/options-general.php:90 +msgid "In a few words, explain what this site is about. Example: “%s.”" +msgstr "En quelques mots, expliquez ce que représente ce site. Exemple : « %s »." + +#: wp-admin/install.php:203 +msgid "Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request." +msgstr "Note : le fait de décourager les moteurs de recherche ne bloque pas l’accès à votre site. Il appartient aux moteurs de recherche d’honorer votre demande." + +#: wp-admin/includes/template.php:762 +msgid "New custom field name" +msgstr "Nouveau nom de champ personnalisé" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/media.php:2752 +msgid "Search Media:" +msgstr "Rechercher un média :" + +#: wp-admin/includes/image-edit.php:270 +msgid "Clear Crop" +msgstr "Annuler le recadrage" + +#: wp-admin/includes/image-edit.php:270 +msgid "Apply Crop" +msgstr "Appliquer le recadrage" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:263 +msgid "vertical start position" +msgstr "position verticale de départ" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:255 +msgid "horizontal start position" +msgstr "position horizontale de départ" + +#: wp-admin/includes/image-edit.php:250 +msgid "Starting Coordinates:" +msgstr "Coordonnées de départ :" + +#: wp-admin/includes/image-edit.php:193 +msgid "Crop Image" +msgstr "Recadrer l’image" + +#: wp-admin/includes/image-edit.php:162 wp-admin/includes/image-edit.php:926 +msgid "Images cannot be scaled to a size larger than the original." +msgstr "Les images ne peuvent pas être mises à l’échelle dans une taille supérieure à celle de l’original." + +#: wp-admin/includes/image-edit.php:101 +msgid "Save Edits" +msgstr "Enregistrer les modifications" + +#: wp-admin/includes/image-edit.php:100 +msgid "Cancel Editing" +msgstr "Annuler la modification" + +#: wp-admin/includes/file.php:2033 +msgid "Could not create the destination directory." +msgstr "Impossible de créer le répertoire de destination." + +#: wp-admin/includes/class-wp-users-list-table.php:397 +#: wp-admin/includes/class-wp-ms-users-list-table.php:217 +msgid "Table ordered by E-mail." +msgstr "Tableau trié par e-mail." + +#: wp-admin/includes/class-wp-users-list-table.php:396 +#: wp-admin/includes/class-wp-ms-users-list-table.php:215 +msgid "Table ordered by Username." +msgstr "Tableau trié par identifiant." + +#. translators: %s: The plugin or theme slug. +#: wp-admin/includes/class-wp-upgrader.php:217 +msgid "Could not delete the temporary backup directory for %s." +msgstr "Impossible de supprimer le répertoire de sauvegarde temporaire de %s." + +#. translators: %s: The plugin or theme slug. +#: wp-admin/includes/class-wp-upgrader.php:215 +msgid "Could not restore the original version of %s." +msgstr "Impossible de restaurer la version originale de %s." + +#. translators: %s: upgrade-temp-backup +#: wp-admin/includes/class-wp-upgrader.php:213 +msgid "Could not move the old version to the %s directory." +msgstr "Impossible de déplacer l’ancienne version vers le répertoire %s." + +#. translators: %s: upgrade-temp-backup +#: wp-admin/includes/class-wp-upgrader.php:211 +msgid "Could not create the %s directory." +msgstr "Impossible de créer le répertoire %s." + +#: wp-admin/includes/class-wp-terms-list-table.php:223 +msgid "Table ordered by Links." +msgstr "Tableau trié par liens." + +#: wp-admin/includes/class-wp-terms-list-table.php:222 +msgid "Table ordered by Posts Count." +msgstr "Tableau trié par nombre de publications." + +#: wp-admin/includes/class-wp-terms-list-table.php:221 +msgid "Table ordered by Slug." +msgstr "Tableau trié par slug." + +#: wp-admin/includes/class-wp-terms-list-table.php:220 +msgid "Table ordered by Description." +msgstr "Tableau trié par description." + +#: wp-admin/includes/class-wp-terms-list-table.php:213 +msgid "Table ordered hierarchically." +msgstr "Tableau trié hiérarchiquement." + +#: wp-admin/includes/class-wp-site-health.php:2780 +msgid "Available disk space" +msgstr "Espace disque disponible" + +#: wp-admin/includes/class-wp-site-health.php:2776 +msgid "Plugin and theme temporary backup directory access" +msgstr "Accès au répertoire de sauvegarde temporaire des extensions et des thèmes" + +#. translators: 1: wp-content/upgrade, 2: wp-content. +#: wp-admin/includes/class-wp-site-health.php:2093 +msgid "The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s." +msgstr "Le répertoire %1$s n’existe pas et le serveur n’a pas les droits en écriture dans %2$s pour le créer. Ce répertoire est utilisé pour les mises à jour des extensions et de thèmes. Veuillez vous assurer que le serveur dispose des droits en écriture dans %2$s." + +#: wp-admin/includes/class-wp-site-health.php:2090 +msgid "The upgrade directory cannot be created" +msgstr "Le répertoire de mise à niveau ne peut pas être créé" + +#. translators: %s: wp-content/upgrade +#: wp-admin/includes/class-wp-site-health.php:2082 +msgid "The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour les mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:2079 +msgid "The upgrade directory exists but is not writable" +msgstr "Le répertoire de mise à niveau existe mais n’est pas accessible en écriture" + +#. translators: %s: wp-content/upgrade-temp-backup +#: wp-admin/includes/class-wp-site-health.php:2071 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:2068 +msgid "The temporary backup directory exists but is not writable" +msgstr "Le répertoire de sauvegarde temporaire existe mais n’est pas accessible en écriture." + +#. translators: %s: wp-content/upgrade-temp-backup/themes +#: wp-admin/includes/class-wp-site-health.php:2060 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour de thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:2057 +msgid "Theme temporary backup directory exists but is not writable" +msgstr "Le répertoire de sauvegarde temporaire des thèmes existe mais n’est pas accessible en écriture" + +#. translators: %s: wp-content/upgrade-temp-backup/plugins +#: wp-admin/includes/class-wp-site-health.php:2049 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:2046 +msgid "Plugin temporary backup directory exists but is not writable" +msgstr "Le répertoire de sauvegarde temporaire des extensions existe mais n’est pas accessible en écriture" + +#. translators: 1: wp-content/upgrade-temp-backup/plugins, 2: +#. wp-content/upgrade-temp-backup/themes. +#: wp-admin/includes/class-wp-site-health.php:2037 +msgid "The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories." +msgstr "Les répertoires %1$s et %2$s existent mais ne sont pas accessibles en écriture. Ces répertoires sont utilisés pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ces répertoires." + +#: wp-admin/includes/class-wp-site-health.php:2034 +msgid "Plugin and theme temporary backup directories exist but are not writable" +msgstr "Les répertoires de sauvegarde temporaire des extensions et des thèmes existent mais ne sont pas accessibles en écriture." + +#. translators: %s: wp-content +#: wp-admin/includes/class-wp-site-health.php:2016 +msgid "The %s directory cannot be located." +msgstr "Le répertoire %s est introuvable." + +#. translators: %s: wp-content/upgrade-temp-backup +#: wp-admin/includes/class-wp-site-health.php:1987 +msgid "The %s directory used to improve the stability of plugin and theme updates is writable." +msgstr "Le répertoire %s utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes est accessible en écriture." + +#: wp-admin/includes/class-wp-site-health.php:1979 +msgid "Plugin and theme temporary backup directory is writable" +msgstr "Le répertoire de sauvegarde temporaire des extensions et des thèmes est accessible en écriture" + +#: wp-admin/includes/class-wp-site-health.php:1953 +msgid "Could not determine available disk space for updates." +msgstr "Impossible de déterminer l’espace disque disponible pour les mises à jour." + +#: wp-admin/includes/class-wp-site-health.php:1956 +msgid "Available disk space is critically low, less than 20 MB available. Proceed with caution, updates may fail." +msgstr "L’espace disque disponible est extrêmement faible, moins de 20 Mo disponibles. Procédez avec prudence, les mises à jour peuvent échouer." + +#: wp-admin/includes/class-wp-site-health.php:1959 +msgid "Available disk space is low, less than 100 MB available." +msgstr "L’espace disque disponible est faible, moins de 100 Mo disponibles." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1945 +msgid "%s available disk space was detected, update routines can be performed safely." +msgstr "%s d’espace disque disponible a été détecté, les routines de mise à jour peuvent être effectuées en toute sécurité." + +#: wp-admin/includes/class-wp-site-health.php:1937 +msgid "Disk space available to safely perform updates" +msgstr "Espace disque disponible pour effectuer les mises à jour en toute sécurité" + +#: wp-admin/includes/class-wp-posts-list-table.php:770 +msgid "Table ordered by Hierarchical Menu Order and Title." +msgstr "Tableau trié par l’ordre hiérarchique du menu et par son titre." + +#: wp-admin/includes/class-wp-posts-list-table.php:768 +#: wp-admin/includes/class-wp-posts-list-table.php:781 +msgid "Table ordered by Title." +msgstr "Tableau trié par titre." + +#: wp-admin/includes/class-wp-media-list-table.php:404 +#: wp-admin/includes/class-wp-posts-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:784 +msgid "Table ordered by Date." +msgstr "Tableau trié par date." + +#: wp-admin/includes/class-wp-media-list-table.php:403 +#: wp-admin/includes/class-wp-posts-list-table.php:776 +#: wp-admin/includes/class-wp-posts-list-table.php:783 +msgid "Table ordered by Comments." +msgstr "Tableau trié par commentaires." + +#: wp-admin/includes/class-wp-media-list-table.php:402 +msgid "Table ordered by Uploaded To." +msgstr "Tableau trié par destination du téléversement." + +#: wp-admin/includes/class-wp-media-list-table.php:401 +msgid "Table ordered by Author." +msgstr "Tableau trié par auteur." + +#: wp-admin/includes/class-wp-media-list-table.php:400 +msgid "Table ordered by File Name." +msgstr "Tableau trié par nom de fichier." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1596 +msgid "Descending." +msgstr "Décroissant." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1594 +msgid "Ascending." +msgstr "Croissant." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1495 +msgid "Sort descending." +msgstr "Tri décroissant" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1493 +msgid "Sort ascending." +msgstr "Tri croissant" + +#: wp-admin/includes/class-wp-links-list-table.php:149 +msgid "Table ordered by Rating." +msgstr "Tableau trié par évaluation." + +#: wp-admin/includes/class-wp-links-list-table.php:148 +msgid "Table ordered by Visibility." +msgstr "Tableau trié par visibilité." + +#: wp-admin/includes/class-wp-links-list-table.php:147 +msgid "Table ordered by URL." +msgstr "Tableau trié par URL." + +#: wp-admin/includes/class-wp-links-list-table.php:146 +#: wp-admin/includes/class-wp-terms-list-table.php:215 +#: wp-admin/includes/class-wp-ms-users-list-table.php:216 +msgid "Table ordered by Name." +msgstr "Tableau trié par nom." + +#: wp-admin/includes/class-wp-debug-data.php:862 +msgid "Current Server time" +msgstr "Heure actuelle du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:858 +msgid "Current UTC time" +msgstr "Heure UTC actuelle" + +#: wp-admin/includes/class-wp-debug-data.php:854 +msgid "Current time" +msgstr "Heure actuelle" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:591 +msgid "Ordered by Comment Date, descending." +msgstr "Tableau trié par date de commentaire, décroissante." + +#: wp-admin/includes/class-wp-comments-list-table.php:547 +msgid "Table ordered by Post Replied To." +msgstr "Tableau trié par commentaire lié à l’article." + +#: wp-admin/includes/class-wp-comments-list-table.php:546 +msgid "Table ordered by Comment Author." +msgstr "Tableau trié par l’auteur du commentaire." + +#: wp-admin/includes/class-core-upgrader.php:37 +msgid "Attempting to restore the previous version." +msgstr "Tentative de restauration de la version précédente." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:163 +msgid "More details." +msgstr "Plus de détails." + +#: wp-admin/contribute.php:103 +msgid "Find your team →" +msgstr "Trouvez votre équipe →" + +#: wp-admin/contribute.php:102 +msgid "Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is." +msgstr "Trouver le domaine qui correspond à vos compétences et à vos intérêts est le premier pas vers une contribution significative. Avec plus de 20 équipes Make WordPress travaillant sur différentes parties du projet open source WordPress, il y a une place pour tout le monde, quelles que soient vos compétences." + +#: wp-admin/contribute.php:101 +msgid "Shape the future of the web with WordPress" +msgstr "Façonnez l’avenir du web avec WordPress" + +#: wp-admin/contribute.php:94 +msgid "WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript." +msgstr "Applications mobiles WordPress : Kotlin, Java, Swift, Objective-C, Vue, Python et TypeScript." + +#: wp-admin/contribute.php:93 +msgid "WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React." +msgstr "Cœur de WP et éditeur de blocs : HTML, CSS, PHP, SQL, JavaScript et React." + +#: wp-admin/contribute.php:91 +msgid "WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:" +msgstr "WordPress adopte de nouvelles technologies, tout en s’engageant à en assurer la rétro-compatibilité. Le projet WordPress utilise les langages et outils suivants :" + +#: wp-admin/contribute.php:89 +msgid "Contribute to the code, improve the UX, and test the WordPress app." +msgstr "Contribuez au code, améliorez l’expérience d’utilisation, et testez les applications mobiles WordPress" + +#: wp-admin/contribute.php:88 +msgid "Write and submit patches to fix bugs or help build new features." +msgstr "Écrivez et envoyez des corrections de bogues ou contribuez à l’élaboration de nouvelles fonctionnalités" + +#: wp-admin/contribute.php:87 +msgid "Test new releases and proposed features for the Block Editor." +msgstr "Testez les nouvelles versions et fonctionnalités proposées pour l’éditeur de blocs." + +#: wp-admin/contribute.php:86 +msgid "Find and report bugs in the WordPress core software." +msgstr "Trouvez et signalez des bogues dans le cœur de WordPress" + +#: wp-admin/contribute.php:84 +msgid "If you do code, or want to learn how, you can contribute technically in numerous ways:" +msgstr "Si vous codez, ou souhaitez apprendre à le faire, vous pouvez contribuer techniquement de nombreuses manières :" + +#: wp-admin/contribute.php:83 +msgid "Code-based contribution" +msgstr "Contribution au code de WordPress" + +#: wp-admin/contribute.php:71 +msgid "Explore ways to reduce the environmental impact of websites." +msgstr "Explorez les moyens de réduire l’impact environnemental des millions de sites WordPress." + +#: wp-admin/contribute.php:70 +msgid "Edit videos and add captions to WordPress.tv." +msgstr "Gérez les vidéos et ajoutez des sous-titres sur WordPress.tv" + +#: wp-admin/contribute.php:69 +msgid "Lend your creative imagination to the WordPress UI design." +msgstr "Laissez libre cours à votre imagination créative pour la conception de l’interface d’utilisation de WordPress" + +#: wp-admin/contribute.php:68 +msgid "Organize or participate in local Meetups and WordCamps." +msgstr "Organisez ou participez à des Meetups WordPress locaux ou à des WordCamps" + +#: wp-admin/contribute.php:67 +msgid "Curate submissions or take photos for the Photo Directory." +msgstr "Sélectionnez les propositions ou prenez des photos pour le répertoire de photos de WordPress." + +#: wp-admin/contribute.php:66 +msgid "Promote the WordPress project to your community." +msgstr "Faites la promotion du projet WordPress auprès de la communauté" + +#: wp-admin/contribute.php:65 +msgid "Create and improve WordPress educational materials." +msgstr "Créez et améliorez le matériel pédagogique de WordPress" + +#: wp-admin/contribute.php:64 +msgid "Translate WordPress into your local language." +msgstr "Traduisez WordPress dans votre langue" + +#: wp-admin/contribute.php:63 +msgid "Write or improve documentation for WordPress." +msgstr "Rédigez ou améliorez la documentation de WordPress" + +#: wp-admin/contribute.php:62 +msgid "Share your knowledge in the WordPress support forums." +msgstr "Partagez vos connaissances sur les forums d’entraide de WordPress" + +#: wp-admin/contribute.php:60 +msgid "WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:" +msgstr "WordPress se nourrit de contributions techniques, mais il n’est pas nécessaire de savoir coder pour contribuer. Voici quelques-unes des façons qui vous permettent d’avoir un impact sans écrire une seule ligne de code :" + +#: wp-admin/contribute.php:59 +msgid "No-code contribution" +msgstr "Contributer sans coder" + +#: wp-admin/contribute.php:52 +msgid "Grow your network and make friends." +msgstr "Développez votre réseau et faites-vous des amis" + +#: wp-admin/contribute.php:51 +msgid "Apply your skills or learn new ones." +msgstr "Appliquez vos compétences ou apprenez-en de nouvelles" + +#: wp-admin/contribute.php:50 +msgid "Be part of a global open source community." +msgstr "Rejoignez une communauté mondiale dédiée au logiciel libre" + +#: wp-admin/contribute.php:47 +msgid "Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web." +msgstr "Rejoignez la communauté WordPress et connectez-vous avec d’autres personnes qui ont à cœur de maintenir le web libre et ouvert." + +#: wp-admin/contribute.php:46 +msgid "Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world." +msgstr "Vous utilisez WordPress dans le cadre de votre travail, de vos projets personnels ou simplement pour le plaisir ? Vous pouvez contribuer au succès à long terme du projet open source qui alimente des millions de sites web dans le monde." + +#. translators: 1: Learn WordPress link, 2: Workshops link. +#: wp-admin/about.php:343 +msgid "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." +msgstr "Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress." + +#: wp-admin/comment.php:72 wp-admin/edit-comments.php:232 +#: wp-admin/edit-form-advanced.php:320 wp-admin/edit-form-advanced.php:338 +#: wp-admin/edit-form-advanced.php:356 wp-admin/edit-link-form.php:77 +#: wp-admin/edit-tags.php:312 wp-admin/edit.php:302 wp-admin/edit.php:327 +#: wp-admin/erase-personal-data.php:66 wp-admin/export-personal-data.php:66 +#: wp-admin/export.php:60 wp-admin/includes/class-custom-background.php:111 +#: wp-admin/includes/class-custom-image-header.php:146 wp-admin/index.php:133 +#: wp-admin/link-manager.php:80 wp-admin/media-new.php:62 +#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:768 +#: wp-admin/options-discussion.php:33 wp-admin/options-general.php:61 +#: wp-admin/options-media.php:42 wp-admin/options-permalink.php:67 +#: wp-admin/options-reading.php:54 wp-admin/options-writing.php:54 +#: wp-admin/plugin-editor.php:153 wp-admin/plugin-install.php:122 +#: wp-admin/plugins.php:609 wp-admin/revision.php:158 +#: wp-admin/theme-editor.php:56 wp-admin/theme-install.php:158 +#: wp-admin/themes.php:210 wp-admin/tools.php:57 wp-admin/update-core.php:1055 +#: wp-admin/upload.php:199 wp-admin/upload.php:401 wp-admin/user-edit.php:78 +#: wp-admin/user-new.php:302 wp-admin/users.php:84 wp-admin/widgets-form.php:72 +#: wp-admin/network.php:83 wp-admin/network/settings.php:65 +#: wp-admin/network/themes.php:340 wp-admin/network/upgrade.php:33 +msgid "Support forums" +msgstr "forums de support" + +#: wp-admin/widgets-form.php:71 +msgid "Documentation on Widgets" +msgstr "Écran Widgets" + +#: wp-admin/users.php:63 +msgid "View takes you to a public author archive which lists all the posts published by the user." +msgstr "Voir vous emmène sur l’archive publique de l’auteur ou de l’autrice, qui liste toutes ses publications mises en ligne." + +#: wp-admin/upload.php:385 +msgid "Download file downloads the original media file to your device." +msgstr "Télécharger le fichier télécharge le fichier média original sur votre appareil." + +#: wp-admin/site-editor.php:38 +msgctxt "site editor title tag" +msgid "Editor" +msgstr "Éditeur" + +#: wp-admin/plugins.php:602 wp-admin/themes.php:202 +#: wp-admin/update-core.php:1030 wp-admin/network/themes.php:333 +msgid "Documentation on Auto-updates" +msgstr "Documentation sur les mises à jour automatiques" + +#: wp-admin/options-general.php:542 +msgid "Documentation on date and time formatting." +msgstr "Documentation sur le formatage de la date et de l’heure." + +#: wp-admin/options-general.php:46 wp-admin/network/settings.php:56 +msgid "You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable)." +msgstr "Vous pouvez définir la langue, et WordPress va automatiquement télécharger et installer les fichiers de traduction (disponible si votre système de fichier autorise l’écriture)." + +#: wp-admin/options-general.php:43 +msgid "If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users." +msgstr "Si vous voulez que les internautes puissent créer eux-mêmes un compte sur le site, cochez la case d’adhésion. Si vous voulez que l’administrateur ou l’administratrice du site soit responsable de l’inscription de chaque compte chaque, laissez la case non-cochée. Dans tous les cas, vous pouvez définir un rôle par défaut pour tout nouveau compte." + +#. translators: 1: http://, 2: https: +#: wp-admin/options-general.php:39 +msgid "Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines." +msgstr "L’URL de WordPress et l’URL du site peuvent commencer par %1$s ou %2$s. Une URL commençant par %2$s nécessite de disposer d’un certificat SSL, alors assurez-vous d’en avoir un installé avant de passer à %2$s. Avec %2$s, un cadenas va s’afficher à côté de l’adresse du site dans votre navigateur. Le fait d’avoir une adresse en %2$s et d’afficher le cadenas dans le navigateur est un bon indice que votre site respecte certaines bases de sécurité web, ce qui permet d’établir une relation de confiance avec les internautes tout comme avec les moteurs de recherche." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:34 +msgid "Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different." +msgstr "Même si le terme correspond à deux concepts spécifiques, en pratique cela peut être la même adresse ou des adresses différentes. Par exemple, vous pouvez avoir les fichiers du cœur de WordPress dans le répertoire racine (https://example.com), auquel cas les deux URL seront similaires. Vous pouvez aussi placer les fichiers de WordPress dans un sous répertoire (https://example.com/wordpress). Dans ce cas, l’URL de WordPress et l’URL du site seront différentes." + +#: wp-admin/options-general.php:31 +msgid "Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site." +msgstr "Il est important de différencier URL de WordPress et URL du site. L’URL de WordPress est l’endroit où se trouvent les fichiers d’installation du cœur de WordPress, et l’URL du site est l’adresse qu’un visiteur utilise dans son navigateur pour se rendre sur votre site." + +#: wp-admin/options-discussion.php:324 +msgid "RoboHash (Generated)" +msgstr "RoboHash (généré)" + +#: wp-admin/menu.php:207 +msgctxt "site editor menu item" +msgid "Editor" +msgstr "Éditeur" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:856 +msgid "Allow trackbacks and pingbacks" +msgstr "Autoriser les rétroliens et pings" + +#: wp-admin/includes/meta-boxes.php:833 +msgid "https://wordpress.org/documentation/article/assign-custom-fields/" +msgstr "https://fr.wordpress.org/support/article/custom-fields/" + +#: wp-admin/includes/meta-boxes.php:758 +msgid "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/" +msgstr "https://fr.wordpress.org/support/article/excerpt/" + +#. translators: %s: The function name. +#: wp-admin/includes/file.php:2795 +msgid "%s expects a non-empty string." +msgstr "%s attend une chaine non vide." + +#: wp-admin/includes/file.php:2114 +msgid "The destination directory already exists and could not be removed." +msgstr "Le répertoire de destination existe déjà et ne peut être supprimé." + +#: wp-admin/includes/file.php:2111 +msgid "The destination folder already exists." +msgstr "Le dossier de destination existe déjà." + +#: wp-admin/includes/file.php:2106 +msgid "The source and destination are the same." +msgstr "La source et la destination sont identiques." + +#: wp-admin/includes/file.php:329 wp-admin/options-permalink.php:468 +#: wp-admin/options-permalink.php:500 wp-admin/options-permalink.php:536 +#: wp-admin/plugin-editor.php:326 wp-admin/setup-config.php:487 +#: wp-admin/theme-editor.php:359 +msgid "https://wordpress.org/documentation/article/changing-file-permissions/" +msgstr "https://fr.wordpress.org/support/article/changing-file-permissions/" + +#: wp-admin/includes/class-wp-screen.php:1119 +msgid "Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows." +msgstr "Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas." + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:836 +msgid "Download “%s”" +msgstr "Télécharger « %s »" + +#. translators: %s: The "$dir" argument. +#: wp-admin/includes/class-wp-automatic-updater.php:83 +msgid "The \"%s\" argument must be a non-empty string." +msgstr "L’argument « %s » doit être une chaine non vide." + +#: wp-admin/edit-form-advanced.php:319 +msgid "Documentation on Writing and Editing Posts" +msgstr "Documentation sur la rédaction d’articles" + +#: wp-admin/edit-comments.php:231 wp-admin/user-edit.php:358 +msgid "Documentation on Keyboard Shortcuts" +msgstr "Documentation sur les raccourcis clavier" + +#: wp-admin/edit-comments.php:230 +msgid "Documentation on Comment Spam" +msgstr "Documentation sur les commentaires indésirables" + +#: wp-admin/customize.php:253 +msgid "Documentation on Customizer" +msgstr "Documentation sur l’outil de personnalisation" + +#. translators: The localized WordPress download URL. +#: wp-admin/about.php:469 +msgid "https://wordpress.org/download/" +msgstr "https://wordpress.org/download/" + +#. translators: %s: The major version of WordPress for this branch. +#: wp-admin/about.php:466 +msgid "This is the final release of WordPress %s" +msgstr "Il s’agit de la version finale de WordPress %s" + +#: wp-admin/includes/theme.php:342 +msgid "Site Editor" +msgstr "Éditeur de site" + +#: wp-admin/users.php:66 +msgid "Send password reset sends the user an email with a link to set a new password." +msgstr "Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe." + +#: wp-admin/user-edit.php:856 +msgid "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" +msgstr "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" + +#: wp-admin/upload.php:384 +msgid "Copy URL copies the URL for the media file to your clipboard." +msgstr "Copier l’URL copie l’URL du fichier média dans votre presse-papier." + +#: wp-admin/upload.php:383 +msgid "View will take you to a public display page for that file." +msgstr "Le lien Voir vous mènera vers une page publique pour ce fichier." + +#: wp-admin/upload.php:382 +msgid "Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached)." +msgstr "Le lien Supprimer définitivement détruira le fichier de la médiathèque (ainsi que dans n’importe quelle publication à laquelle il serait attaché)." + +#: wp-admin/upload.php:381 +msgid "Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail." +msgstr "Modifier vous amène à un écran simple pour modifier les métadonnées de ce fichier individuel. Vous pouvez également accéder à cet écran en cliquant sur le nom ou sur la vignette du média." + +#: wp-admin/upload.php:379 +msgid "Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:" +msgstr "Le survol d’une ligne révèle des liens d’action qui vous permettent de gérer les médias. Vous pouvez effectuer les actions suivantes :" + +#: wp-admin/theme-install.php:214 +msgctxt "themes" +msgid "Block Themes" +msgstr "Thèmes basés sur des blocs" + +#: wp-admin/theme-install.php:157 +msgid "Documentation on Block Themes" +msgstr "Documentation sur les thèmes basés sur des blocs" + +#: wp-admin/theme-install.php:149 +msgid "Block themes" +msgstr "Thèmes basés sur des blocs" + +#: wp-admin/theme-install.php:144 +msgid "With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates." +msgstr "Avec un thème basé sur des blocs, vous pouvez disposer et modifier les blocs sans affecter votre contenu en personnalisant ou en créant de nouveaux modèles." + +#: wp-admin/theme-install.php:143 +msgid "A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site." +msgstr "Un thème basé sur des blocs est un thème qui utilise des blocs pour tous les éléments du site, ce qui comprend les menus de navigation, l’en-tête, le contenu ou encore le pied de page du site. Ces thèmes sont conçus pour prendre en charge les fonctionnalités qui vous permettent de modifier et de personnaliser toutes les parties de votre site." + +#: wp-admin/site-health.php:277 +msgid "Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more." +msgstr "Les éléments recommandés sont considérés comme bénéfiques pour votre site. Bien qu’ils ne soient pas aussi prioritaires que les anomalies critiques, ils peuvent inclure des améliorations de performances, d’expérience d’utilisation, et bien plus encore." + +#: wp-admin/site-health.php:264 +msgid "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized." +msgstr "Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité." + +#: wp-admin/site-editor.php:31 wp-admin/site-editor.php:33 +msgid "The theme you are currently using is not compatible with the Site Editor." +msgstr "Le thème que vous utilisez actuellement n’est pas compatible avec l’éditeur de site." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:441 +msgid "Configuration rules for %s:" +msgstr "Règles de configuration pour %s :" + +#. translators: %s: Number of critical Site Health checks. +#: wp-admin/menu.php:377 +msgid "Site Health %s" +msgstr "Santé du site %s" + +#. translators: Hidden accessibility text. +#: wp-admin/options-permalink.php:370 +msgid "Customize permalink structure by selecting available tags" +msgstr "Personnalisez la structure des permaliens en sélectionnant les balises disponibles" + +#. translators: %s: %postname% +#: wp-admin/options-permalink.php:322 +msgid "Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines." +msgstr "Sélectionnez la structure de permaliens de votre site. L’inclusion de la balise %s rend les liens plus faciles à lire et peut aider le référencement de vos publications." + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:313 +msgid "%s removed from permalink structure" +msgstr "%s retiré de la structure de permaliens" + +#: wp-admin/includes/file.php:24 +msgid "Theme Styles & Block Settings" +msgstr "Styles du thème et réglages des blocs" + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/dashboard.php:1916 +msgid "The minimum recommended version of PHP is %s." +msgstr "La version minimale recommandée de PHP est %s." + +#: wp-admin/includes/dashboard.php:1911 +msgid "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance." +msgstr "PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1896 +msgid "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress. Assurez-vous dès que possible que PHP soit mis à jour sur votre serveur. Sinon, vous ne pourrez pas mettre à jour WordPress." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1883 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress. Assurez-vous que PHP est à jour sur votre serveur dès que possible. Sinon, vous ne pourrez plus mettre à niveau WordPress à l’avenir." + +#: wp-admin/includes/class-wp-site-health.php:2833 +msgid "Persistent object cache" +msgstr "Cache objet persistant" + +#: wp-admin/includes/class-wp-site-health.php:2826 +msgid "Page cache" +msgstr "Cache des page" + +#: wp-admin/includes/class-wp-site-health.php:2678 +msgid "You should use a persistent object cache" +msgstr "Vous devriez utiliser un cache objet persistant" + +#. translators: Available object caching services. +#: wp-admin/includes/class-wp-site-health.php:2657 +msgid "Your host appears to support the following object caching services: %s." +msgstr "Votre hébergeur semble prendre en charge les services de cache objet suivants : %s." + +#: wp-admin/includes/class-wp-site-health.php:2652 +msgid "Your hosting provider can tell you if a persistent object cache can be enabled on your site." +msgstr "Votre hébergeur peut vous indiquer si un cache objet persistant peut être activé sur votre site." + +#: wp-admin/includes/class-wp-site-health.php:2645 +msgid "A persistent object cache is not required" +msgstr "Le cache objet persistant n’est pas obligatoire" + +#: wp-admin/includes/class-wp-site-health.php:2634 +msgid "Learn more about persistent object caching." +msgstr "En savoir plus sur la mise en cache objet persistant." + +#: wp-admin/includes/class-wp-site-health.php:2629 +msgid "A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly." +msgstr "Un cache objets persistant rend la base de données de votre site plus efficace, ce qui assure des temps de chargement plus rapides car WordPress peut récupérer le contenu et les réglages de votre site beaucoup plus rapidement." + +#: wp-admin/includes/class-wp-site-health.php:2626 +msgid "A persistent object cache is being used" +msgstr "Un cache objet persistant est utilisé" + +#. translators: Localized Support reference. +#: wp-admin/includes/class-wp-site-health.php:2616 +msgid "https://wordpress.org/documentation/article/optimization/#persistent-object-cache" +msgstr "https://wordpress.org/documentation/article/optimization/#persistent-object-cache (en anglais)" + +#: wp-admin/includes/class-wp-site-health.php:2591 +msgid "A page cache plugin was not detected." +msgstr "Aucune extension de mise en cache des pages n’a été détectée." + +#: wp-admin/includes/class-wp-site-health.php:2588 +msgid "A page cache plugin was detected." +msgstr "Une extension de mise en cache des pages a été détectée." + +#. translators: %d: Number of caching headers. +#: wp-admin/includes/class-wp-site-health.php:2575 +msgid "There was %d client caching response header detected:" +msgid_plural "There were %d client caching response headers detected:" +msgstr[0] "%d en-tête de réponse de cache client a été détecté :" +msgstr[1] "%d en-têtes de réponses de cache client ont été détectés :" + +#: wp-admin/includes/class-wp-site-health.php:2570 +msgid "No client caching response headers were detected." +msgstr "Aucun en-tête de réponse de cache client n’a été détecté." + +#. translators: 1: The response time in milliseconds, 2: The recommended +#. threshold in milliseconds. +#: wp-admin/includes/class-wp-site-health.php:2563 +msgid "Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold." +msgstr "Le temps de réponse médian du serveur était de %1$s millisecondes. Il devrait être inférieur au seuil recommandé de %2$s millisecondes." + +#. translators: 1: The response time in milliseconds, 2: The recommended +#. threshold in milliseconds. +#: wp-admin/includes/class-wp-site-health.php:2556 +msgid "Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold." +msgstr "Le temps de réponse médian du serveur était de %1$s millisecondes. C’est moins que le seuil recommandé de %2$s millisecondes." + +#: wp-admin/includes/class-wp-site-health.php:2549 +msgid "Server response time could not be determined. Verify that loopback requests are working." +msgstr "Le temps de réponse du serveur n’a pas pu être déterminé. Vérifiez que les boucles de requêtes fonctionnent." + +#: wp-admin/includes/class-wp-site-health.php:2542 +msgid "Page cache is detected but the server response time is still slow" +msgstr "La mise en cache des pages est détectée mais le temps de réponse du serveur est toujours lent" + +#: wp-admin/includes/class-wp-site-health.php:2540 +msgid "Page cache is not detected and the server response time is slow" +msgstr "La mise en cache des pages n’est pas détectée et le temps de réponse du serveur est lent" + +#: wp-admin/includes/class-wp-site-health.php:2536 +msgid "Page cache is detected and the server response time is good" +msgstr "La mise en cache des pages est détectée et le temps de réponse du serveur est bon" + +#: wp-admin/includes/class-wp-site-health.php:2533 +msgid "Page cache is not detected but the server response time is OK" +msgstr "La mise en cache des pages n’est pas détectée mais le temps de réponse du serveur est OK" + +#. translators: 1: Error message, 2: Error code. +#: wp-admin/includes/class-wp-site-health.php:2521 +msgid "Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)" +msgstr "Impossible de détecter le cache de la page en raison d’un éventuel problème de boucle de requête. Veuillez vérifier que le test de boucle de requête passe correctement. Erreur : %1$s (code : %2$s)" + +#: wp-admin/includes/class-wp-site-health.php:2517 +msgid "Unable to detect the presence of page cache" +msgstr "Impossible de détecter la présence de la mise en cache des pages" + +#: wp-admin/includes/class-wp-site-health.php:2508 +msgid "Learn more about page cache" +msgstr "En savoir plus sur la mise en cache des pages" + +#: wp-admin/includes/class-wp-site-health.php:2507 +msgid "https://wordpress.org/documentation/article/optimization/#Caching" +msgstr "https://wordpress.org/documentation/article/optimization/#Caching (en anglais)" + +#: wp-admin/includes/class-wp-site-health.php:2493 +msgid "Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:" +msgstr "Le cache de page est détecté en recherchant une éventuelle extension de cache active sur le site, et aussi en effectuant trois requêtes sur la page d’accueil et en recherchant un ou plusieurs en-têtes de réponse de mise en cache du client HTTP parmi les en-têtes suivants :" + +#: wp-admin/includes/class-wp-site-health.php:2492 +msgid "Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits." +msgstr "L’utilisation de la mise en cache des pages améliore la vitesse et les performances de votre site en servant des pages statiques au lieu de générer entièrement chaque page à chaque visite d’un internaute." + +#: wp-admin/includes/class-wp-site-health.php:2458 +msgid "If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance." +msgstr "Si vous voyez toujours cet avertissement après avoir essayé les actions ci-dessous, vous devriez peut-être contacter votre hébergeur pour obtenir de l’aide." + +#: wp-admin/includes/class-wp-site-health.php:2441 +msgid "The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site." +msgstr "L’en-tête d’autorisation est utilisé par les applications tierces que vous avez approuvées pour ce site. Sans cet en-tête, ces applications ne peuvent pas se connecter à votre site." + +#: wp-admin/includes/class-wp-site-health.php:2297 +msgid "When testing the REST API, an unexpected result was returned:" +msgstr "Lors du test de l’API REST, un résultat inattendu a été retourné :" + +#. translators: 1: The WordPress error code. 2: The WordPress error message. +#. translators: 1: The WordPress error code. 2: The HTTP status code error +#. message. +#: wp-admin/includes/class-wp-site-health.php:2285 +#: wp-admin/includes/class-wp-site-health.php:2305 +msgid "REST API Response: (%1$s) %2$s" +msgstr "Réponse de l’API REST : (%1$s) %2$s" + +#. translators: %s: The REST API URL. +#: wp-admin/includes/class-wp-site-health.php:2280 +#: wp-admin/includes/class-wp-site-health.php:2300 +msgid "REST API Endpoint: %s" +msgstr "Point de terminaison de l’API REST : %s" + +#: wp-admin/includes/class-wp-site-health.php:2277 +msgid "When testing the REST API, an error was encountered:" +msgstr "Lors du test de l’API REST, une erreur s’est produite :" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:817 +#: wp-admin/includes/dashboard.php:1889 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas les mises à jour de sécurité. Une mise à jour est nécessaire." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:810 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit plus de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress." + +#: wp-admin/includes/class-wp-site-health.php:789 +msgid "Requirements" +msgstr "Prérequis" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:784 +msgid "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress." +msgstr "Votre site fonctionne avec une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress." + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/class-wp-site-health.php:744 +msgid "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s." +msgstr "PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site. La version minimale recommandée de PHP est %s." + +#: wp-admin/includes/class-wp-site-health.php:609 +msgid "Your site does not have any installed themes." +msgstr "Votre site ne dispose d’aucun thème installé." + +#: wp-admin/includes/class-wp-site-health.php:441 +msgid "Your site does not have any active plugins." +msgstr "Votre site ne dispose d’aucune extension installée." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:188 +msgid "Another attempt will be made with the next release." +msgstr "Une autre tentative sera faite avec la prochaine version." + +#. translators: 1: Name of the constant used. 2: Value of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:78 +msgid "The %1$s constant is defined as %2$s" +msgstr "La constante %1$s est définie à %2$s" + +#. translators: %1$s: The argument name. %2$s: The view name. +#: wp-admin/includes/class-wp-list-table.php:448 +#: wp-admin/includes/class-wp-list-table.php:463 +msgid "The %1$s argument must be a non-empty string for %2$s." +msgstr "Le paramètre %1$s doit être une chaîne non vide pour %2$s." + +#. translators: %s: The $link_data argument. +#: wp-admin/includes/class-wp-list-table.php:431 +msgid "The %s argument must be an array." +msgstr "Le paramètre %s doit être un tableau." + +#. translators: 1: Plugin name, 2: Version number, 3: Plugin URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1188 +#: wp-admin/includes/class-wp-automatic-updater.php:1260 +msgid "- %1$s version %2$s%3$s" +msgstr "- %1$s version %2$s%3$s" + +#. translators: 1: Plugin name, 2: Current version number, 3: New version +#. number, 4: Plugin URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1179 +#: wp-admin/includes/class-wp-automatic-updater.php:1251 +msgid "- %1$s (from version %2$s to %3$s)%4$s" +msgstr "- %1$s (de la version %2$s vers %3$s)%4$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:896 +msgid "Reach out to WordPress Core developers to ensure you'll never have this problem again." +msgstr "Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème." + +#. translators: 1: WordPress version number, 2: Link to update WordPress +#: wp-admin/about.php:463 +msgid "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." +msgstr "Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress." + +#. translators: 1: WordPress version number, 2: Link to update WordPress +#: wp-admin/about.php:460 +msgid "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." +msgstr "Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress." + +#. translators: %s: Version number. +#: wp-admin/about.php:334 +msgid "Learn more about WordPress %s" +msgstr "Savoir plus sur WordPress %s" + +#: wp-admin/includes/ajax-actions.php:1356 +#: wp-admin/includes/ajax-actions.php:1473 +msgid "Please type your comment text." +msgstr "Veuillez saisir le texte de votre commentaire." + +#: wp-admin/users.php:461 wp-admin/users.php:493 +msgid "You cannot remove users." +msgstr "Vous ne pouvez pas supprimer ces comptes." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/user-edit.php:790 +msgid "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." +msgid_plural "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." +msgstr[0] "Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin." +msgstr[1] "Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin." + +#: wp-admin/upgrade.php:141 +msgid "WordPress has been updated! Next and final step is to update your database to the newest version." +msgstr "WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données." + +#: wp-admin/themes.php:208 +msgid "Documentation on Managing Themes" +msgstr "Documentation sur la gestion des thèmes" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:182 +msgid "This information is being used to create a %s file." +msgstr "Ces informations sont utilisées pour créer un fichier %s." + +#: wp-admin/setup-config.php:170 +msgid "Welcome to WordPress. Before getting started, you will need to know the following items." +msgstr "Bienvenue sur WordPress. Avant de commencer, vous aurez besoin de connaître les éléments suivants." + +#: wp-admin/options.php:354 +msgid "Settings save failed." +msgstr "L’enregistrement des réglages a échoué." + +#: wp-admin/options-privacy.php:201 +msgid "After your Privacy Policy page is set, you should edit it." +msgstr "Après avoir défini votre page de politique de confidentialité, vous devez la modifier." + +#. translators: 1: .htaccess, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A +#: wp-admin/options-permalink.php:534 +msgid "Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all." +msgstr "Erreur : votre fichier %1$s n’est pas accessible en écriture, il n’a donc pas été possible de le mettre à jour automatiquement. Voici les règles mod_rewrite que vous devriez avoir dans votre fichier %1$s. Cliquez dans le champs et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner." + +#. translators: 1: web.config, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A, +#. 5: Element code. +#: wp-admin/options-permalink.php:466 +msgid "Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file." +msgstr "Erreur : votre fichier %1$s n’est pas accessible en écriture, donc sa mise à jour automatique n’a pas été possible. Il s’agit de la règle de réécriture d’URL que vous devriez avoir dans le fichier %1$s. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Ensuite, insérez cette règle dans l’élément %5$s du fichier %1$s." + +#: wp-admin/options-discussion.php:252 +msgid "An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site." +msgstr "Un avatar est une image qui peut être associée à un compte sur plusieurs sites. Dans cette zone, vous pouvez choisir d’afficher les avatars des comptes qui interagissent avec le site." + +#: wp-admin/includes/post.php:1580 +msgid "Change Permalink Structure" +msgstr "Modifier la structure des permaliens" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-admin/includes/misc.php:1486 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"Someone with administrator capabilities recently requested to have the\n" +"administration email address changed on this site:\n" +"###SITEURL###\n" +"\n" +"To confirm this change, please click on the following link:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour ###USERNAME###,\n" +"\n" +"Quelqu’un ayant les droits d’administrateur ou d’administratrice a récemment demandé de modifier l’adresse e-mail de l’administration de ce site :\n" +"###SITEURL###\n" +"\n" +"Pour confirmer cette modification, veuillez cliquer sur le lien suivant :\n" +"###ADMIN_URL###\n" +"\n" +"Vous pouvez ignorer et supprimer cet e-mail si vous ne souhaitez pas effectuer cette action.\n" +"\n" +"Cet e-mail a été envoyé à ###EMAIL###\n" +"\n" +"Salutations,\n" +"L’équipe de ###SITENAME###\n" +"###SITEURL###" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:600 +msgid "Where your data is sent" +msgstr "Où vos données sont envoyées" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:824 +msgid "Copy “%s” URL to clipboard" +msgstr "Copier l’URL de “%s” dans le presse-papier" + +#: wp-admin/includes/class-wp-automatic-updater.php:911 +msgid "Some data that describes the error your site encountered has been put together." +msgstr "Des données relatives à l’erreur rencontrée par votre site ont été recueillies." + +#: wp-admin/includes/class-wp-automatic-updater.php:845 +msgid "An attempt was made, but your site could not be updated automatically." +msgstr "Une tentative a été faite, mais votre site n’a pas pu être mis à jour automatiquement." + +#: wp-admin/includes/class-theme-installer-skin.php:248 +msgctxt "theme" +msgid "Active" +msgstr "Actif" + +#: wp-admin/includes/class-core-upgrader.php:162 +#: wp-admin/includes/class-wp-upgrader.php:205 +#: wp-admin/includes/update-core.php:1022 +msgid "The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions." +msgstr "La mise à jour ne peut pas être installée car certains fichiers n’ont pas pu être copiés. Ceci est généralement dû à des incohérences dans les droits des fichiers." + +#: wp-admin/export-personal-data.php:42 +msgid "Media — A list of URLs for media files the user uploads." +msgstr "Médias — Une liste d’URL pour les téléversements de médias effectués par le compte." + +#: wp-admin/export-personal-data.php:39 +msgid "Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information." +msgstr "Emplacement des évènements communautaires — L’adresse IP du compte, qui alimente le widget du tableau de bord des évènements communautaires à venir avec des informations pertinentes." + +#: wp-admin/export-personal-data.php:37 +msgid "WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:" +msgstr "WordPress collecte (mais ne publie jamais) une quantité limitée de données des personnes inscrites qui se sont connectées sur le site. En général, ce sont des personnes qui contribuent au site d’une certaine façon : contenu, gestion de boutique, et ainsi de suite. Hormis de rares exceptions, ces comptes n’incluent pas les visiteurs occasionnels qui pourraient s’être inscrits pour commenter des articles ou acheter des produits. Les données que WordPress conserve peuvent inclure :" + +#: wp-admin/export-personal-data.php:28 +msgid "Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses." +msgstr "Remarque : Étant donné que cet outil collecte uniquement des données de WordPress et des extensions qui y contribuent, vous pourriez avoir besoin d’aller plus loin pour que vos demandes d’exportations soient conformes. Par exemple, vous devriez également envoyer au demandeur une partie des données collectées ou conservées par les services tiers que votre entreprise ou votre site utilise." + +#: wp-admin/export-personal-data.php:26 +msgid "Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the \"Right of Data Portability\". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another." +msgstr "Les lois sur la protection de la vie privée du monde entier exigent des entreprises et des services en ligne qu’ils fournissent une exportation de certaines des données qu’ils recueillent sur les individus, et qu’ils fournissent cette exportation sur demande. Les droits que ces lois garantissent sont souvent appelés « droit à la portabilité des données ». Cela permet aux personnes d’obtenir et de réutiliser leurs données personnelles à leurs propres fins dans différents services. L’objectif est de leur permettre de déplacer, copier ou transférer facilement leurs données personnelles d’un environnement informatique à un autre." + +#: wp-admin/erase-personal-data.php:41 +msgid "Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS)." +msgstr "Commentaires : WordPress ne supprime pas les commentaires. Le logiciel anonymise (et ne publie jamais) les informations associées comme l’adresse e-mail, l’adresse IP ou l’agent utilisateur (navigateur et système d’exploitation)." + +#: wp-admin/erase-personal-data.php:37 +msgid "WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:" +msgstr "WordPress collecte (mais ne publie jamais) une quantité limitée de données des comptes connectés mais ces données sont ensuite supprimées ou anonymisées. Ces données peuvent inclure :" + +#: wp-admin/erase-personal-data.php:28 +msgid "Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted." +msgstr "Note : comme cet outil recueille uniquement des données provenant de WordPress et des extensions utilisées, il se peut que vous deviez faire davantage pour vous conformer aux demandes d’effacement de données. Par exemple, il vous incombe également de veiller à ce que les données collectées ou stockées par les services tiers utilisés par votre organisation soient aussi effacées." + +#: wp-admin/erase-personal-data.php:26 +msgid "Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the \"Right to be Forgotten\"." +msgstr "Les lois sur la protection de la vie privée en vigueur dans le monde entier obligent les entreprises et les services en ligne à supprimer, anonymiser ou oublier les données recueillies sur une personne. Les droits que ces lois garantissent sont souvent appelés « droit à l’oubli »." + +#: wp-admin/erase-personal-data.php:25 +msgid "This screen is where you manage requests to erase personal data." +msgstr "Cet écran vous permet de gérer les demandes de suppression de données personnelles." + +#: wp-admin/edit-form-advanced.php:469 +msgid "This post is being backed up in your browser, just in case." +msgstr "Cette publication est sauvegardée dans votre navigateur, au cas où." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/authorize-application.php:185 +msgid "This will grant access to the %2$s site on the network as you have Super Admin rights." +msgid_plural "This will grant access to all %2$s sites on the network as you have Super Admin rights." +msgstr[0] "Ceci vous donne accès à %2$s site sur le réseau étant donné que vous avez des droits de Super Admin." +msgstr[1] "Ceci vous donne accès à l’ensemble des %2$s sites sur le réseau étant donné que vous avez des droits de Super Admin." + +#: wp-admin/includes/dashboard.php:2133 +msgid "Learn about block themes" +msgstr "En savoir plus sur les thèmes de blocs" + +#: wp-admin/includes/dashboard.php:2132 +msgid "There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles." +msgstr "Il existe maintenant une nouvelle sorte de thème WordPress : les thèmes basés sur des blocs. Ils vous donnent la possibilité de construire le site que vous avez toujours voulu, en agençant des blocs et en leur donnant des styles graphiques." + +#: wp-admin/includes/dashboard.php:2098 +msgid "Add a new page" +msgstr "Ajouter nouvelle page" + +#: wp-admin/includes/dashboard.php:2131 +msgid "Discover a new way to build your site." +msgstr "Découvrez un nouveau moyen de construire votre site." + +#: wp-admin/includes/dashboard.php:2115 +msgid "Open the Customizer" +msgstr "Ouvrir la Personnalisation" + +#: wp-admin/includes/dashboard.php:2108 +msgid "Customize your entire site with block themes" +msgstr "Personnalisez votre site entier avec les blocs" + +#: wp-admin/includes/dashboard.php:2110 +msgid "Open site editor" +msgstr "Ouvrir l'éditeur de site" + +#. translators: %s: Current WordPress version. +#: wp-admin/includes/dashboard.php:2084 +msgid "Learn more about the %s version." +msgstr "En savoir plus sur la version %s." + +#: wp-admin/includes/dashboard.php:2113 +msgid "Configure your site’s logo, header, menus, and more in the Customizer." +msgstr "Configurez le logo de votre site, le header, les menus et plus dans la Personnalisation." + +#: wp-admin/includes/dashboard.php:2112 +msgid "Start Customizing" +msgstr "Démarrer la Personnalisation" + +#: wp-admin/includes/dashboard.php:2127 +msgid "Switch up your site’s look & feel with Styles" +msgstr "Modifiez l’apparence de votre site avec les styles globaux" + +#: wp-admin/includes/dashboard.php:2128 +msgid "Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?" +msgstr "Ajustez votre site, ou donnez-lui une apparence totalement nouvelle ! Laissez libre cours à votre imagination… que diriez vous d’une nouvelle palette de couleurs ou de nouvelles polices d’écriture ?" + +#: wp-admin/includes/dashboard.php:2109 +msgid "Design everything on your site — from the header down to the footer, all using blocks and patterns." +msgstr "Bâtissez l’ensemble de votre site, de l’en-tête au pied de page, en utilisant simplement des blocs et des compositions." + +#: wp-admin/includes/dashboard.php:2097 +msgid "Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash." +msgstr "Les compositions de blocs sont des mises en page de blocs pré-configurées. Utilisez-les pour vous en inspirer ou pour créer des nouvelles page en un clin d’œil." + +#: wp-admin/includes/dashboard.php:2096 +msgid "Author rich content with blocks and patterns" +msgstr "Créez des contenus riches avec les blocs et les compositions" + +#: wp-admin/menu.php:285 wp-admin/menu.php:286 wp-admin/menu.php:315 +#: wp-admin/network/menu.php:107 +msgid "Plugin File Editor" +msgstr "Éditeur de fichiers des extensions" + +#: wp-admin/menu.php:265 wp-admin/menu.php:266 wp-admin/network/menu.php:82 +msgid "Theme File Editor" +msgstr "Éditeur de fichiers des thèmes" + +#. translators: %s: Documentation URL. +#: wp-admin/user-edit.php:855 +msgid "If this is a development website you can set the environment type accordingly to enable application passwords." +msgstr "S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications." + +#. translators: Last update time format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/update-core.php:1115 +msgid "g:i a T" +msgstr "g:i a T" + +#: wp-admin/user-edit.php:850 +msgid "The application password feature requires HTTPS, which is not enabled on this site." +msgstr "La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site." + +#: wp-admin/theme-editor.php:53 +msgid "Documentation on Editing Themes" +msgstr "Documentation sur l’éditeur de thèmes" + +#: wp-admin/site-health.php:90 +msgid "Documentation on Site Health tool" +msgstr "Documentation sur l’outil Santé du site" + +#: wp-admin/site-health.php:84 +msgid "In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support." +msgstr "Dans l’onglet Informations, vous trouverez tous les détails concernant la configuration de votre site WordPress, le serveur, et la base de données. Il existe également une fonctionnalité d’exportation qui vous permet de copier toutes les informations concernant votre site vers le presse-papiers, ce qui vous aidera à résoudre les problèmes sur votre site lorsque vous chercherez de l’aide sur les forums." + +#: wp-admin/site-health.php:83 +msgid "In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention." +msgstr "Dans l’onglet État, vous pouvez voir les informations critiques concernant votre configuration de WordPress, ainsi que tout ce qui requiert votre attention." + +#: wp-admin/site-health.php:82 +msgid "This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation." +msgstr "Cet écran vous permet d’obtenir un diagnostic de santé de votre site, et affiche une évaluation globale de l’état de votre installation." + +#: wp-admin/options-privacy.php:47 +msgid "Documentation on Privacy Settings" +msgstr "Documentation sur les réglages de confidentialité" + +#: wp-admin/options-privacy.php:41 +msgid "This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate." +msgstr "Cet écran comprend des suggestions pour vous aider à rédiger votre propre politique de confidentialité. Cependant, il est de votre responsabilité d’utiliser correctement ces ressources, de fournir les informations requises par votre politique de confidentialité, et de maintenir ces informations à jour et exactes." + +#: wp-admin/options-privacy.php:40 +msgid "The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show." +msgstr "L’écran Confidentialité vous permet soit de créer une nouvelle page de politique de confidentialité, soit de choisir une page existante à afficher." + +#: wp-admin/options-discussion.php:66 +msgid "Individual posts may override these settings. Changes here will only be applied to new posts." +msgstr "Des publications individuelles peuvent surcharger ces réglages. Les modifications ne seront ici appliquées qu’aux nouvelles publications." + +#: wp-admin/nav-menus.php:592 +msgid "Menu item removed" +msgstr "Élément de menu supprimé" + +#: wp-admin/index.php:37 +msgid "The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title." +msgstr "Le Tableau de bord est le premier endroit sur lequel vous arrivez à chaque fois que vous vous connectez à votre site. C’est là que vous trouverez tous vos outils WordPress. Si vous avez besoin d’aide, cliquez simplement sur l’onglet « Aide » au dessus du titre de l’écran." + +#: wp-admin/nav-menus.php:595 +msgid "Menu item moved to the top" +msgstr "Élément de menu déplacé vers le haut" + +#: wp-admin/index.php:36 +msgid "Welcome to your WordPress Dashboard!" +msgstr "Bienvenue dans votre Tableau de bord WordPress!" + +#: wp-admin/includes/user.php:680 +msgid "The application ID must be a UUID." +msgstr "L’ID de l’application doit être un UUID." + +#: wp-admin/includes/dashboard.php:1386 +msgid "Select location" +msgstr "Choisissez un lieu" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:1198 +msgid "Visit plugin site for %s" +msgstr "Visiter le site du plugin %s" + +#: wp-admin/includes/class-wp-debug-data.php:936 +msgid "Max connections number" +msgstr "Nombre maximum de connexions" + +#: wp-admin/includes/class-wp-debug-data.php:931 +msgid "Max allowed packet size" +msgstr "Taille maximum autorisée du paquet" + +#: wp-admin/includes/class-wp-plugins-list-table.php:854 +#: wp-admin/includes/class-wp-plugins-list-table.php:960 +msgctxt "plugin" +msgid "Cannot Activate" +msgstr "Impossible à activer" + +#: wp-admin/authorize-application.php:94 +msgid "Your website appears to use Basic Authentication, which is not currently compatible with application passwords." +msgstr "Votre site semble utiliser une authentification de base, ce qui n’est actuellement pas compatible avec les mots de passe d’applications." + +#. translators: Editor admin screen title. 1: "Edit item" text for the post +#. type, 2: Post title. +#: wp-admin/admin-header.php:60 +msgid "%1$s “%2$s”" +msgstr "%1$s « %2$s »" + +#: wp-admin/includes/theme.php:347 +msgid "Template Editing" +msgstr "Modification de modèles" + +#: wp-admin/credits.php:63 +msgid "Want to see your name in lights on this page?" +msgstr "Voudriez-vous voir votre nom cité sur cette page ?" + +#. translators: 1: https://wordpress.org/about +#: wp-admin/credits.php:52 +msgid "WordPress is created by a worldwide team of passionate individuals." +msgstr "WordPress est créé par une équipe de personnes passionnées répartie dans le monde entier." + +#. translators: %s: https://wordpress.org/about/license +#: wp-admin/freedoms.php:52 +msgid "WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL." +msgstr "WordPress est distribué avec des droits impressionnants qui changent la vision du monde grâce à sa licence, la GPL." + +#: wp-admin/credits.php:57 wp-admin/credits.php:65 +msgid "Get involved in WordPress." +msgstr "Contribuez à WordPress." + +#. translators: %s: Name of deactivated plugin. +#: wp-admin/includes/plugin.php:2658 +msgid "%s plugin deactivated during WordPress upgrade." +msgstr "Extension « %s » désactivée pendant la mise à jour de WordPress." + +#. translators: 1: Name of deactivated plugin, 2: Plugin version deactivated, +#. 3: Current WP version. +#: wp-admin/includes/plugin.php:2646 +msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s." +msgstr "L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s." + +#. translators: 1: Name of deactivated plugin, 2: Plugin version deactivated, +#. 3: Current WP version, 4: Compatible plugin version. +#: wp-admin/includes/plugin.php:2637 +msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." +msgstr "L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus." + +#: wp-admin/freedoms.php:30 +msgid "The Four Freedoms" +msgstr "Les quatre libertés" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:1247 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:636 +msgctxt "theme" +msgid "Delete %s" +msgstr "Supprimer %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:623 wp-admin/themes.php:993 +msgctxt "theme" +msgid "Live Preview %s" +msgstr "Prévisualiser %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:609 wp-admin/themes.php:980 +msgctxt "theme" +msgid "Customize %s" +msgstr "Personnaliser %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:585 wp-admin/themes.php:956 +msgctxt "theme" +msgid "View Theme Details for %s" +msgstr "Voir les détails du thème %s" + +#. translators: Hidden accessibility text. +#: wp-admin/site-health.php:176 +msgid "Toggle extra menu items" +msgstr "Permuter les éléments de menu additionnels" + +#. translators: %s: The currently displayed tab. +#: wp-admin/site-health.php:43 +msgid "Site Health - %s" +msgstr "Santé du site – %s" + +#. translators: 1: wp-config.php, 2: Documentation URL. +#: wp-admin/setup-config.php:485 +msgid "You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information." +msgstr "Vous devez rendre le fichier %1$s accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Changer les droits des fichiers pour plus d’informations." + +#: wp-admin/options-permalink.php:478 wp-admin/options-permalink.php:510 +#: wp-admin/options-permalink.php:545 +msgid "Rewrite rules:" +msgstr "Règles de réécriture :" + +#: wp-admin/nav-menus.php:1162 +msgid "List of menu items selected for deletion:" +msgstr "Liste des éléments de menu sélectionnés pour la suppression :" + +#: wp-admin/nav-menus.php:1160 +msgid "Remove Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: wp-admin/nav-menus.php:1123 wp-admin/nav-menus.php:1158 +msgid "Bulk Select" +msgstr "Sélection groupée" + +#. translators: %s: Item name. +#: wp-admin/nav-menus.php:590 +msgid "Deleted menu item: %s." +msgstr "Élément de menu supprimé : %s." + +#. translators: %s: Item name. +#: wp-admin/nav-menus.php:588 +msgid "item %s" +msgstr "élément %s" + +#. translators: %s: Error message. +#: wp-admin/includes/privacy-tools.php:419 +msgid "Unable to encode the personal data for export. Error: %s" +msgstr "Impossible d’encoder les données personnelles pour l’exportation. Erreur : %s" + +#. translators: %s: Post meta key. +#: wp-admin/includes/privacy-tools.php:404 +msgid "The %s post meta must be an array." +msgstr "La metadonnée de publication %s doit être un tableau." + +#: wp-admin/includes/dashboard.php:2025 +msgid "Your site’s health is looking good, but there is still one thing you can do to improve its performance and security." +msgstr "La santé de votre site semble bonne, mais il y a encore une chose que vous pouvez faire pour améliorer ses performances et sa sécurité." + +#. translators: %s: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1757 +msgid "Learn how to browse happy" +msgstr "Apprenez comment naviguer sereinement" + +#: wp-admin/includes/dashboard.php:1724 +msgid "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." +msgstr "Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site." + +#. translators: %s: Number of available theme updates. +#: wp-admin/menu.php:204 wp-admin/network/menu.php:63 +msgid "Themes %s" +msgstr "Thèmes %s" + +#: wp-admin/includes/dashboard.php:2021 +msgid "Your site has a critical issue that should be addressed as soon as possible to improve its performance and security." +msgstr "Votre site a un problème critique qui doit être résolu dès que possible pour améliorer ses performances et sa sécurité." + +#: wp-admin/includes/class-wp-debug-data.php:665 +msgid "GD supported file formats" +msgstr "Formats de fichier GD pris en charge" + +#: wp-admin/includes/class-wp-debug-data.php:625 +msgid "Unable to determine" +msgstr "Impossible à déterminer" + +#: wp-admin/includes/class-wp-debug-data.php:624 +msgid "ImageMagick supported file formats" +msgstr "Formats de fichier ImageMagik pris en charge" + +#: wp-admin/includes/class-wp-debug-data.php:543 +msgid "Imagick version" +msgstr "Version de Imagick" + +#: wp-admin/includes/class-theme-installer-skin.php:248 +msgctxt "theme" +msgid "Uploaded" +msgstr "Téléversé" + +#: wp-admin/includes/class-plugin-installer-skin.php:313 +msgctxt "plugin" +msgid "Replace current with uploaded" +msgstr "Remplacer l’extension actuelle par celle que vous avez téléversée" + +#: wp-admin/includes/class-plugin-installer-skin.php:225 +msgctxt "plugin" +msgid "Uploaded" +msgstr "Téléversé" + +#: wp-admin/includes/class-plugin-installer-skin.php:224 +msgctxt "plugin" +msgid "Current" +msgstr "Actuel" + +#. translators: %s: A link to activate the Link Manager plugin. +#: wp-admin/includes/bookmark.php:370 +msgid "Please activate the Link Manager plugin to use the link manager." +msgstr "Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien." + +#: wp-admin/options-privacy.php:265 +msgid "Create a new Privacy Policy page" +msgstr "Créer une nouvelle page de politique de confidentialité" + +#: wp-admin/export-personal-data.php:132 +msgid "Send personal data export confirmation email." +msgstr "Envoyer l'e-mail de confirmation d’exportation des données personnelles." + +#: wp-admin/export-personal-data.php:108 +msgid "This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file." +msgstr "Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en exportant les données connues d’un compte donné dans un fichier ZIP." + +#: wp-admin/export-personal-data.php:65 +msgid "Documentation on Export Personal Data" +msgstr "Documentation sur l’exportation de données personnelles (en anglais)" + +#: wp-admin/export-personal-data.php:58 +msgid "Plugin authors can learn more about how to add the Personal Data Exporter to a plugin here." +msgstr "Les auteurs et autrices d’extensions peuvent en savoir plus sur l’ajout d’un exportateur de données personnelles à leurs extensions en suivant ce lien (en anglais)." + +#: wp-admin/export-personal-data.php:57 +msgid "Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well." +msgstr "De nombreuses extensions peuvent collecter ou stocker des données personnelles dans la base de données WordPress ou sur leurs propres serveurs. Toute demande d’exportation de données personnelles doit également inclure les données des extensions." + +#. translators: %s: URL to Privacy Policy Guide screen. +#: wp-admin/export-personal-data.php:48 +msgid "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide." +msgstr "Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil d’exportation des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité." + +#: wp-admin/export-personal-data.php:41 +msgid "Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL." +msgstr "Commentaires — Pour tout commentaire fait par l'utilisateur, Adresse E-mail, Adresse IP, Agent Utilisateur (Navigateur/Système d'Exploitation), Date/Heure, Contenu du Commentaire et URL du Contenu." + +#: wp-admin/export-personal-data.php:25 +msgid "This screen is where you manage requests for an export of personal data." +msgstr "Cet écran vous permet de gérer les demandes d'export de données personnelles." + +#: wp-admin/site-health.php:118 +msgid "Site URLs could not be switched to HTTPS." +msgstr "Les URL du site n'ont pas pu être basculés vers HTTPS." + +#: wp-admin/site-health.php:109 +msgid "Site URLs switched to HTTPS." +msgstr "Les URL du site sont passées au HTTPS." + +#: wp-admin/site-health.php:66 +msgid "It looks like HTTPS is not supported for your website at this point." +msgstr "Il semble que HTTPS ne soit pas pris en charge pour votre site Web à ce stade." + +#: wp-admin/site-health.php:62 +msgid "Sorry, you are not allowed to update this site to HTTPS." +msgstr "Désolé, vous n'êtes pas autorisé à mettre à jour ce site en HTTPS." + +#. translators: %s: Number of users. +#: wp-admin/users.php:660 +msgid "Password reset links sent to %s user." +msgid_plural "Password reset links sent to %s users." +msgstr[0] "Le lien de réinitialisation du mot de passe a été envoyé à %s compte." +msgstr[1] "Le lien de réinitialisation du mot de passe a été envoyé à %s comptes." + +#: wp-admin/users.php:657 +msgid "Password reset link sent." +msgstr "Lien de réinitialisation du mot de passe envoyé." + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:722 +msgid "Send %s a link to reset their password. This will not change their password, nor will it force a change." +msgstr "Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas leur mot de passe et ne forcera pas un changement." + +#: wp-admin/user-edit.php:715 +msgid "Send Reset Link" +msgstr "Envoyer le lien de réinitialisation" + +#: wp-admin/privacy-policy-guide.php:95 +msgid "Policies" +msgstr "Politiques de Confidentialité" + +#: wp-admin/options-privacy.php:182 wp-admin/privacy-policy-guide.php:65 +msgid "The Privacy Settings require JavaScript." +msgstr "Les paramètres de confidentialité nécessitent JavaScript." + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/options-privacy.php:172 wp-admin/privacy-policy-guide.php:55 +msgctxt "Privacy Settings" +msgid "Policy Guide" +msgstr "Guide des politiques de Confidentialité" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/options-privacy.php:165 wp-admin/privacy-policy-guide.php:48 +msgctxt "Privacy Settings" +msgid "Settings" +msgstr "Réglages" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:82 +msgid "Re-install version %s" +msgstr "Réinstaller la version %s" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:71 +msgid "Update to latest %s nightly" +msgstr "Mise à jour vers la dernière version %s tous les soirs" + +#: wp-admin/erase-personal-data.php:132 +msgid "Send personal data erasure confirmation email." +msgstr "Envoyer un e-mail de confirmation d'effacement des données personnelles." + +#: wp-admin/erase-personal-data.php:127 wp-admin/export-personal-data.php:127 +msgid "Confirmation email" +msgstr "Email de Confirmation" + +#: wp-admin/erase-personal-data.php:108 +msgid "This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user." +msgstr "Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en supprimant ou en anonymisant les données connues d'un utilisateur donné." + +#: wp-admin/erase-personal-data.php:65 +msgid "Documentation on Erase Personal Data" +msgstr "Documentation sur l'effacement des données personnelles" + +#: wp-admin/erase-personal-data.php:58 +msgid "If you are a plugin author, you can learn more about how to add support for the Personal Data Eraser to a plugin here." +msgstr "Les auteurs de Plugins peuvent en savoir plus sur comment ajoutez la prise en charge de Personal Data Eraser à un plugin ici." + +#: wp-admin/erase-personal-data.php:57 +msgid "Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well." +msgstr "De nombreux plugins peuvent collecter ou stocker des données personnelles soit dans la base de données WordPress, soit à distance. Toute demande d'effacement des données personnelles doit également supprimer les données des plugins." + +#: wp-admin/erase-personal-data.php:55 wp-admin/export-personal-data.php:55 +msgid "Plugin Data" +msgstr "Données de l'Extension" + +#. translators: %s: URL to Privacy Policy Guide screen. +#: wp-admin/erase-personal-data.php:48 +msgid "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide." +msgstr "Si vous n'êtes pas sûr, consultez la documentation de l'Extension ou contactez l'auteur de l'Extension pour voir si l'extension collecte des données et s'il prend en charge l'outil Data Eraser. Ces informations peuvent être disponibles dans le Guide de politique de confidentialité." + +#: wp-admin/erase-personal-data.php:42 +msgid "Media — A list of URLs for all media file uploads made by the user." +msgstr "Fichiers Multimédias : une liste d'URL pour tous les téléversements de fichiers multimédias effectués par l'utilisateur." + +#: wp-admin/erase-personal-data.php:40 wp-admin/export-personal-data.php:40 +msgid "Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login." +msgstr "Jetons de session : informations de connexion de l'utilisateur, adresses IP, date d'expiration, agent utilisateur (navigateur/système d'exploitation) et dernière connexion." + +#: wp-admin/erase-personal-data.php:39 +msgid "Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget." +msgstr "Emplacement des événements communautaires : l'adresse IP de l'utilisateur qui est utilisée pour les événements communautaires à venir affichés dans le widget du tableau de bord." + +#: wp-admin/erase-personal-data.php:38 wp-admin/export-personal-data.php:38 +msgid "Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date." +msgstr "Informations sur le profil : adresse e-mail de l'utilisateur, nom d'utilisateur, nom d'affichage, surnom, prénom, nom, description/bio et date d'enregistrement." + +#: wp-admin/erase-personal-data.php:35 wp-admin/export-personal-data.php:35 +msgid "Default Data" +msgstr "Données par défaut" + +#: wp-admin/erase-personal-data.php:27 wp-admin/export-personal-data.php:27 +msgid "The tool associates data stored in WordPress with a supplied email address, including profile data and comments." +msgstr "L'outil associe les données stockées dans WordPress par une adresse e-mail fournie, y compris les données de profil et les commentaires." + +#: wp-admin/includes/dashboard.php:1491 +msgid "https://make.wordpress.org/community/organize-event-landing-page/" +msgstr "https://make.wordpress.org/community/organize-event-landing-page/" + +#. translators: %s: Localized meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1490 +msgid "Want more events? Help organize the next one!" +msgstr "Vous voulez plus d’évènements ? Aidez à organiser le prochain  !" + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:5625 +msgid "A password reset link was emailed to %s." +msgstr "Un lien de réinitialisation du mot de passe a été envoyé par e-mail à %s." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2401 +msgid "The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled." +msgstr "Le réglage pour %1$s est actuellement configuré à 0, ce qui pourrait causer quelques problèmes lorsque vous essayez de téléverser des fichiers par le biais d’extensions ou de thèmes qui dépendent de différentes méthodes de téléversement. Il est recommandé de configurer ce réglage à une valeur fixe, correspondant idéalement à la valeur de %2$s, car certaines méthodes de téléversement lisent la valeur 0 comme étant soit illimitée, soit désactivée." + +#: wp-admin/includes/ajax-actions.php:5615 +msgid "Cannot send password reset, permission denied." +msgstr "Impossible d'envoyer la réinitialisation du mot de passe, autorisation refusée." + +#: wp-admin/includes/class-wp-site-health.php:1677 +#: wp-admin/includes/class-wp-site-health.php:1684 +msgid "Talk to your web host about supporting HTTPS for your website." +msgstr "Contactez votre hébergeur pour la prise en charge HTTPS sur votre site." + +#: wp-admin/includes/class-wp-site-health.php:1658 +#: wp-admin/includes/class-wp-site-health.php:1666 +msgid "Update your site to use HTTPS" +msgstr "Mettre à jour votre site pour utiliser le HTTPS" + +#. translators: 1: wp-config.php, 2: WP_HOME, 3: WP_SITEURL +#: wp-admin/includes/class-wp-site-health.php:1644 +msgid "However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s." +msgstr "Votre adresse WordPress est actuellement contrôlée par une constante PHP et ne peut donc pas être mise à jour. Vous devez modifier votre %1$s et supprimer ou mettre à jour les définitions de %2$s et de %3$s." + +#: wp-admin/includes/class-wp-site-health.php:1636 +msgid "HTTPS is already supported for your website." +msgstr "Le HTTPS est déjà pris en charge pour votre site." + +#. translators: 1: URL to Settings > General > WordPress Address, 2: URL to +#. Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1625 +msgid "Your WordPress Address and Site Address are not set up to use HTTPS." +msgstr "Votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS." + +#. translators: 1: URL to Settings > General > WordPress Address, 2: URL to +#. Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1615 +msgid "You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default." +msgstr "Vous accédez à ce site en utilisant le HTTPS, mais votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS par défaut." + +#. translators: %s: URL to Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1604 +msgid "Your Site Address is not set up to use HTTPS." +msgstr "Votre adresse de site n’est pas configurée pour utiliser le HTTPS." + +#: wp-admin/includes/class-wp-site-health.php:1493 +msgid "Learn more about debugging in WordPress." +msgstr "En apprendre plus sur le débogage de WordPress." + +#: wp-admin/includes/revision.php:98 +msgid "Added" +msgstr "Ajouté" + +#: wp-admin/includes/class-wp-users-list-table.php:286 +#: wp-admin/includes/class-wp-users-list-table.php:507 +msgid "Send password reset" +msgstr "Envoyer la réinitialisation du mot de passe" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:614 +msgid "Contact information" +msgstr "Informations de contact" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:433 +msgid "Copy suggested policy text to clipboard" +msgstr "Copier la suggestion de texte de politique de confidentialité dans le presse-papiers" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:105 +#: wp-admin/includes/class-wp-theme-install-list-table.php:60 +#: wp-admin/includes/file.php:33 wp-admin/js/updates.js:2991 +msgid "Search Results" +msgstr "Résultats de recherche" + +#: wp-admin/includes/file.php:2024 +msgid "Directory listing failed." +msgstr "Le listage du répertoire a échoué." + +#: wp-admin/includes/privacy-tools.php:944 +msgid "Invalid request ID when processing personal data to erase." +msgstr "ID non valide lors de la fusion des données personnelles à supprimer." + +#: wp-admin/includes/privacy-tools.php:793 +msgid "Invalid request ID when merging personal data to export." +msgstr "ID non valide lors de la fusion des données personnelles à exporter." + +#: wp-admin/includes/privacy-tools.php:545 +msgid "Unable to archive the personal data export file (HTML format)." +msgstr "Impossible d’archiver le fichier d’exportation des données personnelles (format HTML)." + +#: wp-admin/includes/privacy-tools.php:541 +msgid "Unable to archive the personal data export file (JSON format)." +msgstr "Impossible d’archiver le fichier d’exportation des données personnelles (format JSON)." + +#: wp-admin/includes/privacy-tools.php:447 +msgid "Unable to open personal data export (HTML report) for writing." +msgstr "Impossible d’ouvrir le fichier d’exportation des données personnelles (rapport HTML) en écriture." + +#: wp-admin/includes/privacy-tools.php:333 +msgid "Unable to create personal data export folder." +msgstr "Impossible de créer le dossier d’exportation des données personnelles du compte." + +#: wp-admin/includes/privacy-tools.php:173 +msgid "Request added successfully." +msgstr "La demande a bien été ajoutée." + +#: wp-admin/includes/privacy-tools.php:107 +#: wp-admin/includes/privacy-tools.php:124 +msgid "Invalid personal data action." +msgstr "Action des données personnelles non valide." + +#: wp-admin/includes/privacy-tools.php:31 +msgid "Unable to initiate confirmation for personal data request." +msgstr "Impossible d’initier la confirmation pour la demande de données personnelles." + +#: wp-admin/options-writing.php:228 wp-admin/options-writing.php:242 +msgid "https://wordpress.org/documentation/article/update-services/" +msgstr "https://fr.wordpress.org/support/article/update-services/" + +#: wp-admin/includes/dashboard.php:52 +msgid "PHP Update Recommended" +msgstr "Mise à jour PHP recommandée" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1902 +msgid "Your site is running on an outdated version of PHP (%s), which should be updated." +msgstr "Votre site utilise une version obsolète de PHP (%s), qui devrait être mise à jour." + +#: wp-admin/user-edit.php:833 +msgid "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." +msgstr "Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application." + +#: wp-admin/includes/class-wp-site-health.php:2474 +msgid "https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working" +msgstr "https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working" + +#: wp-admin/update-core.php:411 +msgid "This site appears to be under version control. Automatic updates are disabled." +msgstr "Ce site semble être sous contrôle de version. Les mises à jour automatiques sont désactivées." + +#: wp-admin/update-core.php:272 +msgid "You are using a development version of WordPress." +msgstr "Vous utilisez actuellement une version de développement de WordPress." + +#: wp-admin/update-core.php:78 +msgid "You can update to the latest nightly build manually:" +msgstr "Vous pouvez mettre à jour vers la dernière version du jour manuellement :" + +#: wp-admin/update-core.php:431 +msgid "Enable automatic updates for all new versions of WordPress." +msgstr "Activer les mises à jour automatiques pour toutes les nouvelles versions de WordPress." + +#: wp-admin/update-core.php:420 +msgid "Switch to automatic updates for maintenance and security releases only." +msgstr "Basculer sur les mises à jour de maintenance et de sécurité uniquement." + +#. translators: Current version of WordPress. +#: wp-admin/update-core.php:1104 +msgid "Current version: %s" +msgstr "Version actuelle : %s" + +#: wp-admin/update-core.php:435 +msgid "This site will not receive automatic updates for new versions of WordPress." +msgstr "Ce site ne recevra pas de mise à jour automatique pour les nouvelles versions de WordPress." + +#: wp-admin/update-core.php:413 +msgid "This site is automatically kept up to date with each new version of WordPress." +msgstr "Ce site est automatiquement mis à jour avec chaque nouvelle version de WordPress." + +#: wp-admin/update-core.php:318 +msgid "WordPress will only receive automatic security and maintenance releases from now on." +msgstr "À partir de maintenant, WordPress ne recevra que les mises à jour automatiques de sécurité et de maintenance." + +#: wp-admin/update-core.php:309 +msgid "Automatic updates for all WordPress versions have been enabled. Thank you!" +msgstr "Les mises à jour automatiques de toutes les nouvelles versions de WordPress ont été activées. Merci !" + +#: wp-admin/update-core.php:424 +msgid "This site is automatically kept up to date with maintenance and security releases of WordPress only." +msgstr "Ce site est automatiquement mis à jour avec uniquement les versions de maintenance et de sécurité de WordPress." + +#: wp-admin/index.php:82 +msgid "Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website." +msgstr "Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site." + +#. translators: %s: Application name. +#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:974 +#: wp-admin/js/auth-app.js:90 +msgid "Your new password for %s is:" +msgstr "Votre nouveau mot de passe %s est :" + +#: wp-admin/user-edit.php:828 +msgid "Add New Application Password" +msgstr "Ajouter un nouveau mot de passe d'application" + +#: wp-admin/user-edit.php:814 +msgid "Required to create an Application Password, but not to update the user." +msgstr "Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte." + +#: wp-admin/about.php:404 +msgid "Go to Updates" +msgstr "Aller aux mises à jour" + +#: wp-admin/user-edit.php:221 +msgid "← Go to Users" +msgstr "← Aller aux utilisateurs" + +#: wp-admin/revision.php:110 +msgid "← Go to editor" +msgstr "← Aller à l’éditeur" + +#: wp-admin/includes/class-plugin-installer-skin.php:139 +#: wp-admin/includes/class-plugin-installer-skin.php:145 +msgid "Go to Plugin Installer" +msgstr "Aller à l’installeur d’extensions" + +#: wp-admin/includes/class-plugin-installer-skin.php:133 +msgid "Go to Importers" +msgstr "Aller à la page d’importation" + +#: wp-admin/includes/class-theme-installer-skin.php:158 +msgid "Go to Theme Installer" +msgstr "Aller à l’installeur de thèmes" + +#: wp-admin/includes/privacy-tools.php:294 +msgid "Go to top" +msgstr "Aller en haut" + +#. translators: %s is the name of the city we couldn't locate. Replace the +#. examples with cities in your locale, but test that they match the expected +#. location before including them. Use endonyms (native locale names) whenever +#. possible. +#: wp-admin/includes/dashboard.php:1448 +msgid "%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland." +msgstr "Nous ne pouvons localiser %s. Veuillez essayer une autre ville proche. Par exemple : Liège, Namur ou Durbuy." + +#: wp-admin/authorize-application.php:323 +msgid "You will be returned to the WordPress Dashboard, and no changes will be made." +msgstr "Vous serez redirigé vers le Tableau de bord de WordPress, et aucune modification ne sera faite." + +#. translators: %s: The URL the user is being redirected to. +#: wp-admin/authorize-application.php:285 +#: wp-admin/authorize-application.php:319 +msgid "You will be sent to %s" +msgstr "Vous allez être redirigé vers %s" + +#: wp-admin/authorize-application.php:298 +msgid "You will be given a password to manually enter into the application in question." +msgstr "Un mot de passe à saisir manuellement dans l’application en question vous sera donné." + +#: wp-admin/authorize-application.php:271 +msgid "Yes, I approve of this connection" +msgstr "Oui, j’autorise la connection" + +#: wp-admin/authorize-application.php:305 +msgid "No, I do not approve of this connection" +msgstr "Non, je n'approuve pas cette connexion" + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/authorize-application.php:177 +msgid "This will grant access to the %2$s site in this installation that you have permissions on." +msgid_plural "This will grant access to all %2$s sites in this installation that you have permissions on." +msgstr[0] "Cela donnera accès au site sur lequel vous avez des droits sur cette installation." +msgstr[1] "Cela donnera accès aux %2$s sites sur lesquels vous avez des droits sur cette installation." + +#: wp-admin/authorize-application.php:164 +msgid "Would you like to give this application access to your account? You should only do this if you trust the application in question." +msgstr "Voulez-vous fournir à cette application un accès à votre compte ? Vous ne devriez le faire que si vous avez confiance en l’application en question." + +#. translators: %s: Application name. +#: wp-admin/authorize-application.php:158 +msgid "Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question." +msgstr "Voulez-vous fournir un accès à votre compte à l’application s’identifiant comme %s ? Vous ne devriez le faire que si vous avez confiance en l’application en question." + +#: wp-admin/authorize-application.php:152 +msgid "An application would like to connect to your account." +msgstr "Une application souhaite se connecter à votre compte." + +#: wp-admin/authorize-application.php:88 wp-admin/authorize-application.php:95 +#: wp-admin/authorize-application.php:113 +msgid "Cannot Authorize Application" +msgstr "Impossible d’autoriser l’application" + +#: wp-admin/authorize-application.php:66 +msgid "Authorize Application" +msgstr "Autoriser l’application" + +#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:812 +msgid "New Application Password Name" +msgstr "Nouveau nom pour le mot de passe d'application" + +#: wp-admin/authorize-application.php:87 +msgid "The Authorize Application request is not allowed." +msgstr "La demande d’autorisation pour les applications n’est pas autorisée." + +#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:981 +#: wp-admin/js/auth-app.js:98 +msgid "Be sure to save this in a safe location. You will not be able to retrieve it." +msgstr "Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/user-edit.php:782 +msgid "Application passwords grant access to the %2$s site in this installation that you have permissions on." +msgid_plural "Application passwords grant access to all %2$s sites in this installation that you have permissions on." +msgstr[0] "Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation." +msgstr[1] "Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation." + +#: wp-admin/user-edit.php:770 +msgid "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." +msgstr "Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site." + +#: wp-admin/user-edit.php:769 +msgid "Application Passwords" +msgstr "Mots de passe d’application" + +#: wp-admin/user-edit.php:693 +msgid "Type the new password again." +msgstr "Saisissez à nouveau le nouveau mot de passe." + +#: wp-admin/user-new.php:603 +msgid "Type the password again." +msgstr "Saisissez à nouveau le nouveau mot de passe." + +#: wp-admin/user-edit.php:669 +msgid "Set New Password" +msgstr "Définir le nouveau mot de passe" + +#. translators: 1: Installed WordPress version number, 2: URL to WordPress +#. release notes, 3: New WordPress version number, including locale if +#. necessary. +#: wp-admin/update-core.php:142 +msgid "You can update from WordPress %1$s to WordPress %3$s manually:" +msgstr "Vous pouvez mettre à jour de WordPress %1$s à WordPress %3$s manuellement :" + +#. translators: %s: the application password's given name. +#: wp-admin/includes/class-wp-application-passwords-list-table.php:117 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:237 +msgid "Revoke \"%s\"" +msgstr "Révoquer « %s »" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:32 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:118 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:238 +msgid "Revoke" +msgstr "Révoquer" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:31 +msgid "Last IP" +msgstr "Dernière IP" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:30 +msgid "Last Used" +msgstr "Dernier utilisé" + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:139 +msgid "Erase personal data" +msgstr "Effacer les données personnelles" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:156 +msgid "Revoke all application passwords" +msgstr "Révoquer tous les mots de passe d’application" + +#. translators: 1: The Site Health action that is no longer used by core. 2: +#. The new function that replaces it. +#: wp-admin/includes/ajax-actions.php:5353 +#: wp-admin/includes/ajax-actions.php:5386 +#: wp-admin/includes/ajax-actions.php:5419 +#: wp-admin/includes/ajax-actions.php:5469 +msgid "The Site Health check for %1$s has been replaced with %2$s." +msgstr "La fonction %1$s de l’outil Santé du site a été remplacée par %2$s." + +#. translators: 1: Theme name, 2: Current version number, 3: New version +#. number. +#: wp-admin/includes/class-wp-automatic-updater.php:1211 +#: wp-admin/includes/class-wp-automatic-updater.php:1282 +msgid "- %1$s (from version %2$s to %3$s)" +msgstr "- %1$s (de la version %2$s à %3$s)" + +#: wp-admin/includes/template.php:2433 +msgid "Current Header Video" +msgstr "Vidéo d’en-tête actuelle" + +#: wp-admin/includes/class-wp-site-health.php:2469 +msgid "Flush permalinks" +msgstr "Vider les permaliens" + +#: wp-admin/includes/class-wp-site-health.php:2815 +msgid "Authorization header" +msgstr "En-tête d’autorisation" + +#: wp-admin/includes/class-wp-site-health.php:2475 +msgid "Learn how to configure the Authorization header." +msgstr "En savoir davantage sur la configuration des en-têtes d’autorisation." + +#: wp-admin/includes/class-wp-site-health.php:2448 +msgid "The authorization header is missing" +msgstr "L’en-tête d’autorisation manquant" + +#: wp-admin/includes/class-wp-site-health.php:2450 +msgid "The authorization header is invalid" +msgstr "L’en-tête d’autorisation n'est pas valide" + +#: wp-admin/includes/class-wp-site-health.php:2433 +msgid "The Authorization header is working as expected" +msgstr "L’en-tête d’autorisation fonctionne comme prévu" + +#: wp-admin/includes/class-wp-screen.php:1118 +msgid "Some screen elements can be shown or hidden by using the checkboxes." +msgstr "Certains éléments de l’écran peuvent être affichés ou masqués en utilisant les cases à cocher." + +#: wp-admin/includes/class-wp-screen.php:1116 +msgid "Screen elements" +msgstr "Éléments de l’écran" + +#: wp-admin/includes/user.php:751 +msgid "The URL must be served over a secure connection." +msgstr "L’URL doit être accédée via une connexion sécurisée." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:572 +msgid "If you request a password reset, your IP address will be included in the reset email." +msgstr "Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation." + +#. translators: %s: Plugin search term. +#: wp-admin/includes/class-wp-plugins-list-table.php:419 +msgid "No plugins found for: %s." +msgstr "Aucune extension trouvée pour : %s." + +#. translators: %s: Request email. +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:88 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:94 +msgid "Mark export request for “%s” as completed." +msgstr "Marquer la demande d’exportation pour « %s » comme terminée." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:92 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:98 +msgid "Complete request" +msgstr "Demande terminée" + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:341 +msgid "%d request deleted successfully." +msgid_plural "%d requests deleted successfully." +msgstr[0] "%d demande bien supprimée." +msgstr[1] "%d demandes bien supprimées." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:324 +msgid "%d request failed to delete." +msgid_plural "%d requests failed to delete." +msgstr[0] "%d requête non supprimée." +msgstr[1] "%d requêtes non supprimées." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:298 +msgid "%d request marked as complete." +msgid_plural "%d requests marked as complete." +msgstr[0] "%d demande marquée comme terminée." +msgstr[1] "%d demandes marquées comme terminées." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:271 +msgid "%d confirmation request re-sent successfully." +msgid_plural "%d confirmation requests re-sent successfully." +msgstr[0] "%d demande de confirmation renvoyée avec succès." +msgstr[1] "%d demandes de confirmation renvoyées avec succès." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:254 +msgid "%d confirmation request failed to resend." +msgid_plural "%d confirmation requests failed to resend." +msgstr[0] "%d demande de confirmation n’a pas pu être renvoyée." +msgstr[1] "%d demandes de confirmation n’ont pas pu être renvoyées." + +#: wp-admin/includes/class-wp-privacy-requests-table.php:212 +msgid "Mark requests as completed" +msgstr "Marquer les demandes comme terminées" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:46 +msgid "Next steps" +msgstr "Étapes suivantes" + +#: wp-admin/includes/privacy-tools.php:566 +msgid "Unable to open personal data export file (archive) for writing." +msgstr "Impossible d’ouvrir en écriture le fichier (archive) d’exportation des données confidentielles du compte." + +#: wp-admin/includes/privacy-tools.php:432 +msgid "Unable to open personal data export file (JSON report) for writing." +msgstr "Impossible d’ouvrir le fichier (rapport JSON) d’export des données confidentielles du compte." + +#. translators: %s: Search query. +#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:342 +#: wp-admin/edit.php:429 wp-admin/link-manager.php:111 wp-admin/plugins.php:765 +#: wp-admin/upload.php:429 wp-admin/users.php:795 wp-admin/js/updates.js:3081 +#: wp-admin/network/sites.php:389 wp-admin/network/themes.php:374 +#: wp-admin/network/users.php:300 +msgid "Search results for: %s" +msgstr "Résultats de recherche pour : %s" + +#: wp-admin/includes/privacy-tools.php:341 +msgid "Unable to protect personal data export folder from browsing." +msgstr "Impossible de protéger le dossier d’exportation de confidentialité du compte contre l’affichage public." + +#: wp-admin/includes/privacy-tools.php:325 +msgid "Invalid email address when generating personal data export file." +msgstr "Réception d’une adresse e-mail non valide lors de la génération du fichier d’exportation de confidentialité du compte." + +#: wp-admin/includes/privacy-tools.php:319 +msgid "Invalid request ID when generating personal data export file." +msgstr "ID non valide lors de la demande génération du fichier d’exportation de confidentialité du compte." + +#: wp-admin/includes/privacy-tools.php:312 +msgid "Unable to generate personal data export file. ZipArchive not available." +msgstr "Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible." + +#: wp-admin/options-reading.php:46 +msgid "Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive." +msgstr "Notez que même lorsqu’il est paramétré pour décourager les moteurs de recherche, votre site est toujours visible sur le web et que tous les moteurs de recherche ne suivent pas cette directive." + +#: wp-admin/options-reading.php:45 +msgid "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen." +msgstr "Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés ou non. Si vous préférez que ces services ignorent votre site, cochez l’option « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran." + +#: wp-admin/includes/class-wp-debug-data.php:128 +msgid "Environment type" +msgstr "Type d’environnement" + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2390 +msgid "The \"%1$s\" value is smaller than \"%2$s\"" +msgstr "La valeur « %1$s » est inférieure à « %2$s »" + +#: wp-admin/plugins.php:597 +msgid "Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system." +msgstr "Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible." + +#: wp-admin/includes/theme.php:904 wp-admin/themes.php:1123 +msgid "Update Incompatible" +msgstr "Mise à jour non compatible" + +#: wp-admin/update-core.php:733 +msgid "This update does not work with your version of WordPress." +msgstr "Cette mise à jour ne fonctionne pas avec votre version de WordPress." + +#: wp-admin/update-core.php:699 +msgid "This update does not work with your versions of WordPress and PHP." +msgstr "Cette mise à jour ne fonctionne pas avec votre version de WordPress et de PHP." + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:234 wp-admin/options-discussion.php:238 +msgid "Disallowed Comment Keys" +msgstr "Clés de commentaires non autorisées." + +#: wp-admin/includes/class-wp-site-health.php:2772 +msgid "Plugin and theme auto-updates" +msgstr "Mise à jour auto des extensions et thèmes" + +#: wp-admin/includes/class-wp-site-health.php:3104 +msgid "There appear to be no issues with plugin and theme auto-updates." +msgstr "Il ne semble pas y avoir de problème avec les mises à jour automatiques des extensions et des thèmes." + +#: wp-admin/includes/class-wp-site-health.php:3098 +msgid "Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Les mises à jour automatiques des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible." + +#: wp-admin/includes/class-wp-site-health.php:3093 +msgid "Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Les mises à jour automatiques des extensions semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible." + +#: wp-admin/includes/class-wp-site-health.php:3088 +msgid "Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Les mises à jour automatiques des extensions et des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible." + +#: wp-admin/includes/class-wp-site-health.php:3079 +msgid "Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected." +msgstr "Les mises à jour automatiques des extensions et/ou des thèmes semblent désactivées, mais les réglages s’affichent tout de même. Cela pourrait empêcher les mises à jour automatiques de fonctionner normalement." + +#: wp-admin/includes/class-wp-site-health.php:1915 +msgid "Your site may have problems auto-updating plugins and themes" +msgstr "Votre site semble avoir des problèmes avec les mises à jour automatiques des extensions et des thèmes." + +#: wp-admin/includes/class-wp-site-health.php:1904 +msgid "Plugin and theme auto-updates ensure that the latest versions are always installed." +msgstr "Les mises à jour automatiques des extensions et des thèmes permettent de s’assurer qu’ils soient toujours installés dans leur dernière version disponible." + +#: wp-admin/includes/class-wp-site-health.php:1896 +msgid "Plugin and theme auto-updates appear to be configured correctly" +msgstr "Les mises à jour automatiques des extensions et des thèmes semblent correctement configurées" + +#. translators: Hidden accessibility text. %s: Theme name. +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:143 +#: wp-admin/includes/class-theme-upgrader-skin.php:115 +#: wp-admin/includes/class-wp-themes-list-table.php:214 +msgctxt "theme" +msgid "Activate “%s”" +msgstr "Activer « %s »" + +#: wp-admin/includes/ajax-actions.php:5559 +msgid "Sorry, you are not allowed to modify plugins." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les extensions." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2411 +msgid "The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files." +msgstr "Le réglage de %1$s est inférieur à %2$s, ce qui pourrait causer des problèmes lors du téléversement de fichiers." + +#. translators: 1: file_uploads, 2: 0 +#: wp-admin/includes/class-wp-site-health.php:2376 +msgid "%1$s is set to %2$s. You won't be able to upload files on your site." +msgstr "%1$s est réglé sur %2$s. Vous ne pourrez pas téléverser des fichiers sur votre site." + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-site-health.php:2364 +msgid "The %s function has been disabled, some media settings are unavailable because of this." +msgstr "La fonction %s a été désactivée. De ce fait, certains réglages des médias ne sont pas disponibles." + +#. translators: 1: file_uploads, 2: php.ini +#: wp-admin/includes/class-wp-site-health.php:2351 +msgid "The %1$s directive in %2$s determines if uploading files is allowed on your site." +msgstr "La directive %1$s dans le fichier %2$s détermine si le téléversement de fichiers est autorisé sur votre site." + +#: wp-admin/includes/class-wp-debug-data.php:567 +#: wp-admin/includes/class-wp-site-health.php:2768 +msgid "File uploads" +msgstr "Téléversements de fichiers" + +#: wp-admin/includes/class-wp-debug-data.php:584 +msgid "Max number of files allowed" +msgstr "Nombre maximal de fichiers autorisés." + +#: wp-admin/includes/class-wp-debug-data.php:580 +msgid "Max effective file size" +msgstr "Taille de fichier effective maximale." + +#: wp-admin/includes/class-wp-debug-data.php:576 +msgid "Max size of an uploaded file" +msgstr "Taille maximale des fichiers téléversés" + +#: wp-admin/includes/class-wp-debug-data.php:572 +msgid "Max size of post data allowed" +msgstr "Taille maximale autorisée pour les données des publications" + +#: wp-admin/includes/class-wp-debug-data.php:549 +msgid "File upload settings" +msgstr "Réglages des téléversements de fichiers" + +#: wp-admin/includes/class-wp-site-health.php:2341 +msgid "Files can be uploaded" +msgstr "Les fichiers peuvent être téléversés" + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:453 +msgctxt "theme" +msgid "Cannot Install %s" +msgstr "Impossible d’installer %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/deprecated.php:1392 +msgctxt "plugin" +msgid "Install %s" +msgstr "Installer %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-theme-install-list-table.php:335 +#: wp-admin/theme-install.php:446 +msgctxt "theme" +msgid "Install %s" +msgstr "Installer %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:268 wp-admin/includes/update.php:760 +msgctxt "theme" +msgid "Update %s now" +msgstr "Mettre à jour %s maintenant" + +#. translators: 1: Theme name, 2: Version number. +#: wp-admin/includes/class-wp-automatic-updater.php:1219 +#: wp-admin/includes/class-wp-automatic-updater.php:1290 +msgid "- %1$s version %2$s" +msgstr "- %1$s version %2$s" + +#: wp-admin/theme-install.php:414 wp-admin/theme-install.php:493 +msgctxt "theme" +msgid "Activated" +msgstr "Activé" + +#: wp-admin/themes.php:86 +msgid "Sorry, you are not allowed to enable themes automatic updates." +msgstr "Désolé, vous n’avez pas l’autorisation d’activer les mises à jour automatiques de thèmes." + +#: wp-admin/includes/class-plugin-installer-skin.php:211 +msgid "This plugin is already installed." +msgstr "Cette extension est déjà installée." + +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/includes/plugin-install.php:982 wp-admin/includes/update.php:568 +#: wp-admin/js/updates.js:2535 +msgctxt "plugin" +msgid "Update %s now" +msgstr "Mettre à jour %s maintenant" + +#. translators: %s: Importer name. +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/import.php:165 wp-admin/includes/plugin-install.php:960 +#: wp-admin/js/updates.js:1299 wp-admin/js/updates.js:2544 +#: wp-admin/js/updates.js:2680 +msgctxt "plugin" +msgid "Install %s now" +msgstr "Installer %s maintenant" + +#. translators: Hidden accessibility text. +#: wp-admin/user-edit.php:986 wp-admin/js/application-passwords.js:203 +#: wp-admin/js/common.js:1124 +msgid "Dismiss this notice." +msgstr "Ignorer cette notification." + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:431 wp-admin/themes.php:630 +#: wp-admin/themes.php:999 wp-admin/themes.php:1233 +msgctxt "theme" +msgid "Cannot Activate %s" +msgstr "Impossible d’activer %s" + +#: wp-admin/themes.php:336 wp-admin/network/themes.php:434 +msgid "Theme will no longer be auto-updated." +msgstr "Le thème ne sera plus mis à jour automatiquement." + +#: wp-admin/themes.php:327 wp-admin/network/themes.php:423 +msgid "Theme will be auto-updated." +msgstr "Le thème sera mis à jour automatiquement." + +#: wp-admin/themes.php:191 wp-admin/network/themes.php:328 +msgid "Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Les mises à jour automatiques peuvent être activées ou désactivées pour chaque thème. Les thèmes qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron." + +#: wp-admin/edit.php:185 wp-admin/post.php:326 +msgid "Error in deleting the item." +msgstr "Erreur lors de la suppression de l’élément." + +#: wp-admin/themes.php:106 +msgid "Sorry, you are not allowed to disable themes automatic updates." +msgstr "Désolé, vous n’avez pas l’autorisation de désactiver les mises à jour automatiques des thèmes." + +#: wp-admin/plugins.php:469 +msgid "Sorry, you are not allowed to manage plugins automatic updates." +msgstr "Désolé, vous n’êtes pas autorisé à gérer les mises à jour automatiques d’extensions." + +#: wp-admin/edit.php:160 wp-admin/post.php:291 wp-admin/upload.php:320 +msgid "Error in restoring the item from Trash." +msgstr "Erreur lors de la restauration de l’élément depuis la corbeille." + +#: wp-admin/edit.php:132 wp-admin/post.php:261 wp-admin/upload.php:299 +msgid "Error in moving the item to Trash." +msgstr "Erreur lors du déplacement de l’élément vers la corbeille." + +#: wp-admin/plugins.php:741 +msgid "Selected plugins will no longer be auto-updated." +msgstr "Les extensions sélectionnées ne seront plus mises à jour automatiquement." + +#: wp-admin/plugins.php:739 +msgid "Selected plugins will be auto-updated." +msgstr "Les extensions sélectionnées seront mises à jour automatiquement." + +#: wp-admin/plugins.php:737 +msgid "Plugin will no longer be auto-updated." +msgstr "L’extension ne sera plus mise à jour automatiquement." + +#: wp-admin/plugins.php:735 +msgid "Plugin will be auto-updated." +msgstr "L’extension sera mise à jour automatiquement." + +#: wp-admin/plugins.php:596 +msgid "Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Les mises à jour automatiques peuvent être activées ou désactivées extension par extension. Les extensions dont les mises à jour automatiques sont activées afficheront la date estimée de la prochaine mise à jour automatique. Les mises à jour automatiques dépendent du système de planification des tâches de WP-Cron." + +#: wp-admin/plugins.php:473 +msgid "Please connect to your network admin to manage plugins automatic updates." +msgstr "Veuillez vous connecter à l’administration de votre réseau pour gérer les mises à jour automatiques des extensions." + +#. translators: %s: Human-readable time interval. +#: wp-admin/index.php:159 +msgid "The admin email verification page will reappear after %s." +msgstr "La page de vérification de l’e-mail d’administration réapparaîtra après %s." + +#: wp-admin/includes/class-wp-debug-data.php:1203 wp-admin/plugins.php:594 +#: wp-admin/themes.php:197 wp-admin/update-core.php:1025 +#: wp-admin/network/themes.php:326 +msgid "Auto-updates" +msgstr "Mises à jour auto" + +#: wp-admin/plugins.php:598 wp-admin/themes.php:192 +#: wp-admin/update-core.php:1020 wp-admin/network/themes.php:329 +msgid "Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling." +msgstr "Veuillez noter que des thèmes et extensions tiers ou du code personnalisé peuvent passer outre la planification WordPress." + +#: wp-admin/update-core.php:1019 +msgid "Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Les mises à jour automatiques peuvent être activées ou désactivées pour les versions majeures de WordPress et pour chaque thème ou extension. Les thèmes et les extensions qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron." + +#. translators: 1: Documentation on WordPress backups, 2: Documentation on +#. updating WordPress. +#: wp-admin/update-core.php:260 +msgid "Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page." +msgstr "Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, visitez la page de documentation Comment mettre à jour WordPress." + +#: wp-admin/customize.php:199 wp-admin/theme-install.php:434 +#: wp-admin/theme-install.php:496 wp-admin/themes.php:632 +#: wp-admin/themes.php:1001 wp-admin/themes.php:1239 +msgctxt "theme" +msgid "Cannot Activate" +msgstr "Impossible à activer" + +#: wp-admin/async-upload.php:79 +msgctxt "media item" +msgid "Success" +msgstr "Succès" + +#: wp-admin/comment.php:46 +msgid "You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again." +msgstr "Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau." + +#. translators: 1: Current WordPress version, 2: Plugin name, 3: Required +#. WordPress version. +#: wp-admin/includes/plugin.php:1194 +msgctxt "plugin" +msgid "Error: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s." +msgstr "Erreur : la version courante de WordPress (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite WordPress %3$s." + +#. translators: 1: Current PHP version, 2: Plugin name, 3: Required PHP +#. version. +#: wp-admin/includes/plugin.php:1183 +msgctxt "plugin" +msgid "Error: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s." +msgstr "Erreur : la version courante de PHP (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite PHP %3$s." + +#. translators: 1: Current WordPress version, 2: Current PHP version, 3: Plugin +#. name, 4: Required WordPress version, 5: Required PHP version. +#: wp-admin/includes/plugin.php:1170 +msgctxt "plugin" +msgid "Error: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s." +msgstr "Erreur : la version courante de WordPress (%1$s) et PHP (%2$s) ne correspondent pas aux prérequis minimaux pour %3$s. L’extension nécessite WordPress %4$s et PHP %5$s." + +#: wp-admin/includes/ajax-actions.php:5581 +msgid "Invalid data. The item does not exist." +msgstr "Données non valides. L’élément n’existe pas." + +#: wp-admin/includes/ajax-actions.php:5552 +#: wp-admin/includes/ajax-actions.php:5577 +msgid "Invalid data. Unknown type." +msgstr "Données non valides. Type inconnu." + +#: wp-admin/includes/ajax-actions.php:5547 +msgid "Invalid data. Unknown state." +msgstr "Données non valides. État inconnu." + +#: wp-admin/includes/ajax-actions.php:5541 +msgid "Invalid data. No selected item." +msgstr "Données non valides. Aucun élément sélectionné." + +#. translators: %s: Themes screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1315 +msgid "To manage themes on your site, visit the Themes page: %s" +msgstr "Pour gérer les thèmes de votre site, visitez la page des thèmes : %s" + +#. translators: %s: Plugins screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1306 +msgid "To manage plugins on your site, visit the Plugins page: %s" +msgstr "Pour gérer les thèmes de votre site, visitez la page des extensions : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1276 +msgid "These themes are now up to date:" +msgstr "Ces thèmes sont maintenant à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1238 +msgid "These plugins are now up to date:" +msgstr "Ces extensions sont maintenant à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1205 +msgid "These themes failed to update:" +msgstr "Ces thèmes n’ont pas été mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1166 +msgid "These plugins failed to update:" +msgstr "Ces extensions n’ont pas été mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1161 +msgid "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." +msgstr "Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire." + +#: wp-admin/includes/ajax-actions.php:1326 +msgid "You cannot reply to a comment on a draft post." +msgstr "Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon." + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1151 +msgid "Howdy! Themes failed to update on your site at %s." +msgstr "Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1148 +msgid "[%s] Some themes have failed to update" +msgstr "[%s] Certaines mises à jour de thèmes ont échoué" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1143 +msgid "Howdy! Plugins failed to update on your site at %s." +msgstr "Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1140 +msgid "[%s] Some plugins have failed to update" +msgstr "[%s] Certaines mises à jour d’extensions ont échoué" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1135 +msgid "Howdy! Plugins and themes failed to update on your site at %s." +msgstr "Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1132 +msgid "[%s] Some plugins and themes have failed to update" +msgstr "[%s] Certaines mises à jour d’extensions et de thèmes ont échoué" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1122 +msgid "Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1119 +msgid "[%s] Some themes were automatically updated" +msgstr "[%s] Certains thèmes ont été mis à jour automatiquement" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1114 +msgid "Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1111 +msgid "[%s] Some plugins were automatically updated" +msgstr "[%s] Certaines extensions ont été mises à jour automatiquement" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1106 +msgid "Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1103 +msgid "[%s] Some plugins and themes have automatically updated" +msgstr "[%s] Des extensions et thèmes ont été mis à jour automatiquement" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1420 +msgid "Move %s box down" +msgstr "Déplacer la boite %s vers le bas" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1407 +msgid "Move %s box up" +msgstr "Déplacer la boite %s vers le haut" + +#: wp-admin/includes/class-wp-comments-list-table.php:377 +msgctxt "comment" +msgid "Not spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-site-health.php:2735 +msgid "PHP Sessions" +msgstr "Sessions PHP" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1187 +msgid "A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests." +msgstr "Une session PHP a été créée par un appel de fonction %1$s. Cela interfère avec l’API REST et les requêtes de boucle (loopback). La session devrait être fermée par %2$s avant d’effectuer toute requête HTTP." + +#: wp-admin/includes/class-wp-site-health.php:1181 +msgid "An active PHP session was detected" +msgstr "Une session PHP active a été détectée" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1170 +msgid "PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests." +msgstr "Les sessions PHP créées par un appel de fonction %1$s peuvent interférer avec l’API REST et les requêtes de boucle (loopback). Une session active devrait être fermée par %2$s avant d’effectuer toute requête HTTP." + +#: wp-admin/includes/class-wp-site-health.php:1160 +msgid "No PHP sessions detected" +msgstr "Aucune session PHP détectée." + +#: wp-admin/includes/class-wp-list-table.php:170 +#: wp-admin/includes/class-wp-screen.php:1338 +msgid "Extended view" +msgstr "Vue étendue" + +#: wp-admin/includes/class-wp-list-table.php:169 +#: wp-admin/includes/class-wp-screen.php:1334 +msgid "Compact view" +msgstr "Vue compacte" + +#: wp-admin/includes/user.php:183 +msgid "Error: Passwords do not match. Please enter the same password in both password fields." +msgstr "Erreur : les mots de passe ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs." + +#: wp-admin/includes/meta-boxes.php:383 wp-admin/includes/meta-boxes.php:384 +#: wp-admin/js/post.js:794 +msgctxt "post action/button label" +msgid "Schedule" +msgstr "Planifier" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:305 +#: wp-admin/js/updates.js:3100 +msgid "No plugins found. Try a different search." +msgstr "Aucune extension trouvée. Essayez une recherche différente." + +#. translators: %s: Time until the next update. +#: wp-admin/includes/update.php:1158 +msgid "Automatic update scheduled in %s." +msgstr "Mise à jour automatique planifiée dans %s." + +#. translators: %s: Duration that WP-Cron has been overdue. +#: wp-admin/includes/update.php:1152 +msgid "Automatic update overdue by %s. There may be a problem with WP-Cron." +msgstr "La mise à jour automatique est en retard de %s. Il peut y avoir un problème avec WP-Cron." + +#: wp-admin/includes/update.php:1142 +msgid "Automatic update not scheduled. There may be a problem with WP-Cron." +msgstr "Mise à jour automatique non planifiée. Il peut y avoir un problème avec WP-Cron." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:301 +msgid "You are updating a plugin. Be sure to back up your database and files first." +msgstr "Vous mettez à jour une extension. Au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:295 +msgid "You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Vous téléversez une ancienne version d’une extension actuelle. Vous pouvez poursuivre l’installation de l’ancienne version, mais assurez-vous de sauvegarder la base de donnée et les fichiers auparavant." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded plugin. +#: wp-admin/includes/class-plugin-installer-skin.php:280 +#: wp-admin/includes/class-plugin-upgrader.php:512 +msgid "Your WordPress version is %1$s, however the uploaded plugin requires %2$s." +msgstr "Vous utilisez la version %1$s de WordPress, mais l’extension téléversée nécessite la version %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. plugin. +#: wp-admin/includes/class-plugin-installer-skin.php:268 +#: wp-admin/includes/class-plugin-upgrader.php:501 +msgid "The PHP version on your server is %1$s, however the uploaded plugin requires %2$s." +msgstr "Votre serveur utilise la version %1$s de PHP, mais l’extension téléversée nécessite la version %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:259 +msgid "The plugin cannot be updated due to the following:" +msgstr "L’extension ne peut être mise à jour pour la raison suivante :" + +#: wp-admin/includes/class-plugin-installer-skin.php:216 +msgid "Plugin name" +msgstr "Nom de l’extension" + +#: wp-admin/includes/class-theme-upgrader.php:107 +msgid "Theme downgraded successfully." +msgstr "Le thème a bien été rétrogradé." + +#: wp-admin/includes/class-theme-upgrader.php:106 +msgid "Theme downgrade failed." +msgstr "La rétrogradation du thème a échoué." + +#: wp-admin/includes/class-theme-upgrader.php:105 +msgid "Downgrading the theme…" +msgstr "Rétrogradation du thème…" + +#: wp-admin/includes/class-wp-plugins-list-table.php:628 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:483 +msgid "Enable Auto-updates" +msgstr "Activer les mises à jour auto" + +#: wp-admin/includes/image-edit.php:173 +msgid "Restore original image" +msgstr "Restaurer l’image originale" + +#: wp-admin/includes/class-plugin-installer-skin.php:342 +#: wp-admin/includes/class-theme-installer-skin.php:377 +msgid "The uploaded file has expired. Please go back and upload it again." +msgstr "Le fichier téléversé a expiré. Veuillez le téléverser à nouveau." + +#: wp-admin/includes/class-plugin-installer-skin.php:324 +#: wp-admin/includes/class-theme-installer-skin.php:359 +msgid "Cancel and go back" +msgstr "Annuler et revenir en arrière" + +#: wp-admin/includes/class-theme-upgrader.php:99 +msgid "Updating the theme…" +msgstr "Mise à jour du thème…" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1319 +#: wp-admin/themes.php:781 wp-admin/js/updates.js:3416 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:812 +msgid "Enable auto-updates" +msgstr "Activer les mises à jour auto" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1315 +#: wp-admin/themes.php:777 wp-admin/js/updates.js:3405 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:808 +msgid "Disable auto-updates" +msgstr "Désactiver les mises à jour auto" + +#: wp-admin/includes/class-wp-plugins-list-table.php:631 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:487 +msgid "Disable Auto-updates" +msgstr "Désactiver les mises à jour auto" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:580 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:431 +msgid "Auto-updates Disabled (%s)" +msgid_plural "Auto-updates Disabled (%s)" +msgstr[0] "Mises à jour auto désactivées (%s)" +msgstr[1] "Mises à jour auto désactivées (%s)" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:572 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:423 +msgid "Auto-updates Enabled (%s)" +msgid_plural "Auto-updates Enabled (%s)" +msgstr[0] "Mises à jour auto activées (%s)" +msgstr[1] "Mises à jour auto activées (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:477 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:335 +msgid "Automatic Updates" +msgstr "Mises à jour automatiques" + +#: wp-admin/includes/class-wp-plugins-list-table.php:428 +#: wp-admin/plugin-editor.php:34 wp-admin/js/updates.js:1448 +msgid "No plugins are currently available." +msgstr "Aucune extension n’est disponible pour l’instant." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:336 +msgid "You are updating a theme. Be sure to back up your database and files first." +msgstr "Vous mettez à jour un thème. Assurez-vous de sauvegarder votre base de données et vos fichiers d’abord." + +#: wp-admin/includes/class-theme-installer-skin.php:348 +msgctxt "theme" +msgid "Replace active with uploaded" +msgstr "Remplacer l’élément actuel par celui que vous avez téléversé" + +#. translators: %s: Theme error. +#: wp-admin/includes/class-theme-upgrader.php:95 +msgid "The active theme has the following error: \"%s\"." +msgstr "Le thème actif contient l’erreur suivante : « %s »." + +#: wp-admin/includes/class-plugin-installer-skin.php:296 +#: wp-admin/includes/class-plugin-installer-skin.php:302 +#: wp-admin/includes/class-theme-installer-skin.php:331 +#: wp-admin/includes/class-theme-installer-skin.php:337 +#: wp-admin/update-core.php:261 +msgid "https://wordpress.org/documentation/article/wordpress-backups/" +msgstr "https://fr.wordpress.org/support/article/wordpress-backups/" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:330 +msgid "You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Vous téléversez une ancienne version d’un thème actif. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers." + +#: wp-admin/includes/class-theme-installer-skin.php:294 +msgid "The theme cannot be updated due to the following:" +msgstr "Le thème ne peut pas être mis à jour pour les raisons suivantes :" + +#: wp-admin/includes/class-theme-installer-skin.php:270 +msgid "(not found)" +msgstr "(non trouvé)" + +#: wp-admin/includes/class-plugin-installer-skin.php:220 +#: wp-admin/includes/class-theme-installer-skin.php:243 +msgid "Required PHP version" +msgstr "Version de PHP nécessaire" + +#: wp-admin/includes/class-theme-installer-skin.php:239 +msgid "Theme name" +msgstr "Nom du thème" + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded theme. +#: wp-admin/includes/class-theme-installer-skin.php:315 +#: wp-admin/includes/class-theme-upgrader.php:661 +msgid "Your WordPress version is %1$s, however the uploaded theme requires %2$s." +msgstr "Vous utilisez la version %1$s de WordPress, mais le thème téléversé nécessite la version %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. theme. +#: wp-admin/includes/class-theme-installer-skin.php:303 +#: wp-admin/includes/class-theme-upgrader.php:651 +msgid "The PHP version on your server is %1$s, however the uploaded theme requires %2$s." +msgstr "Votre serveur utilise la version %1$s de PHP, mais le thème téléversé nécessite la version %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:219 +#: wp-admin/includes/class-theme-installer-skin.php:242 +msgid "Required WordPress version" +msgstr "Version de WordPress nécessaire" + +#: wp-admin/includes/theme.php:1094 wp-admin/theme-install.php:455 +#: wp-admin/theme-install.php:502 +msgctxt "theme" +msgid "Cannot Install" +msgstr "Impossible d’installer" + +#: wp-admin/includes/theme.php:332 +msgid "Block Editor Patterns" +msgstr "Motifs pour l’éditeur" + +#: wp-admin/includes/class-plugin-upgrader.php:98 +msgid "Plugin downgraded successfully." +msgstr "L’extension a bien été rétrogradée." + +#: wp-admin/includes/class-plugin-upgrader.php:97 +msgid "Plugin downgrade failed." +msgstr "La rétrogradation de l’extension a échoué." + +#: wp-admin/includes/class-plugin-upgrader.php:96 +msgid "Downgrading the plugin…" +msgstr "Rétrogradation de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:90 +msgid "Updating the plugin…" +msgstr "Mise à jour de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:81 +msgid "Could not remove the current plugin." +msgstr "Impossible de supprimer l’extension actuelle." + +#: wp-admin/includes/class-plugin-upgrader.php:80 +msgid "Removing the current plugin…" +msgstr "Suppression de l’extension actuelle…" + +#: wp-admin/includes/class-wp-debug-data.php:1289 +msgid "Auto-update" +msgstr "Mise à jour auto" + +#: wp-admin/includes/class-wp-debug-data.php:1055 +#: wp-admin/includes/class-wp-debug-data.php:1370 +#: wp-admin/includes/class-wp-plugins-list-table.php:1306 +#: wp-admin/themes.php:772 wp-admin/js/updates.js:3418 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:799 +msgid "Auto-updates disabled" +msgstr "Mises à jour auto désactivées" + +#: wp-admin/includes/class-wp-debug-data.php:1053 +#: wp-admin/includes/class-wp-debug-data.php:1368 +#: wp-admin/includes/class-wp-plugins-list-table.php:1304 +#: wp-admin/themes.php:774 wp-admin/js/updates.js:3407 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:797 +msgid "Auto-updates enabled" +msgstr "Mises à jour auto activées" + +#: wp-admin/includes/class-wp-debug-data.php:821 +msgid "Are pretty permalinks supported?" +msgstr "Les permaliens sont-ils pris en charge ?" + +#: wp-admin/includes/class-wp-debug-data.php:760 +msgid "PHP memory limit (only for admin screens)" +msgstr "Limite de mémoire PHP (uniquement pour les écrans d’administration)" + +#: wp-admin/includes/class-wp-debug-data.php:118 +msgid "Is this site discouraging search engines?" +msgstr "Ce site décourage-t-il les moteurs de recherche ?" + +#: wp-admin/includes/theme.php:359 +msgid "Wide Blocks" +msgstr "Blocs larges" + +#: wp-admin/includes/theme.php:333 +msgid "Block Editor Styles" +msgstr "Styles de l’éditeur de bloc" + +#: wp-admin/edit-form-comment.php:123 +msgid "Spam" +msgstr "Indésirable" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:423 wp-admin/setup-config.php:492 +msgid "Unable to write to %s file." +msgstr "Impossible d’écrire dans le fichier %s." + +#. translators: %s: The options page name. +#: wp-admin/options.php:249 +msgid "Error: The %s options page is not in the allowed options list." +msgstr "Erreur : page d’options %s introuvable dans la liste des options autorisées." + +#: wp-admin/import.php:65 wp-admin/themes.php:349 wp-admin/users.php:345 +#: wp-admin/includes/network.php:116 wp-admin/includes/network.php:155 +msgid "Error:" +msgstr "Erreur :" + +#. translators: %s: web.config +#. translators: %s: .htaccess +#: wp-admin/options-permalink.php:183 wp-admin/options-permalink.php:196 +msgid "You should update your %s file now." +msgstr "Vous devez mettre à jour votre fichier %s maintenant." + +#: wp-admin/update-core.php:183 +msgid "This localized version contains both the translation and various other localization fixes." +msgstr "Cette version localisée contient à la fois les traductions et d’autres correctifs de localisation." + +#. translators: 1: Number of issues. 2: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:2037 +msgid "Take a look at the %1$d item on the Site Health screen." +msgid_plural "Take a look at the %1$d items on the Site Health screen." +msgstr[0] "Jetez un œil à %1$d élément sur l’écran de santé du site." +msgstr[1] "Jetez un œil à %1$d éléments sur l’écran de santé du site." + +#: wp-admin/includes/dashboard.php:2027 +msgid "Your site’s health is looking good, but there are still some things you can do to improve its performance and security." +msgstr "L’état de santé de votre site semble correct, mais il reste des choses que vous pourriez faire afin d’améliorer ses performances et sa sécurité." + +#: wp-admin/includes/dashboard.php:2019 +msgid "Great job! Your site currently passes all site health checks." +msgstr "Bon travail ! Votre site passe actuellement toutes les vérifications de santé du site." + +#: wp-admin/includes/dashboard.php:2023 +msgid "Your site has critical issues that should be addressed as soon as possible to improve its performance and security." +msgstr "Votre site rencontre des erreurs critiques qui devraient être réglées dès que possible afin d’améliorer ses performances et sa sécurité." + +#. translators: %s: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:2011 +msgid "Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now." +msgstr "Des contrôles de santé du site seront automatiquement effectués périodiquement pour recueillir des informations sur votre site. Vous pouvez également vous rendre sur l’écran de Santé du site pour recueillir dès maintenant des informations sur votre site." + +#: wp-admin/includes/dashboard.php:1998 +msgid "No information yet…" +msgstr "Aucune information pour le moment…" + +#. translators: 1: upload_max_filesize, 2: php.ini +#: wp-admin/includes/file.php:892 +msgid "The uploaded file exceeds the %1$s directive in %2$s." +msgstr "Le fichier téléversé dépasse la directive %1$s dans %2$s." + +#: wp-admin/includes/class-wp-comments-list-table.php:223 +msgid "No comments found in Trash." +msgstr "Aucun commentaire trouvé dans la corbeille." + +#. translators: 1: php.ini, 2: post_max_size, 3: upload_max_filesize +#: wp-admin/includes/file.php:942 wp-admin/includes/import.php:87 +msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s." +msgstr "Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel. Cette erreur peut également être due au fait que les téléversements sont désactivés dans votre fichier %1$s ou que %2$s est défini comme inférieur à %3$s dans %1$s." + +#: wp-admin/includes/class-wp-site-health.php:3283 +#: wp-admin/js/site-health.js:338 +msgid "A test is unavailable" +msgstr "Un test n’est pas disponible" + +#. translators: 1: The WordPress error message. 2: The WordPress error code. +#: wp-admin/includes/class-wp-site-health.php:3155 +msgid "Error: %1$s (%2$s)" +msgstr "Erreur : %1$s (%2$s)" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:798 +msgid "Your site is running on an older version of PHP (%s), which should be updated" +msgstr "Votre site utilise une version dépréciée de PHP (%s), elle devrait être mise à niveau." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:767 +msgid "Your site is running on an older version of PHP (%s)" +msgstr "Votre site utilise une version ancienne de PHP (%s)" + +#. translators: %s: The current PHP version. +#: wp-admin/includes/class-wp-site-health.php:732 +msgid "Your site is running the current version of PHP (%s)" +msgstr "Votre site utilise la version actuelle de PHP (%s)" + +#: wp-admin/includes/class-wp-media-list-table.php:259 +msgid "No media files found in Trash." +msgstr "Aucun fichier média trouvé dans la corbeille." + +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Year. +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Ending year. +#: wp-admin/includes/class-wp-community-events.php:427 +#: wp-admin/js/dashboard.js:778 +msgid "%1$s %2$d – %3$s %4$d, %5$d" +msgstr "%1$s %2$d – %3$s %4$d, %5$d" + +#. translators: Upcoming events year format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:422 +#: wp-admin/includes/class-wp-community-events.php:432 +#: wp-admin/js/dashboard.js:791 wp-admin/js/dashboard.js:802 +msgctxt "upcoming events year format" +msgid "Y" +msgstr "Y" + +#. translators: Upcoming events day format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:419 +#: wp-admin/includes/class-wp-community-events.php:420 +#: wp-admin/includes/class-wp-community-events.php:429 +#: wp-admin/includes/class-wp-community-events.php:431 +#: wp-admin/js/dashboard.js:789 wp-admin/js/dashboard.js:790 +#: wp-admin/js/dashboard.js:799 wp-admin/js/dashboard.js:801 +msgctxt "upcoming events day format" +msgid "j" +msgstr "j" + +#. translators: Date string for upcoming events. 1: Month, 2: Starting day, 3: +#. Ending day, 4: Year. +#: wp-admin/includes/class-wp-community-events.php:416 +#: wp-admin/js/dashboard.js:776 +msgid "%1$s %2$d–%3$d, %4$d" +msgstr "%1$s %2$d–%3$d, %4$d" + +#. translators: Upcoming events month format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:410 +#: wp-admin/includes/class-wp-community-events.php:411 +#: wp-admin/js/dashboard.js:788 wp-admin/js/dashboard.js:798 +#: wp-admin/js/dashboard.js:800 +msgctxt "upcoming events month format" +msgid "F" +msgstr "F" + +#: wp-admin/includes/class-wp-debug-data.php:913 +msgid "Table prefix" +msgstr "Préfixe de table" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:211 +msgid "Resend confirmation requests" +msgstr "Renvoyer les demandes de confirmation" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:213 +msgid "Delete requests" +msgstr "Supprimer les demandes" + +#: wp-admin/includes/class-wp-site-health.php:2731 +msgid "PHP Default Timezone" +msgstr "Fuseau horaire par défaut de PHP" + +#. translators: %s: date_default_timezone_set() +#: wp-admin/includes/class-wp-site-health.php:1142 +msgid "PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times." +msgstr "Le fuseau horaire par défaut de PHP a été modifié après le chargement de WordPress par un appel à la fonction %s. Cela perturbe le fonctionnement du calcul des dates et des heures." + +#: wp-admin/includes/class-wp-site-health.php:1136 +msgid "PHP default timezone is invalid" +msgstr "Le fuseau horaire par défaut de PHP n’est pas valide." + +#: wp-admin/includes/class-wp-site-health.php:1127 +msgid "PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times." +msgstr "Le fuseau horaire par défaut de PHP a été configuré au chargement de WordPress. Ceci est nécessaire au fonctionnement du calcul des dates et des heures." + +#: wp-admin/includes/class-wp-site-health.php:1119 +msgid "PHP default timezone is valid" +msgstr "Le fuseau horaire par défaut de PHP est valide" + +#. translators: %s: add_menu_page() +#. translators: %s: add_submenu_page() +#: wp-admin/includes/plugin.php:1408 wp-admin/includes/plugin.php:1512 +msgid "The seventh parameter passed to %s should be numeric representing menu position." +msgstr "Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu." + +#. translators: 1: WordPress version number, 2: The PHP extension name needed. +#: wp-admin/includes/update-core.php:1122 +msgid "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." +msgstr "La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s." + +#: wp-admin/includes/class-wp-site-health.php:1307 +msgid "UTF8MB4 is the character set WordPress prefers for database storage because it safely supports the widest set of characters and encodings, including Emoji, enabling better support for non-English languages." +msgstr "WordPress préfère le jeu de caractères UTF8mb4 pour le stockage de ses données, car il propose en toute sécurité le plus large ensemble de caractères et d’encodages, y compris les émojis, ce qui permet de mieux travailler avec les langues autres que l'anglais." + +#: wp-admin/privacy.php:53 +msgid "https://wordpress.org/about/stats/" +msgstr "https://fr.wordpress.org/about/stats/" + +#: wp-admin/export.php:59 +msgid "Documentation on Export" +msgstr "Documentation sur l’exportation" + +#: wp-admin/plugin-install.php:121 +msgid "Documentation on Installing Plugins" +msgstr "Documentation sur l’installation d’extensions" + +#: wp-admin/edit.php:326 +msgid "Documentation on Managing Pages" +msgstr "Documentation sur la gestion des pages" + +#: wp-admin/edit.php:301 +msgid "Documentation on Managing Posts" +msgstr "Documentation sur la gestion des articles" + +#: wp-admin/options-discussion.php:32 +msgid "Documentation on Discussion Settings" +msgstr "Documentation sur les réglages des commentaires" + +#: wp-admin/theme-install.php:156 +msgid "Documentation on Adding New Themes" +msgstr "Documentation sur l’ajout de nouveaux thèmes" + +#: wp-admin/media-new.php:61 +msgid "Documentation on Uploading Media Files" +msgstr "Documentation sur le téléversement de médias" + +#: wp-admin/users.php:83 +msgid "Descriptions of Roles and Capabilities" +msgstr "Description des rôles et des permissions" + +#: wp-admin/users.php:82 +msgid "Documentation on Managing Users" +msgstr "Documentation sur la gestion des comptes" + +#: wp-admin/user-edit.php:77 +msgid "Documentation on User Profiles" +msgstr "Documentation sur l’écran Profil" + +#: wp-admin/options-media.php:41 +msgid "Documentation on Media Settings" +msgstr "Documentation sur les réglages des médias" + +#: wp-admin/import.php:32 +msgid "Documentation on Import" +msgstr "Documentation sur l’import" + +#: wp-admin/options.php:382 +msgid "This page allows direct access to your site settings. You can break things here. Please be cautious!" +msgstr "Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des chose ici, donc faites attention !" + +#. translators: %s: The option/setting. +#: wp-admin/options.php:325 +msgid "The %s setting is unregistered. Unregistered settings are deprecated. See https://developer.wordpress.org/plugins/settings/settings-api/" +msgstr "Le réglage %s n’est pas enregistré. Les réglages non enregistrés ne sont plus acceptés, comme indiqué sur https://developer.wordpress.org/plugins/settings/settings-api/" + +#: wp-admin/tools.php:56 +msgid "Documentation on Tools" +msgstr "Documentation sur l’écran Outils" + +#: wp-admin/edit-form-advanced.php:380 +msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format." +msgstr "Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format." + +#: wp-admin/edit-form-advanced.php:337 +msgid "Documentation on Editing Pages" +msgstr "Documentation sur la modification des pages" + +#: wp-admin/edit-form-advanced.php:336 +msgid "Documentation on Adding New Pages" +msgstr "Documentation sur la création de nouvelles pages" + +#: wp-admin/upload.php:198 wp-admin/upload.php:400 +msgid "Documentation on Media Library" +msgstr "Documentation sur la médiathèque" + +#: wp-admin/revision.php:157 +msgid "Revisions Management" +msgstr "Gestion des révisions" + +#: wp-admin/edit-form-advanced.php:355 +msgid "Documentation on Edit Media" +msgstr "Documentation sur la modification des médias" + +#: wp-admin/plugins.php:607 +msgid "Documentation on Managing Plugins" +msgstr "Documentation sur la gestion des extensions (en anglais)" + +#: wp-admin/index.php:132 +msgid "Documentation on Dashboard" +msgstr "Documentation sur le Tableau de bord" + +#: wp-admin/user-new.php:301 +msgid "Documentation on Adding New Users" +msgstr "Documentation sur l’ajout de nouveaux comptes" + +#. translators: %s: URL to Site Health Status page. +#: wp-admin/site-health-info.php:47 +msgid "This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page." +msgstr "Cette page peut vous afficher tous les détails sur la configuration de votre site WordPress. Pour toute amélioration qui pourrait être apportée, consultez la page État de santé du site." + +#: wp-admin/includes/dashboard.php:2000 wp-admin/site-health.php:137 +msgid "Results are still loading…" +msgstr "Les résultats sont toujours en cours de chargement…" + +#: wp-admin/options-permalink.php:64 +msgid "Documentation on Nginx configuration." +msgstr "Documentation sur la configuration Nginx (en anglais)." + +#: wp-admin/options-permalink.php:61 +msgid "Documentation on Using Permalinks" +msgstr "Documentation sur l’utilisation des permaliens" + +#: wp-admin/options-permalink.php:60 +msgid "Documentation on Permalinks Settings" +msgstr "Documentation sur les réglages des permaliens" + +#: wp-admin/update-core.php:1053 +msgid "Documentation on Updating WordPress" +msgstr "Documentation sur la mise à jour de WordPress" + +#: wp-admin/nav-menus.php:767 +msgid "Documentation on Menus" +msgstr "Documentation sur les menus" + +#: wp-admin/plugin-editor.php:152 +msgid "Documentation on Writing Plugins" +msgstr "Documentation sur l’écriture d’extensions" + +#: wp-admin/theme-editor.php:55 +msgid "Documentation on Template Tags" +msgstr "Documentation sur les marqueurs de modèles" + +#: wp-admin/plugin-editor.php:151 +msgid "Documentation on Editing Plugins" +msgstr "Documentation sur la modification d’extensions" + +#: wp-admin/theme-editor.php:52 +msgid "Documentation on Theme Development" +msgstr "Documentation sur le développement de thèmes" + +#: wp-admin/theme-editor.php:54 +msgid "Documentation on Editing Files" +msgstr "Documentation sur la modification de fichiers" + +#: wp-admin/themes.php:207 +msgid "Documentation on Using Themes" +msgstr "Documentation sur l’utilisation des thèmes" + +#: wp-admin/comment.php:71 wp-admin/edit-comments.php:229 +msgid "Documentation on Comments" +msgstr "Documentation sur les commentaires" + +#. translators: %s: UTC time. +#: wp-admin/options-general.php:389 +msgid "Universal time is %s." +msgstr "L’heure universelle est %s." + +#. translators: %s: UTC abbreviation +#: wp-admin/options-general.php:378 +msgid "Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset." +msgstr "Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire de %s (Temps Universel Coordonné)." + +#: wp-admin/options-general.php:249 +msgid "Administration Email Address" +msgstr "Adresse e-mail d’administration" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:325 +#: wp-admin/theme-editor.php:358 +msgid "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." +msgstr "Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations." + +#: wp-admin/options-general.php:35 wp-admin/options-general.php:238 +msgid "https://wordpress.org/documentation/article/giving-wordpress-its-own-directory/" +msgstr "https://fr.wordpress.org/support/article/giving-wordpress-its-own-directory/" + +#: wp-admin/options-general.php:60 +msgid "Documentation on General Settings" +msgstr "Documentation sur les réglages généraux" + +#: wp-admin/includes/ajax-actions.php:2508 +msgid "Upload failed. Please reload and try again." +msgstr "Téléversement échoué. Veuillez actualiser et réessayer." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:67 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:141 +msgid "Erasure completed." +msgstr "Effacement terminé." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:142 +msgid "Data erasure has failed." +msgstr "L’effacement des données a échoué." + +#: wp-admin/includes/image.php:171 +msgid "The attached file cannot be found." +msgstr "Le fichier attaché ne peut pas être trouvé." + +#: wp-admin/includes/template.php:2335 +msgctxt "page label" +msgid "Privacy Policy Page" +msgstr "Page de politique de confidentialité" + +#: wp-admin/includes/template.php:2330 +msgctxt "page label" +msgid "Posts Page" +msgstr "Page des articles" + +#: wp-admin/includes/template.php:2326 +msgctxt "page label" +msgid "Front Page" +msgstr "Page d’accueil" + +#: wp-admin/includes/template.php:2317 +msgctxt "post status" +msgid "Sticky" +msgstr "Épinglé" + +#: wp-admin/includes/template.php:2309 +msgctxt "post status" +msgid "Customization Draft" +msgstr "Brouillon de personnalisation" + +#: wp-admin/includes/template.php:2295 +msgctxt "post status" +msgid "Password protected" +msgstr "Protégé par mot de passe" + +#. translators: %s: The name of the late cron event. +#: wp-admin/includes/class-wp-site-health.php:1799 +msgid "The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "L'évènement planifié %s, est en retard. Votre site fonctionne toujours, mais cela peut indiquer que la planification des articles ou des mises à jour automatisées peuvent ne pas fonctionner comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:1793 +msgid "A scheduled event is late" +msgstr "Un évènement planifié est en retard" + +#: wp-admin/includes/class-wp-site-health.php:1569 +msgid "An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy." +msgstr "Une connexion HTTPS est un moyen plus sûr de naviguer sur le web. De nombreux services ont maintenant HTTPS comme exigence. HTTPS vous permet de profiter de nouvelles fonctionnalités qui peuvent augmenter la vitesse du site, améliorer les classements de recherche et gagner la confiance de vos visiteurs en aidant à protéger leur vie privée en ligne." + +#. translators: %s: The current version of WordPress installed on this site. +#: wp-admin/includes/class-wp-site-health.php:330 +msgid "Your version of WordPress (%s) is up to date" +msgstr "Votre version de WordPress (%s) est à jour" + +#: wp-admin/includes/ms.php:1172 wp-admin/network/site-new.php:32 +#: wp-admin/network/sites.php:46 +msgid "Documentation on Site Management" +msgstr "Documentation sur la gestion des sites" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:252 +msgid "Publish on: %s" +msgstr "Publier le : %s" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:249 +msgid "Schedule for: %s" +msgstr "Planifier pour le : %s" + +#. translators: Post date information. %s: Date on which the post was +#. published. +#: wp-admin/includes/meta-boxes.php:244 +msgid "Published on: %s" +msgstr "Publié le : %s" + +#. translators: Post date information. %s: Date on which the post is currently +#. scheduled to be published. +#: wp-admin/includes/meta-boxes.php:241 +msgid "Scheduled for: %s" +msgstr "Planifié pour le : %s" + +#. translators: Publish box time format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-comment.php:150 +#: wp-admin/includes/meta-boxes.php:236 wp-admin/includes/meta-boxes.php:442 +msgctxt "publish box time format" +msgid "H:i" +msgstr "H\\h i \\m\\i\\n" + +#. translators: Publish box date format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/edit-form-advanced.php:175 wp-admin/edit-form-comment.php:148 +#: wp-admin/includes/meta-boxes.php:234 wp-admin/includes/meta-boxes.php:440 +msgctxt "publish box date format" +msgid "M j, Y" +msgstr "j F Y" + +#. translators: 1: Marker. +#: wp-admin/includes/misc.php:142 +msgid "" +"The directives (lines) between \"BEGIN %1$s\" and \"END %1$s\" are\n" +"dynamically generated, and should only be modified via WordPress filters.\n" +"Any changes to the directives between these markers will be overwritten." +msgstr "" +"Les directives (lignes) entre « BEGIN %1$s » et « END %1$s » sont générées\n" +"dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.\n" +"Toute modification des directives situées entre ces marqueurs sera outrepassée." + +#: wp-admin/includes/dashboard.php:2133 +msgid "https://wordpress.org/documentation/article/block-themes/" +msgstr "https://fr.wordpress.org/support/article/block-themes/" + +#: wp-admin/includes/meta-boxes.php:857 +msgid "https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments" +msgstr "https://fr.wordpress.org/support/article/introduction-to-blogging/#gerer-les-commentaires" + +#: wp-admin/includes/meta-boxes.php:796 +msgid "https://wordpress.org/documentation/article/introduction-to-blogging/#comments" +msgstr "https://fr.wordpress.org/support/article/introduction-to-blogging/#les-commentaires-spam" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:149 +msgid "All automatic updates are disabled." +msgstr "Toutes les mises à jour automatiques sont désactivées." + +#: wp-admin/includes/class-wp-debug-data.php:925 +msgid "Database collation" +msgstr "Classement de base de données" + +#: wp-admin/includes/class-wp-debug-data.php:919 +msgid "Database charset" +msgstr "Jeu de caractères de la base de données" + +#: wp-admin/includes/class-wp-debug-data.php:164 +msgid "Inactive Themes" +msgstr "Thèmes inactifs" + +#: wp-admin/includes/class-wp-debug-data.php:159 +msgid "Parent Theme" +msgstr "Thème parent" + +#. translators: %s: wp-content directory name. +#: wp-admin/includes/class-wp-debug-data.php:147 +#: wp-admin/includes/class-wp-plugins-list-table.php:677 +msgid "Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins." +msgstr "Les extensions avancées sont des fichiers uniques, trouvés dans le répertoire de %s, qui remplacent ou améliorent les fonctionnalités WordPress d'une manière qui n'est pas possible pour les extensions traditionnelles." + +#. translators: Description for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:370 +msgctxt "personal data group description" +msgid "Overview of export report." +msgstr "Vue globale du rapport sur les exportations." + +#: wp-admin/options-writing.php:53 +msgid "Documentation on Writing Settings" +msgstr "Documentation sur les réglages d’écriture" + +#: wp-admin/edit-tags.php:309 +msgid "Documentation on Tags" +msgstr "Documentation sur les étiquettes" + +#: wp-admin/edit-tags.php:305 +msgid "Documentation on Categories" +msgstr "Documentation sur les catégories" + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:199 +msgid "Your theme determines how content is displayed in browsers. Learn more about feeds." +msgstr "Votre thème détermine comment le contenu est affiché dans les navigateurs. En savoir plus sur les flux." + +#. translators: Hidden accessibility text. +#: wp-admin/options-reading.php:183 wp-admin/options-reading.php:188 +msgid "For each post in a feed, include" +msgstr "Dans chaque publication du flux, inclure" + +#: wp-admin/options-reading.php:160 +msgid "Warning: these pages should not be the same as your Privacy Policy page!" +msgstr "Avertissement : ces pages ne doivent pas être les mêmes que votre page de politique de confidentialité !" + +#: wp-admin/options-reading.php:53 +msgid "Documentation on Reading Settings" +msgstr "Documentation sur les réglages de lecture" + +#: wp-admin/options-reading.php:35 wp-admin/options-reading.php:200 +msgid "https://wordpress.org/documentation/article/wordpress-feeds/" +msgstr "https://fr.wordpress.org/support/article/wordpress-feeds/" + +#. translators: %s: Site title. +#: wp-admin/ms-delete-site.php:93 +msgid "[%s] Delete My Site" +msgstr "[%s] Supprimer mon site" + +#: wp-admin/options-discussion.php:64 +msgid "Allow people to submit comments on new posts" +msgstr "Autoriser les commentaires sur les nouvelles publications" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:47 wp-admin/options-discussion.php:51 +msgid "Default post settings" +msgstr "Réglages de publication par défaut" + +#. translators: %s: Gravatar URL. +#: wp-admin/user-edit.php:624 +msgid "You can change your profile picture on Gravatar." +msgstr "Vous pouvez changer votre image de profil sur Gravatar." + +#: wp-admin/plugins.php:733 +msgid "Plugin resumed." +msgstr "Extension reprise." + +#: wp-admin/plugins.php:729 +msgid "Selected plugins deactivated." +msgstr "Extensions sélectionnées désactivées." + +#: wp-admin/plugins.php:727 +msgid "Plugin deactivated." +msgstr "Extension désactivée." + +#: wp-admin/plugins.php:725 +msgid "Selected plugins activated." +msgstr "Extensions sélectionnées activées." + +#: wp-admin/plugins.php:723 +msgid "Plugin activated." +msgstr "Extension activée." + +#: wp-admin/plugins.php:718 +msgid "The selected plugins have been deleted." +msgstr "Les extensions sélectionnées ont été supprimées." + +#: wp-admin/plugins.php:716 +msgid "The selected plugin has been deleted." +msgstr "L’extension sélectionnée a été supprimée." + +#. translators: 1: Plugin file, 2: Error message. +#: wp-admin/plugins.php:631 +msgid "The plugin %1$s has been deactivated due to an error: %2$s" +msgstr "L’extension %1$s a été désactivée en raison d’une erreur : %2$s" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:407 +msgid "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." +msgstr "Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant." + +#: wp-admin/theme-editor.php:399 +msgid "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." +msgstr "Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour." + +#. translators: Maximum number of words used in a preview of a draft on the +#. dashboard. +#: wp-admin/includes/dashboard.php:663 +msgctxt "draft_length" +msgid "10" +msgstr "10" + +#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:118 +#: wp-admin/theme-editor.php:303 +msgid "File does not exist! Please double check the name and try again." +msgstr "Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer." + +#. translators: 1: $image, 2: WP_Image_Editor +#: wp-admin/includes/image-edit.php:364 wp-admin/includes/image-edit.php:459 +#: wp-admin/includes/image-edit.php:629 +msgid "%1$s needs to be a %2$s object." +msgstr "%1$s doit être un objet %2$s." + +#. translators: %s: Recovery Mode exit link. +#: wp-admin/includes/update.php:1068 +msgid "You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode" +msgstr "Vous êtes en mode de récupération. Cela signifie qu’il pourrait y avoir une erreur avec un thème ou une extension. Pour sortir du mode de récupération, déconnectez vous ou utilisez le bouton Sortir. Exit Recovery Mode" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/site-health.php:16 +msgctxt "Site Health" +msgid "Status" +msgstr "État" + +#. translators: Tab heading for Site Health Info page. +#: wp-admin/site-health.php:18 +msgctxt "Site Health" +msgid "Info" +msgstr "Informations" + +#: wp-admin/includes/class-wp-debug-data.php:468 +msgid "Themes directory location" +msgstr "Emplacement du répertoire de thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:124 +msgctxt "comment status" +msgid "Closed" +msgstr "Fermé" + +#. translators: %s: Number of critical issues found. +#: wp-admin/site-health.php:260 wp-admin/js/site-health.js:148 +msgid "%s critical issue" +msgid_plural "%s critical issues" +msgstr[0] "%s problème critique" +msgstr[1] "%s problèmes critiques" + +#. translators: 1: Name of the library, 2: Number of version. +#: wp-admin/includes/class-wp-site-health.php:1373 +#: wp-admin/includes/class-wp-site-health.php:1389 +msgid "WordPress’ utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer. Please contact your server administrator." +msgstr "Le support de utf8mb4 par WordPress nécessite la bibliothèque MySQL (%1$s) version %2$s ou supérieure. Veuillez contacter votre hébergeur." + +#. translators: %s: Version number. +#: wp-admin/includes/class-wp-site-health.php:1343 +msgid "WordPress’ utf8mb4 support requires MariaDB version %s or greater. Please contact your server administrator." +msgstr "Le support de utf8mb4 par WordPress nécessite MariaDB version %s ou supérieur. Veuillez contacter votre hébergeur." + +#. translators: %s: Version number. +#: wp-admin/includes/class-wp-site-health.php:1323 +msgid "WordPress’ utf8mb4 support requires MySQL version %s or greater. Please contact your server administrator." +msgstr "Le support de utf8mb4 par WordPress nécessite MySQL version %s ou supérieur. Veuillez contacter votre hébergeur." + +#: wp-admin/includes/class-wp-site-health.php:1224 +msgid "Learn more about what WordPress requires to run." +msgstr "En savoir plus sur les pré-requis de fonctionnement de WordPress." + +#. translators: Localized version of WordPress requirements if one exists. +#: wp-admin/includes/class-wp-site-health.php:1223 +msgid "https://wordpress.org/about/requirements/" +msgstr "https://wordpress.org/about/requirements/" + +#: wp-admin/includes/class-wp-site-health.php:1218 +msgid "The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings." +msgstr "Le serveur SQL est un élément obligatoire de l’architecture utilisée par WordPress pour stocker les contenus et réglages de votre site." + +#: wp-admin/includes/class-wp-site-health.php:889 +msgid "PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator." +msgstr "Les modules PHP réalisent la plupart des tâches sur le serveur qui fait fonctionner votre site. Toute modification les concernant doit être réalisée par la personne chargée de l’administration de votre serveur." + +#: wp-admin/includes/class-wp-site-health.php:1455 +msgid "Get help resolving this issue." +msgstr "Obtenez de l’aide pour résoudre ce problème." + +#: wp-admin/update-core.php:262 +msgid "https://wordpress.org/documentation/article/updating-wordpress/" +msgstr "https://fr.wordpress.org/support/article/updating-wordpress/" + +#: wp-admin/includes/class-wp-site-health.php:504 +msgid "Manage your themes" +msgstr "Gérez vos thèmes" + +#: wp-admin/includes/class-wp-site-health.php:471 +msgid "Manage inactive plugins" +msgstr "Gérer les extensions inactives" + +#: wp-admin/includes/class-wp-site-health.php:417 +msgid "Update your plugins" +msgstr "Mettez à jour vos extensions" + +#: wp-admin/includes/class-wp-site-health.php:370 +msgid "Manage your plugins" +msgstr "Gérez vos extensions" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:338 +msgid "View Privacy Policy Guide." +msgstr "Voir le guide de politique de confidentialité." + +#: wp-admin/includes/class-wp-debug-data.php:80 +msgid "User Language" +msgstr "Langue de l’utilisateur" + +#. translators: 1: WP_DEBUG_DISPLAY, 2: WP_DEBUG +#: wp-admin/includes/class-wp-site-health.php:1530 +msgid "The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site." +msgstr "La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier de configuration. Cela fera apparaître les erreurs sur l’interface publique de votre site." + +#. translators: Background update finished notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1470 +msgid "[%s] Background Update Finished" +msgstr "[%s] Mise à jour en arrière-plan terminée" + +#. translators: Background update failed notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1467 +msgid "[%s] Background Update Failed" +msgstr "[%s] Mise à jour en arrière-plan échouée" + +#: wp-admin/plugins.php:667 +msgid "Plugin could not be resumed because it triggered a fatal error." +msgstr "L’extension n’a pas pu être relancée car elle a déclenché une erreur fatale." + +#: wp-admin/includes/class-wp-site-health.php:621 +#: wp-admin/includes/class-wp-site-health.php:667 +msgid "You should remove inactive themes" +msgstr "Vous devriez retirer les thèmes inactifs" + +#: wp-admin/includes/class-wp-site-health.php:591 +msgid "Your site has 1 installed theme, and it is up to date." +msgstr "Votre site a 1 thème installé, et il est à jour." + +#: wp-admin/includes/class-wp-site-health.php:423 +msgid "Your site has 1 active plugin, and it is up to date." +msgstr "Votre site a 1 extension active, et elle est à jour." + +#: wp-admin/site-health.php:285 +msgid "Passed tests" +msgstr "Tests passés" + +#: wp-admin/site-health.php:48 +msgid "Sorry, you are not allowed to access site health information." +msgstr "Désolé, vous n’avez pas l’autorisation d’accéder aux informations de santé du site." + +#: wp-admin/site-health-info.php:57 +msgid "Copy site info to clipboard" +msgstr "Copier les informations du site dans le presse-papier" + +#: wp-admin/site-health-info.php:51 +msgid "If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example." +msgstr "SI vous souhaitez exporter une liste de toutes les informations contenues dans cette page, vous pouvez utiliser le bouton ci-dessous pour les copier dans votre presse-papier. Vous pourrez ensuite les coller dans un fichier texte pour les enregistrer sur votre ordinateur, dans un e-mail d’échange avec un support technique, ou encore dans une discussion avec une développeuse ou un développeur de thème/extension." + +#: wp-admin/site-health-info.php:23 wp-admin/site-health.php:226 +msgid "The Site Health check requires JavaScript." +msgstr "La vérification de santé du site nécessite JavaScript." + +#: wp-admin/site-health-info.php:41 +msgid "Site Health Info" +msgstr "Information de santé du site" + +#: wp-admin/includes/class-wp-posts-list-table.php:544 +msgid "All formats" +msgstr "Tous les formats" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-posts-list-table.php:540 +msgid "Filter by post format" +msgstr "Filtrer par format de publication" + +#: wp-admin/includes/plugin.php:2581 wp-admin/includes/plugin.php:2663 +msgid "Go to the Plugins screen" +msgstr "Aller à l’écran des extensions" + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1522 +msgid "The authenticity of %s could not be verified." +msgstr "L’authenticité de %s ne peut pas être vérifiée." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1474 +msgid "The authenticity of %s could not be verified as no signature was found." +msgstr "L’authenticité de %s n'a pas pu être vérifiée car aucune signature n’a été trouvée." + +#: wp-admin/update-core.php:549 wp-admin/update-core.php:742 +msgid "This update does not work with your version of PHP." +msgstr "Cette mise à jour ne fonctionne pas avec votre version de PHP." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1398 wp-admin/includes/file.php:1419 +#: wp-admin/includes/file.php:1456 +msgid "The authenticity of %s could not be verified as signature verification is unavailable on this system." +msgstr "L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5221 +msgid "Eraser callback is not valid: %s." +msgstr "Le retour de l’outil de suppression n’est pas valide : %s." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5211 +msgid "Eraser does not include a callback: %s." +msgstr "L’outil de suppression n’inclue aucun retour : %s." + +#: wp-admin/includes/ajax-actions.php:4933 +#: wp-admin/includes/ajax-actions.php:5124 +msgid "Sorry, you are not allowed to perform this action." +msgstr "Désolé, vous n’avez pas l’autorisation d’effectuer cette action." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health.php:2193 +msgid "HTTP requests have been blocked by the %s constant, with no allowed hosts." +msgstr "Les requêtes HTTP ont été bloquées par la constante %s, avec aucun hôte autorisé." + +#. translators: 1: Name of the constant used. 2: List of allowed hostnames. +#: wp-admin/includes/class-wp-site-health.php:2208 +msgid "HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s." +msgstr "Les requêtes HTTP ont été bloquées par la constante %1$s, avec certains hôtes autorisés : %2$s." + +#. translators: 1: The name of the drop-in. 2: The name of the database engine. +#: wp-admin/includes/class-wp-site-health.php:1272 +msgid "You are using a %1$s drop-in which might mean that a %2$s database is not being used." +msgstr "Vous utilisez une extension avancée %1$s, ce qui pourrait signifier que la base de données %2$s n’est pas utilisée." + +#. translators: Localized team handbook, if one exists. +#: wp-admin/includes/class-wp-site-health.php:894 +msgid "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" +msgstr "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" + +#. translators: 1: Link to the hosting group page about recommended PHP +#. modules. 2: Additional link attributes. 3: Accessibility text. +#: wp-admin/includes/class-wp-site-health.php:892 +msgid "The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s." +msgstr "L’équipe Hébergement de WordPress maintient une liste des modules recommandés et obligatoires dans le manuel de l’équipe (en anglais)%3$s." + +#: wp-admin/includes/class-wp-site-health.php:259 +#: wp-admin/includes/class-wp-site-health.php:737 +#: wp-admin/includes/class-wp-site-health.php:884 +#: wp-admin/includes/class-wp-site-health.php:1122 +#: wp-admin/includes/class-wp-site-health.php:1163 +#: wp-admin/includes/class-wp-site-health.php:1213 +#: wp-admin/includes/class-wp-site-health.php:1302 +#: wp-admin/includes/class-wp-site-health.php:1751 +#: wp-admin/includes/class-wp-site-health.php:2119 +#: wp-admin/includes/class-wp-site-health.php:2162 +#: wp-admin/includes/class-wp-site-health.php:2233 +#: wp-admin/includes/class-wp-site-health.php:2344 +#: wp-admin/includes/class-wp-site-health.php:2498 +#: wp-admin/includes/class-wp-site-health.php:2623 +msgid "Performance" +msgstr "Performance" + +#. translators: 1: The amount of inactive themes. 2: The default theme for +#. WordPress. 3: The currently active theme. +#: wp-admin/includes/class-wp-site-health.php:689 +msgid "Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgstr[0] "Votre site a %1$d thème inactif, autre que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif." +msgstr[1] "Votre site a %1$d thèmes inactifs, autres que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif." + +#. translators: 1: The amount of inactive themes. 2: The currently active +#. theme. +#: wp-admin/includes/class-wp-site-health.php:674 +msgid "Your site has %1$d inactive theme, other than %2$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, your active theme." +msgstr[0] "Votre site a %1$d thème inactif, autre que %2$s, votre thème actif." +msgstr[1] "Votre site a %1$d thèmes inactifs, autres que %2$s, votre thème actif." + +#: wp-admin/includes/class-wp-site-health.php:682 +#: wp-admin/includes/class-wp-site-health.php:698 +msgid "You should consider removing any unused themes to enhance your site’s security." +msgstr "Nous recommandons de supprimer tous les thèmes non utilisés pour améliorer la sécurité de votre site." + +#: wp-admin/includes/class-wp-site-health.php:320 +#: wp-admin/includes/class-wp-site-health.php:360 +#: wp-admin/includes/class-wp-site-health.php:494 +#: wp-admin/includes/class-wp-site-health.php:825 +#: wp-admin/includes/class-wp-site-health.php:1253 +#: wp-admin/includes/class-wp-site-health.php:1412 +#: wp-admin/includes/class-wp-site-health.php:1482 +#: wp-admin/includes/class-wp-site-health.php:1564 +#: wp-admin/includes/class-wp-site-health.php:1705 +#: wp-admin/includes/class-wp-site-health.php:1824 +#: wp-admin/includes/class-wp-site-health.php:1899 +#: wp-admin/includes/class-wp-site-health.php:1940 +#: wp-admin/includes/class-wp-site-health.php:1982 +#: wp-admin/includes/class-wp-site-health.php:2436 +msgid "Security" +msgstr "Sécurité" + +#: wp-admin/erase-personal-data.php:96 +msgid "Erase personal data list" +msgstr "Supprimer la liste de données personnelles" + +#: wp-admin/erase-personal-data.php:95 +msgid "Erase personal data list navigation" +msgstr "Supprimer la navigation dans la liste de données personnelles" + +#: wp-admin/erase-personal-data.php:94 +msgid "Filter erase personal data list" +msgstr "Filtrer la suppression de la liste de données personnelles" + +#: wp-admin/export-personal-data.php:96 +msgid "Export personal data list" +msgstr "Exporter la liste de données personnelles" + +#: wp-admin/export-personal-data.php:95 +msgid "Export personal data list navigation" +msgstr "Exporter la navigation dans la liste de données personnelles" + +#: wp-admin/export-personal-data.php:94 +msgid "Filter export personal data list" +msgstr "Filtrer l’export de la liste de données personnelles" + +#. translators: %d: The number of inactive themes. +#: wp-admin/includes/class-wp-site-health.php:628 +#: wp-admin/includes/class-wp-site-health.php:647 +msgid "Your site has %d inactive theme." +msgid_plural "Your site has %d inactive themes." +msgstr[0] "Votre site a %d thème inactif." +msgstr[1] "Votre site a %d thèmes inactifs." + +#. translators: %d: The number of inactive plugins. +#: wp-admin/includes/class-wp-site-health.php:458 +msgid "Your site has %d inactive plugin." +msgid_plural "Your site has %d inactive plugins." +msgstr[0] "Votre site a %d extension inactive." +msgstr[1] "Votre site a %d extensions inactives." + +#: wp-admin/includes/class-wp-site-health.php:465 +msgid "Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it." +msgstr "Les extensions inactives sont des cibles tentantes pour les pirates. Si vous n’utilisez plus une extension, vous devriez envisager de la retirer." + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number 5: URL to Update PHP page. +#: wp-admin/includes/update.php:574 +msgid "There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP." +msgstr "Il existe une nouvelle version disponible de %1$s, mais elle ne fonctionne pas avec votre version de PHP. Voir les détails de la version %4$s ou en savoir plus sur la mise à jour de PHP." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1279 +msgid "This plugin failed to load properly and is paused during recovery mode." +msgstr "Cette extension n’a pas pu se charger correctement et a été mise en pause dans le cadre du mode de récupération." + +#: wp-admin/includes/theme.php:1249 +msgid "Go to the Themes screen" +msgstr "Aller à l’écran des thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:1673 +msgid "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." +msgstr "Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers." + +#: wp-admin/includes/class-wp-debug-data.php:1717 +msgid "Total size is not available. Some errors were encountered when determining the size of your installation." +msgstr "La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation." + +#: wp-admin/includes/class-wp-debug-data.php:1666 +msgid "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." +msgstr "La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides." + +#: wp-admin/includes/class-wp-debug-data.php:248 +msgid "These settings alter where and how parts of WordPress are loaded." +msgstr "Ces réglages modifient où et comment les parties de WordPress sont chargées." + +#: wp-admin/includes/dashboard.php:68 wp-admin/site-health.php:251 +msgid "Site Health Status" +msgstr "État de santé du site" + +#: wp-admin/site-health.php:245 +msgid "Everything is running smoothly here." +msgstr "Tout fonctionne parfaitement ici." + +#: wp-admin/site-health.php:241 +msgid "Great job!" +msgstr "Bon travail !" + +#. translators: %s: Number of items with no issues. +#: wp-admin/site-health.php:294 wp-admin/js/site-health.js:158 +msgid "%s item with no issues detected" +msgid_plural "%s items with no issues detected" +msgstr[0] "%s élément sans problème détecté" +msgstr[1] "%s éléments sans problème détectés" + +#. translators: %s: Number of recommended improvements. +#: wp-admin/site-health.php:273 wp-admin/js/site-health.js:153 +msgid "%s recommended improvement" +msgid_plural "%s recommended improvements" +msgstr[0] "%s amélioration recommandée" +msgstr[1] "%s améliorations recommandées" + +#: wp-admin/site-health.php:254 +msgid "The site health check shows information about your WordPress configuration and items that may need your attention." +msgstr "La vérification de santé du site affiche des informations critiques à propos de votre configuration WordPress et les éléments qui nécessitent votre attention." + +#: wp-admin/about.php:36 wp-admin/contribute.php:33 wp-admin/credits.php:36 +#: wp-admin/freedoms.php:39 wp-admin/includes/ms.php:1134 +#: wp-admin/nav-menus.php:805 wp-admin/options-privacy.php:161 +#: wp-admin/privacy-policy-guide.php:44 wp-admin/privacy.php:33 +#: wp-admin/site-health.php:141 +msgid "Secondary menu" +msgstr "Menu secondaire" + +#: wp-admin/includes/class-wp-site-health.php:3176 +msgid "The loopback request to your site completed successfully." +msgstr "La demande de bouclage vers votre site s’est bien terminée." + +#. translators: %d: The HTTP response code returned. +#: wp-admin/includes/class-wp-site-health.php:3168 +msgid "The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected." +msgstr "La requête de bouclage a renvoyé un code d’état HTTP inattendu, %d. Il n’a pas été possible de déterminer si cela peut empêcher des fonctionnalités de fonctionner convenablement." + +#: wp-admin/includes/class-wp-site-health.php:3152 +msgid "The loopback request to your site failed, this means features relying on them are not currently working as expected." +msgstr "La requête de bouclage sur votre site a échoué, ce qui signifie que les fonctionnalités qui s’appuient sur ces requêtes ne fonctionnent actuellement pas comme elles le devraient." + +#: wp-admin/includes/class-wp-site-health.php:2944 +msgid "No scheduled events exist on this site." +msgstr "Aucun évènement planifié n’existe sur ce site." + +#: wp-admin/includes/class-wp-site-health.php:2759 +msgid "REST API availability" +msgstr "Disponibilité de l’API REST" + +#: wp-admin/includes/class-wp-site-health.php:2798 +msgid "Loopback request" +msgstr "Demande de bouclage" + +#: wp-admin/includes/class-wp-site-health.php:2764 +msgid "Debugging enabled" +msgstr "Débogage activé" + +#: wp-admin/includes/class-wp-site-health.php:2755 +msgid "HTTP Requests" +msgstr "Requêtes HTTP" + +#: wp-admin/includes/class-wp-site-health.php:2751 +msgid "Scheduled events" +msgstr "Évènements planifiés" + +#: wp-admin/includes/class-wp-site-health.php:2747 +msgid "Secure communication" +msgstr "Communication sécurisée" + +#: wp-admin/includes/class-wp-site-health.php:2804 +msgid "HTTPS status" +msgstr "État HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:2743 +msgid "MySQL utf8mb4 support" +msgstr "Prise en charge de utf8mb4 dans MySQL" + +#: wp-admin/includes/class-wp-site-health.php:2727 +msgid "PHP Extensions" +msgstr "Extensions PHP" + +#: wp-admin/includes/class-wp-site-health.php:2739 +msgid "Database Server version" +msgstr "Version du serveur de base de données" + +#: wp-admin/includes/class-wp-site-health.php:2723 +msgid "PHP Version" +msgstr "Version de PHP" + +#: wp-admin/includes/class-wp-site-health.php:2719 +msgid "Theme Versions" +msgstr "Version des thèmes" + +#: wp-admin/includes/class-wp-site-health.php:2715 +msgid "Plugin Versions" +msgstr "Versions des extensions" + +#: wp-admin/includes/class-wp-site-health.php:2711 +msgid "WordPress Version" +msgstr "Version de WordPress" + +#. translators: %s: The name of the query parameter being tested. +#: wp-admin/includes/class-wp-site-health.php:2322 +msgid "The REST API did not process the %s query parameter correctly." +msgstr "L’API REST n’a pas traité correctement le paramètre de la requête %s." + +#: wp-admin/includes/class-wp-site-health.php:2316 +msgid "The REST API did not behave correctly" +msgstr "L’API REST ne s’est pas correctement comportée" + +#: wp-admin/includes/class-wp-site-health.php:2293 +msgid "The REST API encountered an unexpected result" +msgstr "L’API REST a rencontré un résultat inattendu" + +#: wp-admin/includes/class-wp-site-health.php:2273 +msgid "The REST API encountered an error" +msgstr "L’API REST a rencontré une erreur" + +#: wp-admin/includes/class-wp-site-health.php:2238 +msgid "The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages." +msgstr "L’API REST est l’une des façon pour WordPress ou d’autres applications de communiquer avec le serveur. Par exemple, l’écran de l’éditeur s’appuie sur celui-ci pour afficher et enregistrer vos publications." + +#: wp-admin/includes/class-wp-site-health.php:2230 +msgid "The REST API is available" +msgstr "L’API REST est disponible" + +#: wp-admin/includes/class-wp-site-health.php:2202 +msgid "HTTP requests are partially blocked" +msgstr "Les requêtes HTTP sont partiellement bloquées" + +#: wp-admin/includes/class-wp-site-health.php:2187 +msgid "HTTP requests are blocked" +msgstr "Les requêtes HTTP sont bloquées" + +#: wp-admin/includes/class-wp-site-health.php:2167 +msgid "It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended." +msgstr "Il est possible pour les responsables du site de bloquer tout ou partie de la communication vers d’autres sites et services. Si la configuration est incorrecte, cela peut empêcher les extensions et thèmes de fonctionner comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:2159 +msgid "HTTP requests seem to be working as expected" +msgstr "Les requêtes HTTP semblent fonctionner comme prévu" + +#: wp-admin/includes/class-wp-site-health.php:2135 +msgid "Your site could not complete a loopback request" +msgstr "Votre site n’a pas pu terminer la requête de bouclage" + +#: wp-admin/includes/class-wp-site-health.php:2124 +msgid "Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability." +msgstr "Les requêtes de bouclage sont utilisées pour lancer des évènements planifiés, ainsi que par les éditeurs de thèmes et d’extensions pour vérifier la stabilité du code." + +#: wp-admin/includes/class-wp-site-health.php:2116 +msgid "Your site can perform loopback requests" +msgstr "Votre site peut lancer des requêtes de bouclage" + +#: wp-admin/includes/class-wp-site-health.php:1862 +msgid "Background updates may not be working properly" +msgstr "Les mises à jour d’arrière-plan pourraient ne pas fonctionner correctement" + +#: wp-admin/includes/class-wp-site-health.php:1853 +msgid "Background updates are not working as expected" +msgstr "Les mises à jour d’arrière-plan ne fonctionnent pas comme prévu" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1850 +msgid "Passed" +msgstr "Succès" + +#: wp-admin/includes/class-wp-site-health.php:1829 +msgid "Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using." +msgstr "Les mises à jour d’arrière-plan assurent que WordPress peut se mettre à jour automatiquement si une mise à jour de sécurité est disponible pour la version que vous utilisez actuellement." + +#: wp-admin/includes/class-wp-site-health.php:1821 +msgid "Background updates are working" +msgstr "Les mises à jour d’arrière-plan fonctionnent" + +#. translators: %s: The name of the failed cron event. +#: wp-admin/includes/class-wp-site-health.php:1786 +msgid "The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "L’évènement planifié %s a échoué. Votre site fonctionne toujours, mais cela pourrait indiquer que les publications planifiées ou les mises à jour automatiques ne fonctionnent pas comme elles le devraient." + +#: wp-admin/includes/class-wp-site-health.php:1780 +msgid "A scheduled event has failed" +msgstr "Un évènement planifié a échoué" + +#. translators: %s: The error message returned while from the cron scheduler. +#: wp-admin/includes/class-wp-site-health.php:1773 +msgid "While trying to test your site’s scheduled events, the following error was returned: %s" +msgstr "Lors du test des évènements planifiés de votre site, l’erreur suivante a été retournée : %s" + +#: wp-admin/includes/class-wp-site-health.php:1767 +msgid "It was not possible to check your scheduled events" +msgstr "Il n’a pas été possible de vérifier vos évènements planifiés" + +#: wp-admin/includes/class-wp-site-health.php:1756 +msgid "Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed." +msgstr "Les évènements planifiés permettent de vérifier périodiquement les mises à jour d’extensions, de thèmes et de WordPress lui-même. Cela permet également de s’assurer que les publications planifiées sont publiées à temps. Ils sont également utilisés par diverses extensions pour exécuter des actions planifiées." + +#: wp-admin/includes/class-wp-site-health.php:1748 +msgid "Scheduled events are running" +msgstr "Les évènements planifiés fonctionnent" + +#: wp-admin/includes/class-wp-site-health.php:1729 +msgid "Talk to your web host about OpenSSL support for PHP." +msgstr "Demandez à votre hébergeur la prise en charge de OpenSSL pour PHP." + +#: wp-admin/includes/class-wp-site-health.php:1725 +msgid "Your site is unable to communicate securely with other services" +msgstr "Votre site n’est pas en mesure de communiquer en toute sécurité avec d’autres services" + +#: wp-admin/includes/class-wp-site-health.php:1721 +msgid "Your site can communicate securely with other services" +msgstr "Votre site peut communiquer en toute sécurité avec d’autres services" + +#: wp-admin/includes/class-wp-site-health.php:1710 +msgid "Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more." +msgstr "Des communications sécurisées entre serveurs sont nécessaires pour des transactions telles que le parcours de fichiers, la vente sur les boutiques en ligne, et plus encore." + +#: wp-admin/includes/class-wp-site-health.php:1574 +msgid "Learn more about why you should use HTTPS" +msgstr "Découvrez pourquoi vous devriez utiliser HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1587 +msgid "Your website does not use HTTPS" +msgstr "Votre site n’utilise pas HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1561 +msgid "Your website is using an active HTTPS connection" +msgstr "Votre site utilise une connexion HTTPS opérationnelle." + +#. translators: %s: URL to Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1595 +msgid "You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default." +msgstr "Vous accédez à ce site en utilisant HTTPS, mais votre Adresse WordPress n’est pas configurée pour utiliser HTTPS par défaut." + +#: wp-admin/includes/class-wp-site-health.php:1517 +msgid "Your site is set to display errors to site visitors" +msgstr "Votre site est réglé pour afficher les erreurs aux visiteurs du site" + +#. translators: %s: WP_DEBUG_LOG +#: wp-admin/includes/class-wp-site-health.php:1510 +msgid "The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users." +msgstr "La valeur %s a été ajoutée au fichier de configuration de votre site. Cela signifie que toute erreur sur le site sera enregistrée dans un fichier qui est potentiellement visible par toutes les utilisatrices et tous les utilisateurs." + +#: wp-admin/includes/class-wp-site-health.php:1487 +msgid "Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website." +msgstr "Le mode débogage est souvent activé pour obtenir plus de détails à propos d’une erreur ou d’une défaillance du site, mais peut contenir des informations sensibles qui ne devraient pas être disponibles sur un site web accessible au public." + +#: wp-admin/includes/class-wp-site-health.php:1502 +msgid "Your site is set to log errors to a potentially public file" +msgstr "Votre site est configuré pour enregistrer le journal des erreurs dans un fichier potentiellement public" + +#: wp-admin/includes/class-wp-site-health.php:1479 +msgid "Your site is not set to output debug information" +msgstr "Votre site n’est pas réglé pour afficher les informations de débogage" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-site-health.php:1444 +msgid "Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s" +msgstr "Votre site ne peut pas rejoindre WordPress.org sur %1$s et a retourné l’erreur suivante : %2$s" + +#: wp-admin/includes/class-wp-site-health.php:1434 +msgid "Could not reach WordPress.org" +msgstr "Impossible de rejoindre WordPress.org" + +#: wp-admin/includes/class-wp-site-health.php:1417 +msgid "Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins." +msgstr "La communication avec les serveurs WordPress est utilisée pour vérifier l’existence de nouvelles versions et pour installer et mettre à jour le cœur WordPress, les thèmes et les extensions." + +#: wp-admin/includes/class-wp-site-health.php:1409 +msgid "Can communicate with WordPress.org" +msgstr "Peut communiquer avec WordPress.org" + +#: wp-admin/includes/class-wp-site-health.php:1367 +#: wp-admin/includes/class-wp-site-health.php:1383 +msgid "utf8mb4 requires a newer client library" +msgstr "utf8mb4 nécessite une librairie cliente plus récente" + +#: wp-admin/includes/class-wp-site-health.php:1350 +msgid "Your MariaDB version supports utf8mb4." +msgstr "Votre version de MariaDB prend en charge utf8mb4." + +#: wp-admin/includes/class-wp-site-health.php:1337 +msgid "utf8mb4 requires a MariaDB update" +msgstr "utf8mb4 nécessite une mise à jour de MariaDB" + +#: wp-admin/includes/class-wp-site-health.php:1330 +msgid "Your MySQL version supports utf8mb4." +msgstr "Votre version MySQL prend en charge utf8mb4." + +#: wp-admin/includes/class-wp-site-health.php:1317 +msgid "utf8mb4 requires a MySQL update" +msgstr "utf8mb4 nécessite une mise à jour de MySQL" + +#: wp-admin/includes/class-wp-site-health.php:1299 +msgid "UTF8MB4 is supported" +msgstr "UTF8MB4 est pris en charge" + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server minimum version number. +#: wp-admin/includes/class-wp-site-health.php:1259 +msgid "WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "WordPress nécessite %1$s version %2$s ou plus. Contactez votre hébergeur web pour corriger cela." + +#: wp-admin/includes/class-wp-site-health.php:1252 +msgid "Severely outdated SQL server" +msgstr "Serveur SQL fortement obsolète " + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server recommended version number. +#: wp-admin/includes/class-wp-site-health.php:1242 +msgid "For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "Pour des performances optimales et pour des raisons de sécurité, nous recommandons %1$s version %2$s ou supérieure. Contactez votre hébergeur pour corriger cela." + +#: wp-admin/includes/class-wp-site-health.php:1236 +msgid "Outdated SQL server" +msgstr "Serveur SQL obsolète" + +#: wp-admin/includes/class-wp-site-health.php:1210 +msgid "SQL server is up to date" +msgstr "Le serveur SQL est à jour" + +#: wp-admin/includes/class-wp-site-health.php:1101 +msgid "One or more required modules are missing" +msgstr "Un module nécessaire ou plus sont manquants." + +#: wp-admin/includes/class-wp-site-health.php:1098 +msgid "One or more recommended modules are missing" +msgstr "Un ou plusieurs modules recommandés sont manquants" + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1070 +msgid "The optional module, %s, is not installed, or has been disabled." +msgstr "Le module facultatif, %s, n’est pas installé, ou a été désactivé." + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1061 +msgid "The required module, %s, is not installed, or has been disabled." +msgstr "Le module obligatoire %s n’est pas installé, ou a été désactivé." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1058 +#: wp-admin/includes/class-wp-site-health.php:1441 +#: wp-admin/includes/class-wp-site-health.php:1858 +msgid "Error" +msgstr "Erreur" + +#: wp-admin/includes/class-wp-site-health.php:881 +msgid "Required and recommended modules are installed" +msgstr "Les modules obligatoires et recommandés sont installés" + +#: wp-admin/includes/class-wp-site-health.php:708 +msgid "Have a default theme available" +msgstr "Avoir un thème par défaut disponible" + +#: wp-admin/includes/class-wp-site-health.php:712 +msgid "Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme." +msgstr "Votre site n’a pas de thème par défaut. Les thèmes par défaut sont utilisés par WordPress automatiquement si quelque chose ne va pas avec votre thème actif." + +#. translators: 1: The default theme for WordPress. 2: The currently active +#. theme. 3: The active theme's parent theme. +#: wp-admin/includes/class-wp-site-health.php:656 +msgid "To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme." +msgstr "Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver %1$s, le thème WordPress par défaut, %2$s, votre thème actuel, et %3$s, son thème parent." + +#. translators: 1: The currently active theme. 2: The active theme's parent +#. theme. +#: wp-admin/includes/class-wp-site-health.php:637 +msgid "To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme." +msgstr "Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver uniquement votre thème actuel, %1$s et %2$s, son thème parent." + +#: wp-admin/includes/class-wp-site-health.php:452 +msgid "You should remove inactive plugins" +msgstr "Vous devriez retirer les extensions inactives" + +#: wp-admin/includes/class-wp-site-health.php:572 +msgid "You have themes waiting to be updated" +msgstr "Vous avez des thèmes en attente de mise à jour" + +#: wp-admin/includes/class-wp-site-health.php:499 +msgid "Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure." +msgstr "Les thèmes concernent l’aspect visuel de votre site. Il est important de les tenir à jour, pour la cohérence de votre identité visuelle et pour garder votre site sécurisé." + +#. translators: %d: The number of themes. +#: wp-admin/includes/class-wp-site-health.php:598 +msgid "Your site has %d installed theme, and it is up to date." +msgid_plural "Your site has %d installed themes, and they are all up to date." +msgstr[0] "Votre site a %d thème installé et il est à jour." +msgstr[1] "Votre site a %d thèmes installés et ils sont tous à jour." + +#. translators: %d: The number of outdated themes. +#: wp-admin/includes/class-wp-site-health.php:578 +msgid "Your site has %d theme waiting to be updated." +msgid_plural "Your site has %d themes waiting to be updated." +msgstr[0] "Votre site à %d thème en attente de mise à jour." +msgstr[1] "Votre site à %d thèmes en attente de mise à jour." + +#: wp-admin/includes/class-wp-site-health.php:491 +msgid "Your themes are all up to date" +msgstr "Vos thèmes sont à jour" + +#: wp-admin/includes/class-wp-site-health.php:399 +msgid "You have plugins waiting to be updated" +msgstr "Vous avez des extensions en attente de mise à jour" + +#: wp-admin/includes/class-wp-site-health.php:365 +msgid "Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date." +msgstr "Les extensions étendent les fonctionnalités de votre site avec des choses comme des formulaires de contact, une boutique e-commerce et bien plus. Cela signifie qu’elles ont accès à votre site en profondeur, il est donc vital de les tenir à jour." + +#. translators: %d: The number of active plugins. +#: wp-admin/includes/class-wp-site-health.php:430 +msgid "Your site has %d active plugin, and it is up to date." +msgid_plural "Your site has %d active plugins, and they are all up to date." +msgstr[0] "Votre site a %d extension installée et elle est à jour." +msgstr[1] "Votre site a %d extensions installées et elles sont toutes à jour." + +#. translators: %d: The number of outdated plugins. +#: wp-admin/includes/class-wp-site-health.php:405 +msgid "Your site has %d plugin waiting to be updated." +msgid_plural "Your site has %d plugins waiting to be updated." +msgstr[0] "Votre site a %d extension en attente de mise à jour." +msgstr[1] "Votre site a %d extensions en attente de mise à jour." + +#: wp-admin/includes/class-wp-site-health.php:357 +msgid "Your plugins are all up to date" +msgstr "Vos extensions sont à jour" + +#: wp-admin/includes/class-wp-site-health.php:336 +msgid "You are currently running the latest version of WordPress available, keep it up!" +msgstr "Vous utilisez actuellement la dernière version disponible de WordPress, gardez-la à jour !" + +#: wp-admin/includes/class-wp-site-health.php:323 +msgid "A new minor update is available for your site. Because minor updates often address security, it’s important to install them." +msgstr "Une mise à jour mineure est disponible pour votre site. Comme les mises à jour mineures concernent souvent la sécurité, il est important de les installer." + +#: wp-admin/includes/class-wp-site-health.php:315 +msgid "A new version of WordPress is available." +msgstr "Une nouvelle version de WordPress est disponible." + +#: wp-admin/includes/class-wp-site-health.php:307 +msgid "Install the latest version of WordPress" +msgstr "Installer la dernière version de WordPress" + +#. translators: %s: The latest version of WordPress available. +#: wp-admin/includes/class-wp-site-health.php:300 +msgid "WordPress update available (%s)" +msgstr "Mise à jour de WordPress disponible (%s)" + +#: wp-admin/includes/class-wp-site-health.php:287 +msgid "Check for updates manually" +msgstr "Vérifier les mises à jour manuellement" + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:451 +msgid "WordPress security and maintenance releases are blocked by the %s filter." +msgstr "Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:439 +msgid "WordPress security and maintenance releases are blocked by %s." +msgstr "Les mises à jour de sécurité et de maintenance sont bloquées par %s." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:419 +msgid "WordPress development updates are blocked by the %s filter." +msgstr "Les mises à jour de développement WordPress sont bloquées par le filtre %s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:407 +msgid "WordPress development updates are blocked by the %s constant." +msgstr "Les mises à jour de développement WordPress sont bloquées par la constante %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:383 +msgid "All of your WordPress files are writable." +msgstr "Tous vos fichiers WordPress sont accessibles en écriture." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:378 +msgid "Some files are not writable by WordPress:" +msgstr "Certains fichiers ne sont pas accessibles par WordPress :" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:352 +msgid "This could mean that connections are failing to WordPress.org." +msgstr "Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:349 +msgid "Couldn't retrieve a list of the checksums for WordPress %s." +msgstr "Impossible de récupérer une liste des checksums pour WordPress %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:288 +msgid "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" +msgstr "(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:287 +msgid "Your installation of WordPress prompts for FTP credentials to perform updates." +msgstr "Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:265 +msgid "No version control systems were detected." +msgstr "Aucun système de contrôle de version n’a été détecté." + +#. translators: 1: Folder name. 2: Version control directory. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:256 +msgid "The folder %1$s was detected as being under version control (%2$s)." +msgstr "Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s)." + +#. translators: 1: Folder name. 2: Version control directory. 3: Filter name. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:243 +msgid "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." +msgstr "Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +msgid "A previous automatic background update could not occur." +msgstr "Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée." + +#. translators: %s: Code of error shown. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:174 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:191 +msgid "The error code was %s." +msgstr "Le code d’erreur était %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:170 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:185 +msgid "You would have received an email because of this." +msgstr "Vous auriez reçu un courriel à cause de cela." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:169 +msgid "A previous automatic background update ended with a critical failure, so updates are now disabled." +msgstr "Une précédente mise à jour automatique en arrière-plan s'est terminée par un échec critique, les mises à jour sont désormais désactivées." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:122 +msgid "The %s filter is enabled." +msgstr "Le filtre %s est activé." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:101 +msgid "A plugin has prevented updates by disabling %s." +msgstr "Une extension a empêché les mises à jour en désactivant %s." + +#: wp-admin/includes/class-wp-debug-data.php:1405 +msgid "The must use plugins directory" +msgstr "Le répertoire des extensions indispensables" + +#: wp-admin/includes/class-wp-debug-data.php:1160 +msgid "Theme features" +msgstr "Fonctionnalités de thèmes" + +#: wp-admin/includes/class-theme-installer-skin.php:244 +#: wp-admin/includes/class-wp-debug-data.php:1155 +msgid "Parent theme" +msgstr "Thème parent" + +#: wp-admin/includes/class-wp-debug-data.php:1150 +#: wp-admin/includes/class-wp-debug-data.php:1245 +msgid "Author website" +msgstr "Site de l’auteur" + +#. translators: %s: Latest WordPress version number. +#. translators: %s: Latest plugin version number. +#. translators: %s: Latest theme version number. +#: wp-admin/includes/class-wp-debug-data.php:57 +#: wp-admin/includes/class-wp-debug-data.php:1017 +#: wp-admin/includes/class-wp-debug-data.php:1107 +#: wp-admin/includes/class-wp-debug-data.php:1219 +#: wp-admin/includes/class-wp-debug-data.php:1339 +msgid "(Latest version: %s)" +msgstr "(dernière version : %s)" + +#. translators: 1: Plugin version number. 2: Plugin author name. +#. translators: 1: Theme version number. 2: Theme author name. +#: wp-admin/includes/class-wp-debug-data.php:952 +#: wp-admin/includes/class-wp-debug-data.php:999 +#: wp-admin/includes/class-wp-debug-data.php:1321 +msgid "Version %1$s by %2$s" +msgstr "Version %1$s par %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:947 +#: wp-admin/includes/class-wp-debug-data.php:994 +#: wp-admin/includes/class-wp-debug-data.php:1316 +msgid "No version or author information is available." +msgstr "Aucune information de version ou d’auteur·e n’est disponible." + +#: wp-admin/includes/class-wp-debug-data.php:885 +msgid "Server version" +msgstr "Version du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:880 +msgid "Extension" +msgstr "Extension" + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:840 +msgid "Your %s file contains only core WordPress features." +msgstr "Votre fichier %s ne contient que des fonctionnalités du cœur WordPress." + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:837 +msgid "Custom rules have been added to your %s file." +msgstr "Des règles personnalisées ont été ajoutées à votre fichier %s." + +#: wp-admin/includes/class-wp-debug-data.php:844 +msgid ".htaccess rules" +msgstr "Règles du .htaccess" + +#: wp-admin/includes/class-wp-debug-data.php:812 +msgid "Is the Imagick library available?" +msgstr "La bibliothèque Imagick est-elle disponible ?" + +#: wp-admin/includes/class-wp-debug-data.php:803 +msgid "Is SUHOSIN installed?" +msgstr "SUHOSIN est-il installé ?" + +#: wp-admin/includes/class-wp-debug-data.php:788 +#: wp-admin/includes/class-wp-debug-data.php:793 +msgid "cURL version" +msgstr "version de cURL" + +#: wp-admin/includes/class-wp-debug-data.php:779 +msgid "PHP post max size" +msgstr "PHP post max size" + +#: wp-admin/includes/class-wp-debug-data.php:775 +msgid "Upload max filesize" +msgstr "Upload max filesize" + +#: wp-admin/includes/class-wp-debug-data.php:771 +msgid "Max input time" +msgstr "Temps d’entrée max" + +#: wp-admin/includes/class-wp-debug-data.php:756 +#: wp-admin/includes/class-wp-debug-data.php:765 +msgid "PHP memory limit" +msgstr "Limite de mémoire PHP" + +#: wp-admin/includes/class-wp-debug-data.php:750 +msgid "PHP time limit" +msgstr "Limite d’exécution PHP" + +#: wp-admin/includes/class-wp-debug-data.php:746 +msgid "PHP max input variables" +msgstr "Valeur maximale des variables PHP" + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-debug-data.php:552 +#: wp-admin/includes/class-wp-debug-data.php:739 +msgid "Unable to determine some settings, as the %s function has been disabled." +msgstr "Impossible de déterminer certains réglages, car la fonction %s a été désactivée." + +#: wp-admin/includes/class-wp-debug-data.php:736 +msgid "Server settings" +msgstr "Réglages du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:728 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +#: wp-admin/includes/class-wp-debug-data.php:705 +msgid "(Does not support 64bit values)" +msgstr "(ne prend pas en charge les valeurs 64 bits)" + +#: wp-admin/includes/class-wp-debug-data.php:705 +msgid "(Supports 64bit values)" +msgstr "(Supporte les valeurs 64 bits)" + +#: wp-admin/includes/class-wp-debug-data.php:723 +msgid "PHP version" +msgstr "Version de PHP" + +#: wp-admin/includes/class-wp-debug-data.php:719 +msgid "Unable to determine what web server software is used" +msgstr "Impossible de déterminer le serveur web utilisé" + +#: wp-admin/includes/class-wp-debug-data.php:718 +msgid "Web server" +msgstr "Serveur web" + +#: wp-admin/includes/class-wp-debug-data.php:714 +msgid "Unable to determine server architecture" +msgstr "Impossible de déterminer l’architecture du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:713 +msgid "Server architecture" +msgstr "Architecture serveur" + +#: wp-admin/includes/class-wp-debug-data.php:686 +msgid "Ghostscript version" +msgstr "Version de Ghostscript" + +#: wp-admin/includes/class-wp-debug-data.php:681 +msgid "Unable to determine if Ghostscript is installed" +msgstr "Impossible de déterminer si Ghostscript est installé" + +#: wp-admin/includes/class-wp-debug-data.php:638 +msgid "GD version" +msgstr "Version de GD" + +#: wp-admin/includes/class-wp-debug-data.php:612 +msgid "Imagick Resource Limits" +msgstr "Limites de ressources Imagick" + +#: wp-admin/includes/class-wp-debug-data.php:536 +msgid "ImageMagick version string" +msgstr "Chaîne de version ImageMagick" + +#: wp-admin/includes/class-wp-debug-data.php:531 +msgid "ImageMagick version number" +msgstr "Numéro de version ImageMagick" + +#: wp-admin/includes/class-wp-debug-data.php:505 +#: wp-admin/includes/class-wp-debug-data.php:527 +#: wp-admin/includes/class-wp-debug-data.php:544 +#: wp-admin/includes/class-wp-debug-data.php:1701 wp-admin/includes/ms.php:803 +msgid "Not available" +msgstr "Non disponible" + +#: wp-admin/includes/class-wp-debug-data.php:517 +msgid "Active editor" +msgstr "Éditeur actif" + +#: wp-admin/includes/class-wp-site-health.php:281 +msgid "Unable to check if any new versions of WordPress are available." +msgstr "Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:297 +msgid "Your installation of WordPress does not require FTP credentials to perform updates." +msgstr "Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:171 +msgid "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." +msgstr "Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour." + +#: wp-admin/includes/class-wp-debug-data.php:491 +msgid "Total installation size" +msgstr "Taille totale de l’installation" + +#: wp-admin/includes/class-wp-debug-data.php:486 +msgid "Database size" +msgstr "Taille de la base de données" + +#: wp-admin/includes/class-wp-debug-data.php:454 +msgid "WordPress directory size" +msgstr "Taille du répertoire de WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:450 +msgid "WordPress directory location" +msgstr "Emplacement du répertoire de WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:481 +msgid "Plugins directory size" +msgstr "Taille du répertoire des extensions" + +#: wp-admin/includes/class-wp-debug-data.php:477 +msgid "Plugins directory location" +msgstr "Emplacement du répertoire des extensions" + +#: wp-admin/includes/class-wp-debug-data.php:472 +msgid "Themes directory size" +msgstr "Taille du répertoire des thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:1164 +#: wp-admin/includes/class-wp-debug-data.php:1250 +msgid "Theme directory location" +msgstr "Emplacement du répertoire des thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:463 +msgid "Uploads directory size" +msgstr "Taille du répertoire des téléversements" + +#: wp-admin/includes/class-wp-debug-data.php:459 +msgid "Uploads directory location" +msgstr "Emplacement du répertoire des téléversements" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-debug-data.php:436 +msgid "Unable to reach WordPress.org at %1$s: %2$s" +msgstr "Impossible d’atteindre WordPress.org à %1$s : %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:428 +msgid "WordPress.org is reachable" +msgstr "WordPress.org est accessible" + +#: wp-admin/includes/class-wp-debug-data.php:427 +#: wp-admin/includes/class-wp-debug-data.php:433 +#: wp-admin/includes/class-wp-site-health.php:2786 +msgid "Communication with WordPress.org" +msgstr "Communication avec WordPress.org" + +#: wp-admin/includes/class-wp-debug-data.php:412 +msgid "Network count" +msgstr "Nombre de réseaux" + +#: wp-admin/includes/class-wp-debug-data.php:407 +msgid "Site count" +msgstr "Nombre de sites" + +#: wp-admin/includes/class-wp-debug-data.php:418 +msgid "User count" +msgstr "Nombre d’utilisatrices et d’utilisateurs" + +#: wp-admin/includes/class-wp-debug-data.php:375 +msgid "The themes directory" +msgstr "Le répertoire de thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:370 +msgid "The plugins directory" +msgstr "Le répertoire d’extensions" + +#: wp-admin/includes/class-wp-debug-data.php:365 +msgid "The uploads directory" +msgstr "Le répertoire des téléversements" + +#: wp-admin/includes/class-wp-debug-data.php:360 +msgid "The wp-content directory" +msgstr "Le répertoire wp-content" + +#: wp-admin/includes/class-wp-debug-data.php:356 +#: wp-admin/includes/class-wp-debug-data.php:361 +#: wp-admin/includes/class-wp-debug-data.php:366 +#: wp-admin/includes/class-wp-debug-data.php:371 +#: wp-admin/includes/class-wp-debug-data.php:376 +#: wp-admin/includes/class-wp-debug-data.php:1406 +msgid "Not writable" +msgstr "Non accessible en écriture" + +#: wp-admin/includes/class-wp-debug-data.php:356 +#: wp-admin/includes/class-wp-debug-data.php:361 +#: wp-admin/includes/class-wp-debug-data.php:366 +#: wp-admin/includes/class-wp-debug-data.php:371 +#: wp-admin/includes/class-wp-debug-data.php:376 +#: wp-admin/includes/class-wp-debug-data.php:1406 +msgid "Writable" +msgstr "Accessible en écriture" + +#: wp-admin/includes/class-wp-debug-data.php:355 +msgid "The main WordPress directory" +msgstr "Le répertoire principal de WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:352 +msgid "Shows whether WordPress is able to write to the directories it needs access to." +msgstr "Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder." + +#: wp-admin/includes/class-wp-debug-data.php:351 +msgid "Filesystem Permissions" +msgstr "Droits des fichiers système" + +#: wp-admin/includes/class-wp-debug-data.php:217 +#: wp-admin/includes/class-wp-debug-data.php:226 +#: wp-admin/includes/class-wp-debug-data.php:235 +#: wp-admin/includes/class-wp-debug-data.php:243 +#: wp-admin/includes/class-wp-debug-data.php:257 +#: wp-admin/includes/class-wp-debug-data.php:262 +#: wp-admin/includes/class-wp-debug-data.php:333 +#: wp-admin/includes/class-wp-debug-data.php:338 +#: wp-admin/includes/class-wp-debug-data.php:1151 +#: wp-admin/includes/class-wp-debug-data.php:1246 +msgid "Undefined" +msgstr "Indéfini" + +#: wp-admin/includes/class-wp-debug-data.php:247 +msgid "WordPress Constants" +msgstr "Constantes WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:199 +msgid "Database" +msgstr "Base de données" + +#: wp-admin/includes/class-wp-debug-data.php:194 +msgid "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." +msgstr "Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur." + +#: wp-admin/includes/class-wp-debug-data.php:193 +msgid "Server" +msgstr "Serveur" + +#: wp-admin/includes/class-wp-debug-data.php:188 +msgid "Media Handling" +msgstr "Prise en charge des médias" + +#: wp-admin/includes/class-wp-debug-data.php:182 +msgid "Inactive Plugins" +msgstr "Extensions inactives" + +#: wp-admin/includes/class-wp-debug-data.php:176 +msgid "Active Plugins" +msgstr "Extensions actives" + +#: wp-admin/includes/class-wp-debug-data.php:170 +msgid "Must Use Plugins" +msgstr "Extensions indispensables" + +#: wp-admin/includes/class-wp-debug-data.php:154 +#: wp-admin/includes/theme.php:864 wp-admin/themes.php:1045 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:934 +msgid "Active Theme" +msgstr "Thème actif" + +#: wp-admin/includes/class-wp-debug-data.php:143 +msgid "Drop-ins" +msgstr "Avancées" + +#: wp-admin/includes/class-wp-debug-data.php:137 +msgid "Directories and Sizes" +msgstr "Répertoires et tailles" + +#: wp-admin/includes/class-wp-debug-data.php:108 +msgid "Is this a multisite?" +msgstr "S’agit-il d’un multisite ?" + +#: wp-admin/includes/class-wp-debug-data.php:123 +msgid "Default comment status" +msgstr "État par défaut des commentaires" + +#: wp-admin/includes/class-wp-debug-data.php:113 +msgid "Can anyone register on this site?" +msgstr "Tout le monde peut-il s’inscrire sur ce site ?" + +#: wp-admin/includes/class-wp-debug-data.php:103 +msgid "Is this site using HTTPS?" +msgstr "Est-ce que ce site utilise HTTPS ?" + +#: wp-admin/includes/class-wp-debug-data.php:99 +msgid "No permalink structure set" +msgstr "Aucune structure de permaliens définie" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-debug-data.php:98 +#: wp-admin/options-permalink.php:330 wp-admin/options-permalink.php:336 +msgid "Permalink structure" +msgstr "Structure des permaliens" + +#: wp-admin/includes/class-wp-debug-data.php:93 +msgid "Site URL" +msgstr "URL du site" + +#: wp-admin/includes/class-wp-debug-data.php:88 +msgid "Home URL" +msgstr "URL de la page d’accueil" + +#: wp-admin/site-health.php:101 +msgid "Site Health" +msgstr "Santé du site" + +#. translators: %s: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:158 +msgctxt "requests" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/options-discussion.php:104 +msgid "Show comments cookies opt-in checkbox, allowing comment author cookies to be set" +msgstr "Afficher la case à cocher pour accepter les cookies sur les commentaires, ce qui permet l’enregistrement de cookies pour les auteurs de commentaires." + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:481 +msgid "Next theme" +msgstr "Thème suivant" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:475 +msgid "Previous theme" +msgstr "Thème précédent" + +#: wp-admin/user-edit.php:545 +msgid "If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed." +msgstr "Si vous modifiez cela, vous recevrez un e-mail de confirmation à votre nouvelle adresse. La nouvelle adresse ne sera pas active tant que vous n’aurez pas confirmé." + +#: wp-admin/themes.php:310 +msgid "Theme resumed." +msgstr "Thème relancé." + +#: wp-admin/themes.php:319 +msgid "Theme could not be resumed because it triggered a fatal error." +msgstr "Le thème n’a pas pu être relancé car il a déclenché une erreur fatale." + +#: wp-admin/plugins.php:665 +msgid "If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin." +msgstr "Si vous remarquez des messages « headers already sent », des problèmes avec vos flux de syndication ou d’autres soucis, essayez de désactiver ou de supprimer cette extension." + +#: wp-admin/plugins.php:451 +msgid "Sorry, you are not allowed to resume this plugin." +msgstr "Désolé, vous n’êtes pas autorisé à relancer cette extension." + +#. translators: %s: WordPress Planet URL. +#: wp-admin/index.php:97 +msgid "WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet." +msgstr "Évènements et actualités WordPress – évènements à venir près de chez vous et dernières actualités officielles du projet WordPress ainsi que de l’écosystème WordPress." + +#. translators: %d: Number of characters. +#: wp-admin/plugins.php:658 +msgid "The plugin generated %d character of unexpected output during activation." +msgid_plural "The plugin generated %d characters of unexpected output during activation." +msgstr[0] "Cette extension a généré %d caractère de sortie inattendu lors de son activation." +msgstr[1] "Cette extension a généré %d caractères de sortie inattendus lors de son activation." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/update-core.php:133 wp-admin/upgrade.php:120 +msgid "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/update-core.php:124 wp-admin/upgrade.php:111 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s." + +#: wp-admin/nav-menus.php:1061 +msgid "Add menu items" +msgstr "Ajouter des éléments de menu" + +#. translators: Hidden accessibility text. +#: wp-admin/nav-menus.php:967 wp-admin/nav-menus.php:1037 +msgid "Click the Save Menu button to save your changes." +msgstr "Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications." + +#. translators: Hidden accessibility text. +#: wp-admin/nav-menus.php:943 +msgid "Fill in the Menu Name and click the Create Menu button to create your first menu." +msgstr "Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu." + +#: wp-admin/nav-menus.php:939 +msgid "Create your first menu below." +msgstr "Créez votre premier menu ci-dessous." + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:1022 +msgid "or create a new menu. Do not forget to save your changes!" +msgstr "ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !" + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:952 +msgid "Edit your menu below, or create a new menu. Do not forget to save your changes!" +msgstr "Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !" + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/install.php:288 +msgid "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/install.php:279 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s." + +#: wp-admin/includes/class-wp-site-health.php:751 +#: wp-admin/includes/dashboard.php:1928 +msgid "Learn more about updating PHP" +msgstr "En savoir plus sur la mise à jour de PHP" + +#: wp-admin/includes/dashboard.php:1909 +msgid "What is PHP and how does it affect my site?" +msgstr "Qu’est-ce que PHP et comment cela affecte t-il mon site ?" + +#: wp-admin/includes/dashboard.php:50 +msgid "PHP Update Required" +msgstr "Mise à jour de PHP nécessaire" + +#: wp-admin/includes/plugin.php:2579 +msgid "You can find more details and make changes on the Plugins screen." +msgstr "Vous pouvez trouver davantage de détails et faire des modifications sur l’écran des extensions." + +#: wp-admin/includes/plugin.php:2578 +msgid "One or more plugins failed to load properly." +msgstr "Le chargement d’une ou plusieurs extensions a échoué." + +#: wp-admin/includes/plugin.php:2548 +msgid "Could not resume the plugin." +msgstr "Impossible de relancer l’extension." + +#: wp-admin/includes/plugin.php:511 +msgid "Custom PHP fatal error handler." +msgstr "Gestionnaire d’erreur fatale PHP personnalisée." + +#: wp-admin/includes/plugin.php:510 +msgid "Custom PHP error message." +msgstr "Message d’erreur PHP personnalisé." + +#: wp-admin/includes/class-language-pack-upgrader.php:122 +msgid "Could not remove the old translation." +msgstr "Impossible de retirer l’ancienne traduction." + +#: wp-admin/includes/class-language-pack-upgrader.php:121 +msgid "Removing the old version of the translation…" +msgstr "Retrait de l’ancienne version de la traduction…" + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/plugin-install.php:856 +msgid "Click here to update WordPress." +msgstr "Cliquer ici pour mettre WordPress à jour." + +#: wp-admin/includes/plugin-install.php:852 +msgid "Error: This plugin requires a newer version of WordPress." +msgstr "Erreur : Cette extension nécessite une version plus récente de WordPress." + +#. translators: %s: URL to Update PHP page. +#: wp-admin/includes/plugin-install.php:826 +msgid "Click here to learn more about updating PHP." +msgstr "Cliquez ici pour en apprendre davantage sur la mise à jour de PHP." + +#. translators: Hidden accessibility text. %s: Widget title. +#: wp-admin/includes/widgets.php:257 +msgid "Add widget: %s" +msgstr "Ajouter le widget : %s" + +#. translators: %s: Widgets sidebar name. +#: wp-admin/includes/widgets.php:97 +msgid "Add to: %s" +msgstr "Ajouter à : %s" + +#. translators: Audio file track information. %s: Audio track number. +#: wp-admin/includes/media.php:378 +msgid "Track %s." +msgstr "Piste %s." + +#: wp-admin/includes/plugin-install.php:821 +msgid "Error: This plugin requires a newer version of PHP." +msgstr "Erreur : Cette extension nécessite une version plus récente de PHP." + +#: wp-admin/includes/schema.php:1281 +msgid "My Network" +msgstr "Mon réseau" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:636 +#: wp-admin/includes/class-wp-plugins-list-table.php:1448 +msgid "This plugin does not work with your version of PHP." +msgstr "Cette extension ne fonctionne pas avec votre version de PHP." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:627 +#: wp-admin/includes/class-wp-plugins-list-table.php:1439 +msgid "This plugin does not work with your version of WordPress." +msgstr "Cette extension ne fonctionne pas avec votre version de WordPress." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:603 +#: wp-admin/includes/class-wp-plugins-list-table.php:1415 +msgid "This plugin does not work with your versions of WordPress and PHP." +msgstr "Cette extension ne fonctionne pas avec vos versions de WordPress et de PHP." + +#. translators: %s: WordPress version number. +#. translators: %s: WordPress version. +#: wp-admin/about.php:386 wp-admin/includes/update.php:323 +#: wp-admin/index.php:119 wp-admin/install.php:249 wp-admin/update-core.php:94 +#: wp-admin/upgrade.php:81 +msgid "https://wordpress.org/documentation/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + +#: wp-admin/includes/class-wp-plugins-list-table.php:930 +#: wp-admin/themes.php:696 +msgid "Resume" +msgstr "Relancer" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:929 +msgctxt "plugin" +msgid "Resume %s" +msgstr "Relancer %s" + +#: wp-admin/includes/theme.php:1247 +msgid "You can find more details and make changes on the Themes screen." +msgstr "Vous trouverez plus de détails et pouvez apporter des modifications sur l’écran des thèmes." + +#: wp-admin/includes/theme.php:1246 +msgid "One or more themes failed to load properly." +msgstr "Un ou plusieurs thèmes ont échoués à se charger correctement." + +#. translators: %s: Default category. +#: wp-admin/edit-tags.php:628 +msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." +msgstr "Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée." + +#: wp-admin/includes/theme.php:1216 +msgid "Could not resume the theme." +msgstr "Impossible de relancer le thème." + +#. translators: %s: A link to install the Classic Widgets plugin. +#: wp-admin/widgets-form-blocks.php:96 +msgid "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin." +msgstr "Les blocs widgets nécessite JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur, ou essayez l’extension Classic Editor." + +#: wp-admin/post.php:47 +msgid "A post type mismatch has been detected." +msgstr "Une incohérence de type de publication a été détectée." + +#: wp-admin/includes/class-wp-screen.php:297 wp-admin/post.php:20 +msgid "A post ID mismatch has been detected." +msgstr "Une incohérence d’identifiant de publication a été détectée." + +#. translators: %s: A link to use the Classic Editor plugin. +#: wp-admin/includes/template.php:1232 +msgid "Please open the classic editor to use this meta box." +msgstr "Veuillez ouvrir l’éditeur classique pour utiliser cette boîte méta." + +#. translators: %s: A link to activate the Classic Editor plugin. +#: wp-admin/includes/template.php:1219 +msgid "Please activate the Classic Editor plugin to use this meta box." +msgstr "Veuillez activer l’extension Classic Editor pour utiliser cette boîte méta." + +#. translators: %s: A link to install the Classic Editor plugin. +#: wp-admin/includes/template.php:1207 +msgid "Please install the Classic Editor plugin to use this meta box." +msgstr "Veuillez installer l’extension Classic Editor pour utiliser cette boîte méta." + +#: wp-admin/includes/template.php:1194 +msgid "This meta box is not compatible with the block editor." +msgstr "Cette boîte méta n’est pas compatible avec le nouvel éditeur." + +#: wp-admin/freedoms.php:78 +msgid "To distribute copies of your modified versions to others." +msgstr "la liberté d'améliorer le programme et de distribuer ces améliorations au public, pour en faire profiter toute la communauté." + +#: wp-admin/freedoms.php:77 +msgid "The 4th Freedom" +msgstr "La quatrième liberté" + +#: wp-admin/freedoms.php:73 +msgid "To redistribute." +msgstr "La liberté de redistribution ;" + +#: wp-admin/freedoms.php:72 +msgid "The 3rd Freedom" +msgstr "La troisième liberté" + +#: wp-admin/freedoms.php:68 +msgid "To study how the program works and change it to make it do what you wish." +msgstr "La liberté d’étudier le fonctionnement du programme et de l’adapter à ses besoins ;" + +#: wp-admin/freedoms.php:67 +msgid "The 2nd Freedom" +msgstr "La deuxième liberté" + +#: wp-admin/freedoms.php:63 +msgid "To run the program for any purpose." +msgstr "La liberté d’exécuter le programme, pour tous les usages ;" + +#: wp-admin/freedoms.php:62 +msgid "The 1st Freedom" +msgstr "La première liberté" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:29 +msgid "Created" +msgstr "Créé" + +#. translators: First post content. %s: Site link. +#: wp-admin/includes/upgrade.php:211 +msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" +msgstr "Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !" + +#. translators: First page content. %s: Site admin URL. +#: wp-admin/includes/upgrade.php:311 +msgid "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" +msgstr "En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:305 +msgid "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." +msgstr "La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules super pour la communauté bouzemontoise." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:300 +msgid "...or something like this:" +msgstr "...ou quelque chose comme cela :" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:295 +msgid "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" +msgstr "Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka-ananas (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil)." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:290 +msgid "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" +msgstr "Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux visiteurs du site. Cela pourrait ressembler à quelque chose comme cela :" + +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1561 +msgid "Export “%s” as JSON" +msgstr "Exporter « %s » en JSON" + +#: wp-admin/edit.php:386 +msgid "1 pattern not updated, somebody is editing it." +msgstr "Une composition n’a pas été mise à jour, quelqu’un est train de la modifier." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:394 +msgid "%s pattern restored from the Trash." +msgid_plural "%s patterns restored from the Trash." +msgstr[0] "%s composition restaurée depuis la corbeille." +msgstr[1] "%s compositions restaurées depuis la corbeille." + +#: wp-admin/setup-config.php:304 +msgid "Error: \"Table Prefix\" must not be empty." +msgstr "Erreur : le préfixe de table ne doit pas être vide." + +#. translators: %s: The name of the plugin that generated this meta box. +#: wp-admin/includes/template.php:1192 wp-admin/includes/template.php:1444 +msgid "This meta box, from the %s plugin, is not compatible with the block editor." +msgstr "Cette boîte méta de l’extension %s n’est pas compatible avec le nouvel éditeur." + +#. translators: Header for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:368 +msgctxt "personal data group label" +msgid "About" +msgstr "À propos" + +#. translators: Page title of the About WordPress page in the admin. +#: wp-admin/about.php:14 +msgctxt "page title" +msgid "About" +msgstr "À propos" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy +#. Policy page. +#: wp-admin/options-privacy.php:228 +msgid "Edit or preview your Privacy Policy page content." +msgstr "Modifier ou prévisualiser le contenu de votre page de politique de confidentialité." + +#: wp-admin/includes/file.php:40 +msgid "Privacy Policy Page" +msgstr "Page de politique de confidentialité" + +#. translators: %s: Page title. +#: wp-admin/includes/misc.php:1578 +msgid "%s (Draft)" +msgstr "%s (Brouillon)" + +#: wp-admin/options-privacy.php:57 +msgid "Privacy Policy page updated successfully." +msgstr "La page de politique de confidentialité a bien été mise à jour." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2435 +msgid "The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation." +msgstr "Le contenu suggéré de politique de confidentialité devrait être ajouté en utilisant l’action %s (ou ultérieurement). Veuillez vous référer à la documentation en ligne." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2424 +msgid "The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action." +msgstr "Le contenu suggéré de politique de confidentialité devrait être ajouté uniquement dans wp-admin en utilisant l’action %s (ou ultérieurement)." + +#. translators: %s: Privacy Policy Guide URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:143 +msgid "The suggested privacy policy text has changed. Please review the guide and update your privacy policy." +msgstr "Le texte suggéré pour votre politique de confidentialité a été modifié. Veuillez relire le guide et mettre à jour votre politique de confidentialité." + +#: wp-admin/options-privacy.php:267 +msgid "There are no pages." +msgstr "Il n’y a aucune page." + +#. translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-admin/options-privacy.php:239 +msgid "Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème." + +#: wp-admin/privacy-policy-guide.php:21 wp-admin/privacy-policy-guide.php:74 +#: wp-admin/privacy-policy-guide.php:83 +msgid "Privacy Policy Guide" +msgstr "Guide de la politique de confidentialité" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:609 +msgid "Visitor comments may be checked through an automated spam detection service." +msgstr "Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:557 +msgid "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." +msgstr "Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:514 +msgid "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." +msgstr "Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les utilisateurs et utilisatrices pouvant téléverser des fichiers dans votre bibliothèque de médias. Les fichiers téléversés sont généralement accessibles publiquement." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:501 +msgid "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." +msgstr "Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:485 +msgid "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." +msgstr "Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs et visiteurs de votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse de messagerie, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:459 +msgid "Suggested text:" +msgstr "Texte suggéré :" + +#. translators: %s: Date of privacy policy text update. +#: wp-admin/includes/class-wp-privacy-policy-content.php:408 +msgid "Updated %s." +msgstr "%s mis à jour." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:396 +msgid "You deactivated this plugin on %s and may no longer need this policy." +msgstr "Vous avez désactivé l’extension %s et n’avez donc normalement plus besoin de ces informations." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:393 +msgid "Removed %s." +msgstr "%s supprimé." + +#: wp-admin/privacy-policy-guide.php:75 +msgid "Introduction" +msgstr "Introduction" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:336 +msgid "Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez notre guide pour des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions." + +#: wp-admin/erase-personal-data.php:114 +msgid "Add Data Erasure Request" +msgstr "Ajout d’une demande d’effacement de données" + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:66 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:140 +msgid "Erasing data..." +msgstr "Effacement des données…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:133 +msgid "Send export link" +msgstr "Envoyer le lien d’export" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:658 +msgid "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." +msgstr "Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:656 +msgid "Industry regulatory disclosure requirements" +msgstr "Affichage des informations liées aux secteurs soumis à des régulations spécifiques" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:649 +msgid "What automated decision making and/or profiling we do with user data" +msgstr "Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:642 +msgid "What third parties we receive data from" +msgstr "Les services tiers qui nous transmettent des données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:637 +msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." +msgstr "Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues »." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:635 +msgid "What data breach procedures we have in place" +msgstr "Procédures mises en œuvre en cas de fuite de données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:630 +msgid "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." +msgstr "Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos utilisateurs. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:628 +msgid "How we protect your data" +msgstr "Comment nous protégeons vos données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:623 +msgid "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." +msgstr "Si vous utilisez votre site web dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:621 +msgid "Additional information" +msgstr "Informations supplémentaires" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:616 +msgid "In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." +msgstr "Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:606 +msgid "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." +msgstr "La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:604 +msgid "In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." +msgstr "Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:596 +msgid "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." +msgstr "Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:593 +msgid "In this section you should explain what rights your users have over their data and how they can invoke those rights." +msgstr "Dans cette section, indiquez les droits de vos utilisateurs et utilisatrices concernant leurs données et comment ils et elles peuvent exercer ces droits." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:589 +msgid "What rights you have over your data" +msgstr "Les droits que vous avez sur vos données" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:585 +msgid "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." +msgstr "Pour les utilisateurs et utilisatrices qui s’enregistrent sur notre site (si cela est possible), nous stockons également les données personnelles indiquées dans leur profil. Tous les utilisateurs et utilisatrices peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur nom d’utilisateur·ice). Les gestionnaires du site peuvent aussi voir et modifier ces informations." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:583 +msgid "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue." +msgstr "Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:576 +msgid "How long we retain your data" +msgstr "Durées de stockage de vos données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:569 +msgid "By default WordPress does not share any personal data with anyone." +msgstr "Par défaut, WordPress ne partage vos informations personnelles avec personne." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:567 +msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." +msgstr "Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:563 +msgid "Who we share your data with" +msgstr "Utilisation et transmission de vos données personnelles" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:559 +msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." +msgstr "Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:555 +msgid "Analytics" +msgstr "Statistiques et mesures d’audience" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:550 +msgid "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." +msgstr "Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:548 +msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." +msgstr "Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:546 +msgid "Embedded content from other websites" +msgstr "Contenu embarqué depuis d’autres sites" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:541 +msgid "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." +msgstr "En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:539 +msgid "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." +msgstr "Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:537 +msgid "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." +msgstr "Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:535 +msgid "If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." +msgstr "Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse de messagerie et site web dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:528 +msgid "Cookies" +msgstr "Cookies" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:506 +msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." +msgstr "Une chaîne anonymisée créée à partir de votre adresse de messagerie (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:504 +msgid "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." +msgstr "Quand vous laissez un commentaire sur notre site web, les données inscrites dans le formulaire de commentaire, mais aussi votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:524 +msgid "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." +msgstr "Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:522 +msgid "Contact forms" +msgstr "Formulaires de contact" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:517 +msgid "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." +msgstr "Si vous êtes un utilisateur ou une utilisatrice enregistré·e et que vous téléversez des images sur le site web, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les visiteurs de votre site web peuvent télécharger et extraire des données de localisation depuis ces images." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:493 +msgid "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." +msgstr "Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des utilisateurs enregistrés. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:491 +msgid "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds." +msgstr "Les données personnelles ne sont pas créées par les interactions de vos utilisateurs avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:489 +msgid "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." +msgstr "En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:487 +msgid "You should also note any collection and retention of sensitive personal data, such as data concerning health." +msgstr "Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:483 +msgid "What personal data we collect and why we collect it" +msgstr "Utilisation des données personnelles collectées" + +#. translators: Default privacy policy text. %s: Site URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:478 +msgid "Our website address is: %s." +msgstr "L’adresse de notre site Web est : %s." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:475 +msgid "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." +msgstr "La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:473 +msgid "In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information." +msgstr "Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:469 +msgid "Who we are" +msgstr "Qui sommes-nous ?" + +#: wp-admin/privacy-policy-guide.php:79 +msgid "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate." +msgstr "Il est de votre responsabilité de rédiger une politique de confidentialité compréhensible, de vous assurer qu’elle reflète les exigences nationales et internationales sur la vie privée et de maintenir cette politique à jour et exacte." + +#: wp-admin/privacy-policy-guide.php:78 +msgid "Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu." +msgstr "Veuillez modifier le contenu de votre politique de confidentialité. Assurez-vous de supprimer les exemples de textes et d’ajouter les différentes informations à propos de vos thèmes et extensions. Une fois votre page publiée, pensez à l’ajouter à votre menu de navigation ou à votre pied de page." + +#: wp-admin/options-privacy.php:193 +msgid "As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy." +msgstr "En tant que propriétaire du site, vous pourriez avoir besoin de suivre des réglementations nationales ou internationales en matière de confidentialité. Par exemple, vous pouvez avoir besoin de créer et d’afficher une politique de confidentialité." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:136 +msgid "Email could not be sent." +msgstr "L’e-mail n’a pas pu être envoyé." + +#: wp-admin/includes/privacy-tools.php:386 +msgctxt "date/time" +msgid "On" +msgstr "Le" + +#: wp-admin/includes/privacy-tools.php:382 +msgctxt "website URL" +msgid "At URL" +msgstr "À l’URL" + +#: wp-admin/includes/privacy-tools.php:378 +msgctxt "website name" +msgid "For site" +msgstr "Pour le site" + +#: wp-admin/includes/privacy-tools.php:374 +msgctxt "email address" +msgid "Report generated for" +msgstr "Rapport généré pour" + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:68 +msgid "Force erasure has failed." +msgstr "L’effacement forcé a échoué." + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:5017 +msgid "Exporter array at index %s does not include a friendly name." +msgstr "Le tableau d’export ne contient aucun « friendly name » à l’index %s." + +#: wp-admin/export-personal-data.php:13 +msgid "Sorry, you are not allowed to export personal data on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’exporter les données personnelles sur ce site." + +#: wp-admin/includes/ajax-actions.php:5184 +msgid "Eraser index is out of range." +msgstr "L’index d’effacement est hors de portée." + +#: wp-admin/includes/ajax-actions.php:5143 +msgid "Missing eraser index." +msgstr "Index d’effacement manquant." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5068 +msgid "Expected done (boolean) in response array from exporter: %s." +msgstr "Résultat attendu (booléen) dans le tableau de réponse de l’exportateur : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5061 +msgid "Expected data array in response array from exporter: %s." +msgstr "Donnée tabulaire attendue dans le tableau de réponse de l’exportateur : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5054 +msgid "Expected data in response array from exporter: %s." +msgstr "Donnée attendue dans le tableau de réponse de l’exportateur : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5047 +msgid "Expected response as an array from exporter: %s." +msgstr "Réponse attendue de l’exportateur en tant que tableau : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5033 +msgid "Exporter callback is not a valid callback: %s." +msgstr "Le retour de l’exportateur n’est pas un retour valide : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5026 +msgid "Exporter does not include a callback: %s." +msgstr "L’exportateur n’inclue aucun retour : %s." + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:5010 +msgid "Expected an array describing the exporter at index %s." +msgstr "Réponse attendue sous forme de tableau décrivant l’exportateur à l’index %s." + +#: wp-admin/includes/ajax-actions.php:4996 +msgid "Exporter index is out of range." +msgstr "L’index d’export hors limite." + +#: wp-admin/includes/ajax-actions.php:4992 +msgid "Exporter index cannot be negative." +msgstr "L’index d’exportation ne peut pas être un nombre inférieur à zéro." + +#: wp-admin/includes/ajax-actions.php:4986 +msgid "An exporter has improperly used the registration filter." +msgstr "Un outil d’export a utilisé le filtre d’inscription de façon erronée." + +#: wp-admin/includes/ajax-actions.php:4957 +#: wp-admin/includes/ajax-actions.php:5149 +msgid "Missing page index." +msgstr "Index de page manquant." + +#: wp-admin/includes/ajax-actions.php:4951 +msgid "Missing exporter index." +msgstr "Index d’export manquant." + +#: wp-admin/includes/ajax-actions.php:4942 +#: wp-admin/includes/ajax-actions.php:5133 +msgid "Invalid request type." +msgstr "Type de requête non valide." + +#: wp-admin/erase-personal-data.php:13 +msgid "Sorry, you are not allowed to erase personal data on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’effacer les données personnelles sur ce site." + +#: wp-admin/options-privacy.php:311 +msgid "Use This Page" +msgstr "Utiliser cette page" + +#: wp-admin/options-privacy.php:290 +msgid "Select a Privacy Policy page" +msgstr "Sélectionner une page de politique de confidentialité" + +#: wp-admin/options-privacy.php:288 +msgid "Change your Privacy Policy page" +msgstr "Modifier la page de politique de confidentialité" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy +#. Policy page. +#: wp-admin/options-privacy.php:221 +msgid "Edit or view your Privacy Policy page content." +msgstr "Modifiez ou visualisez le contenu de votre page de politique de confidentialité." + +#: wp-admin/options-privacy.php:202 +msgid "You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy." +msgstr "Vous devriez aussi relire votre politique de confidentialité régulièrement, spécialement après l’installation ou la mise à jour de thèmes ou d’extensions. Il se peut que des changements ou de nouvelles informations vous fassent envisager de les ajouter à votre politique." + +#: wp-admin/options-privacy.php:198 +msgid "However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate." +msgstr "Cependant, il est de votre responsabilité d’utiliser ces ressources correctement, afin de fournir les informations que votre politique de confidentialité nécessite, de tenir à jour ces informations et de garantir leur pertinence." + +#: wp-admin/options-privacy.php:194 +msgid "If you already have a Privacy Policy page, please select it below. If not, please create one." +msgstr "Si vous disposez déjà d’une page de politique de confidentialité, veuillez la sélectionner ci-dessous. Sinon, veuillez en créer une." + +#. translators: %s: URL to Pages Trash. +#: wp-admin/options-privacy.php:136 +msgid "The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page." +msgstr "La page de politique de confidentialité actuellement sélectionnée est dans la corbeille. Veuillez créer ou sélectionner une nouvelle page de politique de confidentialité ou restaurer la page actuelle." + +#: wp-admin/options-privacy.php:126 +msgid "The currently selected Privacy Policy page does not exist. Please create or select a new page." +msgstr "La page de politique de confidentialité actuellement sélectionnée n’existe pas. Veuillez créer ou sélectionner une nouvelle page." + +#: wp-admin/options-privacy.php:102 +msgid "Unable to create a Privacy Policy page." +msgstr "Impossible de créer une page de politique de confidentialité." + +#. translators: Privacy Policy page slug. +#: wp-admin/includes/upgrade.php:374 +msgid "privacy-policy" +msgstr "politique-de-confidentialite" + +#. translators: %s: URL to Customizer -> Menus. +#: wp-admin/options-privacy.php:74 +msgid "Privacy Policy page setting updated successfully. Remember to update your menus!" +msgstr "La page de politique de confidentialité a bien été mise à jour. Pensez à mettre à jour vos menus !" + +#: wp-admin/options-privacy.php:197 +msgid "The new page will include help and suggestions for your privacy policy." +msgstr "La nouvelle page contiendra de l’aide et des suggestions pour votre politique de confidentialité." + +#. translators: Hidden accessibility text. %s: Plugin name. +#: wp-admin/includes/class-wp-privacy-policy-content.php:437 +msgid "Copy suggested policy text from %s." +msgstr "Copier la suggestion de politique de confidentialité depuis %s." + +#. translators: Do not translate EXPIRATION, LINK, SITENAME, SITEURL: those are +#. placeholders. +#: wp-admin/includes/privacy-tools.php:662 +msgid "" +"Howdy,\n" +"\n" +"Your request for an export of personal data has been completed. You may\n" +"download your personal data by clicking on the link below. For privacy\n" +"and security, we will automatically delete the file on ###EXPIRATION###,\n" +"so please download it before then.\n" +"\n" +"###LINK###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour,\n" +"\n" +"Votre demande d’export de données personnelles a été traitée. Vous pouvez télécharger vos données personnelles en cliquant sur le lien ci-dessous. Par sécurité et afin de respecter vos données privées, ce fichier sera automatiquement supprimé le ###EXPIRATION###, alors veuillez le télécharger d’ici là.\n" +"\n" +"###LINK###\n" +"\n" +"Cordialement,\n" +"L’équipe de ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:135 +msgid "Email sent." +msgstr "E-mail envoyé." + +#: wp-admin/includes/privacy-tools.php:746 +msgid "Unable to send personal data export email." +msgstr "Impossible d’envoyer l’export de données personnelles par e-mail." + +#. translators: Personal data export notification email subject. %s: Site +#. title. +#: wp-admin/includes/privacy-tools.php:636 +msgid "[%s] Personal Data Export" +msgstr "[%s] Export de données personnelles" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:134 +msgid "Sending email..." +msgstr "Envoi de l’e-mail…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:62 +msgid "Download personal data again" +msgstr "Retélécharger les données personnelles" + +#: wp-admin/includes/privacy-tools.php:593 +msgid "Invalid request ID when sending personal data export email." +msgstr "ID non valide lors de l’envoi par e-mail des données d’export." + +#: wp-admin/includes/privacy-tools.php:467 +msgid "Personal Data Export" +msgstr "Export de données personnelles" + +#. translators: %s: User's email address. +#: wp-admin/includes/privacy-tools.php:361 +msgid "Personal Data Export for %s" +msgstr "Export de données personnelles pour %s" + +#: wp-admin/includes/ajax-actions.php:4947 +msgid "A valid email address must be given." +msgstr "Erreur : une adresse de messagerie valide doit être fournie." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:63 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:136 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:142 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:68 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:142 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:149 +msgid "Retry" +msgstr "Réessayer" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:156 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:163 +msgid "Remove request" +msgstr "Supprimer la demande" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:116 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:122 +msgid "Waiting for confirmation" +msgstr "Attente de confirmation" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:45 +msgid "Requested" +msgstr "Demande envoyée" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:43 +msgid "Requester" +msgstr "Origine de la demande" + +#: wp-admin/erase-personal-data.php:138 wp-admin/export-personal-data.php:138 +msgid "Send Request" +msgstr "Envoyer une demande" + +#: wp-admin/erase-personal-data.php:119 wp-admin/export-personal-data.php:119 +msgid "Username or email address" +msgstr "Nom d’utilisateur/utilisatrice ou adresse de messagerie" + +#: wp-admin/export-personal-data.php:114 +msgid "Add Data Export Request" +msgstr "Ajouter une demande d’export de données" + +#: wp-admin/includes/privacy-tools.php:171 +msgid "Confirmation request initiated successfully." +msgstr "Demande de confirmation bien initialisée." + +#: wp-admin/includes/privacy-tools.php:135 +msgid "Unable to add this request. A valid email address or username must be supplied." +msgstr "Impossible d’ajouter cette demande. Une adresse de messagerie ou un nom d’utilisateur valide doit être fourni." + +#: wp-admin/includes/privacy-tools.php:91 +msgid "Confirmation request sent again successfully." +msgstr "Demande de confirmation bien ré-envoyée." + +#: wp-admin/includes/privacy-tools.php:155 +msgid "Unable to initiate confirmation request." +msgstr "Impossible d’initialiser la demande de confirmation." + +#: wp-admin/includes/ajax-actions.php:4929 +#: wp-admin/includes/ajax-actions.php:5119 +msgid "Invalid request ID." +msgstr "ID de demande non valide." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5293 +msgid "Expected done flag in response array from %1$s eraser (index %2$d)." +msgstr "Marqueur de résultat attendu dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5282 +msgid "Expected messages key to reference an array in response array from %1$s eraser (index %2$d)." +msgstr "Clé de messages de référence d’un tableau attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5271 +msgid "Expected messages key in response array from %1$s eraser (index %2$d)." +msgstr "Clé de messages attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5260 +msgid "Expected items_retained key in response array from %1$s eraser (index %2$d)." +msgstr "Clé items_retained attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5249 +msgid "Expected items_removed key in response array from %1$s eraser (index %2$d)." +msgstr "Clé items_removed attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5238 +msgid "Did not receive array from %1$s eraser (index %2$d)." +msgstr "Pas de tableau reçu depuis l’effaceur %1$s (index %2$d)." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5202 +msgid "Eraser array at index %d does not include a friendly name." +msgstr "Le tableau d’effacement à l’index %d ne contient pas de nom élégant." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5197 +msgid "Expected an array describing the eraser at index %d." +msgstr "Un tableau décrivant l’effaceur à l’index %d est attendu." + +#: wp-admin/includes/ajax-actions.php:5000 +#: wp-admin/includes/ajax-actions.php:5188 +msgid "Page index cannot be less than one." +msgstr "L’index de page ne peut pas être inférieur à 1." + +#: wp-admin/includes/ajax-actions.php:5180 +msgid "Eraser index cannot be less than one." +msgstr "L’index de suppression ne peut pas être inférieur à 1." + +#: wp-admin/includes/ajax-actions.php:5139 +msgid "Invalid email address in request." +msgstr "Adresse de messagerie non valide dans la demande." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:65 +msgid "Force erase personal data" +msgstr "Forcer l’effacement des données personnelles" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:61 +msgid "Downloading data..." +msgstr "Téléchargement des données…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:60 +msgid "Download personal data" +msgstr "Télécharger les données personnelles" + +#: wp-admin/includes/plugin-install.php:691 +msgid "Requires PHP Version:" +msgstr "Nécessite PHP en version :" + +#: wp-admin/customize.php:80 +msgid "This changeset cannot be further modified." +msgstr "Ce jeu de modifications ne peut pas être modifié davantage." + +#. translators: %s: https://wordpress.org/about/stats +#: wp-admin/privacy.php:52 +msgid "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." +msgstr "Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées pour réaliser des statistiques comme celles que vous pouvez consulter sur la page de statistiques de WordPress.org." + +#. translators: %s: Link to Custom CSS section in the Customizer. +#: wp-admin/theme-editor.php:218 +msgid "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." +msgstr "Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué." + +#: wp-admin/theme-editor.php:216 +msgid "Did you know?" +msgstr "Le saviez-vous ?" + +#: wp-admin/credits.php:130 +msgid "Noteworthy Contributors" +msgstr "Contributrices & contributeurs remarquables" + +#: wp-admin/theme-editor.php:413 +msgid "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal." + +#: wp-admin/plugin-editor.php:359 +msgid "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal." + +#: wp-admin/plugin-editor.php:358 +msgid "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates." +msgstr "Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour." + +#. translators: 1: Documentation URL, 2: URL to Reading Settings screen. +#: wp-admin/options-writing.php:241 +msgid "WordPress is not notifying any Update Services because of your site’s visibility settings." +msgstr "WordPress ne notifie aucun service de mise à jour du fait de vos réglages de visibilité." + +#. translators: 1: Documentation URL, 2: web.config, 3: Ctrl + A, 4: ⌘ + A +#: wp-admin/options-permalink.php:499 +msgid "Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file." +msgstr "Erreur : Le répertoire racine de votre site n'est pasaccessible en écriture, la création d'un fichier n'a pas pu être faite automatiquement. Voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:237 +msgid "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." +msgstr "Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress." + +#. translators: %s: https://wordpress.org/about/privacy +#: wp-admin/privacy.php:62 +msgid "We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy." +msgstr "Nous prenons très au sérieux le respect de la vie privée et la transparence. Pour en savoir plus sur les données que nous collectons, et comment nous les utilisons, veuillez visiter notre politique de confidentialité." + +#: wp-admin/freedoms.php:53 wp-admin/freedoms.php:103 +msgid "https://wordpress.org/about/license/" +msgstr "https://fr.wordpress.org/about/license/" + +#: wp-admin/privacy.php:46 +msgid "From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes." +msgstr "De temps en temps, votre site WordPress peut envoyer des données sur WordPress.org incluant entre autres la version de WordPress utilisée et la liste des extensions et des thèmes installés." + +#. translators: Attachment information. %s: Date the attachment was uploaded. +#: wp-admin/includes/meta-boxes.php:445 +msgid "Uploaded on: %s" +msgstr "Téléversé sur : %s" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-plugin-upgrader.php:77 +#: wp-admin/includes/class-theme-upgrader.php:75 +msgid "Downloading installation package from %s…" +msgstr "Téléchargement du paquet d’installation depuis %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-language-pack-upgrader.php:117 +msgid "Downloading translation from %s…" +msgstr "Téléchargement des traductions depuis %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-core-upgrader.php:33 +#: wp-admin/includes/class-plugin-upgrader.php:60 +#: wp-admin/includes/class-theme-upgrader.php:59 +msgid "Downloading update from %s…" +msgstr "Téléchargement de la mise à jour depuis %s…" + +#. translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: +#. add_meta_boxes +#: wp-admin/includes/template.php:2681 +msgid "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." +msgstr "Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s." + +#: wp-admin/includes/template.php:2304 +msgid "Customization Draft" +msgstr "Brouillon de personnalisation" + +#. translators: %s: URL to the Customizer. +#: wp-admin/includes/meta-boxes.php:316 +msgid "This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." +msgstr "Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements." + +#: wp-admin/theme-editor.php:275 +msgid "Theme Files" +msgstr "Fichiers du thème" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/misc.php:421 wp-admin/includes/misc.php:523 +msgid "folder" +msgstr "dossier" + +#: wp-admin/includes/file.php:591 +msgid "Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP." +msgstr "Impossible d’envoyer un message au site afin de vérifier l’absence d’erreurs fatales. Du coup, la modification PHP a été annulée. Vous allez devoir téléverser votre fichier PHP modifié par un autre moyen, par exemple en utilisant un client FTP." + +#: wp-admin/press-this.php:75 wp-admin/press-this.php:81 +msgid "Installation Required" +msgstr "Installation requise" + +#. translators: %s: Plugin filename. +#: wp-admin/includes/plugin.php:1050 +msgid "Could not fully remove the plugin %s." +msgstr "Impossible de supprimer l’extension %s." + +#: wp-admin/user-new.php:357 +msgid "User has been created, but could not be added to this site." +msgstr "L’utilisateur a été créé, mais il ne peut pas être ajouté à ce site." + +#: wp-admin/user-new.php:354 +msgid "That user could not be added to this site." +msgstr "Cet utilisateur ne peut pas être ajouté à ce site." + +#: wp-admin/user-edit.php:322 +msgid "Disable syntax highlighting when editing code" +msgstr "Désactiver le surlignage syntaxique lors de l’édition de code." + +#: wp-admin/user-edit.php:319 +msgid "Syntax Highlighting" +msgstr "Édition de code" + +#: wp-admin/setup-config.php:446 wp-admin/setup-config.php:511 +msgid "Run the installation" +msgstr "Lancer l’installation" + +#: wp-admin/privacy.php:63 +msgid "https://wordpress.org/about/privacy/" +msgstr "https://wordpress.org/about/privacy/" + +#: wp-admin/press-this.php:80 +msgid "Press This is not available. Please contact your site administrator." +msgstr "Press This n’est pas disponible. Veuillez contacter l’administrateur du site." + +#. translators: %s: URL to Press This bookmarklet on the main site. +#: wp-admin/press-this.php:68 +msgid "Press This is not installed. Please install Press This from the main site." +msgstr "Press This n’est pas installé. Veuillez installer Press This depuis le site principal." + +#: wp-admin/press-this.php:44 +msgid "Activate Press This" +msgstr "Activer Press This" + +#: wp-admin/plugin-editor.php:363 wp-admin/theme-editor.php:417 +msgid "I understand" +msgstr "J’ai compris" + +#: wp-admin/plugin-editor.php:357 wp-admin/theme-editor.php:396 +msgid "Heads up!" +msgstr "Faites attention !" + +#: wp-admin/plugin-editor.php:307 +msgid "Warning: Making changes to active plugins is not recommended." +msgstr "Attention : Effectuer des changements dans les extensions actives n’est pas recommandé." + +#: wp-admin/plugin-editor.php:287 wp-admin/theme-editor.php:313 +msgid "Selected file content:" +msgstr "Contenu du fichier sélectionné :" + +#: wp-admin/plugin-editor.php:204 wp-admin/theme-editor.php:204 +msgid "There was an error while trying to update the file. You may need to fix something and try updating again." +msgstr "Une erreur s'est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer." + +#. translators: %s: Select field to choose the front page. +#: wp-admin/options-reading.php:116 +msgid "Homepage: %s" +msgstr "Page d’accueil : %s" + +#: wp-admin/options-permalink.php:386 +msgid "Available tags:" +msgstr "Étiquettes disponibles :" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:315 +msgid "%s (already used in permalink structure)" +msgstr "%s (déjà utilisé dans la structure de permalien)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:311 +msgid "%s added to permalink structure" +msgstr "%s ajouté à la structure du permalien" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:298 +msgid "%s (A sanitized version of the author name.)" +msgstr "%s (Une version sanitisée du nom de l’auteur)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:296 +msgid "%s (Category slug. Nested sub-categories appear as nested directories in the URL.)" +msgstr "%s (identifiant de catégorie. les sous-catégories imbriquées apparaissent sous la forme de sous-répertoires dans l’adresse web)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:294 +msgid "%s (The sanitized post title (slug).)" +msgstr "%s (Le titre sanitisé de l’article (identifiant).)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:292 +msgid "%s (The unique ID of the post, for example 423.)" +msgstr "%s (L'ID unique de l'article, par exemple 423.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:290 +msgid "%s (Second of the minute, for example 33.)" +msgstr "%s (Seconde de la minute, par exemple 33.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:288 +msgid "%s (Minute of the hour, for example 43.)" +msgstr "%s (Minute de l'heure, par exemple 43.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:286 +msgid "%s (Hour of the day, for example 15.)" +msgstr "%s (Heure de la journée, par exemple 15.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:284 +msgid "%s (Day of the month, for example 28.)" +msgstr "%s (Jour du mois, par exemple 28.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:282 +msgid "%s (Month of the year, for example 05.)" +msgstr "%s (Mois de l'année, par exemple 05.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:280 +msgid "%s (The year of the post, four digits, for example 2004.)" +msgstr "%s (L’année de l'article, en quatre chiffres, par exemple 2004.)" + +#: wp-admin/includes/theme-install.php:264 +msgid "Theme Installation" +msgstr "Installation du thème" + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1865 +msgid "%s is currently editing this post." +msgstr "%s modifie actuellement cette publication." + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1862 +msgid "%s is currently editing this post. Do you want to take over?" +msgstr "%s modifie actuellement cette publication. Voulez-vous prendre la main ?" + +#: wp-admin/includes/plugin-install.php:613 wp-admin/update.php:128 +msgid "Plugin Installation" +msgstr "Installation de l'extension" + +#: wp-admin/includes/plugin.php:507 +msgid "Custom installation script." +msgstr "Script personnalisé d'installation." + +#: wp-admin/includes/plugin-install.php:698 +msgid "Active Installations:" +msgstr "Installations actives :" + +#: wp-admin/includes/ms.php:1159 +msgid "Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database." +msgstr "Réglages — Cette page affiche une liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par les extensions que vous activez. notez que certains champs sont grisé et affichent « Serialized Data » ; vous ne pouvez pas modifier ces valeurs en raison de la manière dont elles sont stockées dans la base de données." + +#. translators: %s: URL to Network Themes screen. +#: wp-admin/includes/ms.php:1156 +msgid "Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen." +msgstr "Thèmes — Cette zone affiche les thèmes qui n’ont pas ancore été activés sur le réseau. Un thème activé dans ce menu le rendra accessible au présent site. Cela n’active pas le thème, mais l'affichera dans le menu Apparence du site. Pour activer un thème sur le réseau entier, allez sur l’écran Thèmes du Réseau." + +#: wp-admin/includes/ms.php:1153 +msgid "Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network." +msgstr "Utilisateurs — Cette page affiche les utilisateurs associés à ce site. Vous pouvez modifier leur rôle, mettre à zéro leur mot de passe, ou les retirer du site. Retirer un utilisateur d’un site ne le retire pas du réseau." + +#: wp-admin/includes/ms.php:1152 +msgid "Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable." +msgstr "Info — L’adresse web du site est rarement modifiée, car cela peut empêche le site de fonctionnement correctement. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs du réseau peuvent archiver un site, le marquer comme indésirable, le supprimer et le marquer comme étant « pour adultes », afin de le retirer de la liste publique, ou le désactiver." + +#: wp-admin/includes/ms.php:1151 +msgid "The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable." +msgstr "Le menu sert à modifier les informations propres à chaque site, notamment si leur interface d’administration est inaccessible." + +#: wp-admin/includes/file.php:520 +msgid "Unable to write to file." +msgstr "Impossible d'écrire sur le fichier" + +#. translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), +#. then use that. Otherwise, leave untranslated. +#: wp-admin/includes/dashboard.php:1344 +msgctxt "Events and News dashboard widget" +msgid "https://wordpress.org/news/" +msgstr "https://fr.wordpress.org/news/" + +#: wp-admin/includes/dashboard.php:87 wp-admin/includes/dashboard.php:659 +msgid "Your Recent Drafts" +msgstr "Vos brouillons récents" + +#. translators: 1: Line number, 2: File path. +#: wp-admin/includes/file.php:316 +msgid "Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again." +msgstr "Vos modifications de code PHP ont été annulées en raison d’une erreur sur la ligne %1$s du fichier %2$s. Veuillez la corriger et réessayer d’enregistrer." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-users-list-table.php:589 +#: wp-admin/includes/class-wp-ms-users-list-table.php:316 +msgctxt "name" +msgid "Unknown" +msgstr "Inconnu" + +#. translators: %s: Author's display name. +#: wp-admin/includes/class-wp-users-list-table.php:497 +msgid "View posts by %s" +msgstr "Voir les articles par %s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-terms-list-table.php:578 +msgid "No description" +msgstr "Aucune description" + +#. translators: %s: Number of installations. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:718 +msgid "%s Active Installations" +msgstr "%s installations activées" + +#: wp-admin/includes/class-theme-upgrader.php:81 +msgid "Theme installation failed." +msgstr "L’installation du thème a échoué." + +#: wp-admin/includes/class-plugin-upgrader.php:83 +msgid "Plugin installation failed." +msgstr "L'installation de l'extension a échouée." + +#: wp-admin/customize.php:71 +msgid "Your scheduled changes just published" +msgstr "Votre planification vient d'être publiée" + +#: wp-admin/includes/class-plugin-installer-skin.php:110 +msgid "Activate Plugin & Go to Press This" +msgstr "Activer l’extension et aller sur Press This" + +#: wp-admin/options-discussion.php:60 +msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" +msgstr "Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications." + +#: wp-admin/menu-header.php:281 wp-admin/js/common.js:2025 +msgid "Collapse Main menu" +msgstr "Replier le menu principal" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:847 +#: wp-admin/includes/plugin-install.php:1019 wp-admin/js/updates.js:963 +msgctxt "plugin" +msgid "Network Activate %s" +msgstr "Activer %s sur le réseau" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:953 +#: wp-admin/includes/plugin-install.php:1006 wp-admin/js/updates.js:974 +msgctxt "plugin" +msgid "Activate %s" +msgstr "Activer %s" + +#: wp-admin/includes/class-wp-media-list-table.php:261 +msgid "No media files found." +msgstr "Aucun fichier média trouvé." + +#: wp-admin/import.php:139 wp-admin/import.php:188 wp-admin/js/updates.js:1252 +msgid "Run Importer" +msgstr "Lancer l’outil d’importation" + +#. translators: %s: Importer name. +#: wp-admin/import.php:138 wp-admin/import.php:187 wp-admin/js/updates.js:1248 +msgid "Run %s" +msgstr "Lancer %s" + +#: wp-admin/includes/class-wp-debug-data.php:124 +msgctxt "comment status" +msgid "Open" +msgstr "Ouvert" + +#: wp-admin/includes/image-edit.php:66 +msgid "Image Rotation" +msgstr "Rotation de l’image" + +#. translators: %s: Meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1515 +msgid "There are no events scheduled near you at the moment. Would you like to organize a WordPress event?" +msgstr "Il n’y a aucun évènement planifié à proximité de vous pour le moment. Voulez-vous en organiser un ?" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:44 +msgid "Edit User %s" +msgstr "Modifier l’utilisateur %s" + +#. translators: Hidden accessibility text. %s: Widget title. +#: wp-admin/includes/widgets.php:251 +msgid "Edit widget: %s" +msgstr "Modifier le widget : %s" + +#: wp-admin/includes/dashboard.php:1507 wp-admin/includes/dashboard.php:1516 +msgid "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" +msgstr "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" + +#. translators: %s: The name of a city. +#: wp-admin/includes/dashboard.php:1434 +msgid "Attend an upcoming event near %s." +msgstr "Participez à un évènement à venir près de %s." + +#: wp-admin/includes/dashboard.php:1392 +msgid "City:" +msgstr "Ville :" + +#: wp-admin/includes/dashboard.php:1332 +msgid "WordCamps" +msgstr "WordCamps" + +#: wp-admin/includes/dashboard.php:1320 +msgid "Meetups" +msgstr "Meetups" + +#: wp-admin/includes/dashboard.php:92 +msgid "WordPress Events and News" +msgstr "Évènements et nouveautés WordPress" + +#. translators: Date format for upcoming events on the dashboard. Include the +#. day of the week. See https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:401 +#: wp-admin/includes/class-wp-community-events.php:406 +#: wp-admin/js/dashboard.js:774 +msgid "l, M j, Y" +msgstr "l j M Y" + +#: wp-admin/includes/class-wp-community-events.php:125 +msgid "Unknown API error." +msgstr "Erreur d’API inconnue." + +#: wp-admin/includes/dashboard.php:1404 +msgid "Cincinnati" +msgstr "Paris" + +#. translators: %d: Numeric HTTP status code, e.g. 400, 403, 500, 504, etc. +#: wp-admin/includes/class-wp-community-events.php:120 +msgid "Invalid API response code (%d)." +msgstr "Code de réponse d’API non valide (%d)." + +#: wp-admin/includes/dashboard.php:1362 wp-admin/js/dashboard.js:585 +msgid "An error occurred. Please try again." +msgstr "Une erreur est survenue. Veuillez essayer à nouveau." + +#. translators: 1: The city the user searched for, 2: Meetup organization +#. documentation URL. +#: wp-admin/includes/dashboard.php:1505 +msgid "There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?" +msgstr "Il n’y a aucun évènement planifié à proximité de %1$s pour le moment. Voulez-vous en organiser un ?" + +#: wp-admin/user-new.php:23 wp-admin/user-new.php:189 +msgid "Sorry, you are not allowed to create users." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des utilisateurs." + +#: wp-admin/users.php:193 wp-admin/users.php:287 +msgid "Sorry, you are not allowed to delete users." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des utilisateurs." + +#: wp-admin/customize.php:268 +msgctxt "short (~12 characters) label for hide controls button" +msgid "Hide Controls" +msgstr "Masquer les controles" + +#: wp-admin/theme-install.php:72 +msgid "Expand Sidebar" +msgstr "Étendre la colonne latérale" + +#: wp-admin/nav-menus.php:1194 +msgid "Display location" +msgstr "Afficher l’emplacement" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:537 +msgid "ID #%1$s: %2$s Sorry, you are not allowed to remove this user." +msgstr "ID #%1$s : %2$s Désolé, vous n’êtes pas autorisé à supprimer cet utilisateur." + +#: wp-admin/user-edit.php:61 +msgid "You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see." +msgstr "Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans que cela affecte la langue que les visiteurs du site voient." + +#: wp-admin/theme-install.php:272 +msgid "Edit Filters" +msgstr "Modifier les filtres" + +#: wp-admin/theme-install.php:245 wp-admin/theme-install.php:267 +msgid "Clear current filters" +msgstr "Réinitialiser les filtres actuels" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:74 +msgid "Select one or more Theme features to filter by" +msgstr "Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/theme.php:887 wp-admin/theme-install.php:527 +msgid "(%s ratings)" +msgstr "(%s votes)" + +#: wp-admin/includes/template.php:2446 +msgid "Current Background Image" +msgstr "Image d’arrière plan actuelle" + +#: wp-admin/includes/template.php:2426 +msgid "Current Header Image" +msgstr "Image d’en-tête actuelle" + +#: wp-admin/includes/plugin-install.php:340 +msgid "Search plugins..." +msgstr "Rechercher des extensions..." + +#. translators: Hidden accessibility text. %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1052 +msgid "“%s” is locked" +msgstr "“%s” est verrouillé" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:147 +msgid "Set status" +msgstr "État" + +#: wp-admin/includes/ajax-actions.php:2591 +msgid "Sorry, you are not allowed to attach files to this post." +msgstr "Désolé, vous n’êtes pas autorisé à attacher des fichiers à ce contenu." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:713 +#: wp-admin/includes/plugin-install.php:708 +msgctxt "Active plugin installations" +msgid "Less Than 10" +msgstr "Inférieur à 10" + +#: wp-admin/freedoms.php:96 wp-admin/includes/plugin-install.php:414 +#: wp-admin/includes/plugin-install.php:715 wp-admin/plugin-install.php:101 +#: wp-admin/plugins.php:570 +msgid "https://wordpress.org/plugins/" +msgstr "https://fr.wordpress.org/plugins/" + +#: wp-admin/customize.php:248 +msgid "The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes." +msgstr "L’outil de personnalisation vous permet de prévisualiser les modifications sur votre site avant de les publier. Vous pouvez naviguer sur différentes pages de votre site au sein de la prévisualisation. Des raccourcis sont affichés pour certains éléments modifiables. La personnalisation est destinée à être utilisée avec des thèmes non basé sur les blocs." + +#: wp-admin/customize.php:72 wp-admin/customize.php:81 +msgid "Customize New Changes" +msgstr "Personnaliser les nouvelles modifications" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-custom-background.php:485 +#: wp-admin/includes/class-custom-background.php:489 +msgctxt "Background Scroll" +msgid "Scroll" +msgstr "Défilement" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-custom-background.php:472 +#: wp-admin/includes/class-custom-background.php:476 +msgctxt "Background Repeat" +msgid "Repeat" +msgstr "Répétition" + +#: wp-admin/import.php:33 +msgid "Support" +msgstr "Forums d’entraide" + +#. translators: %s: Number of failed updates. +#: wp-admin/includes/update.php:960 +msgid "%s update failed." +msgstr "%s mise à jour a échoué." + +#. translators: %s: Number of failed updates. +#: wp-admin/includes/update.php:965 +msgid "%s updates failed." +msgstr "%s mises à jour ont échoué." + +#: wp-admin/includes/class-wp-plugins-list-table.php:456 +msgid "Search installed plugins..." +msgstr "Recherchez parmi vos extensions..." + +#: wp-admin/plugin-install.php:103 +msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." +msgstr "Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section d’extensions" + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/plugin-install.php:100 +msgid "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses." +msgstr "Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:326 +msgid "Search plugins by:" +msgstr "Recherche d’extensions par :" + +#: wp-admin/includes/import.php:197 +msgid "Convert existing categories to tags or tags to categories, selectively." +msgstr "Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective." + +#: wp-admin/includes/import.php:203 +msgid "Import posts from LiveJournal using their API." +msgstr "Importer les articles depuis LiveJournal par le biais de leur API." + +#: wp-admin/includes/import.php:209 +msgid "Import posts and comments from a Movable Type or TypePad blog." +msgstr "Importer les articles et commentaires depuis un blog Movable Type ou TypePad." + +#: wp-admin/includes/import.php:215 +msgid "Import posts from an RSS feed." +msgstr "Importer des articles depuis un flux RSS." + +#: wp-admin/includes/import.php:221 +msgid "Import posts & media from Tumblr using their API." +msgstr "Importer des articles et des fichiers média depuis Tumblr par le biais de leur API." + +#: wp-admin/includes/import.php:227 +msgid "Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file." +msgstr "Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’export WordPress." + +#: wp-admin/includes/import.php:191 +msgid "Import posts, comments, and users from a Blogger blog." +msgstr "Importer des articles, commentaires et utilisateurs depuis un blog Blogger." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:822 +msgctxt "plugin" +msgid "Network Deactivate %s" +msgstr "Désactiver %s du réseau" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:877 +#: wp-admin/includes/class-wp-plugins-list-table.php:983 +msgctxt "plugin" +msgid "Delete %s" +msgstr "Supprimer %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:911 +msgctxt "plugin" +msgid "Deactivate %s" +msgstr "Désactiver %s" + +#: wp-admin/user-new.php:271 +msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." +msgstr "Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue." + +#: wp-admin/user-new.php:269 +msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." +msgstr "Les nouveaux utilisateurs reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher le mot de passe ». L’identifiant ne peut pas être modifié une fois que le compte utilisateur a été créé." + +#. translators: %s: Plugin name. +#: wp-admin/includes/update.php:1033 +msgctxt "plugin" +msgid "%s was successfully deleted." +msgstr "%s a bien été supprimé." + +#: wp-admin/plugins.php:566 +msgid "The search for installed plugins will search for terms in their name, description, or author." +msgstr "La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions ou leurs auteurs." + +#: wp-admin/includes/theme.php:337 +msgid "Custom Logo" +msgstr "Logo personnalisé" + +#: wp-admin/user-new.php:16 wp-admin/user-new.php:56 +#: wp-admin/network/user-new.php:14 +msgid "Sorry, you are not allowed to add users to this network." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des utilisateurs pour ce réseau." + +#: wp-admin/customize.php:35 +msgid "Sorry, you are not allowed to edit this changeset." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications." + +#: wp-admin/users.php:470 wp-admin/users.php:502 +#: wp-admin/network/site-users.php:120 +msgid "Sorry, you are not allowed to remove users." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des utilisateurs." + +#: wp-admin/themes.php:449 wp-admin/themes.php:826 +msgid "New version available. " +msgstr "Nouvelle version disponible. " + +#: wp-admin/update-core.php:23 wp-admin/update-core.php:1155 +#: wp-admin/update-core.php:1191 wp-admin/update-core.php:1232 +#: wp-admin/update-core.php:1273 wp-admin/update-core.php:1302 +msgid "Sorry, you are not allowed to update this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour ce site." + +#: wp-admin/includes/ajax-actions.php:4297 wp-admin/update.php:211 +#: wp-admin/update.php:234 +msgid "Sorry, you are not allowed to update themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site." + +#: wp-admin/theme-install.php:188 +msgid "The Theme Installer screen requires JavaScript." +msgstr "L’écran d’installation de thèmes nécessite JavaScript." + +#: wp-admin/includes/file.php:439 wp-admin/theme-editor.php:18 +msgid "Sorry, you are not allowed to edit templates for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site." + +#: wp-admin/setup-config.php:343 +msgid "Error: \"Table Prefix\" is invalid." +msgstr "Erreur : préfixe de table invalide." + +#: wp-admin/plugins.php:94 +msgid "Sorry, you are not allowed to activate plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site." + +#: wp-admin/plugins.php:228 +msgid "Sorry, you are not allowed to deactivate plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site." + +#: wp-admin/includes/file.php:406 wp-admin/plugin-editor.php:18 +msgid "Sorry, you are not allowed to edit plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site." + +#: wp-admin/options.php:257 +msgid "Sorry, you are not allowed to modify unregistered settings for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site. " + +#: wp-admin/ms-delete-site.php:17 +msgid "Sorry, you are not allowed to delete this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/nav-menus.php:790 wp-admin/widgets-form.php:394 +msgid "Manage with Live Preview" +msgstr "Gérer avec l’aperçu en direct" + +#: wp-admin/options-discussion.php:12 wp-admin/options-general.php:16 +#: wp-admin/options-media.php:13 wp-admin/options-permalink.php:13 +#: wp-admin/options-reading.php:13 wp-admin/options-writing.php:13 +#: wp-admin/options.php:51 wp-admin/network.php:19 +msgid "Sorry, you are not allowed to manage options for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les options de ce site. " + +#: wp-admin/link-add.php:13 +msgid "Sorry, you are not allowed to add links to this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site." + +#. translators: %s: Gravatar URL. +#: wp-admin/includes/upgrade.php:261 +msgid "" +"Hi, this is a comment.\n" +"To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" +"Commenter avatars come from Gravatar." +msgstr "" +"Bonjour, ceci est un commentaire.\n" +"Pour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\n" +"Les avatars des personnes qui commentent arrivent depuis Gravatar." + +#. translators: %s: Theme name. +#: wp-admin/includes/update.php:1041 +msgctxt "theme" +msgid "%s was successfully deleted." +msgstr "%s a bien été supprimé." + +#: wp-admin/includes/theme.php:352 +msgid "Grid Layout" +msgstr "Style en grille" + +#: wp-admin/includes/theme.php:341 +msgid "Footer Widgets" +msgstr "Widgets de pied de page" + +#: wp-admin/includes/theme.php:319 +msgid "Blog" +msgstr "Blog" + +#: wp-admin/includes/theme.php:320 +msgid "E-Commerce" +msgstr "E-Commerce" + +#: wp-admin/includes/theme.php:321 +msgid "Education" +msgstr "Éducation" + +#: wp-admin/includes/theme.php:322 +msgid "Entertainment" +msgstr "Divertissement" + +#: wp-admin/includes/theme.php:323 +msgid "Food & Drink" +msgstr "Nourriture & Boisson" + +#: wp-admin/includes/dashboard.php:1345 wp-admin/includes/theme.php:325 +msgid "News" +msgstr "Nouvelles" + +#: wp-admin/includes/theme.php:326 +msgid "Photography" +msgstr "Photographie" + +#: wp-admin/includes/theme.php:327 +msgid "Portfolio" +msgstr "Portfolio" + +#: wp-admin/includes/update.php:334 +msgid "Please update WordPress now" +msgstr "Veuillez mettre WordPress à jour maintenant" + +#. translators: %s: Number of themes. +#: wp-admin/includes/update.php:950 +msgid "%s themes successfully updated." +msgstr "%s thèmes mis à jour." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/update.php:945 +msgid "%s plugins successfully updated." +msgstr "%s extensions mises à jour." + +#. translators: %s: Number of themes. +#: wp-admin/includes/update.php:938 +msgid "%s theme successfully updated." +msgstr "%s thème mis à jour." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/update.php:933 +msgid "%s plugin successfully updated." +msgstr "%s extension mise à jour." + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version. +#: wp-admin/includes/update.php:339 +msgid "WordPress %2$s is available! Please notify the site administrator." +msgstr "WordPress %2$s est disponible ! Veuillez informer l’administrateur du site." + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version, 3: +#. URL to network admin, 4: Accessibility text. +#: wp-admin/includes/update.php:330 +msgid "WordPress %2$s is available! Please update now." +msgstr "WordPress %2$s est disponible ! Veuillez faire la mise à jour maintenant." + +#: wp-admin/includes/template.php:2708 +msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." +msgstr "Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:2037 +msgid "Close media attachment panel" +msgstr "Fermer le panneau des fichiers attachés." + +#: wp-admin/includes/file.php:48 +msgid "Embed Template" +msgstr "Modèle intégré" + +#: wp-admin/includes/file.php:49 +msgid "Embed 404 Template" +msgstr "Modèle intégré 404" + +#: wp-admin/includes/file.php:50 +msgid "Embed Content Template" +msgstr "Modèle intégré de contenu" + +#: wp-admin/includes/file.php:51 +msgid "Embed Header Template" +msgstr "Modèle intégré d’en-tête" + +#: wp-admin/includes/file.php:52 +msgid "Embed Footer Template" +msgstr "Modèle intégré de pied de page" + +#: wp-admin/includes/menu.php:380 wp-admin/my-sites.php:17 +#: wp-admin/network/index.php:17 wp-admin/network/settings.php:17 +#: wp-admin/network/site-info.php:32 wp-admin/network/site-settings.php:32 +#: wp-admin/network/site-themes.php:57 wp-admin/network/site-users.php:50 +#: wp-admin/network/sites.php:14 wp-admin/network/sites.php:141 +#: wp-admin/network/upgrade.php:39 wp-admin/network/user-new.php:37 +#: wp-admin/network/users.php:14 wp-admin/network/users.php:24 +#: wp-admin/network/users.php:51 wp-admin/network/users.php:65 +#: wp-admin/network/users.php:160 +msgid "Sorry, you are not allowed to access this page." +msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." + +#: wp-admin/includes/ms.php:1068 +msgid "Info" +msgstr "Info" + +#: wp-admin/includes/meta-boxes.php:1083 +msgid "Need help? Use the Help tab above the screen title." +msgstr "Besoin d’aide ? Utilisez l’onglet « Aide » au dessus du titre de l’écran." + +#: wp-admin/includes/ajax-actions.php:4626 wp-admin/update.php:29 +#: wp-admin/update.php:57 wp-admin/update.php:80 +msgid "Sorry, you are not allowed to update plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site." + +#: wp-admin/includes/ajax-actions.php:4772 +msgid "Plugin could not be deleted." +msgstr "L’extension ne peut pas être supprimée." + +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:378 +#: wp-admin/link-manager.php:12 wp-admin/link-manager.php:92 +msgid "Sorry, you are not allowed to edit the links for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site." + +#: wp-admin/includes/class-wp-media-list-table.php:590 +msgid "(Private post)" +msgstr "(Article privé)" + +#: wp-admin/includes/plugin-install.php:1000 wp-admin/js/updates.js:1146 +#: wp-admin/js/updates.js:1154 +msgctxt "plugin" +msgid "Active" +msgstr "Actif" + +#: wp-admin/options-privacy.php:13 wp-admin/privacy-policy-guide.php:13 +msgid "Sorry, you are not allowed to manage privacy options on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les options de confidentialité sur ce site." + +#: wp-admin/includes/ajax-actions.php:4157 +#: wp-admin/includes/ajax-actions.php:4283 +#: wp-admin/includes/ajax-actions.php:4378 +msgid "No theme specified." +msgstr "Aucun thème spécifié." + +#: wp-admin/includes/ajax-actions.php:4170 wp-admin/theme-install.php:16 +#: wp-admin/update.php:262 wp-admin/update.php:304 wp-admin/update.php:342 +msgid "Sorry, you are not allowed to install themes on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site." + +#: wp-admin/includes/ajax-actions.php:4390 +msgid "Sorry, you are not allowed to delete themes on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site." + +#: wp-admin/includes/ajax-actions.php:4428 +msgid "Theme could not be deleted." +msgstr "Le thème ne peut pas être supprimé." + +#: wp-admin/admin.php:305 wp-admin/import.php:15 +msgid "Sorry, you are not allowed to import content into this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site." + +#: wp-admin/edit.php:265 +msgid "You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts." +msgstr "Vous pouvez filtrer la liste des articles par statut en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec ce statut. La vue par défaut affiche tous les articles." + +#: wp-admin/export.php:13 +msgid "Sorry, you are not allowed to export the content of this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site." + +#: wp-admin/includes/class-custom-image-header.php:1122 +msgid "Sorry, you are not allowed to customize headers." +msgstr "Désolé, vous n’avez pas l’autorisation de personnaliser les en-têtes." + +#. translators: Hidden accessibility text. +#: wp-admin/customize.php:213 +msgid "Close the Customizer and go back to the previous page" +msgstr "Fermer l’outil de personnalisation et retour vers la page précédente." + +#: wp-admin/credits.php:135 +msgid "Release Deputy" +msgstr "Assistant du responsable de cette version" + +#: wp-admin/credits.php:134 +msgid "Release Design Lead" +msgstr "Responsable Design de cette version" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:832 +msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." +msgstr "Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à un article, que vous pouvez ensuite utiliser dans votre thème." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:795 +msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary." +msgstr "Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:757 +msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." +msgstr "Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus." + +#: wp-admin/edit-form-advanced.php:295 +msgid "The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "Le mode textuel vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode texte, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML." + +#: wp-admin/edit-form-advanced.php:294 +msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." +msgstr "Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options." + +#: wp-admin/upload.php:117 +msgid "Error saving media file." +msgstr "Une erreur est survenue pendant la sauvegarde du fichier média." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:106 +msgid "%s media file restored from the Trash." +msgid_plural "%s media files restored from the Trash." +msgstr[0] "%s fichier média restauré depuis la corbeille." +msgstr[1] "%s fichiers médias restaurés depuis la corbeille." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:83 +msgid "%s media file moved to the Trash." +msgid_plural "%s media files moved to the Trash." +msgstr[0] "%s fichier média déplacé dans la corbeille." +msgstr[1] "%s fichiers médias déplacés dans la corbeille." + +#: wp-admin/upload.php:28 +msgid "Media file attached." +msgstr "Fichier média attaché." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:32 +msgid "%s media file attached." +msgid_plural "%s media files attached." +msgstr[0] "%s fichier média attaché." +msgstr[1] "%s fichiers médias attachés." + +#: wp-admin/upload.php:45 +msgid "Media file detached." +msgstr "Fichier média détaché." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:49 +msgid "%s media file detached." +msgid_plural "%s media files detached." +msgstr[0] "%s fichier média détaché." +msgstr[1] "%s fichiers médias détachés." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:66 +msgid "%s media file permanently deleted." +msgid_plural "%s media files permanently deleted." +msgstr[0] "%s fichier média supprimé définitivement." +msgstr[1] "%s fichiers médias supprimés définitivement." + +#: wp-admin/edit-form-advanced.php:210 wp-admin/upload.php:18 +#: wp-admin/upload.php:115 +msgid "Media file updated." +msgstr "Fichier média mis à jour." + +#. translators: 1: Theme name, 2: Version number. +#. translators: 1: Plugin name, 2: Version number. +#: wp-admin/includes/theme.php:235 wp-admin/includes/theme.php:248 +#: wp-admin/includes/theme.php:261 wp-admin/includes/update.php:534 +#: wp-admin/includes/update.php:547 wp-admin/includes/update.php:561 +#: wp-admin/includes/update.php:580 wp-admin/includes/update.php:727 +#: wp-admin/includes/update.php:740 wp-admin/includes/update.php:753 +#: wp-admin/update-core.php:575 +msgid "View %1$s version %2$s details" +msgstr "Afficher les détails de la version %2$s du thème %1$s" + +#. translators: 1: Relative date, 2: Time. +#: wp-admin/includes/dashboard.php:1044 +msgctxt "dashboard" +msgid "%1$s, %2$s" +msgstr "%1$s, %2$s" + +#: wp-admin/edit-form-advanced.php:376 +msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." +msgstr "Publier - Vous pouvez définir la manière dont votre article est publié dans le bloc « Publier ». Pour « État », « Visibilité », et « Publier (tout de suite) », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger l’article avec un mot de passe ou faire en sorte qu’il reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacun de vos articles avec un mot de passe. L’option « Privé » cache l’article pour tout le monde, sauf aux Éditeurs et Administrateurs. « Publier (tout de suite) » vous permet de planifier la publication de votre article à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance des articles à publier, ou de les antidater. " + +#. translators: %s: New email. +#: wp-admin/user-edit.php:555 +msgid "There is a pending change of your email to %s." +msgstr "Il y a une modification en cours de votre adresse de messagerie, en faveur de %s." + +#: wp-admin/user-edit.php:236 +msgid "Error while saving the new email address. Please try again." +msgstr "Une erreur est survenue durant l’enregistrement de votre adresse de messagerie. Veuillez réessayer." + +#: wp-admin/upload.php:370 +msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." +msgstr "Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias." + +#: wp-admin/themes.php:283 +msgid "New theme activated." +msgstr "Nouveau thème activé." + +#: wp-admin/themes.php:656 wp-admin/network/themes.php:470 +msgid "The following themes are installed but incomplete." +msgstr "Les thèmes suivants sont installés mais incomplets." + +#: wp-admin/themes.php:274 +msgid "Settings saved and theme activated." +msgstr "Réglages sauvegardés et thème activé." + +#: wp-admin/setup-config.php:231 +msgid "The name of the database you want to use with WordPress." +msgstr "Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress. " + +#: wp-admin/setup-config.php:236 +msgid "Your database username." +msgstr "Nom d’utilisateur MySQL." + +#: wp-admin/freedoms.php:97 wp-admin/theme-install.php:111 +#: wp-admin/themes.php:157 +msgid "https://wordpress.org/themes/" +msgstr "https://fr.wordpress.org/themes/" + +#: wp-admin/users.php:201 +msgid "Sorry, you are not allowed to delete that user." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet utilisateur. " + +#: wp-admin/setup-config.php:248 +msgid "Your database password." +msgstr "Votre mot de passe de base de données." + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:383 +msgctxt "plugin" +msgid "%1$s by %2$s" +msgstr "%1$s par %2$s" + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:379 +msgid "%1$s by %2$s (will also delete its data)" +msgstr "%1$s par %2$s (attention : supprimera également les données liées) " + +#. translators: %s: New admin email. +#: wp-admin/options-general.php:257 +msgid "There is a pending change of the admin email to %s." +msgstr "Il y a un changement en attente de l’e-mail de l’administrateur vers %s." + +#: wp-admin/index.php:187 +msgid "Dismiss the welcome panel" +msgstr "Ignorer le panneau de bienvenue" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/install.php:320 +msgid "The constant %s cannot be defined when installing WordPress." +msgstr "La constante %s ne peut pas être définie lors de l’installation de WordPress." + +#: wp-admin/install.php:430 +msgid "WordPress has been installed. Thank you, and enjoy!" +msgstr "WordPress est installé. Merci et profitez bien !" + +#. translators: %s: wp-config.php +#: wp-admin/install.php:307 +msgid "Your %s file has an empty database table prefix, which is not supported." +msgstr "Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté." + +#: wp-admin/includes/plugin-install.php:747 +msgid "Reviews" +msgstr "Avis" + +#: wp-admin/includes/plugin-install.php:748 +msgid "Read all reviews on WordPress.org or write your own!" +msgstr "Lisez tous les avis sur WordPress.org ou écrivez le vôtre !" + +#: wp-admin/includes/post.php:1669 +msgid "Click the image to edit or update" +msgstr "Cliquez sur l’image pour la modifier ou la mettre à jour." + +#: wp-admin/includes/template.php:2033 +msgid "Attach to existing content" +msgstr "Attacher à un contenu existant" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:203 +msgid "Theme zip file" +msgstr "Fichier zip du thème" + +#. translators: %s: URL to "Features as Plugins" page. +#: wp-admin/includes/plugin-install.php:406 +msgid "You are using a development version of WordPress. These feature plugins are also under development. Learn more." +msgstr "Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus." + +#. translators: 1: Number of stars (used to determine singular/plural), 2: +#. Number of reviews. +#: wp-admin/includes/plugin-install.php:756 +msgid "Reviews with %1$d star: %2$s. Opens in a new tab." +msgid_plural "Reviews with %1$d stars: %2$s. Opens in a new tab." +msgstr[0] "Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre." +msgstr[1] "Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:130 +msgid "Scale Image Help" +msgstr "Aide sur le redimensionnement d’image " + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:154 wp-admin/includes/image-edit.php:159 +msgid "scale height" +msgstr "Redimensionner en hauteur" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:197 +msgid "Image Crop Help" +msgstr "Aide au recadrage d’image" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:215 +msgid "crop ratio width" +msgstr "Proportion horizontale" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:223 +msgid "crop ratio height" +msgstr "Proportion verticale" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:235 +msgid "selection width" +msgstr "largeur de la sélection" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:243 +msgid "selection height" +msgstr "hauteur de la sélection" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:287 +msgid "Thumbnail Settings Help" +msgstr "Aide aux réglages de la miniature" + +#: wp-admin/includes/image-edit.php:149 +msgid "New dimensions:" +msgstr "Nouvelles dimensions :" + +#. translators: 1: Type of comment, 2: Post link, 3: Notification if the +#. comment is pending. +#: wp-admin/includes/dashboard.php:900 +msgctxt "dashboard" +msgid "%1$s on %2$s %3$s" +msgstr "%1$s sur %2$s %3$s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:1123 +msgid "View more comments" +msgstr "Voir plus de commentaires" + +#: wp-admin/includes/file.php:34 +msgid "Date Template" +msgstr "Modèle de date" + +#: wp-admin/includes/file.php:36 +msgid "Singular Template" +msgstr "Modèle individuel" + +#: wp-admin/includes/file.php:38 +msgid "Single Page" +msgstr "Page individuelle" + +#: wp-admin/includes/file.php:29 +msgid "Taxonomy Template" +msgstr "Modèle de taxonomie" + +#: wp-admin/includes/dashboard.php:1771 +msgid "Dismiss the browser warning panel" +msgstr "Masquer l’alerte du navigateur" + +#: wp-admin/includes/dashboard.php:799 +msgid "View this comment" +msgstr "Voir ce commentaire" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:620 +#: wp-admin/includes/class-wp-media-list-table.php:846 +msgid "Attach “%s” to existing content" +msgstr "Attacher « %s &rasquo; à du contenu existant" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:785 +#: wp-admin/includes/class-wp-posts-list-table.php:1517 +msgid "Move “%s” to the Trash" +msgstr "Déplacer “%s” dans la corbeille" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:798 +#: wp-admin/includes/class-wp-posts-list-table.php:1527 +msgid "Delete “%s” permanently" +msgstr "Supprimer “%s” définitivement" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:1509 +msgid "Restore “%s” from the Trash" +msgstr "Restaurer “%s” depuis la corbeille" + +#: wp-admin/includes/class-wp-plugins-list-table.php:423 +msgid "Search for plugins in the WordPress Plugin Directory." +msgstr "Rechercher des extensions dans le répertoire des extensions WordPress." + +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-posts-list-table.php:1497 +#: wp-admin/includes/class-wp-terms-list-table.php:508 +msgid "Quick edit “%s” inline" +msgstr "Modifier rapidement “%s” en ligne" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:519 +msgid "Delete “%s”" +msgstr "Supprimer “%s”" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:529 +msgid "View “%s” archive" +msgstr "Voir l&rquo;archive pour « %s »" + +#: wp-admin/includes/class-plugin-upgrader-skin.php:85 +#: wp-admin/update-core.php:1215 wp-admin/update-core.php:1256 +msgid "Update progress" +msgstr "Progression de la mise à jour" + +#: wp-admin/includes/class-core-upgrader.php:30 +msgid "Another update is currently in progress." +msgstr "Une autre mise à jour est actuellement en cours." + +#: wp-admin/includes/class-wp-comments-list-table.php:823 +#: wp-admin/includes/dashboard.php:757 +msgid "Edit this comment" +msgstr "Éditer ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:835 +msgid "Quick edit this comment inline" +msgstr "Modifier ce commentaire sur cette page" + +#: wp-admin/includes/class-wp-media-list-table.php:169 +msgctxt "attachment filter" +msgid "Trash" +msgstr "Corbeille" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-media-list-table.php:465 +#: wp-admin/includes/class-wp-posts-list-table.php:1140 +#: wp-admin/includes/class-wp-terms-list-table.php:418 +msgid "“%s” (Edit)" +msgstr "« %s » (Modifier)" + +#. translators: %s: Title of the post the attachment is attached to. +#: wp-admin/includes/class-wp-media-list-table.php:606 +msgid "Detach from “%s”" +msgstr "Détacher de « %s &rasquo;" + +#: wp-admin/includes/class-wp-comments-list-table.php:786 +msgid "Restore this comment from the spam" +msgstr "Restaurer ce commentaire des indésirables" + +#. translators: 1: User login, 2: User email address. +#: wp-admin/includes/ajax-actions.php:355 +msgctxt "user autocomplete result" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. translators: %s: Importer slug. +#: wp-admin/import.php:67 +msgid "The %s importer is invalid or is not installed." +msgstr "L’importateur %s n’est pas installé ou n’est pas valide." + +#: wp-admin/edit-form-comment.php:137 +msgctxt "comment status" +msgid "Pending" +msgstr "En attente" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:610 +msgid "Images should be at least %s wide." +msgstr "Les images doivent être large de %s minimum." + +#. translators: %d: Custom header width. +#. translators: %d: Custom header height. +#: wp-admin/includes/class-custom-image-header.php:613 +#: wp-admin/includes/class-custom-image-header.php:625 +#: wp-admin/includes/class-custom-image-header.php:641 +#: wp-admin/includes/class-custom-image-header.php:653 +msgid "%d pixels" +msgstr "%d pixels" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:622 +msgid "Images should be at least %s tall." +msgstr "Les images devraient faire au moins %s de haut" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:638 +msgid "Suggested width is %s." +msgstr "La taille suggérée est de %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:650 +msgid "Suggested height is %s." +msgstr "La hauteur suggérée est de %s." + +#: wp-admin/user-new.php:616 +msgid "Send User Notification" +msgstr "Envoyer une notification à l’utilisateur" + +#. translators: %s: Menu name. +#: wp-admin/nav-menus.php:1214 +msgctxt "menu location" +msgid "(Currently set to: %s)" +msgstr "(Actuellement réglé sur : %s)" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:434 +msgid "Version %s addressed one security issue." +msgstr "La version %s a corrigé un problème de sécurité." + +#: wp-admin/includes/upgrade.php:266 wp-admin/user-edit.php:625 +msgid "https://en.gravatar.com/" +msgstr "https://fr.gravatar.com/" + +#: wp-admin/user-edit.php:616 +msgid "Profile Picture" +msgstr "Illustration du profil" + +#: wp-admin/about.php:425 +msgid "Maintenance Releases" +msgstr "Mises à jour de maintenance" + +#: wp-admin/about.php:428 +msgid "Security Releases" +msgstr "Mises à jour de sécurité" + +#: wp-admin/about.php:431 +msgid "Maintenance and Security Releases" +msgstr "Mises à jour de maintenance et de sécurité" + +#: wp-admin/options-permalink.php:246 +msgid "Plain" +msgstr "Simple" + +#. translators: %s: Documentation URL. +#: wp-admin/options-permalink.php:226 +msgid "WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." +msgstr "WordPress vous offre la possibilité de créer une structure personnalisée d’adresses web pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreux marqueurs sont disponibles, et nous vous donnons quelques exemples pour commencer." + +#: wp-admin/options-permalink.php:34 +msgid "Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure." +msgstr "Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa data ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:429 +msgid "You can create the %s file manually and paste the following text into it." +msgstr "Vous pouvez créer le fichier %s manuellement et y coller le contenu suivant." + +#. translators: %s: localhost +#: wp-admin/setup-config.php:257 +msgid "You should be able to get this info from your web host, if %s does not work." +msgstr "Si %s ne fonctionne pas, demandez cette information à l’hébergeur de votre site." + +#. translators: 1: wp-config-sample.php, 2: wp-config.php +#: wp-admin/setup-config.php:190 +msgid "If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s." +msgstr "Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s." + +#. translators: %s: wp-content/uploads +#: wp-admin/options-media.php:143 +msgid "Default is %s" +msgstr "Par défaut, %s" + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:588 +msgid "The theme is missing the %s stylesheet." +msgstr "Le thème n’a pas de fichier %s." + +#. translators: 1: .po, 2: .mo +#: wp-admin/includes/class-language-pack-upgrader.php:352 +msgid "The language pack is missing either the %1$s or %2$s files." +msgstr "Il manque soit le fichier %1$s, soit le fichier %2$s du pack de langue." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:613 +msgid "The %s stylesheet does not contain a valid theme header." +msgstr "Le fichier %s ne contient pas d’en-tête de thème valide." + +#: wp-admin/theme-install.php:232 +msgid "If you have marked themes as favorites on WordPress.org, you can browse them here." +msgstr "Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici." + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:32 +msgid "Allow automatic database repair" +msgstr "Autoriser la réparation automatique de la base de données" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:91 +msgid "Database repair results" +msgstr "Résultats de la réparation de la base de données" + +#: wp-admin/theme-install.php:215 +msgctxt "themes" +msgid "Favorites" +msgstr "Favoris" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:81 +msgid "Check secret keys" +msgstr "Vérifier les clés secrètes" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:176 +msgid "WordPress database repair" +msgstr "Réparation de la base de données de WordPress" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:167 +msgid "Before getting started" +msgstr "Avant de se lancer" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:506 +msgid "Successful database connection" +msgstr "La connexion à la base de données s’est bien faite" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:222 +msgid "Set up your database connection" +msgstr "Configurer la connexion à votre base de données" + +#. translators: %s: Walker class name. +#: wp-admin/includes/nav-menu.php:1275 +msgid "The Walker class named %s does not exist." +msgstr "La classe Walker nommée %s n’existe pas." + +#. translators: %s: Nav menu title. +#: wp-admin/includes/nav-menu.php:1495 +msgid "%s has been updated." +msgstr "%s a été mis à jour." + +#. translators: 1: Drop-in constant name, 2: wp-config.php +#: wp-admin/includes/class-wp-plugins-list-table.php:783 +msgid "Requires %1$s in %2$s file." +msgstr "Requiert la constance %1$s dans le fichier %2$s." + +#. translators: %s: File name. +#: wp-admin/includes/media.php:1740 +msgid "You are about to delete %s." +msgstr "Vous êtes sur le point de supprimer %s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:430 +msgid "Daylight saving time begins on: %s." +msgstr "Le passage à l’heure d’été commence le %s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:432 +msgid "Standard time begins on: %s." +msgstr "Le passage à l’heure d’hiver commence le %s. " + +#. translators: %s: mu-plugins directory name. +#: wp-admin/includes/class-wp-plugins-list-table.php:671 +msgid "Files in the %s directory are executed automatically." +msgstr "Les fichiers du répertoire %s sont exécutés automatiquement." + +#: wp-admin/widgets-form.php:500 +msgid "This will clear all items from the inactive widgets list. You will not be able to restore any customizations." +msgstr "Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation." + +#: wp-admin/users.php:90 wp-admin/network/users.php:249 +msgid "Users list navigation" +msgstr "Navigation de la liste des utilisateurs" + +#: wp-admin/users.php:91 wp-admin/network/users.php:250 +msgid "Users list" +msgstr "Liste des utilisateurs" + +#: wp-admin/users.php:159 wp-admin/network/site-users.php:159 +msgid "One of the selected users is not a member of this site." +msgstr "Un des utilisateurs sélectionnés n’est pas un abonné de ce site." + +#: wp-admin/widgets-form.php:490 +msgid "Clear Inactive Widgets" +msgstr "Vider les widgets désactivés" + +#: wp-admin/users.php:89 wp-admin/network/users.php:248 +msgid "Filter users list" +msgstr "Liste des filtres utilisateurs" + +#: wp-admin/upload.php:406 +msgid "Filter media items list" +msgstr "Filtrer la liste des fichiers média." + +#: wp-admin/upload.php:407 +msgid "Media items list navigation" +msgstr "Navigation de la liste des éléments média" + +#: wp-admin/upload.php:408 +msgid "Media items list" +msgstr "Liste des éléments média" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:202 wp-admin/network/themes.php:345 +msgid "Filter themes list" +msgstr "Filtrer la liste des thèmes" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:279 wp-admin/network/themes.php:347 +msgid "Themes list" +msgstr "Liste des thèmes" + +#: wp-admin/themes.php:734 +msgid "Install Parent Theme" +msgstr "Installer le thème parent" + +#: wp-admin/plugins.php:731 +msgid "All selected plugins are up to date." +msgstr "Toutes les extensions sélectionnées sont à jour." + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:224 +msgid "Editing %s (active)" +msgstr "Modification de %s (activée)" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:227 +msgid "Browsing %s (active)" +msgstr "Parcours de %s (activée)" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:232 +msgid "Editing %s (inactive)" +msgstr "Modification de %s (désactivée)" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:235 +msgid "Browsing %s (inactive)" +msgstr "Parcours de %s (désactivée)" + +#: wp-admin/plugin-install.php:127 wp-admin/plugins.php:614 +msgid "Filter plugins list" +msgstr "Filtrer la liste des extensions" + +#: wp-admin/plugin-install.php:128 wp-admin/plugins.php:615 +msgid "Plugins list navigation" +msgstr "Navigation de la liste des extensions" + +#: wp-admin/plugin-install.php:129 wp-admin/plugins.php:616 +msgid "Plugins list" +msgstr "Liste des extensions" + +#. translators: %s: Local time. +#: wp-admin/options-general.php:399 +msgid "Local time is %s." +msgstr "L’heure locale est %s." + +#: wp-admin/link-manager.php:85 +msgid "Links list" +msgstr "Liste des liens" + +#. translators: %s: Hidden accessibility text. Meta box title. +#: wp-admin/includes/template.php:1427 +msgid "Toggle panel: %s" +msgstr "Ouvrir/fermer le bloc %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/update.php:286 +msgid "Get Version %s" +msgstr "Obtenir la version %s" + +#. translators: 1: Site Wide Only: true, 2: Network: true +#: wp-admin/includes/plugin.php:99 +msgid "The %1$s plugin header is deprecated. Use %2$s instead." +msgstr "L’en-tête d’extensions %1$s est obsolète. Utilisez plutôt %2$s." + +#: wp-admin/includes/post.php:1595 +msgid "Edit permalink" +msgstr "Modifier le permalien" + +#: wp-admin/includes/post.php:1905 +msgid "Saving revision…" +msgstr "Enregistrement de la révision…" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1067 +#: wp-admin/includes/class-wp-site-health.php:1867 +msgid "Warning" +msgstr "Avertissement" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:1381 wp-admin/options.php:382 +#: wp-admin/includes/network.php:138 wp-admin/includes/network.php:220 +#: wp-admin/includes/network.php:228 wp-admin/includes/network.php:293 +#: wp-admin/includes/network.php:349 wp-admin/includes/network.php:362 +#: wp-admin/includes/network.php:470 wp-admin/includes/network.php:674 +#: wp-admin/includes/network.php:736 +msgid "Warning:" +msgstr "Attention :" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:921 +msgid "What should be done with content owned by %s?" +msgstr "Que faire du contenu ayant %s pour propriétaire ?" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/ms.php:939 +msgid "Select a user" +msgstr "Sélectionnez un utilisateur" + +#. translators: %s: Link to user's site. +#: wp-admin/includes/ms.php:961 +msgid "Site: %s" +msgstr "Site : %s" + +#: wp-admin/includes/ms.php:976 +msgid "User has no sites or content and will be deleted." +msgstr "L’utilisateur n’a pas de site ou de contenu, et sera supprimé." + +#: wp-admin/includes/ms.php:993 +msgid "Once you hit “Confirm Deletion”, these users will be permanently removed." +msgstr "Dès que vous aurez cliqué sur « Confirmer cette action », ces utilisateurs seront définitivement supprimés." + +#: wp-admin/includes/ms.php:991 +msgid "Once you hit “Confirm Deletion”, the user will be permanently removed." +msgstr "Dès que vous aurez cliqué sur « Confirmer cette action », l’utilisateur sera définitivement supprimé." + +#: wp-admin/includes/file.php:18 +msgid "Theme Footer" +msgstr "Pied de page du thème" + +#: wp-admin/includes/file.php:17 +msgid "Theme Header" +msgstr "En-tête du thème" + +#: wp-admin/includes/ms.php:869 +msgid "You have chosen to delete the user from all networks and sites." +msgstr "Vous avez choisi de supprimer l’utilisateur de tous les réseaux et sites." + +#: wp-admin/includes/ms.php:871 +msgid "You have chosen to delete the following users from all networks and sites." +msgstr "Vous avez choisi de supprimer les utilisateurs suivants de tous les réseaux et sites. " + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:892 +msgid "Warning! User %s cannot be deleted." +msgstr "Attention ! L’utilisateur %s ne peut pas être supprimé." + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:902 +msgid "Warning! User cannot be deleted. The user %s is a network administrator." +msgstr "Attention ! L’utilisateur ne peut pas être supprimé. L’utilsateur %s est administrateur du réseau." + +#: wp-admin/includes/media.php:1045 +msgid "Invalid image URL." +msgstr "Adresse web non valide pour l’image." + +#: wp-admin/includes/class-wp-screen.php:764 +msgid "Items list navigation" +msgstr "Navigation de la liste des éléments" + +#: wp-admin/includes/class-wp-screen.php:765 +msgid "Items list" +msgstr "Liste des éléments" + +#: wp-admin/includes/class-wp-screen.php:1005 +msgid "Additional settings" +msgstr "Réglages supplémentaires" + +#. translators: %s: Number of columns on the page. +#: wp-admin/includes/class-wp-screen.php:1216 +msgid "%s column" +msgid_plural "%s columns" +msgstr[0] "%s colonne" +msgstr[1] "%s colonnes" + +#. translators: 1: Title of an update, 2: Error message. +#: wp-admin/includes/class-bulk-upgrader-skin.php:43 +msgid "An error occurred while updating %1$s: %2$s" +msgstr "Une erreur est survenue lors de la mise à jour de %1$s  %2$s" + +#: wp-admin/includes/class-wp-users-list-table.php:246 +msgid "No role" +msgstr "Aucun rôle" + +#: wp-admin/includes/class-wp-users-list-table.php:670 +msgctxt "no user roles" +msgid "None" +msgstr "Aucun" + +#. translators: 1: Comment author, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:871 +msgid "From %1$s %2$s" +msgstr "De %1$s %2$s" + +#. translators: Date and time format for recent posts on the dashboard, from a +#. different calendar year, see https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/dashboard.php:1031 +msgid "M jS Y" +msgstr "j M Y" + +#: wp-admin/includes/dashboard.php:655 +msgid "View all drafts" +msgstr "Voir tous les brouillons" + +#: wp-admin/includes/class-wp-screen.php:1331 +msgid "View mode" +msgstr "Mode d’affichage" + +#: wp-admin/export.php:229 wp-admin/export.php:281 wp-admin/export.php:326 +msgid "End date:" +msgstr "Date de fin :" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:242 +msgctxt "comments" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s) " +msgstr[1] "Tous (%s) " + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:256 +msgctxt "comments" +msgid "Pending (%s)" +msgid_plural "Pending (%s)" +msgstr[0] "En attente (%s)" +msgstr[1] "En attente (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:263 +msgctxt "comments" +msgid "Approved (%s)" +msgid_plural "Approved (%s)" +msgstr[0] "Approuvé (%s)" +msgstr[1] "Approuvés (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:270 +msgctxt "comments" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Indésirable (%s)" +msgstr[1] "Indésirables (%s)" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:176 +msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" +msgstr "Échec de l&rquo;initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:944 +msgid "No pending comments" +msgstr "Aucun commentaire en attente" + +#: wp-admin/includes/class-wp-plugins-list-table.php:886 +msgid "Network Active" +msgstr "Activé sur le réseau" + +#: wp-admin/includes/class-wp-plugins-list-table.php:890 +msgid "Network Only" +msgstr "Réseau seul" + +#: wp-admin/includes/class-wp-screen.php:763 +msgid "Filter items list" +msgstr "Filtrer la liste des éléments" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:277 +msgctxt "comments" +msgid "Trash (%s)" +msgid_plural "Trash (%s)" +msgstr[0] "Mis à la corbeille (%s)" +msgstr[1] "Mis à la corbeille (%s)" + +#. translators: %s: The new user. +#: wp-admin/includes/ajax-actions.php:1775 +msgid "User %s added" +msgstr "L’utilisateur %s a été ajouté" + +#: wp-admin/includes/class-wp-comments-list-table.php:480 +msgctxt "column name" +msgid "Submitted on" +msgstr "Envoyé le" + +#: wp-admin/edit.php:266 +msgid "You can view posts in a simple title list or with an excerpt using the Screen Options tab." +msgstr "Vous pouvez voir la liste des articles en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran ». " + +#. translators: Hidden accessibility text. +#: wp-admin/export.php:186 +msgid "Content to export" +msgstr "Contenu à exporter" + +#. translators: %s: Comment date. +#: wp-admin/edit-form-comment.php:156 +msgid "Submitted on: %s" +msgstr "Envoyé le : %s" + +#: wp-admin/edit-form-comment.php:37 +msgctxt "comment" +msgid "Permalink:" +msgstr "Permalien :" + +#. translators: %s: Scheduled date for the page. +#: wp-admin/edit-form-advanced.php:207 +msgid "Page scheduled for: %s." +msgstr "Page programmée pour le %s." + +#: wp-admin/edit-form-advanced.php:208 +msgid "Page draft updated." +msgstr "Le brouillon de la page a été mis à jour." + +#: wp-admin/edit-form-advanced.php:205 +msgid "Page submitted." +msgstr "Page envoyée." + +#: wp-admin/edit-form-advanced.php:190 +msgid "Post submitted." +msgstr "Article envoyé." + +#. translators: %s: Scheduled date for the post. +#: wp-admin/edit-form-advanced.php:192 +msgid "Post scheduled for: %s." +msgstr "Article programmé pour le %s." + +#: wp-admin/edit-form-advanced.php:193 +msgid "Post draft updated." +msgstr "Le brouillon de l’article a été mis à jour." + +#: wp-admin/edit-form-advanced.php:166 +msgid "View page" +msgstr "Voir la page" + +#: wp-admin/edit-comments.php:237 +msgid "Filter comments list" +msgstr "Filtrer la liste des commentaires" + +#: wp-admin/edit-comments.php:238 +msgid "Comments list navigation" +msgstr "Navigation de la liste des commentaires" + +#: wp-admin/edit-comments.php:239 +msgid "Comments list" +msgstr "Liste des commentaires" + +#: wp-admin/edit-form-advanced.php:131 wp-admin/edit-form-advanced.php:138 +msgid "Preview post" +msgstr "Prévisualiser l’article" + +#: wp-admin/edit-form-advanced.php:152 wp-admin/edit-form-advanced.php:159 +msgid "Preview page" +msgstr "Prévisualiser la page" + +#: wp-admin/edit-comments.php:222 +msgid "In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site." +msgstr "Dans la colonne « Envoyé le », vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la publication où se situe le commentaire." + +#: wp-admin/edit-comments.php:220 +msgid "In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment." +msgstr "Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d’afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille." + +#. translators: 1: Comments count, 2: Post title. +#: wp-admin/edit-comments.php:175 +msgid "Comments (%1$s) on “%2$s”" +msgstr "Commentaires (%1$s) sur « %2$s »" + +#: wp-admin/includes/ajax-actions.php:5569 +msgid "Sorry, you are not allowed to modify themes." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les thèmes." + +#. translators: %s: Comments count. +#: wp-admin/edit-comments.php:194 wp-admin/js/edit-comments.js:196 +#: wp-admin/js/edit-comments.js:216 +msgid "Comments (%s)" +msgstr "Commentaires (%s)" + +#: wp-admin/includes/class-custom-image-header.php:1033 +msgid "The active theme does not support a flexible sized header image." +msgstr "Le thème actif ne prend pas en charge les images d’en-tête de taille variable." + +#: wp-admin/includes/class-custom-image-header.php:834 +#: wp-admin/includes/class-custom-image-header.php:1022 +msgid "The active theme does not support uploading a custom header image." +msgstr "Le thème actif ne prend pas en charge le téléversement d’images d’en-tête personnalisées." + +#: wp-admin/includes/user.php:542 +msgid "You are using the auto-generated password for your account. Would you like to change it?" +msgstr "Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?" + +#: wp-admin/users.php:521 +msgid "You have specified this user for removal:" +msgstr "Vous avez indiqué que cet utilisateur devait être supprimé :" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:759 +msgid "Log %s out of all locations." +msgstr "Déconnecter %s de tous les supports/appareils." + +#: wp-admin/user-edit.php:747 +msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." +msgstr "Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez rester connecté ici tout en vous déconnectant partout ailleurs." + +#: wp-admin/user-edit.php:735 wp-admin/user-edit.php:745 +msgid "Log Out Everywhere Else" +msgstr "Me déconnecter partout ailleurs" + +#: wp-admin/user-edit.php:679 +msgid "Cancel password change" +msgstr "Annuler la modification du mot de passe" + +#: wp-admin/user-edit.php:733 wp-admin/user-edit.php:743 +#: wp-admin/user-edit.php:753 +msgid "Sessions" +msgstr "Sessions" + +#: wp-admin/user-edit.php:662 +msgid "Account Management" +msgstr "Gestion de compte" + +#: wp-admin/user-new.php:585 +msgid "Generate password" +msgstr "Générer un mot de passe" + +#. translators: The non-breaking space prevents 1Password from thinking the +#. text "log in" should trigger a password save prompt. +#: wp-admin/install.php:155 +msgid "You will need this password to log in. Please store it in a secure location." +msgstr "Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:911 +msgid "No approved comments" +msgstr "Aucun commentaire approuvé" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:855 +msgid "%s approved comment" +msgid_plural "%s approved comments" +msgstr[0] "%s commentaire approuvé" +msgstr[1] "%s commentaires approuvés" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:861 +msgid "%s pending comment" +msgid_plural "%s pending comments" +msgstr[0] "%s commentaire en attente" +msgstr[1] "%s commentaires en attente" + +#: wp-admin/includes/ajax-actions.php:4018 +msgid "Image could not be processed." +msgstr "L’image n’a pas pu être traitée." + +#: wp-admin/install.php:169 wp-admin/user-edit.php:698 +#: wp-admin/user-new.php:607 +msgid "Confirm Password" +msgstr "Confirmation du mot de passe" + +#. translators: 1: wp-config.php, 2: Secret key service URL. +#: wp-admin/maint/repair.php:85 +msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." +msgstr "Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-application-passwords-list-table.php:258 +#: wp-admin/includes/class-wp-comments-list-table.php:896 +#: wp-admin/includes/class-wp-list-table.php:683 +#: wp-admin/includes/class-wp-list-table.php:1817 +#: wp-admin/includes/update.php:971 +msgid "Show more details" +msgstr "Afficher plus de détails" + +#. translators: %s: Number of menus. +#: wp-admin/nav-menus.php:834 +msgid "Your theme supports %s menu. Select which menu appears in each location." +msgid_plural "Your theme supports %s menus. Select which menu appears in each location." +msgstr[0] "Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître dans l’emplacement." +msgstr[1] "Votre thème peut utiliser %s menus. Sélectionnez les menu qui devront apparaître dans chaque emplacement." + +#. translators: Hidden accessibility text. %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:133 +#: wp-admin/includes/class-theme-upgrader-skin.php:105 +msgid "Live Preview “%s”" +msgstr "Prévisualisation de « %s »" + +#. translators: Hidden accessibility text. %s: Number of posts. +#: wp-admin/includes/class-wp-users-list-table.php:607 +msgid "%s post by this author" +msgid_plural "%s posts by this author" +msgstr[0] "%s article par cet auteur" +msgstr[1] "%s articles par cet auteur" + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:133 +msgid "Comment status" +msgstr "État du commentaire" + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:169 wp-admin/includes/meta-boxes.php:304 +msgid "Date and time" +msgstr "Date et heure" + +#. translators: %s: Post link. +#: wp-admin/edit-form-comment.php:197 +msgid "In response to: %s" +msgstr "En réponse à : %s" + +#: wp-admin/edit-form-advanced.php:362 +msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." +msgstr "Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués (en anglais)." + +#: wp-admin/includes/class-custom-background.php:110 +msgid "Documentation on Custom Background" +msgstr "Documentation sur l’arrière-plan personnalisé (en)" + +#: wp-admin/edit-tags.php:307 +msgid "Documentation on Link Categories" +msgstr "Documentation sur les catégories de liens (en)" + +#: wp-admin/edit-link-form.php:76 +msgid "Documentation on Creating Links" +msgstr "Documentation sur la création de liens (en)" + +#: wp-admin/link-manager.php:79 +msgid "Documentation on Managing Links" +msgstr "Documentation sur la gestion des liens (en)" + +#: wp-admin/includes/class-custom-image-header.php:145 +msgid "Documentation on Custom Header" +msgstr "Documentation sur l’en-tête personnalisé" + +#: wp-admin/my-sites.php:52 +msgid "Documentation on My Sites" +msgstr "Documentation sur Mes Sites (en)" + +#: wp-admin/widgets.php:24 +msgid "The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." +msgstr "Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions (en anglais)." + +#. translators: %s: Documentation URL. +#: wp-admin/options-writing.php:227 +msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks." +msgstr "Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication est disponible sur la documentation de WordPress. Séparez les URL de services par des retours à la ligne." + +#: wp-admin/includes/options.php:137 +msgid "The character encoding of your site (UTF-8 is recommended)" +msgstr "Le codage de caractères utilisé par votre site (nous recommandons UTF-8)" + +#: wp-admin/includes/file.php:2595 +msgid "example: www.wordpress.org" +msgstr "exemple : www.wordpress.org" + +#: wp-admin/themes.php:138 +msgid "The search for installed themes will search for terms in their name, description, author, or tag." +msgstr "La recherche parmi les thèmes installés se fait sur leurs noms, leurs descriptions, leurs auteurs et leurs étiquettes." + +#: wp-admin/theme-install.php:113 +msgid "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter." +msgstr "Vous pouvez chercher un thème par mot-clé, auteur ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités." + +#. translators: %d: Number of themes. +#: wp-admin/theme-install.php:69 wp-admin/themes.php:236 +msgid "Number of Themes found: %d" +msgstr "Nombre de thèmes trouvés : %d" + +#: wp-admin/theme-install.php:114 +msgid "Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it." +msgstr "Autrement, vous pouvez parcourir les thèmes mis en avant, populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer." + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:535 +msgid "Custom time format:" +msgstr "Format d’heure personnalisé :" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:531 +msgid "enter a custom time format in the following field" +msgstr "saisissez un format d’heure personnalisé dans le champ suivant" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:487 +msgid "Custom date format:" +msgstr "Format de date personnalisé :" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:483 +msgid "enter a custom date format in the following field" +msgstr "saisissez un format de date personnalisé dans le champ suivant" + +#: wp-admin/includes/class-plugin-upgrader.php:66 +msgid "Plugins updated successfully." +msgstr "Les extensions ont bien été mises à jour." + +#. translators: %s: Number of millions. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:709 +#: wp-admin/includes/plugin-install.php:704 +msgctxt "Active plugin installations" +msgid "%s+ Million" +msgid_plural "%s+ Million" +msgstr[0] "%s million et +" +msgstr[1] "%s millions et +" + +#. translators: 1: Error message, 2: Line number. +#: wp-admin/link-parse-opml.php:93 +msgid "XML Error: %1$s at line %2$s" +msgstr "Erreur XML : %1$s à la ligne %2$s" + +#: wp-admin/menu-header.php:289 +msgid "Main menu" +msgstr "Menu principal" + +#: wp-admin/includes/file.php:2645 +msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." +msgstr "Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus." + +#: wp-admin/users.php:356 +msgid "You have specified these users for deletion:" +msgstr "Vous avez indiqué que vous voulez supprimer ces utilisateurs :" + +#: wp-admin/users.php:406 +msgid "What should be done with content owned by these users?" +msgstr "Que doit-il arriver aux contenus appartenant à ces utilisateurs ?" + +#. translators: %s: Number of users. +#: wp-admin/users.php:616 +msgid "%s user deleted." +msgid_plural "%s users deleted." +msgstr[0] "%s utilisateur supprimé." +msgstr[1] "%s utilisateurs supprimés." + +#: wp-admin/plugins.php:357 +msgid "Delete Plugins" +msgstr "Supprimer les extensions" + +#: wp-admin/plugins.php:369 +msgid "You are about to remove the following plugins:" +msgstr "Vous êtes sur le point de supprimer les extensions suivantes :" + +#: wp-admin/plugins.php:360 +msgid "These plugins may be active on other sites in the network." +msgstr "Ces extensions peuvent être actives sur d’autres sites du réseau." + +#: wp-admin/edit.php:373 +msgid "1 page not updated, somebody is editing it." +msgstr "Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier." + +#: wp-admin/edit.php:360 +msgid "1 post not updated, somebody is editing it." +msgstr "Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier." + +#: wp-admin/theme-install.php:532 +msgid "This theme has not been rated yet." +msgstr "Ce thème n’a pas encore reçu de note." + +#: wp-admin/update-core.php:829 +msgid "New translations are available." +msgstr "De nouvelles traductions sont disponibles." + +#: wp-admin/user-edit.php:63 +msgid "You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button." +msgstr "Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Me déconnecter partout ailleurs »" + +#. translators: Date and time format for exact current time, mainly about +#. timezones, see https://www.php.net/manual/datetime.format.php +#: wp-admin/options-general.php:23 +msgctxt "timezone date format" +msgid "Y-m-d H:i:s" +msgstr "Y-m-d H:i:s" + +#: wp-admin/nav-menus.php:739 +msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" +msgstr "Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une adresse web et un texte pour le lien, et cliquez sur « Ajouter au menu »" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:849 wp-admin/themes.php:1030 +msgid "Close details dialog" +msgstr "Fermer la fenêtre des détails" + +#: wp-admin/includes/template.php:2798 wp-admin/includes/template.php:2817 +msgid "You are currently editing the page that shows your latest posts." +msgstr "Vous êtes en train de modifier la page qui affiche vos derniers articles." + +#: wp-admin/includes/file.php:32 +msgid "Posts Page" +msgstr "Page des articles" + +#: wp-admin/includes/class-wp-screen.php:1238 +msgid "Number of items per page:" +msgstr "Nombre d’éléments par page :" + +#. translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those +#. are placeholders. +#: wp-admin/ms-delete-site.php:58 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently clicked the 'Delete Site' link on your site and filled in a\n" +"form on that page.\n" +"\n" +"If you really want to delete your site, click the link below. You will not\n" +"be asked to confirm again so only click this link if you are absolutely certain:\n" +"###URL_DELETE###\n" +"\n" +"If you delete your site, please consider opening a new site here some time in\n" +"the future! (But remember that your current site and username are gone forever.)\n" +"\n" +"Thank you for using the site,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour ###USERNAME###,\n" +"\n" +"Vous avez récemment cliqué sur le lien « Supprimer le site » de votre site, \n" +"et avez complété le formulaire présent sur cette même page.\n" +"\n" +"Si vous confirmez la suppression de votre site, cliquez sur le lien ci-dessous.\n" +"Aucune confirmation ne vous sera demandée par la suite, soyez donc totalement \n" +"certain·e de ce que vous faites :\n" +"###URL_DELETE###\n" +"\n" +"Si vous effacez votre site, n’hésitez pas à revenir créer un autre site à l’avenir ! \n" +"(mais souvenez-vous que votre site actuel et votre identifiant ne seront plus jamais disponibles).\n" +"\n" +"Merci d’avoir utilisé ce site,\n" +"\n" +"Les responsables de ###SITENAME###\n" +"###SITEURL###" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/ms.php:314 wp-admin/network/settings.php:420 +msgid "Size in megabytes" +msgstr "Taille en mégaoctets" + +#: wp-admin/includes/ms.php:306 +msgid "Site Upload Space Quota" +msgstr "Quota d’espace de fichiers" + +#: wp-admin/includes/class-wp-automatic-updater.php:1474 +msgid "" +"UPDATE LOG\n" +"==========" +msgstr "" +"JOURNAL DE LA MISE À JOUR\n" +"==========" + +#: wp-admin/includes/revision.php:252 wp-admin/includes/revision.php:295 +msgctxt "revision date short format" +msgid "j M @ H:i" +msgstr "j F \\à G \\h i \\m\\i\\n " + +#: wp-admin/includes/class-wp-automatic-updater.php:1451 +msgid "" +"BETA TESTING?\n" +"=============\n" +"\n" +"This debugging email is sent when you are using a development version of WordPress.\n" +"\n" +"If you think these failures might be due to a bug in WordPress, could you report it?\n" +" * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta\n" +" * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/\n" +"\n" +"Thanks! -- The WordPress Team" +msgstr "" +"BETA TESTEUR ?\n" +"==============\n" +"\n" +"Cet e-mail de débogage est envoyé lorsque vous utilisez une version de développement de WordPress.\n" +"\n" +"Si vous pensez que ces erreurs puissent être dues à un problème du côté de WordPress, pourriez-vous nous les signaler ?\n" +"* Ouvrez une discussion sur le forum de support en anglais : https://wordpress.org/support/forum/alphabeta\n" +"* Ou, si rédiger un rapport de bug ne vous fait pas peur : http://core.trac.wordpress.org/\n" +"\n" +"Merci ! -- L’équipe WordPress" + +#: wp-admin/includes/revision.php:251 wp-admin/includes/revision.php:294 +msgid "M j, Y @ H:i" +msgstr "j F Y \\à G \\h i \\m\\i\\n " + +#: wp-admin/comment.php:226 +msgid "Submitted on" +msgstr "Envoyé le" + +#. translators: Column name or table row header. +#: wp-admin/comment.php:200 +#: wp-admin/includes/class-wp-comments-list-table.php:477 +msgid "In response to" +msgstr "En réponse à" + +#. translators: 1: Month, 2: Day, 3: Year, 4: Hour, 5: Minute. +#: wp-admin/includes/template.php:869 wp-admin/js/comment.js:89 +#: wp-admin/js/post.js:811 +msgid "%1$s %2$s, %3$s at %4$s:%5$s" +msgstr "%2$s %1$s %3$s à %4$sh%5$s" + +#: wp-admin/edit-form-advanced.php:297 +msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." +msgstr "Vous pouvez activer le mode d’écriture sans distraction en cliquant sur l’icône à droite. Cette fonctionnalité n’est pas disponible pour les anciens navigateurs ou les appareils à petits écrans, et requiert l’activation de l’éditeur plein-écran dans les options de l’écran." + +#: wp-admin/includes/plugin-install.php:418 +msgid "These suggestions are based on the plugins you and other users have installed." +msgstr "Ces suggestions sont basées sur les extensions que vous et d’autres utilisateurs ont installées." + +#: wp-admin/user-edit.php:737 +msgid "You are only logged in at this location." +msgstr "Vous n’êtes connecté·e qu’à cet endroit." + +#: wp-admin/user-edit.php:755 +msgid "Log Out Everywhere" +msgstr "Déconnexion globale" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:114 +msgctxt "Plugin Installer" +msgid "Recommended" +msgstr "Recommandées" + +#. translators: New site notification email. 1: New site URL, 2: User login, 3: +#. User password or password reset link, 4: Login URL. +#: wp-admin/includes/upgrade.php:558 +msgid "" +"Your new WordPress site has been successfully set up at:\n" +"\n" +"%1$s\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: %2$s\n" +"Password: %3$s\n" +"Log in here: %4$s\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The WordPress Team\n" +"https://wordpress.org/\n" +msgstr "" +"Votre nouveau site WordPress a bien été installé à l’adresse :\n" +"\n" +"%1$s\n" +"\n" +"Vous pouvez vous y connecter en tant qu’administrateur avec les informations suivantes :\n" +"\n" +"Identifiant : %2$s\n" +"Mot de passe : %3$s\n" +"Connectez-vous ici : %4$s\n" +"\n" +"Nous espérons que vous aimerez votre nouveau site ! Merci à vous !\n" +"\n" +"--L’équipe WordPress\n" +"https://wordpress.org/\n" + +#: wp-admin/options-discussion.php:317 +msgid "Mystery Person" +msgstr "Personne mystère" + +#: wp-admin/install.php:127 +msgid "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol." +msgstr "Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas (\"_\"), des traits d’union (\"-\"), des points et le symbole @." + +#: wp-admin/themes.php:302 +msgid "You cannot delete a theme while it has an active child theme." +msgstr "Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant." + +#: wp-admin/includes/class-wp-screen.php:1007 +msgid "Enable full-height editor and distraction-free functionality." +msgstr "Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:724 +msgid "Untested with your version of WordPress" +msgstr "Non testé avec votre version de WordPress" + +#. translators: Link to the Planet website of the locale. +#: wp-admin/includes/dashboard.php:1578 wp-admin/index.php:98 +msgid "https://planet.wordpress.org/" +msgstr "https://wpfr.net" + +#. translators: Link to the Planet feed of the locale. +#: wp-admin/includes/dashboard.php:1591 +msgid "https://planet.wordpress.org/feed/" +msgstr "https://feeds.feedburner.com/wpfr" + +#: wp-admin/includes/meta-boxes.php:1180 +msgid "All categories" +msgstr "Toutes les catégories" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:513 +msgid "Filter by comment type" +msgstr "Filtrer par type de commentaire" + +#: wp-admin/includes/ajax-actions.php:3980 +msgid "Could not log out user sessions. Please try again." +msgstr "Impossible de déconnecter les sessions utilisateur. Veuillez réessayer." + +#: wp-admin/edit-form-advanced.php:293 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab." +msgstr "Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel ou Texte. Choisissez un mode en cliquant sur l’onglet correspondant." + +#: wp-admin/includes/ajax-actions.php:3851 +msgid "This preview is unavailable in the editor." +msgstr "Cette prévisualisation n’est pas disponible dans l’éditeur." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:3993 +msgid "%s has been logged out." +msgstr "%s a été déconnecté·e." + +#: wp-admin/includes/ajax-actions.php:3989 +msgid "You are now logged out everywhere else." +msgstr "Vous êtes désormais déconnecté·e partout ailleurs." + +#: wp-admin/edit-form-advanced.php:296 +msgid "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." +msgstr "Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel." + +#. translators: %s: URL to background image configuration in Customizer. +#: wp-admin/includes/class-custom-background.php:249 +msgid "You can now manage and live-preview Custom Backgrounds in the Customizer." +msgstr "Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation." + +#. translators: %s: URL to header image configuration in Customizer. +#: wp-admin/includes/class-custom-image-header.php:518 +msgid "You can now manage and live-preview Custom Header in the Customizer." +msgstr "Vous pouvez gérer et prévisualiser l’en-tête personnalisée dans l’outil de personnalisation." + +#: wp-admin/includes/class-wp-screen.php:1138 +msgctxt "Welcome panel" +msgid "Welcome" +msgstr "Bienvenue" + +#. translators: %s: Number of users. +#. translators: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:206 +#: wp-admin/includes/class-wp-ms-users-list-table.php:144 +msgctxt "users" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/edit-link-form.php:123 +#: wp-admin/includes/class-wp-links-list-table.php:132 +#: wp-admin/includes/class-wp-links-list-table.php:146 +msgctxt "link name" +msgid "Name" +msgstr "Nom" + +#. translators: %s: Placeholder that must come at the start of the URL. +#: wp-admin/options-permalink.php:417 +msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used." +msgstr "Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les adresses web de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée." + +#: wp-admin/credits.php:133 +msgid "Release Lead" +msgstr "Responsable de cette version" + +#: wp-admin/upload.php:191 +msgid "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." +msgstr "Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre." + +#: wp-admin/upload.php:180 wp-admin/upload.php:371 +msgid "You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media." +msgstr "Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias." + +#: wp-admin/upload.php:181 +msgid "To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media." +msgstr "Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias." + +#: wp-admin/upload.php:192 +msgid "You can also delete individual items and access the extended edit screen from the details dialog." +msgstr "Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran de modifications étendues par la fenêtre des détails." + +#: wp-admin/upload.php:190 +msgid "Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved." +msgstr "Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées." + +#: wp-admin/plugin-install.php:113 +msgid "If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly." +msgstr "Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées." + +#: wp-admin/plugin-install.php:155 +msgid "Browse Plugins" +msgstr "Parcourir les extensions" + +#: wp-admin/upload.php:179 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first." +msgstr "Tous les fichiers que vous avez téléversés sont listés dans la bibliothèque de médias, avec le dernier téléversé qui apparaît en premier." + +#: wp-admin/plugin-install.php:51 +msgid "Add Plugins" +msgstr "Ajouter des extensions" + +#: wp-admin/includes/translation-install.php:24 +msgid "Invalid translation type." +msgstr "Type de traduction non valide." + +#. translators: 1: WPLANG, 2: wp-config.php +#: wp-admin/options-general.php:334 +msgid "The %1$s constant in your %2$s file is no longer needed." +msgstr "La constante %1$s de votre fichier %2$s n’est plus nécessaire." + +#: wp-admin/install.php:369 +msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." +msgstr "Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:726 +msgid "Incompatible with your version of WordPress" +msgstr "Incompatible avec votre version de WordPress" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:728 +msgid "Compatible with your version of WordPress" +msgstr "Compatible avec votre version de WordPress" + +#. translators: %s: Number of stars. +#: wp-admin/includes/plugin-install.php:774 +msgid "%d star" +msgid_plural "%d stars" +msgstr[0] "%d étoile" +msgstr[1] "%d étoiles" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:598 +msgid "Select bulk action" +msgstr "Sélectionnez l’action groupée" + +#. translators: %s: List view URL. +#: wp-admin/upload.php:235 +msgid "The grid view for the Media Library requires JavaScript. Switch to the list view." +msgstr "La vue en grille de la Bibliothèque de Médias nécessite JavaScript. Passer à la vue en liste." + +#. translators: %s: Support email address. +#: wp-admin/includes/class-wp-automatic-updater.php:881 +msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." +msgstr "L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne." + +#. translators: %s: URL that could not be embedded. +#: wp-admin/includes/ajax-actions.php:3817 +msgid "%s failed to embed." +msgstr "%s n’a pas pu être intégré." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:109 +msgctxt "Plugin Installer" +msgid "Beta Testing" +msgstr "Test de phase beta" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:488 +msgctxt "Plugin installer group title" +msgid "Performance" +msgstr "Performance" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:489 +msgctxt "Plugin installer group title" +msgid "Social" +msgstr "Social" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:490 +msgctxt "Plugin installer group title" +msgid "Tools" +msgstr "Outils" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:571 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:823 +msgid "More Details" +msgstr "Plus de détails" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:66 +msgctxt "themes" +msgid "Recently Updated" +msgstr "Mis à jour récemment" + +#: wp-admin/includes/plugin-install.php:589 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Avis" + +#: wp-admin/includes/plugin-install.php:719 +#: wp-admin/includes/plugin-install.php:806 +msgid "Donate to this plugin »" +msgstr "Faites à un don à cette extension »" + +#: wp-admin/credits.php:27 wp-admin/includes/plugin-install.php:788 +msgid "Contributors" +msgstr "Contributeurs" + +#: wp-admin/includes/class-wp-terms-list-table.php:200 +#: wp-admin/includes/class-wp-terms-list-table.php:222 +msgctxt "Number/count of items" +msgid "Count" +msgstr "Total" + +#: wp-admin/theme-install.php:270 +msgid "Filtering by:" +msgstr "Trier par :" + +#: wp-admin/includes/image-edit.php:201 +msgid "To crop the image, click on it and drag to make your selection." +msgstr "Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection." + +#: wp-admin/edit-comments.php:218 +msgid "A red bar on the left means the comment is waiting for you to moderate it." +msgstr "Une barre rouge sur la gauche signifie que le commentaire attention votre validation." + +#: wp-admin/includes/image-edit.php:203 +msgid "The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc." +msgstr "Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Shift tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc." + +#: wp-admin/includes/image-edit.php:206 +msgid "Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings." +msgstr "Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média." + +#: wp-admin/includes/image-edit.php:291 +msgid "You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image." +msgstr "Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image." + +#: wp-admin/includes/media.php:3278 +msgid "Displayed on attachment pages." +msgstr "Affiché sur les pages des fichiers joints." + +#: wp-admin/includes/image-edit.php:134 +msgid "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." +msgstr "Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée." + +#. translators: %s: Alt + F10 +#: wp-admin/edit-form-advanced.php:300 +msgid "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." +msgstr "Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils." + +#: wp-admin/includes/class-wp-comments-list-table.php:518 +msgid "All comment types" +msgstr "Tous les types de commentaire" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:63 +msgctxt "themes" +msgid "Featured" +msgstr "Mis en avant" + +#: wp-admin/theme-install.php:212 +msgctxt "themes" +msgid "Popular" +msgstr "Populaires" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:65 +#: wp-admin/theme-install.php:213 +msgctxt "themes" +msgid "Latest" +msgstr "Derniers en date" + +#: wp-admin/theme-install.php:25 +msgid "Add Themes" +msgstr "Ajouter des thèmes" + +#: wp-admin/theme-install.php:58 +msgid "Search Themes" +msgstr "Chercher parmi les thèmes" + +#: wp-admin/theme-install.php:59 +msgid "Search themes..." +msgstr "Recherche parmi les thèmes..." + +#: wp-admin/theme-install.php:392 +msgctxt "theme" +msgid "Details & Preview" +msgstr "Détails et prévisualisation" + +#: wp-admin/users.php:404 +msgid "What should be done with content owned by this user?" +msgstr "Que faire du contenu ayant cet utilisateur pour propriétaire ?" + +#: wp-admin/includes/ms.php:965 wp-admin/users.php:412 +msgid "Delete all content." +msgstr "Supprimer tout le contenu." + +#: wp-admin/includes/ms.php:967 wp-admin/users.php:416 +msgid "Attribute all content to:" +msgstr "Attribuer tout le contenu à :" + +#: wp-admin/index.php:65 +msgid "Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it." +msgstr "Contrôles des blocs — Cliquez sur la barre de titre d’un bloc pour l’ouvrir ou le fermer. Certains blocs ajoutés par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris." + +#: wp-admin/maint/repair.php:162 +msgid "https://wordpress.org/support/forum/how-to-and-troubleshooting" +msgstr "https://wpfr.net/support/forum/support-de-wordpress/" + +#: wp-admin/themes.php:43 +msgid "Sorry, you are not allowed to resume this theme." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter ce thème." + +#: wp-admin/users.php:60 +msgid "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions." +msgstr "Supprimer vous amène à l’écran de suppression des utilisateurs pour confirmer votre action, d’où vous pouvez supprimer un utilisateur de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs utilisateurs à la fois avec les actions groupées." + +#: wp-admin/users.php:58 +msgid "Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions." +msgstr "Supprimervous permet de retirer un utilisateur de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs utilisateurs à la fois avec les actions groupées." + +#: wp-admin/index.php:86 +msgid "At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using." +msgstr "D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez." + +#. translators: %s: https://wordpress.org +#: wp-admin/admin-footer.php:37 +msgid "Thank you for creating with WordPress." +msgstr "Merci de faire de WordPress votre outil de création." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:200 +msgid "Edit visibility" +msgstr "Modifier la visibilité" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:278 +msgid "Browse revisions" +msgstr "Parcourir les révisions" + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:162 wp-admin/includes/meta-boxes.php:296 +msgid "Edit date and time" +msgstr "Modifier la date et l’heure" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:138 +msgid "Edit status" +msgstr "Modifier l’état" + +#: wp-admin/includes/ms.php:1173 wp-admin/network/index.php:57 +#: wp-admin/network/site-new.php:33 wp-admin/network/sites.php:47 +#: wp-admin/network/user-new.php:30 wp-admin/network/users.php:243 +msgid "Support forums" +msgstr "Forums d’entraide" + +#: wp-admin/themes.php:234 +msgid "Search installed themes..." +msgstr "Chercher parmi les thèmes installés..." + +#: wp-admin/update-core.php:991 +msgid "If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu." +msgstr "Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils" + +#: wp-admin/update-core.php:1001 +msgid "In most cases, WordPress will automatically apply maintenance and security updates in the background for you." +msgstr "Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan." + +#: wp-admin/update-core.php:1005 +msgid "Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button." +msgstr "Traductions — Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton \"Mettre à jour les traductions\"." + +#: wp-admin/update-core.php:1001 +msgid "WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available." +msgstr "WordPress – Mise à jour de votre installation WordPress en un clic : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié·e qu’une nouvelle version est disponible." + +#: wp-admin/update-core.php:1002 +msgid "Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button." +msgstr "Thèmes et extensions — Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à jour pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions d’un coup, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le boutons de mise à jour." + +#: wp-admin/update-core.php:990 +msgid "On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories." +msgstr "Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org." + +#. translators: %s: https://wordpress.org/themes +#: wp-admin/themes.php:156 +msgid "If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!" +msgstr "Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire de thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !" + +#. translators: %s: Number of posts. +#: wp-admin/includes/dashboard.php:312 +msgid "%s Post" +msgid_plural "%s Posts" +msgstr[0] "%s articles" +msgstr[1] "%s articles" + +#. translators: %s: Number of pages. +#: wp-admin/includes/dashboard.php:315 +msgid "%s Page" +msgid_plural "%s Pages" +msgstr[0] "%s page" +msgstr[1] "%s pages" + +#. translators: Date and time format for recent posts on the dashboard, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/dashboard.php:1034 +msgid "M jS" +msgstr "j M" + +#. translators: %s: Number of megabytes. +#: wp-admin/includes/dashboard.php:1675 +msgid "%s MB Space Allowed" +msgstr "%s Mo d’espace autorisés" + +#. translators: 1: Number of megabytes, 2: Percentage. +#: wp-admin/includes/dashboard.php:1690 +msgid "%1$s MB (%2$s%%) Space Used" +msgstr "%1$s Mo (%2$s%%) d’espace utilisés" + +#: wp-admin/includes/dashboard.php:73 +msgid "At a Glance" +msgstr "D’un coup d’œil" + +#: wp-admin/options-reading.php:47 +msgid "When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site." +msgstr "Lorsque ce réglage est actif, un rappel est affiché dans la section « D’un coup d’œil » du Tableau de bord, indiquant « Moteurs de recherche découragés » pour que vous n’oubliez pas que vous avez indiqué aux moteurs de recherche de ne pas parcourir votre site." + +#: wp-admin/themes.php:598 wp-admin/themes.php:969 +msgctxt "theme" +msgid "Active:" +msgstr "Activé :" + +#: wp-admin/includes/theme.php:331 +msgid "Accessibility Ready" +msgstr "Optimisé pour l’accessibilité" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:978 wp-admin/themes.php:1202 +msgid "This is a child theme of %s." +msgstr "Ceci est un thème enfant de %s." + +#: wp-admin/themes.php:132 +msgid "This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties." +msgstr "Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers." + +#: wp-admin/themes.php:134 +msgid "Hover or tap to see Activate and Live Preview buttons" +msgstr "Survolez out touchez pour voir les boutons Activer et Prévisualisation" + +#: wp-admin/themes.php:173 +msgid "Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way." +msgstr "Touchez ou survolez n’importe quel thème puis cliquez sur le bouton Prévisualisation pour voir une prévisualisation de ce thème et changer les options du thème dans un vie séparée et plein écran. Vous pouvez également trouver un bouton Prévisualisation au bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière." + +#: wp-admin/themes.php:135 +msgid "Click on the theme to see the theme name, version, author, description, tags, and the Delete link" +msgstr "Cliquez sur le thème pour voir le nom du thème, sa version, son auteur, sa description, ses étiquettes et le bouton Supprimer." + +#: wp-admin/themes.php:175 +msgid "When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again." +msgstr "Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, cliquez à nouveau sur l’icône de réduction." + +#: wp-admin/themes.php:174 +msgid "The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu." +msgstr "Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres modèles de pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un clic, cliquez sur le bouton « Enregistrer et publier » en haut du menu." + +#: wp-admin/themes.php:136 +msgid "Click Customize for the active theme or Live Preview for any other theme to see a live preview" +msgstr "Cliquer sur « Personnaliser » pour le thème actif ou « Prévisualiser en direct » pour n’importe quel autre thème afin d’afficher la prévisualisation." + +#: wp-admin/themes.php:137 +msgid "The active theme is displayed highlighted as the first theme." +msgstr "Le thème actif est mis en avant en tant que premier thème." + +#: wp-admin/widgets-form.php:453 +msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." +msgstr "Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale." + +#. translators: Hidden accessibility text. 1: The rating, 2: The number of +#. ratings. +#: wp-admin/includes/template.php:2769 +msgid "%1$s rating based on %2$s rating" +msgid_plural "%1$s rating based on %2$s ratings" +msgstr[0] "Une note de %1$s basée sur %2$s vote" +msgstr[1] "Une note de %1$s basée sur %2$s votes" + +#. translators: Hidden accessibility text. %s: The rating. +#: wp-admin/includes/template.php:2773 +msgid "%s rating" +msgstr "Note : %s" + +#: wp-admin/my-sites.php:46 +msgid "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." +msgstr "Cet écran affiche à un utilisateur individuel tous ses sites sur ce réseau, et permet également à cet utilisateur de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration." + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1509 +msgid "Rollback Error: [%1$s] %2$s" +msgstr "Erreur de restauration : [%1$s] %2$s" + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1512 +msgid "Error: [%1$s] %2$s" +msgstr "Erreur : [%1$s] %2$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1409 +msgid "The following plugins were successfully updated:" +msgstr "Les extensions suivantes ont bien été mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1410 +msgid "The following themes were successfully updated:" +msgstr "Les thèmes suivants ont bien été mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1411 +msgid "The following translations were successfully updated:" +msgstr "Les traductions suivantes ont bien été mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1424 +msgid "The following plugins failed to update:" +msgstr "Les extensions suivantes n’ont pas pu être mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1425 +msgid "The following themes failed to update:" +msgstr "Les thèmes suivants n’ont pas pu être mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1426 +msgid "The following translations failed to update:" +msgstr "Les traductions suivantes n’ont pas pu être mises à jour :" + +#: wp-admin/theme-install.php:57 wp-admin/themes.php:232 +#: wp-admin/themes.php:255 wp-admin/network/menu.php:81 +#: wp-admin/network/themes.php:366 +msgid "Add New Theme" +msgstr "Ajouter un thème" + +#: wp-admin/includes/theme.php:899 wp-admin/themes.php:1118 +msgid "Update Available" +msgstr "Mise à jour disponible" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:837 wp-admin/themes.php:1018 +msgid "Show previous theme" +msgstr "Affichier le thème précédent" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:843 wp-admin/themes.php:1024 +msgid "Show next theme" +msgstr "Afficher le thème suivant" + +#: wp-admin/widgets-form.php:574 +msgid "Add Widget" +msgstr "Ajouter le widget" + +#: wp-admin/index.php:63 +msgid "Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show." +msgstr "Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les blocs à afficher dans le Tableau de bord." + +#: wp-admin/index.php:89 +msgid "Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them." +msgstr "Activité — Affiche les articles programmés, ceux récemment publiés, et les commentaires récents sur vos articles, que vous pouvez valider ou non." + +#: wp-admin/themes.php:228 +msgid "" +"Are you sure you want to delete this theme?\n" +"\n" +"Click 'Cancel' to go back, 'OK' to confirm the delete." +msgstr "" +"Confirmez-vous la suppression de ce thème ?\n" +"\n" +"« Annuler » pour arrêter, « OK » pour supprimer." + +#: wp-admin/post.php:82 +msgid "Unable to submit this form, please refresh and try again." +msgstr "Impossible d’envoyer ce formulaire. Veuillez recharger la page et réessayer." + +#: wp-admin/index.php:92 +msgid "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." +msgstr "Brouillon rapide — Vous permet de créer une nouvelle publication et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 3 derniers brouillons que vous avez créés." + +#: wp-admin/includes/dashboard.php:82 +msgid "Activity" +msgstr "Activité" + +#. translators: %s: Network home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1381 +msgid "WordPress site: %s" +msgstr "Site WordPress : %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1389 +msgid "SUCCESS: WordPress was successfully updated to %s" +msgstr "SUCCÈS : WordPress a bien été mis à jour vers %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1392 +msgid "FAILED: WordPress failed to update to %s" +msgstr "ÉCHEC : WordPress n’a pas pu être mis à jour vers %s" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1417 +msgid "SUCCESS: %s" +msgstr "SUCCÈS : %s" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1434 +msgid "FAILED: %s" +msgstr "ÉCHEC : %s" + +#: wp-admin/includes/dashboard.php:87 +msgid "Quick Draft" +msgstr "Brouillon rapide" + +#. translators: 1: Version number, 2: Theme name. +#: wp-admin/includes/update.php:383 +msgid "WordPress %1$s running %2$s theme." +msgstr "WordPress %1$s avec le thème %2$s." + +#: wp-admin/includes/dashboard.php:599 +msgid "What’s on your mind?" +msgstr "Qu’avez-vous en tête ?" + +#: wp-admin/includes/dashboard.php:944 +msgid "Publishing Soon" +msgstr "Bientôt publié" + +#: wp-admin/includes/dashboard.php:953 +msgid "Recently Published" +msgstr "Publié récemment" + +#: wp-admin/includes/dashboard.php:962 +msgid "No activity yet!" +msgstr "Aucune activité pour le moment !" + +#: wp-admin/includes/dashboard.php:1028 +msgid "Tomorrow" +msgstr "Demain" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:1683 wp-admin/includes/dashboard.php:1699 +msgid "Manage Uploads" +msgstr "Gérer les téléversements" + +#: wp-admin/includes/deprecated.php:1389 +msgid "Popular Plugin" +msgstr "Extensions populaires " + +#. translators: %s: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:822 +msgid "WordPress %s is also now available." +msgstr "WordPress %s est disponible." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:910 +msgid "Your site was running version %s." +msgstr "Votre site utilise la version %s." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:856 +msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." +msgstr "Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s." + +#: wp-admin/includes/update-core.php:1206 +#: wp-admin/includes/update-core.php:1242 +msgid "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." +msgstr "La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers." + +#. translators: 1: Project name (plugin, theme, or WordPress), 2: Language. +#: wp-admin/includes/class-language-pack-upgrader-skin.php:51 +#: wp-admin/includes/class-wp-automatic-updater.php:440 +msgid "Updating translations for %1$s (%2$s)…" +msgstr "Mise à jour de la traduction de %1$s (%2$s)…" + +#. translators: %s: Project name (plugin, theme, or WordPress). +#: wp-admin/includes/class-wp-automatic-updater.php:438 +msgid "Translations for %s" +msgstr "Traductions pour %s" + +#. translators: Site updated notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:777 +msgid "[%1$s] Your site has updated to WordPress %2$s" +msgstr "[%1$s] Votre site a été mis à jour vers WordPress %2$s" + +#. translators: Site down notification email subject. 1: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:788 +msgid "[%1$s] URGENT: Your site may be down due to a failed update" +msgstr "[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible." + +#: wp-admin/includes/class-wp-automatic-updater.php:823 +#: wp-admin/includes/class-wp-automatic-updater.php:848 +msgid "Updating is easy and only takes a few moments:" +msgstr "La mise à jour est facile et ne requiert que quelques secondes :" + +#: wp-admin/includes/class-wp-automatic-updater.php:869 +msgid "This means your site may be offline or broken. Don't panic; this can be fixed." +msgstr "Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé." + +#: wp-admin/includes/class-wp-automatic-updater.php:892 +#: wp-admin/update-core.php:991 +msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." +msgstr "Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le Web plus sûr pour vous et vos lecteurs." + +#: wp-admin/includes/class-wp-automatic-updater.php:901 +msgid "You also have some plugins or themes with updates available. Update them now:" +msgstr "Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :" + +#: wp-admin/update-core.php:819 wp-admin/update-core.php:827 +msgid "Translations" +msgstr "Traductions" + +#: wp-admin/includes/class-language-pack-upgrader.php:114 +#: wp-admin/update-core.php:820 +msgid "Your translations are all up to date." +msgstr "Vos traductions sont toutes à jour." + +#. translators: %s: Error code. +#: wp-admin/includes/class-wp-automatic-updater.php:931 +msgid "Error code: %s" +msgstr "Code d’erreur : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:912 +msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" +msgstr "Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :" + +#: wp-admin/includes/class-wp-automatic-updater.php:905 +#: wp-admin/includes/class-wp-automatic-updater.php:1324 +msgid "The WordPress Team" +msgstr "L’équipe WordPress" + +#: wp-admin/includes/class-wp-automatic-updater.php:886 +#: wp-admin/includes/class-wp-automatic-updater.php:1322 +msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." +msgstr "Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de wpfr.net devraient pouvoir vous aider." + +#: wp-admin/includes/class-wp-automatic-updater.php:871 +msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" +msgstr "Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :" + +#. translators: 1: Home URL, 2: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:863 +msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." +msgstr "Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:833 +msgid "Please update your site at %1$s to WordPress %2$s." +msgstr "Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:817 +msgid "For more on version %s, see the About WordPress screen:" +msgstr "Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : " + +#: wp-admin/includes/class-wp-automatic-updater.php:811 +msgid "No further action is needed on your part." +msgstr "Vous n’avez rien de plus à faire." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:805 +msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." +msgstr "Salutations ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s." + +#. translators: Update available notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:783 +msgid "[%1$s] WordPress %2$s is available. Please update!" +msgstr "[%1$s] WordPress %2$s est disponible. Veuillez faire la mise à jour !" + +#: wp-admin/includes/class-language-pack-upgrader-skin.php:31 +#: wp-admin/update-core.php:831 wp-admin/update-core.php:1283 +msgid "Update Translations" +msgstr "Mise à jour des traductions" + +#: wp-admin/includes/class-wp-site-health.php:2792 +msgid "Background updates" +msgstr "Mises à jour en arrière-plan" + +#: wp-admin/includes/class-language-pack-upgrader.php:119 +msgid "Translation update failed." +msgstr "La mise à jour de la traduction a échoué." + +#: wp-admin/includes/class-language-pack-upgrader.php:120 +msgid "Translation updated successfully." +msgstr "La traduction a bien été mise à jour." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-automatic-updater.php:421 +msgid "Updating theme: %s" +msgstr "Mise à jour du thème : %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-automatic-updater.php:433 +msgid "Updating plugin: %s" +msgstr "Mise à jour de l’extension : %s" + +#: wp-admin/includes/update-core.php:1309 +msgid "There is not enough free disk space to complete the update." +msgstr "Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour." + +#: wp-admin/includes/class-language-pack-upgrader.php:113 +msgid "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." +msgstr "Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour." + +#: wp-admin/options-discussion.php:204 +msgid "Comment must be manually approved" +msgstr "Le commentaire doit être approuvé manuellement" + +#: wp-admin/options-media.php:56 +msgid "The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library." +msgstr "Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la bibliothèque de médias." + +#: wp-admin/user-new.php:504 +msgid "Create a brand new user and add them to this site." +msgstr "Créer un nouvel utilisateur et l’ajouter à ce site." + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:43 +msgid "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead." +msgstr "La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant." + +#. translators: 1: Folder to locate, 2: Folder to start searching from. +#: wp-admin/includes/class-wp-filesystem-base.php:268 +msgid "Looking for %1$s in %2$s" +msgstr "Recherche %1$s dans %2$s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:407 +msgid "Updating to WordPress %s" +msgstr "Mise à jour vers WordPress %s" + +#. translators: %s: Version number. +#. translators: %s: WordPress version. +#: wp-admin/about.php:28 wp-admin/includes/class-wp-automatic-updater.php:409 +msgid "WordPress %s" +msgstr "WordPress %s" + +#. translators: 1: File checksum, 2: Expected checksum value. +#: wp-admin/includes/file.php:1369 +msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." +msgstr "L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s)." + +#: wp-admin/includes/file.php:2609 +msgid "This password will not be stored on the server." +msgstr "Le mot de passe ne sera pas stocké sur le serveur." + +#: wp-admin/install.php:404 +msgid "Please provide a valid username." +msgstr "Veuillez saisir un identifiant valide." + +#: wp-admin/install.php:411 +msgid "Your passwords do not match. Please try again." +msgstr "Vos mots de passe ne correspondent pas. Veuillez réessayer." + +#: wp-admin/install.php:415 +msgid "You must provide an email address." +msgstr "Vous devez saisir une adresse de messagerie." + +#: wp-admin/nav-menus.php:737 +msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." +msgstr "En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran »." + +#: wp-admin/includes/update-core.php:1130 +msgid "Preparing to install the latest version…" +msgstr "Préparation de l’installation de la dernière version…" + +#. translators: %s: URL to Widgets screen. +#: wp-admin/nav-menus.php:689 +msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." +msgstr "Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget “Menu de navigation” depuis l’écran Widgets." + +#: wp-admin/install.php:407 +msgid "The username you provided has invalid characters." +msgstr "L’identifiant que vous avez fourni contient des caractères non valides." + +#: wp-admin/includes/update-core.php:1223 +msgid "Copying the required files…" +msgstr "Copie des fichiers nécessaires…" + +#: wp-admin/includes/class-core-upgrader.php:38 +msgid "Due to an error during updating, WordPress has been restored to your previous version." +msgstr "Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente." + +#: wp-admin/install.php:419 +msgid "Sorry, that is not a valid email address. Email addresses look like username@example.com." +msgstr "Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com." + +#. translators: 1: URL to Widgets screen, 2 and 3: The names of the default +#. themes. +#: wp-admin/nav-menus.php:706 +msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." +msgstr "Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté." + +#: wp-admin/includes/edit-tag-messages.php:24 +msgid "Category added." +msgstr "Catégorie ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:25 +msgid "Category deleted." +msgstr "Catégorie effacée." + +#: wp-admin/includes/edit-tag-messages.php:26 +msgid "Category updated." +msgstr "Catégorie mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:27 +msgid "Category not added." +msgstr "Catégorie non ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:28 +msgid "Category not updated." +msgstr "Catégorie non mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:29 +msgid "Categories deleted." +msgstr "Catégories supprimées." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:362 +msgid "%s post not updated, somebody is editing it." +msgid_plural "%s posts not updated, somebody is editing them." +msgstr[0] "%s article n’a pas été mis à jour : quelqu’un est déjà en train de la modifier." +msgstr[1] "%s articles n’ont pas été mis à jour : quelqu’un est déjà en train de les modifier." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:364 +msgid "%s post permanently deleted." +msgid_plural "%s posts permanently deleted." +msgstr[0] "%s article supprimé définitivement." +msgstr[1] "%s articles supprimés définitivement." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:372 +msgid "%s page updated." +msgid_plural "%s pages updated." +msgstr[0] "%s page mise à jour." +msgstr[1] "%s pages mises à jour." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:375 +msgid "%s page not updated, somebody is editing it." +msgid_plural "%s pages not updated, somebody is editing them." +msgstr[0] "%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier." +msgstr[1] "%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:377 +msgid "%s page permanently deleted." +msgid_plural "%s pages permanently deleted." +msgstr[0] "%s page définitivement supprimée." +msgstr[1] "%s pages définitivement supprimées." + +#: wp-admin/includes/edit-tag-messages.php:34 +msgid "Tag added." +msgstr "Étiquette ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:35 +msgid "Tag deleted." +msgstr "Étiquette supprimée." + +#: wp-admin/includes/edit-tag-messages.php:36 +msgid "Tag updated." +msgstr "Étiquette mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:37 +msgid "Tag not added." +msgstr "Étiquette non ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:38 +msgid "Tag not updated." +msgstr "Étiquette non mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:39 +msgid "Tags deleted." +msgstr "Étiquette supprimée." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:381 +msgid "%s page restored from the Trash." +msgid_plural "%s pages restored from the Trash." +msgstr[0] "%s page récupérée depuis la corbeille." +msgstr[1] "%s pages récupérées depuis la corbeille." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:379 +msgid "%s page moved to the Trash." +msgid_plural "%s pages moved to the Trash." +msgstr[0] "%s page déplacée dans la corbeille." +msgstr[1] "%s pages déplacées dans la corbeille." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:368 +msgid "%s post restored from the Trash." +msgid_plural "%s posts restored from the Trash." +msgstr[0] "%s article récupéré depuis la corbeille." +msgstr[1] "%s articles récupérés depuis la corbeille." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:366 +msgid "%s post moved to the Trash." +msgid_plural "%s posts moved to the Trash." +msgstr[0] "%s article déplacé dans la corbeille." +msgstr[1] "%s articles déplacés dans la corbeille." + +#: wp-admin/revision.php:145 +msgid "Compare two different revisions by selecting the “Compare any two revisions” box to the side." +msgstr "Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté." + +#: wp-admin/includes/revision.php:391 +msgid "Compare any two revisions" +msgstr "Comparer n’importe quelles révisions" + +#. translators: 1: Audio track title, 2: Album title, 3: Artist name. +#: wp-admin/includes/media.php:334 +msgid "\"%1$s\" from %2$s by %3$s." +msgstr "%1$s tiré de %2$s par %3$s." + +#. translators: 1: Audio track title, 2: Album title. +#: wp-admin/includes/media.php:337 +msgid "\"%1$s\" from %2$s." +msgstr "%1$s tiré de %2$s" + +#. translators: 1: Audio track title, 2: Artist name. +#: wp-admin/includes/media.php:340 +msgid "\"%1$s\" by %2$s." +msgstr "%1$s par %2$s." + +#. translators: %s: Audio track title. +#: wp-admin/includes/media.php:343 +msgid "\"%s\"." +msgstr "%s." + +#. translators: Post revisions heading. %s: The number of available revisions. +#: wp-admin/includes/meta-boxes.php:273 +msgid "Revisions: %s" +msgstr "Révisions : %s" + +#: wp-admin/includes/meta-boxes.php:275 +msgctxt "revisions" +msgid "Browse" +msgstr "Parcourir" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:412 +msgid "Autosave by %s" +msgstr "Sauvegarde automatique par %s" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:422 +msgid "Current Revision by %s" +msgstr "Révision actuelle par %s" + +#: wp-admin/includes/revision.php:450 +msgid "Restore This Autosave" +msgstr "Rétablir cette sauvegarde automatique" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:432 +msgid "Revision by %s" +msgstr "Révision par %s" + +#: wp-admin/edit-form-advanced.php:468 +msgid "Connection lost. Saving has been disabled until you are reconnected." +msgstr "Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion." + +#: wp-admin/includes/revision.php:464 +msgid "Sorry, something went wrong. The requested comparison could not be loaded." +msgstr "Désolé, quelque chose s’est mal déroulé. La comparaison demandée n’a pas pu être chargée." + +#: wp-admin/user-edit.php:687 +msgid "Repeat New Password" +msgstr "Répétez le nouveau mot de passe" + +#: wp-admin/install.php:160 wp-admin/user-new.php:600 +msgid "Repeat Password" +msgstr "Répétez le mot de passe" + +#: wp-admin/includes/nav-menu.php:1251 +msgid "Add menu items from the column on the left." +msgstr "Ajouter des éléments de menu depuis la colonne de gauche." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/includes/plugin-install.php:413 +msgid "Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page." +msgstr "Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou téléverser une extension au format .zip en cliquant sur le bouton en haut de cette page." + +#. Plugin URI of the plugin +#: hello.php +msgid "http://wordpress.org/plugins/hello-dolly/" +msgstr "http://wordpress.org/plugins/hello-dolly/" + +#: wp-admin/includes/class-wp-upgrader.php:201 +msgid "The package contains no files." +msgstr "Ce paquet ne contient aucun fichier." + +#: wp-admin/includes/class-theme-upgrader.php:80 +msgid "The theme contains no files." +msgstr "Ce thème ne contient aucun fichier." + +#: wp-admin/revision.php:144 +msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." +msgstr "Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante." + +#: wp-admin/customize.php:151 wp-admin/includes/class-wp-debug-data.php:446 +#: wp-admin/includes/dashboard.php:1172 +msgid "Loading…" +msgstr "Chargement…" + +#: wp-admin/post.php:308 +msgid "This item has already been deleted." +msgstr "Cet élément a déjà été supprimé." + +#: wp-admin/post.php:279 +msgid "The item you are trying to restore from the Trash no longer exists." +msgstr "L’élément que vous essayez de sortir de la corbeille n’existe plus." + +#: wp-admin/post.php:242 +msgid "The item you are trying to move to the Trash no longer exists." +msgstr "L’élément que vous essayez de placer dans la corbeille n’existe plus." + +#: wp-admin/nav-menus.php:1112 +msgid "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." +msgstr "Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration." + +#: wp-admin/nav-menus.php:725 +msgid "If you have not yet created any menus, click the ’create a new menu’ link to get started" +msgstr "Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer" + +#: wp-admin/revision.php:141 +msgid "This screen is used for managing your content revisions." +msgstr "Cet écran est utilisé pour gérer les révisions de vos contenus." + +#: wp-admin/revision.php:142 +msgid "Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added." +msgstr "Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été enlevé. Sur la droite, le texte en vert indique le contenu qui a été ajouté." + +#: wp-admin/revision.php:143 +msgid "From this screen you can review, compare, and restore revisions:" +msgstr "Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :" + +#: wp-admin/revision.php:146 +msgid "To restore a revision, click Restore This Revision." +msgstr "Pour rétablir cette révision, cliquez sur « Rétablir cette révision »." + +#: wp-admin/includes/revision.php:402 +msgctxt "Followed by post revision info" +msgid "To:" +msgstr "Vers :" + +#: wp-admin/includes/revision.php:400 +msgctxt "Followed by post revision info" +msgid "From:" +msgstr "Depuis :" + +#: wp-admin/includes/revision.php:373 +msgctxt "Button label for a previous revision" +msgid "Previous" +msgstr "Précédente" + +#: wp-admin/includes/revision.php:377 +msgctxt "Button label for a next revision" +msgid "Next" +msgstr "Suivante" + +#: wp-admin/nav-menus.php:535 +msgid "Menu locations updated." +msgstr "Les emplacements de menu ont été mis à jour." + +#. translators: 1: Audio album title, 2: Artist name. +#: wp-admin/includes/media.php:349 +msgid "%1$s by %2$s." +msgstr "%1$s par %2$s." + +#. translators: Audio file track information. %d: Year of audio track release. +#: wp-admin/includes/media.php:361 +msgid "Released: %d." +msgstr "Date de sortie : %d." + +#. translators: Audio file track information. 1: Audio track number, 2: Total +#. audio tracks. +#: wp-admin/includes/media.php:371 +msgid "Track %1$s of %2$s." +msgstr "Piste %1$s sur %2$s." + +#. translators: Audio file genre information. %s: Audio genre name. +#: wp-admin/includes/media.php:387 +msgid "Genre: %s." +msgstr "Genre : %s" + +#: wp-admin/includes/media.php:3456 +msgid "Audio Format:" +msgstr "Format audio :" + +#: wp-admin/includes/media.php:3457 +msgid "Audio Codec:" +msgstr "Codex audio :" + +#: wp-admin/includes/post.php:1906 +msgid "Your latest changes were saved as a revision." +msgstr "Vos dernières modifications ont été enregistrées dans une révision." + +#: wp-admin/nav-menus.php:711 wp-admin/themes.php:133 +msgid "From this screen you can:" +msgstr "Depuis cet écran, vous pouvez :" + +#: wp-admin/nav-menus.php:712 +msgid "Create, edit, and delete menus" +msgstr "Créer, modifier et supprimer des menus" + +#: wp-admin/nav-menus.php:713 +msgid "Add, organize, and modify individual menu items" +msgstr "Ajouter, organiser et modifier des éléments de menu individuels" + +#: wp-admin/nav-menus.php:723 +msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." +msgstr "Le bloc de gestion des menus, en haut de l’écran, est utilisé pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous." + +#: wp-admin/nav-menus.php:726 +msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." +msgstr "Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran." + +#: wp-admin/nav-menus.php:731 +msgid "Menu Management" +msgstr "Gestion des menus" + +#: wp-admin/nav-menus.php:738 +msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" +msgstr "Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »" + +#: wp-admin/nav-menus.php:740 +msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" +msgstr "Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu" + +#: wp-admin/nav-menus.php:741 +msgid "Delete a menu item by expanding it and clicking the Remove link" +msgstr "Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer" + +#: wp-admin/nav-menus.php:746 +msgid "Editing Menus" +msgstr "Modification des menus" + +#: wp-admin/nav-menus.php:751 +msgid "This screen is used for globally assigning menus to locations defined by your theme." +msgstr "Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème." + +#: wp-admin/nav-menus.php:753 +msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" +msgstr "Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent" + +#: wp-admin/nav-menus.php:754 +msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" +msgstr "Pour ajouter un nouveau menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème" + +#: wp-admin/nav-menus.php:806 +msgid "Edit Menus" +msgstr "Modifier les menus" + +#: wp-admin/nav-menus.php:817 +msgid "Manage Locations" +msgstr "Gérer les emplacements" + +#: wp-admin/nav-menus.php:848 +msgid "Theme Location" +msgstr "Emplacement du thème" + +#: wp-admin/nav-menus.php:849 +msgid "Assigned Menu" +msgstr "Menu assigné" + +#: wp-admin/nav-menus.php:858 +msgid "Select a Menu" +msgstr "Choisir un menu" + +#: wp-admin/nav-menus.php:889 +msgctxt "menu" +msgid "Edit" +msgstr "Modifier" + +#: wp-admin/nav-menus.php:913 +msgctxt "menu" +msgid "Use new menu" +msgstr "Utiliser le nouveau menu" + +#: wp-admin/nav-menus.php:736 +msgid "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." +msgstr "Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des urls personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’un des blocs situés dans la colonne de gauche ci-dessous." + +#: wp-admin/nav-menus.php:703 +msgid "This screen is used for managing your navigation menus." +msgstr "Cet écran est utilisé pour gérer vos menus de navigation." + +#: wp-admin/nav-menus.php:724 +msgid "To edit an existing menu, choose a menu from the dropdown and click Select" +msgstr "Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »" + +#: wp-admin/nav-menus.php:752 +msgid "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" +msgstr "Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »" + +#: wp-admin/includes/revision.php:452 +msgid "Restore This Revision" +msgstr "Rétablir cette révision" + +#. translators: %s: Capability name. +#: wp-admin/user-edit.php:923 +msgid "Denied: %s" +msgstr "Refusé : %s" + +#: wp-admin/user-edit.php:909 +msgid "Capabilities" +msgstr "Permissions" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:257 +msgid "Move" +msgstr "Déplacer" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:258 +msgid "Up one" +msgstr "Un cran vers le haut" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:259 +msgid "Down one" +msgstr "Descendre d’un cran" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:262 +msgid "To the top" +msgstr "Tout en haut" + +#: wp-admin/nav-menus.php:1169 wp-admin/network/settings.php:511 +msgid "Menu Settings" +msgstr "Réglages du menu" + +#: wp-admin/nav-menus.php:1069 +msgid "Menu structure" +msgstr "Structure du menu" + +#. translators: 1: Post creation date, 2: Post creation time. +#: wp-admin/includes/ajax-actions.php:1634 +msgid "Draft created on %1$s at %2$s" +msgstr "Brouillon créé le %1$s à %2$s" + +#. translators: %s: User's display name. +#: wp-admin/includes/misc.php:1209 +msgid "%s has taken over and is currently editing." +msgstr "%s a pris la main et modifie actuellement ce contenu." + +#. translators: %s: User's display name. +#: wp-admin/post.php:257 +msgid "You cannot move this item to the Trash. %s is currently editing." +msgstr "Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier." + +#: wp-admin/nav-menus.php:974 +msgid "Select a menu to edit:" +msgstr "Sélectionnez le menu à modifier :" + +#. translators: %s: URL to Upgrade Network screen. +#: wp-admin/includes/ms.php:699 +msgid "Thank you for Updating! Please visit the Upgrade Network page to update all your sites." +msgstr "Merci d’avoir fait cette mise à jour ! Rendez-vous sur la page de mise à jour du réseau afin de mettre à jour tous vos sites." + +#: wp-admin/setup-config.php:509 +msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" +msgstr "C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…" + +#: wp-admin/includes/class-wp-debug-data.php:890 +msgid "Client version" +msgstr "Version du client" + +#: wp-admin/nav-menus.php:358 +msgid "Selected menus have been successfully deleted." +msgstr "Les menus sélectionnés ont bien été supprimés." + +#: wp-admin/nav-menus.php:1185 +msgid "Auto add pages" +msgstr "Ajoutez automatiquement des pages" + +#: wp-admin/nav-menus.php:1139 +msgid "Give your menu a name, then click Create Menu." +msgstr "Donnez à votre menu un nom, puis cliquez sur « Créer le menu »." + +#: wp-admin/nav-menus.php:1110 +msgid "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." +msgstr "Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications." + +#: wp-admin/plugin-editor.php:298 wp-admin/theme-editor.php:324 +msgid "Look Up" +msgstr "Consulter" + +#: wp-admin/plugin-editor.php:137 +msgid "The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." +msgstr "Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction." + +#: wp-admin/theme-editor.php:32 +msgid "For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." +msgstr "Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction." + +#. translators: %s: User's display name. +#: wp-admin/includes/class-wp-posts-list-table.php:1121 +#: wp-admin/includes/misc.php:1156 +msgid "%s is currently editing" +msgstr "%s modifie actuellement ce contenu" + +#: wp-admin/edit-form-advanced.php:361 +msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." +msgstr "Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la bibliothèque de médias, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie »." + +#: wp-admin/includes/image-edit.php:83 +msgid "Image rotation is not supported by your web host." +msgstr "La rotation d’image n’est pas disponible avec cet hébergeur." + +#. translators: %s: A link to install the Link Manager plugin. +#: wp-admin/includes/bookmark.php:355 +msgid "If you are looking to use the link manager, please install the Link Manager plugin." +msgstr "Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager." + +#: wp-admin/edit-form-advanced.php:367 +msgid "Inserting Media" +msgstr "Insertion du média" + +#: wp-admin/edit-form-advanced.php:374 +msgid "Several boxes on this screen contain settings for how your content will be published, including:" +msgstr "Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :" + +#: wp-admin/edit-tags.php:286 +msgid "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." +msgstr "Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente » ." + +#: wp-admin/edit-form-advanced.php:282 +msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." +msgstr "Le champ du titre et la zone d’édition de l’article sont inamovibles, mais vous pouvez déplacer toutes les autres blocs par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque boite. Utilisez l’onglet « Options de l’écran » pour masquer d’autres boites (Extrait, Envoyer des rétroliens, Champs personnalisés, Discussion, Identifiant, Auteur) ou pour choisir un affichage sur une ou deux colonnes pour cet écran." + +#: wp-admin/widgets-form.php:65 +msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." +msgstr "En changeant de thèmes, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des barres latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avec changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages." + +#: wp-admin/includes/class-custom-background.php:102 +msgid "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." +msgstr "Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre Bibliothèque de Médias en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps." + +#: wp-admin/includes/class-custom-image-header.php:139 +msgid "Do not forget to click “Save Changes” when you are done!" +msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !" + +#. translators: 1: URL to browser uploader, 2: Additional link attributes. +#: wp-admin/includes/media.php:3044 +msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." +msgstr "Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place." + +#: wp-admin/async-upload.php:77 +msgctxt "media item" +msgid "Edit" +msgstr "Modifier" + +#. translators: %s: Default text color. +#: wp-admin/includes/class-custom-image-header.php:795 +msgctxt "color" +msgid "Default: %s" +msgstr "Par défaut : %s" + +#: wp-admin/includes/class-wp-media-list-table.php:368 +#: wp-admin/includes/class-wp-media-list-table.php:402 +msgctxt "column name" +msgid "Uploaded to" +msgstr "Téléversé sur " + +#: wp-admin/includes/ajax-actions.php:2618 +#: wp-admin/includes/class-custom-background.php:542 +#: wp-admin/includes/class-custom-image-header.php:980 +msgid "The uploaded file is not a valid image. Please try again." +msgstr "Le fichier téléversé n’est pas une image valide. Veuillez réessayer." + +#: wp-admin/includes/class-custom-background.php:362 +msgid "Choose a Background Image" +msgstr "Choisir une image d’arrière-plan" + +#: wp-admin/includes/class-custom-image-header.php:683 +msgid "Choose a Custom Header" +msgstr "Choisir un en-tête personnalisé" + +#: wp-admin/includes/class-custom-background.php:103 +msgid "You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : #ff0000 pour du rouge) ou en cliquant sur le sélecteur de couleur." + +#: wp-admin/includes/class-custom-image-header.php:138 +msgid "In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Dans la section « Texte d’en-tête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : #ff0000 pour du rouge) ou en cliquant sur le sélecteur de couleur." + +#: wp-admin/edit-comments.php:221 +msgid "In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post." +msgstr "Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour n’ afficher que ceux qui sont liés à cet article." + +#. translators: Storage space that's been used. 1: Percentage of used space, 2: +#. Total space allowed in megabytes or gigabytes. +#: wp-admin/includes/ms.php:266 +msgid "Used: %1$s%% of %2$s" +msgstr "Taux d’utilisation : %1$s%% sur %2$s" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:370 +msgid "ID #%1$s: %2$s The current user will not be deleted." +msgstr "ID n°%1$s : %2$s L’utilisateur actuel ne sera pas supprimé." + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:383 wp-admin/users.php:550 +msgid "ID #%1$s: %2$s" +msgstr "ID n°%1$s : %2$s" + +#: wp-admin/users.php:345 +msgid "Please select an option." +msgstr "Veuillez choisir une option." + +#: wp-admin/includes/plugin-install.php:379 +msgid "If you have marked plugins as favorites on WordPress.org, you can browse them here." +msgstr "Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici." + +#: wp-admin/includes/plugin-install.php:383 wp-admin/theme-install.php:235 +msgid "Your WordPress.org username:" +msgstr "Votre identifiant WordPress.org :" + +#: wp-admin/install.php:202 wp-admin/install.php:210 +#: wp-admin/options-reading.php:223 wp-admin/options-reading.php:244 +msgid "Discourage search engines from indexing this site" +msgstr "Demander aux moteurs de recherche de ne pas indexer ce site" + +#: wp-admin/install.php:211 wp-admin/options-reading.php:245 +msgid "It is up to search engines to honor this request." +msgstr "Certains moteurs de recherche peuvent décider de l’indexer malgré tout." + +#: wp-admin/install.php:200 wp-admin/options-reading.php:221 +msgid "Allow search engines to index this site" +msgstr "Autoriser les moteurs de recherche à indexer ce site" + +#: wp-admin/plugin-install.php:114 +msgid "You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username." +msgstr "Vous pouvez voir les extensions favorites d’un utilisateur en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org." + +#: wp-admin/plugin-install.php:115 +msgid "If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin." +msgstr "Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Téléverser une extension ». Il vous sera demandé d’indiquer le fichier .zip à téléverser, et ceci fait, vous pourrez activer l’extension." + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1611 wp-admin/update-core.php:923 +msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." +msgstr "Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici." + +#: wp-admin/includes/plugin-install.php:385 wp-admin/theme-install.php:238 +msgid "Get Favorites" +msgstr "Récupérer les extensions favorites" + +#: wp-admin/includes/dashboard.php:2079 +msgid "Welcome to WordPress!" +msgstr "Bienvenue sur WordPress !" + +#: wp-admin/setup-config.php:445 +msgid "After you’ve done that, click “Run the installation”." +msgstr "Après cela, cliquez sur « Lancer l’installation »" + +#: wp-admin/includes/dashboard.php:400 +msgid "Search engines discouraged" +msgstr "Moteurs de recherche découragés" + +#. translators: Hidden accessibility text. +#: wp-admin/install.php:184 wp-admin/install.php:193 +#: wp-admin/options-reading.php:44 wp-admin/options-reading.php:208 +#: wp-admin/options-reading.php:216 +msgid "Search engine visibility" +msgstr "Visibilité par les moteurs de recherche" + +#: wp-admin/plugin-install.php:112 +msgid "If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag." +msgstr "Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur/autrice, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions." + +#. translators: 1: Link to documentation on child themes, 2: Name of parent +#. theme. +#: wp-admin/includes/class-wp-themes-list-table.php:284 +msgid "This child theme requires its parent theme, %2$s." +msgstr "Ce thème enfant nécessite son thème parent, %2$s." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:115 +msgctxt "Plugin Installer" +msgid "Favorites" +msgstr "Favorites" + +#: wp-admin/includes/widgets.php:264 +msgctxt "widget" +msgid "Add" +msgstr "Ajouter" + +#: wp-admin/includes/widgets.php:263 +msgctxt "widget" +msgid "Edit" +msgstr "Modifier" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:121 +msgid "Search by author" +msgstr "Recherche par auteur" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:104 +msgid "Type of search" +msgstr "Type de recherche" + +#: wp-admin/includes/class-wp-screen.php:1064 +msgid "Screen Options Tab" +msgstr "Onglet des options de l’écran" + +#: wp-admin/includes/class-wp-screen.php:873 +msgid "Contextual Help Tab" +msgstr "Onglet d’aide contextuelle" + +#: wp-admin/theme-install.php:131 +msgid "To install the theme so you can preview it with your site’s content and customize its theme options, click the \"Install\" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the \"Activate\" link, or by navigating to your Manage Themes screen and clicking the \"Live Preview\" link under any installed theme’s thumbnail image." +msgstr "Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualisation » situé sous la miniature de chaque thème." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:125 +msgid "Search by tag" +msgstr "Recherche par étiquette" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:117 +#: wp-admin/includes/theme-install.php:134 +msgid "Search by keyword" +msgstr "Recherche par mot-clé." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:918 +msgid "Select comment" +msgstr "Sélectionnez un commentaire" + +#: wp-admin/edit-tags.php:260 +msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." +msgstr "Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut." + +#. translators: Hidden accessibility text. %s: Link name. +#. translators: Hidden accessibility text. %s: Attachment title. +#. translators: Hidden accessibility text. %s: Plugin name. +#. translators: %s: Post title. +#. translators: Hidden accessibility text. %s: Email address. +#. translators: Hidden accessibility text. %s: Taxonomy term name. +#. translators: Hidden accessibility text. %s: User login. +#. translators: Hidden accessibility text. %s: Theme name. +#. translators: %s: Site URL. +#. translators: Hidden accessibility text. %s: Theme name +#: wp-admin/includes/class-wp-links-list-table.php:182 +#: wp-admin/includes/class-wp-media-list-table.php:427 +#: wp-admin/includes/class-wp-plugins-list-table.php:1101 +#: wp-admin/includes/class-wp-posts-list-table.php:1042 +#: wp-admin/includes/class-wp-privacy-requests-table.php:423 +#: wp-admin/includes/class-wp-terms-list-table.php:371 +#: wp-admin/includes/class-wp-users-list-table.php:532 +#: wp-admin/update-core.php:590 wp-admin/update-core.php:768 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:428 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:522 +#: wp-admin/includes/class-wp-ms-users-list-table.php:243 +msgid "Select %s" +msgstr "Sélectionner %s" + +#: wp-admin/menu-header.php:290 +msgid "Skip to main content" +msgstr "Aller au contenu principal" + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:652 +msgid "Tags can be selectively converted to categories using the tag to category converter." +msgstr "Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories" + +#: wp-admin/edit-form-advanced.php:324 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’Écran », et en ouvrant/fermant les blocs selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Texte, via les boutons « Plein Écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans le bloc « Attributs de Page » :" + +#: wp-admin/includes/class-custom-image-header.php:595 +msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." +msgstr "Vous pouvez choisir une image d’en-tête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre bibliothèque de médias. Après avoir sélectionné l’image, vous pourrez la recadrer." + +#: wp-admin/includes/class-custom-image-header.php:120 +msgid "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button." +msgstr "Vous pouvez utiliser une image d’en-tête personnalisée pour votre site. Téléversez simplement l’image, recadrez-la, et le nouvel en-tête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été téléversée dans votre Bibliothèque de Médias, en cliquant sur le bouton « Choisissez une image »." + +#: wp-admin/includes/class-custom-image-header.php:958 +msgid "Skip Cropping, Publish Image as Is" +msgstr "Aucun recadrage, utiliser l’image telle quelle" + +#: wp-admin/includes/class-custom-background.php:360 +#: wp-admin/includes/class-custom-image-header.php:680 +msgid "Or choose an image from your media library:" +msgstr "Ou choisissez une image dans votre bibliothèque de médias :" + +#: wp-admin/includes/class-custom-background.php:350 +#: wp-admin/includes/class-custom-image-header.php:593 +msgid "Select Image" +msgstr "Sélectionnez une image" + +#: wp-admin/includes/class-custom-background.php:363 +#: wp-admin/includes/class-custom-image-header.php:684 +msgid "Choose Image" +msgstr "Choisissez une image" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:404 +#: wp-admin/theme-install.php:604 +msgid "Collapse" +msgstr "Réduire" + +#: wp-admin/includes/class-custom-image-header.php:123 +msgid "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." +msgstr "Si vous ne souhaitez pas que votre site utilise une image d’en-tête, cliquez sur le bouton « Retirer l’image d’en-tête » en bas de la section « Image d’en-tête » de cette page. Si vous souhaitez réactiver l’image d’en-tête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications »." + +#: wp-admin/includes/plugin-install.php:1041 +msgctxt "plugin" +msgid "Installed" +msgstr "Installée" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:325 +#: wp-admin/includes/class-wp-theme-install-list-table.php:484 +msgid "This theme is already installed and is up to date" +msgstr "Ce thème est déjà installé et à jour" + +#: wp-admin/themes.php:180 +msgid "Previewing and Customizing" +msgstr "Aperçu et personnalisation" + +#: wp-admin/theme-install.php:136 +msgid "Previewing and Installing" +msgstr "Aperçu et installation" + +#: wp-admin/theme-install.php:130 +msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." +msgstr "Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème." + +#: wp-admin/includes/media.php:3061 +msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." +msgstr "Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclus la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-theme-install-list-table.php:345 +msgid "Preview %s" +msgstr "Aperçu de %s" + +#: wp-admin/tools.php:49 +msgid "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content." +msgstr "Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriqués. Parfois, des auteurs commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre." + +#: wp-admin/tools.php:50 +msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." +msgstr "Le lien « convertisseur de catégories et étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Activer l’extension & lancer l’importateur » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre." + +#: wp-admin/includes/class-custom-image-header.php:110 +msgid "This screen is used to customize the header section of your theme." +msgstr "Cet écran est utilisé pour personnaliser la section d’en-tête de votre thème." + +#: wp-admin/includes/class-custom-image-header.php:111 +msgid "You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed." +msgstr "Vous pouvez choisir à partir des images d’en-tête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan." + +#: wp-admin/includes/class-custom-image-header.php:122 +msgid "If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature." +msgstr "Si votre thème a plus d’une image d’en-tête par défaut, ou si vous avez téléversé plus d’une image d’en-tête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images téléversées » pour activer cette fonctionnalité." + +#. translators: %s: URL to General Settings screen. +#: wp-admin/includes/class-custom-image-header.php:134 +msgid "For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section." +msgstr "Pour la plupart des thèmes, le texte d’en-tête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux." + +#: wp-admin/includes/class-custom-image-header.php:121 +msgid "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button." +msgstr "Certains thèmes disposent d’une série d’images d’en-tête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications »." + +#: wp-admin/install.php:304 wp-admin/install.php:317 +msgid "Configuration Error" +msgstr "Erreur de configuration" + +#: wp-admin/media-new.php:55 +msgid "Revert to the Browser Uploader by clicking the link below the drag and drop box." +msgstr "Revenez à l’outil de téléversement du navigateur en cliquant sur le lien sous la zone de glisser-déposer." + +#: wp-admin/users.php:613 wp-admin/network/users.php:260 +msgid "User deleted." +msgstr "Utilisateur supprimé." + +#: wp-admin/includes/class-core-upgrader.php:36 wp-admin/includes/file.php:1747 +#: wp-admin/includes/file.php:1929 +msgid "Could not copy files. You may have run out of disk space." +msgstr "Impossible de copier les fichiers. Il se pourrait que vous manquiez de place." + +#: wp-admin/includes/theme-install.php:95 +msgid "Search for themes by keyword." +msgstr "Chercher un thème par mot-clé." + +#: wp-admin/includes/theme-install.php:153 +msgid "Find a theme based on specific features." +msgstr "Trouver un thème selon des critères précis." + +#: wp-admin/setup-config.php:205 +msgid "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" +msgstr "Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…" + +#: wp-admin/theme-editor.php:266 +msgid "This theme is broken." +msgstr "Le thème est cassé." + +#: wp-admin/includes/class-custom-background.php:363 +msgid "Set as background" +msgstr "Utiliser comme image de fond" + +#: wp-admin/includes/class-custom-image-header.php:684 +msgid "Set as header" +msgstr "Utiliser comme en-tête" + +#. translators: Hidden accessibility text. %s: Theme name. +#: wp-admin/includes/class-theme-upgrader-skin.php:94 +msgid "Customize “%s”" +msgstr "Personnaliser « %s »" + +#: wp-admin/edit-comments.php:399 wp-admin/edit-comments.php:413 +msgid "Edit comment" +msgstr "Modifier le commentaire" + +#: wp-admin/export.php:197 wp-admin/export.php:209 wp-admin/export.php:239 +#: wp-admin/export.php:261 wp-admin/export.php:291 +#: wp-admin/includes/class-wp-users-list-table.php:189 +msgid "All" +msgstr "Tout" + +#: wp-admin/includes/class-wp-plugins-list-table.php:472 +msgid "Plugin" +msgstr "Extension" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:519 +#: wp-admin/includes/class-wp-themes-list-table.php:278 +#: wp-admin/includes/plugin-install.php:669 +msgid "Version:" +msgstr "Version : " + +#: wp-admin/includes/media.php:1415 +msgid "Link URL" +msgstr "Adresse du lien" + +#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3005 +msgid "Enter a link URL or click above for presets." +msgstr "Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1421 +#: wp-admin/includes/nav-menu.php:811 wp-admin/includes/nav-menu.php:1106 +#: wp-admin/update-core.php:501 wp-admin/update-core.php:625 +#: wp-admin/update-core.php:677 wp-admin/update-core.php:801 +msgid "Select All" +msgstr "Tout sélectionner" + +#: wp-admin/link.php:112 +msgid "Edit Link" +msgstr "Modifier le lien" + +#. translators: %s: Number of words. +#: wp-admin/edit-form-advanced.php:640 +msgid "Word count: %s" +msgstr "Nombre de mots : %s" + +#: wp-admin/install.php:161 wp-admin/user-edit.php:492 +#: wp-admin/user-edit.php:540 wp-admin/user-new.php:529 +#: wp-admin/user-new.php:533 wp-admin/user-new.php:580 +#: wp-admin/user-new.php:600 +msgid "(required)" +msgstr "(nécessaire)" + +#: wp-admin/includes/meta-boxes.php:912 +msgid "No comments yet." +msgstr "Aucun commentaire pour l’instant." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:402 +#: wp-admin/theme-install.php:71 wp-admin/theme-install.php:602 +msgid "Collapse Sidebar" +msgstr "Réduire la colonne latérale" + +#: wp-admin/options-general.php:491 wp-admin/options-general.php:539 +msgid "Preview:" +msgstr "Aperçu :" + +#: wp-admin/credits.php:53 +msgid "https://wordpress.org/about/" +msgstr "https://fr.wordpress.org/about/" + +#: wp-admin/includes/meta-boxes.php:186 wp-admin/js/post.js:905 +msgid "Public, Sticky" +msgstr "Public, épinglé" + +#: wp-admin/includes/meta-boxes.php:109 wp-admin/includes/meta-boxes.php:154 +#: wp-admin/js/post.js:825 wp-admin/js/post.js:827 +msgid "Privately Published" +msgstr "Publié en privé" + +#: wp-admin/includes/meta-boxes.php:59 wp-admin/js/post.js:859 +msgid "Save as Pending" +msgstr "Mettre en attente" + +#: wp-admin/includes/user.php:213 +msgid "Error: This email is already registered. Please choose another one." +msgstr "Erreur : cet e-mail est déjà inscrit. Veuillez en choisir un autre." + +#: wp-admin/includes/class-wp-users-list-table.php:397 +#: wp-admin/includes/class-wp-ms-users-list-table.php:217 +msgid "E-mail" +msgstr "E-mail" + +#: wp-admin/includes/user.php:157 +msgid "Error: Please enter a nickname." +msgstr "Erreur : veuillez saisir un pseudonyme." + +#: wp-admin/includes/class-theme-upgrader.php:85 +msgid "This theme requires a parent theme. Checking if it is installed…" +msgstr "Ce thème nécessite un thème parent. Nous vérifions s’il est installé…" + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:87 +msgid "Preparing to install %1$s %2$s…" +msgstr "Préparation à l’installation de %1$s %2$s…" + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:89 +msgid "The parent theme, %1$s %2$s, is currently installed." +msgstr "Le thème parent, %1$s %2$s, est bien installé." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:91 +msgid "Successfully installed the parent theme, %1$s %2$s." +msgstr "Le thème parent, %1$s %2$s, a bien été installé." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-upgrader.php:93 +msgid "The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme." +msgstr "Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant." + +#: wp-admin/includes/class-custom-image-header.php:130 +#: wp-admin/includes/class-custom-image-header.php:759 +#: wp-admin/includes/class-custom-image-header.php:764 +msgid "Header Text" +msgstr "Texte de l’en-tête" + +#: wp-admin/includes/class-custom-image-header.php:767 +msgid "Show header text with your image." +msgstr "Afficher le texte d’en-tête avec l’image." + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#: wp-admin/includes/theme.php:255 wp-admin/includes/update.php:555 +#: wp-admin/includes/update.php:747 +msgid "There is a new version of %1$s available. View version %4$s details or update now." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour maintenant." + +#. translators: %s: Plugin author. +#: wp-admin/includes/plugin.php:215 +msgid "By %s." +msgstr "par %s" + +#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:508 +msgid "Add Comment" +msgstr "Ajouter un commentaire" + +#: wp-admin/includes/template.php:464 +msgid "Add New Comment" +msgstr "Ajouter un nouveau commentaire" + +#. Plugin Name of the plugin +#: hello.php +msgid "Hello Dolly" +msgstr "Hello Dolly" + +#. Author URI of the plugin +#: hello.php +msgid "http://ma.tt/" +msgstr "http://ma.tt/" + +#. Description of the plugin +#: hello.php +msgid "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page." +msgstr "Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration." + +#: wp-admin/index.php:78 +msgid "Welcome — Shows links for some of the most common tasks when setting up a new site." +msgstr "Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site." + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:242 wp-admin/includes/update.php:734 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème." + +#: wp-admin/install.php:108 wp-admin/install.php:368 +msgctxt "Howdy" +msgid "Welcome" +msgstr "Bienvenue" + +#: wp-admin/ms-delete-site.php:132 +msgid "Delete My Site Permanently" +msgstr "Effacer mon site définitivement" + +#: wp-admin/ms-delete-site.php:118 +msgid "Remember, once deleted your site cannot be restored." +msgstr "Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:113 +msgid "If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site." +msgstr "Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site." + +#: wp-admin/ms-delete-site.php:104 +msgid "Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked." +msgstr "Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:26 +msgid "Thank you for using %s, your site has been deleted. Happy trails to you until we meet again." +msgstr "Merci à vous d’avoir utilisé %s, votre site a été effacé. Nous espérons vous revoir." + +#: wp-admin/ms-delete-site.php:31 +msgid "Sorry, the link you clicked is stale. Please select another option." +msgstr "Désolé, mais le lien que vous avez cliqué est avarié. Veuillez sélectionner une autre option." + +#. translators: %s: Site address. +#: wp-admin/ms-delete-site.php:127 +msgid "I'm sure I want to permanently delete my site, and I am aware I can never get it back or use %s again." +msgstr "Je suis certain·e de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais récupérer ni utiliser %s pour un nouveau site." + +#: wp-admin/includes/ms.php:598 +msgid "Visit Dashboard" +msgstr "Se rendre sur le Tableau de bord" + +#: wp-admin/includes/ms.php:592 +msgid "Your Sites" +msgstr "Vos sites" + +#: wp-admin/includes/ms.php:590 +msgid "If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way." +msgstr "Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin." + +#. translators: 1: Site title. +#: wp-admin/includes/ms.php:578 wp-admin/includes/ms.php:587 +msgid "You attempted to access the \"%1$s\" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the \"%1$s\" dashboard, please contact your network administrator." +msgstr "Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur du réseau." + +#: wp-admin/includes/ms.php:316 +msgid "MB (Leave blank for network default)" +msgstr "Mo (Laisser vide pour utiliser la valeur par défaut du réseau)" + +#: wp-admin/includes/ms.php:646 +msgid "British English" +msgstr "Anglais (UK)" + +#: wp-admin/includes/ms.php:599 +msgid "View Site" +msgstr "Afficher le site" + +#: wp-admin/includes/ms.php:642 +msgid "American English" +msgstr "Anglais (US)" + +#. translators: My Sites label. +#: wp-admin/includes/ms.php:771 +msgid "Primary Site" +msgstr "Site principal" + +#. translators: New admin email address notification email subject. %s: Site +#. title. +#: wp-admin/includes/misc.php:1544 +msgid "[%s] New Admin Email Address" +msgstr "[%s] Nouvelle adresse e-mail d’administration" + +#: wp-admin/includes/class-wp-debug-data.php:204 +#: wp-admin/includes/class-wp-debug-data.php:214 +#: wp-admin/includes/class-wp-debug-data.php:223 +#: wp-admin/includes/class-wp-debug-data.php:232 +#: wp-admin/includes/class-wp-debug-data.php:283 +#: wp-admin/includes/class-wp-debug-data.php:288 +#: wp-admin/includes/class-wp-debug-data.php:298 +#: wp-admin/includes/class-wp-debug-data.php:303 +#: wp-admin/includes/class-wp-debug-data.php:328 +#: wp-admin/includes/class-wp-debug-data.php:568 +#: wp-admin/includes/class-wp-debug-data.php:1196 +#: wp-admin/includes/class-wp-debug-data.php:1282 +msgid "Disabled" +msgstr "Désactivé" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:556 +msgid "Paused (%s)" +msgid_plural "Paused (%s)" +msgstr[0] "Mis en pause (%s)" +msgstr[1] "Mises en pause (%s)" + +#: wp-admin/my-sites.php:86 +msgid "You must be a member of at least one site to use this page." +msgstr "Vous devez être membre d’au moins un site pour utiliser cette page." + +#: wp-admin/my-sites.php:127 +msgid "Global Settings" +msgstr "Réglages globaux" + +#: wp-admin/my-sites.php:33 +msgid "The primary site you chose does not exist." +msgstr "Le site principal que vous avez choisi n’existe pas." + +#: wp-admin/setup-config.php:111 +msgid "WordPress › Setup Configuration File" +msgstr "WordPress › Fichier de configuration" + +#: wp-admin/includes/class-wp-debug-data.php:907 wp-admin/setup-config.php:172 +msgid "Database name" +msgstr "Nom de la base de données" + +#: wp-admin/includes/class-wp-debug-data.php:895 wp-admin/setup-config.php:173 +msgid "Database username" +msgstr "Nom d’utilisateur MySQL" + +#: wp-admin/setup-config.php:174 +msgid "Database password" +msgstr "Mot de passe de l’utilisateur" + +#: wp-admin/includes/class-wp-debug-data.php:901 wp-admin/setup-config.php:175 +msgid "Database host" +msgstr "Adresse de la base de données" + +#: wp-admin/setup-config.php:176 +msgid "Table prefix (if you want to run more than one WordPress in a single database)" +msgstr "Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)" + +#: wp-admin/setup-config.php:207 +msgid "Let’s go!" +msgstr "C’est parti !" + +#: wp-admin/setup-config.php:229 +msgid "Database Name" +msgstr "Nom de la base de données" + +#: wp-admin/setup-config.php:235 +msgctxt "example username" +msgid "username" +msgstr "utilisateur" + +#: wp-admin/setup-config.php:242 +msgctxt "example password" +msgid "password" +msgstr "mot de passe" + +#: wp-admin/setup-config.php:252 +msgid "Database Host" +msgstr "Adresse de la base de données" + +#: wp-admin/setup-config.php:262 +msgid "Table Prefix" +msgstr "Préfixe des tables" + +#: wp-admin/setup-config.php:264 +msgid "If you want to run multiple WordPress installations in a single database, change this." +msgstr "Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage." + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:76 +msgid "The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Le fichier %1$s existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation maintenant." + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:63 +msgid "The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Le fichier %1$s existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer de lancer l’installation maintenant." + +#. translators: %s: wp-config-sample.php +#: wp-admin/setup-config.php:52 +msgid "Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation." +msgstr "Désolé, il est nécessaire de disposer d’un fichier %s à partir duquel travailler. Veuillez téléverser ce fichier à nouveau au sein de votre installation WordPress." + +#: wp-admin/setup-config.php:226 +msgid "Below you should enter your database connection details. If you are not sure about these, contact your host." +msgstr "Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur." + +#. translators: %s: wp-config.php +#: wp-admin/maint/repair.php:38 +msgid "To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page." +msgstr "Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page." + +#: wp-admin/includes/class-wp-comments-list-table.php:221 +msgid "No comments awaiting moderation." +msgstr "Aucun commentaire en attente de modération." + +#: wp-admin/includes/plugin-install.php:588 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Liste des modifications" + +#: wp-admin/includes/plugin-install.php:590 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Autres notes" + +#: wp-admin/includes/plugin-install.php:586 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: wp-admin/includes/plugin-install.php:585 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: wp-admin/includes/plugin-install.php:584 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Description" + +#: wp-admin/includes/plugin-install.php:587 +msgctxt "Plugin installer section title" +msgid "Screenshots" +msgstr "Captures d’écrans" + +#: wp-admin/includes/plugin-install.php:717 +msgid "Plugin Homepage »" +msgstr "Site Web de l’extension »" + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:129 +msgid "Failed to repair the %1$s table. Error: %2$s" +msgstr "Impossible de réparer la table %1$s. Erreur : %2$s" + +#: wp-admin/export.php:52 +msgid "You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status." +msgstr "Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une plate-forme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur donné, une catégorie précise, ou des états de publication." + +#: wp-admin/user-new.php:267 +msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." +msgstr "Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue." + +#: wp-admin/import.php:26 +msgid "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." +msgstr "Dans les versions précédentes de WordPress, tous les importateurs étaient directement inclus . Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois." + +#: wp-admin/users.php:47 +msgid "You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed." +msgstr "Vous pouvez filtrer la liste des utilisateurs par rôle, à l’aide des liens textuels au-dessus de la liste des utilisateurs, afin d’afficher tous les utilisateurs, ou seulement les administrateurs, les éditeurs, les auteurs ou les contributeurs. Par défaut, tous les utilisateurs sont affichés. Les rôles sans utilisateurs ne sont pas listés." + +#: wp-admin/includes/image-edit.php:329 +msgid "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor." +msgstr "Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’images." + +#: wp-admin/options-writing.php:35 +msgid "Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret." +msgstr "Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards." + +#: wp-admin/themes.php:264 +msgid "The active theme is broken. Reverting to the default theme." +msgstr "Le thème courant est endommagé. Retour au thème par défaut." + +#: wp-admin/includes/class-custom-image-header.php:915 +#: wp-admin/includes/class-custom-image-header.php:1074 +#: wp-admin/includes/class-custom-image-header.php:1420 +msgid "Image could not be processed. Please go back and try again." +msgstr "L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:119 +msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" +msgstr "La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…" + +#. translators: %s: URL to view the autosave. +#: wp-admin/edit-form-advanced.php:253 +msgid "There is an autosave of this post that is more recent than the version below. View the autosave" +msgstr "Une sauvegarde automatique existe pour cet article ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique." + +#: wp-admin/maint/repair.php:170 +msgid "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users." +msgstr "Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des utilisateurs non autorisés." + +#: wp-admin/maint/repair.php:182 +msgid "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient." +msgstr "WordPress peut automatiquement chercher les problèmes courants des base de données et les réparer. La réparation peut prendre un certain temps, merci donc de votre patience." + +#: wp-admin/maint/repair.php:186 +msgid "WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing." +msgstr "WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation." + +#: wp-admin/user-new.php:440 +msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Pour inviter un utilisateur de ce réseau sur ce site, saisissez son adresse de messagerie ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout." + +#: wp-admin/user-new.php:436 +msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Saisissez l’adresse de messagerie d’un utilisateur existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation." + +#: wp-admin/user-edit.php:368 +msgid "Show Toolbar when viewing site" +msgstr "Afficher la barre d’outils lorsque vous visitez le site" + +#. translators: %s: HelpHub URL. +#. translators: %s: Documentation URL. +#: wp-admin/about.php:63 wp-admin/about.php:88 wp-admin/about.php:113 +#: wp-admin/about.php:138 wp-admin/about.php:457 +msgid "For more information, see the release notes." +msgstr "Pour plus d’informations, consultez les notes de publication." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. +#. translators: 1: WordPress version number, 2: Plural number of bugs. Singular +#. security issue. +#: wp-admin/about.php:126 wp-admin/about.php:445 +msgid "Version %1$s addressed a security issue and fixed %2$s bug." +msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." +msgstr[0] "La version %1$s a corrigé un problème de sécurité et %2$s bug." +msgstr[1] "La version %1$s a corrigé un problème de sécurité et %2$s bugs." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. +#. translators: 1: WordPress version number, 2: Plural number of bugs. More +#. than one security issue. +#: wp-admin/about.php:51 wp-admin/about.php:451 +msgid "Version %1$s addressed some security issues and fixed %2$s bug." +msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." +msgstr[0] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bug." +msgstr[1] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bugs." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. +#: wp-admin/about.php:76 wp-admin/about.php:101 wp-admin/about.php:439 +msgid "Version %1$s addressed %2$s bug." +msgid_plural "Version %1$s addressed %2$s bugs." +msgstr[0] "La version %1$s a corrigé %2$s bug." +msgstr[1] "La version %1$s a corrigé %2$s bugs." + +#: wp-admin/about.php:37 wp-admin/contribute.php:34 wp-admin/credits.php:37 +#: wp-admin/freedoms.php:40 wp-admin/privacy.php:34 +msgid "What’s New" +msgstr "Nouveautés" + +#: wp-admin/about.php:46 wp-admin/about.php:430 +msgid "Maintenance and Security Release" +msgstr "Mise à jour de maintenance et de sécurité" + +#: wp-admin/about.php:427 +msgid "Security Release" +msgstr "Mise à jour de sécurité" + +#: wp-admin/about.php:424 +msgid "Maintenance Release" +msgstr "Mise à jour de maintenance" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:436 +msgid "Version %s addressed some security issues." +msgstr "La version %s a corrigé quelques problèmes de sécurité." + +#: wp-admin/options-permalink.php:25 +msgid "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." +msgstr "Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens." + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1619 wp-admin/update-core.php:931 +msgid "Welcome to WordPress %1$s. Learn more." +msgstr "Bienvenu dans WordPress %1$s. En savoir plus." + +#: wp-admin/edit-tags.php:296 +msgid "Adding Categories" +msgstr "Ajout de catégories" + +#: wp-admin/plugins.php:577 +msgid "Troubleshooting" +msgstr "Diagnostic" + +#: wp-admin/edit-tags.php:296 +msgid "Adding Tags" +msgstr "Ajout d’étiquettes" + +#: wp-admin/media-new.php:51 +msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" +msgstr "Vous pouvez ici téléverser des fichiers sans devoir créer un nouvel article avant. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :" + +#: wp-admin/user-new.php:274 +msgid "Remember to click the Add New User button at the bottom of this screen when you are finished." +msgstr "N’oubliez pas de cliquer sur le bouton « Ajouter un utilisateur », en bas de cet écran, quand vous aurez terminé." + +#: wp-admin/export.php:178 +msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site." +msgstr "Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site." + +#: wp-admin/upload.php:392 +msgid "Attaching Files" +msgstr "Fichiers des extensions" + +#: wp-admin/user-new.php:288 +msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" +msgstr "Voici un rapide survol des différents rôles assignables aux utilisateurs, et des permissions qui leurs sont associées :" + +#: wp-admin/user-new.php:287 +msgid "User Roles" +msgstr "Rôles utilisateurs" + +#: wp-admin/user-new.php:263 +msgid "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom." +msgstr "Pour ajouter un nouvel utilisateur à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un nouvel utilisateur » en bas de l’écran." + +#: wp-admin/edit-comments.php:216 +msgid "Moderating Comments" +msgstr "Modération des commentaires" + +#: wp-admin/user-new.php:290 +msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." +msgstr "Les abonnés peuvent lire les commentaires/commenter/recevoir les newsletters, etc. Mais ils ne peuvent pas créer du contenu sur le site." + +#. translators: %s: URL to Add Plugins screen. +#: wp-admin/import.php:234 +msgid "If the importer you need is not listed, search the plugin directory to see if an importer is available." +msgstr "Si l’importateur dont vous avec besoin n’est pas présent, lancez une recherche dans le dépôt d’extensions pour voir s’il s’y trouve." + +#: wp-admin/edit.php:274 wp-admin/upload.php:377 wp-admin/users.php:74 +msgid "Available Actions" +msgstr "Actions disponibles" + +#: wp-admin/update-core.php:1011 +msgid "How to Update" +msgstr "Comment faire la mise à jour" + +#: wp-admin/edit.php:254 +msgid "This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow." +msgstr "Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins." + +#: wp-admin/plugin-install.php:110 +msgid "Adding Plugins" +msgstr "Ajout d’extensions" + +#: wp-admin/edit.php:260 wp-admin/users.php:43 +msgid "Screen Content" +msgstr "Contenu de l’écran" + +#: wp-admin/edit.php:262 +msgid "You can customize the display of this screen’s contents in a number of ways:" +msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :" + +#: wp-admin/themes.php:164 +msgid "Adding Themes" +msgstr "Ajout de thèmes" + +#. translators: %s: URL to Import screen. +#: wp-admin/tools.php:78 +msgid "If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen." +msgstr "Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des importateurs." + +#: wp-admin/user-new.php:292 +msgid "Authors can publish and manage their own posts, and are able to upload files." +msgstr "Les auteurs peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers." + +#: wp-admin/edit.php:290 +msgid "You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply." +msgstr "Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action en cochant leurs cases, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer »." + +#: wp-admin/options-permalink.php:317 +msgid "Common Settings" +msgstr "Réglages les plus courants" + +#: wp-admin/options-permalink.php:53 +msgid "Custom Structures" +msgstr "Structure personnalisée" + +#: wp-admin/options-permalink.php:24 +msgid "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink." +msgstr "Les permaliens sont des adresses Web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien." + +#: wp-admin/options-writing.php:24 +msgid "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links." +msgstr "Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation." + +#: wp-admin/options-media.php:26 +msgid "Uploading Files allows you to choose the folder and path for storing your uploaded files." +msgstr "« Envoi de fichiers » vous permet de choisir le dossier et le chemin de stockage de vos fichiers téléversés." + +#: wp-admin/themes.php:152 +msgid "Installing themes on Multisite can only be done from the Network Admin section." +msgstr "En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau." + +#: wp-admin/options-writing.php:34 +msgid "Post Via Email" +msgstr "Envoi d’article par e-mail" + +#: wp-admin/options-writing.php:46 +msgid "If desired, WordPress will automatically alert various services of your new posts." +msgstr "Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications." + +#: wp-admin/options-discussion.php:25 +msgid "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does." +msgstr "Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. D’ailleurs, il y en a tellement qu’elles ne tiennent pas toutes ici :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage des commentaires." + +#: wp-admin/user-edit.php:60 +msgid "You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens." +msgstr "Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier la combinaison de couleurs des écrans de l’administration, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur la partie publique de votre site, mais elle ne peut pas être enlevée des écrans d’administration." + +#: wp-admin/widgets-form.php:94 +msgid "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar." +msgstr "Cette colonne latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement." + +#: wp-admin/widgets-form.php:91 +msgid "Inactive Sidebar (not used)" +msgstr "Colonne latérale inactive (inutilisée)" + +#: wp-admin/media-new.php:53 +msgid "Drag and drop your files into the area below. Multiple files are allowed." +msgstr "Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois." + +#: wp-admin/media-new.php:54 +msgid "Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen." +msgstr "Un clic sur Sélectionner les fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement." + +#: wp-admin/edit-tags.php:254 +msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." +msgstr "Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles." + +#: wp-admin/widgets-form.php:52 +msgid "Removing and Reusing" +msgstr "Retirer et réutiliser" + +#: wp-admin/widgets-form.php:62 +msgid "Missing Widgets" +msgstr "Widgets manquants" + +#: wp-admin/edit-tags.php:256 +msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." +msgstr "Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles." + +#: wp-admin/index.php:52 +msgid "Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information." +msgstr "Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress." + +#: wp-admin/link-manager.php:71 +msgid "Deleting Links" +msgstr "Suppression de liens" + +#: wp-admin/edit.php:319 +msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." +msgstr "La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière." + +#: wp-admin/edit-comments.php:223 +msgid "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more." +msgstr "De nombreux utilisateurs utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus." + +#: wp-admin/edit-form-advanced.php:323 wp-admin/edit.php:311 +msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." +msgstr "Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages." + +#: wp-admin/upload.php:394 +msgid "If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file." +msgstr "Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Attaché à », et vous pourrez cliquer sur le lien « Attacher » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier." + +#: wp-admin/upload.php:369 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen." +msgstr "Tous les fichiers que vous avez téléversés sont listés dans la Bibliothèque de Médias, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran." + +#: wp-admin/edit-comments.php:210 +msgid "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions." +msgstr "Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées »." + +#: wp-admin/edit.php:320 +msgid "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once." +msgstr "Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup." + +#: wp-admin/edit-comments.php:219 +msgid "In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address." +msgstr "Dans la colonne Auteur/autrice, en plus de trouver le nom de l’auteur ou de l’autrice, son adresse e-mail et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP." + +#: wp-admin/link-manager.php:64 +msgid "Links may be separated into Link Categories; these are different than the categories used on your posts." +msgstr "Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles." + +#. translators: 1: URL to About screen, 2: WordPress version. +#: wp-admin/update-core.php:292 +msgid "Learn more about WordPress %2$s." +msgstr "À propos de WordPress %2$s." + +#: wp-admin/edit.php:317 +msgid "Managing Pages" +msgstr "Gestion de pages" + +#: wp-admin/edit.php:281 +msgid "Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status." +msgstr "Aperçu vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de l’article. L’action disponible dépend de l’état de votre article." + +#: wp-admin/users.php:53 +msgid "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:" +msgstr "Passer la souris au-dessus d’une ligne de la liste des utilisateurs, fera s’afficher des liens vous permettant de gérer l’utilisateur. Vous pouvez lancer les actions suivantes :" + +#: wp-admin/edit.php:279 +msgid "Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen." +msgstr "Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste." + +#: wp-admin/edit.php:278 +msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." +msgstr "Modifier vous envoie sur l’écran de modification de cet article. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de l’article." + +#: wp-admin/users.php:48 +msgid "You can view all posts made by a user by clicking on the number under the Posts column." +msgstr "Vous pouvez afficher tous les articles faits par un même utilisateur en cliquant sur le nombre sous la colonne « Articles »." + +#: wp-admin/users.php:46 +msgid "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab." +msgstr "Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre d’articles à afficher par écran à l’aide de l’onglet « Options de l’écran »." + +#: wp-admin/users.php:55 +msgid "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username." +msgstr "« Modifier » vous envoie sur l’écran de modification de cet utilisateur. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom de l’utilisateur." + +#: wp-admin/edit.php:280 +msgid "Trash removes your post from this list and places it in the Trash, from which you can permanently delete it." +msgstr "Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement." + +#: wp-admin/user-new.php:266 +msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." +msgstr "Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un nom d’utilisateur ou une adresse de messagerie, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur pour modifier son profil utilisateur, depuis l’écran « Tous les utilisateurs »." + +#. translators: %s: Version number. +#: wp-admin/about.php:156 +msgid "Welcome to WordPress %s" +msgstr "Bienvenue sur WordPress %s." + +#: wp-admin/about.php:411 +msgid "Go to Dashboard → Home" +msgstr "Aller sur l’accueil" + +#: wp-admin/about.php:404 +msgid "Go to Dashboard → Updates" +msgstr "Aller sur Tableau de bord → Mises à jour" + +#: wp-admin/user-edit.php:216 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#. translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. +#: wp-admin/user-new.php:122 +msgid "" +"Hi,\n" +"\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"\n" +"Please click the following link to confirm the invite:\n" +"%4$s" +msgstr "" +"Bonjour,\n" +"\n" +"Vous avez été invité·e à rejoindre « %1$s » sur\n" +"%2$s en tant que %3$s. \n" +"Veuillez cliquer sur le lien suivant pour confirmer l’invitation :\n" +"%4$s" + +#: wp-admin/credits.php:136 +msgid "Core Developer" +msgstr "Développeur cœur" + +#: wp-admin/includes/class-wp-upgrader.php:204 +msgid "The package could not be installed." +msgstr "L’archive n’a pas pu être installée." + +#: wp-admin/includes/class-plugin-upgrader.php:82 +msgid "The plugin contains no files." +msgstr "Cette extension ne contient aucun fichier." + +#: wp-admin/includes/class-plugin-upgrader.php:492 +msgid "No valid plugins were found." +msgstr "Aucune extension valide trouvée." + +#: wp-admin/includes/media.php:1290 +msgid "Attachment Post URL" +msgstr "Adresse de l’article du fichier joint" + +#: wp-admin/menu.php:80 +msgctxt "admin menu" +msgid "All Links" +msgstr "Tous les liens" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:302 +msgid "%s plugins" +msgstr "%s extensions" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:300 +msgid "%s plugin" +msgstr "%s extension" + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:148 +msgid "Successfully optimized the %s table." +msgstr "La table %s a bien été optimisée." + +#. translators: 1: Table name. 2: Error message. +#: wp-admin/maint/repair.php:151 +msgid "Failed to optimize the %1$s table. Error: %2$s" +msgstr "Impossible d’optimiser la table %1$s. Erreur : %2$s" + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:126 +msgid "Successfully repaired the %s table." +msgstr "La table %s a bien été réparée." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:141 +msgid "The %s table is already optimized." +msgstr "La table %s a déjà été optimisée." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:116 +msgid "The %s table is okay." +msgstr "La table %s est correcte." + +#. translators: %s: Plugin version. +#: wp-admin/update-core.php:577 +msgid "View version %s details." +msgstr "Afficher les détails de la version %s." + +#: wp-admin/includes/import.php:220 +msgid "Tumblr" +msgstr "Tumblr" + +#. translators: 1: Browser update URL, 2: Browser name, 3: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1763 +msgid "Update %2$s or learn how to browse happy" +msgstr "Mettez %2$s à jour, ou apprenez à naviguer sereinement" + +#. translators: 1: Link start tag, 2: Link end tag, 3: Width, 4: Height. +#: wp-admin/includes/media.php:3093 +msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." +msgstr "Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d)." + +#: wp-admin/includes/media.php:2953 +msgid "Audio, Video, or Other File" +msgstr "Audio, vidéo ou un autre format" + +#: wp-admin/includes/media.php:2422 +msgid "Insert media from another website" +msgstr "Insérer un média depuis un autre site" + +#: wp-admin/includes/file.php:2513 +msgid "Error: Could not connect to the server. Please verify the settings are correct." +msgstr "Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects." + +#: wp-admin/index.php:51 +msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." +msgstr "La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichant au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu." + +#: wp-admin/index.php:62 +msgid "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well." +msgstr "Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord pour afin de se plier à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière." + +#: wp-admin/comment.php:62 wp-admin/edit-comments.php:208 +#: wp-admin/edit-form-advanced.php:344 wp-admin/edit-link-form.php:66 +#: wp-admin/edit-tags.php:268 wp-admin/edit.php:252 wp-admin/edit.php:309 +#: wp-admin/erase-personal-data.php:23 wp-admin/export-personal-data.php:23 +#: wp-admin/export.php:51 wp-admin/import.php:24 +#: wp-admin/includes/class-custom-background.php:99 +#: wp-admin/includes/class-custom-image-header.php:108 +#: wp-admin/includes/class-wp-screen.php:856 wp-admin/includes/ms.php:1149 +#: wp-admin/index.php:44 wp-admin/link-manager.php:57 wp-admin/media-new.php:49 +#: wp-admin/my-sites.php:44 wp-admin/nav-menus.php:718 +#: wp-admin/nav-menus.php:759 wp-admin/options-discussion.php:24 +#: wp-admin/options-general.php:53 wp-admin/options-media.php:34 +#: wp-admin/options-permalink.php:23 wp-admin/options-privacy.php:38 +#: wp-admin/options-reading.php:25 wp-admin/options-writing.php:23 +#: wp-admin/plugin-editor.php:133 wp-admin/plugin-install.php:96 +#: wp-admin/plugins.php:563 wp-admin/revision.php:151 +#: wp-admin/site-health.php:80 wp-admin/theme-editor.php:28 +#: wp-admin/theme-install.php:124 wp-admin/themes.php:143 +#: wp-admin/update-core.php:996 wp-admin/upload.php:177 wp-admin/upload.php:367 +#: wp-admin/user-edit.php:70 wp-admin/user-new.php:279 wp-admin/users.php:34 +#: wp-admin/widgets-form.php:43 wp-admin/network/index.php:34 +#: wp-admin/network/settings.php:49 wp-admin/network/site-new.php:23 +#: wp-admin/network/sites.php:29 wp-admin/network/themes.php:312 +#: wp-admin/network/upgrade.php:22 wp-admin/network/user-new.php:20 +#: wp-admin/network/users.php:229 +msgid "Overview" +msgstr "Vue d’ensemble" + +#: wp-admin/index.php:64 +msgid "Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box." +msgstr "Glisser/déposer - Pour réarranger les blocs, glissez/déposez-les en cliquant sur la barre de titre du bloc sélectionné, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer le bloc." + +#. translators: %s: Number of pending updates. +#. translators: %s: Number of available updates. +#: wp-admin/menu.php:49 wp-admin/network/menu.php:30 +msgid "Updates %s" +msgstr "Mises à jour %s" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:564 +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Prête à mettre à jour (%s)" +msgstr[1] "Prêtes à mettre à jour (%s)" + +#: wp-admin/comment.php:174 wp-admin/plugins.php:346 wp-admin/plugins.php:360 +#: wp-admin/theme-editor.php:332 wp-admin/includes/network.php:490 +#: wp-admin/network/themes.php:140 wp-admin/network/themes.php:151 +msgid "Caution:" +msgstr "Attention :" + +#: wp-admin/menu.php:331 wp-admin/menu.php:333 wp-admin/menu.php:341 +#: wp-admin/menu.php:343 wp-admin/user-edit.php:263 wp-admin/user-new.php:255 +#: wp-admin/user-new.php:377 wp-admin/user-new.php:501 +#: wp-admin/user-new.php:653 wp-admin/users.php:781 +#: wp-admin/network/menu.php:57 wp-admin/network/site-users.php:350 +#: wp-admin/network/site-users.php:377 wp-admin/network/user-new.php:100 +#: wp-admin/network/user-new.php:107 wp-admin/network/users.php:292 +msgid "Add New User" +msgstr "Ajouter un utilisateur" + +#: wp-admin/menu.php:307 wp-admin/network/menu.php:105 +msgid "Installed Plugins" +msgstr "Extensions installées" + +#: wp-admin/includes/class-wp-plugins-list-table.php:805 +#: wp-admin/includes/class-wp-plugins-list-table.php:895 +#: wp-admin/includes/class-wp-plugins-list-table.php:912 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:770 +msgid "Deactivate" +msgstr "Désactiver" + +#. translators: %s: Plugin version. +#. translators: %s: Plugin version number. +#. translators: %s: Theme version number. +#. translators: %s: WordPress version. +#. translators: %s: Theme version. +#: wp-admin/includes/ajax-actions.php:4636 +#: wp-admin/includes/ajax-actions.php:4679 +#: wp-admin/includes/class-wp-debug-data.php:963 +#: wp-admin/includes/class-wp-debug-data.php:1010 +#: wp-admin/includes/class-wp-debug-data.php:1332 +#: wp-admin/includes/class-wp-plugins-list-table.php:1167 +#: wp-admin/includes/update.php:249 wp-admin/includes/update.php:292 +#: wp-admin/index.php:113 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:725 +msgid "Version %s" +msgstr "Version %s" + +#: wp-admin/user-new.php:368 wp-admin/network/site-users.php:243 +#: wp-admin/network/user-new.php:91 wp-admin/network/users.php:272 +msgid "User added." +msgstr "Utilisateur ajouté." + +#: wp-admin/includes/class-wp-users-list-table.php:455 +#: wp-admin/user-edit.php:470 +#: wp-admin/includes/class-wp-ms-users-list-table.php:287 +msgid "Super Admin" +msgstr "Super-admin" + +#: wp-admin/my-sites.php:60 wp-admin/options-head.php:15 +#: wp-admin/options.php:363 wp-admin/network/settings.php:142 +#: wp-admin/network/sites.php:356 +msgid "Settings saved." +msgstr "Options enregistrées." + +#: wp-admin/users.php:674 wp-admin/network/site-users.php:256 +msgid "Changed roles." +msgstr "Rôles modifiés." + +#: wp-admin/users.php:720 wp-admin/network/site-users.php:263 +msgid "User removed from this site." +msgstr "Utilisateur supprimé de ce site." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:497 wp-admin/includes/dashboard.php:501 +#: wp-admin/users.php:808 wp-admin/network/site-users.php:292 +#: wp-admin/network/users.php:312 +msgid "Search Users" +msgstr "Chercher un utilisateur" + +#: wp-admin/user-edit.php:265 wp-admin/user-new.php:379 +#: wp-admin/user-new.php:433 wp-admin/user-new.php:494 wp-admin/users.php:787 +#: wp-admin/network/site-users.php:316 +msgid "Add Existing User" +msgstr "Ajouter un utilisateur existant" + +#: wp-admin/includes/class-wp-users-list-table.php:376 +#: wp-admin/user-edit.php:445 wp-admin/user-new.php:464 +#: wp-admin/user-new.php:625 wp-admin/network/site-users.php:325 +#: wp-admin/network/site-users.php:363 +msgid "Role" +msgstr "Rôle" + +#: wp-admin/comment.php:70 wp-admin/edit-comments.php:228 +#: wp-admin/edit-form-advanced.php:318 wp-admin/edit-form-advanced.php:335 +#: wp-admin/edit-form-advanced.php:354 wp-admin/edit-link-form.php:75 +#: wp-admin/edit-tags.php:302 wp-admin/edit.php:300 wp-admin/edit.php:325 +#: wp-admin/erase-personal-data.php:64 wp-admin/export-personal-data.php:64 +#: wp-admin/export.php:58 wp-admin/import.php:31 +#: wp-admin/includes/class-custom-background.php:109 +#: wp-admin/includes/class-custom-image-header.php:144 +#: wp-admin/includes/ms.php:1171 wp-admin/index.php:131 +#: wp-admin/link-manager.php:78 wp-admin/media-new.php:60 +#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:766 +#: wp-admin/options-discussion.php:31 wp-admin/options-general.php:59 +#: wp-admin/options-media.php:40 wp-admin/options-permalink.php:59 +#: wp-admin/options-privacy.php:46 wp-admin/options-reading.php:52 +#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:150 +#: wp-admin/plugin-install.php:120 wp-admin/plugins.php:606 +#: wp-admin/revision.php:156 wp-admin/site-health.php:89 +#: wp-admin/theme-editor.php:51 wp-admin/theme-install.php:155 +#: wp-admin/themes.php:206 wp-admin/tools.php:55 wp-admin/update-core.php:1052 +#: wp-admin/upload.php:197 wp-admin/upload.php:399 wp-admin/user-edit.php:76 +#: wp-admin/user-new.php:300 wp-admin/users.php:81 wp-admin/widgets-form.php:70 +#: wp-admin/network.php:67 wp-admin/network.php:80 +#: wp-admin/network/index.php:55 wp-admin/network/settings.php:63 +#: wp-admin/network/site-new.php:31 wp-admin/network/sites.php:45 +#: wp-admin/network/themes.php:337 wp-admin/network/upgrade.php:31 +#: wp-admin/network/user-new.php:28 wp-admin/network/users.php:241 +msgid "For more information:" +msgstr "Plus d’informations :" + +#: wp-admin/menu.php:329 wp-admin/network/menu.php:56 +msgid "All Users" +msgstr "Tous les utilisateurs" + +#. translators: %s: Number of available plugin updates. +#: wp-admin/menu.php:305 wp-admin/network/menu.php:88 +msgid "Plugins %s" +msgstr "Extensions %s" + +#: wp-admin/menu.php:381 wp-admin/ms-delete-site.php:39 +msgid "Delete Site" +msgstr "Supprimer le site" + +#: wp-admin/includes/ms.php:997 wp-admin/users.php:444 +msgid "Confirm Deletion" +msgstr "Confirmer cette action" + +#: wp-admin/edit-form-advanced.php:329 +msgid "About Pages" +msgstr "À propos des pages" + +#: wp-admin/edit-form-advanced.php:287 +msgid "Customizing This Display" +msgstr "Personnaliser cet écran" + +#: wp-admin/edit-form-advanced.php:307 +msgid "Title and Post Editor" +msgstr "Titre et éditeur d’article" + +#: wp-admin/options-reading.php:224 +msgid "Note: Neither of these options blocks access to your site — it is up to search engines to honor your request." +msgstr "Note : Aucune de ses options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande." + +#: wp-admin/options-permalink.php:270 +msgid "Post name" +msgstr "Nom de l’article" + +#: wp-admin/options-permalink.php:254 wp-admin/options-permalink.php:260 +#: wp-admin/options-permalink.php:272 +msgctxt "sample permalink structure" +msgid "sample-post" +msgstr "exemple-article" + +#: wp-admin/options-permalink.php:265 wp-admin/options-permalink.php:266 +msgctxt "sample permalink base" +msgid "archives" +msgstr "archives" + +#. translators: %s: URL to Import screen on the main site. +#: wp-admin/import.php:171 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Cet importateur n’est pas installé. Veuillez installer les importateurs depuis le site principal." + +#: wp-admin/includes/class-wp-debug-data.php:76 +#: wp-admin/options-general.php:309 wp-admin/network/site-new.php:250 +msgid "Site Language" +msgstr "Langue du site" + +#: wp-admin/options-discussion.php:56 +msgid "Attempt to notify any blogs linked to from the post" +msgstr "Tenter de notifier les sites liés depuis la publication" + +#. translators: 1: Site title, 2: Site URL, 3: User role. +#: wp-admin/includes/user.php:620 +msgid "" +"Hi,\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"If you do not want to join this site please ignore\n" +"this email. This invitation will expire in a few days.\n" +"\n" +"Please click the following link to activate your user account:\n" +"%%s" +msgstr "" +"Bonjour,\n" +"Vous avez été invité·e à rejoindre « %1$s » sur\n" +"%2$s en tant que %3$s. \n" +"Si vous ne souhaitez pas rejoindre ce site, veuillez ignorer\n" +"cet e-mail. L’invitation expirera dans quelques jours.\n" +"\n" +"Veuillez cliquer sur le lien suivant pour activer votre compte utilisateur :\n" +"%%s" + +#: wp-admin/includes/theme.php:343 +msgid "Full Width Template" +msgstr "Modèle pleine largeur" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:537 wp-admin/includes/theme.php:344 +msgid "Post Formats" +msgstr "Format d’article" + +#: wp-admin/includes/theme.php:340 +msgid "Featured Images" +msgstr "Images mises en avant" + +#: wp-admin/includes/theme.php:339 +msgid "Featured Image Header" +msgstr "Image d’en-tête mise en avant" + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1734 +msgid "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." +msgstr "Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur." + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1728 +msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." +msgstr "Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur." + +#: wp-admin/includes/nav-menu.php:1303 +msgid "There are some invalid menu items. Please check or delete them." +msgstr "Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer." + +#: wp-admin/edit-tag-form.php:149 wp-admin/edit-tags.php:460 +#: wp-admin/includes/class-wp-terms-list-table.php:192 +#: wp-admin/includes/class-wp-terms-list-table.php:219 +#: wp-admin/includes/class-wp-terms-list-table.php:695 +msgctxt "term name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/includes/template.php:592 wp-admin/includes/template.php:607 +#: wp-admin/includes/template.php:742 +msgctxt "meta name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/themes.php:665 +msgctxt "theme name" +msgid "Name" +msgstr "Nom" + +#. translators: %s: Theme Directory URL. +#: wp-admin/theme-install.php:110 +msgid "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses." +msgstr "Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress." + +#. translators: %s: WordPress Plugin Directory URL. +#: wp-admin/plugins.php:569 +msgid "If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!" +msgstr "Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le dépôt d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du dépôt sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !" + +#. translators: %s: MAX_FILE_SIZE +#: wp-admin/includes/file.php:898 +msgid "The uploaded file exceeds the %s directive that was specified in the HTML form." +msgstr "La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML." + +#: wp-admin/credits.php:137 +msgid "External Libraries" +msgstr "Bibliothèques tierces" + +#: wp-admin/menu.php:373 +msgid "Available Tools" +msgstr "Outils disponibles" + +#: wp-admin/menu.php:384 wp-admin/network.php:53 wp-admin/network/menu.php:112 +msgid "Network Setup" +msgstr "Création du réseau" + +#: wp-admin/includes/credits.php:104 +msgctxt "Translate this to be the equivalent of English Translators in your language for the credits page Translators section" +msgid "Translators" +msgstr "Traducteurs" + +#. translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: +#. https://wordpress.org/about/license +#: wp-admin/freedoms.php:100 +msgid "Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them." +msgstr "Tous les thèmes et extensions disponibles sur le répertoire WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y rechercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien que la licence GPL est respectée. Si cela n’est pas le cas, il vaut mieux ne pas l’utiliser." + +#. translators: %s: https://wordpressfoundation.org/trademark-policy +#: wp-admin/freedoms.php:88 +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first." +msgstr "WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation de la marque déposée « WordPress »." + +#: wp-admin/credits.php:132 +msgid "Lead Developer" +msgstr "Développeur principal" + +#: wp-admin/about.php:38 wp-admin/contribute.php:35 wp-admin/credits.php:14 +#: wp-admin/credits.php:38 wp-admin/freedoms.php:41 wp-admin/privacy.php:35 +msgid "Credits" +msgstr "Crédits" + +#: wp-admin/widgets-form.php:449 +msgctxt "removing-widget" +msgid "Deactivate" +msgstr "Désactiver" + +#: wp-admin/credits.php:131 +msgid "Cofounder, Project Lead" +msgstr "Cofondateur, chef de projet" + +#: wp-admin/menu.php:107 +msgid "All Comments" +msgstr "Tous les commentaires" + +#: wp-admin/credits.php:127 +msgid "Project Leaders" +msgstr "Chefs de projet" + +#. translators: %s: The current WordPress version number. +#: wp-admin/credits.php:129 +msgid "Core Contributors to WordPress %s" +msgstr "Contributrices & contributeurs au cœur de WordPress %s" + +#: wp-admin/includes/dashboard.php:35 +msgid "You are using an insecure browser!" +msgstr "Vous utilisez un navigateur peu sûr !" + +#: wp-admin/includes/dashboard.php:37 +msgid "Your browser is out of date!" +msgstr "Votre navigateur est obsolète !" + +#: wp-admin/about.php:39 wp-admin/contribute.php:36 wp-admin/credits.php:39 +#: wp-admin/freedoms.php:19 wp-admin/freedoms.php:42 wp-admin/privacy.php:36 +msgid "Freedoms" +msgstr "Libertés" + +#: wp-admin/includes/class-custom-image-header.php:717 +msgid "You can use one of these cool headers or show a random one on each page." +msgstr "Vous pouvez choisir parmi ces en-têtes, ou en afficher un aléatoirement à chaque chargement de page." + +#: wp-admin/includes/class-custom-image-header.php:701 +msgid "You can choose one of your previously uploaded headers, or show a random one." +msgstr "Vous pouvez choisir un en-tête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement." + +#: wp-admin/includes/class-custom-image-header.php:715 +msgid "If you do not want to upload your own image, you can use one of these cool headers, or show a random one." +msgstr "Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’un de ces en-têtes, ou en afficher un aléatoirement." + +#: wp-admin/menu-header.php:283 +msgid "Collapse menu" +msgstr "Réduire le menu" + +#: wp-admin/includes/class-custom-image-header.php:325 +msgid "Random: Show a different image on each page." +msgstr "Aléatoire  : affiche une image différente sur chaque page." + +#: wp-admin/includes/class-custom-image-header.php:699 +msgid "Uploaded Images" +msgstr "Images téléversées" + +#: wp-admin/users.php:354 +msgid "You have specified this user for deletion:" +msgstr "Vous avez choisi de supprimer cet utilisateur :" + +#. translators: %s: Template name. +#: wp-admin/includes/file.php:93 +msgid "%s Page Template" +msgstr "Modèle de page %s" + +#: wp-admin/plugins.php:346 +msgid "This plugin may be active on other sites in the network." +msgstr "Cette extension peut uniquement être activée sur l’ensemble des sites du réseau." + +#: wp-admin/includes/ajax-actions.php:4741 wp-admin/plugins.php:654 +msgid "You cannot delete a plugin while it is active on the main site." +msgstr "Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal." + +#: wp-admin/options-writing.php:106 +msgid "Default Post Format" +msgstr "Format par défaut des articles" + +#: wp-admin/plugin-editor.php:145 wp-admin/theme-editor.php:46 +msgid "Any edits to files from this screen will be reflected on all sites in the network." +msgstr "Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau." + +#: wp-admin/index.php:75 +msgid "The boxes on your Dashboard screen are:" +msgstr "Les blocs de l’écran du tableau de bord sont :" + +#: wp-admin/users.php:35 +msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." +msgstr "Cet écran liste tous les utilisateurs actuels de votre site. Chaque utilisateur a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur du site : Administrateur, Éditeur, Auteur, Contributeur ou Abonné. Les utilisateurs avec un rôle autre qu’Administrateur verront moins d’options quand ils seront connectés, en fonction de leur rôle." + +#: wp-admin/plugin-editor.php:144 +msgid "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." +msgstr "Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre." + +#. translators: Default page slug. +#: wp-admin/includes/upgrade.php:329 +msgid "sample-page" +msgstr "page-d-exemple" + +#: wp-admin/includes/upgrade.php:327 +msgid "Sample Page" +msgstr "Page d’exemple" + +#: wp-admin/options-discussion.php:323 +msgid "Retro (Generated)" +msgstr "Rétro (généré)" + +#. translators: 1: URL to Themes tab on Edit Site screen, 2: URL to Add Themes +#. screen. +#: wp-admin/includes/class-wp-themes-list-table.php:101 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes." +msgstr "Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes." + +#. translators: %s: URL to Themes tab on Edit Site screen. +#: wp-admin/includes/class-wp-themes-list-table.php:110 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes." +msgstr "Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes." + +#: wp-admin/user-edit.php:475 +msgid "Super admin privileges cannot be removed because this user has the network admin email." +msgstr "Les privilèges de super-admin ne peuvent pas être enlevés, car cet utilisateur est celui avec l’adresse de messagerie administrative du réseau." + +#. translators: %s: URL to Add Themes screen. +#: wp-admin/includes/class-wp-themes-list-table.php:121 +msgid "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above." +msgstr "Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus." + +#: wp-admin/maint/repair.php:180 +msgid "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient." +msgstr "Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient." + +#: wp-admin/includes/file.php:56 +msgid "Visual Editor RTL Stylesheet" +msgstr "Feuille de style de l’éditeur visuel (lecture de droite à gauche)" + +#. translators: %s: Link to edit parent theme. +#: wp-admin/theme-editor.php:282 +msgid "This child theme inherits templates from a parent theme, %s." +msgstr "Ce thème enfant hérite de certains modèles de son thème parent, %s." + +#: wp-admin/theme-editor.php:333 +msgid "This is a file in your current parent theme." +msgstr "Ceci est un fichier de votre thème parent actuel." + +#: wp-admin/includes/class-theme-installer-skin.php:150 +#: wp-admin/js/updates.js:1795 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:467 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:589 +msgid "Network Enable" +msgstr "Activer sur le réseau" + +#: wp-admin/upgrade.php:154 +msgid "Your WordPress database has been successfully updated!" +msgstr "La base de données de WordPress a bien été mise à jour !" + +#: wp-admin/upgrade.php:143 +msgid "Update WordPress Database" +msgstr "Mettre à jour la base de données de WordPress" + +#: wp-admin/upgrade.php:65 +msgid "WordPress › Update" +msgstr "WordPress › Mise à jour" + +#: wp-admin/upgrade.php:153 +msgid "Update Complete" +msgstr "Mise à jour terminée" + +#: wp-admin/upgrade.php:142 wp-admin/network/upgrade.php:144 +msgid "The database update process may take a little while, so please be patient." +msgstr "Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience." + +#: wp-admin/upgrade.php:73 +msgid "No Update Required" +msgstr "Aucune mise à jour nécessaire" + +#: wp-admin/upgrade.php:140 wp-admin/network/upgrade.php:140 +msgid "Database Update Required" +msgstr "Mise à jour de la base de données nécessaire" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:188 +msgid "You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released." +msgstr "Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que cette version soit officiellement traduite dans votre langue." + +#: wp-admin/includes/class-plugin-upgrader.php:65 +#: wp-admin/includes/class-plugin-upgrader.php:92 +msgid "Plugin updated successfully." +msgstr "L’extension a bien été mise à jour." + +#: wp-admin/includes/class-theme-upgrader-skin.php:44 wp-admin/update.php:219 +msgid "Update Theme" +msgstr "Mettre à jour le thème" + +#: wp-admin/includes/ajax-actions.php:4698 +#: wp-admin/includes/class-plugin-upgrader.php:64 +#: wp-admin/includes/class-plugin-upgrader.php:91 +msgid "Plugin update failed." +msgstr "La mise à jour de l’extension a échoué." + +#: wp-admin/includes/ajax-actions.php:4357 +#: wp-admin/includes/class-theme-upgrader.php:63 +#: wp-admin/includes/class-theme-upgrader.php:100 +msgid "Theme update failed." +msgstr "La mise à jour du thème a échoué." + +#: wp-admin/includes/class-theme-upgrader.php:64 +#: wp-admin/includes/class-theme-upgrader.php:101 +msgid "Theme updated successfully." +msgstr "Le thème a bien été mis à jour." + +#: wp-admin/includes/class-plugin-upgrader-skin.php:62 wp-admin/update.php:63 +msgid "Update Plugin" +msgstr "Mettre à jour l’extension" + +#: wp-admin/includes/class-core-upgrader.php:31 +#: wp-admin/includes/class-language-pack-upgrader.php:115 +#: wp-admin/includes/class-plugin-upgrader.php:58 +#: wp-admin/includes/class-theme-upgrader.php:57 +msgid "Update package not available." +msgstr "Aucune archive de mise à jour disponible." + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/update.php:541 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension." + +#. translators: Hidden accessibility text. +#: wp-admin/export.php:221 wp-admin/export.php:273 wp-admin/export.php:318 +msgid "Date range:" +msgstr "Date de création :" + +#: wp-admin/export.php:180 +msgid "Choose what to export" +msgstr "Choisissez ce que vous souhaitez exporter" + +#: wp-admin/export.php:190 +msgid "All content" +msgstr "Tout le contenu" + +#: wp-admin/export.php:191 +msgid "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts." +msgstr "Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de contenus personnalisés." + +#: wp-admin/export.php:201 wp-admin/export.php:253 +msgid "Authors:" +msgstr "Auteurs :" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:249 +msgctxt "comments" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Le mien (%s)" +msgstr[1] "Les miens (%s)" + +#. translators: Admin screen title. %s: Admin screen name. +#: wp-admin/admin-header.php:50 +msgid "%s — WordPress" +msgstr "%s – WordPress" + +#: wp-admin/includes/class-wp-comments-list-table.php:547 +msgctxt "column name" +msgid "In Response To" +msgstr "En réponse à" + +#: wp-admin/edit-form-advanced.php:348 +msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." +msgstr "Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification." + +#: wp-admin/edit-form-advanced.php:347 +msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." +msgstr "Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les blocs sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton Aide de ces blocs pour obtenir plus d’informations." + +#: wp-admin/widgets-form.php:46 +msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." +msgstr "La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera enlevé du site." + +#: wp-admin/edit-form-advanced.php:346 +msgid "This screen allows you to edit fields for metadata in a file within the media library." +msgstr "Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la bibliothèque des médias." + +#: wp-admin/edit-form-advanced.php:349 +msgid "Remember to click Update to save metadata entered or changed." +msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées." + +#: wp-admin/user-new.php:441 +msgid "Email or Username" +msgstr "E-mail ou identifiant" + +#: wp-admin/themes.php:233 wp-admin/network/site-themes.php:240 +#: wp-admin/network/themes.php:463 +msgid "Search Installed Themes" +msgstr "Chercher parmi les thèmes installés" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/update-core.php:665 +msgid "Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications." +msgstr "Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications." + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:404 +msgctxt "posts" +msgid "Sticky (%s)" +msgid_plural "Sticky (%s)" +msgstr[0] "Mis en avant (%s)" +msgstr[1] "Mis en avant (%s)" + +#: wp-admin/update-core.php:1086 +msgid "Please select one or more plugins to update." +msgstr "Veuillez sélectionner une ou plusieurs extensions à mettre à jour." + +#: wp-admin/update-core.php:1076 +msgid "Please select one or more themes to update." +msgstr "Veuillez sélectionner un ou plusieurs thèmes à mettre à jour." + +#. translators: 1: Date, 2: Time. +#: wp-admin/update-core.php:1111 +msgid "Last checked on %1$s at %2$s." +msgstr "Dernière vérification le %1$s à %2$s." + +#: wp-admin/update-core.php:1117 +msgid "Check again." +msgstr "Vérifier à nouveau." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:41 +msgid "The update process is starting. This process may take a while on some hosts, so please be patient." +msgstr "Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience." + +#: wp-admin/theme-install.php:244 wp-admin/theme-install.php:266 +msgid "Apply Filters" +msgstr "Appliquer les filtres" + +#: wp-admin/includes/theme.php:338 +msgid "Editor Style" +msgstr "Éditeur de style" + +#: wp-admin/users.php:235 +msgid "Sorry, you are not allowed to edit users." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les comptes." + +#: wp-admin/includes/file.php:2566 +msgid "To perform the requested action, WordPress needs to access your web server." +msgstr "Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:175 +msgid "No themes match your request." +msgstr "Aucun thème ne correspond à votre requête." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1102 +#: wp-admin/includes/class-wp-list-table.php:1111 +msgid "Current Page" +msgstr "Page actuelle" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:510 wp-admin/includes/dashboard.php:514 +#: wp-admin/network/sites.php:403 +msgid "Search Sites" +msgstr "Chercher un site" + +#: wp-admin/includes/dashboard.php:454 +msgid "Create a New User" +msgstr "Créer un nouvel utilisateur" + +#. translators: 1: Text indicating the number of sites on the network, 2: Text +#. indicating the number of users on the network. +#: wp-admin/includes/dashboard.php:466 +msgid "You have %1$s and %2$s." +msgstr "Vous avez %1$s et %2$s." + +#. translators: %s: Number of sites on the network. +#: wp-admin/includes/dashboard.php:463 +msgid "%s site" +msgid_plural "%s sites" +msgstr[0] "%s site" +msgstr[1] "%s sites" + +#. translators: %s: Number of users on the network. +#: wp-admin/includes/dashboard.php:461 +msgid "%s user" +msgid_plural "%s users" +msgstr[0] "%s utilisateur" +msgstr[1] "%s utilisateurs" + +#: wp-admin/includes/dashboard.php:1542 +msgid "https://wordpress.org/news/" +msgstr "https://wpfr.net/" + +#: wp-admin/includes/dashboard.php:1551 +msgid "https://wordpress.org/news/feed/" +msgstr "https://fr.wordpress.org/news/feed/" + +#: wp-admin/options-discussion.php:84 +msgid "(Signup has been disabled. Only members of this site can comment.)" +msgstr " (L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:229 wp-admin/includes/update.php:528 +#: wp-admin/includes/update.php:721 +msgid "There is a new version of %1$s available. View version %4$s details." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s." + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:65 +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:66 +#: wp-admin/includes/class-language-pack-upgrader-skin.php:80 +msgid "Go to WordPress Updates page" +msgstr "Aller à la page des mises à jour de WordPress" + +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:61 +#: wp-admin/includes/class-theme-installer-skin.php:164 +#: wp-admin/includes/class-theme-upgrader-skin.php:127 +msgid "Go to Themes page" +msgstr "Aller sur la page des thèmes" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:60 +#: wp-admin/includes/class-plugin-installer-skin.php:151 +#: wp-admin/includes/class-plugin-upgrader-skin.php:101 +msgid "Go to Plugins page" +msgstr "Aller sur la page des extensions" + +#: wp-admin/includes/nav-menu.php:1294 +msgid "Click Save Menu to make pending menu items public." +msgstr "Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente." + +#: wp-admin/includes/dashboard.php:1668 +msgid "Storage Space" +msgstr "Espace disque" + +#: wp-admin/includes/dashboard.php:451 +msgid "Create a New Site" +msgstr "Créer un nouveau site" + +#. translators: 1: Image width in pixels, 2: Image height in pixels. +#: wp-admin/includes/class-custom-image-header.php:602 +msgid "Images of exactly %1$d × %2$d pixels will be used as-is." +msgstr "Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles." + +#: wp-admin/includes/class-custom-image-header.php:952 +msgid "Crop and Publish" +msgstr "Recadrer et publier" + +#: wp-admin/edit-link-form.php:70 +msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." +msgstr "XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur ou le propriétaire de la page liée." + +#: wp-admin/includes/file.php:2576 +msgid "FTP Password" +msgstr "Mot de passe FTP" + +#: wp-admin/includes/file.php:2575 +msgid "FTP Username" +msgstr "Identifiant FTP" + +#: wp-admin/includes/file.php:2572 +msgid "FTP/SSH Password" +msgstr "Mot de passe FTP/SSH" + +#: wp-admin/includes/file.php:2571 +msgid "FTP/SSH Username" +msgstr "Identifiant FTP/SSH" + +#: wp-admin/widgets-form.php:64 +msgid "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area." +msgstr "De nombreux thèmes affichent par défaut quelques widgets dans la colonne latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de colonne latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles »." + +#: wp-admin/options-permalink.php:54 +msgid "The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized." +msgstr "Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/." + +#. translators: %s: URL to create a new page. +#: wp-admin/options-reading.php:29 +msgid "You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed." +msgstr "Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles." + +#. translators: %s: Percent sign (%). +#: wp-admin/options-permalink.php:37 +msgid "If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there." +msgstr "Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les marqueurs de structure (encadrés par %s), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis." + +#. translators: 1: %category%, 2: %tag% +#: wp-admin/options-permalink.php:42 +msgid "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s." +msgstr "Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %1$s ou %2$s." + +#: wp-admin/widgets-form.php:54 +msgid "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." +msgstr "Si vous voulez enlever le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les rajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes." + +#: wp-admin/users.php:36 +msgid "To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section." +msgstr "Pour ajouter un nouvel utilisateur à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Utilisateurs »." + +#: wp-admin/options-media.php:20 +msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." +msgstr "Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine." + +#: wp-admin/options-general.php:28 +msgid "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." +msgstr "La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes." + +#: wp-admin/edit-form-advanced.php:414 +msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." +msgstr "Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez indiquer un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc." + +#: wp-admin/includes/file.php:2570 +msgid "Please enter your FTP or SSH credentials to proceed." +msgstr "Veuillez saisir votre identifiant FTP ou SSH pour continuer." + +#: wp-admin/includes/file.php:2574 +msgid "Please enter your FTP credentials to proceed." +msgstr "Veuillez saisir votre identifiant FTP pour continuer." + +#: wp-admin/includes/file.php:2580 +msgid "If you do not remember your credentials, you should contact your web host." +msgstr "Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur." + +#: wp-admin/user-edit.php:59 +msgid "Your profile contains information about you (your “account”) as well as some personal options related to using WordPress." +msgstr "Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress." + +#. translators: %s: /wp-content/themes +#: wp-admin/theme-install.php:117 +msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." +msgstr "Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s." + +#: wp-admin/edit-form-advanced.php:401 +msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." +msgstr "Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite." + +#: wp-admin/user-new.php:294 +msgid "Administrators have access to all the administration features." +msgstr "Les administrateurs peuvent accéder à toutes les fonctionnalités de l’administration ;" + +#. translators: %s: URL to Widgets screen. +#: wp-admin/link-manager.php:61 +msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." +msgstr "Vous pouvez ici ajouter les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut." + +#: wp-admin/link-manager.php:73 +msgid "If you delete a link, it will be removed permanently, as Links do not have a Trash function yet." +msgstr "Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment." + +#: wp-admin/user-new.php:291 +msgid "Contributors can write and manage their posts but not publish posts or upload media files." +msgstr "Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média." + +#: wp-admin/plugin-editor.php:135 +msgid "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." +msgstr "Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements." + +#: wp-admin/includes/class-custom-background.php:101 +msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." +msgstr "Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur." + +#. translators: %s: URL to Press This bookmarklet. +#: wp-admin/edit-form-advanced.php:315 +msgid "You can also create posts with the Press This bookmarklet." +msgstr "Vous pouvez également créer des articles avec le bookmarklet Press This." + +#: wp-admin/edit-tags.php:283 +msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "Identifiant — L’identifiant est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union ;" + +#: wp-admin/includes/class-custom-background.php:104 +msgid "Do not forget to click on the Save Changes button when you are finished." +msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé." + +#: wp-admin/user-edit.php:62 +msgid "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts." +msgstr "Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles." + +#: wp-admin/user-edit.php:65 +msgid "Remember to click the Update Profile button when you are finished." +msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé." + +#: wp-admin/user-new.php:293 +msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." +msgstr "Les éditeurs peuvent publier et gérer leurs propres articles, ainsi que ceux des autres membres ;" + +#: wp-admin/user-edit.php:64 +msgid "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so." +msgstr "Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter." + +#: wp-admin/comment.php:65 +msgid "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment." +msgstr "Vous pouvez également modérer le commentaire depuis cet écran, à l’aide du bloc État, d’où vous pouvez également changer l’horodatage du commentaire." + +#: wp-admin/comment.php:64 +msgid "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error." +msgstr "Au besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe." + +#: wp-admin/options-general.php:47 +msgid "UTC means Coordinated Universal Time." +msgstr "UTC signifie « Temps universel coordonné »." + +#: wp-admin/options-general.php:27 +msgid "The fields on this screen determine some of the basics of your site setup." +msgstr "Les champs de cet écran déterminent certains des réglages de base de votre site." + +#: wp-admin/options-reading.php:26 +msgid "This screen contains the settings that affect the display of your content." +msgstr "Cet écran présente les réglages qui influent sur l’affichage de votre contenu." + +#: wp-admin/options-discussion.php:26 wp-admin/options-general.php:48 +#: wp-admin/options-media.php:29 wp-admin/options-permalink.php:26 +#: wp-admin/options-permalink.php:46 wp-admin/options-permalink.php:55 +#: wp-admin/options-reading.php:37 wp-admin/options-writing.php:25 +msgid "You must click the Save Changes button at the bottom of the screen for new settings to take effect." +msgstr "Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet." + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:34 +msgid "You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds." +msgstr "Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’entrées à afficher, s’il faut afficher l’article en entier ou juste un résumé. En savoir plus sur les flux." + +#: wp-admin/edit-link-form.php:69 +msgid "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box." +msgstr "Les sections pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnées par glisser/déposer. Vous pouvez également masquer les sections que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les sections en cliquant sur leur barre de titre." + +#: wp-admin/update-core.php:470 +msgid "Your plugins are all up to date." +msgstr "Vos extensions sont toutes à jour." + +#: wp-admin/update-core.php:274 +msgid "You have the latest version of WordPress." +msgstr "Vous avez la dernière version de WordPress." + +#: wp-admin/update-core.php:643 +msgid "Your themes are all up to date." +msgstr "Vos thèmes sont tous à jour." + +#: wp-admin/update-core.php:255 +msgid "An updated version of WordPress is available." +msgstr "Une nouvelle version de WordPress est disponible." + +#: wp-admin/update-core.php:287 +msgid "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated." +msgstr "Durant le processus de mise à jour, votre site sera mis en mode de maintenance. Dès que le processus sera achevé, ce mode sera désactivé." + +#: wp-admin/plugin-editor.php:178 wp-admin/theme-editor.php:169 +msgid "Function Name…" +msgstr "Nom de fonction…" + +#: wp-admin/includes/class-plugin-installer-skin.php:104 +msgid "Activate Plugin & Run Importer" +msgstr "Activer l’extension & lancer l’importateur" + +#: wp-admin/edit-link-form.php:68 +msgid "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." +msgstr "Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacun des blocs. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse)." + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:639 +msgid "Categories can be selectively converted to tags using the category to tag converter." +msgstr "Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes." + +#: wp-admin/import.php:25 +msgid "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform." +msgstr "Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plates-formes de blogs ou gestionnaires de contenus. Choisissez la plate-forme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plate-forme, cliquez sur le lien « Recherche » dans le Dépôt d’Extensions et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes." + +#: wp-admin/export.php:53 +msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." +msgstr "Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plate-forme de blog capable de lire ce format." + +#: wp-admin/link-manager.php:65 +msgid "You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table." +msgstr "Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens." + +#: wp-admin/plugin-editor.php:136 +msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." +msgstr "Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé." + +#: wp-admin/plugins.php:579 +msgid "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue." +msgstr "La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause." + +#: wp-admin/widgets-form.php:55 +msgid "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required." +msgstr "Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire." + +#: wp-admin/widgets-form.php:56 +msgid "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop." +msgstr "En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer." + +#: wp-admin/theme-editor.php:39 +msgid "After typing in your edits, click Update File." +msgstr "Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier »." + +#: wp-admin/theme-editor.php:31 +msgid "Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box." +msgstr "Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur." + +#: wp-admin/widgets-form.php:45 +msgid "Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them." +msgstr "Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la colonne latérale). Pour remplir les zones à widgets de votre colonne latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir." + +#: wp-admin/theme-editor.php:40 +msgid "Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use." +msgstr "Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site." + +#: wp-admin/theme-editor.php:30 +msgid "You can use the theme file editor to edit the individual CSS and PHP files which make up your theme." +msgstr "Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier les fichiers CSS et PHP qui composent votre thème." + +#: wp-admin/includes/meta-boxes.php:1010 +msgid "(no parent)" +msgstr "(pas de parent)" + +#: wp-admin/edit-form-advanced.php:413 +msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." +msgstr "Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant." + +#: wp-admin/edit-form-advanced.php:412 +msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." +msgstr "Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:48 +msgid "All updates have been completed." +msgstr "Toutes les mises à jour sont terminées." + +#. translators: %s: URL to Writing Settings screen. +#: wp-admin/edit-tags.php:250 +msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." +msgstr "Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture." + +#: wp-admin/edit-tags.php:275 +msgid "When adding a new category on this screen, you’ll fill in the following fields:" +msgstr "Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :" + +#: wp-admin/edit-tags.php:277 +msgid "When adding a new tag on this screen, you’ll fill in the following fields:" +msgstr "Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :" + +#: wp-admin/edit-tags.php:262 +msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." +msgstr "Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index." + +#: wp-admin/edit-tags.php:289 +msgid "Description — The description is not prominent by default; however, some themes may display it." +msgstr "Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent." + +#: wp-admin/edit-tags.php:281 +msgid "Name — The name is how it appears on your site." +msgstr "Nom — Le nom est utilisé un peu partout sur votre site ;" + +#: wp-admin/edit-tags.php:291 +msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." +msgstr "Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau." + +#: wp-admin/includes/class-custom-image-header.php:712 +msgid "Default Images" +msgstr "Images par défaut" + +#: wp-admin/includes/class-custom-image-header.php:930 +msgid "Crop Header Image" +msgstr "Recadrer l’image d’en-tête" + +#: wp-admin/includes/class-custom-image-header.php:731 +msgid "This will remove the header image. You will not be able to restore any customizations." +msgstr "Ceci retirera l’image d’en-tête. Il ne vous sera pas possible de rétablir vos personnalisations." + +#: wp-admin/includes/class-custom-image-header.php:732 +msgid "Remove Header Image" +msgstr "Retirer l’image d’en-tête" + +#: wp-admin/includes/class-custom-image-header.php:747 +msgid "Reset Image" +msgstr "Remettre l’image d’origine" + +#: wp-admin/includes/class-custom-image-header.php:749 +msgid "This will restore the original header image. You will not be able to restore any customizations." +msgstr "Ceci remettra en place l’image d’en-tête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations." + +#: wp-admin/includes/class-custom-image-header.php:750 +msgid "Restore Original Header Image" +msgstr "Rétablir l’image d’en-tête d’origine" + +#: wp-admin/includes/class-custom-image-header.php:773 +msgid "Text Color" +msgstr "Couleur du texte" + +#: wp-admin/includes/class-custom-image-header.php:986 +msgid "Image Upload Error" +msgstr "Erreur lors de l’envoi de l’image" + +#: wp-admin/includes/class-custom-image-header.php:934 +msgid "You need JavaScript to choose a part of the image." +msgstr "Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image." + +#: wp-admin/includes/class-wp-comments-list-table.php:796 +msgid "Restore this comment from the Trash" +msgstr "Récupérer ce commentaire depuis la corbeille" + +#: wp-admin/includes/class-wp-comments-list-table.php:806 +#: wp-admin/includes/dashboard.php:783 +msgid "Delete this comment permanently" +msgstr "Supprimer définitivement ce commentaire" + +#. translators: %s: Featured image. +#: wp-admin/edit-form-advanced.php:386 +msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." +msgstr "%s — Vous pouvez associer une image à votre article, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un en-tête personnalisé, etc." + +#: wp-admin/edit-form-advanced.php:292 +msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." +msgstr "Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir." + +#: wp-admin/edit-form-advanced.php:402 +msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." +msgstr "Discussion — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer." + +#: wp-admin/users.php:44 +msgid "You can customize the display of this screen in a number of ways:" +msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :" + +#: wp-admin/edit.php:276 +msgid "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:" +msgstr "Passer la souris au-dessus d’une ligne de la liste d’articles, fera s’afficher des liens vous permettant de gérer l’article. Vous pouvez lancer les actions suivantes :" + +#: wp-admin/edit.php:267 +msgid "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list." +msgstr "Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur d’un article, sa catégorie ou une étiquette." + +#: wp-admin/edit.php:264 +msgid "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab." +msgstr "Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre d’articles à afficher par écran à l’aide de l’onglet « Options de l’écran » ;" + +#: wp-admin/plugins.php:793 +msgid "Search Installed Plugins" +msgstr "Recherchez parmi vos extensions" + +#: wp-admin/nav-menus.php:830 +msgid "Your theme supports one menu. Select which menu you would like to use." +msgstr "Votre thème peut utiliser %s menu. Sélectionnez le menu que vous voudriez utiliser." + +#: wp-admin/nav-menus.php:19 +msgid "Your theme does not support navigation menus or widgets." +msgstr "Le thème actuel n’accepte pas les menus de navigation ni les widgets." + +#: wp-admin/includes/import.php:196 wp-admin/tools.php:48 wp-admin/tools.php:73 +msgid "Categories and Tags Converter" +msgstr "Convertisseur de catégories et étiquettes" + +#: wp-admin/includes/nav-menu.php:583 wp-admin/includes/nav-menu.php:606 +msgid "Most Recent" +msgstr "Les plus récentes" + +#: wp-admin/export.php:224 wp-admin/export.php:276 wp-admin/export.php:321 +msgid "Start date:" +msgstr "Date de début :" + +#: wp-admin/includes/plugin-install.php:332 +msgctxt "Plugin Installer" +msgid "Tag" +msgstr "Étiquette" + +#: wp-admin/includes/theme-install.php:110 +msgctxt "Theme Installer" +msgid "Tag" +msgstr "Étiquette" + +#: wp-admin/includes/media.php:2583 +msgctxt "verb" +msgid "Clear" +msgstr "Effacer" + +#: wp-admin/comment.php:134 +#: wp-admin/includes/class-wp-comments-list-table.php:371 +msgctxt "comment" +msgid "Mark as spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-custom-background.php:327 +msgid "Remove Background Image" +msgstr "Retirer l’image d’arrière-plan" + +#. translators: %s: Post title. +#. translators: %s: Link to post. +#: wp-admin/edit-comments.php:183 wp-admin/edit-comments.php:252 +msgid "Comments on “%s”" +msgstr "Commentaires sur « %s »" + +#: wp-admin/includes/nav-menu.php:1334 +msgid "Show advanced menu properties" +msgstr "Afficher les propriétés avancées du menu" + +#. translators: 1: Plugin version, 2: New version. +#. translators: 1: Theme version, 2: New version. +#: wp-admin/update-core.php:602 wp-admin/update-core.php:780 +msgid "You have version %1$s installed. Update to %2$s." +msgstr "Vous utilisez la version %1$s. Mettez à jour vers la version %2$s." + +#: wp-admin/includes/class-wp-debug-data.php:209 +#: wp-admin/includes/class-wp-debug-data.php:214 +#: wp-admin/includes/class-wp-debug-data.php:223 +#: wp-admin/includes/class-wp-debug-data.php:232 +#: wp-admin/includes/class-wp-debug-data.php:283 +#: wp-admin/includes/class-wp-debug-data.php:288 +#: wp-admin/includes/class-wp-debug-data.php:298 +#: wp-admin/includes/class-wp-debug-data.php:303 +#: wp-admin/includes/class-wp-debug-data.php:568 +#: wp-admin/includes/class-wp-debug-data.php:1194 +#: wp-admin/includes/class-wp-debug-data.php:1280 +msgid "Enabled" +msgstr "Activé" + +#: wp-admin/includes/class-wp-comments-list-table.php:787 +msgctxt "comment" +msgid "Not Spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-custom-background.php:342 +msgid "This will restore the original background image. You will not be able to restore any customizations." +msgstr "Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations." + +#: wp-admin/includes/dashboard.php:1560 +msgid "WordPress Blog" +msgstr "Blog WordPress" + +#: wp-admin/includes/class-wp-users-list-table.php:315 +#: wp-admin/user-edit.php:458 wp-admin/user-edit.php:460 wp-admin/users.php:127 +msgid "— No role for this site —" +msgstr "— Pas de rôle sur ce site —" + +#: wp-admin/users.php:518 +msgid "Remove Users from Site" +msgstr "Supprimer des utilisateurs de ce site" + +#: wp-admin/includes/plugin.php:516 +msgid "Custom site deleted message." +msgstr "Message personnalisé de site supprimé." + +#: wp-admin/includes/plugin.php:518 +msgid "Custom site suspended message." +msgstr "Message personnalisé de site suspendu." + +#: wp-admin/includes/plugin.php:517 +msgid "Custom site inactive message." +msgstr "Message personnalisé de site inactif." + +#: wp-admin/includes/schema.php:413 +msgid "My Site" +msgstr "Mon site" + +#: wp-admin/includes/upgrade.php:583 +msgid "New WordPress Site" +msgstr "Nouveau site WordPress" + +#: wp-admin/includes/post.php:911 +msgid "Sorry, you are not allowed to create pages on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site." + +#: wp-admin/includes/post.php:913 +msgid "Sorry, you are not allowed to create posts or drafts on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site." + +#: wp-admin/import.php:78 +msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" +msgstr "Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :" + +#: wp-admin/includes/nav-menu.php:508 wp-admin/includes/nav-menu.php:873 +msgid "No items." +msgstr "Aucune entrée." + +#. translators: %s: Asterisk symbol (*). +#: wp-admin/includes/schema.php:1141 +msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." +msgstr "Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS." + +#. translators: %s: Host name. +#: wp-admin/includes/schema.php:1130 +msgid "The installer attempted to contact a random hostname (%s) on your domain." +msgstr "L’installateur a tenté de contacter un nom d’hôte aléatoire (%s) sur votre domaine." + +#: wp-admin/nav-menus.php:285 +msgid "The menu item has been successfully deleted." +msgstr "L’élément du menu a bien été supprimé." + +#: wp-admin/includes/ajax-actions.php:1685 +msgid "Please provide a custom field name." +msgstr "Veuillez saisir un nom pour le champ personnalisé." + +#: wp-admin/includes/class-custom-background.php:372 +msgid "Display Options" +msgstr "Options d’affichage" + +#: wp-admin/includes/class-custom-background.php:323 +#: wp-admin/includes/class-custom-image-header.php:729 +msgid "Remove Image" +msgstr "Retirer l’image" + +#: wp-admin/users.php:523 +msgid "You have specified these users for removal:" +msgstr "Vous avez choisi de supprimer ces utilisateurs :" + +#: wp-admin/users.php:173 wp-admin/users.php:276 +msgid "User deletion is not allowed from this screen." +msgstr "La suppression d’un utilisateur n’est pas autorisée depuis cet écran." + +#: wp-admin/users.php:569 +msgid "There are no valid users selected for removal." +msgstr "Aucun utilisateur valide n’est sélectionné pour la suppression." + +#: wp-admin/users.php:738 +msgid "Other users have been removed." +msgstr "Les autres utilisateurs ont été supprimés." + +#: wp-admin/users.php:565 +msgid "Confirm Removal" +msgstr "Confirmer cette action" + +#: wp-admin/users.php:730 +msgid "You cannot remove the current user." +msgstr "Vous ne pouvez pas supprimer le compte actuellement utilisé." + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:47 +msgid "%s updated successfully." +msgstr "%s a bien été mis à jour." + +#: wp-admin/includes/user.php:547 +msgid "Yes, take me to my profile page" +msgstr "Oui, je veux aller sur mon profil maintenant" + +#: wp-admin/includes/upgrade.php:96 +msgid "Your chosen password." +msgstr "Le mot de passe que vous avez choisi." + +#: wp-admin/includes/user.php:552 +msgid "No thanks, do not remind me again" +msgstr "Non, ne pas me relancer à ce sujet" + +#: wp-admin/edit.php:123 wp-admin/post.php:250 wp-admin/upload.php:295 +msgid "Sorry, you are not allowed to move this item to the Trash." +msgstr "Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille." + +#: wp-admin/edit.php:156 wp-admin/post.php:287 wp-admin/upload.php:316 +msgid "Sorry, you are not allowed to restore this item from the Trash." +msgstr "Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:366 +msgid "%s comment moved to the Trash." +msgid_plural "%s comments moved to the Trash." +msgstr[0] "%s commentaire déplacé dans la corbeille." +msgstr[1] "%s commentaires déplacés dans la corbeille." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:378 +msgid "%s comment restored from the Trash." +msgid_plural "%s comments restored from the Trash." +msgstr[0] "%s commentaire récupéré depuis la corbeille" +msgstr[1] "%s commentaires récupérés depuis la corbeille" + +#: wp-admin/update-core.php:660 +msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." +msgstr "Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes »." + +#: wp-admin/user-new.php:342 +msgid "User has been added to your site." +msgstr "L’utilisateur a été ajouté à votre site." + +#: wp-admin/user-new.php:351 +msgid "That user is already a member of this site." +msgstr "Cet utilisateur est déjà membre de ce site." + +#: wp-admin/user-new.php:339 +msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." +msgstr "L’invitation a été envoyée à l’utilisateur sur son adresse de messagerie. Il devra cliquer sur un lien de confirmation pour être ajouté à votre site." + +#: wp-admin/update-core.php:493 +msgid "The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”." +msgstr "Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les extensions »." + +#: wp-admin/includes/class-custom-background.php:328 +msgid "This will remove the background image. You will not be able to restore any customizations." +msgstr "Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations." + +#. translators: %s: Network title. +#: wp-admin/includes/class-wp-themes-list-table.php:131 +msgid "Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes." +msgstr "Vous n’avez accès qu’au thème déjà actif. Contactez l’administrateur ou l’administratrice de %s pour obtenir des informations sur l’accès à d’autres thèmes." + +#: wp-admin/includes/file.php:28 +msgid "Author Template" +msgstr "Modèle pour un auteur" + +#: wp-admin/includes/file.php:55 +msgid "Visual Editor Stylesheet" +msgstr "Feuille de style de l’éditeur visuel" + +#: wp-admin/includes/file.php:31 +msgid "Tag Template" +msgstr "Modèle pour étiquette" + +#: wp-admin/edit-form-advanced.php:204 +msgid "Page saved." +msgstr "Page enregistrée." + +#. translators: %s: Importer name. +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/import.php:210 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:569 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:821 +#: wp-admin/includes/class-wp-plugins-list-table.php:1192 +#: wp-admin/includes/class-wp-plugins-list-table.php:1651 +msgid "More information about %s" +msgstr "Plus d’informations à propos de %s" + +#: wp-admin/user-edit.php:473 +msgid "Grant this user super admin privileges for the Network." +msgstr "Donner les privilèges de super-admin à cet utilisateur pour le réseau." + +#: wp-admin/install.php:153 wp-admin/user-edit.php:205 +msgid "Important:" +msgstr "Important :" + +#: wp-admin/user-edit.php:205 +msgid "This user has super admin privileges." +msgstr "Cet utilisateur possède les privilèges de super-admin." + +#. translators: %s: Theme version. +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-theme-install-list-table.php:317 +#: wp-admin/includes/class-wp-theme-install-list-table.php:476 +#: wp-admin/update-core.php:74 +msgid "Update to version %s" +msgstr "Mettre à jour vers la version %s" + +#: wp-admin/setup-config.php:309 +msgid "Error: \"Table Prefix\" can only contain numbers, letters, and underscores." +msgstr "Erreur : le préfixe de table ne doit contenir que des chiffres, des lettres ou le caractère tiret bas." + +#: wp-admin/options-reading.php:180 +msgid "items" +msgstr "éléments" + +#: wp-admin/user-edit.php:440 +msgid "Usernames cannot be changed." +msgstr "Les identifiants ne peuvent être modifiés." + +#: wp-admin/nav-menus.php:322 +msgid "The menu has been successfully deleted." +msgstr "Le menu a bien été supprimé." + +#. translators: Hidden accessibility text. +#: wp-admin/install.php:184 wp-admin/install.php:191 +#: wp-admin/options-reading.php:44 wp-admin/options-reading.php:208 +#: wp-admin/options-reading.php:214 +msgid "Site visibility" +msgstr "Visibilité du site" + +#: wp-admin/includes/nav-menu.php:1336 +msgid "Link Target" +msgstr "Cible du lien" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:223 +msgid "CSS Classes (optional)" +msgstr "Classes CSS (facultatives)" + +#: wp-admin/nav-menus.php:1095 wp-admin/nav-menus.php:1232 +msgid "Save Menu" +msgstr "Enregistrer le menu" + +#. translators: 1: Theme name, 2: Number of the theme, 3: Total number of +#. themes being updated. +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:34 +msgid "Updating Theme %1$s (%2$d/%3$d)" +msgstr "Mise à jour du thème %1$s (%2$d/%3$d)" + +#: wp-admin/includes/schema.php:993 +msgid "You must provide a domain name." +msgstr "vous devez fournir un nom de domaine." + +#: wp-admin/includes/schema.php:996 +msgid "You must provide a name for your network of sites." +msgstr "vous devez fournir un nom pour votre réseau de sites." + +#: wp-admin/includes/schema.php:1003 wp-admin/includes/schema.php:1009 +msgid "The network already exists." +msgstr "Le réseau existe déjà." + +#. translators: %s: Error message. +#: wp-admin/includes/schema.php:1135 +msgid "This resulted in an error message: %s" +msgstr "Cela a abouti à ce message d’erreur : %s" + +#: wp-admin/includes/schema.php:1145 +msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." +msgstr "Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message." + +#: wp-admin/includes/schema.php:1014 +msgid "You must provide a valid email address." +msgstr "Vous devez saisir une adresse de messagerie valide." + +#: wp-admin/includes/user.php:541 +msgid "Notice:" +msgstr "Avertissement :" + +#: wp-admin/edit-form-advanced.php:572 +msgid "Get Shortlink" +msgstr "Obtenir le lien court" + +#. translators: 1: Plugin name, 2: Number of the plugin, 3: Total number of +#. plugins being updated. +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:33 +msgid "Updating Plugin %1$s (%2$d/%3$d)" +msgstr "Mise à jour de l’extension %1$s (%2$d/%3$d)" + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:45 +msgid "The update of %s failed." +msgstr "La mise à jour de %s a échoué." + +#: wp-admin/includes/upgrade.php:100 +msgid "User already exists. Password inherited." +msgstr "L’utilisateur existe déjà et a hérité du mot de passe." + +#: wp-admin/includes/upgrade.php:117 +msgid "The password you chose during installation." +msgstr "Le mot de passe que vous avez choisi pendant l’installation." + +#: wp-admin/update-core.php:872 +msgid "Update WordPress" +msgstr "Mettre à jour WordPress" + +#: wp-admin/plugins.php:159 wp-admin/update-core.php:496 +#: wp-admin/update-core.php:629 wp-admin/update-core.php:1209 +#: wp-admin/update-core.php:1214 +msgid "Update Plugins" +msgstr "Mettre à jour les extensions" + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/update-core.php:113 wp-admin/upgrade.php:100 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s." + +#: wp-admin/includes/class-wp-automatic-updater.php:485 +#: wp-admin/includes/update-core.php:1605 wp-admin/update-core.php:919 +msgid "WordPress updated successfully." +msgstr "WordPress a bien été mis à jour." + +#: wp-admin/update-core.php:987 wp-admin/update-core.php:1067 +msgid "WordPress Updates" +msgstr "Mises à jour de WordPress" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:185 +msgid "Edit menu item" +msgstr "Modifier un élément du menu" + +#: wp-admin/plugins.php:355 +msgid "You are about to remove the following plugin:" +msgstr "Vous êtes sur le point de supprimer l’extension suivante :" + +#: wp-admin/plugins.php:343 +msgid "Delete Plugin" +msgstr "Supprimer l’extension" + +#: wp-admin/includes/class-wp-plugins-list-table.php:780 +msgid "Inactive:" +msgstr "Inactif :" + +#: wp-admin/about.php:411 wp-admin/includes/network.php:166 +msgid "Go to Dashboard" +msgstr "Aller sur le tableau de bord" + +#: wp-admin/nav-menus.php:446 wp-admin/nav-menus.php:475 +msgid "Please enter a valid menu name." +msgstr "Veuillez saisir un nom de menu valide." + +#: wp-admin/includes/nav-menu.php:591 wp-admin/includes/nav-menu.php:963 +msgid "View All" +msgstr "Afficher tout" + +#: wp-admin/options-general.php:415 +msgid "This timezone is currently in daylight saving time." +msgstr "Ce fuseau horaire est actuellement à l’heure d’été." + +#: wp-admin/options-general.php:438 +msgid "This timezone does not observe daylight saving time." +msgstr "Ce fuseau horaire n’a pas d’heure d’été" + +#: wp-admin/plugins.php:411 +msgid "Yes, delete these files and data" +msgstr "Oui, supprimer ces fichiers et données" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:540 +msgid "Must-Use (%s)" +msgid_plural "Must-Use (%s)" +msgstr[0] "Indispensable (Must-Use) (%s)" +msgstr[1] "Indispensable (Must-Use) (%s)" + +#: wp-admin/plugins.php:393 +msgid "Are you sure you want to delete these files and data?" +msgstr "Confirmez-vous la suppression de ces fichiers et données ?" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:548 +msgid "Drop-in (%s)" +msgid_plural "Drop-ins (%s)" +msgstr[0] "Avancée (%s)" +msgstr[1] "Avancées (%s)" + +#: wp-admin/options-general.php:251 wp-admin/network/settings.php:170 +msgid "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." +msgstr "Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée." + +#: wp-admin/includes/plugin.php:515 +msgid "Executed before Multisite is loaded." +msgstr "Exécuté avant que la fonctionnalité multisites ne soit chargée." + +#: wp-admin/includes/plugin.php:509 +msgid "External object cache." +msgstr "Cache d’objet externe." + +#: wp-admin/includes/plugin.php:508 +msgid "Custom maintenance message." +msgstr "Message personnalisé pour la maintenance." + +#: wp-admin/includes/plugin.php:506 +msgid "Custom database error message." +msgstr "Message personnalisé pour l’erreur de base de données." + +#: wp-admin/includes/plugin.php:505 +msgid "Custom database class." +msgstr "Classe personnalisée de connexion à la base de données." + +#: wp-admin/includes/plugin.php:504 +msgid "Advanced caching plugin." +msgstr "Extension de cache avancée." + +#: wp-admin/includes/file.php:938 +msgid "File is empty. Please upload something more substantial." +msgstr "Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/install.php:268 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s." + +#: wp-admin/comment.php:157 +msgid "This comment is currently marked as spam." +msgstr "Ce commentaire est actuellement marqué comme indésirable." + +#: wp-admin/comment.php:101 +msgid "Moderate Comment" +msgstr "Modérer le commentaire" + +#: wp-admin/comment.php:154 +msgid "This comment is currently approved." +msgstr "Ce commentaire est actuellement approuvé." + +#: wp-admin/edit-comments.php:396 +msgid "This comment is already approved." +msgstr "Ce commentaire est déjà approuvé." + +#: wp-admin/edit-comments.php:403 +msgid "This comment is already in the Trash." +msgstr "Ce commentaire est déjà marqué comme indésirable." + +#: wp-admin/edit-comments.php:410 +msgid "This comment is already marked as spam." +msgstr "Ce commentaire est déjà marqué comme indésirable." + +#: wp-admin/edit-comments.php:406 +msgid "View Trash" +msgstr "Voir la corbeille" + +#: wp-admin/comment.php:160 +msgid "This comment is currently in the Trash." +msgstr "Ce commentaire est actuellement dans la corbeille." + +#: wp-admin/includes/class-wp-screen.php:972 +msgid "Screen Options" +msgstr "Options de l’écran" + +#: wp-admin/includes/theme-install.php:152 wp-admin/theme-install.php:218 +msgid "Feature Filter" +msgstr "Filtre de fonctionnalités" + +#: wp-admin/includes/theme.php:353 +msgid "One Column" +msgstr "Une colonne" + +#: wp-admin/includes/theme.php:354 +msgid "Two Columns" +msgstr "Deux colonnes" + +#: wp-admin/includes/theme.php:355 +msgid "Three Columns" +msgstr "Trois colonnes" + +#: wp-admin/includes/theme.php:356 +msgid "Four Columns" +msgstr "Quatre colonnes" + +#: wp-admin/includes/theme.php:357 +msgid "Left Sidebar" +msgstr "Colonne latérale gauche" + +#: wp-admin/includes/theme.php:358 +msgid "Right Sidebar" +msgstr "Colonne latérale droite" + +#: wp-admin/includes/theme.php:330 wp-admin/includes/theme.php:388 +msgid "Features" +msgstr "Fonctionnalités" + +#: wp-admin/includes/theme.php:335 +msgid "Custom Colors" +msgstr "Couleurs personnalisées" + +#: wp-admin/includes/theme.php:348 +msgid "Theme Options" +msgstr "Options du thème" + +#: wp-admin/includes/theme.php:345 +msgid "Sticky Post" +msgstr "Article mis en avant" + +#: wp-admin/includes/theme.php:318 wp-admin/includes/theme.php:389 +msgid "Subject" +msgstr "Thème" + +#: wp-admin/includes/theme.php:324 +msgid "Holiday" +msgstr "Vacances" + +#: wp-admin/includes/theme-install.php:185 +msgid "Find Themes" +msgstr "Trouver des thèmes" + +#. translators: %s: Theme version. +#: wp-admin/includes/theme.php:869 wp-admin/theme-install.php:538 +#: wp-admin/themes.php:1050 +msgid "Version: %s" +msgstr "Version : %s" + +#: wp-admin/includes/class-wp-upgrader.php:195 wp-admin/includes/theme.php:72 +msgid "Unable to locate WordPress theme directory." +msgstr "Impossible de localiser le dossier des thèmes de WordPress." + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:104 +msgid "Could not fully remove the theme %s." +msgstr "Impossible de supprimer complètement le thème %s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Minimum required MySQL version number, 4: Current PHP version +#. number, 5: Current MySQL version number. +#: wp-admin/includes/update-core.php:1084 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Current PHP version number. +#: wp-admin/includes/update-core.php:1097 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number, 3: Current MySQL version number. +#: wp-admin/includes/update-core.php:1108 +msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s." + +#: wp-admin/includes/update-core.php:988 +msgid "Verifying the unpacked files…" +msgstr "Vérification des fichiers décompressés…" + +#: wp-admin/includes/update-core.php:1006 +msgid "The update could not be unpacked" +msgstr "La mise à jour ne peut pas être décompressée" + +#: wp-admin/includes/update-core.php:1478 +msgid "Upgrading database…" +msgstr "Mise à jour de la base de données…" + +#. translators: 1: WordPress version number, 2: URL to WordPress Updates +#. screen. +#: wp-admin/includes/update.php:274 +msgid "You are using a development version (%1$s). Cool! Please stay updated." +msgstr "Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour." + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:377 +msgid "Update to %s" +msgstr "Mettre à jour vers la version %s" + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:377 +msgid "Latest" +msgstr "Dernière version" + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/update.php:887 +msgid "An automated WordPress update has failed to complete - please attempt the update again now." +msgstr "Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer." + +#: wp-admin/includes/update.php:891 +msgid "An automated WordPress update has failed to complete! Please notify the site administrator." +msgstr "Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur du site." + +#: wp-admin/includes/upgrade.php:89 +msgid "Note that password carefully! It is a random password that was generated just for you." +msgstr "Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique." + +#. translators: Default post slug. +#: wp-admin/includes/upgrade.php:225 wp-admin/includes/upgrade.php:504 +msgctxt "Default post slug" +msgid "hello-world" +msgstr "bonjour-tout-le-monde" + +#: wp-admin/install.php:73 +msgid "WordPress › Installation" +msgstr "WordPress » Installation" + +#: wp-admin/install.php:122 +msgid "User(s) already exists." +msgstr "L’utilisateur existe déjà." + +#: wp-admin/install.php:181 +msgid "Double-check your email address before continuing." +msgstr "Vérifiez bien cette adresse de messagerie avant de continuer." + +#: wp-admin/install.php:217 +msgid "Install WordPress" +msgstr "Installer WordPress" + +#: wp-admin/install.php:371 +msgid "Information needed" +msgstr "Informations nécessaires" + +#: wp-admin/install.php:428 +msgid "Success!" +msgstr "Quel succès !" + +#: wp-admin/edit-link-form.php:90 wp-admin/link-add.php:17 +#: wp-admin/link-manager.php:104 wp-admin/menu.php:81 +msgid "Add New Link" +msgstr "Ajouter un lien" + +#. translators: %s: Number of links. +#: wp-admin/link-manager.php:124 +msgid "%s link deleted." +msgid_plural "%s links deleted." +msgstr[0] "%s lien supprimé" +msgstr[1] "%s liens supprimés" + +#: wp-admin/link-manager.php:139 +msgid "Search Links" +msgstr "Chercher un lien" + +#: wp-admin/includes/class-wp-links-list-table.php:79 +msgid "No links found." +msgstr "Aucun lien trouvé." + +#: wp-admin/link.php:118 +msgid "Link not found." +msgstr "Lien non trouvé." + +#: wp-admin/maint/repair.php:20 +msgid "WordPress › Database Repair" +msgstr "WordPress » Réparation de la base de données" + +#: wp-admin/maint/repair.php:185 +msgid "Repair Database" +msgstr "Réparer la base de données" + +#: wp-admin/maint/repair.php:187 +msgid "Repair and Optimize Database" +msgstr "Réparer et optimiser la base de données" + +#: wp-admin/media-new.php:43 +msgid "Upload New Media" +msgstr "Envoi d’un nouveau média" + +#: wp-admin/menu.php:67 +msgid "Library" +msgstr "Bibliothèque" + +#. translators: %s: Number of comments. +#: wp-admin/menu.php:96 +msgid "Comments %s" +msgstr "Commentaires %s" + +#: wp-admin/menu.php:324 wp-admin/menu.php:336 wp-admin/menu.php:339 +#: wp-admin/user-edit.php:40 wp-admin/user/menu.php:14 +msgid "Profile" +msgstr "Profil" + +#: wp-admin/menu.php:388 +msgctxt "settings screen" +msgid "General" +msgstr "Général" + +#: wp-admin/menu.php:389 +msgid "Writing" +msgstr "Écriture" + +#: wp-admin/menu.php:390 +msgid "Reading" +msgstr "Lecture" + +#: wp-admin/about.php:40 wp-admin/contribute.php:37 wp-admin/credits.php:40 +#: wp-admin/freedoms.php:43 wp-admin/menu.php:394 +#: wp-admin/options-privacy.php:22 wp-admin/options-privacy.php:157 +#: wp-admin/privacy-policy-guide.php:40 wp-admin/privacy.php:13 +#: wp-admin/privacy.php:24 wp-admin/privacy.php:37 +msgid "Privacy" +msgstr "Vie privée" + +#: wp-admin/menu.php:393 +msgid "Permalinks" +msgstr "Permaliens" + +#: wp-admin/ms-delete-site.php:13 wp-admin/my-sites.php:13 +#: wp-admin/network/admin.php:17 +msgid "Multisite support is not enabled." +msgstr "Le support multisites n’est pas activé." + +#: wp-admin/my-sites.php:139 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:839 +#: wp-admin/network/site-info.php:138 wp-admin/network/site-settings.php:95 +#: wp-admin/network/site-themes.php:181 wp-admin/network/site-users.php:226 +msgid "Visit" +msgstr "Visiter" + +#: wp-admin/update-core.php:672 wp-admin/update-core.php:805 +#: wp-admin/update-core.php:1250 wp-admin/update-core.php:1255 +#: wp-admin/network/themes.php:85 +msgid "Update Themes" +msgstr "Mettre à jour les thèmes" + +#: wp-admin/includes/class-wp-users-list-table.php:158 +#: wp-admin/includes/deprecated.php:579 +#: wp-admin/includes/class-wp-ms-users-list-table.php:125 +msgid "No users found." +msgstr "Aucun utilisateur trouvé." + +#: wp-admin/edit-form-advanced.php:407 wp-admin/options-discussion.php:16 +msgid "Discussion Settings" +msgstr "Options de discussion" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:70 wp-admin/options-discussion.php:74 +msgid "Other comment settings" +msgstr "Autres réglages des commentaires" + +#: wp-admin/options-discussion.php:81 +msgid "Users must be registered and logged in to comment" +msgstr "Un utilisateur doit être enregistré et connecté pour publier des commentaires" + +#. translators: %s: Number of levels. +#: wp-admin/options-discussion.php:131 +msgid "Enable threaded (nested) comments %s levels deep" +msgstr "Activer les commentaires imbriqués jusqu’à %s niveaux" + +#: wp-admin/options-discussion.php:143 +msgid "last" +msgstr "dernière" + +#: wp-admin/options-discussion.php:147 +msgid "first" +msgstr "première" + +#. translators: 1: Form field control for number of top level comments per +#. page, 2: Form field control for the 'first' or 'last' page. +#: wp-admin/options-discussion.php:150 +msgid "Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default" +msgstr "Diviser les commentaires en pages, avec %1$s commentaires de premier niveau par page et la %2$s page affichée par défaut" + +#: wp-admin/options-discussion.php:164 +msgid "older" +msgstr "ancien" + +#: wp-admin/options-discussion.php:168 +msgid "newer" +msgstr "récent" + +#. translators: %s: Form field control for 'older' or 'newer' comments. +#: wp-admin/options-discussion.php:171 +msgid "Comments should be displayed with the %s comments at the top of each page" +msgstr "Les commentaires doivent être affichés avec le plus %s en premier" + +#: wp-admin/options-discussion.php:187 +msgid "Anyone posts a comment" +msgstr "Un nouveau commentaire est publié" + +#: wp-admin/options-discussion.php:191 +msgid "A comment is held for moderation" +msgstr "Un commentaire est en attente de modération" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:195 wp-admin/options-discussion.php:199 +msgid "Before a comment appears" +msgstr "Avant la publication d’un commentaire" + +#: wp-admin/options-discussion.php:206 +msgid "Comment author must have a previously approved comment" +msgstr "L’auteur d’un commentaire doit avoir déjà au moins un commentaire approuvé" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:210 wp-admin/options-discussion.php:214 +msgid "Comment Moderation" +msgstr "Modération de commentaires" + +#. translators: %s: Number of links. +#: wp-admin/options-discussion.php:221 +msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" +msgstr "Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)" + +#: wp-admin/options-discussion.php:250 +msgid "Avatars" +msgstr "Avatars" + +#: wp-admin/options-discussion.php:266 +msgid "Avatar Display" +msgstr "Affichage des avatars" + +#: wp-admin/options-discussion.php:270 +msgid "Show Avatars" +msgstr "Afficher les avatars" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:275 wp-admin/options-discussion.php:279 +msgid "Maximum Rating" +msgstr "Classement maximal" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:286 +msgid "G — Suitable for all audiences" +msgstr "G — Visibles par tous" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:288 +msgid "PG — Possibly offensive, usually for audiences 13 and above" +msgstr "PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:290 +msgid "R — Intended for adult audiences above 17" +msgstr "R — Réservés aux personnes de plus de 17 ans" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:292 +msgid "X — Even more mature than above" +msgstr "X — Réservés aux adultes" + +#: wp-admin/options-discussion.php:318 +msgid "Blank" +msgstr "Vide" + +#: wp-admin/options-discussion.php:319 +msgid "Gravatar Logo" +msgstr "Logo Gravatar" + +#: wp-admin/options-discussion.php:320 +msgid "Identicon (Generated)" +msgstr "Identicon (généré)" + +#: wp-admin/options-discussion.php:321 +msgid "Wavatar (Generated)" +msgstr "Wavatar (généré)" + +#: wp-admin/options-discussion.php:322 +msgid "MonsterID (Generated)" +msgstr "MonsterID (généré)" + +#: wp-admin/options-general.php:20 +msgid "General Settings" +msgstr "Réglages généraux" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:279 wp-admin/options-general.php:283 +msgid "Membership" +msgstr "Inscription" + +#: wp-admin/options-general.php:287 +msgid "Anyone can register" +msgstr "Tout le monde peut s’enregistrer" + +#: wp-admin/options-general.php:292 +msgid "New User Default Role" +msgstr "Rôle par défaut de tout nouvel utilisateur" + +#: wp-admin/includes/class-wp-debug-data.php:84 +#: wp-admin/options-general.php:367 +msgid "Timezone" +msgstr "Fuseau horaire" + +#: wp-admin/options-general.php:417 +msgid "This timezone is currently in standard time." +msgstr "Ce fuseau horaire est actuellement à l’heure d’hiver." + +#: wp-admin/options-general.php:481 wp-admin/options-general.php:529 +msgid "Custom:" +msgstr "Personnalisé :" + +#: wp-admin/options-general.php:548 +msgid "Week Starts On" +msgstr "La semaine débute le" + +#: wp-admin/options-media.php:17 +msgid "Media Settings" +msgstr "Réglages des médias" + +#: wp-admin/options-media.php:55 +msgid "Image sizes" +msgstr "Tailles des images" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:60 wp-admin/options-media.php:64 +msgid "Thumbnail size" +msgstr "Taille des miniatures" + +#: wp-admin/options-media.php:74 +msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" +msgstr "Recadrer les images pour parvenir aux dimensions exactes (normalement, les miniatures sont au format carré)" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:79 wp-admin/options-media.php:83 +msgid "Medium size" +msgstr "Taille moyenne" + +#: wp-admin/options-media.php:86 wp-admin/options-media.php:102 +msgid "Max Width" +msgstr "Largeur maximale" + +#: wp-admin/options-media.php:89 wp-admin/options-media.php:105 +msgid "Max Height" +msgstr "Hauteur maximale" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:95 wp-admin/options-media.php:99 +msgid "Large size" +msgstr "Grande taille" + +#: wp-admin/options-media.php:126 +msgid "Uploading Files" +msgstr "Envoi de fichiers" + +#: wp-admin/options-media.php:138 +msgid "Store uploads in this folder" +msgstr "Stocker les fichiers envoyés dans ce dossier" + +#: wp-admin/options-media.php:150 +msgid "Full URL path to files" +msgstr "Adresse web complète pour les fichiers" + +#: wp-admin/options-media.php:152 +msgid "Configuring this is optional. By default, it should be blank." +msgstr "Ce réglage est facultatif. Par défaut, ce champ devrait être vide." + +#: wp-admin/options-media.php:163 +msgid "Organize my uploads into month- and year-based folders" +msgstr "Organiser mes fichiers envoyés dans des dossiers mensuels et annuels" + +#: wp-admin/options-permalink.php:176 +msgid "Permalink structure updated." +msgstr "Structure des permaliens enregistrée." + +#: wp-admin/options-permalink.php:252 +msgid "Day and name" +msgstr "Date et titre" + +#: wp-admin/options-permalink.php:258 +msgid "Month and name" +msgstr "Mois et titre" + +#: wp-admin/options-permalink.php:264 +msgid "Numeric" +msgstr "Numérique" + +#: wp-admin/options-permalink.php:365 +msgid "Custom Structure" +msgstr "Structure personnalisée" + +#: wp-admin/options-permalink.php:412 +msgid "Optional" +msgstr "Facultatif" + +#. translators: Prefix for category permalinks. +#: wp-admin/options-permalink.php:427 +msgid "Category base" +msgstr "Préfixe des catégories" + +#: wp-admin/options-reading.php:17 +msgid "Reading Settings" +msgstr "Options de lecture" + +#. translators: %s: URL to Pages screen. +#: wp-admin/options-reading.php:105 +msgid "A static page (select below)" +msgstr "Une page statique (choisir ci-dessous)" + +#. translators: %s: Select field to choose the page for posts. +#: wp-admin/options-reading.php:133 +msgid "Posts page: %s" +msgstr "Page des articles : %s" + +#: wp-admin/options-reading.php:150 +msgid "Warning: these pages should not be the same!" +msgstr "Attention : ces pages ne devraient pas être les mêmes !" + +#: wp-admin/options-reading.php:173 +msgid "Blog pages show at most" +msgstr "Les pages du site doivent afficher au plus" + +#: wp-admin/options-reading.php:175 +msgid "posts" +msgstr "articles" + +#: wp-admin/options-reading.php:179 +msgid "Syndication feeds show the most recent" +msgstr "Les flux de syndication affichent les derniers" + +#: wp-admin/options-reading.php:192 +msgid "Full text" +msgstr "Le texte complet" + +#: wp-admin/options-writing.php:17 +msgid "Writing Settings" +msgstr "Options d’écriture" + +#. translators: Hidden accessibility text. +#: wp-admin/options-writing.php:71 wp-admin/options-writing.php:75 +msgid "Formatting" +msgstr "Mise en forme" + +#: wp-admin/options-writing.php:80 +msgid "Convert emoticons like :-) and :-P to graphics on display" +msgstr "Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage" + +#: wp-admin/options-writing.php:86 +msgid "Default Post Category" +msgstr "Catégorie par défaut des articles" + +#: wp-admin/options-writing.php:120 +msgid "Default Link Category" +msgstr "Catégorie par défaut des liens" + +#: wp-admin/options-writing.php:163 +msgid "Mail Server" +msgstr "Serveur de messagerie" + +#: wp-admin/options-writing.php:165 +msgid "Port" +msgstr "Port" + +#: wp-admin/options-writing.php:170 +msgid "Login Name" +msgstr "Identifiant" + +#: wp-admin/options-writing.php:190 +msgid "Default Mail Category" +msgstr "Catégorie par défaut des articles envoyés par e-mail" + +#: wp-admin/options-writing.php:45 wp-admin/options-writing.php:219 +msgid "Update Services" +msgstr "Services de mise à jour" + +#: wp-admin/options.php:378 +msgid "All Settings" +msgstr "Toutes les options" + +#: wp-admin/plugin-editor.php:22 +msgid "Edit Plugins" +msgstr "Modifier les extensions" + +#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:125 +msgid "Files of this type are not editable." +msgstr "Les fichiers de ce type ne sont pas éditables." + +#: wp-admin/includes/ajax-actions.php:4909 wp-admin/plugin-editor.php:196 +#: wp-admin/theme-editor.php:195 +msgid "File edited successfully." +msgstr "Le fichier a bien été modifié." + +#: wp-admin/plugin-editor.php:243 +msgid "Select plugin to edit:" +msgstr "Sélectionnez l’extension à modifier :" + +#: wp-admin/plugin-editor.php:266 +msgid "Plugin Files" +msgstr "Fichiers de l’extension" + +#: wp-admin/plugin-editor.php:296 wp-admin/theme-editor.php:322 +msgid "Documentation:" +msgstr "Documentation :" + +#: wp-admin/plugin-editor.php:317 wp-admin/theme-editor.php:348 +msgid "Update File" +msgstr "Mettre à jour le fichier" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:112 +msgctxt "Plugin Installer" +msgid "Featured" +msgstr "Mises en avant" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:113 +msgctxt "Plugin Installer" +msgid "Popular" +msgstr "Populaires" + +#: wp-admin/plugins.php:565 +msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." +msgstr "Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici." + +#. translators: %s: Error message. +#: wp-admin/plugins.php:703 +msgid "Plugin could not be deleted due to an error: %s" +msgstr "L’extension n’a pu être supprimée suite à une erreur fatale : %s" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1204 +msgid "Visit plugin site" +msgstr "Aller sur le site de l’extension" + +#: wp-admin/includes/class-wp-plugins-list-table.php:667 +msgid "Clear List" +msgstr "Vider la liste" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:507 +msgctxt "plugins" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Toutes (%s)" +msgstr[1] "Toutes (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:516 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activée (%s)" +msgstr[1] "Activées (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:524 +msgid "Recently Active (%s)" +msgid_plural "Recently Active (%s)" +msgstr[0] "Récemment désactivée (%s)" +msgstr[1] "Récemment désactivées (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:532 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Désactivée (%s)" +msgstr[1] "Désactivées (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:426 +msgid "No plugins found." +msgstr "Aucune extension trouvée." + +#: wp-admin/theme-editor.php:22 +msgid "Edit Themes" +msgstr "Modifier les thèmes" + +#: wp-admin/theme-editor.php:244 +msgid "Select theme to edit:" +msgstr "Sélectionnez le thème à modifier :" + +#: wp-admin/themes.php:293 wp-admin/network/themes.php:412 +msgid "Theme deleted." +msgstr "Thème supprimé." + +#: wp-admin/themes.php:655 +msgid "Broken Themes" +msgstr "Thèmes endommagés" + +#: wp-admin/update-core.php:175 +msgid "Hide this update" +msgstr "Masquer cette mise à jour" + +#: wp-admin/update-core.php:177 +msgid "Bring back this update" +msgstr "Réafficher cette mise à jour" + +#: wp-admin/update-core.php:210 wp-admin/update-core.php:229 +msgid "Show hidden updates" +msgstr "Afficher les mises à jour cachées" + +#: wp-admin/update-core.php:211 +msgid "Hide hidden updates" +msgstr "Masquer les mises à jour cachées" + +#: wp-admin/update.php:90 +msgid "Plugin Reactivation" +msgstr "Réactivation d’extension" + +#: wp-admin/update.php:92 +msgid "Plugin reactivated successfully." +msgstr "L’extension a bien été réactivée." + +#: wp-admin/update.php:96 +msgid "Plugin failed to reactivate due to a fatal error." +msgstr "L’extension n’a pu être réactivée suite à une erreur fatale." + +#. translators: %s: Plugin name and version. +#: wp-admin/update.php:135 +msgid "Installing Plugin: %s" +msgstr "Extension en cours d’installation : %s" + +#. translators: %s: Theme name and version. +#: wp-admin/update.php:291 +msgid "Installing Theme: %s" +msgstr "Installation du thème : %s" + +#: wp-admin/includes/user.php:596 +msgid "Use https" +msgstr "Utiliser https" + +#: wp-admin/includes/user.php:597 +msgid "Always use https when visiting the admin" +msgstr "Toujours utiliser https lors de l’utilisation de l’administration" + +#: wp-admin/user-edit.php:218 +msgid "User updated." +msgstr "Utilisateur mis à jour." + +#: wp-admin/user-edit.php:290 +msgid "Personal Options" +msgstr "Options personnelles" + +#: wp-admin/user-edit.php:295 +msgid "Visual Editor" +msgstr "Éditeur visuel" + +#: wp-admin/user-edit.php:298 +msgid "Disable the visual editor when writing" +msgstr "Désactiver l’éditeur visuel pour écrire" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/misc.php:1029 wp-admin/user-edit.php:330 +msgid "Admin Color Scheme" +msgstr "Couleurs de l’interface d’administration" + +#: wp-admin/user-edit.php:356 +msgid "Enable keyboard shortcuts for comment moderation." +msgstr "Activer les raccourcis clavier pour la modération de commentaires." + +#: wp-admin/user-edit.php:482 wp-admin/user-new.php:538 +msgid "First Name" +msgstr "Prénom" + +#: wp-admin/user-edit.php:487 wp-admin/user-new.php:542 +msgid "Last Name" +msgstr "Nom" + +#: wp-admin/user-edit.php:492 +msgid "Nickname" +msgstr "Pseudonyme" + +#: wp-admin/user-edit.php:498 +msgid "Display name publicly as" +msgstr "Nom à afficher publiquement" + +#: wp-admin/user-edit.php:536 +msgid "Contact Info" +msgstr "Informations de contact" + +#: wp-admin/user-edit.php:605 +msgid "About Yourself" +msgstr "À propos de vous" + +#: wp-admin/user-edit.php:605 +msgid "About the user" +msgstr "À propos de l’utilisateur" + +#: wp-admin/user-edit.php:609 +msgid "Biographical Info" +msgstr "Renseignements biographiques" + +#: wp-admin/user-edit.php:611 +msgid "Share a little biographical information to fill out your profile. This may be shown publicly." +msgstr "Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement." + +#: wp-admin/user-edit.php:666 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: wp-admin/user-edit.php:691 +msgid "Type your new password again." +msgstr "Veuillez saisir une deuxième fois votre mot de passe." + +#: wp-admin/user-edit.php:937 +msgid "Update Profile" +msgstr "Mettre à jour le profil" + +#: wp-admin/user-edit.php:937 +msgid "Update User" +msgstr "Mettre à jour l’utilisateur" + +#: wp-admin/user-new.php:336 +msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." +msgstr "Envoi d’un message d’invitation au nouvel utilisateur. Un lien de confirmation devra d’abord être cliqué avant la création du compte." + +#: wp-admin/user-new.php:472 wp-admin/user-new.php:639 +msgid "Skip Confirmation Email" +msgstr "Passer la confirmation par e-mail" + +#: wp-admin/users.php:340 +msgid "Delete Users" +msgstr "Supprimer des utilisateurs" + +#: wp-admin/users.php:448 +msgid "There are no valid users selected for deletion." +msgstr "Aucun utilisateur valide n’est sélectionné pour la suppression." + +#: wp-admin/users.php:629 +msgid "New user created." +msgstr "Le nouvel utilisateur a été créé." + +#: wp-admin/users.php:692 +msgid "Other user roles have been changed." +msgstr "Les rôles des autres utilisateurs ont été modifiés." + +#: wp-admin/users.php:710 +msgid "Other users have been deleted." +msgstr "Les autres utilisateurs ont été supprimés." + +#. translators: 1: User role name, 2: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:231 +#: wp-admin/includes/class-wp-users-list-table.php:249 +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-users-list-table.php:309 +#: wp-admin/includes/class-wp-users-list-table.php:313 +msgid "Change role to…" +msgstr "Changer de rôle pour…" + +#: wp-admin/widgets-form.php:110 +msgid "Inactive Widgets" +msgstr "Widgets désactivés" + +#. translators: %s: Widget name. +#: wp-admin/widgets-form.php:283 +msgid "Widget %s" +msgstr "Widget %s" + +#: wp-admin/widgets-form.php:298 +msgid "Select both the sidebar for this widget and the position of the widget in that sidebar." +msgstr "Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale." + +#: wp-admin/widgets-form.php:345 +msgid "Save Widget" +msgstr "Enregistrer le widget" + +#: wp-admin/widgets-form.php:363 wp-admin/js/inline-edit-post.js:512 +#: wp-admin/js/inline-edit-tax.js:227 +msgid "Changes saved." +msgstr "Modifications enregistrées." + +#: wp-admin/includes/misc.php:1366 wp-admin/includes/post.php:2140 +#: wp-admin/widgets-form.php:367 +msgid "Error while saving." +msgstr "Erreur lors de la sauvegarde." + +#: wp-admin/widgets-form.php:368 +msgid "Error in displaying the widget settings form." +msgstr "Une erreur est survenue durant l’affichage du formulaire de paramétrage du widget." + +#. translators: Hidden accessibility text. +#: wp-admin/widgets-form.php:444 wp-admin/widgets-form.php:449 +msgid "Available Widgets" +msgstr "Widgets disponibles" + +#: wp-admin/widgets-form.php:113 +msgid "Drag widgets here to remove them from the sidebar but keep their settings." +msgstr "Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels." + +#: wp-admin/export.php:196 +msgid "Categories:" +msgstr "Catégories :" + +#: wp-admin/options-permalink.php:439 +msgid "Tag base" +msgstr "Base des étiquettes" + +#: wp-admin/options-reading.php:68 +msgid "Encoding for pages and feeds" +msgstr "Codage pour les pages et les flux RSS" + +#: wp-admin/plugins.php:411 +msgid "Yes, delete these files" +msgstr "Oui, supprimer ces fichiers" + +#: wp-admin/plugins.php:419 +msgid "No, return me to the plugin list" +msgstr "Non, retourner à la liste des extensions" + +#: wp-admin/includes/theme.php:1058 wp-admin/themes.php:1208 +msgid "Tags:" +msgstr "Étiquettes :" + +#: wp-admin/install.php:179 +msgid "Your Email" +msgstr "Votre adresse de messagerie" + +#: wp-admin/options-discussion.php:77 +msgid "Comment author must fill out name and email" +msgstr "L’auteur d’un commentaire doit renseigner son nom et son adresse de messagerie" + +#: wp-admin/options-discussion.php:312 +msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address." +msgstr "Les utilisateurs n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse de messagerie." + +#: wp-admin/options-writing.php:148 +msgid "Post via email" +msgstr "Envoi d’article par e-mail" + +#: wp-admin/upload.php:62 wp-admin/upload.php:116 +msgid "Media file permanently deleted." +msgstr "Fichier média définitivement supprimé." + +#: wp-admin/edit-tags.php:173 wp-admin/includes/class-wp-screen.php:297 +#: wp-admin/includes/post.php:2146 wp-admin/media-upload.php:47 +#: wp-admin/post.php:20 wp-admin/post.php:47 wp-admin/post.php:139 +#: wp-admin/term.php:43 +msgid "Sorry, you are not allowed to edit this item." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier cet élément." + +#: wp-admin/edit-tags.php:137 wp-admin/options.php:84 +msgid "Sorry, you are not allowed to delete these items." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ces éléments." + +#: wp-admin/users.php:684 +msgid "The current user’s role must have user editing capabilities." +msgstr "L’utilisateur actuel doit avoir un rôle lui permettant de modifier les utilisateurs." + +#: wp-admin/user-edit.php:905 +msgid "Additional Capabilities" +msgstr "Permissions supplémentaires" + +#: wp-admin/theme-install.php:60 wp-admin/theme-install.php:178 +#: wp-admin/theme-install.php:180 wp-admin/update.php:316 +msgid "Upload Theme" +msgstr "Téléverser un thème" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:122 +#: wp-admin/plugin-install.php:154 wp-admin/update.php:164 +msgid "Upload Plugin" +msgstr "Téléverser une extension" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-themes-list-table.php:231 +msgid "" +"You are about to delete this theme '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer le thème « %s ».\n" +"« Annuler » pour arrêter, « OK » pour supprimer." + +#: wp-admin/plugins.php:669 +msgid "Plugin could not be activated because it triggered a fatal error." +msgstr "L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale." + +#: wp-admin/options-writing.php:81 +msgid "WordPress should correct invalidly nested XHTML automatically" +msgstr "WordPress doit automatiquement corriger l’imbrication XHTML erronée" + +#: wp-admin/options-permalink.php:17 wp-admin/options-permalink.php:33 +msgid "Permalink Settings" +msgstr "Réglages des permaliens" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:178 wp-admin/options-discussion.php:182 +msgid "Email me whenever" +msgstr "M’envoyer un message lorsque" + +#. translators: %s: URL to "Fixing WordPress" forum. +#: wp-admin/maint/repair.php:161 +msgid "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance." +msgstr "Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations." + +#: wp-admin/includes/upgrade.php:223 +msgid "Hello world!" +msgstr "Bonjour tout le monde !" + +#. translators: Default category slug. +#: wp-admin/includes/upgrade.php:160 +msgctxt "Default category slug" +msgid "Uncategorized" +msgstr "Non classé" + +#. translators: Joining confirmation notification email subject. %s: Site +#. title. +#: wp-admin/user-new.php:135 +msgid "[%s] Joining Confirmation" +msgstr "[%s] Confirmation d’inscription" + +#: wp-admin/user-new.php:345 wp-admin/users.php:641 +#: wp-admin/network/user-new.php:94 +msgid "Edit user" +msgstr "Modifier l’utilisateur" + +#: wp-admin/upload.php:102 wp-admin/upload.php:123 +msgid "Media file restored from the Trash." +msgstr "Fichier média récupéré depuis la corbeille." + +#: wp-admin/upload.php:79 wp-admin/upload.php:118 +msgid "Media file moved to the Trash." +msgstr "Fichier média déplacé dans la corbeille." + +#: wp-admin/upgrade.php:74 +msgid "Your WordPress database is already up to date!" +msgstr "Votre base de données WordPress est déjà à jour !" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:532 wp-admin/update-core.php:541 +msgid "Compatibility with WordPress %s: Unknown" +msgstr "Compatibilité avec WordPress %s : inconnue" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:529 wp-admin/update-core.php:538 +msgid "Compatibility with WordPress %s: 100%% (according to its author)" +msgstr "Compatibilité avec WordPress %s : 100%% (selon l’auteur)" + +#. translators: %s: Post title. +#: wp-admin/revision.php:109 +msgid "Compare Revisions of “%s”" +msgstr "Comparer les révisions de « %s »" + +#: wp-admin/plugins.php:395 +msgid "Are you sure you want to delete these files?" +msgstr "Confirmez-vous la suppression de ces fichiers ?" + +#: wp-admin/options-privacy.php:191 +msgid "Privacy Settings" +msgstr "Réglages de confidentialité" + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:189 +msgid "Permalink structure updated. Remove write access on %s file now!" +msgstr "La structure des permaliens a été mise à jour. Retirez les droits d’accès au fichier %s dès maintenant !" + +#. translators: %s: Number of days. +#: wp-admin/options-discussion.php:95 +msgid "Automatically close comments on posts older than %s days" +msgstr "Fermer automatiquement les commentaires pour les publications datant de plus de %s jours" + +#. translators: %s: Site link. +#. translators: First post content. %s: Site link. +#: wp-admin/includes/schema.php:1294 wp-admin/includes/upgrade.php:196 +msgid "Welcome to %s. This is your first post. Edit or delete it, then start writing!" +msgstr "Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !" + +#: wp-admin/includes/class-wp-automatic-updater.php:482 +#: wp-admin/update-core.php:913 wp-admin/js/updates.js:854 +#: wp-admin/js/updates.js:1882 +msgid "Installation failed." +msgstr "Échec de l’installation" + +#. translators: %s: File name. +#: wp-admin/update.php:171 +msgid "Installing plugin from uploaded file: %s" +msgstr "Installation de l’extension à partir du fichier téléversé : %s" + +#. translators: %s: File name. +#: wp-admin/update.php:323 +msgid "Installing theme from uploaded file: %s" +msgstr "Installation du thème à partir du fichier téléversé : %s" + +#. translators: 1, 2, 3: Examples of random email addresses. +#: wp-admin/options-writing.php:153 +msgid "To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s." +msgstr "Pour publier par e-mail sur WordPress, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaînes aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s." + +#: wp-admin/includes/theme-install.php:197 +msgid "If you have a theme in a .zip format, you may install or update it by uploading it here." +msgstr "Si vous avez un thème au format .zip, vous pouvez l’installer en le téléversant ici." + +#: wp-admin/options-discussion.php:241 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son e-mail, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress »." + +#: wp-admin/options-discussion.php:227 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son adresse de messagerie, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress »." + +#: wp-admin/includes/class-theme-installer-skin.php:224 +msgid "This theme is already installed." +msgstr "Ce thème est déjà installé." + +#: wp-admin/includes/revision.php:97 +msgid "Removed" +msgstr "Retiré" + +#: wp-admin/includes/user.php:178 +msgid "Error: Passwords may not contain the character \"\\\"." +msgstr "Erreur : le mot de passe ne doit pas contenir le caractère « \\ »." + +#: wp-admin/includes/user.php:173 +msgid "Error: Please enter a password." +msgstr "Erreur : veuillez saisir un mot de passe." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:489 +msgid "If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved." +msgstr "Si vous rendez le fichier %s accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées." + +#: wp-admin/users.php:702 +msgid "You cannot delete the current user." +msgstr "Vous ne pouvez pas supprimer l’utilisateur en cours d’utilisation." + +#: wp-admin/post.php:143 +msgid "You cannot edit this item because it is in the Trash. Please restore it and try again." +msgstr "Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Restaurez-le, puis réessayez." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:521 +msgid "If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created." +msgstr "Si vous rendez temporairement le dossier racine accessible en écriture pour que WordPress y génère directement le fichier %s, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées." + +#: wp-admin/includes/user.php:207 +msgid "Error: Please enter an email address." +msgstr "Erreur : veuillez saisir une adresse e-mail." + +#. translators: %s: WP_PLUGIN_DIR constant value. +#: wp-admin/plugins.php:582 +msgid "If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." +msgstr "Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée." + +#: wp-admin/edit-tags.php:160 wp-admin/edit-tags.php:180 wp-admin/post.php:127 +#: wp-admin/term.php:31 +msgid "You attempted to edit an item that does not exist. Perhaps it was deleted?" +msgstr "Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?" + +#: wp-admin/install.php:372 +msgid "Please provide the following information. Do not worry, you can always change these settings later." +msgstr "Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard." + +#: wp-admin/comment.php:145 +msgid "You are about to approve the following comment:" +msgstr "Vous êtes sur le point d’approuver le commentaire suivant :" + +#: wp-admin/comment.php:382 +msgid "Unknown action." +msgstr "Action inconnue." + +#: wp-admin/includes/class-custom-background.php:243 +#: wp-admin/includes/theme.php:334 +msgid "Custom Background" +msgstr "Arrière-plan personnalisé" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-background.php:264 +msgid "Background updated. Visit your site to see how it looks." +msgstr "L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu." + +#: wp-admin/includes/class-custom-background.php:353 +#: wp-admin/includes/class-custom-image-header.php:663 +msgid "Choose an image from your computer:" +msgstr "Choisissez une image sur votre ordinateur :" + +#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2602 +#: wp-admin/nav-menus.php:922 wp-admin/options.php:436 +msgid "Save Changes" +msgstr "Enregistrer les modifications" + +#: wp-admin/includes/class-custom-image-header.php:512 +#: wp-admin/includes/theme.php:336 +msgid "Custom Header" +msgstr "Personnalisation de l’en-tête" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-image-header.php:533 +msgid "Header updated. Visit your site to see how it looks." +msgstr "L’en-tête a été mis à jour. Visiter le site pour voir son nouvel aspect." + +#: wp-admin/includes/class-custom-image-header.php:915 +#: wp-admin/includes/class-custom-image-header.php:1074 +msgid "Image Processing Error" +msgstr "Erreur lors du traitement de l’image" + +#: wp-admin/includes/class-custom-image-header.php:933 +msgid "Choose the part of the image you want to use as your header." +msgstr "Choisissez la partie de l’image que vous voulez utiliser comme en-tête." + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:814 +#: wp-admin/includes/class-wp-posts-list-table.php:1550 +msgid "View “%s”" +msgstr "Afficher « %s »" + +#: wp-admin/includes/class-wp-media-list-table.php:540 +#: wp-admin/includes/class-wp-posts-list-table.php:1192 +msgid "Unpublished" +msgstr "Non publié" + +#: wp-admin/includes/class-wp-media-list-table.php:611 +msgid "(Unattached)" +msgstr "(Non attaché)" + +#: wp-admin/includes/class-wp-media-list-table.php:194 +#: wp-admin/includes/class-wp-media-list-table.php:621 +#: wp-admin/includes/class-wp-media-list-table.php:847 +msgid "Attach" +msgstr "Joindre" + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:344 +msgid "%s comment marked as spam." +msgid_plural "%s comments marked as spam." +msgstr[0] "%s commentaire marqué comme indésirable." +msgstr[1] "%s commentaires marqués comme indésirables." + +#: wp-admin/edit-form-comment.php:117 +msgid "Approved" +msgstr "Approuvé" + +#: wp-admin/edit-comments.php:436 +msgid "Search Comments" +msgstr "Chercher un commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:363 +#: wp-admin/includes/class-wp-comments-list-table.php:743 +#: wp-admin/includes/class-wp-comments-list-table.php:768 +#: wp-admin/includes/dashboard.php:751 +msgid "Unapprove" +msgstr "Désapprouver" + +#: wp-admin/includes/class-wp-comments-list-table.php:367 +#: wp-admin/includes/class-wp-comments-list-table.php:751 +#: wp-admin/includes/class-wp-comments-list-table.php:760 +#: wp-admin/includes/dashboard.php:743 +msgid "Approve" +msgstr "Approuver" + +#: wp-admin/includes/class-wp-comments-list-table.php:505 +#: wp-admin/includes/class-wp-posts-list-table.php:1932 +msgid "Pings" +msgstr "Pings" + +#: wp-admin/includes/class-wp-comments-list-table.php:421 +#: wp-admin/includes/class-wp-links-list-table.php:120 +#: wp-admin/includes/class-wp-media-list-table.php:217 +#: wp-admin/includes/class-wp-posts-list-table.php:600 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:344 +msgid "Filter" +msgstr "Filtrer" + +#: wp-admin/includes/class-wp-comments-list-table.php:429 +msgid "Empty Spam" +msgstr "Supprimer tous les indésirables" + +#: wp-admin/includes/class-wp-comments-list-table.php:225 +msgid "No comments found." +msgstr "Aucun commentaire trouvé." + +#: wp-admin/edit-form-advanced.php:183 wp-admin/edit-form-advanced.php:198 +msgid "Custom field updated." +msgstr "Champ personnalisé mis à jour." + +#: wp-admin/edit-form-advanced.php:184 wp-admin/edit-form-advanced.php:199 +msgid "Custom field deleted." +msgstr "Champ personnalisé supprimé." + +#: wp-admin/edit-form-advanced.php:189 +msgid "Post saved." +msgstr "Article enregistré." + +#: wp-admin/includes/meta-boxes.php:1646 +msgid "Send Trackbacks" +msgstr "Envoyer des rétroliens" + +#: wp-admin/includes/meta-boxes.php:1652 +msgid "Custom Fields" +msgstr "Champs personnalisés" + +#. translators: 1: Name of most recent post author, 2: Post edited date, 3: +#. Post edited time. +#. translators: 1: User's display name, 2: Date of last edit, 3: Time of last +#. edit. +#: wp-admin/edit-form-advanced.php:654 wp-admin/includes/ajax-actions.php:2895 +msgid "Last edited by %1$s on %2$s at %3$s" +msgstr "Dernière modification par %1$s, le %2$s à %3$s" + +#. translators: 1: Post edited date, 2: Post edited time. +#. translators: 1: Date of last edit, 2: Time of last edit. +#: wp-admin/edit-form-advanced.php:662 wp-admin/includes/ajax-actions.php:2898 +msgid "Last edited on %1$s at %2$s" +msgstr "Dernière modification le %1$s à %2$s" + +#: wp-admin/includes/template.php:509 +msgid "Update Comment" +msgstr "Mettre à jour le commentaire" + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:16 +msgid "Links / Edit Link" +msgstr "Liens / Modifier le lien" + +#: wp-admin/edit-link-form.php:17 wp-admin/includes/meta-boxes.php:1149 +msgid "Update Link" +msgstr "Mettre à jour le lien" + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:22 +msgid "Links / Add New Link" +msgstr "Liens / Ajouter un nouveau lien" + +#: wp-admin/edit-link-form.php:97 +msgid "Link added." +msgstr "Lien ajouté." + +#: wp-admin/edit-link-form.php:126 +msgid "Example: Nifty blogging software" +msgstr "Exemple : Logiciel de création de sites rapide, puissant et efficace" + +#: wp-admin/edit-link-form.php:131 +msgid "Web Address" +msgstr "Adresse web" + +#: wp-admin/edit-link-form.php:142 +msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." +msgstr "Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit." + +#: wp-admin/includes/edit-tag-messages.php:15 +msgid "Item deleted." +msgstr "Contenu supprimé." + +#: wp-admin/includes/edit-tag-messages.php:16 +msgid "Item updated." +msgstr "Contenu mis à jour." + +#: wp-admin/includes/edit-tag-messages.php:17 +msgid "Item not added." +msgstr "Contenu non ajouté." + +#: wp-admin/includes/edit-tag-messages.php:19 +msgid "Items deleted." +msgstr "Élements supprimés." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:359 +msgid "%s post updated." +msgid_plural "%s posts updated." +msgstr[0] "%s article mis à jour." +msgstr[1] "%s articles mis à jour." + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:324 +msgctxt "posts" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Le mien (%s)" +msgstr[1] "Les miens (%s)" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:345 +msgctxt "posts" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/export.php:20 wp-admin/menu.php:375 +msgid "Export" +msgstr "Exporter" + +#: wp-admin/export.php:176 +msgid "When you click the button below WordPress will create an XML file for you to save to your computer." +msgstr "Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur." + +#: wp-admin/export.php:345 +msgid "Download Export File" +msgstr "Télécharger le fichier d’export" + +#: wp-admin/import.php:102 +msgid "No importers are available." +msgstr "Aucun outil d’importation n’est disponible." + +#: wp-admin/includes/import.php:190 +msgid "Blogger" +msgstr "Blogger" + +#: wp-admin/includes/import.php:202 +msgid "LiveJournal" +msgstr "LiveJournal" + +#: wp-admin/includes/import.php:208 +msgid "Movable Type and TypePad" +msgstr "Movable Type et TypePad" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:297 +msgid "Changing to %s" +msgstr "Modifier à %s" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:317 +msgid "Found %s" +msgstr "Trouvé %s" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:37 +msgid "The ftp PHP extension is not available" +msgstr "L’extension ftp de PHP n’est pas disponible" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ftpext.php:110 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:113 +#: wp-admin/includes/class-wp-filesystem-ssh2.php:147 +msgid "Username/Password incorrect for %s" +msgstr "Le couple identifiant / mot de passe est incorrect pour %s" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:69 +msgid "The ssh2 PHP extension is not available" +msgstr "L’extension ssh2 de PHP n’est pas disponible" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:160 +msgid "Public and Private keys incorrect for %s" +msgstr "Les clés publiques et privées de %s ne sont pas correctes" + +#: wp-admin/includes/class-wp-upgrader.php:190 wp-admin/includes/plugin.php:954 +#: wp-admin/includes/theme.php:66 +msgid "Filesystem error." +msgstr "Erreur du système de fichier." + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-upgrader.php:197 +msgid "Unable to locate needed folder (%s)." +msgstr "Impossible de localiser le dossier nécessaire (%s)." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:63 +#: wp-admin/includes/class-wp-upgrader.php:199 +msgid "Download failed." +msgstr "Le téléchargement a échoué." + +#: wp-admin/includes/class-wp-upgrader.php:200 +msgid "Installing the latest version…" +msgstr "Installation de la dernière version…" + +#: wp-admin/includes/class-wp-upgrader.php:202 +msgid "Destination folder already exists." +msgstr "Le dossier de destination existe déjà." + +#: wp-admin/includes/class-wp-upgrader.php:203 wp-admin/includes/file.php:1783 +#: wp-admin/includes/file.php:1964 wp-admin/includes/file.php:2057 +#: wp-admin/includes/file.php:2140 +msgid "Could not create directory." +msgstr "Impossible de créer le dossier." + +#: wp-admin/includes/class-file-upload-upgrader.php:75 +#: wp-admin/includes/file.php:1697 wp-admin/includes/file.php:1895 +msgid "Incompatible Archive." +msgstr "Archive incompatible." + +#: wp-admin/includes/class-wp-upgrader.php:207 +#: wp-admin/includes/update-core.php:1214 +msgid "Enabling Maintenance mode…" +msgstr "Activation du mode maintenance…" + +#: wp-admin/includes/class-wp-upgrader.php:208 +#: wp-admin/includes/update-core.php:1363 +msgid "Disabling Maintenance mode…" +msgstr "Désactivation du mode maintenance…" + +#: wp-admin/includes/class-plugin-upgrader.php:57 +msgid "The plugin is at the latest version." +msgstr "Vous avez la dernière version de cette extension." + +#: wp-admin/includes/class-core-upgrader.php:34 +#: wp-admin/includes/class-language-pack-upgrader.php:118 +#: wp-admin/includes/class-plugin-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:60 +msgid "Unpacking the update…" +msgstr "Décompression de la mise à jour…" + +#: wp-admin/includes/class-plugin-upgrader.php:62 +msgid "Removing the old version of the plugin…" +msgstr "Retrait de l’ancienne version de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:63 +msgid "Could not remove the old plugin." +msgstr "Impossible de supprimer l’ancienne extension." + +#: wp-admin/includes/class-plugin-upgrader.php:78 +#: wp-admin/includes/class-theme-upgrader.php:76 +msgid "Unpacking the package…" +msgstr "Décompression de l’archive de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:79 +msgid "Installing the plugin…" +msgstr "Installation de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:84 +msgid "Plugin installed successfully." +msgstr "L’extension a bien été installée." + +#: wp-admin/includes/class-theme-upgrader.php:56 +msgid "The theme is at the latest version." +msgstr "Vous avez la dernière version de ce thème." + +#: wp-admin/includes/class-theme-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:78 +msgid "Removing the old version of the theme…" +msgstr "Retrait de l’ancienne version du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:62 +#: wp-admin/includes/class-theme-upgrader.php:79 +msgid "Could not remove the old theme." +msgstr "Impossible de supprimer l’ancien thème." + +#: wp-admin/includes/class-theme-upgrader.php:77 +msgid "Installing the theme…" +msgstr "Installation du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:82 +msgid "Theme installed successfully." +msgstr "Le thème a bien été installé." + +#: wp-admin/includes/class-core-upgrader.php:29 +msgid "WordPress is at the latest version." +msgstr "Vous avez la dernière version de WordPress." + +#: wp-admin/includes/class-core-upgrader.php:35 +msgid "Could not copy files." +msgstr "Impossible de copier les fichiers." + +#: wp-admin/includes/class-plugin-installer-skin.php:116 +#: wp-admin/includes/class-plugin-upgrader-skin.php:96 +msgid "Activate Plugin" +msgstr "Activer l’extension" + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:84 +msgid "Successfully installed the theme %1$s %2$s." +msgstr "Le thème %1$s %2$s a bien été installé." + +#. translators: %s: Post title. +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-posts-list-table.php:1541 +#: wp-admin/includes/class-wp-theme-install-list-table.php:282 +msgid "Preview “%s”" +msgstr "Prévisualiser « %s »" + +#: wp-admin/includes/class-file-upload-upgrader.php:57 +#: wp-admin/includes/class-file-upload-upgrader.php:103 +#: wp-admin/includes/class-file-upload-upgrader.php:119 +msgid "Please select a file" +msgstr "Veuillez choisir un fichier" + +#: wp-admin/includes/dashboard.php:77 +msgid "Right Now" +msgstr "Aujourd’hui" + +#: wp-admin/includes/dashboard.php:1601 +msgid "Other WordPress News" +msgstr "Autres actualités de WordPress (en français)" + +#: wp-admin/includes/dashboard.php:148 +msgid "View all" +msgstr "Afficher tout" + +#: wp-admin/includes/dashboard.php:210 +msgid "Configure" +msgstr "Configurer" + +#: wp-admin/includes/class-wp-comments-list-table.php:750 +#: wp-admin/includes/class-wp-comments-list-table.php:759 +#: wp-admin/includes/dashboard.php:742 +msgid "Approve this comment" +msgstr "Approuver ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:742 +#: wp-admin/includes/class-wp-comments-list-table.php:767 +#: wp-admin/includes/dashboard.php:750 +msgid "Unapprove this comment" +msgstr "Désapprouver ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:845 +#: wp-admin/includes/dashboard.php:765 +msgid "Reply to this comment" +msgstr "Répondre à ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:777 +#: wp-admin/includes/dashboard.php:773 +msgid "Mark this comment as spam" +msgstr "Marquer ce commentaire comme indésirable" + +#. translators: "Mark as spam" link. +#: wp-admin/includes/class-wp-comments-list-table.php:779 +#: wp-admin/includes/dashboard.php:775 +msgctxt "verb" +msgid "Spam" +msgstr "Indésirable" + +#: wp-admin/includes/dashboard.php:866 wp-admin/includes/dashboard.php:873 +#: wp-admin/includes/dashboard.php:903 wp-admin/includes/dashboard.php:910 +msgid "[Pending]" +msgstr "[En attente]" + +#: wp-admin/includes/dashboard.php:1174 +msgid "This widget requires JavaScript." +msgstr "Ce widget requiert JavaScript." + +#: wp-admin/includes/file.php:26 +msgid "Main Index Template" +msgstr "Modèle pour la page d’accueil" + +#: wp-admin/includes/file.php:57 +msgid "RTL Stylesheet" +msgstr "Feuille de style RTL" + +#: wp-admin/includes/file.php:65 +msgid "Popup Comments" +msgstr "Commentaires en popup" + +#: wp-admin/includes/file.php:30 +msgid "Category Template" +msgstr "Modèle pour les catégories" + +#: wp-admin/includes/file.php:21 +msgid "Search Form" +msgstr "Formulaire de recherche" + +#: wp-admin/includes/file.php:37 +msgid "Single Post" +msgstr "Article seul" + +#: wp-admin/includes/file.php:22 +msgid "404 Template" +msgstr "Modèle pour l’erreur 404" + +#: wp-admin/includes/file.php:23 +msgid "Links Template" +msgstr "Modèle pour les liens" + +#: wp-admin/includes/file.php:16 +msgid "Theme Functions" +msgstr "Fonctions du thème" + +#: wp-admin/includes/file.php:42 +msgid "Attachment Template" +msgstr "Modèle pour les fichiers attachés" + +#: wp-admin/includes/file.php:43 +msgid "Image Attachment Template" +msgstr "Modèle pour les images attachées" + +#: wp-admin/includes/file.php:44 +msgid "Video Attachment Template" +msgstr "Modèle pour les vidéos attachées" + +#: wp-admin/includes/file.php:45 +msgid "Audio Attachment Template" +msgstr "Modèle pour les fichiers audio attachés" + +#: wp-admin/includes/file.php:46 +msgid "Application Attachment Template" +msgstr "Modèle pour les programmes attachés" + +#: wp-admin/includes/file.php:59 +msgid "my-hacks.php (legacy hacks support)" +msgstr "my-hacks.php (reconnaissance des hacks existants)" + +#: wp-admin/includes/file.php:60 +msgid ".htaccess (for rewrite rules )" +msgstr ".htaccess (pour les règles de réécriture)" + +#: wp-admin/includes/file.php:63 +msgid "Comments Template" +msgstr "Modèle pour les commentaires" + +#: wp-admin/includes/file.php:64 +msgid "Popup Comments Template" +msgstr "Modèle pour la fenêtre de commentaires" + +#: wp-admin/includes/file.php:901 +msgid "The uploaded file was only partially uploaded." +msgstr "Le fichier n’a été que partiellement envoyé." + +#: wp-admin/includes/file.php:902 +msgid "No file was uploaded." +msgstr "Aucun fichier n’a été envoyé." + +#: wp-admin/includes/file.php:904 +msgid "Missing a temporary folder." +msgstr "Un dossier temporaire est manquant." + +#: wp-admin/includes/file.php:905 +msgid "Failed to write file to disk." +msgstr "Échec de l’écriture du fichier sur le disque." + +#: wp-admin/includes/file.php:906 +msgid "File upload stopped by extension." +msgstr "L’envoi de fichier est arrêté par l’extension." + +#: wp-admin/includes/file.php:920 +msgid "Invalid form submission." +msgstr "Envoi non valide du formulaire." + +#: wp-admin/includes/file.php:931 +msgid "Specified file failed upload test." +msgstr "Le test d’envoi du fichier spécifié a échoué." + +#: wp-admin/includes/file.php:1707 wp-admin/includes/file.php:1812 +msgid "Could not retrieve file from archive." +msgstr "Impossible de récupérer le fichier depuis l’archive." + +#: wp-admin/includes/file.php:1832 +msgid "Could not extract file from archive." +msgstr "Impossible d’extraire les fichiers depuis l’archive." + +#: wp-admin/includes/file.php:1837 wp-admin/includes/file.php:1991 +#: wp-admin/includes/file.php:2049 wp-admin/includes/update-core.php:1416 +msgid "Could not copy file." +msgstr "Impossible de copier le fichier." + +#: wp-admin/includes/file.php:1899 +msgid "Empty archive." +msgstr "Archive vide." + +#: wp-admin/includes/file.php:2528 +msgid "FTP" +msgstr "FTP" + +#: wp-admin/includes/file.php:2531 +msgid "FTPS (SSL)" +msgstr "FTPS (SSL)" + +#: wp-admin/includes/file.php:2534 +msgid "SSH2" +msgstr "SSH2" + +#: wp-admin/includes/file.php:2636 +msgid "Authentication Keys" +msgstr "Clés d’authentification" + +#: wp-admin/includes/file.php:2638 +msgid "Public Key:" +msgstr "Clé publique :" + +#: wp-admin/includes/file.php:2642 +msgid "Private Key:" +msgstr "Clé privée :" + +#: wp-admin/includes/file.php:2615 +msgid "Connection Type" +msgstr "Type de connexion" + +#: wp-admin/includes/file.php:2667 +msgid "Proceed" +msgstr "Continuer" + +#: wp-admin/includes/image-edit.php:126 +msgid "Scale Image" +msgstr "Redimensionnement de l’image" + +#. translators: %s: Image width and height in pixels. +#: wp-admin/includes/image-edit.php:141 +msgid "Original dimensions %s" +msgstr "Taille originale : %s" + +#: wp-admin/includes/class-custom-background.php:337 +#: wp-admin/includes/class-custom-background.php:341 +msgid "Restore Original Image" +msgstr "Rétablir l’image originale" + +#: wp-admin/includes/image-edit.php:179 +msgid "Previously edited copies of the image will not be deleted." +msgstr "Les copies de l’image précédemment modifiées ne seront pas effacées." + +#: wp-admin/includes/image-edit.php:184 +msgid "Restore image" +msgstr "Rétablir l’image" + +#: wp-admin/includes/image-edit.php:202 +msgid "Crop Aspect Ratio" +msgstr "Proportion de taille du recadrage" + +#: wp-admin/includes/image-edit.php:205 +msgid "Crop Selection" +msgstr "Sélection de recadrage" + +#: wp-admin/includes/image-edit.php:210 +msgid "Aspect ratio:" +msgstr "Proportion de taille :" + +#: wp-admin/includes/image-edit.php:230 +msgid "Selection:" +msgstr "Sélection :" + +#: wp-admin/includes/image-edit.php:283 +msgid "Thumbnail Settings" +msgstr "Réglages de la miniature" + +#: wp-admin/includes/image-edit.php:297 +msgid "Current thumbnail" +msgstr "Miniature actuelle" + +#: wp-admin/includes/image-edit.php:301 +msgid "Apply changes to:" +msgstr "Appliquer les modifications à :" + +#: wp-admin/includes/image-edit.php:305 +msgid "All image sizes" +msgstr "Toutes les tailles" + +#: wp-admin/includes/image-edit.php:315 +msgid "All sizes except thumbnail" +msgstr "Toutes les tailles sauf la miniature" + +#: wp-admin/includes/image-edit.php:810 +msgid "Cannot load image metadata." +msgstr "Impossible de charger les métadonnées de l’image." + +#: wp-admin/includes/image-edit.php:869 +msgid "Cannot save image metadata." +msgstr "Impossible d’enregistrer les métadonnées de l’image." + +#: wp-admin/includes/image-edit.php:874 +msgid "Image metadata is inconsistent." +msgstr "Les métadonnées de l’image ne sont pas cohérentes." + +#: wp-admin/includes/image-edit.php:876 +msgid "Image restored successfully." +msgstr "L’image a bien été rétablie." + +#: wp-admin/includes/image-edit.php:941 +msgid "Error while saving the scaled image. Please reload the page and try again." +msgstr "Une erreur est survenue pendant la modification de l’échelle de l’image. Veuillez recharger la page pour faire une nouvelle tentative." + +#: wp-admin/includes/image-edit.php:951 +msgid "Nothing to save, the image has not changed." +msgstr "Rien à enregistrer, l’image n’a pas été modifiée." + +#: wp-admin/includes/image-edit.php:1140 +msgid "Image saved" +msgstr "Image enregistrée" + +#: wp-admin/includes/media.php:18 +msgid "From Computer" +msgstr "Depuis votre ordinateur" + +#: wp-admin/includes/media.php:19 +msgid "From URL" +msgstr "Depuis le Web" + +#. translators: %s: Number of attachments. +#: wp-admin/includes/media.php:64 +msgid "Gallery (%s)" +msgstr "Galerie (%s)" + +#: wp-admin/includes/media.php:540 +msgid "Uploads" +msgstr "Fichiers envoyés" + +#: wp-admin/includes/class-wp-debug-data.php:68 +#: wp-admin/includes/class-wp-privacy-policy-content.php:704 +#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2139 +#: wp-admin/install.php:77 wp-admin/maint/repair.php:24 +#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:69 +msgid "WordPress" +msgstr "WordPress" + +#: wp-admin/includes/media.php:1289 wp-admin/includes/media.php:1425 +msgid "File URL" +msgstr "Adresse web du fichier" + +#: wp-admin/includes/media.php:1429 +msgid "Location of the uploaded file." +msgstr "Emplacement du fichier envoyé." + +#: wp-admin/includes/media.php:1620 wp-admin/includes/media.php:2577 +#: wp-admin/setup-config.php:245 wp-admin/js/password-toggle.js:35 +#: wp-admin/js/user-profile.js:86 +msgid "Show" +msgstr "Afficher" + +#: wp-admin/includes/media.php:1729 wp-admin/includes/media.php:3010 +#: wp-admin/includes/media.php:3016 +msgid "Insert into Post" +msgstr "Insérer dans l’article" + +#: wp-admin/includes/media.php:2354 +msgid "Add media files from your computer" +msgstr "Ajouter un fichier média depuis votre ordinateur" + +#: wp-admin/includes/media.php:2384 wp-admin/includes/media.php:2602 +#: wp-admin/includes/media.php:2909 +msgid "Save all changes" +msgstr "Enregistrer toutes les modifications" + +#: wp-admin/includes/media.php:2576 +msgid "All Tabs:" +msgstr "Tous les onglets :" + +#: wp-admin/includes/media.php:2580 +msgid "Sort Order:" +msgstr "Ordre de tri :" + +#: wp-admin/includes/media.php:2581 wp-admin/includes/media.php:2659 +msgid "Ascending" +msgstr "Croissant" + +#: wp-admin/includes/media.php:2582 wp-admin/includes/media.php:2662 +msgid "Descending" +msgstr "Décroissant" + +#: wp-admin/includes/media.php:2623 +msgid "Link thumbnails to:" +msgstr "Lier les miniatures à :" + +#: wp-admin/includes/media.php:2628 +msgid "Image File" +msgstr "Fichier image" + +#: wp-admin/includes/media.php:2638 +msgid "Order images by:" +msgstr "Ranger les images par :" + +#: wp-admin/includes/media.php:2643 +msgid "Menu order" +msgstr "Ordre du menu" + +#: wp-admin/includes/media.php:2645 +msgid "Date/Time" +msgstr "Horodatage" + +#: wp-admin/includes/media.php:2646 +msgid "Random" +msgstr "Aléatoire" + +#: wp-admin/includes/media.php:2654 +msgid "Order:" +msgstr "Ordre :" + +#: wp-admin/includes/media.php:2669 +msgid "Gallery columns:" +msgstr "Colonnes de galerie :" + +#: wp-admin/includes/media.php:2690 +msgid "Update gallery settings" +msgstr "Mettre à jour les réglages de galerie" + +#: wp-admin/includes/media.php:2791 +msgid "All Types" +msgstr "Tous les types" + +#: wp-admin/includes/media.php:2883 +msgid "Filter »" +msgstr "Filtrer »" + +#: wp-admin/includes/media.php:2930 +msgid "Image Caption" +msgstr "Légende de l’image" + +#: wp-admin/includes/media.php:2999 +msgid "Link Image To:" +msgstr "Lier l’image à :" + +#: wp-admin/includes/media.php:3004 +msgid "Link to image" +msgstr "Lier à l’image" + +#: wp-admin/includes/media.php:2973 +msgid "Link text, e.g. “Ransom Demands (PDF)”" +msgstr "Texte du lien, par exemple « Théorie sur le chaos (PDF) »" + +#: wp-admin/includes/meta-boxes.php:71 +msgid "Preview Changes" +msgstr "Prévisualiser les modifications" + +#: wp-admin/edit-form-comment.php:113 wp-admin/export.php:237 +#: wp-admin/export.php:289 wp-admin/includes/meta-boxes.php:104 +msgid "Status:" +msgstr "État :" + +#: wp-admin/includes/meta-boxes.php:214 +msgid "Stick this post to the front page" +msgstr "Mettre cet article en avant sur la page d’accueil" + +#: wp-admin/includes/meta-boxes.php:246 wp-admin/includes/meta-boxes.php:260 +msgid "Publish immediately" +msgstr "Publier tout de suite" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 +msgid "+ Add New Category" +msgstr "+ Ajouter une nouvelle catégorie" + +#: wp-admin/includes/meta-boxes.php:1211 +msgid "New category name" +msgstr "Nom de la nouvelle catégorie" + +#: wp-admin/includes/meta-boxes.php:777 +msgid "Already pinged:" +msgstr "Déjà notifié(s) par ping :" + +#: wp-admin/includes/meta-boxes.php:790 +msgid "Separate multiple URLs with spaces" +msgstr "Séparez les adresses web par des espaces" + +#: wp-admin/includes/class-wp-posts-list-table.php:1833 +msgid "Main Page (no parent)" +msgstr "Page principale (pas de page parente)" + +#: wp-admin/includes/meta-boxes.php:1114 +msgid "Visit Link" +msgstr "Visiter le lien" + +#: wp-admin/includes/meta-boxes.php:1122 +msgid "Keep this link private" +msgstr "Ce lien est privé" + +#: wp-admin/includes/meta-boxes.php:1239 +msgid "_blank — new window or tab." +msgstr "_blank — nouvelle fenêtre ou onglet." + +#: wp-admin/includes/meta-boxes.php:1245 +msgid "_none — same window or tab." +msgstr "_none — même fenêtre ou onglet." + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1321 +msgid "rel:" +msgstr "rel :" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1325 wp-admin/includes/meta-boxes.php:1330 +msgid "identity" +msgstr "identité" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1339 wp-admin/includes/meta-boxes.php:1344 +msgid "friendship" +msgstr "amitié" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1348 +msgid "contact" +msgstr "contact" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1351 +msgid "acquaintance" +msgstr "connaissance" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1357 wp-admin/includes/meta-boxes.php:1408 +#: wp-admin/includes/meta-boxes.php:1437 +msgid "none" +msgstr "aucune" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1362 wp-admin/includes/meta-boxes.php:1367 +msgid "physical" +msgstr "physique" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1376 wp-admin/includes/meta-boxes.php:1381 +msgid "professional" +msgstr "professionnel" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1385 +msgid "co-worker" +msgstr "collègue de travail" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1388 +msgid "colleague" +msgstr "confrère" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1393 wp-admin/includes/meta-boxes.php:1398 +msgid "geographical" +msgstr "géographique" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1402 +msgid "co-resident" +msgstr "colocataire" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1405 +msgid "neighbor" +msgstr "voisin" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1413 wp-admin/includes/meta-boxes.php:1418 +msgid "family" +msgstr "famille" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1422 +msgid "child" +msgstr "enfant" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1425 +msgid "kin" +msgstr "apparenté" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1428 +msgid "parent" +msgstr "parent" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1431 +msgid "sibling" +msgstr "frère/sœur" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1434 +msgid "spouse" +msgstr "conjoint" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1442 wp-admin/includes/meta-boxes.php:1447 +msgid "romantic" +msgstr "romantique" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1451 +msgid "muse" +msgstr "muse" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1454 +msgid "crush" +msgstr "coup de foudre" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1460 +msgid "sweetheart" +msgstr "être aimé" + +#: wp-admin/includes/meta-boxes.php:1481 +msgid "Image Address" +msgstr "Adresse de l’image" + +#: wp-admin/includes/meta-boxes.php:1485 +msgid "RSS Address" +msgstr "Adresse du flux RSS" + +#: wp-admin/includes/meta-boxes.php:1489 +msgid "Notes" +msgstr "Commentaires" + +#: wp-admin/includes/class-wp-links-list-table.php:137 +#: wp-admin/includes/class-wp-links-list-table.php:149 +#: wp-admin/includes/meta-boxes.php:1493 +msgid "Rating" +msgstr "Note" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:337 +#: wp-admin/includes/plugin-install.php:341 +msgid "Search Plugins" +msgstr "Chercher parmi les extensions" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:360 +msgid "Plugin zip file" +msgstr "Archive Zip de l’extension" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/plugin-install.php:737 +msgid "(based on %s rating)" +msgid_plural "(based on %s ratings)" +msgstr[0] "(basée sur %s vote)" +msgstr[1] "(basée sur %s votes)" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:697 +#: wp-admin/includes/plugin-install.php:673 +msgid "Last Updated:" +msgstr "Dernière mise à jour :" + +#: wp-admin/includes/plugin-install.php:681 +msgid "Requires WordPress Version:" +msgstr "Nécessite WordPress en version :" + +#. translators: %s: Version number. +#: wp-admin/includes/plugin-install.php:684 +#: wp-admin/includes/plugin-install.php:694 +msgid "%s or higher" +msgstr "%s ou plus" + +#: wp-admin/includes/plugin-install.php:688 +msgid "Compatible up to:" +msgstr "Compatible jusqu’à la version : " + +#: wp-admin/includes/plugin-install.php:715 +msgid "WordPress.org Plugin Page »" +msgstr "Page WordPress.org de l’extension »" + +#: wp-admin/includes/plugin-install.php:723 +msgid "Average Rating" +msgstr "Moyenne des notes" + +#: wp-admin/includes/plugin.php:737 +msgid "The plugin generated unexpected output." +msgstr "Cette extension a produit un résultat inattendu." + +#: wp-admin/includes/plugin.php:888 +msgid "One of the plugins is invalid." +msgstr "L’une des extensions n’est pas valide." + +#: wp-admin/includes/plugin.php:1113 +msgid "Invalid plugin path." +msgstr "Chemin d’extension non valide" + +#: wp-admin/includes/plugin.php:1116 +msgid "Plugin file does not exist." +msgstr "Le fichier de l’extension n’existe pas." + +#: wp-admin/includes/plugin.php:1121 +msgid "The plugin does not have a valid header." +msgstr "Cette extension ne dispose pas d’un en-tête valide." + +#: wp-admin/includes/post.php:761 +msgid "Auto Draft" +msgstr "Brouillon auto" + +#: wp-admin/includes/post.php:1567 wp-admin/includes/post.php:1592 +msgid "Permalink:" +msgstr "Permalien :" + +#. translators: Site tagline. +#: wp-admin/options-general.php:83 +msgid "Just another WordPress site" +msgstr "Un site utilisant WordPress" + +#. translators: %s: Network title. +#: wp-admin/options-general.php:86 +msgid "Just another %s site" +msgstr "Un site utilisant %s" + +#: wp-admin/includes/schema.php:1126 +msgid "Warning! Wildcard DNS may not be configured correctly!" +msgstr "Attention ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !" + +#: wp-admin/includes/class-wp-posts-list-table.php:1676 +#: wp-admin/includes/class-wp-terms-list-table.php:692 +msgid "Quick Edit" +msgstr "Modification rapide" + +#: wp-admin/includes/class-wp-comments-list-table.php:836 +#: wp-admin/includes/class-wp-posts-list-table.php:1498 +#: wp-admin/includes/class-wp-terms-list-table.php:509 +msgid "Quick Edit" +msgstr "Modification rapide" + +#. translators: Posts screen column name. +#: wp-admin/includes/class-wp-posts-list-table.php:664 +msgctxt "column name" +msgid "Title" +msgstr "Titre" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:337 +#: wp-admin/includes/class-wp-media-list-table.php:400 +msgctxt "column name" +msgid "File" +msgstr "Fichier" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:381 +msgctxt "column name" +msgid "Date" +msgstr "Date" + +#: wp-admin/includes/class-wp-comments-list-table.php:473 +#: wp-admin/includes/class-wp-post-comments-list-table.php:26 +msgctxt "column name" +msgid "Comment" +msgstr "Commentaire" + +#: wp-admin/includes/class-wp-links-list-table.php:135 +msgid "Relationship" +msgstr "Relation" + +#: wp-admin/includes/class-wp-links-list-table.php:136 +#: wp-admin/includes/class-wp-links-list-table.php:148 +msgid "Visible" +msgstr "Visible" + +#: wp-admin/includes/class-wp-posts-list-table.php:1676 +msgid "Bulk Edit" +msgstr "Modifications groupées" + +#: wp-admin/includes/class-wp-posts-list-table.php:1736 +#: wp-admin/includes/class-wp-posts-list-table.php:1839 +#: wp-admin/includes/class-wp-posts-list-table.php:1878 +#: wp-admin/includes/class-wp-posts-list-table.php:1921 +#: wp-admin/includes/class-wp-posts-list-table.php:1934 +#: wp-admin/includes/class-wp-posts-list-table.php:1978 +#: wp-admin/includes/class-wp-posts-list-table.php:2001 +#: wp-admin/includes/class-wp-posts-list-table.php:2026 +msgid "— No Change —" +msgstr "— Aucun changement —" + +#. translators: Between password field and private checkbox on post quick edit +#. interface. +#: wp-admin/includes/class-wp-posts-list-table.php:1779 +msgid "–OR–" +msgstr "— OU —" + +#: wp-admin/includes/class-wp-posts-list-table.php:1922 +#: wp-admin/includes/class-wp-posts-list-table.php:1935 +msgid "Allow" +msgstr "Autoriser" + +#: wp-admin/includes/class-wp-posts-list-table.php:1923 +#: wp-admin/includes/class-wp-posts-list-table.php:1936 +msgid "Do not allow" +msgstr "Refuser" + +#: wp-admin/includes/class-wp-posts-list-table.php:1952 +msgid "Allow Comments" +msgstr "Autoriser les commentaires" + +#: wp-admin/includes/class-wp-posts-list-table.php:1961 +msgid "Allow Pings" +msgstr "Autoriser les notifications par ping" + +#: wp-admin/includes/class-wp-posts-list-table.php:2003 +msgid "Not Sticky" +msgstr "Pas mis en avant" + +#: wp-admin/includes/class-wp-posts-list-table.php:2011 +msgid "Make this post sticky" +msgstr "Mettre ce contenu en avant" + +#: wp-admin/includes/class-wp-posts-list-table.php:1212 +msgid "Missed schedule" +msgstr "Planification manquée" + +#: wp-admin/includes/template.php:463 +msgid "Reply to Comment" +msgstr "Répondre au commentaire" + +#: wp-admin/includes/template.php:510 +msgid "Submit Reply" +msgstr "Envoyer la réponse" + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:570 +msgid "Comment by %s marked as spam." +msgstr "Commentaire de %s marqué comme indésirable." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:665 +msgid "Key" +msgstr "Clé" + +#: wp-admin/includes/template.php:738 +msgid "Add New Custom Field:" +msgstr "Ajouter un nouveau champ personnalisé :" + +#: wp-admin/includes/template.php:764 +msgid "Enter new" +msgstr "Saisissez-en un nouveau" + +#: wp-admin/includes/template.php:779 +msgid "Add Custom Field" +msgstr "Ajouter un champ personnalisé" + +#: wp-admin/includes/template.php:1032 +msgid "Choose a file from your computer:" +msgstr "Choisissez un fichier sur votre ordinateur :" + +#. translators: %s: Maximum allowed file size. +#: wp-admin/includes/template.php:1034 +msgid "Maximum size: %s" +msgstr "Taille maximale : %s" + +#: wp-admin/update.php:284 +msgid "Install Themes" +msgstr "Installer des thèmes" + +#: wp-admin/widgets-form.php:401 +msgid "Enable accessibility mode" +msgstr "Activer le mode « Accessibilité »" + +#: wp-admin/widgets-form.php:401 +msgid "Disable accessibility mode" +msgstr "Désactiver le mode Accessibilité" + +#: wp-admin/edit-tag-form.php:197 wp-admin/edit-tags.php:511 +msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." +msgstr "Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif." + +#: wp-admin/includes/plugin-install.php:273 +msgid "Popular tags" +msgstr "Étiquettes populaires" + +#: wp-admin/includes/plugin-install.php:274 +msgid "You may also browse based on the most popular tags in the Plugin Directory:" +msgstr "Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :" + +#. translators: %s: Link name. +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-links-list-table.php:202 +#: wp-admin/includes/class-wp-media-list-table.php:766 +#: wp-admin/includes/class-wp-posts-list-table.php:1479 +#: wp-admin/includes/class-wp-terms-list-table.php:490 +#: wp-admin/includes/dashboard.php:675 wp-admin/includes/dashboard.php:1047 +msgid "Edit “%s”" +msgstr "Modifier « %s »" + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:187 +msgid "Post restored to revision from %s." +msgstr "Article rétabli à partir de la révision du %s." + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:202 +msgid "Page restored to revision from %s." +msgstr "Page rétablie à partir de la révision du %s." + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ftpext.php:97 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:87 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:100 +msgid "Failed to connect to FTP Server %s" +msgstr "Impossible de se connecter au serveur FTP %s" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:133 +msgid "Failed to connect to SSH2 Server %s" +msgstr "Impossible de se connecter au serveur SSH2 %s" + +#: wp-admin/includes/class-wp-comments-list-table.php:814 +#: wp-admin/includes/dashboard.php:791 +msgid "Move this comment to the Trash" +msgstr "Déplacer ce commentaire dans la corbeille" + +#. translators: 1: Comment author, 2: Post link, 3: Notification if the comment +#. is pending. +#: wp-admin/includes/dashboard.php:863 +msgid "From %1$s on %2$s %3$s" +msgstr "Par %1$s, sur %2$s%3$s" + +#. translators: 1: Type of comment, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:908 +msgctxt "dashboard" +msgid "%1$s %2$s" +msgstr "%1$s dans %2$s" + +#: wp-admin/includes/image-edit.php:177 +msgid "Discard any changes and restore the original image." +msgstr "Abandonner toutes modifications et rétablir l’image originale." + +#: wp-admin/includes/post.php:37 wp-admin/includes/post.php:82 +msgid "Sorry, you are not allowed to edit posts as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des articles sous cet identifiant." + +#: wp-admin/includes/post.php:35 wp-admin/includes/post.php:80 +msgid "Sorry, you are not allowed to edit pages as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des pages sous cet identifiant." + +#: wp-admin/includes/class-wp-upgrader.php:194 wp-admin/includes/plugin.php:960 +msgid "Unable to locate WordPress plugin directory." +msgstr "Impossible de localiser le répertoire d’extension de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:191 +msgid "Unable to locate WordPress root directory." +msgstr "Impossible de localiser le répertoire racine de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:188 +msgid "Invalid data provided." +msgstr "Les données fournies ne sont pas valides." + +#: wp-admin/edit-tags.php:117 wp-admin/edit.php:176 wp-admin/post.php:316 +#: wp-admin/themes.php:63 wp-admin/upload.php:331 +msgid "Sorry, you are not allowed to delete this item." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet élément." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/nav-menu.php:531 wp-admin/includes/nav-menu.php:903 +msgid "Page" +msgstr "Page" + +#: wp-admin/includes/template.php:1041 +msgid "Upload file and import" +msgstr "Envoyer le fichier et l’importer" + +#: wp-admin/includes/template.php:1016 +msgid "Before you can upload your import file, you will need to fix the following error:" +msgstr "Avant de téléverser votre fichier d’import, il vous faut corriger l’erreur suivante :" + +#. translators: %s: Comma-separated list of plugin filenames. +#: wp-admin/includes/plugin.php:1053 +msgid "Could not fully remove the plugins %s." +msgstr "Impossible de supprimer complètement la ou les extensions %s." + +#: wp-admin/includes/meta-boxes.php:1504 +msgid "(Leave at 0 for no rating.)" +msgstr "(Laissez à 0 pour ne pas donner de note.)" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1457 +msgid "date" +msgstr "petit·e ami·e" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1371 +msgid "met" +msgstr "rencontré·e" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1354 +msgid "friend" +msgstr "ami·e" + +#: wp-admin/includes/meta-boxes.php:1335 +msgid "another web address of mine" +msgstr "une autre de mes adresses Web" + +#: wp-admin/includes/meta-boxes.php:1247 +msgid "Choose the target frame for your link." +msgstr "Choisissez le cadre dans lequel le lien doit s’ouvrir." + +#: wp-admin/includes/meta-boxes.php:1242 +msgid "_top — current window or tab, with no frames." +msgstr "_top — fenêtre ou onglet en cours, sans cadre incorporé (frame)." + +#. translators: %s: Link name. +#: wp-admin/includes/class-wp-links-list-table.php:348 +#: wp-admin/includes/meta-boxes.php:1140 +msgid "" +"You are about to delete this link '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer le lien « %s ».\n" +"« Annuler » pour arrêter, « OK » pour supprimer." + +#: wp-admin/includes/meta-boxes.php:922 +msgid "Show comments" +msgstr "Afficher les commentaires" + +#: wp-admin/includes/meta-boxes.php:787 +msgid "Send trackbacks to:" +msgstr "Envoyer un rétrolien vers :" + +#: wp-admin/includes/media.php:1704 +msgid "Upload date:" +msgstr "Date de téléversement :" + +#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2980 +msgid "Alt text for the image, e.g. “The Mona Lisa”" +msgstr "Texte alternatif de l’image, par ex. : « La Joconde »" + +#: wp-admin/includes/image-edit.php:1002 +msgid "Unable to save the image." +msgstr "Impossible d’enregistrer l’image." + +#: wp-admin/includes/image-edit.php:908 +msgid "Unable to create new image." +msgstr "Impossible de créer une nouvelle image." + +#: wp-admin/includes/image-edit.php:28 wp-admin/includes/image-edit.php:959 +msgid "Image data does not exist. Please re-upload the image." +msgstr "Il n’y a aucune donnée d’image. Veuillez téléverser l’image à nouveau." + +#: wp-admin/includes/file.php:2594 +msgid "Hostname" +msgstr "Nom de l’hôte :" + +#: wp-admin/includes/file.php:2560 +msgid "Connection Information" +msgstr "Informations de connexion" + +#: wp-admin/includes/file.php:1158 +msgid "Invalid URL Provided." +msgstr "L’URL fournie n’est pas valide." + +#. translators: %s: Destination file path. +#: wp-admin/includes/file.php:1033 +msgid "The uploaded file could not be moved to %s." +msgstr "Le fichier n’a pas pu être déplacé vers %s." + +#: wp-admin/includes/class-plugin-upgrader.php:75 +#: wp-admin/includes/class-theme-upgrader.php:73 +msgid "Installation package not available." +msgstr "L’archive d’installation n’est pas disponible." + +#. translators: %s: Command. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:228 +msgid "Unable to perform command: %s" +msgstr "Impossible de lancer la commande : %s" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:105 +msgid "SSH2 password is required" +msgstr "Le mot de passe SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:95 +msgid "SSH2 username is required" +msgstr "L’identifiant SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:81 +msgid "SSH2 hostname is required" +msgstr "Le nom de l’hôte SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:66 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:62 +msgid "FTP password is required" +msgstr "Le mot de passe FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:60 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:56 +msgid "FTP username is required" +msgstr "L’identifiant FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:53 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:49 +msgid "FTP hostname is required" +msgstr "Le nom de l’hôte FTP est nécessaire" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:295 +#: wp-admin/includes/class-wp-theme-install-list-table.php:158 +#: wp-admin/setup-config.php:301 wp-admin/theme-install.php:67 +msgid "Try Again" +msgstr "Recommencez" + +#: wp-admin/themes.php:274 wp-admin/themes.php:283 +msgid "Visit site" +msgstr "Aller sur le site" + +#: wp-admin/includes/class-wp-comments-list-table.php:429 +#: wp-admin/includes/class-wp-media-list-table.php:222 +#: wp-admin/includes/class-wp-posts-list-table.php:607 +msgid "Empty Trash" +msgstr "Vider la corbeille" + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:561 +msgid "Comment by %s moved to the Trash." +msgstr "Commentaire par %s déplacé dans la corbeille." + +#: wp-admin/includes/plugin-install.php:845 +msgid "Warning: This plugin has not been tested with your current version of WordPress." +msgstr "Avertissement : cette extension n’a pas été testée avec votre version actuelle de WordPress." + +#: wp-admin/includes/image-edit.php:92 +msgid "Flip horizontal" +msgstr "Retourner horizontalement" + +#: wp-admin/includes/image-edit.php:91 +msgid "Flip vertical" +msgstr "Retourner verticalement" + +#: wp-admin/includes/file.php:418 wp-admin/includes/file.php:479 +#: wp-admin/includes/file.php:746 wp-admin/includes/file.php:752 +msgid "Sorry, that file cannot be edited." +msgstr "Désolé, ce fichier ne peut être modifié." + +#: wp-admin/erase-personal-data.php:150 wp-admin/export-personal-data.php:150 +msgid "Search Requests" +msgstr "Recherche dans les demandes" + +#: wp-admin/includes/class-wp-comments-list-table.php:815 +#: wp-admin/includes/class-wp-media-list-table.php:786 +#: wp-admin/includes/class-wp-posts-list-table.php:1518 +#: wp-admin/includes/dashboard.php:792 +msgctxt "verb" +msgid "Trash" +msgstr "Corbeille" + +#. translators: 1: Plugin name, 2: Plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:86 +msgid "Successfully installed the plugin %1$s %2$s." +msgstr "L’extension %1$s %2$s a bien été installée." + +#. translators: 1: Starting number of users on the current page, 2: Ending +#. number of users, 3: Total number of users. +#: wp-admin/includes/deprecated.php:614 +msgid "Displaying %1$s–%2$s of %3$s" +msgstr "Affichage de %1$s à %2$s sur %3$ss" + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:356 +msgid "%s comment restored from the spam." +msgid_plural "%s comments restored from the spam." +msgstr[0] "%s commentaire rétabli depuis les commentaires indésirables." +msgstr[1] "%s commentaires rétablis depuis les commentaires indésirables." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:386 +msgid "%s comment permanently deleted." +msgid_plural "%s comments permanently deleted." +msgstr[0] "%s commentaire supprimé définitivement." +msgstr[1] "%s commentaires supprimés définitivement." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:334 +msgid "%s comment approved." +msgid_plural "%s comments approved." +msgstr[0] "%s commentaire approuvé." +msgstr[1] "%s commentaires approuvés." + +#: wp-admin/comment.php:142 +msgid "Permanently delete comment" +msgstr "Supprimer définitivement le commentaire" + +#: wp-admin/comment.php:146 +msgid "Approve comment" +msgstr "Approuver le commentaire" + +#: wp-admin/includes/bookmark.php:227 +msgid "Could not update link in the database." +msgstr "Impossible de mettre à jour le lien dans la base de données." + +#: wp-admin/includes/bookmark.php:235 +msgid "Could not insert link into the database." +msgstr "Impossible d’insérer le lien dans la base de données." + +#: wp-admin/includes/plugin-install.php:354 +msgid "If you have a plugin in a .zip format, you may install or update it by uploading it here." +msgstr "Si vous avez une extension au format .zip, vous pouvez l’installer ou la mettre à jour en la téléversant ici." + +#: wp-admin/includes/meta-boxes.php:1466 +msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." +msgstr "Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en apprendre plus sur ce système, consultez le site de XFN." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-media-list-table.php:319 +#: wp-admin/includes/class-wp-media-list-table.php:323 +#: wp-admin/includes/media.php:2756 +msgid "Search Media" +msgstr "Chercher parmi les médias" + +#: wp-admin/edit-form-comment.php:242 +#: wp-admin/includes/class-wp-comments-list-table.php:807 +#: wp-admin/includes/class-wp-media-list-table.php:799 +#: wp-admin/includes/class-wp-posts-list-table.php:1528 +#: wp-admin/includes/dashboard.php:784 wp-admin/includes/media.php:1735 +msgid "Delete Permanently" +msgstr "Supprimer définitivement" + +#: wp-admin/includes/class-wp-site-health.php:2004 +msgid "Could not access filesystem" +msgstr "Impossible d’accéder au système de fichiers." + +#: wp-admin/includes/class-wp-site-health.php:2013 +msgid "Unable to locate WordPress content directory" +msgstr "Impossible de localiser le répertoire de contenu de WordPress." + +#: wp-admin/includes/file.php:1169 +msgid "Could not create temporary file." +msgstr "Impossible de créer le fichier temporaire." + +#: wp-admin/export.php:177 +msgid "This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." +msgstr "Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:388 +msgid "%s pattern not updated, somebody is editing it." +msgid_plural "%s patterns not updated, somebody is editing them." +msgstr[0] "Une composition n’a pas été mise à jour : quelqu’un est en train de la modifier." +msgstr[1] "%s compositions n’ont pas été mises à jour : quelqu’un est en train de les modifier." + +#: wp-admin/edit-link-form.php:134 +msgid "Example: https://wordpress.org/ — do not forget the https://" +msgstr "Exemple : https://fr.wordpress.org/ — Et n’oubliez pas le https://" + +#: wp-admin/includes/media.php:2833 wp-admin/includes/nav-menu.php:528 +#: wp-admin/includes/nav-menu.php:900 +msgid "«" +msgstr "«" + +#: wp-admin/includes/media.php:2834 wp-admin/includes/nav-menu.php:529 +#: wp-admin/includes/nav-menu.php:901 +msgid "»" +msgstr "»" + +#. translators: %d: Comment ID. +#: wp-admin/includes/ajax-actions.php:990 +msgid "Comment %d does not exist" +msgstr "Le commentaire %d n’existe pas." + +#: wp-admin/includes/taxonomy.php:136 +msgid "You did not enter a category name." +msgstr "Vous n’avez pas entré de nom de catégorie." + +#: wp-admin/includes/ajax-actions.php:1654 +#: wp-admin/includes/ajax-actions.php:1662 +msgid "Please provide a custom field value." +msgstr "Veuillez saisir une valeur pour le champ personnalisé." + +#. translators: Draft saved date format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/misc.php:1370 +msgid "g:i:s a" +msgstr "G \\h i \\m\\i\\n s \\s" + +#. translators: %s: Date and time. +#: wp-admin/includes/misc.php:1374 +msgid "Draft saved at %s." +msgstr "Brouillon enregistré à %s." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2085 +msgid "Saving is disabled: %s is currently editing this page." +msgstr "Enregistrement automatique désactivé : %s modifie actuellement cette page." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2081 +msgid "Saving is disabled: %s is currently editing this post." +msgstr "Enregistrement automatique désactivé : %s modifie actuellement cet article." + +#: wp-admin/includes/ajax-actions.php:2204 +#: wp-admin/includes/ajax-actions.php:2210 +#: wp-admin/includes/edit-tag-messages.php:18 +msgid "Item not updated." +msgstr "L’élément n’a pas été mis à jour" + +#. translators: %s: Admin page generated by a plugin. +#: wp-admin/admin.php:269 +msgid "Cannot load %s." +msgstr "Impossible de charger %s." + +#: wp-admin/admin.php:338 wp-admin/import.php:19 wp-admin/menu.php:374 +msgid "Import" +msgstr "Importer" + +#: wp-admin/comment.php:57 wp-admin/edit-form-comment.php:22 +#: wp-admin/includes/template.php:462 +msgid "Edit Comment" +msgstr "Modifier le commentaire" + +#: wp-admin/comment.php:133 +msgid "You are about to mark the following comment as spam:" +msgstr "Vous êtes sur le point de marquer le commentaire suivant comme indésirable :" + +#: wp-admin/comment.php:141 +msgid "You are about to delete the following comment:" +msgstr "Vous êtes sur le point de supprimer le commentaire suivant :" + +#: wp-admin/comment.php:294 wp-admin/edit-comments.php:300 +#: wp-admin/includes/comment.php:55 +msgid "Sorry, you are not allowed to edit comments on this post." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cet article." + +#: wp-admin/comment.php:137 +msgid "You are about to move the following comment to the Trash:" +msgstr "Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :" + +#: wp-admin/comment.php:87 +msgid "This comment is in the Trash. Please move it out of the Trash if you want to edit it." +msgstr "Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier." + +#: wp-admin/admin.php:262 +msgid "Invalid plugin page." +msgstr "Page d’extension non valide" + +#: wp-admin/includes/ajax-actions.php:2078 +msgid "Someone" +msgstr "Quelqu’un" + +#: wp-admin/includes/ajax-actions.php:1350 +msgid "Sorry, you must be logged in to reply to a comment." +msgstr "Désolé, vous devez être connecté·e pour répondre à un commentaire." + +#: wp-admin/authorize-application.php:98 wp-admin/authorize-application.php:116 +msgid "Go Back" +msgstr "Retour" \ No newline at end of file diff --git a/web/app/languages/admin-fr_FR.l10n.php b/web/app/languages/admin-fr_FR.l10n.php new file mode 100644 index 00000000..098fc226 --- /dev/null +++ b/web/app/languages/admin-fr_FR.l10n.php @@ -0,0 +1,170 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2025-06-12 14:40:36+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration','language'=>'fr','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/Paris','Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.'=>'Le chargement spéculatif accélère la navigation en préchargeant les liens avant que les internautes ne les consultent, le hachage bcrypt renforce automatiquement la sécurité des mots de passe, et les optimisations de la base de données améliorent les performances.','You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.'=>'Vous ne pouvez pas effectuer la mise à niveau car WordPress %2$s nécessite l’extension PHP %3$s.','An error occurred while deleting the theme.'=>'Une erreur s‘est produite lors de la suppression du thème.','Add Theme'=>'Ajouter un thème','WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy.'=>'WordPress.org prend en compte la confidentialité et la transparence vraiment sérieusement. Pour en apprendre plus à propos des données collectées, et comment elles sont utilisées, veuillez visiter la politique de confidentialité de WordPress.org.','WordPress.org takes privacy and transparency very seriously'=>'WordPress.org prend la confidentialité et la transparence très au sérieux','File: %s'=>'Fichier : %s','Add User'=>'Ajouter un compte','Add Plugin'=>'Ajouter une extension','design menu itemDesign'=>'Conception','Collapse Main Menu'=>'Replier le menu principal','Invalid item ID. You can view all media items in the Media Library.'=>'ID d’élément invalide. Vous pouvez voir tous les éléments media dans la Médiathèque.','An error occurred during the upload process.'=>'Une erreur s’est produite lors du processus de téléversement.','You cannot install because WordPress %2$s requires the %3$s PHP extension.'=>'Vous ne pouvez pas installer car WordPress %2$s nécessite l’extension PHP %3$s.','Add Custom Field:'=>'Ajouter un champ personnalisé :','An error occurred while loading the comparison. Please refresh the page and try again.'=>'Une erreur s’est produite lors du chargement de la comparaison. Veuillez actualiser la page et réessayer.','+ Add Category'=>'+ Ajouter une Catégorie','Does not exist'=>'N’existe pas','robots.txt'=>'robots.txt','WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support'=>'WordPress ne peut pas traiter dynamiquement un fichier %s en raison de l‘absence de la prise en charge des règles de réécriture.','Your site is using the dynamic %s file which is generated by WordPress.'=>'Votre site utilise le fichier %s dynamique qui est généré par WordPress.','There is a static %s file in your installation folder. WordPress cannot dynamically serve one.'=>'Il y a un fichier %s statique dans votre dossier d’installation. WordPress ne peut pas l’exploiter dynamiquement.','The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again.'=>'Le thème actif ne prend pas en charge le téléversement d’une image d’entête personnalisée. Veuillez vous assurer que le thème prenne en charge les entêtes personnalisés et réessayer.','An error occurred while processing your header image.'=>'Une erreur s’est produite lors du traitement de l’image d’entête.','Please try again or start a new changeset. This changeset cannot be further modified.'=>'Veuillez réessayer ou commencer un nouveau jeu de modifications. Ce jeu de modifications ne peut pas être modifié davantage.','An error occurred while saving your changeset.'=>'Une erreur s’est produite lors de l’enregistrement de votre jeu de modifications.','Triage Lead'=>'Responsable du triage','Tech Lead'=>'Responsable technique','Default Theme Development Lead'=>'Responsable du développement du thème par défaut','Default Theme Design Lead'=>'Responsable de la conception du thème natif','Performance Lead'=>'Responsable des performances','Design Lead'=>'Responsable du design','Test Lead'=>'Responsable des tests','Documentation Lead'=>'Responsable de la documentation','Editor Triage Lead'=>'Responsable du triage de l’éditeur','Editor Tech Lead'=>'Responsable technique côté éditeur','Core Triage Lead'=>'Responsable du triage du cœur','Core Tech Lead'=>'Responsable technique','Minor Release Lead'=>'Responsable de la version mineure','Release Coordination'=>'Coordination de la version','WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.'=>'WordPress 6.8 propose de nombreuses corrections et améliorations de performances pour accélérer l’ensemble de votre site, de l’administration aux temps de chargement ressentis par les personnes qui visitent votre site. Au-delà du chargement spéculatif désormais intégré nativement, WordPress 6.8 accorde une attention particulière à l’éditeur de blocs, à l’enregistrement des types de blocs et à la mise en cache des requêtes. N’attendez jamais plus de 50 millisecondes entre chaque interaction. Dans WordPress 6.8, l’API de gestion de l’interactivité constitue un premier pas vers cet objectif.','Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.'=>'Le travail se poursuit sur l‘optimisation de la génération des clés de cache dans la classe WP_Query. L‘objectif est, comme toujours, d‘améliorer les performances de votre site, dans ce cas en réduisant davantage la charge de votre base de données. Cela est particulièrement utile si vous avez beaucoup de trafic.','Take a load off the database'=>'Allégement de la base de données','100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.'=>'Plus de 100 correctifs et améliorations en matière d’accessibilité touchent un large champ de l’expérience WordPress. Cette version inclut des correctifs pour chaque thème natif, des améliorations de la gestion des menus de navigation, de l’outil de personnalisation, et un étiquetage simplifié. L’éditeur de blocs bénéficie de plus de 70 améliorations concernant les blocs, les vues de données, et l’expérience globale des utilisateurs et utilisatrices.','Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.'=>'Les mots de passe sont désormais plus difficiles à déchiffrer grâce au hachage bcrypt, qui nécessite beaucoup plus de puissance de calcul pour être cassé. Cela renforce la sécurité globale, tout comme d‘autres améliorations de chiffrement dans WordPress. Vous n’avez rien à faire : tout se met à jour automatiquement.','Stronger password security with bcrypt'=>'Sécurité renforcée des mots de passe avec bcrypt','In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.'=>'Dans WordPress 6.8, les pages se chargent plus rapidement que jamais. Lorsque vous ou tout internaute survolez ou cliquez sur un lien, WordPress peut précharger la page suivante pour une expérience plus fluide et quasi instantanée. Le système équilibre vitesse et efficacité, et vous pouvez contrôler son fonctionnement avec une extension ou votre propre code. Cette fonctionnalité fonctionne uniquement dans les navigateurs modernes ; les anciens l’ignoreront simplement sans aucun impact.','Near-instant page loads, thanks to Speculative Loading'=>'Chargement quasi instantané des pages, grâce au chargement spéculatif','Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.'=>'Visualisez plus facilement vos options dans les vues de données et excluez les publications épinglées de la boucle de requête. De plus, l’éditeur propose de nombreuses améliorations qui simplifient la création de contenu.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation.','The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.'=>'Le guide de styles présente une nouvelle mise en page structurée et des libellés plus clairs, pour faciliter encore plus la modification des couleurs, de la typographie et de presque tous les styles de votre site, en un seul endroit.','The Style Book gets a cleaner look—and a few new tricks'=>'Le guide de style fait peau neuve et s’enrichit de quelques nouvelles fonctionnalités','The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.'=>'Le guide de styles a maintenant une mise en page structurée et fonctionne désormais avec les thèmes classiques, ce qui vous apporte plus de contrôle sur les styles globaux de votre site.','WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.'=>'WordPress 6.8 améliore et affine les outils que vous utilisez tous les jours, rendant votre site plus rapide, plus sûr et plus facile à gérer.','A release polished to a high sheen.'=>'Une version peaufinée à la perfection','If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.'=>'S‘il manque des dépendances à une extension dépendante, son bouton d‘activation sera désactivé jusqu‘à ce que les dépendances nécessaires soient activées.','If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.'=>'Si une extension requise est supprimée, une notification sera affichée sur l’écran d’administration des extensions pour indiquer que des dépendances manquantes doivent être installées ou activées. De plus, chaque extension dont les dépendances ne sont pas présentes auront une notification d’erreur dans la ligne correspondant à l’extension.','Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.'=>'Les dépendances d’extensions visent à rendre cohérent et à simplifier le processus d’installation et d’activation des modules (extensions dépendantes d’une autre) et des extensions requises pour faire fonctionner le module (dépendances).','Dependencies'=>'Dépendances','Comments to display at the top of each page'=>'Commentaires à afficher en haut de chaque page','Comments page to display by default'=>'Page des commentaires à afficher par défaut','Top level comments per page'=>'Commentaires de premier niveau par page','Break comments into pages'=>'Diviser les commentaires en pages','Comment Pagination'=>'Pagination des commentaires','Number of levels for threaded (nested) comments'=>'Nombre de niveaux pour les commentaires en fil (imbriqués)','Enable threaded (nested) comments'=>'Activer les commentaires en fil (imbriqués)','Close comments when post is how many days old'=>'Fermez les commentaires lorsque la publication est datée de plusieurs jours','Automatically close comments on old posts'=>'Fermez automatiquement les commentaires sur les publications anciennes.','Menu order updated'=>'Mise à jour de l’ordre du menu','Menu parent updated'=>'Mise à jour du menu parent','Change revision by using the left and right arrow keys'=>'Changez de révision en utilisant les flèches gauche et droite','Select a revision'=>'Sélectionnez une révision','A directory could not be read.'=>'Un répertoire n’a pu être lu.','Database Extension'=>'Extension de la base de données','Empty value'=>'Valeur vide','Max simultaneous file uploads'=>'Nombre maximal de fichiers téléversés en simultané.','Menu Order'=>'Ordre du menu','Menu Parent'=>'Menu parent','Skip to Editor'=>'Aller à l’éditeur','WordPress %s Field Guide'=>'Guide technique de WordPress %s','WordPress %s Release Notes'=>'Notes de version de WordPress %s','The directory does not exist.'=>'Le répertoire n’existe pas.','Common Errors'=>'Erreurs fréquentes (en anglais)','Documentation on Editing Files'=>'Documentation sur la modification de fichiers (en anglais)','Documentation on Editing Plugins'=>'Documentation sur la modification d’extensions (en anglais)','https://developer.wordpress.org/plugins/settings/settings-api/'=>'https://developer.wordpress.org/plugins/settings/settings-api/','The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.'=>'Le réglage %1$s n’est pas enregistré. Les réglages non-enregistrés sont obsolètes. Voir la documentation sur les réglages API.','https://developer.wordpress.org/advanced-administration/wordpress/update-services/'=>'https://developer.wordpress.org/advanced-administration/wordpress/update-services/','https://developer.wordpress.org/advanced-administration/wordpress/feeds/'=>'https://developer.wordpress.org/advanced-administration/wordpress/feeds/','Documentation on Nginx configuration.'=>'Documentation sur les réglages de Nginx (en anglais).','https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/'=>'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/','Documentation on Site Management'=>'Documentation sur la gestion de site (en anglais)','Type of relationnone'=>'aucune','No URL Provided.'=>'L’URL n’est pas renseignée.','https://developer.wordpress.org/advanced-administration/server/file-permissions/'=>'https://developer.wordpress.org/advanced-administration/server/file-permissions/','Package not available.'=>'Paquet indisponible.','Autoloaded options'=>'Options chargées automatiquement','More info about optimizing autoloaded options'=>'Plus d’informations sur l’optimisation des options automatiquement','https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options','Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.'=>'Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui peut ralentir votre site. Vous pouvez revoir les options chargées automatiquement dans votre base de données et retirer toutes options qui ne seraient plus nécessaires à votre site.','Autoloaded options could affect performance'=>'Les options chargées automatiquement peuvent affecter les performances','Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.'=>'Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui est acceptable.','Autoloaded options are acceptable'=>'Les options chargées automatiquement sont acceptables','Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.'=>'Les options chargées automatiquement sont des réglages de configuration des extensions et thèmes qui sont chargés automatiquement avec chaque chargement de page dans WordPress. Trop d’options chargées automatiquement peut ralentir votre site.','https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache','https://developer.wordpress.org/advanced-administration/performance/optimization/#caching'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#caching','Fonts directory size'=>'Taille du répertoire de polices','Fonts directory location'=>'Emplacement du répertoire de polices','The fonts directory'=>'Le répertoire de polices','The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.'=>'Les extensions suivantes n’ont pas pu être mises à jour. S’il y a eu une erreur fatale lors de la mise à jour, la version précédente a été restaurée.','The update for \'%s\' contained a fatal error. The previously installed version has been restored.'=>'La mise à jour de « %s » contenait une erreur fatale. La version précédente a été restaurée.','The update for \'%s\' contained a fatal error. The previously installed version could not be restored.'=>'La mise à jour de « %s » contenait une erreur fatale. La version précédente n’a pas pu être restaurée.','https://developer.wordpress.org/advanced-administration/security/backup/'=>'https://developer.wordpress.org/advanced-administration/security/backup/','If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.'=>'Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil d’export des données personnelles sur votre extension (en anglais).','If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.'=>'Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil de suppression des données personnelles sur votre extension (en anglais).','See everything new'=>'Découvrez toutes les nouveautés','https://wordpress.org/download/releases/6-8/'=>'https://wordpress.org/download/releases/6-8/','For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.'=>'Pour une vision complète de toutes les nouvelles fonctionnalités et améliorations de WordPress %s, veuillez consulter le site de démonstration des fonctionnalités (en anglais).','And much more'=>'Et bien plus encore','patterns menu itemPatterns'=>'Compositions','Change Site Icon'=>'Modifier l’icône du site','Error: %1$s requires %2$d plugin to be installed and activated: %3$s.'=>'Erreur : %1$s nécessite l‘installation et l‘activation d‘%2$d extension : %3$s.' . "\0" . 'Erreur : %1$s nécessite l‘installation et l‘activation de %2$d extensions : %3$s.','pluginUpdate Now'=>'Mettre à jour maintenant','themeInstall Now'=>'Installer maintenant','This plugin cannot be activated because required plugins are missing or inactive.'=>'Cette extension ne peut pas être activée car des extensions nécessaires sont manquantes ou inactives.','This plugin is active but may not function correctly because required plugins are missing or inactive.'=>'Cette extension est active mais pourrait ne pas fonctionner correctement car des extensions nécessaires sont manquantes ou inactives.','Requires: %s'=>'Nécessite : %s','Required by: %s'=>'Nécessaire pour : %s','Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.'=>'Note : cette extension ne peut pas être désactivée ou supprimée tant que les extensions qui la nécessitent ne sont pas désactivés ou supprimés.','You cannot deactivate this plugin as other plugins depend on it.'=>'Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent.','You cannot delete this plugin as other plugins require it.'=>'Vous ne pouvez pas supprimer cette extension car d’autres extensions la nécessitent.','You cannot activate this plugin as it has unmet requirements.'=>'Vous ne pouvez pas activer cette extension car elle a des prérequis non satisfaits.','You cannot deactivate this plugin as other plugins require it.'=>'Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent.','pluginDeactivate'=>'Désactiver','pluginNetwork Deactivate'=>'Désactiver sur le réseau','pluginActivate'=>'Activer','Additional plugins are required'=>'Des extensions supplémentaires sont nécessaires.','Site ID'=>'Identifiant du site','The PHP version on your server is %1$s, however the new theme version requires %2$s.'=>'La version PHP de votre serveur est %1$s, alors que la nouvelle version du thème nécessite %2$s.','Your WordPress version is %1$s, however the new theme version requires %2$s.'=>'Votre version de WordPress est %1$s, alors que la nouvelle version du thème nécessite %2$s.','pluginNetwork Activate'=>'Activer sur le réseau','%s is already active.'=>'%s est déjà active.','pluginInstall Now'=>'Installer maintenant','Created by a worldwide team of passionate individuals'=>'Créé par une équipe de personnes passionnées, réparties sur toute la planète.','Accessibility improvements'=>'Amélioration de l’accessibilité','Performance updates'=>'Amélioration des performances','Only .zip archives may be uploaded.'=>'Uniquement les archives .zip peuvent être téléversées.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','Add New Site'=>'Ajouter un site','Rotate 180°'=>'Rotation de 180°','Rotate 90° right'=>'Rotation de 90° à droite','Rotate 90° left'=>'Rotation de 90° à gauche','%s pattern moved to the Trash.'=>'La composition %s a été mise à la corbeille.' . "\0" . 'Les compositions %s ont été mises à la corbeille.','%s pattern permanently deleted.'=>'Composition %s définitivement supprimée.' . "\0" . 'Compositions %s définitivement supprimées.','%s pattern updated.'=>'Composition %s mise à jour.' . "\0" . 'Compositions %s mises à jour.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste.','Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Lisez les notes de version de WordPress %s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers.','Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explorez le guide des changements techniques de WordPress %s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous permettent de construire votre site avec WordPress.','Invalid URL format.'=>'Format d’URL invalide.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'La version de PHP sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','https://wordpress.org/support/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Les mises à jour peuvent prendre plusieurs minutes à se terminer. S’il n’y a aucun retour après 5 minutes, ou s’il y a des erreurs, veuillez vous référer à la section Aide ci-dessus.','Restore Plugin or Theme'=>'Restaurer l’extension ou le thème','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'Sur les systèmes avec moins de ressources, ça peut mener à des dépassement de délais serveur ou à atteindre les limites des ressources. Si vous rencontrez un problème lors du processus de mise à jour, veuillez créer un fil de discussion dans le forum d’aide et indiquer Restauration dans le titre du fil.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://fr.wordpress.org/support/article/using-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'En quelques mots, expliquez ce que représente ce site. Exemple : « %s ».','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note : le fait de décourager les moteurs de recherche ne bloque pas l’accès à votre site. Il appartient aux moteurs de recherche d’honorer votre demande.','New custom field name'=>'Nouveau nom de champ personnalisé','Search Media:'=>'Rechercher un média :','Clear Crop'=>'Annuler le recadrage','Apply Crop'=>'Appliquer le recadrage','vertical start position'=>'position verticale de départ','horizontal start position'=>'position horizontale de départ','Starting Coordinates:'=>'Coordonnées de départ :','Crop Image'=>'Recadrer l’image','Images cannot be scaled to a size larger than the original.'=>'Les images ne peuvent pas être mises à l’échelle dans une taille supérieure à celle de l’original.','Save Edits'=>'Enregistrer les modifications','Cancel Editing'=>'Annuler la modification','Could not create the destination directory.'=>'Impossible de créer le répertoire de destination.','Table ordered by E-mail.'=>'Tableau trié par e-mail.','Table ordered by Username.'=>'Tableau trié par identifiant.','Could not delete the temporary backup directory for %s.'=>'Impossible de supprimer le répertoire de sauvegarde temporaire de %s.','Could not restore the original version of %s.'=>'Impossible de restaurer la version originale de %s.','Could not move the old version to the %s directory.'=>'Impossible de déplacer l’ancienne version vers le répertoire %s.','Could not create the %s directory.'=>'Impossible de créer le répertoire %s.','Table ordered by Links.'=>'Tableau trié par liens.','Table ordered by Posts Count.'=>'Tableau trié par nombre de publications.','Table ordered by Slug.'=>'Tableau trié par slug.','Table ordered by Description.'=>'Tableau trié par description.','Table ordered hierarchically.'=>'Tableau trié hiérarchiquement.','Available disk space'=>'Espace disque disponible','Plugin and theme temporary backup directory access'=>'Accès au répertoire de sauvegarde temporaire des extensions et des thèmes','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'Le répertoire %1$s n’existe pas et le serveur n’a pas les droits en écriture dans %2$s pour le créer. Ce répertoire est utilisé pour les mises à jour des extensions et de thèmes. Veuillez vous assurer que le serveur dispose des droits en écriture dans %2$s.','The upgrade directory cannot be created'=>'Le répertoire de mise à niveau ne peut pas être créé','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour les mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The upgrade directory exists but is not writable'=>'Le répertoire de mise à niveau existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire existe mais n’est pas accessible en écriture.','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour de thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','Theme temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des thèmes existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ce répertoire.','Plugin temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des extensions existe mais n’est pas accessible en écriture','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'Les répertoires %1$s et %2$s existent mais ne sont pas accessibles en écriture. Ces répertoires sont utilisés pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ces répertoires.','Plugin and theme temporary backup directories exist but are not writable'=>'Les répertoires de sauvegarde temporaire des extensions et des thèmes existent mais ne sont pas accessibles en écriture.','The %s directory cannot be located.'=>'Le répertoire %s est introuvable.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'Le répertoire %s utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes est accessible en écriture.','Plugin and theme temporary backup directory is writable'=>'Le répertoire de sauvegarde temporaire des extensions et des thèmes est accessible en écriture','Could not determine available disk space for updates.'=>'Impossible de déterminer l’espace disque disponible pour les mises à jour.','Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.'=>'L’espace disque disponible est extrêmement faible, moins de %s disponibles. Attention, les mises à jour peuvent échouer.','Available disk space is low, less than %s available.'=>'L’espace disque disponible est faible, moins de %s disponibles.','%s available disk space was detected, update routines can be performed safely.'=>'%s d’espace disque disponible a été détecté, les routines de mise à jour peuvent être effectuées en toute sécurité.','Disk space available to safely perform updates'=>'Espace disque disponible pour effectuer les mises à jour en toute sécurité','Table ordered by Hierarchical Menu Order and Title.'=>'Tableau trié par l’ordre hiérarchique du menu et par son titre.','Table ordered by Title.'=>'Tableau trié par titre.','Table ordered by Date.'=>'Tableau trié par date.','Table ordered by Comments.'=>'Tableau trié par commentaires.','Table ordered by Uploaded To.'=>'Tableau trié par destination du téléversement.','Table ordered by Author.'=>'Tableau trié par auteur.','Table ordered by File Name.'=>'Tableau trié par nom de fichier.','Descending.'=>'Décroissant.','Ascending.'=>'Croissant.','Sort descending.'=>'Tri décroissant','Sort ascending.'=>'Tri croissant','Table ordered by Rating.'=>'Tableau trié par évaluation.','Table ordered by Visibility.'=>'Tableau trié par visibilité.','Table ordered by URL.'=>'Tableau trié par URL.','Table ordered by Name.'=>'Tableau trié par nom.','Current Server time'=>'Heure actuelle du serveur','Current UTC time'=>'Heure UTC actuelle','Current time'=>'Heure actuelle','Ordered by Comment Date, descending.'=>'Tableau trié par date de commentaire décroissante.','Table ordered by Post Replied To.'=>'Tableau trié par commentaire lié à l’article.','Table ordered by Comment Author.'=>'Tableau trié par l’auteur du commentaire.','Attempting to restore the previous version.'=>'Tentative de restauration de la version précédente.','More details.'=>'Plus de détails.','Find your team →'=>'Trouvez votre équipe →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Trouver le domaine qui correspond à vos compétences et à vos intérêts est le premier pas vers une contribution significative. Avec plus de 20 équipes Make WordPress travaillant sur différentes parties du projet open source WordPress, il y a une place pour tout le monde, quelles que soient vos compétences.','Shape the future of the web with WordPress'=>'Façonnez l’avenir du web avec WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'Applications mobiles WordPress : Kotlin, Java, Swift, Objective-C, Vue, Python et TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'Cœur de WP et éditeur de blocs : HTML, CSS, PHP, SQL, JavaScript et React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress adopte de nouvelles technologies, tout en s’engageant à en assurer la rétro-compatibilité. Le projet WordPress utilise les langages et outils suivants :','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribuez au code, améliorez l’expérience d’utilisation, et testez les applications mobiles WordPress','Write and submit patches to fix bugs or help build new features.'=>'Écrivez et envoyez des corrections de bogues ou contribuez à l’élaboration de nouvelles fonctionnalités','Test new releases and proposed features for the Block Editor.'=>'Testez les nouvelles versions et fonctionnalités proposées pour l’éditeur de blocs.','Find and report bugs in the WordPress core software.'=>'Trouvez et signalez des bogues dans le cœur de WordPress','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'Si vous codez, ou souhaitez apprendre à le faire, vous pouvez contribuer techniquement de nombreuses manières :','Code-based contribution'=>'Contribution au code de WordPress','Explore ways to reduce the environmental impact of websites.'=>'Explorez les moyens de réduire l’impact environnemental des millions de sites WordPress.','Edit videos and add captions to WordPress.tv.'=>'Gérez les vidéos et ajoutez des sous-titres sur WordPress.tv','Lend your creative imagination to the WordPress UI design.'=>'Laissez libre cours à votre imagination créative pour la conception de l’interface d’utilisation de WordPress','Organize or participate in local Meetups and WordCamps.'=>'Organisez ou participez à des Meetups WordPress locaux ou à des WordCamps','Curate submissions or take photos for the Photo Directory.'=>'Sélectionnez les propositions ou prenez des photos pour le répertoire de photos de WordPress.','Promote the WordPress project to your community.'=>'Faites la promotion du projet WordPress auprès de la communauté','Create and improve WordPress educational materials.'=>'Créez et améliorez le matériel pédagogique de WordPress','Translate WordPress into your local language.'=>'Traduisez WordPress dans votre langue','Write or improve documentation for WordPress.'=>'Rédigez ou améliorez la documentation de WordPress','Share your knowledge in the WordPress support forums.'=>'Partagez vos connaissances sur les forums d’entraide de WordPress','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress se nourrit de contributions techniques, mais il n’est pas nécessaire de savoir coder pour contribuer. Voici quelques-unes des façons qui vous permettent d’avoir un impact sans écrire une seule ligne de code :','No-code contribution'=>'Contributer sans coder','Grow your network and make friends.'=>'Développez votre réseau et faites-vous des amis','Apply your skills or learn new ones.'=>'Appliquez vos compétences ou apprenez-en de nouvelles','Be part of a global open source community.'=>'Rejoignez une communauté mondiale dédiée au logiciel libre','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Rejoignez la communauté WordPress et connectez-vous avec d’autres personnes qui ont à cœur de maintenir le web libre et ouvert.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Vous utilisez WordPress dans le cadre de votre travail, de vos projets personnels ou simplement pour le plaisir ? Vous pouvez contribuer au succès à long terme du projet open source qui alimente des millions de sites web dans le monde.','Be the future of WordPress'=>'Participez à l‘avenir de WordPress','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress.','Support forums'=>'forums de support','Documentation on Widgets'=>'Écran Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'Voir vous emmène sur l’archive publique de l’auteur ou de l’autrice, qui liste toutes ses publications mises en ligne.','Download file downloads the original media file to your device.'=>'Télécharger le fichier télécharge le fichier média original sur votre appareil.','site editor title tagEditor'=>'Éditeur','Documentation on Auto-updates'=>'Documentation sur les mises à jour automatiques','Documentation on date and time formatting.'=>'Documentation sur le formatage de la date et de l’heure.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'Vous pouvez définir la langue, et WordPress va automatiquement télécharger et installer les fichiers de traduction (disponible si votre système de fichier autorise l’écriture).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'Si vous voulez que les internautes puissent créer eux-mêmes un compte sur le site, cochez la case d’adhésion. Si vous voulez que l’administrateur ou l’administratrice du site soit responsable de l’inscription de chaque compte chaque, laissez la case non-cochée. Dans tous les cas, vous pouvez définir un rôle par défaut pour tout nouveau compte.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'L’URL de WordPress et l’URL du site peuvent commencer par %1$s ou %2$s. Une URL commençant par %2$s nécessite de disposer d’un certificat SSL, alors assurez-vous d’en avoir un installé avant de passer à %2$s. Avec %2$s, un cadenas va s’afficher à côté de l’adresse du site dans votre navigateur. Le fait d’avoir une adresse en %2$s et d’afficher le cadenas dans le navigateur est un bon indice que votre site respecte certaines bases de sécurité web, ce qui permet d’établir une relation de confiance avec les internautes tout comme avec les moteurs de recherche.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Même si le terme correspond à deux concepts spécifiques, en pratique cela peut être la même adresse ou des adresses différentes. Par exemple, vous pouvez avoir les fichiers du cœur de WordPress dans le répertoire racine (https://example.com), auquel cas les deux URL seront similaires. Vous pouvez aussi placer les fichiers de WordPress dans un sous répertoire (https://example.com/wordpress). Dans ce cas, l’URL de WordPress et l’URL du site seront différentes.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Il est important de différencier URL de WordPress et URL du site. L’URL de WordPress est l’endroit où se trouvent les fichiers d’installation du cœur de WordPress, et l’URL du site est l’adresse qu’un visiteur utilise dans son navigateur pour se rendre sur votre site.','RoboHash (Generated)'=>'RoboHash (généré)','site editor menu itemEditor'=>'Éditeur','Allow trackbacks and pingbacks'=>'Autoriser les rétroliens et pings','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://fr.wordpress.org/support/article/custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://fr.wordpress.org/support/article/excerpt/','%s expects a non-empty string.'=>'%s attend une chaine non vide.','The destination directory already exists and could not be removed.'=>'Le répertoire de destination existe déjà et ne peut être supprimé.','The destination folder already exists.'=>'Le dossier de destination existe déjà.','The source and destination are the same.'=>'La source et la destination sont identiques.','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas.','Download “%s”'=>'Télécharger « %s »','The "%s" argument must be a non-empty string.'=>'L’argument « %s » doit être une chaine non vide.','Documentation on Writing and Editing Posts'=>'Documentation sur la rédaction d’articles','Documentation on Keyboard Shortcuts'=>'Documentation sur les raccourcis clavier','Documentation on Comment Spam'=>'Documentation sur les commentaires indésirables','Documentation on Customizer'=>'Documentation sur l’outil de personnalisation','https://wordpress.org/download/'=>'https://wordpress.org/download/','This is the final release of WordPress %s'=>'Il s’agit de la version finale de WordPress %s','Site Editor'=>'Éditeur de site','Send password reset sends the user an email with a link to set a new password.'=>'Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copier l’URL copie l’URL du fichier média dans votre presse-papier.','View will take you to a public display page for that file.'=>'Le lien Voir vous mènera vers une page publique pour ce fichier.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Le lien Supprimer définitivement détruira le fichier de la médiathèque (ainsi que dans n’importe quelle publication à laquelle il serait attaché).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Modifier vous amène à un écran simple pour modifier les métadonnées de ce fichier individuel. Vous pouvez également accéder à cet écran en cliquant sur le nom ou sur la vignette du média.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Le survol d’une ligne révèle des liens d’action qui vous permettent de gérer les médias. Vous pouvez effectuer les actions suivantes :','themesBlock Themes'=>'Thèmes basés sur des blocs','Documentation on Block Themes'=>'Documentation sur les thèmes basés sur des blocs','Block themes'=>'Thèmes basés sur des blocs','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'Avec un thème basé sur des blocs, vous pouvez disposer et modifier les blocs sans affecter votre contenu en personnalisant ou en créant de nouveaux modèles.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'Un thème basé sur des blocs est un thème qui utilise des blocs pour tous les éléments du site, ce qui comprend les menus de navigation, l’entête, le contenu ou encore le pied de page du site. Ces thèmes sont conçus pour prendre en charge les fonctionnalités qui vous permettent de modifier et de personnaliser toutes les parties de votre site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Les éléments recommandés sont considérés comme bénéfiques pour votre site. Bien qu’ils ne soient pas aussi prioritaires que les anomalies critiques, ils peuvent inclure des améliorations de performances, d’expérience d’utilisation, et bien plus encore.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité.','Configuration rules for %s:'=>'Règles de configuration pour %s :','Customize permalink structure by selecting available tags'=>'Personnalisez la structure des permaliens en sélectionnant les balises disponibles','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Sélectionnez la structure de permaliens de votre site. L’inclusion de la balise %s rend les liens plus faciles à lire et peut aider le référencement de vos publications.','%s removed from permalink structure'=>'%s retiré de la structure de permaliens','Site Health %s'=>'Santé du site %s','Theme Styles & Block Settings'=>'Styles du thème et réglages des blocs','The minimum recommended version of PHP is %s.'=>'La version minimale recommandée de PHP est %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress. Assurez-vous dès que possible que PHP soit mis à jour sur votre serveur. Sinon, vous ne pourrez pas mettre à jour WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress. Assurez-vous que PHP est à jour sur votre serveur dès que possible. Sinon, vous ne pourrez plus mettre à niveau WordPress à l’avenir.','Persistent object cache'=>'Cache objet persistant','Page cache'=>'Cache des page','You should use a persistent object cache'=>'Vous devriez utiliser un cache objet persistant','Your host appears to support the following object caching services: %s.'=>'Votre hébergeur semble prendre en charge les services de cache objet suivants : %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Votre hébergeur peut vous indiquer si un cache objet persistant peut être activé sur votre site.','A persistent object cache is not required'=>'Le cache objet persistant n’est pas obligatoire','Learn more about persistent object caching.'=>'En savoir plus sur la mise en cache objet persistant.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'Un cache objets persistant rend la base de données de votre site plus efficace, ce qui assure des temps de chargement plus rapides car WordPress peut récupérer le contenu et les réglages de votre site beaucoup plus rapidement.','A persistent object cache is being used'=>'Un cache objet persistant est utilisé','A page cache plugin was not detected.'=>'Aucune extension de mise en cache des pages n’a été détectée.','A page cache plugin was detected.'=>'Une extension de mise en cache des pages a été détectée.','There was %d client caching response header detected:'=>'%d entête de réponse de cache client a été détecté :' . "\0" . '%d entêtes de réponses de cache client ont été détectés :','No client caching response headers were detected.'=>'Aucun entête de réponse de cache client n’a été détecté.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. Il devrait être inférieur au seuil recommandé de %2$s millisecondes.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. C’est moins que le seuil recommandé de %2$s millisecondes.','Server response time could not be determined. Verify that loopback requests are working.'=>'Le temps de réponse du serveur n’a pas pu être déterminé. Vérifiez que les boucles de requêtes fonctionnent.','Page cache is detected but the server response time is still slow'=>'La mise en cache des pages est détectée mais le temps de réponse du serveur est toujours lent','Page cache is not detected and the server response time is slow'=>'La mise en cache des pages n’est pas détectée et le temps de réponse du serveur est lent','Page cache is detected and the server response time is good'=>'La mise en cache des pages est détectée et le temps de réponse du serveur est bon','Page cache is not detected but the server response time is OK'=>'La mise en cache des pages n’est pas détectée mais le temps de réponse du serveur est OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Impossible de détecter le cache de la page en raison d’un éventuel problème de boucle de requête. Veuillez vérifier que le test de boucle de requête passe correctement. Erreur : %1$s (code : %2$s)','Unable to detect the presence of page cache'=>'Impossible de détecter la présence de la mise en cache des pages','Learn more about page cache'=>'En savoir plus sur la mise en cache des pages','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Le cache de page est détecté en recherchant une éventuelle extension de cache active sur le site, et aussi en effectuant trois requêtes sur la page d’accueil et en recherchant un ou plusieurs entêtes de réponse de mise en cache du client HTTP parmi les entêtes suivants :','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'L’utilisation de la mise en cache des pages améliore la vitesse et les performances de votre site en servant des pages statiques au lieu de générer entièrement chaque page à chaque visite d’un internaute.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'Si vous voyez toujours cet avertissement après avoir essayé les actions ci-dessous, vous devriez peut-être contacter votre hébergeur pour obtenir de l’aide.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'L’entête d’autorisation est utilisé par les applications tierces que vous avez approuvées pour ce site. Sans cet entête, ces applications ne peuvent pas se connecter à votre site.','When testing the REST API, an unexpected result was returned:'=>'Lors du test de l’API REST, un résultat inattendu a été retourné :','REST API Response: (%1$s) %2$s'=>'Réponse de l’API REST : (%1$s) %2$s','REST API Endpoint: %s'=>'Point de terminaison de l’API REST : %s','When testing the REST API, an error was encountered:'=>'Lors du test de l’API REST, une erreur s’est produite :','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas les mises à jour de sécurité. Une mise à jour est nécessaire.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit plus de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress.','Requirements'=>'Prérequis','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Votre site fonctionne avec une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site. La version minimale recommandée de PHP est %s.','Your site does not have any installed themes.'=>'Votre site ne dispose d’aucun thème installé.','Your site does not have any active plugins.'=>'Votre site ne dispose d’aucune extension installée.','Another attempt will be made with the next release.'=>'Une autre tentative sera faite avec la prochaine version.','The %1$s constant is defined as %2$s'=>'La constante %1$s est définie à %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'Le paramètre %1$s doit être une chaîne non vide pour %2$s.','The %s argument must be an array.'=>'Le paramètre %s doit être un tableau.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (de la version %2$s vers %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://fr.wordpress.org/2024/10/28/guide-des-changements-techniques-de-wordpress-6-7/','Learn more about WordPress %s'=>'En savoir plus sur WordPress %s','Please type your comment text.'=>'Veuillez saisir le texte de votre commentaire.','You cannot remove users.'=>'Vous ne pouvez pas supprimer ces comptes.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin.' . "\0" . 'Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données.','Documentation on Managing Themes'=>'Documentation sur la gestion des thèmes','This information is being used to create a %s file.'=>'Ces informations sont utilisées pour créer un fichier %s.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Bienvenue sur WordPress. Avant de commencer, vous aurez besoin de connaître les éléments suivants.','Settings save failed.'=>'L’enregistrement des réglages a échoué.','After your Privacy Policy page is set, you should edit it.'=>'Après avoir défini votre page de politique de confidentialité, vous devez la modifier.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, il n’a donc pas été possible de le mettre à jour automatiquement. Voici les règles mod_rewrite que vous devriez avoir dans votre fichier %1$s. Cliquez dans le champs et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, donc sa mise à jour automatique n’a pas été possible. Il s’agit de la règle de réécriture d’URL que vous devriez avoir dans le fichier %1$s. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Ensuite, insérez cette règle dans l’élément %5$s du fichier %1$s.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'Un avatar est une image qui peut être associée à un compte sur plusieurs sites. Dans cette zone, vous pouvez choisir d’afficher les avatars des comptes qui interagissent avec le site.','Change Permalink Structure'=>'Modifier la structure des permaliens','Howdy, + +A site administrator (###USERNAME###) recently requested to have the +administration email address changed on this site: +###SITEURL### + +To confirm this change, please click on the following link: +###ADMIN_URL### + +You can safely ignore and delete this email if you do not want to +take this action. + +This email has been sent to ###EMAIL### + +Regards, +All at ###SITENAME### +###SITEURL###'=>'Bonjour ###USERNAME###, + +Un administrateur ou une administratrice du site a récemment demandé la modification de l’adresse e-mail d’administration de ce site : +###SITEURL### + +Pour confirmer cette modification, veuillez cliquer sur le lien suivant : +###ADMIN_URL### + +Vous pouvez ignorer et supprimer cet e-mail si vous ne souhaitez pas effectuer cette action. + +Cet e-mail a été envoyé à ###EMAIL### + +Salutations, +L’équipe de ###SITENAME### +###SITEURL###','Where your data is sent'=>'Où vos données sont envoyées','Copy “%s” URL to clipboard'=>'Copier l’URL de “%s” dans le presse-papier','Some data that describes the error your site encountered has been put together.'=>'Des données relatives à l’erreur rencontrée par votre site ont été recueillies.','An attempt was made, but your site could not be updated automatically.'=>'Une tentative a été faite, mais votre site n’a pas pu être mis à jour automatiquement.','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée car certains fichiers n’ont pas pu être copiés. Ceci est généralement dû à des incohérences dans les droits des fichiers.','Media — A list of URLs for media files the user uploads.'=>'Médias — Une liste d’URL pour les téléversements de médias effectués par le compte.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Emplacement des évènements communautaires — L’adresse IP du compte, qui alimente le widget du tableau de bord des évènements communautaires à venir avec des informations pertinentes.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des personnes inscrites qui se sont connectées sur le site. En général, ce sont des personnes qui contribuent au site d’une certaine façon : contenu, gestion de boutique, et ainsi de suite. Hormis de rares exceptions, ces comptes n’incluent pas les visiteurs occasionnels qui pourraient s’être inscrits pour commenter des articles ou acheter des produits. Les données que WordPress conserve peuvent inclure :','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Remarque : Étant donné que cet outil collecte uniquement des données de WordPress et des extensions qui y contribuent, vous pourriez avoir besoin d’aller plus loin pour que vos demandes d’exportations soient conformes. Par exemple, vous devriez également envoyer au demandeur une partie des données collectées ou conservées par les services tiers que votre entreprise ou votre site utilise.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Les lois sur la protection de la vie privée du monde entier exigent des entreprises et des services en ligne qu’ils fournissent une exportation de certaines des données qu’ils recueillent sur les individus, et qu’ils fournissent cette exportation sur demande. Les droits que ces lois garantissent sont souvent appelés « droit à la portabilité des données ». Cela permet aux personnes d’obtenir et de réutiliser leurs données personnelles à leurs propres fins dans différents services. L’objectif est de leur permettre de déplacer, copier ou transférer facilement leurs données personnelles d’un environnement informatique à un autre.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Commentaires : WordPress ne supprime pas les commentaires. Le logiciel anonymise (et ne publie jamais) les informations associées comme l’adresse e-mail, l’adresse IP ou l’agent utilisateur (navigateur et système d’exploitation).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des comptes connectés mais ces données sont ensuite supprimées ou anonymisées. Ces données peuvent inclure :','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note : comme cet outil recueille uniquement des données provenant de WordPress et des extensions utilisées, il se peut que vous deviez faire davantage pour vous conformer aux demandes d’effacement de données. Par exemple, il vous incombe également de veiller à ce que les données collectées ou stockées par les services tiers utilisés par votre organisation soient aussi effacées.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Les lois sur la protection de la vie privée en vigueur dans le monde entier obligent les entreprises et les services en ligne à supprimer, anonymiser ou oublier les données recueillies sur une personne. Les droits que ces lois garantissent sont souvent appelés « droit à l’oubli ».','This screen is where you manage requests to erase personal data.'=>'Cet écran vous permet de gérer les demandes de suppression de données personnelles.','This post is being backed up in your browser, just in case.'=>'Cette publication est sauvegardée dans votre navigateur, au cas où.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'Ceci vous donne accès à %2$s site sur le réseau étant donné que vous avez des droits de Super Admin.' . "\0" . 'Ceci vous donne accès à l’ensemble des %2$s sites sur le réseau étant donné que vous avez des droits de Super Admin.','Learn about block themes'=>'En savoir plus sur les thèmes basés sur des blocs','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'Il existe maintenant une nouvelle sorte de thème WordPress : les thèmes basés sur des blocs. Ils vous donnent la possibilité de construire le site que vous avez toujours voulu, en agençant des blocs et en leur donnant des styles graphiques.','Discover a new way to build your site.'=>'Découvrez une nouvelle façon de construire votre site','Edit styles'=>'Modifier les styles','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Ajustez votre site, ou donnez-lui une apparence totalement nouvelle ! Laissez libre cours à votre imagination… que diriez vous d’une nouvelle palette de couleurs ou de nouvelles polices d’écriture ?','Switch up your site’s look & feel with Styles'=>'Modifiez l’apparence de votre site avec les styles globaux','Open the Customizer'=>'Ouvrir l’outil de personnalisation','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configurez le logo de votre site, son entête, ses menus et bien plus encore avec l’outil de personnalisation.','Start Customizing'=>'Personnalisez votre site comme vous le voulez','Open site editor'=>'Ouvrir l’éditeur de site','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Bâtissez l’ensemble de votre site, de l’entête au pied de page, en utilisant simplement des blocs et des compositions.','Customize your entire site with block themes'=>'Personnalisez l’ensemble de votre site avec les thèmes basés sur des blocs','Add a new page'=>'Créer une nouvelle page','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Les compositions de blocs sont des mises en page de blocs pré-configurées. Utilisez-les pour vous en inspirer ou pour créer des nouvelles page en un clin d’œil.','Author rich content with blocks and patterns'=>'Créez des contenus riches avec les blocs et les compositions','Learn more about the %s version.'=>'En savoir plus sur la version %s','WordPress is free and open source software'=>'WordPress est un logiciel libre et ouvert','Plugin File Editor'=>'Éditeur de fichiers des extensions','Theme File Editor'=>'Éditeur de fichiers des thèmes','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications.','The application password feature requires HTTPS, which is not enabled on this site.'=>'La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site.','g:i a T'=>'G\\hi','Documentation on Editing Themes'=>'Documentation sur l’éditeur de thèmes','Documentation on Site Health tool'=>'Documentation sur l’outil Santé du site','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'Dans l’onglet Informations, vous trouverez tous les détails concernant la configuration de votre site WordPress, le serveur, et la base de données. Il existe également une fonctionnalité d’exportation qui vous permet de copier toutes les informations concernant votre site vers le presse-papier, ce qui vous aidera à résoudre les problèmes sur votre site lorsque vous chercherez de l’aide sur les forums.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'Dans l’onglet État, vous pouvez voir les informations critiques concernant votre configuration de WordPress, ainsi que tout ce qui requiert votre attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'Cet écran vous permet d’obtenir un diagnostic de santé de votre site, et affiche une évaluation globale de l’état de votre installation.','Documentation on Privacy Settings'=>'Documentation sur les réglages de confidentialité','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'Cet écran comprend des suggestions pour vous aider à rédiger votre propre politique de confidentialité. Cependant, il est de votre responsabilité d’utiliser correctement ces ressources, de fournir les informations requises par votre politique de confidentialité, et de maintenir ces informations à jour et exactes.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'L’écran Confidentialité vous permet soit de créer une nouvelle page de politique de confidentialité, soit de choisir une page existante à afficher.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Des publications individuelles peuvent surcharger ces réglages. Les modifications ne seront ici appliquées qu’aux nouvelles publications.','Menu item moved to the top'=>'Élément de menu déplacé vers le haut','Menu item removed'=>'Élément de menu retiré','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'Le Tableau de bord est le premier endroit sur lequel vous arrivez à chaque fois que vous vous connectez à votre site. C’est là que vous trouverez tous vos outils WordPress. Si vous avez besoin d’aide, cliquez simplement sur l’onglet « Aide » au dessus du titre de l’écran.','Welcome to your WordPress Dashboard!'=>'Bienvenue sur votre Tableau de bord WordPress !','The application ID must be a UUID.'=>'L’ID de l’application doit être un UUID.','Select location'=>'Sélectionner un emplacement','Visit plugin site for %s'=>'Consultez le site de l’extension %s','pluginCannot Activate'=>'Impossible à activer','Max connections number'=>'Nombre maximal de connexions','Max allowed packet size'=>'Taille maximale autorisée du paquet','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Votre site semble utiliser une authentification de base, ce qui n’est actuellement pas compatible avec les mots de passe d’applications.','%1$s “%2$s”'=>'%1$s « %2$s »','Template Editing'=>'Modification de modèles','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress est distribué sous la merveilleuse licence GPL, qui vous garantit la plus grande liberté d’utilisation possible.','Want to see your name in lights on this page?'=>'Voudriez-vous voir votre nom cité sur cette page ?','Get involved in WordPress.'=>'Contribuez à WordPress','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress est créé par une équipe de personnes passionnées répartie dans le monde entier.','%s plugin deactivated during WordPress upgrade.'=>'Extension « %s » désactivée pendant la mise à jour de WordPress.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus.','The Four Freedoms'=>'Les quatre libertés','themeDelete %s'=>'Supprimer %s','themeLive Preview %s'=>'Prévisualiser %s','themeCustomize %s'=>'Personnaliser %s','themeView Theme Details for %s'=>'Voir les détails du thème %s','Toggle extra menu items'=>'Permuter les éléments de menu additionnels','Site Health - %s'=>'Santé du site – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre le fichier %1$s accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Changer les droits des fichiers pour plus d’informations.','Rewrite rules:'=>'Règles de réécriture :','List of menu items selected for deletion:'=>'Liste des éléments de menu sélectionnés pour la suppression :','Remove Selected Items'=>'Supprimer les éléments sélectionnés','Bulk Select'=>'Sélection groupée','Deleted menu item: %s.'=>'Élément de menu supprimé : %s.','item %s'=>'élément %s','Themes %s'=>'Thèmes %s','Unable to encode the personal data for export. Error: %s'=>'Impossible d’encoder les données personnelles pour l’exportation. Erreur : %s','The %s post meta must be an array.'=>'La metadonnée de publication %s doit être un tableau.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'La santé de votre site semble bonne, mais il y a encore une chose que vous pouvez faire pour améliorer ses performances et sa sécurité.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre une erreur critique qui doit être réglée dès que possible afin d’améliorer ses performances et sa sécurité.','Learn how to browse happy'=>'Apprenez comment naviguer sereinement','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site.','GD supported file formats'=>'Formats de fichier GD pris en charge','Unable to determine'=>'Impossible à déterminer','ImageMagick supported file formats'=>'Formats de fichier ImageMagik pris en charge','Imagick version'=>'Version de Imagick','themeUploaded'=>'Téléversé','pluginReplace current with uploaded'=>'Remplacer l’extension actuelle par celle que vous avez téléversée','pluginUploaded'=>'Téléversée','pluginCurrent'=>'Actuelle','Please activate the Link Manager plugin to use the link manager.'=>'Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien.','Create a new Privacy Policy page'=>'Créer une nouvelle page de politique de confidentialité','Send personal data export confirmation email.'=>'Envoyer un e-mail de confirmation d’exportation des données personnelles.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en exportant les données connues d’un compte donné dans un fichier ZIP.','Documentation on Export Personal Data'=>'Documentation sur l’exportation de données personnelles','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles dans la base de données WordPress ou sur leurs propres serveurs. Toute demande d’exportation de données personnelles doit également inclure les données des extensions.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil d’exportation des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Commentaires — Pour tout commentaire déposé sur le site, adresse e-mail, adresse IP, agent utilisateur (navigateur/OS), date/heure, contenu du commentaire et URL du contenu.','This screen is where you manage requests for an export of personal data.'=>'Cet écran vous permet de gérer les demandes d’exportation de données personnelles.','Site URLs could not be switched to HTTPS.'=>'Les URL du site ne peuvent pas être passées en HTTPS.','Site URLs switched to HTTPS.'=>'Les URL du site ont été passées en HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'Il semble que le protocole HTTPS ne soit pas pris en charge par votre site à ce stade.','Sorry, you are not allowed to update this site to HTTPS.'=>'Désolé, vous n’avez pas l’autorisation de passer ce site en HTTPS.','Password reset links sent to %s user.'=>'Le lien de réinitialisation du mot de passe a été envoyé à %s compte.' . "\0" . 'Le lien de réinitialisation du mot de passe a été envoyé à %s comptes.','Password reset link sent.'=>'Le lien de réinitialisation du mot de passe a été envoyé.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas son mot de passe, ni ne l’obligera à le modifier.','Send Reset Link'=>'Envoyer le lien de réinitialisation','Policies'=>'Politiques','The Privacy Settings require JavaScript.'=>'Les réglages de confidentialité nécessitent JavaScript.','Privacy SettingsPolicy Guide'=>'Guide de politique','Privacy SettingsSettings'=>'Réglages ','Re-install version %s'=>'Réinstaller la version %s','Update to latest %s nightly'=>'Mettre à jour vers la dernière version nightly','Send personal data erasure confirmation email.'=>'Envoyer l’e-mail de confirmation de la suppression des données personnelles.','Confirmation email'=>'E-mail de confirmation','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en supprimant ou en anonymisant les données connues d’un compte donné.','Documentation on Erase Personal Data'=>'Documentation sur l’effacement de données personnelles','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles, soit dans la base de données WordPress, soit à distance. Toute demande d’effacement de données personnelles doit également effacer les données des extensions.','Plugin Data'=>'Données des extensions','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil de suppression des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Media — A list of URLs for all media file uploads made by the user.'=>' Fichiers multimédias – une liste d’URL pour tous les téléversements de fichiers multimédias effectués par le compte.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Jetons de session – informations de connexion de l’utilisateur ou de utilisatrice, adresses IP, date d’expiration, agent utilisateur (navigateur/OS) et dernière connexion.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Localisation d’évènements communautaires – adresse IP de l’utilisateur ou de l’utilisatrice qui est utilisée pour les prochains évènements de la communauté indiqués dans le widget du tableau de bord.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Informations de profil — adresse e-mail du compte, identifiant, nom affiché, pseudonyme, prénom, nom, description/bio, et date d’inscription.','Default Data'=>'Données par défaut','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'L’outil associe les données stockées dans WordPress par une adresse e-mail fournie, y compris les données de profil et les commentaires.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Vous voulez plus d’évènements ? Aidez à organiser le prochain !','A password reset link was emailed to %s.'=>'Un lien de réinitialisation du mot de passe a été envoyé par e-mail à %s.','Cannot send password reset, permission denied.'=>'Impossible d’envoyer le lien de réinitialisation du mot de passe, autorisation refusée.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'Le réglage pour %1$s est actuellement configuré à 0, ce qui pourrait causer quelques problèmes lorsque vous essayez de téléverser des fichiers par le biais d’extensions ou de thèmes qui dépendent de différentes méthodes de téléversement. Il est recommandé de configurer ce réglage à une valeur fixe, correspondant idéalement à la valeur de %2$s, car certaines méthodes de téléversement lisent la valeur 0 comme étant soit illimitée, soit désactivée.','Talk to your web host about supporting HTTPS for your website.'=>'Contactez votre hébergeur pour la prise en charge HTTPS sur votre site.','Update your site to use HTTPS'=>'Mettre à jour votre site pour utiliser le HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'Bien que votre adresse WordPress est actuellement contrôlée par une constante PHP et ne peut donc pas être mise à jour. Vous devez modifier votre %1$s et supprimer ou mettre à jour les définitions de %2$s et de %3$s.','HTTPS is already supported for your website.'=>'Le HTTPS est déjà pris en charge pour votre site.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant le HTTPS, mais votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS par défaut.','Your Site Address is not set up to use HTTPS.'=>'Votre adresse de site n’est pas configurée pour utiliser le HTTPS.','Learn more about debugging in WordPress.'=>'En savoir plus sur le débogage de WordPress.','Added'=>'Ajouté','Send password reset'=>'Réinitialisation de mot de passe','Contact information'=>'Informations de contact','Copy suggested policy text to clipboard'=>'Copier la suggestion de texte de politique de confidentialité dans le presse-papier','Directory listing failed.'=>'Le listage du répertoire a échoué.','Search Results'=>'Résultats de recherche','Invalid request ID when processing personal data to erase.'=>'ID non valide lors de la fusion des données personnelles à supprimer.','Invalid request ID when merging personal data to export.'=>'ID non valide lors de la fusion des données personnelles à exporter.','Unable to archive the personal data export file (HTML format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format HTML).','Unable to archive the personal data export file (JSON format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format JSON).','Unable to open personal data export (HTML report) for writing.'=>'Impossible d’ouvrir le fichier d’exportation des données personnelles (rapport HTML) en écriture.','Unable to create personal data export folder.'=>'Impossible de créer le dossier d’exportation des données personnelles du compte.','Request added successfully.'=>'La demande a bien été ajoutée.','Invalid personal data action.'=>'Action des données personnelles non valide.','Unable to initiate confirmation for personal data request.'=>'Impossible d’initier la confirmation pour la demande de données personnelles.','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Votre site utilise une version obsolète de PHP (%s), qui devrait être mise à jour.','PHP Update Recommended'=>'Mise à jour PHP recommandée','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'Ce site semble être sous contrôle de version. Les mises à jour automatiques sont désactivées.','You are using a development version of WordPress.'=>'Vous utilisez actuellement une version de développement de WordPress.','You can update to the latest nightly build manually:'=>'Vous pouvez mettre à jour vers la dernière version du jour manuellement :','Enable automatic updates for all new versions of WordPress.'=>'Activer les mises à jour automatiques pour toutes les nouvelles versions de WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Basculer sur les mises à jour de maintenance et de sécurité uniquement.','Current version: %s'=>'Version actuelle : %s','This site will not receive automatic updates for new versions of WordPress.'=>'Ce site ne recevra pas de mise à jour automatique pour les nouvelles versions de WordPress.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'Ce site est automatiquement mis à jour avec uniquement les versions de maintenance et de sécurité de WordPress.','This site is automatically kept up to date with each new version of WordPress.'=>'Ce site est automatiquement mis à jour avec chaque nouvelle version de WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'À partir de maintenant, WordPress ne recevra que les mises à jour automatiques de sécurité et de maintenance.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Les mises à jour automatiques de toutes les nouvelles versions de WordPress ont été activées. Merci !','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site.','Your new password for %s is:'=>'Votre nouveau mot de passe pour %s est :','Add Application Password'=>'Ajouter un mot de passe d’application','Required to create an Application Password, but not to update the user.'=>'Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte.','Go to Updates'=>'Aller aux mises à jour','← Go to Users'=>'← Aller aux comptes','← Go to editor'=>'← Aller à l’éditeur','Go to Plugin Installer'=>'Aller à l’installeur d’extensions','Go to Importers'=>'Aller aux outils d’importation','Go to Theme Installer'=>'Aller à l’installeur de thèmes','Go to top'=>'Aller en haut','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'La localisation de %s n’a pas fonctionné. Veuillez essayer une autre ville proche. Par exemple : Rennes, Strasbourg ou Grenoble.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'Vous serez redirigé vers le Tableau de bord de WordPress, et aucune modification ne sera faite.','No, I do not approve of this connection'=>'Non, je n’autorise pas cette connexion','You will be given a password to manually enter into the application in question.'=>'Un mot de passe à saisir manuellement dans l’application en question vous sera donné.','You will be sent to %s'=>'Vous allez être redirigé vers %s','Yes, I approve of this connection'=>'Oui, j’autorise la connexion','This will grant access to the %2$s site in this installation that you have permissions on.'=>'Cela donnera accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Cela donnera accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir à cette application un accès à votre compte ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir un accès à votre compte à l’application s’identifiant comme %s ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','An application would like to connect to your account.'=>'Une application souhaite se connecter à votre compte.','Cannot Authorize Application'=>'Impossible d’autoriser l’application','The Authorize Application request is not allowed.'=>'La demande d’autorisation pour les applications n’est pas autorisée.','Authorize Application'=>'Autoriser l’application','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer.','New Application Password Name'=>'Nouveau nom du mot de passe d’application','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site.','Application Passwords'=>'Mots de passe d’application','Type the new password again.'=>'Saisissez à nouveau le nouveau mot de passe.','Set New Password'=>'Définir le nouveau mot de passe','Type the password again.'=>'Saisissez à nouveau le nouveau mot de passe.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'Vous pouvez mettre à jour de WordPress %1$s à WordPress %3$s manuellement :','Revoke all application passwords'=>'Révoquer tous les mots de passe d’application','Revoke "%s"'=>'Révoquer « %s »','Revoke'=>'Révoquer','Last IP'=>'Dernière IP','Last Used'=>'Dernier utilisé','The Site Health check for %1$s has been replaced with %2$s.'=>'La fonction %1$s de l’outil Santé du site a été remplacée par %2$s.','Erase personal data'=>'Effacer les données personnelles','- %1$s (from version %2$s to %3$s)'=>'- %1$s (de la version %2$s à %3$s)','Current Header Video'=>'Vidéo d’entête actuelle','Authorization header'=>'Entête d’autorisation','Learn how to configure the Authorization header.'=>'En savoir plus sur la configuration des entêtes d’autorisation.','Flush permalinks'=>'Regénérer les permaliens','The authorization header is invalid'=>'L’entête d’autorisation est invalide.','The authorization header is missing'=>'L’entête d’autorisation est manquant','The Authorization header is working as expected'=>'L’entête d’autorisation fonctionne comme prévu','Some screen elements can be shown or hidden by using the checkboxes.'=>'Certains éléments de l’écran peuvent être affichés ou masqués en utilisant les cases à cocher.','Screen elements'=>'Éléments de l’écran','The URL must be served over a secure connection.'=>'L’URL doit être accédée via une connexion sécurisée.','If you request a password reset, your IP address will be included in the reset email.'=>'Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.','No plugins found for: %s.'=>'Aucune extension trouvée pour : %s.','Complete request'=>'Demande terminée','Mark export request for “%s” as completed.'=>'Marquer la demande d’exportation pour « %s » comme terminée.','%d request deleted successfully.'=>'%d demande bien supprimée.' . "\0" . '%d demandes bien supprimées.','%d request failed to delete.'=>'%d demande de suppression a échoué.' . "\0" . '%d demandes de suppression ont échoué.','%d request marked as complete.'=>'%d demande marquée comme terminée.' . "\0" . '%d demandes marquées comme terminées.','%d confirmation request re-sent successfully.'=>'%d demande de confirmation renvoyée avec succès.' . "\0" . '%d demandes de confirmation renvoyées avec succès.','%d confirmation request failed to resend.'=>'%d demande de confirmation n’a pas pu être renvoyée.' . "\0" . '%d demandes de confirmation n’ont pas pu être renvoyées.','Mark requests as completed'=>'Marquer les demandes comme terminées','Next steps'=>'Étapes suivantes','Unable to open personal data export file (archive) for writing.'=>'Impossible d’ouvrir en écriture le fichier (archive) d’exportation des données confidentielles du compte.','Unable to open personal data export file (JSON report) for writing.'=>'Impossible d’ouvrir le fichier (rapport JSON) d’exportation des données confidentielles du compte.','Unable to protect personal data export folder from browsing.'=>'Impossible de protéger le dossier d’exportation de confidentialité du compte contre l’affichage public.','Invalid email address when generating personal data export file.'=>'Réception d’une adresse e-mail non valide lors de la génération du fichier d’exportation de confidentialité du compte.','Invalid request ID when generating personal data export file.'=>'ID non valide lors de la demande génération du fichier d’exportation de confidentialité du compte.','Unable to generate personal data export file. ZipArchive not available.'=>'Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible.','Search results for: %s'=>'Résultats de recherche pour : %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Notez que même lorsqu’il est paramétré pour décourager les moteurs de recherche, votre site est toujours visible sur le web et que tous les moteurs de recherche ne suivent pas cette directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés ou non. Si vous préférez que ces services ignorent votre site, cochez l’option « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran.','The "%1$s" value is smaller than "%2$s"'=>'La valeur « %1$s » est inférieure à « %2$s »','Environment type'=>'Type d’environnement','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible.','Update Incompatible'=>'Mise à jour non compatible','This update does not work with your version of WordPress.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress.','This update does not work with your versions of WordPress and PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress et de PHP.','Disallowed Comment Keys'=>'Clés de commentaires non autorisées','Plugin and theme auto-updates'=>'Mise à jour auto des extensions et thèmes','There appear to be no issues with plugin and theme auto-updates.'=>'Il ne semble pas y avoir de problème avec les mises à jour automatiques des extensions et des thèmes.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions et des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Les mises à jour automatiques des extensions et/ou des thèmes semblent désactivées, mais les réglages s’affichent tout de même. Cela pourrait empêcher les mises à jour automatiques de fonctionner comme prévu.','Your site may have problems auto-updating plugins and themes'=>'Votre site semble avoir des problèmes avec les mises à jour automatiques des extensions et des thèmes.','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Les mises à jour automatiques des extensions et des thèmes permettent de s’assurer qu’ils soient toujours installés dans leur dernière version disponible.','Plugin and theme auto-updates appear to be configured correctly'=>'Les mises à jour automatiques des extensions et des thèmes semblent correctement configurées','themeActivate “%s”'=>'Activer « %s »','Sorry, you are not allowed to modify plugins.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'Le réglage de %1$s est inférieur à %2$s, ce qui pourrait causer des problèmes lors du téléversement de fichiers.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s est réglé sur %2$s. Vous ne pourrez pas téléverser des fichiers sur votre site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'La fonction %s a été désactivée. De ce fait, certains réglages des médias ne sont pas disponibles.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'La directive %1$s dans le fichier %2$s détermine si le téléversement de fichiers est autorisé sur votre site.','Files can be uploaded'=>'Les fichiers peuvent être téléversés','Max effective file size'=>'Taille de fichier effective maximale','Max size of an uploaded file'=>'Taille maximale des fichiers téléversés','Max size of post data allowed'=>'Taille maximale autorisée pour les données des publications','File uploads'=>'Téléversements de fichiers','File upload settings'=>'Réglages des téléversements de fichiers','themeCannot Install %s'=>'Impossible d’installer %s','pluginInstall %s'=>'Installer %s','themeInstall %s'=>'Installer %s','themeUpdate %s now'=>'Mettre à jour %s maintenant','- %1$s version %2$s'=>'- %1$s version %2$s','themeActivated'=>'Activé','Sorry, you are not allowed to enable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation d’activer les mises à jour automatiques de thèmes.','This plugin is already installed.'=>'Cette extension est déjà installée.','pluginUpdate %s now'=>'Mettre à jour %s maintenant','pluginInstall %s now'=>'Installer %s maintenant','Dismiss this notice.'=>'Ignorer cette notification.','themeCannot Activate %s'=>'Impossible d’activer %s','Theme will no longer be auto-updated.'=>'Le thème ne sera plus mis à jour automatiquement.','Theme will be auto-updated.'=>'Le thème sera mis à jour automatiquement.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour chaque thème. Les thèmes qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Sorry, you are not allowed to disable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les mises à jour automatiques des thèmes.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Désolé, vous n’êtes pas autorisé à gérer les mises à jour automatiques d’extensions.','Error in deleting the item.'=>'Erreur lors de la suppression de l’élément.','Error in restoring the item from Trash.'=>'Erreur lors de la restauration de l’élément depuis la corbeille.','Error in moving the item to Trash.'=>'Erreur lors du déplacement de l’élément vers la corbeille.','Selected plugins will no longer be auto-updated.'=>'Les extensions sélectionnées ne seront plus mises à jour automatiquement.','Selected plugins will be auto-updated.'=>'Les extensions sélectionnées seront mises à jour automatiquement.','Plugin will no longer be auto-updated.'=>'L’extension ne sera plus mise à jour automatiquement.','Plugin will be auto-updated.'=>'L’extension sera mise à jour automatiquement.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées extension par extension. Les extensions dont les mises à jour automatiques sont activées afficheront la date estimée de la prochaine mise à jour automatique. Les mises à jour automatiques dépendent du système de planification des tâches de WP-Cron.','Please connect to your network admin to manage plugins automatic updates.'=>'Veuillez vous connecter à l’administration de votre réseau pour gérer les mises à jour automatiques des extensions.','The admin email verification page will reappear after %s.'=>'La page de vérification de l’e-mail d’administration réapparaîtra après %s.','Auto-updates'=>'Mises à jour auto','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Veuillez noter que des thèmes et extensions tiers ou du code personnalisé peuvent passer outre la planification WordPress.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour les versions majeures de WordPress et pour chaque thème ou extension. Les thèmes et les extensions qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, consultez la page de documentation Comment mettre à jour WordPress.','themeCannot Activate'=>'Impossible à activer','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau.','media itemSuccess'=>'Succès','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Erreur : la version courante de WordPress (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Erreur : la version courante de PHP (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Erreur : la version courante de WordPress (%1$s) et PHP (%2$s) ne correspondent pas aux prérequis minimaux pour %3$s. L’extension nécessite WordPress %4$s et PHP %5$s.','Invalid data. The item does not exist.'=>'Données non valides. L’élément n’existe pas.','Invalid data. Unknown type.'=>'Données non valides. Type inconnu.','Invalid data. Unknown state.'=>'Données non valides. État inconnu.','Invalid data. No selected item.'=>'Données non valides. Aucun élément sélectionné.','You cannot reply to a comment on a draft post.'=>'Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon.','To manage themes on your site, visit the Themes page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des thèmes : %s','To manage plugins on your site, visit the Plugins page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des extensions : %s','These themes are now up to date:'=>'Ces thèmes sont maintenant à jour :','These plugins are now up to date:'=>'Ces extensions sont maintenant à jour :','These themes failed to update:'=>'Ces thèmes n’ont pas été mis à jour :','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire.','Howdy! Themes failed to update on your site at %s.'=>'Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some themes have failed to update'=>'[%s] Certaines mises à jour de thèmes ont échoué','Howdy! Plugins failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins have failed to update'=>'[%s] Certaines mises à jour d’extensions ont échoué','Howdy! Plugins and themes failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Certaines mises à jour d’extensions et de thèmes ont échoué','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some themes were automatically updated'=>'[%s] Certains thèmes ont été mis à jour automatiquement','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins were automatically updated'=>'[%s] Certaines extensions ont été mises à jour automatiquement','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins and themes have automatically updated'=>'[%s] Des extensions et thèmes ont été mis à jour automatiquement','Move %s box down'=>'Déplacer la boite %s vers le bas','Move %s box up'=>'Déplacer la boite %s vers le haut','commentNot spam'=>'N’est pas un indésirable','PHP Sessions'=>'Sessions PHP','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'Une session PHP a été créée par un appel de fonction %1$s. Cela interfère avec l’API REST et les requêtes de boucle (loopback). La session devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','An active PHP session was detected'=>'Une session PHP active a été détectée','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'Les sessions PHP créées par un appel de fonction %1$s peuvent interférer avec l’API REST et les requêtes de boucle (loopback). Une session active devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','No PHP sessions detected'=>'Aucune session PHP détectée.','Extended view'=>'Vue étendue','Compact view'=>'Vue compacte','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Erreur : les mots de passe ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs.','post action/button labelSchedule'=>'Planifier','No plugins found. Try a different search.'=>'Aucune extension trouvée. Essayez une recherche différente.','Automatic update scheduled in %s.'=>'Mise à jour automatique planifiée dans %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'La mise à jour automatique est en retard de %s. Il peut y avoir un problème avec WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Mise à jour automatique non planifiée. Il peut y avoir un problème avec WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'Vous mettez à jour une extension. Au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version d’une extension actuelle. Vous pouvez poursuivre l’installation de l’ancienne version, mais assurez-vous de sauvegarder la base de donnée et les fichiers auparavant.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais l’extension téléversée nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais l’extension téléversée nécessite la version %2$s.','The plugin cannot be updated due to the following:'=>'L’extension ne peut être mise à jour pour la raison suivante :','Plugin name'=>'Nom de l’extension','Theme downgraded successfully.'=>'Le thème a bien été rétrogradé.','Theme downgrade failed.'=>'La rétrogradation du thème a échoué.','Downgrading the theme…'=>'Rétrogradation du thème…','Updating the theme…'=>'Mise à jour du thème…','The active theme has the following error: "%s".'=>'Le thème actif contient l’erreur suivante : « %s ».','Enable auto-updates'=>'Activer les mises à jour auto','Disable auto-updates'=>'Désactiver les mises à jour auto','Disable Auto-updates'=>'Désactiver les mises à jour auto','Enable Auto-updates'=>'Activer les mises à jour auto','Auto-updates Disabled (%s)'=>'Mises à jour auto désactivées (%s)' . "\0" . 'Mises à jour auto désactivées (%s)','Auto-updates Enabled (%s)'=>'Mises à jour auto activées (%s)' . "\0" . 'Mises à jour auto activées (%s)','Automatic Updates'=>'Mises à jour automatiques','No plugins are currently available.'=>'Aucune extension n’est disponible pour l’instant.','Restore original image'=>'Restaurer l’image originale','The uploaded file has expired. Please go back and upload it again.'=>'Le fichier téléversé a expiré. Veuillez le téléverser à nouveau.','Cancel and go back'=>'Annuler et revenir en arrière','themeReplace installed with uploaded'=>'Remplacer le thème installé par celui que vous avez téléversé','You are updating a theme. Be sure to back up your database and files first.'=>'Vous mettez à jour un thème. Assurez-vous de sauvegarder votre base de données et vos fichiers d’abord.','You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version du thème installé. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais le thème téléversé nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais le thème téléversé nécessite la version %2$s.','The theme cannot be updated due to the following:'=>'Le thème ne peut pas être mis à jour pour les raisons suivantes :','(not found)'=>'(non trouvé)','Required PHP version'=>'Version de PHP nécessaire','Required WordPress version'=>'Version de WordPress nécessaire','Theme name'=>'Nom du thème','themeCannot Install'=>'Impossible d’installer','Block Editor Patterns'=>'Compositions pour l’éditeur de blocs','Plugin downgraded successfully.'=>'L’extension a bien été rétrogradée.','Plugin downgrade failed.'=>'La rétrogradation de l’extension a échoué.','Downgrading the plugin…'=>'Rétrogradation de l’extension…','Updating the plugin…'=>'Mise à jour de l’extension…','Could not remove the current plugin.'=>'Impossible de supprimer l’extension actuelle.','Removing the current plugin…'=>'Suppression de l’extension actuelle…','Auto-update'=>'Mise à jour auto','Auto-updates disabled'=>'Mises à jour auto désactivées','Auto-updates enabled'=>'Mises à jour auto activées','Are pretty permalinks supported?'=>'Les permaliens sont-ils pris en charge ?','PHP memory limit (only for admin screens)'=>'Limite de mémoire PHP (uniquement pour les écrans d’administration)','Is this site discouraging search engines?'=>'Ce site décourage-t-il les moteurs de recherche ?','Wide Blocks'=>'Blocs larges','Block Editor Styles'=>'Styles de l’éditeur de blocs','Spam'=>'Indésirable','Unable to write to %s file.'=>'Impossible d’écrire dans le fichier %s.','Error: The %s options page is not in the allowed options list.'=>'Erreur : page d’options %s introuvable dans la liste des options autorisées.','Error:'=>'Erreur :','You should update your %s file now.'=>'Vous devez mettre à jour votre fichier %s maintenant.','This localized version contains both the translation and various other localization fixes.'=>'Cette version localisée contient à la fois les traductions et d’autres correctifs de localisation.','Take a look at the %1$d item on the Site Health screen.'=>'Jetez un œil à %1$d élément sur l’écran de santé du site.' . "\0" . 'Jetez un œil à %1$d éléments sur l’écran de santé du site.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'L’état de santé de votre site semble correct, mais il reste des choses que vous pourriez faire afin d’améliorer ses performances et sa sécurité.','Great job! Your site currently passes all site health checks.'=>'Bon travail ! Votre site passe actuellement toutes les vérifications de santé du site.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre des erreurs critiques qui doivent être réglées dès que possible afin d’améliorer ses performances et sa sécurité.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Des contrôles de santé du site seront automatiquement effectués périodiquement pour recueillir des informations sur votre site. Vous pouvez également vous rendre sur l’écran de Santé du site pour recueillir dès maintenant des informations sur votre site.','No information yet…'=>'Aucune information pour le moment…','The uploaded file exceeds the %1$s directive in %2$s.'=>'Le fichier téléversé dépasse la directive %1$s dans %2$s.','No comments found in Trash.'=>'Aucun commentaire trouvé dans la corbeille.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel. Cette erreur peut également être due au fait que les téléversements sont désactivés dans votre fichier %1$s ou que %2$s est défini comme inférieur à %3$s dans %1$s.','A test is unavailable'=>'Un test n’est pas disponible','Error: %1$s (%2$s)'=>'Erreur : %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Votre site utilise une version dépréciée de PHP (%s), elle devrait être mise à niveau.','Your site is running on an older version of PHP (%s)'=>'Votre site utilise une version ancienne de PHP (%s)','Your site is running a recommended version of PHP (%s)'=>'Votre site utilise une version recommandée de PHP (%s)','No media files found in Trash.'=>'Aucun fichier média trouvé dans la corbeille.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'Renvoyer les demandes de confirmation','Delete requests'=>'Supprimer les demandes','Table prefix'=>'Préfixe de table','PHP Default Timezone'=>'Fuseau horaire par défaut de PHP','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été modifié après le chargement de WordPress par un appel à la fonction %s. Cela perturbe le fonctionnement du calcul des dates et des heures.','PHP default timezone is invalid'=>'Le fuseau horaire par défaut de PHP n’est pas valide.','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été configuré au chargement de WordPress. Ceci est nécessaire au fonctionnement du calcul des dates et des heures.','PHP default timezone is valid'=>'Le fuseau horaire par défaut de PHP est valide','The seventh parameter passed to %s should be numeric representing menu position.'=>'Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s.','https://wordpress.org/about/stats/'=>'https://fr.wordpress.org/about/stats/','Documentation on Export'=>'Documentation sur l’exportation','Documentation on Installing Plugins'=>'Documentation sur l’installation d’extensions','Documentation on Managing Pages'=>'Documentation sur la gestion des pages','Documentation on Managing Posts'=>'Documentation sur la gestion des articles','Documentation on Discussion Settings'=>'Documentation sur les réglages des commentaires','Documentation on Adding New Themes'=>'Documentation sur l’ajout de nouveaux thèmes','Documentation on Uploading Media Files'=>'Documentation sur le téléversement de médias','Descriptions of Roles and Capabilities'=>'Description des rôles et des permissions','Documentation on Managing Users'=>'Documentation sur la gestion des comptes','Documentation on User Profiles'=>'Documentation sur l’écran Profil','Documentation on Media Settings'=>'Documentation sur les réglages des médias','Documentation on Import'=>'Documentation sur l’import','Documentation on Tools'=>'Documentation sur l’écran Outils','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des choses ici, donc faites attention !','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format.','Documentation on Editing Pages'=>'Documentation sur la modification des pages','Documentation on Adding New Pages'=>'Documentation sur la création de nouvelles pages','Documentation on Media Library'=>'Documentation sur la médiathèque','Revisions Management'=>'Gestion des révisions','Documentation on Edit Media'=>'Documentation sur la modification des médias','Documentation on Managing Plugins'=>'Documentation sur la gestion des extensions (en anglais)','Documentation on Dashboard'=>'Documentation sur le Tableau de bord','Documentation on Adding New Users'=>'Documentation sur l’ajout de nouveaux comptes','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'Cette page peut vous afficher tous les détails sur la configuration de votre site WordPress. Pour toute amélioration qui pourrait être apportée, consultez la page État de santé du site.','Results are still loading…'=>'Les résultats sont toujours en cours de chargement…','Documentation on Using Permalinks'=>'Documentation sur l’utilisation des permaliens','Documentation on Permalinks Settings'=>'Documentation sur les réglages des permaliens','Documentation on Updating WordPress'=>'Documentation sur la mise à jour de WordPress','Documentation on Menus'=>'Documentation sur les menus','Documentation on Writing Plugins'=>'Documentation sur l’écriture d’extensions en anglais)','Documentation on Template Tags'=>'Documentation sur les balises de modèles (en anglais)','Documentation on Using Themes'=>'Documentation sur l’utilisation des thèmes','Documentation on Theme Development'=>'Documentation sur le développement de thèmes (en anglais)','Documentation on Comments'=>'Documentation sur les commentaires','Universal time is %s.'=>'L’heure universelle est %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire %s (Temps Universel Coordonné).','Administration Email Address'=>'Adresse e-mail d’administration','Documentation on General Settings'=>'Documentation sur les réglages généraux','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations.','Upload failed. Please reload and try again.'=>'Téléversement échoué. Veuillez actualiser et réessayer.','Data erasure has failed.'=>'L’effacement des données a échoué.','Erasure completed.'=>'Effacement terminé.','The attached file cannot be found.'=>'Le fichier attaché ne peut pas être trouvé.','page labelPrivacy Policy Page'=>'Page de politique de confidentialité','page labelPosts Page'=>'Page des articles','page labelFront Page'=>'Page d’accueil','post statusSticky'=>'Épinglé','post statusCustomization Draft'=>'Brouillon de personnalisation','post statusPassword protected'=>'Protégé par mot de passe','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s, est en retard. Votre site fonctionne toujours, mais cela peut indiquer que la planification des articles ou des mises à jour automatisées peuvent ne pas fonctionner comme prévu.','A scheduled event is late'=>'Un évènement planifié est en retard','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'Une connexion HTTPS est un moyen plus sûr de naviguer sur le web. De nombreux services ont maintenant HTTPS comme exigence. HTTPS vous permet de profiter de nouvelles fonctionnalités qui peuvent augmenter la vitesse du site, améliorer les classements de recherche et gagner la confiance de vos visiteurs en aidant à protéger leur vie privée en ligne.','Your version of WordPress (%s) is up to date'=>'Votre version de WordPress (%s) est à jour','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#gerer-les-commentaires','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#les-commentaires-spam','https://wordpress.org/documentation/article/block-themes/'=>'https://fr.wordpress.org/support/article/block-themes/','Publish on: %s'=>'Publier le : %s','Schedule for: %s'=>'Planifier pour le : %s','Published on: %s'=>'Publié le : %s','Scheduled for: %s'=>'Planifié pour le : %s','publish box time formatH:i'=>'H\\h i \\m\\i\\n','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are +dynamically generated, and should only be modified via WordPress filters. +Any changes to the directives between these markers will be overwritten.'=>'Les directives (lignes) entre « BEGIN %1$s » et « END %1$s » sont générées +dynamiquement, et doivent être modifiées uniquement via les filtres WordPress. +Toute modification des directives situées entre ces marqueurs sera surchargée.','All automatic updates are disabled.'=>'Toutes les mises à jour automatiques sont désactivées.','Database collation'=>'Classement de base de données','Database charset'=>'Jeu de caractères de la base de données','Inactive Themes'=>'Thèmes inactifs','Parent Theme'=>'Thème parent','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Les extensions avancées sont des fichiers uniques, trouvés dans le répertoire %s, qui remplacent ou améliorent les fonctionnalités de WordPress d’une manière non accessible aux extensions traditionnelles.','personal data group descriptionOverview of export report.'=>'Vue globale du rapport sur les exportations.','Documentation on Writing Settings'=>'Documentation sur les réglages d’écriture','Documentation on Tags'=>'Documentation sur les étiquettes','Documentation on Categories'=>'Documentation sur les catégories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Votre thème détermine comment le contenu est affiché dans les navigateurs. En savoir plus sur les flux.','For each post in a feed, include'=>'Dans chaque publication du flux, inclure','Warning: these pages should not be the same as your Privacy Policy page!'=>'Avertissement : ces pages ne doivent pas être les mêmes que votre page de politique de confidentialité !','Documentation on Reading Settings'=>'Documentation sur les réglages de lecture','[%s] Delete My Site'=>'[%s] Supprimer mon site','Allow people to submit comments on new posts'=>'Autoriser les commentaires sur les nouvelles publications','Default post settings'=>'Réglages de publication par défaut','You can change your profile picture on Gravatar.'=>'Vous pouvez changer votre image de profil sur Gravatar.','Plugin resumed.'=>'Extension reprise.','Selected plugins deactivated.'=>'Extensions sélectionnées désactivées.','Plugin deactivated.'=>'Extension désactivée.','Selected plugins activated.'=>'Extensions sélectionnées activées.','Plugin activated.'=>'Extension activée.','The selected plugins have been deleted.'=>'Les extensions sélectionnées ont été supprimées.','The selected plugin has been deleted.'=>'L’extension sélectionnée a été supprimée.','The plugin %1$s has been deactivated due to an error: %2$s'=>'L’extension %1$s a été désactivée en raison d’une erreur : %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer.','%1$s needs to be a %2$s object.'=>'%1$s doit être un objet %2$s.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'Vous êtes en mode de récupération. Cela signifie qu’il pourrait y avoir une erreur avec un thème ou une extension. Pour sortir du mode de récupération, déconnectez vous ou utilisez le bouton Sortir. Exit Recovery Mode','Site HealthInfo'=>'Informations','Site HealthStatus'=>'État','Themes directory location'=>'Emplacement du répertoire de thèmes','comment statusClosed'=>'Fermé','%s critical issue'=>'%s problème critique' . "\0" . '%s problèmes critiques','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://fr.wordpress.org/support/article/updating-wordpress/','Get help resolving this issue.'=>'Obtenez de l’aide pour résoudre ce problème.','Learn more about what WordPress requires to run.'=>'En savoir plus sur les pré-requis de fonctionnement de WordPress.','https://wordpress.org/about/requirements/'=>'https://fr.wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'Le serveur SQL est un élément obligatoire de l’architecture utilisée par WordPress pour stocker les contenus et réglages de votre site.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'Les modules PHP réalisent la plupart des tâches sur le serveur qui fait fonctionner votre site. Toute modification les concernant doit être réalisée par la personne chargée de l’administration de votre serveur.','Manage your themes'=>'Gérez vos thèmes','Manage inactive plugins'=>'Gérer les extensions inactives','Update your plugins'=>'Mettez à jour vos extensions','Manage your plugins'=>'Gérez vos extensions','View Privacy Policy Guide.'=>'Voir le guide de politique de confidentialité.','User Language'=>'Langue du compte','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier de configuration. Cela fera apparaître les erreurs sur l’interface publique de votre site.','[%s] Background Update Finished'=>'[%s] Mise à jour en arrière-plan terminée','[%s] Background Update Failed'=>'[%s] Mise à jour en arrière-plan échouée','Plugin could not be resumed because it triggered a fatal error.'=>'L’extension n’a pas pu être relancée car elle a déclenché une erreur fatale.','You should remove inactive themes'=>'Vous devriez retirer les thèmes inactifs','Your site has 1 installed theme, and it is up to date.'=>'Votre site a un thème installé, et il est à jour.','Your site has 1 active plugin, and it is up to date.'=>'Votre site a une extension active, et elle est à jour.','Passed tests'=>'Tests passés avec succès','Sorry, you are not allowed to access site health information.'=>'Désolé, vous n’avez pas l’autorisation d’accéder aux informations de santé du site.','Copy site info to clipboard'=>'Copier les informations du site dans le presse-papier','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'Si vous souhaitez exporter une liste de toutes les informations contenues dans cette page, vous pouvez utiliser le bouton ci-dessous pour les copier dans votre presse-papier. Vous pourrez ensuite les coller dans un fichier texte pour les enregistrer sur votre ordinateur, dans un e-mail d’échange avec un support technique, ou encore dans une discussion avec une développeuse ou un développeur de thème/extension.','The Site Health check requires JavaScript.'=>'La vérification de santé du site nécessite JavaScript.','Site Health Info'=>'Informations de santé du site','This update does not work with your version of PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de PHP.','All formats'=>'Tous les formats','Filter by post format'=>'Filtrer par format de publication','Go to the Plugins screen'=>'Aller à l’écran des extensions','The authenticity of %s could not be verified.'=>'L’authenticité de %s ne peut pas être vérifiée.','The authenticity of %s could not be verified as no signature was found.'=>'L’authenticité de %s n’a pas pu être vérifiée car aucune signature n’a été trouvée.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système.','Eraser callback is not valid: %s.'=>'Le retour de l’outil de suppression n’est pas valide : %s.','Eraser does not include a callback: %s.'=>'L’outil de suppression n’inclue aucun retour : %s.','Sorry, you are not allowed to perform this action.'=>'Désolé, vous n’avez pas l’autorisation d’effectuer cette action.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'Les requêtes HTTP ont été bloquées par la constante %1$s, avec certains hôtes autorisés : %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'Les requêtes HTTP ont été bloquées par la constante %s, avec aucun hôte autorisé.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'Vous utilisez une extension avancée %1$s, ce qui pourrait signifier que la base de données %2$s n’est pas utilisée.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'L’équipe Hébergement de WordPress maintient une liste des modules recommandés et obligatoires dans le manuel de l’équipe (en anglais)%3$s.','Performance'=>'Performances','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.','You should consider removing any unused themes to enhance your site’s security.'=>'Nous recommandons de supprimer tous les thèmes non utilisés pour améliorer la sécurité de votre site.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, votre thème actif.','Your site has %d inactive theme.'=>'Votre site a %d thème inactif.' . "\0" . 'Votre site a %d thèmes inactifs.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Les extensions inactives sont des cibles tentantes pour les pirates. Si vous n’utilisez plus une extension, vous devriez envisager de la retirer.','Your site has %d inactive plugin.'=>'Votre site a %d extension inactive.' . "\0" . 'Votre site a %d extensions inactives.','Security'=>'Sécurité','Erase personal data list'=>'Supprimer la liste de données personnelles','Erase personal data list navigation'=>'Supprimer la navigation dans la liste de données personnelles','Filter erase personal data list'=>'Filtrer la suppression de la liste de données personnelles','Export personal data list'=>'Exporter la liste de données personnelles','Export personal data list navigation'=>'Exporter la navigation dans la liste de données personnelles','Filter export personal data list'=>'Filtrer l’exportation de la liste de données personnelles','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'Il existe une nouvelle version disponible de %1$s, mais elle ne fonctionne pas avec votre version de PHP. Voir les détails de la version %4$s ou en savoir plus sur la mise à jour de PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'Cette extension n’a pas pu se charger correctement et a été mise en pause dans le cadre du mode de récupération.','Go to the Themes screen'=>'Aller à l’écran des thèmes','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers.','These settings alter where and how parts of WordPress are loaded.'=>'Ces réglages modifient où et comment les éléments de WordPress sont chargés.','%s item with no issues detected'=>'%s élément sans problème détecté' . "\0" . '%s éléments sans problème détectés','%s recommended improvement'=>'%s amélioration recommandée' . "\0" . '%s améliorations recommandées','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'La vérification de santé du site affiche des informations critiques à propos de votre configuration WordPress et les éléments qui nécessitent votre attention.','Site Health Status'=>'État de santé du site','Everything is running smoothly here.'=>'Tout fonctionne parfaitement ici.','Great job!'=>'Bon travail !','Secondary menu'=>'Menu secondaire','The loopback request to your site completed successfully.'=>'La demande de bouclage vers votre site s’est bien terminée.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'La requête de bouclage a renvoyé un code d’état HTTP inattendu, %d. Il n’a pas été possible de déterminer si cela peut empêcher des fonctionnalités de fonctionner comme prévu.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'La requête de bouclage sur votre site a échoué, ce qui signifie que les fonctionnalités qui s’appuient sur ces requêtes ne fonctionnent actuellement pas comme prévu.','No scheduled events exist on this site.'=>'Aucun évènement planifié n’existe sur ce site.','REST API availability'=>'Disponibilité de l’API REST','Loopback request'=>'Demande de bouclage','Debugging enabled'=>'Débogage activé','HTTP Requests'=>'Requêtes HTTP','Scheduled events'=>'Évènements planifiés','Secure communication'=>'Communication sécurisée','HTTPS status'=>'État HTTPS','PHP Extensions'=>'Extensions PHP','Database Server version'=>'Version du serveur de base de données','PHP Version'=>'Version de PHP','Theme Versions'=>'Version des thèmes','Plugin Versions'=>'Versions des extensions','WordPress Version'=>'Version de WordPress','The REST API did not process the %s query parameter correctly.'=>'L’API REST n’a pas traité correctement le paramètre de la requête %s.','The REST API did not behave correctly'=>'L’API REST ne s’est pas correctement comportée','The REST API encountered an unexpected result'=>'L’API REST a rencontré un résultat inattendu','The REST API encountered an error'=>'L’API REST a rencontré une erreur','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'L’API REST est l’une des façons pour WordPress ou d’autres applications de communiquer avec le serveur. Par exemple, l’écran de l’éditeur s’appuie sur celle-ci pour afficher et enregistrer vos publications.','The REST API is available'=>'L’API REST est disponible','HTTP requests are partially blocked'=>'Les requêtes HTTP sont partiellement bloquées','HTTP requests are blocked'=>'Les requêtes HTTP sont bloquées','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'Il est possible pour les responsables du site de bloquer tout ou partie de la communication vers d’autres sites et services. Si la configuration est incorrecte, cela peut empêcher les extensions et thèmes de fonctionner comme prévu.','HTTP requests seem to be working as expected'=>'Les requêtes HTTP semblent fonctionner comme prévu','Your site could not complete a loopback request'=>'Votre site n’a pas pu terminer la requête de bouclage','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Les requêtes de bouclage sont utilisées pour lancer des évènements planifiés, ainsi que par les éditeurs de thèmes et d’extensions pour vérifier la stabilité du code.','Your site can perform loopback requests'=>'Votre site peut lancer des requêtes de bouclage','Background updates may not be working properly'=>'Les mises à jour d’arrière-plan pourraient ne pas fonctionner correctement','Background updates are not working as expected'=>'Les mises à jour d’arrière-plan ne fonctionnent pas comme prévu','Passed'=>'Succès','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Les mises à jour d’arrière-plan assurent que WordPress peut se mettre à jour automatiquement si une mise à jour de sécurité est disponible pour la version que vous utilisez actuellement.','Background updates are working'=>'Les mises à jour d’arrière-plan fonctionnent','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s a échoué. Votre site fonctionne toujours, mais cela pourrait indiquer que les publications planifiées ou les mises à jour automatiques ne fonctionnent pas comme elles le devraient.','A scheduled event has failed'=>'Un évènement planifié a échoué','While trying to test your site’s scheduled events, the following error was returned: %s'=>'Lors du test des évènements planifiés de votre site, l’erreur suivante a été retournée : %s','It was not possible to check your scheduled events'=>'Il n’a pas été possible de vérifier vos évènements planifiés','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Les évènements planifiés permettent de vérifier périodiquement les mises à jour d’extensions, de thèmes et de WordPress lui-même. Cela permet également de s’assurer que les publications planifiées sont publiées à temps. Ils sont également utilisés par diverses extensions pour exécuter des actions planifiées.','Scheduled events are running'=>'Les évènements planifiés fonctionnent','Talk to your web host about OpenSSL support for PHP.'=>'Demandez à votre hébergeur la prise en charge de OpenSSL pour PHP.','Your site is unable to communicate securely with other services'=>'Votre site n’est pas en mesure de communiquer en toute sécurité avec d’autres services','Your site can communicate securely with other services'=>'Votre site peut communiquer en toute sécurité avec d’autres services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Des communications sécurisées entre serveurs sont nécessaires pour des transactions telles que le parcours de fichiers, la vente sur les boutiques en ligne, et plus encore.','Learn more about why you should use HTTPS'=>'Apprenez pourquoi vous devriez utiliser HTTPS','Your website does not use HTTPS'=>'Votre site n’utilise pas HTTPS','Your website is using an active HTTPS connection'=>'Votre site utilise une connexion HTTPS opérationnelle.','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant HTTPS, mais votre Adresse WordPress n’est pas configurée pour utiliser HTTPS par défaut.','Your site is set to display errors to site visitors'=>'Votre site est réglé pour afficher les erreurs aux visiteurs du site','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'La valeur %s a été ajoutée au fichier de configuration de votre site. Cela signifie que toute erreur sur le site sera enregistrée dans un fichier qui est potentiellement visible par tous les comptes.','Your site is set to log errors to a potentially public file'=>'Votre site est configuré pour enregistrer le journal des erreurs dans un fichier potentiellement public','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Le mode débogage est souvent activé pour obtenir plus de détails à propos d’une erreur ou d’une défaillance du site, mais peut contenir des informations sensibles qui ne devraient pas être disponibles sur un site accessible au public.','Your site is not set to output debug information'=>'Votre site n’est pas réglé pour afficher les informations de débogage','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Votre site ne peut pas rejoindre WordPress.org sur %1$s et a retourné l’erreur suivante : %2$s','Could not reach WordPress.org'=>'Impossible de rejoindre WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'La communication avec les serveurs WordPress est utilisée pour vérifier l’existence de nouvelles versions et pour installer et mettre à jour le cœur WordPress, les thèmes et les extensions.','Can communicate with WordPress.org'=>'Peut communiquer avec WordPress.org','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress nécessite %1$s version %2$s ou plus. Contactez votre hébergeur web pour corriger cela.','Severely outdated SQL server'=>'Serveur SQL fortement obsolète ','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'Pour des performances optimales et pour des raisons de sécurité, nous recommandons %1$s version %2$s ou supérieure. Contactez votre hébergeur pour corriger cela.','Outdated SQL server'=>'Serveur SQL obsolète','SQL server is up to date'=>'Le serveur SQL est à jour','One or more required modules are missing'=>'Un module nécessaire ou plus sont manquants.','One or more recommended modules are missing'=>'Un ou plusieurs modules recommandés sont manquants','The optional module, %s, is not installed, or has been disabled.'=>'Le module facultatif, %s, n’est pas installé, ou a été désactivé.','The required module, %s, is not installed, or has been disabled.'=>'Le module obligatoire %s n’est pas installé, ou a été désactivé.','Error'=>'Erreur','Required and recommended modules are installed'=>'Les modules obligatoires et recommandés sont installés','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Votre site n’a pas de thème par défaut. Les thèmes par défaut sont utilisés par WordPress automatiquement si quelque chose ne va pas avec votre thème actif.','Have a default theme available'=>'Avoir un thème par défaut disponible','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver %1$s, le thème WordPress par défaut, %2$s, votre thème actuel, et %3$s, son thème parent.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver uniquement votre thème actuel, %1$s et %2$s, son thème parent.','You should remove inactive plugins'=>'Vous devriez retirer les extensions inactives','Your site has %d installed theme, and it is up to date.'=>'Votre site a %d thème installé et il est à jour.' . "\0" . 'Votre site a %d thèmes installés et ils sont tous à jour.','Your site has %d theme waiting to be updated.'=>'Votre site à %d thème en attente de mise à jour.' . "\0" . 'Votre site à %d thèmes en attente de mise à jour.','You have themes waiting to be updated'=>'Vous avez des thèmes en attente de mise à jour','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Les thèmes concernent l’aspect visuel de votre site. Il est important de les tenir à jour, pour la cohérence de votre identité visuelle et pour garder votre site sécurisé.','Your themes are all up to date'=>'Vos thèmes sont à jour','Your site has %d active plugin, and it is up to date.'=>'Votre site a %d extension installée et elle est à jour.' . "\0" . 'Votre site a %d extensions installées et elles sont toutes à jour.','Your site has %d plugin waiting to be updated.'=>'Votre site a %d extension en attente de mise à jour.' . "\0" . 'Votre site a %d extensions en attente de mise à jour.','You have plugins waiting to be updated'=>'Vous avez des extensions en attente de mise à jour','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Les extensions étendent les fonctionnalités de votre site avec des choses comme des formulaires de contact, une boutique e-commerce et bien plus. Cela signifie qu’elles ont accès à votre site en profondeur, il est donc vital de les tenir à jour.','Your plugins are all up to date'=>'Vos extensions sont à jour','You are currently running the latest version of WordPress available, keep it up!'=>'Vous utilisez actuellement la dernière version disponible de WordPress, gardez-la à jour !','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'Une mise à jour mineure est disponible pour votre site. Comme les mises à jour mineures concernent souvent la sécurité, il est important de les installer.','A new version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','Install the latest version of WordPress'=>'Installer la dernière version de WordPress','WordPress update available (%s)'=>'Mise à jour de WordPress disponible (%s)','Check for updates manually'=>'Vérifier les mises à jour manuellement','Unable to check if any new versions of WordPress are available.'=>'Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles.','WordPress security and maintenance releases are blocked by the %s filter.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s.','WordPress security and maintenance releases are blocked by %s.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par %s.','WordPress development updates are blocked by the %s filter.'=>'Les mises à jour de développement WordPress sont bloquées par le filtre %s.','WordPress development updates are blocked by the %s constant.'=>'Les mises à jour de développement WordPress sont bloquées par la constante %s.','All of your WordPress files are writable.'=>'Tous vos fichiers WordPress sont accessibles en écriture.','Some files are not writable by WordPress:'=>'Certains fichiers ne sont pas accessibles par WordPress :','This could mean that connections are failing to WordPress.org.'=>'Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Impossible de récupérer une liste des checksums pour WordPress %s.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour.','No version control systems were detected.'=>'Aucun système de contrôle de version n’a été détecté.','The folder %1$s was detected as being under version control (%2$s).'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour.','A previous automatic background update could not occur.'=>'Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée.','The error code was %s.'=>'Le code d’erreur était %s.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour.','You would have received an email because of this.'=>'Vous auriez reçu un e-mail à cause de cela.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'Une précédente mise à jour automatique en arrière-plan s’est terminée par un échec critique, les mises à jour sont désormais désactivées.','The %s filter is enabled.'=>'Le filtre %s est activé.','A plugin has prevented updates by disabling %s.'=>'Une extension a empêché les mises à jour en désactivant %s.','The must use plugins directory'=>'Le répertoire des extensions indispensables','Theme features'=>'Fonctionnalités de thèmes','Parent theme'=>'Thème parent','Author website'=>'Site de l’auteur ou de l’autrice','(Latest version: %s)'=>'(dernière version : %s)','Version %1$s by %2$s'=>'Version %1$s par %2$s','No version or author information is available.'=>'Aucune information de version ou d’auteur/autrice n’est disponible.','Server version'=>'Version du serveur','Your %s file contains only core WordPress features.'=>'Votre fichier %s ne contient que des fonctionnalités du cœur WordPress.','Custom rules have been added to your %s file.'=>'Des règles personnalisées ont été ajoutées à votre fichier %s.','.htaccess rules'=>'Règles du .htaccess','Is the Imagick library available?'=>'La bibliothèque Imagick est-elle disponible ?','Is SUHOSIN installed?'=>'SUHOSIN est-il installé ?','cURL version'=>'Version de cURL','PHP post max size'=>'Taille maximale d’envoi de PHP','Upload max filesize'=>'Taille maximale de téléversement de fichier','Max input time'=>'Temps d’entrée max','PHP memory limit'=>'Limite de mémoire PHP','PHP time limit'=>'Limite d’exécution PHP','PHP max input variables'=>'Valeur maximale des variables PHP','Unable to determine some settings, as the %s function has been disabled.'=>'Impossible de déterminer certains réglages, car la fonction %s a été désactivée.','Server settings'=>'Réglages du serveur','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(ne prend pas en charge les valeurs 64 bits)','(Supports 64bit values)'=>'(Supporte les valeurs 64 bits)','PHP version'=>'Version de PHP','Unable to determine what web server software is used'=>'Impossible de déterminer le serveur web utilisé','Web server'=>'Serveur web','Unable to determine server architecture'=>'Impossible de déterminer l’architecture du serveur','Server architecture'=>'Architecture serveur','Ghostscript version'=>'Version de Ghostscript','Unable to determine if Ghostscript is installed'=>'Impossible de déterminer si Ghostscript est installé','GD version'=>'Version de GD','Imagick Resource Limits'=>'Limites de ressources Imagick','ImageMagick version string'=>'Chaîne de version ImageMagick','ImageMagick version number'=>'Numéro de version ImageMagick','Not available'=>'Non disponible','Active editor'=>'Éditeur actif','Total installation size'=>'Taille totale de l’installation','Database size'=>'Taille de la base de données','WordPress directory size'=>'Taille du répertoire de WordPress','WordPress directory location'=>'Emplacement du répertoire de WordPress','Plugins directory size'=>'Taille du répertoire des extensions','Plugins directory location'=>'Emplacement du répertoire des extensions','Themes directory size'=>'Taille du répertoire des thèmes','Theme directory location'=>'Emplacement du répertoire des thèmes','Uploads directory size'=>'Taille du répertoire des téléversements','Uploads directory location'=>'Emplacement du répertoire des téléversements','Unable to reach WordPress.org at %1$s: %2$s'=>'Impossible d’atteindre WordPress.org à %1$s : %2$s','WordPress.org is reachable'=>'WordPress.org est accessible','Communication with WordPress.org'=>'Communication avec WordPress.org','Network count'=>'Nombre de réseaux','Site count'=>'Nombre de sites','User count'=>'Nombre de comptes','The themes directory'=>'Le répertoire de thèmes','The plugins directory'=>'Le répertoire d’extensions','The uploads directory'=>'Le répertoire des téléversements','The wp-content directory'=>'Le répertoire wp-content','Not writable'=>'Non accessible en écriture','Writable'=>'Accessible en écriture','The main WordPress directory'=>'Le répertoire principal de WordPress','Shows whether WordPress is able to write to the directories it needs access to.'=>'Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder.','Filesystem Permissions'=>'Droits des fichiers système','Undefined'=>'Indéfini','WordPress Constants'=>'Constantes WordPress','Database'=>'Base de données','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur.','Server'=>'Serveur','Media Handling'=>'Traitement des médias','Inactive Plugins'=>'Extensions inactives','Active Plugins'=>'Extensions actives','Must Use Plugins'=>'Extensions indispensables','Active Theme'=>'Thème actif','Drop-ins'=>'Extensions avancées','Directories and Sizes'=>'Répertoires et tailles','Is this a multisite?'=>'S’agit-il d’un multisite ?','Default comment status'=>'État par défaut des commentaires','Can anyone register on this site?'=>'Tout le monde peut-il s’inscrire sur ce site ?','Is this site using HTTPS?'=>'Est-ce que ce site utilise HTTPS ?','No permalink structure set'=>'Aucune structure de permaliens définie','Permalink structure'=>'Structure des permaliens','Site URL'=>'URL du site','Home URL'=>'URL de la page d’accueil','Site Health'=>'Santé du site','requestsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Afficher la case à cocher pour accepter les cookies sur les commentaires, ce qui permet l’enregistrement de cookies pour les personnes ayant commenté','Next theme'=>'Thème suivant','Previous theme'=>'Thème précédent','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'Si vous modifiez cela, vous recevrez un e-mail de confirmation à votre nouvelle adresse. La nouvelle adresse ne sera pas active tant que vous n’aurez pas confirmé.','Theme resumed.'=>'Thème relancé.','Theme could not be resumed because it triggered a fatal error.'=>'Le thème n’a pas pu être relancé car il a déclenché une erreur fatale.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'Si vous remarquez des messages « headers already sent », des problèmes avec vos flux de syndication ou d’autres soucis, essayez de désactiver ou de supprimer cette extension.','The plugin generated %d character of unexpected output during activation.'=>'Cette extension a généré %d caractère de sortie inattendu lors de son activation.' . "\0" . 'Cette extension a généré %d caractères de sortie inattendus lors de son activation.','Sorry, you are not allowed to resume this plugin.'=>'Désolé, vous n’êtes pas autorisé à relancer cette extension.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'Évènements et actualités WordPress – évènements à venir près de chez vous et dernières actualités officielles du projet WordPress ainsi que de l’écosystème WordPress.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Add menu items'=>'Ajouter des éléments de menu','or create a new menu. Do not forget to save your changes!'=>'ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Click the Save Menu button to save your changes.'=>'Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu.','Create your first menu below.'=>'Créez votre premier menu ci-dessous.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Learn more about updating PHP'=>'En savoir plus sur la mise à jour de PHP','What is PHP and how does it affect my site?'=>'Qu’est-ce que PHP et comment cela affecte t-il mon site ?','PHP Update Required'=>'Mise à jour de PHP nécessaire','You can find more details and make changes on the Plugins screen.'=>'Vous pouvez trouver davantage de détails et faire des modifications sur l’écran des extensions.','One or more plugins failed to load properly.'=>'Le chargement d’une ou plusieurs extensions a échoué.','Could not resume the plugin.'=>'Impossible de relancer l’extension.','Custom PHP fatal error handler.'=>'Gestionnaire d’erreur fatale PHP personnalisée.','Custom PHP error message.'=>'Message d’erreur PHP personnalisé.','Could not remove the old translation.'=>'Impossible de retirer l’ancienne traduction.','Removing the old version of the translation…'=>'Retrait de l’ancienne version de la traduction…','Click here to update WordPress.'=>'Cliquer ici pour mettre WordPress à jour.','Error: This plugin requires a newer version of WordPress.'=>'Erreur : Cette extension nécessite une version plus récente de WordPress.','Click here to learn more about updating PHP.'=>'Cliquez ici pour en savoir plus sur la mise à jour de PHP.','Error: This plugin requires a newer version of PHP.'=>'Erreur : Cette extension nécessite une version plus récente de PHP.','Add widget: %s'=>'Ajouter le widget : %s','Add to: %s'=>'Ajouter à : %s','Track %s.'=>'Piste %s.','My Network'=>'Mon réseau','This plugin does not work with your version of PHP.'=>'Cette extension ne fonctionne pas avec votre version de PHP.','This plugin does not work with your version of WordPress.'=>'Cette extension ne fonctionne pas avec votre version de WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'Cette extension ne fonctionne pas avec vos versions de WordPress et de PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','Resume'=>'Relancer','pluginResume %s'=>'Relancer %s','You can find more details and make changes on the Themes screen.'=>'Vous trouverez plus de détails et pouvez apporter des modifications sur l’écran des thèmes.','One or more themes failed to load properly.'=>'Un ou plusieurs thèmes ont échoués à se charger correctement.','Could not resume the theme.'=>'Impossible de relancer le thème.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'Les blocs widgets nécessite JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur, ou essayez l’extension Classic Editor.','A post type mismatch has been detected.'=>'Une incohérence de type de publication a été détectée.','A post ID mismatch has been detected.'=>'Une incohérence d’identifiant de publication a été détectée.','Please open the classic editor to use this meta box.'=>'Veuillez ouvrir l’éditeur classique pour utiliser cette boîte méta.','Please activate the Classic Editor plugin to use this meta box.'=>'Veuillez activer l’extension Classic Editor pour utiliser cette boîte méta.','Please install the Classic Editor plugin to use this meta box.'=>'Veuillez installer l’extension Classic Editor pour utiliser cette boîte méta.','This meta box is not compatible with the block editor.'=>'Cette boîte méta n’est pas compatible avec le nouvel éditeur.','To distribute copies of your modified versions to others.'=>'la liberté d’améliorer le programme et de distribuer ces améliorations au public, pour en faire profiter toute la communauté.','The 4th Freedom'=>'La quatrième liberté','To redistribute.'=>'La liberté de redistribution ;','The 3rd Freedom'=>'La troisième liberté','To study how the program works and change it to make it do what you wish.'=>'La liberté d’étudier le fonctionnement du programme et de l’adapter à ses besoins ;','The 2nd Freedom'=>'La deuxième liberté','To run the program for any purpose.'=>'La liberté d’exécuter le programme, pour tous les usages ;','The 1st Freedom'=>'La première liberté','Created'=>'Créé','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise.','...or something like this:'=>'…ou quelque chose comme cela :','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil).','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela :','Export “%s” as JSON'=>'Exporter « %s » en JSON','1 pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour, quelqu’un est train de la modifier.','%s pattern restored from the Trash.'=>'%s composition restaurée depuis la corbeille.' . "\0" . '%s compositions restaurées depuis la corbeille.','Error: "Table Prefix" must not be empty.'=>'Erreur : le préfixe de table ne doit pas être vide.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'Cette boîte méta de l’extension %s n’est pas compatible avec le nouvel éditeur.','personal data group labelAbout'=>'À propos','page titleAbout'=>'À propos','Edit or preview your Privacy Policy page content.'=>'Modifier ou prévisualiser le contenu de votre page de politique de confidentialité.','Privacy Policy Page'=>'Page de politique de confidentialité','%s (Draft)'=>'%s (Brouillon)','Privacy Policy page updated successfully.'=>'La page de politique de confidentialité a bien été mise à jour.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté en utilisant l’action %s (ou ultérieurement). Veuillez vous référer à la documentation en ligne.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté uniquement dans wp-admin en utilisant l’action %s (ou ultérieurement).','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'Le texte suggéré pour votre politique de confidentialité a été modifié. Veuillez relire le guide et mettre à jour votre politique de confidentialité.','There are no pages.'=>'Il n’y a aucune page.','Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème.','Privacy Policy Guide'=>'Guide de la politique de confidentialité','Visitor comments may be checked through an automated spam detection service.'=>'Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les comptes pouvant téléverser des fichiers dans votre médiathèque. Les fichiers téléversés sont généralement accessibles publiquement.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs/utilisatrices et personnes visitant votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse e-mail, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies.','Suggested text:'=>'Texte suggéré :','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'Le modèle propose des suggestions de sections dont vous pourriez avoir besoin. Sous chaque titre de section, vous trouverez un bref résumé des informations que vous devriez fournir, ce qui vous aidera à rédiger votre page. Certaines sections comprennent des contenus suggérés, d’autres devront être complétées par des informations provenant de votre thème et de vos extensions.','Updated %s.'=>'Mise à jour le %s.','You deactivated this plugin on %s and may no longer need this policy.'=>'Vous avez désactivé l’extension %s et n’avez donc normalement plus besoin de ces informations.','Removed %s.'=>'%s supprimé.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez le guide des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions.','Erasing data...'=>'Effacement des données…','Add Data Erasure Request'=>'Ajout d’une demande d’effacement de données','Send export link'=>'Envoyer le lien d’exportation','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici.','Industry regulatory disclosure requirements'=>'Affichage des informations liées aux secteurs soumis à des régulations spécifiques','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'Si votre site fournit un service qui inclut la prise de décision automatisée – par exemple, autoriser vos clients à souscrire à un crédit ou agréger leurs données dans un profil publicitaire – vous devez expliciter ce qui est mis en place et inclure des informations sur la façon dont les informations sont utilisées, quelles décisions sont prises avec ces données agrégées et quels sont les droits dont disposent les internautes sur les décisions prises sans intervention humaine.','What automated decision making and/or profiling we do with user data'=>'Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'Si votre site reçoit des données personnelles depuis des sources tierces – ce qui inclut les sources publicitaires – ces informations doivent être incluses dans la section sur les données issues de sources tierces de votre déclaration de protection de la vie privée.','What third parties we receive data from'=>'Les services tiers qui nous transmettent des données','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues ».','What data breach procedures we have in place'=>'Procédures mises en œuvre en cas de fuite de données','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos comptes. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici.','How we protect your data'=>'Comment nous protégeons vos données','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'Si vous utilisez votre site dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment.','Additional information'=>'Informations supplémentaires','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'Dans cette section, indiquez les droits des comptes concernant leurs données et comment ils peuvent exercer ces droits.','What rights you have over your data'=>'Les droits que vous avez sur vos données','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'Dans cette section, vous devriez indiquer la durée de conservation des données personnelles collectées et traitées par votre site web. Même s’il est de votre responsabilité de fournir un planning de conservation de chaque jeu de données dont vous disposez, cette information n’a pas besoin d’être affichée ici. Par exemple, vous pourriez indiquer que vous conservez les données reçues via vos formulaires de contact pendant six mois, les statistiques de visites pendant un an et les enregistrements liés aux ventes en ligne pendant dix ans.','How long we retain your data'=>'Durées de stockage de vos données','By default WordPress does not share any personal data with anyone.'=>'Par défaut, WordPress ne partage vos informations personnelles avec personne.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible.','Who we share your data with'=>'Utilisation et transmission de vos données personnelles','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici.','Analytics'=>'Statistiques et mesures d’audience','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.','Embedded content from other websites'=>'Contenu embarqué depuis d’autres sites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'Dans cette sous-section, vous devriez lister les cookies utilisés par votre site, incluant ceux enregistrés par vos extensions, les réseaux sociaux et vos statistiques de visites. Nous avons indiqué les cookies que WordPress installe par défaut.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales.','Contact forms'=>'Formulaires de contact','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des comptes inscrits. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Les données personnelles ne sont pas seulement créées par l’interaction d’une personne avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales.','What personal data we collect and why we collect it'=>'Utilisation des données personnelles collectées','Our website address is: %s.'=>'L’adresse de notre site est : %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact.','Who we are'=>'Qui sommes-nous ?','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'Il est de votre responsabilité de rédiger une politique de confidentialité compréhensible, de vous assurer qu’elle reflète les exigences nationales et internationales sur la vie privée et de maintenir cette politique à jour et exacte.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Veuillez modifier le contenu de votre politique de confidentialité. Assurez-vous de supprimer les exemples de textes et d’ajouter les différentes informations à propos de vos thèmes et extensions. Une fois votre page publiée, pensez à l’ajouter à votre menu de navigation ou à votre pied de page.','This text template will help you to create your website’s privacy policy.'=>'Ce modèle de texte est proposé pour vous aider à créer la politique de confidentialité de votre site.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'En tant que propriétaire du site, vous pourriez avoir besoin de suivre des réglementations nationales ou internationales en matière de confidentialité. Par exemple, vous pouvez avoir besoin de créer et d’afficher une politique de confidentialité.','Force erasure has failed.'=>'L’effacement forcé a échoué.','Email could not be sent.'=>'L’e-mail n’a pas pu être envoyé.','date/timeOn'=>'Le','website URLAt URL'=>'À l’URL','website nameFor site'=>'Pour le site','email addressReport generated for'=>'Rapport généré pour','Exporter array at index %s does not include a friendly name.'=>'Le tableau d’exportation ne contient aucun « friendly name » à l’index %s.','Sorry, you are not allowed to erase personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’effacer les données personnelles sur ce site.','Sorry, you are not allowed to export personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter les données personnelles sur ce site.','Eraser index is out of range.'=>'L’index d’effacement est hors de portée.','Missing eraser index.'=>'Index d’effacement manquant.','Expected done (boolean) in response array from exporter: %s.'=>'Résultat attendu (booléen) dans le tableau de réponse de l’outil d’exportation : %s.','Expected data array in response array from exporter: %s.'=>'Donnée tabulaire attendue dans le tableau de réponse de l’outil d’exportation : %s.','Expected data in response array from exporter: %s.'=>'Donnée attendue dans le tableau de réponse de l’outil d’exportation : %s.','Expected response as an array from exporter: %s.'=>'Réponse attendue de l’outil d’exportation en tant que tableau : %s.','Exporter callback is not a valid callback: %s.'=>'Le retour de l’outil d’exportation n’est pas un rappel valide : %s.','Exporter does not include a callback: %s.'=>'L’outil d’exportation n’inclue aucun rappel : %s.','Expected an array describing the exporter at index %s.'=>'Réponse attendue sous forme de tableau décrivant l’outil d’exportation à l’index %s.','Exporter index is out of range.'=>'L’index d’exportation est hors limite.','Exporter index cannot be negative.'=>'L’index d’exportation ne peut pas être un nombre inférieur à zéro.','An exporter has improperly used the registration filter.'=>'Un outil d’exportation a utilisé le filtre d’inscription de façon erronée.','Missing page index.'=>'Index de page manquant.','Missing exporter index.'=>'Index d’exportation manquant.','Invalid request type.'=>'Type de requête non valide.','Use This Page'=>'Utiliser cette page','Select a Privacy Policy page'=>'Sélectionner une page de politique de confidentialité','Change your Privacy Policy page'=>'Modifier la page de politique de confidentialité','Edit or view your Privacy Policy page content.'=>'Modifiez ou visualisez le contenu de votre page de politique de confidentialité.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'Vous devriez aussi relire votre politique de confidentialité régulièrement, spécialement après l’installation ou la mise à jour de thèmes ou d’extensions. Il se peut que des changements ou de nouvelles informations vous fassent envisager de les ajouter à votre politique.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'Cependant, il est de votre responsabilité d’utiliser ces ressources correctement, afin de fournir les informations que votre politique de confidentialité nécessite, de tenir à jour ces informations et de garantir leur pertinence.','The new page will include help and suggestions for your privacy policy.'=>'La nouvelle page contiendra de l’aide et des suggestions pour votre politique de confidentialité.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'Si vous disposez déjà d’une page de politique de confidentialité, veuillez la sélectionner ci-dessous. Sinon, veuillez en créer une.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'La page de politique de confidentialité actuellement sélectionnée est dans la corbeille. Veuillez créer ou sélectionner une nouvelle page de politique de confidentialité ou restaurer la page actuelle.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'La page de politique de confidentialité actuellement sélectionnée n’existe pas. Veuillez créer ou sélectionner une nouvelle page.','Unable to create a Privacy Policy page.'=>'Impossible de créer une page de politique de confidentialité.','privacy-policy'=>'politique-de-confidentialite','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'La page de politique de confidentialité a bien été mise à jour. Pensez à mettre à jour vos menus !','Copy suggested policy text from %s.'=>'Copier la suggestion de politique de confidentialité depuis %s.','Howdy, + +Your request for an export of personal data has been completed. You may +download your personal data by clicking on the link below. For privacy +and security, we will automatically delete the file on ###EXPIRATION###, +so please download it before then. + +###LINK### + +Regards, +All at ###SITENAME### +###SITEURL###'=>'Bonjour, + +Votre demande d’exportation de données personnelles a été traitée. Vous pouvez télécharger vos données personnelles en cliquant sur le lien ci-dessous. Par sécurité et afin de respecter vos données privées, ce fichier sera automatiquement supprimé le ###EXPIRATION###, alors veuillez le télécharger d’ici là. + +###LINK### + +Cordialement, +L’équipe de ###SITENAME### +###SITEURL###','Email sent.'=>'E-mail envoyé.','Sending email...'=>'Envoi de l’e-mail…','Download personal data again'=>'Retélécharger les données personnelles','Unable to send personal data export email.'=>'Impossible d’envoyer l’exportation des données personnelles par e-mail.','[%s] Personal Data Export'=>'[%s] Exportation de données personnelles','Invalid request ID when sending personal data export email.'=>'ID non valide lors de l’envoi par e-mail des données d’exportation.','Personal Data Export'=>'Exportation de données personnelles','Personal Data Export for %s'=>'Exportation de données personnelles pour %s','A valid email address must be given.'=>'Erreur : une adresse e-mail valide doit être fournie.','Force erase personal data'=>'Forcer l’effacement des données personnelles','Remove request'=>'Supprimer la demande','Waiting for confirmation'=>'Attente de confirmation','Retry'=>'Réessayer','Downloading data...'=>'Téléchargement des données…','Download personal data'=>'Télécharger les données personnelles','Requested'=>'Demande envoyée','Requester'=>'Origine de la demande','Send Request'=>'Envoyer la demande de confirmation','Username or email address'=>'Identifiant ou adresse e-mail','Add Data Export Request'=>'Ajouter une demande d’exportation de données','Confirmation request initiated successfully.'=>'Demande de confirmation bien initialisée.','Unable to add this request. A valid email address or username must be supplied.'=>'Impossible d’ajouter cette demande. Une adresse e-mail ou un identifiant valide doit être fourni.','Confirmation request sent again successfully.'=>'Demande de confirmation bien ré-envoyée.','Unable to initiate confirmation request.'=>'Impossible d’initialiser la demande de confirmation.','Invalid request ID.'=>'ID de demande non valide.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Marqueur de résultat attendu dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Clé de messages de référence d’un tableau attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Clé de messages attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Clé items_retained attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Clé items_removed attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Pas de tableau reçu depuis l’effaceur %1$s (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Le tableau d’effacement à l’index %d ne contient pas de nom élégant.','Expected an array describing the eraser at index %d.'=>'Un tableau décrivant l’effaceur à l’index %d est attendu.','Page index cannot be less than one.'=>'L’index de page ne peut pas être inférieur à 1.','Eraser index cannot be less than one.'=>'L’index de suppression ne peut pas être inférieur à 1.','Invalid email address in request.'=>'Adresse e-mail non valide dans la demande.','Requires PHP Version:'=>'Nécessite PHP en version :','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées à des fins statistiques comme celles que vous pouvez consulter sur la page des statistiques de WordPress.org.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué.','Did you know?'=>'Le saviez-vous ?','Noteworthy Contributors'=>'Contributrices & contributeurs remarquables','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress ne notifie aucun service de mise à jour du fait de vos réglages de visibilité.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Si le répertoire racine de votre site était accessible en écriture, cela aurait pu être fait automatiquement, mais ce n’est pas le cas donc voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress.','https://wordpress.org/about/license/'=>'https://fr.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'De temps en temps, votre site WordPress peut envoyer des données sur WordPress.org incluant entre autres la version de WordPress utilisée et la liste des extensions et des thèmes installés.','Uploaded on: %s'=>'Téléversé le : %s','Downloading installation package from %s…'=>'Téléchargement du paquet d’installation depuis %s…','Downloading translation from %s…'=>'Téléchargement des traductions depuis %s…','Downloading update from %s…'=>'Téléchargement de la mise à jour depuis %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s.','Customization Draft'=>'Brouillon de personnalisation','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements.','Theme Files'=>'Fichiers du thème','folder'=>'dossier','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Impossible d’envoyer un message au site afin de vérifier l’absence d’erreurs fatales. Du coup, la modification PHP a été annulée. Vous allez devoir téléverser votre fichier PHP modifié par un autre moyen, par exemple en utilisant un client FTP.','Installation Required'=>'Installation nécessaire','Could not fully remove the plugin %s.'=>'Impossible de supprimer l’extension %s.','User has been created, but could not be added to this site.'=>'Le compte a été créé, mais il ne peut pas être ajouté à ce site.','That user could not be added to this site.'=>'Ce compte ne peut pas être ajouté à ce site.','Disable syntax highlighting when editing code'=>'Désactiver le surlignage syntaxique lors de l’édition de code','Syntax Highlighting'=>'Édition de code','Run the installation'=>'Lancer l’installation','https://wordpress.org/about/privacy/'=>'https://fr.wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This n’est pas disponible. Veuillez contacter l’administrateur ou l’administratrice du site.','Press This is not installed. Please install Press This from the main site.'=>'Press This n’est pas installé. Veuillez installer Press This depuis le site principal.','Activate Press This'=>'Activer Press This','I understand'=>'Je comprends','Heads up!'=>'Faites attention !','Warning: Making changes to active plugins is not recommended.'=>'Avertissement : Effectuer des modifications dans les extensions actives n’est pas recommandé.','Selected file content:'=>'Contenu du fichier sélectionné :','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'Une erreur s’est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer.','Homepage: %s'=>'Page d’accueil : %s','Available tags:'=>'Balises disponibles :','%s (already used in permalink structure)'=>'%s (déjà utilisé dans la structure de permalien)','%s added to permalink structure'=>'%s ajouté à la structure du permalien','%s (A sanitized version of the author name.)'=>'%s (Une version normalisée du nom de l’auteur ou de l’autrice)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (slug de catégorie. Les sous-catégories imbriquées apparaissent sous la forme de sous-répertoires dans l’URL.)','%s (The sanitized post title (slug).)'=>'%s (Le titre normalisé de la publication, ou slug)','%s (The unique ID of the post, for example 423.)'=>'%s (L’ID unique de la publication, par exemple 423)','%s (Second of the minute, for example 33.)'=>'%s (Seconde de la minute, par exemple 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute de l’heure, par exemple 43.)','%s (Hour of the day, for example 15.)'=>'%s (Heure de la journée, par exemple 15.)','%s (Day of the month, for example 28.)'=>'%s (Jour du mois, par exemple 28.)','%s (Month of the year, for example 05.)'=>'%s (Mois de l’année, par exemple 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (L’année de la publication, en quatre chiffres, par exemple 2004)','Theme Installation'=>'Installation du thème','%s is currently editing this post.'=>'%s modifie actuellement cette publication.','%s is currently editing this post. Do you want to take over?'=>'%s modifie actuellement cette publication. Voulez-vous prendre la main ?','Custom installation script.'=>'Script personnalisé d’installation.','Active Installations:'=>'Installations actives :','Plugin Installation'=>'Installation de l’extension','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Réglages — Cette page affiche une liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par les extensions que vous activez. Notez que certains champs sont grisé et affichent « Serialized Data » ; vous ne pouvez pas modifier ces valeurs en raison de la manière dont elles sont stockées dans la base de données.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Thèmes — Cette zone affiche les thèmes qui n’ont pas encore été activés sur le réseau. Un thème activé dans ce menu le rendra accessible au présent site. Cela n’active pas le thème, mais l’affichera dans le menu Apparence du site. Pour activer un thème sur l’ensemble du réseau, allez sur l’écran Thèmes du réseau.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Comptes — Cette page affiche les comptes associés à ce site. Vous pouvez modifier leur rôle, réinitialiser leur mot de passe, ou les supprimer du site. Supprimer un compte d’un site ne le supprime pas du réseau.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — L’URL du site est rarement modifiée, car cela peut empêcher le site de fonctionner correctement. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs ou administratrices du réseau peuvent archiver un site, le marquer comme indésirable, le supprimer et le marquer comme étant « pour adultes », afin de le retirer de la liste publique, ou le désactiver.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'Le menu sert à modifier les informations propres à chaque site, notamment si leur interface d’administration est inaccessible.','Unable to write to file.'=>'Impossible d’écrire sur le fichier.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Vos modifications de code PHP ont été annulées en raison d’une erreur sur la ligne %1$s du fichier %2$s. Veuillez la corriger et réessayer d’enregistrer.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://fr.wordpress.org/news/','Your Recent Drafts'=>'Vos brouillons récents','nameUnknown'=>'Inconnu','View posts by %s'=>'Voir les publications par %s','No description'=>'Aucune description','%s Active Installations'=>'%s installations actives','Theme installation failed.'=>'L’installation du thème a échoué.','Plugin installation failed.'=>'L’installation de l’extension a échoué.','Activate Plugin & Go to Press This'=>'Activer l’extension et aller sur Press This','Your scheduled changes just published'=>'Votre planification vient d’être publiée','themeActivate'=>'Activer','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications','pluginNetwork Activate %s'=>'Activer %s sur le réseau','pluginActivate %s'=>'Activer %s','No media files found.'=>'Aucun fichier média trouvé.','Run Importer'=>'Lancer l’outil d’importation','Run %s'=>'Lancer %s','comment statusOpen'=>'Ouvert','Image Rotation'=>'Rotation de l’image','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de vous pour le moment. Voulez-vous en organiser un ?','Edit User %s'=>'Modifier le compte %s','Edit widget: %s'=>'Modifier le widget : %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de %1$s pour le moment. Voulez-vous en organiser un ?','Attend an upcoming event near %s.'=>'Participez à un évènement à venir près de %s.','Cincinnati'=>'Paris','City:'=>'Ville :','WordCamps'=>'WordCamps','Meetups'=>'Meetups','An error occurred. Please try again.'=>'Une erreur s’est produite. Veuillez réessayer.','WordPress Events and News'=>'Évènements et nouveautés WordPress','l, M j, Y'=>'l j M Y','Unknown API error.'=>'Erreur d’API inconnue.','Invalid API response code (%d).'=>'Code de réponse d’API non valide (%d).','Sorry, you are not allowed to delete users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des comptes.','Sorry, you are not allowed to create users.'=>'Désolé, vous n’avez pas l’autorisation de créer des comptes.','short (~12 characters) label for hide controls buttonHide Controls'=>'Masquer les controles','Expand Sidebar'=>'Étendre la colonne latérale','Display location'=>'Afficher l’emplacement','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s : %2$s Désolé, vous n’avez pas l’autorisation pour supprimer ce compte.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans affecter la langue que les visiteurs du site voient.','Edit Filters'=>'Modifier les filtres','Clear current filters'=>'Réinitialiser les filtres actuels','Select one or more Theme features to filter by'=>'Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer','(%s ratings)'=>'(%s votes)','Current Background Image'=>'Image d’arrière plan actuelle','Current Header Image'=>'Image d’entête actuelle','Set status'=>'État','“%s” is locked'=>'« %s » est verrouillé','Active plugin installationsLess Than 10'=>'Inférieur à 10','Sorry, you are not allowed to attach files to this post.'=>'Désolé, vous n’avez pas l’autorisation d’attacher des fichiers à cette publication.','https://wordpress.org/plugins/'=>'https://fr.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'L’outil de personnalisation vous permet de prévisualiser les modifications sur votre site avant de les publier. Vous pouvez naviguer sur différentes pages de votre site au sein de la prévisualisation. Des raccourcis sont affichés pour certains éléments modifiables. La personnalisation est destinée à être utilisée avec des thèmes non basé sur les blocs.','Customize New Changes'=>'Personnaliser les nouvelles modifications','Background ScrollScroll'=>'Défilement','Background RepeatRepeat'=>'Répétition','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section des extensions.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress.','Search plugins by:'=>'Rechercher des extensions par :','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’exportation de WordPress.','Import posts & media from Tumblr using their API.'=>'Importer des articles et des fichiers média depuis Tumblr via leur API.','Import posts from an RSS feed.'=>'Importer des articles depuis un flux RSS.','Import posts and comments from a Movable Type or TypePad blog.'=>'Importer des articles et commentaires depuis un blog Movable Type ou TypePad.','Import posts from LiveJournal using their API.'=>'Importer des articles depuis LiveJournal via leur API.','Convert existing categories to tags or tags to categories, selectively.'=>'Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective.','Import posts, comments, and users from a Blogger blog.'=>'Importer des articles, commentaires et comptes depuis un blog Blogger.','pluginDeactivate %s'=>'Désactiver %s','pluginDelete %s'=>'Supprimer %s','pluginNetwork Deactivate %s'=>'Désactiver %s du réseau','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'Les nouveaux comptes reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher ». L’identifiant ne peut pas être modifié une fois que le compte a été créé.','plugin%s was successfully deleted.'=>'%s a bien été supprimée.','The search for installed plugins will search for terms in their name, description, or author.'=>'La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions, leurs auteurs ou autrices.','Custom Logo'=>'Logo personnalisé','Sorry, you are not allowed to remove users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des comptes.','Sorry, you are not allowed to add users to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des comptes pour ce réseau.','Sorry, you are not allowed to edit this changeset.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications.','Sorry, you are not allowed to update themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site.','Sorry, you are not allowed to update this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour ce site.','New version available. '=>'Nouvelle version disponible. ','The Theme Installer screen requires JavaScript.'=>'L’écran d’installation de thèmes nécessite JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site.','Error: "Table Prefix" is invalid.'=>'Erreur : préfixe de table invalide.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site.','Sorry, you are not allowed to activate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site.','Sorry, you are not allowed to edit plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site.','Sorry, you are not allowed to manage options for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de ce site.','Manage with Live Preview'=>'Gérer avec la prévisualisation en direct','Sorry, you are not allowed to delete this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to add links to this site.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site.','Hi, this is a comment. +To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. +Commenter avatars come from Gravatar.'=>'Bonjour, ceci est un commentaire. +Pour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord. +Les avatars des personnes qui commentent arrivent depuis Gravatar.','theme%s was successfully deleted.'=>'%s a bien été supprimé.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s est disponible ! Veuillez informer l’administrateur ou l’administratrice du site.','Please update WordPress now'=>'Veuillez mettre WordPress à jour maintenant','WordPress %2$s is available! Please update now.'=>'WordPress %2$s est disponible ! Veuillez mettre à jour maintenant.','Portfolio'=>'Portfolio','Photography'=>'Photographie','News'=>'Actualités','Food & Drink'=>'Nourriture & Boisson','Entertainment'=>'Divertissement','Education'=>'Éducation','E-Commerce'=>'E-Commerce','Blog'=>'Blog','Footer Widgets'=>'Widgets de pied de page','Grid Layout'=>'Style en grille','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée.','Close media attachment panel'=>'Fermer le panneau des fichiers joints.','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Besoin d’aide ? Utilisez l’onglet « Aide » au dessus du titre de l’écran.','Sorry, you are not allowed to access this page.'=>'Désolé, vous n’avez pas l’autorisation d’accéder à cette page.','Embed Footer Template'=>'Modèle intégré de pied de page','Embed Header Template'=>'Modèle intégré d’entête','Embed Content Template'=>'Modèle intégré de contenu','Embed 404 Template'=>'Modèle intégré 404','Embed Template'=>'Modèle intégré','pluginActive'=>'Actif','(Private post)'=>'(Publication privée)','Sorry, you are not allowed to edit the links for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site.','Sorry, you are not allowed to manage privacy options on this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de confidentialité sur ce site.','Plugin could not be deleted.'=>'L’extension ne peut pas être supprimée.','Sorry, you are not allowed to update plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site.','Sorry, you are not allowed to activate plugins on this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer des extensions sur ce site.','Theme could not be deleted.'=>'Le thème ne peut pas être supprimé.','Sorry, you are not allowed to delete themes on this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to install themes on this site.'=>'Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site.','No theme specified.'=>'Aucun thème spécifié.','Sorry, you are not allowed to import content into this site.'=>'Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site.','Sorry, you are not allowed to export the content of this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'Vous pouvez filtrer la liste des articles par état en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec cet état. La vue par défaut affiche tous les articles.','Close the Customizer and go back to the previous page'=>'Fermer l’outil de personnalisation et retour vers la page précédente.','Sorry, you are not allowed to customize headers.'=>'Désolé, vous n’avez pas l’autorisation de personnaliser les entêtes.','Release Deputy'=>'Assistant·e de la direction de cette version','Release Design Lead'=>'Responsable du design','Editor improvements'=>'Amélioration de l’éditeur','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à une publication, que vous pouvez ensuite utiliser dans votre thème.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus.','The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'Le mode Code vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode code, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options.','Error saving media file.'=>'Une erreur est survenue lors de l’enregistrement du fichier média.','%s media file restored from the Trash.'=>'%s fichier média restauré depuis la corbeille.' . "\0" . '%s fichiers médias restaurés depuis la corbeille.','%s media file moved to the Trash.'=>'%s fichier média déplacé dans la corbeille.' . "\0" . '%s fichiers médias déplacés dans la corbeille.','%s media file permanently deleted.'=>'%s fichier média supprimé définitivement.' . "\0" . '%s fichiers médias supprimés définitivement.','%s media file detached.'=>'%s fichier média détaché.' . "\0" . '%s fichiers médias détachés.','Media file detached.'=>'Fichier média détaché.','%s media file attached.'=>'%s fichier média attaché.' . "\0" . '%s fichiers médias attachés.','Media file attached.'=>'Fichier média attaché.','Media file updated.'=>'Fichier média mis à jour.','View %1$s version %2$s details'=>'Voir les détails de la version %2$s de %1$s','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publier - Vous pouvez définir la manière dont votre publication est mise en ligne dans la section « Publier ». Pour « État », « Visibilité », et « Publier tout de suite », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger la publication avec un mot de passe ou faire en sorte qu’elle reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacune de vos publications avec un mot de passe. L’option « Privée » cache la publication pour tout le monde, sauf aux éditeurs/éditrices et administrateurs/administratrices. « Publier tout de suite » vous permet de planifier la sortie de votre publication à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance les publications à mettre en ligne, ou de les antidater.','There is a pending change of your email to %s.'=>'Il y a une modification de votre adresse e-mail en attente, en faveur de %s.','Error while saving the new email address. Please try again.'=>'Une erreur est survenue lors de l’enregistrement de votre adresse e-mail. Veuillez réessayer.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias.','The following themes are installed but incomplete.'=>'Les thèmes suivants sont installés mais incomplets.','New theme activated.'=>'Nouveau thème activé.','Settings saved and theme activated.'=>'Réglages enregistrés et thème activé.','https://wordpress.org/themes/'=>'https://fr.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce compte.','Your database password.'=>'Votre mot de passe de base de données.','Your database username.'=>'Votre identifiant MySQL.','The name of the database you want to use with WordPress.'=>'Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress.','plugin%1$s by %2$s'=>'%1$s par %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s par %2$s (attention : supprimera également les données liées)','There is a pending change of the admin email to %s.'=>'Il y a une modification en attente de l’adresse e-mail d’administration vers %s.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress est installé. Merci et profitez bien !','The constant %s cannot be defined when installing WordPress.'=>'La constante %s ne peut pas être définie lors de l’installation de WordPress.','Your %s file has an empty database table prefix, which is not supported.'=>'Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté.','Dismiss the welcome panel'=>'Ignorer le panneau de bienvenue','Theme zip file'=>'Fichier zip du thème','Attach to existing content'=>'Attacher à un contenu existant','Click the image to edit or update'=>'Cliquez sur l’image pour la modifier ou la mettre à jour.','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre.' . "\0" . 'Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre.','Read all reviews on WordPress.org or write your own!'=>'Lisez tous les avis sur WordPress.org ou écrivez le vôtre !','Reviews'=>'Avis','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus.','Thumbnail Settings Help'=>'Aide aux réglages de la miniature','selection height'=>'hauteur de la sélection','selection width'=>'largeur de la sélection','crop ratio height'=>'Proportion verticale','crop ratio width'=>'Proportion horizontale','Image Crop Help'=>'Aide au recadrage d’image','scale height'=>'redimensionner en hauteur','New dimensions:'=>'Nouvelles dimensions :','Scale Image Help'=>'Aide sur le redimensionnement d’image','Single Page'=>'Page individuelle','Singular Template'=>'Modèle individuel','Date Template'=>'Modèle de date','Taxonomy Template'=>'Modèle de taxonomie','Dismiss the browser warning panel'=>'Masquer l’alerte du navigateur','View more comments'=>'Voir plus de commentaires','dashboard%1$s on %2$s %3$s'=>'%1$s sur %2$s %3$s','View this comment'=>'Voir ce commentaire','Another update is currently in progress.'=>'Une autre mise à jour est actuellement en cours.','Update progress'=>'Progression de la mise à jour','View “%s” archive'=>'Voir l’archive pour « %s »','Delete “%s”'=>'Supprimer « %s »','Quick edit “%s” inline'=>'Modifier rapidement « %s » en ligne','Search for plugins in the WordPress Plugin Directory.'=>'Rechercher des extensions dans le répertoire des extensions WordPress.','Restore “%s” from the Trash'=>'Restaurer « %s » depuis la corbeille','Delete “%s” permanently'=>'Supprimer « %s » définitivement','Move “%s” to the Trash'=>'Déplacer « %s » dans la corbeille','Attach “%s” to existing content'=>'Attacher « %s » à du contenu existant','Detach from “%s”'=>'Détacher de « %s »','“%s” (Edit)'=>'« %s » (Modifier)','attachment filterTrash'=>'Corbeille','Quick edit this comment inline'=>'Modifier ce commentaire sur cette page','Edit this comment'=>'Modifier ce commentaire','Restore this comment from the spam'=>'Restaurer ce commentaire depuis les indésirables','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'L’outil d’importation %s n’est pas installé ou n’est pas valide.','comment statusPending'=>'En attente','Suggested height is %s.'=>'La hauteur suggérée est de %s.','Suggested width is %s.'=>'La largeur suggérée est de %s.','Images should be at least %s tall.'=>'Les images devraient faire au moins %s de haut.','%d pixels'=>'%d pixels','Images should be at least %s wide.'=>'Les images doivent être large de %s minimum.','Send the new user an email about their account'=>'Envoyer un e-mail à la personne à propos de son nouveau compte.','Send User Notification'=>'Envoyer une notification au compte','menu location(Currently set to: %s)'=>'(Actuellement réglé sur : %s)','Version %s addressed one security issue.'=>'La version %s a corrigé une faille de sécurité.','https://gravatar.com/'=>'https://fr.gravatar.com/','Profile Picture'=>'Illustration du profil','Maintenance and Security Releases'=>'Mises à jour de maintenance et de sécurité','Security Releases'=>'Mises à jour de sécurité','Maintenance Releases'=>'Mises à jour de maintenance','Plain'=>'Simple','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress vous offre la possibilité de créer une structure personnalisée d’URL pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreuses balises sont disponibles, et nous vous donnons quelques exemples pour commencer.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa date de publication ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée.','You can create the %s file manually and paste the following text into it.'=>'Vous pouvez créer le fichier %s manuellement et y coller le contenu suivant.','You should be able to get this info from your web host, if %s does not work.'=>'Si %s ne fonctionne pas, demandez cette information à l’hébergeur de votre site.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s.','Default is %s'=>'Par défaut, %s','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'Il manque les fichiers %1$s, %2$s, ou %3$s au paquet de langue.','The %s stylesheet does not contain a valid theme header.'=>'Le fichier %s ne contient pas d’entête de thème valide.','The theme is missing the %s stylesheet.'=>'Le thème n’a pas de fichier %s.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici.','themesFavorites'=>'Favoris','Database repair results'=>'Résultats de la réparation de la base de données','Allow automatic database repair'=>'Autoriser la réparation automatique de la base de données','Successful database connection'=>'La connexion à la base de données s’est bien faite','Set up your database connection'=>'Configurer la connexion à votre base de données','Before getting started'=>'Avant de commencer','WordPress database repair'=>'Réparation de la base de données de WordPress','Check secret keys'=>'Vérifier les clés secrètes','%s has been updated.'=>'%s a été mis à jour.','The Walker class named %s does not exist.'=>'La classe Walker nommée %s n’existe pas.','Requires %1$s in %2$s file.'=>'Nécessite la constance %1$s dans le fichier %2$s.','Standard time begins on: %s.'=>'Le passage à l’heure d’hiver commence le %s.','Daylight saving time begins on: %s.'=>'Le passage à l’heure d’été commence le %s.','You are about to delete %s.'=>'Vous êtes sur le point de supprimer %s.','Files in the %s directory are executed automatically.'=>'Les fichiers du répertoire %s sont exécutés automatiquement.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation.','Clear Inactive Widgets'=>'Vider les widgets désactivés','One of the selected users is not a member of this site.'=>'Un des comptes sélectionnés n’est pas membre de ce site.','Users list'=>'Liste des comptes','Users list navigation'=>'Navigation de la liste des comptes','Filter users list'=>'Liste des filtres utilisateurs','Media items list'=>'Liste des éléments média','Media items list navigation'=>'Navigation de la liste des éléments média','Filter media items list'=>'Filtrer la liste des fichiers média.','Install Parent Theme'=>'Installer le thème parent','Themes list'=>'Liste des thèmes','Filter themes list'=>'Filtrer la liste des thèmes','All selected plugins are up to date.'=>'Toutes les extensions sélectionnées sont à jour.','Plugins list'=>'Liste des extensions','Plugins list navigation'=>'Navigation de la liste des extensions','Filter plugins list'=>'Filtrer la liste des extensions','Browsing %s (inactive)'=>'Parcours de %s (désactivée)','Editing %s (inactive)'=>'Modification de %s (désactivée)','Browsing %s (active)'=>'Parcours de %s (activée)','Editing %s (active)'=>'Modification de %s (activée)','Local time is %s.'=>'L’heure locale est %s.','Links list'=>'Liste des liens','Get Version %s'=>'Obtenir la version %s','Toggle panel: %s'=>'Ouvrir/fermer la section %s','Saving revision…'=>'Enregistrement de la révision…','Edit permalink'=>'Modifier le permalien','The %1$s plugin header is deprecated. Use %2$s instead.'=>'L’entête d’extensions %1$s est obsolète. Utilisez plutôt %2$s.','Warning'=>'Avertissement','Warning:'=>'Attention :','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », ces comptes seront définitivement supprimés.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », le compte sera définitivement supprimé.','User has no sites or content and will be deleted.'=>'Le compte n’a pas de site ou de contenu, et sera supprimé.','Site: %s'=>'Site : %s','Select a user'=>'Sélectionnez un compte','What should be done with content owned by %s?'=>'Que faire du contenu ayant %s pour propriétaire ?','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Avertissement ! Le compte ne peut pas être supprimé. %s est administrateur ou administratrice du réseau.','Warning! User %s cannot be deleted.'=>'Avertissement ! Le compte %s ne peut pas être supprimé.','You have chosen to delete the following users from all networks and sites.'=>'Vous avez choisi de supprimer les comptes suivants de tous les réseaux et sites.','You have chosen to delete the user from all networks and sites.'=>'Vous avez choisi de supprimer le compte de tous les réseaux et sites.','Invalid image URL.'=>'URL non valide pour l’image.','Theme Header'=>'Entête du thème','Theme Footer'=>'Pied de page du thème','M jS Y'=>'j M Y','From %1$s %2$s'=>'De %1$s %2$s','View all drafts'=>'Voir tous les brouillons','no user rolesNone'=>'Aucun','No role'=>'Aucun rôle','An error occurred while updating %1$s: %2$s'=>'Une erreur s’est produite lors de la mise à jour de %1$s : %2$s','View mode'=>'Mode d’affichage','%s column'=>'%s colonne' . "\0" . '%s colonnes','Additional settings'=>'Réglages supplémentaires','Items list'=>'Liste des éléments','Items list navigation'=>'Navigation de la liste des éléments','Filter items list'=>'Filtrer la liste des éléments','Network Only'=>'Réseau uniquement','Network Active'=>'Activé sur le réseau','No pending comments'=>'Aucun commentaire en attente','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Échec de l’initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s.','column nameSubmitted on'=>'Envoyé le','commentsTrash (%s)'=>'Mis à la corbeille (%s)' . "\0" . 'Mis à la corbeille (%s)','commentsSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','commentsApproved (%s)'=>'Approuvé (%s)' . "\0" . 'Approuvés (%s)','commentsPending (%s)'=>'En attente (%s)' . "\0" . 'En attente (%s)','commentsAll (%s)'=>'Tous (%s) ' . "\0" . 'Tous (%s) ','User %s added'=>'Le compte %s a été ajouté','End date:'=>'Date de fin :','Content to export'=>'Contenu à exporter','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'Vous pouvez voir la liste des publications en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran ».','Submitted on: %s'=>'Envoyé le : %s','commentPermalink:'=>'Permalien :','Page draft updated.'=>'Le brouillon de la page a été mis à jour.','Page scheduled for: %s.'=>'Page planifiée pour le %s.','Page submitted.'=>'Page envoyée.','Post draft updated.'=>'Le brouillon de la publication a été mis à jour.','Post scheduled for: %s.'=>'Publication planifiée pour le %s.','Post submitted.'=>'Publication transmise.','View page'=>'Voir la page','Preview page'=>'Prévisualiser la page','Preview post'=>'Prévisualiser la publication','Comments list'=>'Liste des commentaires','Comments list navigation'=>'Navigation de la liste des commentaires','Filter comments list'=>'Filtrer la liste des commentaires','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'Dans la colonne « Envoyé le », vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la publication où se situe le commentaire.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d’afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille.','Comments (%s)'=>'Commentaires (%s)','Comments (%1$s) on “%2$s”'=>'Commentaires (%1$s) sur « %2$s »','Sorry, you are not allowed to modify themes.'=>'Désolé, vous n’avez pas l’autorisation de modifier les thèmes.','The active theme does not support a flexible sized header image.'=>'Le thème actif ne prend pas en charge les images d’entête de taille variable.','You are using the auto-generated password for your account. Would you like to change it?'=>'Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?','You have specified this user for removal:'=>'Vous avez indiqué que ce compte devait être supprimé :','Log %s out of all locations.'=>'Déconnecter %s de tous les emplacements.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez garder votre compte connecté ici tout en vous déconnectant partout ailleurs.','Log Out Everywhere Else'=>'Déconnecter partout ailleurs','Sessions'=>'Sessions','Cancel password change'=>'Annuler la modification du mot de passe','Generate password'=>'Générer un mot de passe','Account Management'=>'Gestion du compte','You will need this password to log in. Please store it in a secure location.'=>'Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr.','No approved comments'=>'Aucun commentaire approuvé','%s pending comment'=>'%s commentaire en attente' . "\0" . '%s commentaires en attente','%s approved comment'=>'%s commentaire approuvé' . "\0" . '%s commentaires approuvés','Image could not be processed.'=>'L’image n’a pas pu être traitée.','Confirm Password'=>'Confirmer le mot de passe','Remove Site Icon'=>'Supprimer l’icône du site','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org.','Set as Site Icon'=>'Définir comme icône du site','Choose a Site Icon'=>'Choisir une icône de site','Show more details'=>'Afficher plus de détails','Your theme supports %s menu. Select which menu appears in each location.'=>'Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître à chaque emplacement.' . "\0" . 'Votre thème peut utiliser %s menus. Sélectionnez les menus qui devront apparaître à chaque emplacement.','%s post by this author'=>'%s publication par cet auteur/autrice' . "\0" . '%s publications par cet auteur/autrice','Live Preview “%s”'=>'Prévisualisation de « %s »','last page'=>'dernière page','first page'=>'première page','In response to: %s'=>'En réponse à : %s','Date and time'=>'Date et heure','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués.','Documentation on Custom Background'=>'Documentation sur l’arrière-plan personnalisé (en anglais)','Documentation on Link Categories'=>'Documentation sur les catégories de liens (en anglais)','Documentation on Creating Links'=>'Documentation sur la création de liens (en anglais)','Documentation on Managing Links'=>'Documentation sur la gestion des liens (en anglais)','Documentation on Custom Header'=>'Documentation sur l’entête personnalisé','Documentation on My Sites'=>'Documentation sur Mes Sites (en anglais)','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions (en anglais).','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication est disponible sur la documentation de WordPress. Séparez les URL de services par des retours à la ligne.','The character encoding of your site (UTF-8 is recommended)'=>'Le codage de caractères utilisé par votre site (nous recommandons UTF-8)','example: www.wordpress.org'=>'exemple : www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'La recherche parmi les thèmes installés se fait sur leur nom, leur description, leur auteur/autrice ou leurs étiquettes.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Autrement, vous pouvez parcourir les thèmes populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'Vous pouvez rechercher des thèmes par mot-clé, auteur/autrice ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités.','Number of Themes found: %d'=>'Nombre de thèmes trouvés : %d','Custom time format:'=>'Format d’heure personnalisé :','enter a custom time format in the following field'=>'saisissez un format d’heure personnalisé dans le champ suivant','Custom date format:'=>'Format de date personnalisé :','enter a custom date format in the following field'=>'saisir un format de date personnalisé dans le champ suivant','Plugins updated successfully.'=>'Les extensions ont bien été mises à jour.','Active plugin installations%s+ Million'=>'%s million et +' . "\0" . '%s millions et +','XML Error: %1$s at line %2$s'=>'Erreur XML : %1$s à la ligne %2$s','Main menu'=>'Menu principal','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus.','%s user deleted.'=>'%s compte supprimé.' . "\0" . '%s comptes supprimés.','What should be done with content owned by these users?'=>'Que doit-il arriver aux contenus appartenant à ces comptes ?','You have specified these users for deletion:'=>'Vous avez indiqué que vous voulez supprimer ces comptes :','You are about to remove the following plugins:'=>'Vous êtes sur le point de supprimer les extensions suivantes :','These plugins may be active on other sites in the network.'=>'Ces extensions peuvent être actives sur d’autres sites du réseau.','Delete Plugins'=>'Supprimer les extensions','1 page not updated, somebody is editing it.'=>'Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier.','1 post not updated, somebody is editing it.'=>'Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Déconnecter partout ailleurs »','New translations are available.'=>'De nouvelles traductions sont disponibles.','This theme has not been rated yet.'=>'Ce thème n’a pas encore reçu de note.','timezone date formatY-m-d H:i:s'=>'Y-m-d H:i:s','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une URL et un texte pour le lien, et cliquez sur « Ajouter au menu »','Howdy ###USERNAME###, + +You recently clicked the \'Delete Site\' link on your site and filled in a +form on that page. + +If you really want to delete your site, click the link below. You will not +be asked to confirm again so only click this link if you are absolutely certain: +###URL_DELETE### + +If you delete your site, please consider opening a new site here some time in +the future! (But remember that your current site and username are gone forever.) + +Thank you for using the site, +All at ###SITENAME### +###SITEURL###'=>'Bonjour ###USERNAME###, + +Vous avez récemment cliqué sur le lien « Supprimer le site » de votre site, +et avez complété le formulaire présent sur cette même page. + +Si vous confirmez la suppression de votre site, cliquez sur le lien ci-dessous. +Aucune confirmation ne vous sera demandée par la suite, soyez donc totalement +certain·e de ce que vous faites : +###URL_DELETE### + +Si vous effacez votre site, n’hésitez pas à revenir créer un autre site à l’avenir ! +(mais souvenez-vous que votre site actuel et votre identifiant ne seront plus jamais disponibles). + +Merci d’avoir utilisé ce site, + +Les responsables de ###SITENAME### +###SITEURL###','Close details dialog'=>'Fermer la fenêtre des détails','You are currently editing the page that shows your latest posts.'=>'Vous êtes en train de modifier la page qui affiche vos derniers articles.','Number of items per page:'=>'Nombre d’éléments par page :','revision date short formatj M @ H:i'=>'j F \\à G \\h i \\m\\i\\n ','Size in megabytes'=>'Taille en mégaoctets','Site Upload Space Quota'=>'Quota d’espace de fichiers','UPDATE LOG +=========='=>'JOURNAL DES MISES À JOUR +==========','BETA TESTING? +============= + +This debugging email is sent when you are using a development version of WordPress. + +If you think these failures might be due to a bug in WordPress, could you report it? + * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta + * Or, if you\'re comfortable writing a bug report: https://core.trac.wordpress.org/ + +Thanks! -- The WordPress Team'=>'BÊTA TESTEUR ? +============== + +Cet e-mail de débogage est envoyé lorsque vous utilisez une version de développement de WordPress. + +Si vous pensez que ces erreurs puissent être dues à un problème du côté de WordPress, pourriez-vous nous les signaler ? +* Ouvrez une discussion sur le forum de support en anglais : https://wordpress.org/support/forum/alphabeta +* Ou, si rédiger un rapport de bogue ne vous fait pas peur : https://core.trac.wordpress.org/ + +Merci ! -- L’équipe WordPress','M j, Y @ H:i'=>'j F Y \\à G \\h i \\m\\i\\n','Submitted on'=>'Envoyé le','In response to'=>'En réponse à','%1$s %2$s, %3$s at %4$s:%5$s'=>'%2$s %1$s %3$s à %4$sh%5$s','You are only logged in at this location.'=>'Vous n’êtes connecté·e qu’à cet emplacement.','These suggestions are based on the plugins you and other users have installed.'=>'Ces suggestions sont basées sur les extensions que vous et d’autres comptes ont installées.','You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.'=>'Vous pouvez activer le mode d’écriture sans distraction en cliquant sur l’icône à droite. Cette fonctionnalité n’est pas disponible pour les anciens navigateurs ou les appareils à petits écrans, et nécessite l’activation de l’éditeur plein-écran dans les options de l’écran.','Log Out Everywhere'=>'Déconnexion globale','Plugin InstallerRecommended'=>'Recommandées','Your new WordPress site has been successfully set up at: + +%1$s + +You can log in to the administrator account with the following information: + +Username: %2$s +Password: %3$s +Log in here: %4$s + +We hope you enjoy your new site. Thanks! + +--The WordPress Team +https://wordpress.org/ +'=>'Votre nouveau site WordPress a bien été installé à l’adresse : + +%1$s + +Vous pouvez vous y connecter en tant qu’administrateur ou administratrice avec les informations suivantes : + +Identifiant : %2$s +Mot de passe : %3$s +Connectez-vous ici : %4$s + +Nous espérons que vous aimerez votre nouveau site ! Merci à vous ! + +--L’équipe WordPress +https://wordpress.org/ +','You cannot delete a theme while it has an active child theme.'=>'Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant.','Mystery Person'=>'Personne mystère','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas ("_"), des traits d’union ("-"), des points et le symbole @.','Enable full-height editor and distraction-free functionality.'=>'Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction.','https://planet.wordpress.org/feed/'=>'https://rss.wpfr.net/wp-planet','https://planet.wordpress.org/'=>'https://fr.wordpress.org/news/','Untested with your version of WordPress'=>'Non testé avec votre version de WordPress','All categories'=>'Toutes les catégories','Filter by comment type'=>'Filtrer par type de commentaire','%s has been logged out.'=>'%s a été déconnecté·e.','You are now logged out everywhere else.'=>'Vous êtes désormais déconnecté·e partout ailleurs.','Could not log out user sessions. Please try again.'=>'Impossible de déconnecter les sessions des comptes. Veuillez réessayer.','This preview is unavailable in the editor.'=>'Cette prévisualisation n’est pas disponible dans l’éditeur.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab.'=>'Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel et Code. Choisissez un mode en cliquant sur l’onglet correspondant.','You can now manage and live-preview Custom Header in the Customizer.'=>'Vous pouvez gérer et prévisualiser l’entête personnalisée dans l’outil de personnalisation.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation.','Welcome panelWelcome'=>'Bienvenue','usersAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','link nameName'=>'Nom','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les URL de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée.','Release Lead'=>'Responsable de la version','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran des modifications étendues par la fenêtre des détails.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, avec le dernier téléversé qui apparaît en premier.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées.','Browse Plugins'=>'Parcourir les extensions','Add Plugins'=>'Ajouter des extensions','The %1$s constant in your %2$s file is no longer needed.'=>'La constante %1$s de votre fichier %2$s n’est plus nécessaire.','Invalid translation type.'=>'Type de traduction non valide.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde.','Compatible with your version of WordPress'=>'Compatible avec votre version de WordPress','Incompatible with your version of WordPress'=>'Incompatible avec votre version de WordPress','%d star'=>'%d étoile' . "\0" . '%d étoiles','Select bulk action'=>'Sélectionnez l’action groupée','Add the user without sending an email that requires their confirmation'=>'Ajouter le compte sans envoyer de message de confirmation.','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'La vue en grille de la médiathèque nécessite JavaScript. Passer à la vue en liste.','Contributors'=>'Crédits','Donate to this plugin »'=>'Faire un don à cette extension »','Plugin installer section titleReviews'=>'Avis','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne.','themesRecently Updated'=>'Mis à jour récemment','Number/count of itemsCount'=>'Total','View details'=>'Afficher les détails','More Details'=>'Plus de détails','Plugin installer group titleTools'=>'Outils','Plugin installer group titleSocial'=>'Social','Plugin installer group titlePerformance'=>'Performances','Plugin InstallerBeta Testing'=>'Test de phase beta','%s failed to embed.'=>'%s n’a pas pu être intégré.','Filtering by:'=>'Trier par :','Displayed on attachment pages.'=>'affichée sur les pages du fichier joint.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Maj tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc.','To crop the image, click on it and drag to make your selection.'=>'Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils.','A red bar on the left means the comment is waiting for you to moderate it.'=>'Une barre rouge sur la gauche signifie que le commentaire attention votre validation.','All comment types'=>'Tous les types de commentaire','themesLatest'=>'Derniers en date','themesPopular'=>'Populaires','themesFeatured'=>'Mis en avant','Attribute all content to:'=>'Attribuer tout le contenu à :','Delete all content.'=>'Supprimer tout le contenu.','What should be done with content owned by this user?'=>'Que faire du contenu ayant ce compte pour propriétaire ?','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'« Supprimer » vous amène à l’écran de suppression des comptes pour confirmer votre action, d’où vous pouvez supprimer un compte de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Supprimer vous permet de supprimer un compte de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées.','themeDetails & Preview'=>'Détails et prévisualisation','Search Themes'=>'Rechercher des thèmes','Add Themes'=>'Ajouter des thèmes','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wpfr.net/support/forum/support-de-wordpress/','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez.','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Contrôles des sections – Cliquez sur la barre de titre d’une section pour l’ouvrir ou la fermer. Certaines sections ajoutées par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris.','Sorry, you are not allowed to resume this theme.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter ce thème.','Edit date and time'=>'Modifier la date et l’heure','Browse revisions'=>'Parcourir les révisions','Edit visibility'=>'Modifier la visibilité','Edit status'=>'Modifier l’état','Support forums'=>'Forums d’entraide','Thank you for creating with WordPress.'=>'Merci de faire de WordPress votre outil de création de contenu.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Traductions – Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton « Mettre à jour les traductions ».','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan.','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – Mise à jour de votre installation WordPress en un clic : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié·e qu’une nouvelle version est disponible.','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Thèmes et extensions – Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à cocher pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions en une seule opération, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le bouton de mise à jour.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org.','If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire des thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !','%1$s MB (%2$s%%) Space Used'=>'%1$s Mo (%2$s%%) d’espace utilisés','%s MB Space Allowed'=>'%s Mo d’espace autorisés','M jS'=>'j M','%s Page'=>'%s page' . "\0" . '%s pages','%s Post'=>'%s article' . "\0" . '%s articles','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'Lorsque ce réglage est actif, un rappel est affiché dans la section « D’un coup d’œil » du Tableau de bord, indiquant « Moteurs de recherche refusés » pour que vous n’oubliez pas que vous avez indiqué aux moteurs de recherche de ne pas parcourir votre site.','At a Glance'=>'D’un coup d’œil','themeActive:'=>'Activé :','Accessibility Ready'=>'Optimisé pour l’accessibilité','This is a child theme of %s.'=>'Ce thème est un thème enfant de %s.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, recliquez sur l’icône de réduction.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres modèles de pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un clic, cliquez sur le bouton « Activer et publier » en haut du menu.','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Touchez ou survolez n’importe quel thème puis cliquez sur le bouton « Prévisualiser en direct » pour avoir un aperçu de celui-ci et modifier ses options dans une vue séparée et plein écran. Vous pouvez également trouver un bouton « Prévisualiser en direct » en bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière.','The active theme is displayed highlighted as the first theme.'=>'Le thème actif est mis en avant en tant que premier thème.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Cliquer sur « Personnaliser » pour le thème actif ou « Prévisualiser en direct » pour n’importe quel autre thème afin d’afficher la prévisualisation.','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Cliquer sur le thème pour voir le nom du thème, sa version, son auteur/autrice, sa description, ses étiquettes et le bouton « Supprimer ».','Hover or tap to see Activate and Live Preview buttons'=>'Survoler ou toucher pour voir les boutons « Activer » et « Prévisualiser en direct ».','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale.','%s rating'=>'Note : %s','%1$s rating based on %2$s rating'=>'Une note de %1$s basée sur %2$s vote' . "\0" . 'Une note de %1$s basée sur %2$s votes','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'Cet écran affiche à un compte individuel tous ses sites sur ce réseau, et permet également à ce comptes de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration.','Error: [%1$s] %2$s'=>'Erreur : [%1$s] %2$s','Rollback Error: [%1$s] %2$s'=>'Erreur de restauration : [%1$s] %2$s','The following translations failed to update:'=>'Les traductions suivantes n’ont pas pu être mises à jour :','The following themes failed to update:'=>'Les thèmes suivants n’ont pas pu être mis à jour :','The following plugins failed to update:'=>'Les extensions suivantes n’ont pas pu être mises à jour :','The following translations were successfully updated:'=>'Les traductions suivantes ont bien été mises à jour :','The following themes were successfully updated:'=>'Les thèmes suivants ont bien été mis à jour :','The following plugins were successfully updated:'=>'Les extensions suivantes ont bien été mises à jour :','Add Widget'=>'Ajouter le widget','Show next theme'=>'Afficher le thème suivant','Show previous theme'=>'Afficher le thème précédent','Update Available'=>'Mise à jour disponible','Are you sure you want to delete this theme? + +Click \'Cancel\' to go back, \'OK\' to confirm the delete.'=>'Confirmez-vous la suppression de ce thème ? + +« Annuler » pour arrêter, « OK » pour supprimer.','Unable to submit this form, please refresh and try again.'=>'Impossible d’envoyer ce formulaire. Veuillez recharger la page et réessayer.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Brouillon rapide — Vous permet de créer une nouvelle publication et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 3 derniers brouillons que vous avez créés.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activité – Affiche les publications planifiées, celles qui ont été publiées récemment, et les commentaires récents, que vous pouvez valider ou non.','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les sections à afficher dans le Tableau de bord.','Manage Uploads'=>'Gérer les téléversements','Popular Plugin'=>'Extensions populaires','Tomorrow'=>'Demain','No activity yet!'=>'Aucune activité pour le moment !','Recently Published'=>'Publié récemment','Publishing Soon'=>'Bientôt publié','What’s on your mind?'=>'Qu’avez-vous en tête ?','WordPress %1$s running %2$s theme.'=>'WordPress %1$s avec le thème %2$s.','Quick Draft'=>'Brouillon rapide','Activity'=>'Activité','FAILED: %s'=>'ÉCHEC : %s','SUCCESS: %s'=>'SUCCÈS : %s','FAILED: WordPress failed to update to %s'=>'ÉCHEC : WordPress n’a pas pu être mis à jour en %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCÈS : WordPress a bien été mis à jour vers %s','WordPress site: %s'=>'Site WordPress : %s','Your site was running version %s.'=>'Votre site utilise la version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Votre site à l’adresse %1$s a rencontré un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s.','WordPress %s is also now available.'=>'WordPress %s est disponible.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers.','Your translations are all up to date.'=>'Vos traductions sont toutes à jour.','Translations'=>'Traductions','Error code: %s'=>'Code d’erreur : %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :','The WordPress Team'=>'L’équipe WordPress','You also have some plugins or themes with updates available. Update them now:'=>'Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de WPFR (https://wpfr.net/support) devraient pouvoir vous aider.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le web plus sûr pour vous et pour votre audience.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé.','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s.','Updating is easy and only takes a few moments:'=>'La mise à jour est facile et ne nécessite que quelques secondes :','Please update your site at %1$s to WordPress %2$s.'=>'Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : ','No further action is needed on your part.'=>'Vous n’avez rien de plus à faire.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Bonjour ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s.','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible.','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s est disponible. Veuillez mettre à jour !','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Votre site a été mis à jour vers WordPress %2$s','Translations for %s'=>'Traductions pour %s','Updating translations for %1$s (%2$s)…'=>'Mise à jour de la traduction de %1$s (%2$s)…','Update Translations'=>'Mettre à jour les traductions','Background updates'=>'Mises à jour en arrière-plan','There is not enough free disk space to complete the update.'=>'Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour.','Updating plugin: %s'=>'Mise à jour de l’extension : %s','Updating theme: %s'=>'Mise à jour du thème : %s','Translation updated successfully.'=>'La traduction a bien été mise à jour.','Translation update failed.'=>'La mise à jour de la traduction a échoué.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour.','Create a brand new user and add them to this site.'=>'Créer un nouveau compte et l’ajouter à ce site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant.','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la médiathèque.','Comment must be manually approved'=>'Le commentaire doit être approuvé manuellement','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran ».','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté.','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget « Menu de navigation » depuis l’écran Widgets.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com.','You must provide an email address.'=>'Vous devez saisir une adresse e-mail.','Your passwords do not match. Please try again.'=>'Vos mots de passe ne correspondent pas. Veuillez réessayer.','The username you provided has invalid characters.'=>'L’identifiant que vous avez fourni contient des caractères non valides.','Please provide a valid username.'=>'Veuillez saisir un identifiant valide.','Copying the required files…'=>'Copie des fichiers nécessaires…','Preparing to install the latest version…'=>'Préparation de l’installation de la dernière version…','This password will not be stored on the server.'=>'Le mot de passe ne sera pas stocké sur le serveur.','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s).','WordPress %s'=>'WordPress %s','Updating to WordPress %s'=>'Mise à jour vers WordPress %s','Due to an error during updating, WordPress has been restored to your previous version.'=>'Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente.','Looking for %1$s in %2$s'=>'Recherche %1$s dans %2$s','%s page restored from the Trash.'=>'%s page récupérée depuis la corbeille.' . "\0" . '%s pages récupérées depuis la corbeille.','%s page moved to the Trash.'=>'%s page déplacée dans la corbeille.' . "\0" . '%s pages déplacées dans la corbeille.','%s page permanently deleted.'=>'%s page définitivement supprimée.' . "\0" . '%s pages définitivement supprimées.','%s page not updated, somebody is editing it.'=>'%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','%s page updated.'=>'%s page mise à jour.' . "\0" . '%s pages mises à jour.','%s post restored from the Trash.'=>'%s publication récupérée depuis la corbeille.' . "\0" . '%s publications récupérées depuis la corbeille.','%s post moved to the Trash.'=>'%s publication déplacée dans la corbeille.' . "\0" . '%s publications déplacées dans la corbeille.','%s post permanently deleted.'=>'%s publication supprimée définitivement.' . "\0" . '%s publications supprimées définitivement.','%s post not updated, somebody is editing it.'=>'%s publication n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s publications n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','Tags deleted.'=>'Étiquettes supprimées.','Tag not updated.'=>'Étiquette non mise à jour.','Tag not added.'=>'Étiquette non ajoutée.','Tag updated.'=>'Étiquette mise à jour.','Tag deleted.'=>'Étiquette supprimée.','Tag added.'=>'Étiquette ajoutée.','Categories deleted.'=>'Catégories supprimées.','Category not updated.'=>'Catégorie non mise à jour.','Category not added.'=>'Catégorie non ajoutée.','Category updated.'=>'Catégorie mise à jour.','Category deleted.'=>'Catégorie effacée.','Category added.'=>'Catégorie ajoutée.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté.','Compare any two revisions'=>'Comparer n’importe quelles révisions','Restore This Autosave'=>'Rétablir cette sauvegarde automatique','Current Revision by %s'=>'Révision actuelle par %s','Autosave by %s'=>'Sauvegarde automatique par %s','revisionsBrowse'=>'Parcourir','Revisions: %s'=>'Révisions : %s','"%s".'=>'%s.','"%1$s" by %2$s.'=>'%1$s par %2$s.','"%1$s" from %2$s.'=>'« %1$s » depuis %2$s.','"%1$s" from %2$s by %3$s.'=>'%1$s tiré de %2$s par %3$s.','Revision by %s'=>'Révision par %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion.','Repeat Password'=>'Répétez le mot de passe','Repeat New Password'=>'Répétez le nouveau mot de passe','Add menu items from the column on the left.'=>'Ajouter des éléments de menu depuis la colonne de gauche.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou téléverser une extension au format .zip en cliquant sur le bouton en haut de cette page.','http://wordpress.org/plugins/hello-dolly/'=>'https://fr.wordpress.org/plugins/hello-dolly/','The theme contains no files.'=>'Ce thème ne contient aucun fichier.','The package contains no files.'=>'Ce paquet ne contient aucun fichier.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante.','Loading…'=>'Chargement…','This item has already been deleted.'=>'Cet élément a déjà été supprimé.','The item you are trying to restore from the Trash no longer exists.'=>'L’élément que vous essayez de sortir de la corbeille n’existe plus.','The item you are trying to move to the Trash no longer exists.'=>'L’élément que vous essayez de placer dans la corbeille n’existe plus.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer','To restore a revision, click Restore This Revision.'=>'Pour rétablir cette révision, cliquez sur « Rétablir cette révision ».','From this screen you can review, compare, and restore revisions:'=>'Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été retiré. Sur la droite, le texte en vert indique le contenu qui a été ajouté.','This screen is used for managing your content revisions.'=>'Cet écran est utilisé pour gérer les révisions de vos contenus.','Followed by post revision infoTo:'=>'Vers :','Button label for a next revisionNext'=>'Suivante','Button label for a previous revisionPrevious'=>'Précédente','Followed by post revision infoFrom:'=>'Depuis :','menuUse new menu'=>'Utiliser le nouveau menu','menuEdit'=>'Modifier','Select a Menu'=>'Choisir un menu','Assigned Menu'=>'Menu assigné','Theme Location'=>'Emplacement du thème','Manage Locations'=>'Gérer les emplacements','Edit Menus'=>'Modifier les menus','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'Pour ajouter un menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »','This screen is used for globally assigning menus to locations defined by your theme.'=>'Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème.','Editing Menus'=>'Modification des menus','Delete a menu item by expanding it and clicking the Remove link'=>'Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des URL personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’une des sections situées dans la colonne de gauche ci-dessous.','Menu Management'=>'Gestion des menus','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'La section de gestion des menus, en haut de l’écran, est utilisée pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous.','Add, organize, and modify individual menu items'=>'Ajouter, organiser et modifier des éléments de menu individuels','Create, edit, and delete menus'=>'Créer, modifier et supprimer des menus','From this screen you can:'=>'Depuis cet écran, vous pouvez :','This screen is used for managing your navigation menus.'=>'Cet écran est utilisé pour gérer vos menus de navigation.','Menu locations updated.'=>'Les emplacements de menu ont été mis à jour.','Your latest changes were saved as a revision.'=>'Vos dernières modifications ont été enregistrées dans une révision.','Audio Codec:'=>'Codec audio :','Audio Format:'=>'Format audio :','Genre: %s.'=>'Genre : %s.','Track %1$s of %2$s.'=>'Piste %1$s sur %2$s.','Released: %d.'=>'Date de sortie : %d.','%1$s by %2$s.'=>'%1$s par %2$s.','Restore This Revision'=>'Rétablir cette révision','Denied: %s'=>'Refusé : %s','Capabilities'=>'Permissions','Menu Settings'=>'Réglages du menu','Menu structure'=>'Structure du menu','To the top'=>'Tout en haut','Down one'=>'Descendre d’un cran','Up one'=>'Un cran vers le haut','Move'=>'Déplacer','Draft created on %1$s at %2$s'=>'Brouillon créé le %1$s à %2$s','You cannot move this item to the Trash. %s is currently editing.'=>'Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier.','%s has taken over and is currently editing.'=>'%s a pris la main et modifie actuellement ce contenu.','Select a menu to edit:'=>'Sélectionnez le menu à modifier :','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Merci d’avoir fait cette mise à jour ! Veuillez vous rendre sur la page de mise à jour du réseau afin de mettre à jour tous vos sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…','Client version'=>'Version du client','Auto add pages'=>'Ajoutez automatiquement des pages','Give your menu a name, then click Create Menu.'=>'Donnez à votre menu un nom, puis cliquez sur « Créer le menu ».','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications.','Selected menus have been successfully deleted.'=>'Les menus sélectionnés ont bien été supprimés.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction.','Look Up'=>'Consulter','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction.','%s is currently editing'=>'%s modifie actuellement ce contenu','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la médiathèque, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie ».','Image rotation is not supported by your web host.'=>'La rotation d’image n’est pas disponible avec cet hébergeur.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'En changeant de thème, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des colonnes latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avez changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages.','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente ».','Several boxes on this screen contain settings for how your content will be published, including:'=>'Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :','Inserting Media'=>'Insertion de média','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'Le champ du titre et la zone d’édition de la publication sont inamovibles, mais vous pouvez déplacer toutes les autres sections par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque section. Utilisez l’onglet « Options de l’écran » pour masquer d’autres sections (Extrait, Envoyer des rétroliens, Champs personnalisés, Commentaires, Slug, Auteur ou autrice) ou pour choisir un affichage sur une ou deux colonnes pour cet écran.','Do not forget to click “Save Changes” when you are done!'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre médiathèque en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps.','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place.','media itemEdit'=>'Modifier','colorDefault: %s'=>'Par défaut : %s','column nameUploaded to'=>'Téléversé sur ','The uploaded file is not a valid image. Please try again.'=>'Le fichier téléversé n’est pas une image valide. Veuillez réessayer.','Choose a Custom Header'=>'Choisir un entête personnalisé','Choose a Background Image'=>'Choisir une image d’arrière-plan','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Dans la section « Texte d’entête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : « #ff0000 » pour du rouge) ou en cliquant sur le sélecteur de couleur.','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton de sélection de couleur ou en saisissant une valeur HTML valide (exemple : « #ff0000 » pour du rouge) ou en utilisant la palette de couleurs.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour n’ afficher que ceux qui sont liés à cet article.','ID #%1$s: %2$s'=>'ID n°%1$s : %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID n°%1$s : %2$s Le compte actuel ne sera pas supprimé.','Used: %1$s%% of %2$s'=>'Taux d’utilisation : %1$s%% sur %2$s','Please select an option.'=>'Veuillez sélectionner une option.','After you’ve done that, click “Run the installation”.'=>'Après cela, cliquez sur « Lancer l’installation »','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Téléverser une extension ». Il vous sera demandé d’indiquer le fichier .zip à téléverser, et ceci fait, vous pourrez activer l’extension.','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'Vous pouvez voir les extensions favorites d’un compte WordPress.org en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org.','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur/autrice, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions.','It is up to search engines to honor this request.'=>'Certains moteurs de recherche peuvent décider de l’indexer malgré tout.','Discourage search engines from indexing this site'=>'Demander aux moteurs de recherche de ne pas indexer ce site','Allow search engines to index this site'=>'Autoriser les moteurs de recherche à indexer ce site','Search engine visibility'=>'Visibilité par les moteurs de recherche','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici.','Get Favorites'=>'Afficher les favoris','Your WordPress.org username:'=>'Votre identifiant WordPress.org :','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici.','Welcome to WordPress!'=>'Bienvenue sur WordPress !','Search engines discouraged'=>'Moteurs de recherche refusés','This child theme requires its parent theme, %2$s.'=>'Ce thème enfant nécessite son thème parent, %2$s.','Plugin InstallerFavorites'=>'Favorites','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualiser en direct » situé sous la miniature de chaque thème.','widgetAdd'=>'Ajouter','widgetEdit'=>'Modifier','Search by tag'=>'Recherche par étiquette','Search by author'=>'Recherche par auteur ou autrice','Search by keyword'=>'Rechercher par mot-clé','Type of search'=>'Type de recherche','Screen Options Tab'=>'Onglet des options de l’écran','Contextual Help Tab'=>'Onglet d’aide contextuelle','Select comment'=>'Sélectionnez un commentaire','Tags can be selectively converted to categories using the tag to category converter.'=>'Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories.','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut.','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’écran », et en ouvrant/fermant les sections selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Code, via les boutons « Plein écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans la section « Attributs de page ».','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'Vous pouvez choisir une image d’entête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre médiathèque. Après avoir sélectionné l’image, vous pourrez la recadrer.','Skip to main content'=>'Aller au contenu principal','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'Vous pouvez utiliser une image d’entête personnalisée pour votre site. Téléversez simplement l’image, recadrez-la, et le nouvel entête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été téléversée dans votre médiathèque, en cliquant sur le bouton « Choisissez une image ».','Skip Cropping, Publish Image as Is'=>'Aucun recadrage, utiliser l’image telle quelle','Choose Image'=>'Choisissez une image','Or choose an image from your media library:'=>'Ou choisissez une image dans votre médiathèque :','Select Image'=>'Sélectionnez une image','Collapse'=>'Réduire','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'Si vous ne souhaitez pas que votre site utilise une image d’entête, cliquez sur le bouton « Retirer l’image d’entête » en bas de la section « Image d’entête » de cette page. Si vous souhaitez réactiver l’image d’entête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications ».','pluginInstalled'=>'Installée','Previewing and Customizing'=>'Prévisualisation et personnalisation','Previewing and Installing'=>'Prévisualisation et installation','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclut la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement.','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'Le lien « Convertisseur de catégories-étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Lancer l’outil d’importation » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre.','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriquées. Parfois, des auteurs ou autrices commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'Pour la plupart des thèmes, le texte d’entête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'Si votre thème a plus d’une image d’entête par défaut, ou si vous avez téléversé plus d’une image d’entête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images téléversées » pour activer cette fonctionnalité.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Certains thèmes disposent d’une série d’images d’entête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications ».','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'Vous pouvez choisir à partir des images d’entête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan.','This screen is used to customize the header section of your theme.'=>'Cet écran est utilisé pour personnaliser la section d’entête de votre thème.','Configuration Error'=>'Erreur de configuration','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revenez à l’outil de téléversement du navigateur en cliquant sur le lien sous la zone de glisser-déposer.','User deleted.'=>'Compte supprimé.','Could not copy files. You may have run out of disk space.'=>'Impossible de copier les fichiers. Il se pourrait que vous manquiez de place.','Find a theme based on specific features.'=>'Trouver un thème selon des critères précis.','Search for themes by keyword.'=>'Rechercher des thèmes par mot-clé.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…','This theme is broken.'=>'Le thème est cassé.','Set as header'=>'Utiliser comme entête','Set as background'=>'Utiliser comme image de fond','Customize “%s”'=>'Personnaliser « %s »','(required)'=>'(nécessaire)','Edit Link'=>'Modifier le lien','Error: This email is already registered. Please choose another one.'=>'Erreur : cet e-mail est déjà inscrit. Veuillez en choisir un autre.','Error: Please enter a nickname.'=>'Erreur : veuillez saisir un pseudonyme.','https://wordpress.org/about/'=>'https://fr.wordpress.org/about/','Select All'=>'Tout sélectionner','Public, Sticky'=>'Public, épinglé','Privately Published'=>'Mis en ligne en privé','Save as Pending'=>'Mettre en attente','Enter a link URL or click above for presets.'=>'Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis.','Link URL'=>'URL du lien','No comments yet.'=>'Aucun commentaire pour l’instant.','Version:'=>'Version : ','Collapse Sidebar'=>'Réduire la colonne latérale','Plugin'=>'Extension','All'=>'Tout','Word count: %s'=>'Nombre de mots : %s','Edit comment'=>'Modifier le commentaire','Preview:'=>'Aperçu :','E-mail'=>'E-mail','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant.','Successfully installed the parent theme, %1$s %2$s.'=>'Le thème parent, %1$s %2$s, a bien été installé.','The parent theme, %1$s %2$s, is currently installed.'=>'Le thème parent, %1$s %2$s, est bien installé.','Preparing to install %1$s %2$s…'=>'Préparation à l’installation de %1$s %2$s…','This theme requires a parent theme. Checking if it is installed…'=>'Ce thème nécessite un thème parent. Nous vérifions s’il est installé…','Show header text with your image.'=>'Afficher le texte d’entête avec l’image.','Header Text'=>'Texte de l’entête','There is a new version of %1$s available. View version %4$s details or update now.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour maintenant.','By %s.'=>'par %s.','Add Comment'=>'Ajouter un commentaire','http://ma.tt/'=>'https://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration.','Hello Dolly'=>'Hello Dolly','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème.','HowdyWelcome'=>'Bienvenue','Delete My Site Permanently'=>'Effacer mon site définitivement','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'Je suis certain·e de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais le récupérer ni utiliser %s pour un nouveau site.','Remember, once deleted your site cannot be restored.'=>'Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient.','Sorry, the link you clicked is stale. Please select another option.'=>'Désolé, mais le lien que vous avez cliqué est avarié. Veuillez sélectionner une autre option.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Merci à vous d’avoir utilisé %s, votre site a été effacé. Nous espérons vous revoir.','Primary Site'=>'Site principal','British English'=>'Anglais (UK)','American English'=>'Anglais (US)','View Site'=>'Afficher le site','Visit Dashboard'=>'Se rendre sur le Tableau de bord','Your Sites'=>'Vos sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur ou l’administratrice du réseau.','MB (Leave blank for network default)'=>'Mo (Laisser vide pour utiliser la valeur par défaut du réseau)','[%s] New Admin Email Address'=>'[%s] Nouvelle adresse e-mail d’administration','Disabled'=>'Désactivé','Paused (%s)'=>'Mis en pause (%s)' . "\0" . 'Mis en pause (%s)','Global Settings'=>'Réglages globaux','You must be a member of at least one site to use this page.'=>'Vous devez être membre d’au moins un site pour utiliser cette page.','The primary site you chose does not exist.'=>'Le site principal que vous avez choisi n’existe pas.','If you want to run multiple WordPress installations in a single database, change this.'=>'Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage.','Table Prefix'=>'Préfixe des tables','Database Host'=>'Adresse de la base de données','example passwordpassword'=>'mot de passe','example usernameusername'=>'Identifiant','Database Name'=>'Nom de la base de données','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur.','Let’s go!'=>'C’est parti !','Table prefix (if you want to run more than one WordPress in a single database)'=>'Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)','Database host'=>'Hôte de base de données','Database password'=>'Mot de passe de base de données','Database username'=>'Identifiant MySQL','Database name'=>'Nom de la base de données','WordPress › Setup Configuration File'=>'WordPress › Fichier de configuration','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation maintenant.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer de lancer l’installation maintenant.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Désolé, il est nécessaire de disposer d’un fichier %s à partir duquel travailler. Veuillez retéléverser ce fichier au sein de votre installation WordPress.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page.','No comments awaiting moderation.'=>'Aucun commentaire en attente de modération.','Plugin installer section titleOther Notes'=>'Autres notes','Plugin installer section titleChangelog'=>'Journal des modifications','Plugin installer section titleScreenshots'=>'Captures d’écrans','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin Homepage »'=>'Site de l’extension »','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une autre plateforme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur ou autrice donné, une catégorie précise, ou des états de publication.','Failed to repair the %1$s table. Error: %2$s'=>'Impossible de réparer la table %1$s. Erreur : %2$s','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’image.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'Vous pouvez filtrer la liste des comptes par rôle, à l’aide des liens textuels au-dessus de la liste des comptes, afin d’afficher tous les comptes, ou seulement les administrateurs/administratrices, éditeurs/éditrices, auteurs/autrices ou contributeurs/contributrices. Par défaut, tous les comptes sont affichés. Les rôles sans compte associé ne sont pas listés.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'Dans les versions précédentes de WordPress, tous les outils d’importation étaient directement inclus. Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois.','There is an autosave of this post that is more recent than the version below. View the autosave'=>'Une sauvegarde automatique existe pour cette publication ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique.','Image could not be processed. Please go back and try again.'=>'L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer.','The active theme is broken. Reverting to the default theme.'=>'Le thème courant est endommagé. Retour au thème par défaut.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress peut automatiquement rechercher les problèmes courants de base de données et les réparer. La réparation peut prendre un certain temps, veuillez être patient.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des comptes non autorisés.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Pour inviter un compte de ce réseau sur ce site, saisissez son adresse e-mail ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Saisissez l’adresse e-mail d’un compte existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation.','Show Toolbar when viewing site'=>'Afficher la barre d’outils lorsque vous visitez le site','For more information, see the release notes.'=>'Pour plus d’informations, consultez les notes de publication.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogue.' . "\0" . 'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogues.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'La version %1$s a corrigé un problème de sécurité et %2$s bogue.' . "\0" . 'La version %1$s a corrigé un problème de sécurité et %2$s bogues.','Version %1$s addressed %2$s bug.'=>'La version %1$s a corrigé %2$s bogue.' . "\0" . 'La version %1$s a corrigé %2$s bogues.','Version %s addressed some security issues.'=>'La version %s a corrigé quelques problèmes de sécurité.','Maintenance and Security Release'=>'Mise à jour de maintenance et de sécurité','Security Release'=>'Mise à jour de sécurité','Maintenance Release'=>'Mise à jour de maintenance','What’s New'=>'Nouveautés','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens.','Welcome to WordPress %1$s. Learn more.'=>'Bienvenue sur WordPress %1$s. En savoir plus.','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'Vous pouvez ici téléverser des fichiers sans avoir besoin de créer un publication au préalable. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :','Adding Tags'=>'Ajout d’étiquettes','Adding Categories'=>'Ajout de catégories','Troubleshooting'=>'Diagnostic','How to Update'=>'Comment faire les mises à jour','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site.','Attaching Files'=>'Joindre des fichiers','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action en cochant leurs cases, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer ».','Available Actions'=>'Actions disponibles','You can customize the display of this screen’s contents in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Screen Content'=>'Contenu de l’écran','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'Si l’outil d’importation dont vous avez besoin n’est pas listé, faites une recherche dans le répertoire officiel des extensions pour voir s’il y en a un qui répond à votre besoin.','Moderating Comments'=>'Modération des commentaires','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des outils d’importation.','Adding Plugins'=>'Ajout d’extensions','Adding Themes'=>'Ajout de thèmes','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Les abonnés et abonnées peuvent lire les commentaires/commenter/recevoir les newsletters… mais ne peuvent pas créer de contenu sur le site.','Authors can publish and manage their own posts, and are able to upload files.'=>'Les auteurs ou autrices peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers.','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Voici un rapide survol des différents rôles assignables aux comptes, et des droits qui leurs sont associés :','User Roles'=>'Rôles des comptes','Remember to click the Add User button at the bottom of this screen when you are finished.'=>'N’oubliez pas de cliquer sur le bouton « Ajouter un compte », en bas de cet écran, quand vous aurez terminé.','To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.'=>'Pour ajouter un nouveau compte à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un compte » en bas de l’écran.','Custom Structures'=>'Structure personnalisée','Common Settings'=>'Réglages les plus courants','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Les permaliens sont des adresses web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'L’option « Téléversement des médias » vous permet de choisir le dossier et le chemin de stockage de vos fichiers téléversés.','Installing themes on Multisite can only be done from the Network Admin section.'=>'En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau.','If desired, WordPress will automatically alert various services of your new posts.'=>'Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications.','Post Via Email'=>'Envoi d’article par e-mail','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. D’ailleurs, il y en a tellement qu’elles ne tiennent pas toutes ici :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage des commentaires.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier le jeu de couleurs des écrans de l’administration de votre WordPress, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur l’interface publique de votre site, mais elle ne peut pas être désactivée sur les écrans d’administration.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'Cette colonne latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement.','Inactive Sidebar (not used)'=>'Colonne latérale inactive (inutilisée)','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Un clic sur Sélectionner des fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement.','Drag and drop your files into the area below. Multiple files are allowed.'=>'Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois.','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles.','Missing Widgets'=>'Widgets manquants','Removing and Reusing'=>'Retirer et réutiliser','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Téléversé sur », et vous pourrez cliquer sur le lien « Joindre » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran.','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup.','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'De nombreuses personnes utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'Dans la colonne Auteur/autrice, en plus de trouver le nom de l’auteur ou de l’autrice, son adresse e-mail et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées ».','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress.','Deleting Links'=>'Suppression de liens','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles.','Learn more about WordPress %2$s.'=>'À propos de WordPress %2$s.','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'« Modifier » vous envoie sur l’écran de modification de ce compte. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom du compte.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des comptes affichera des liens vous permettant de gérer le compte. Vous pouvez lancer les actions suivantes :','You can view all posts made by a user by clicking on the number under the Posts column.'=>'Vous pouvez voir tous les articles faits par un même compte en cliquant sur le nombre sous la colonne « Articles ».','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre de comptes à afficher par écran à l’aide de l’onglet « Options de l’écran ».','Managing Pages'=>'Gestion de pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Prévisualiser vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de la publication. L’action disponible dépend de l’état de votre publication.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement.','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Modifier vous envoie sur l’écran de modification de cette publication. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de la publication.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un identifiant ou une adresse e-mail, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur ou administratrice du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur ou de l’utilisatrice pour modifier son compte, depuis l’écran « Tous les comptes ».','Go to Dashboard → Home'=>'Aller sur l’accueil','Go to Dashboard → Updates'=>'Aller sur Tableau de bord → Mises à jour','Profile updated.'=>'Profil mis à jour.','Hi, + +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. + +Please click the following link to confirm the invite: +%4$s'=>'Bonjour, + +Vous avez été invité·e à rejoindre « %1$s » sur +%2$s en tant que %3$s. +Veuillez cliquer sur le lien suivant pour confirmer l’invitation : +%4$s','Core Developer'=>'Développeur cœur','No valid plugins were found.'=>'Aucune extension valide trouvée.','The plugin contains no files.'=>'Cette extension ne contient aucun fichier.','The package could not be installed.'=>'L’archive n’a pas pu être installée.','Attachment Post URL'=>'Adresse de la page du fichier joint','admin menuAll Links'=>'Tous les liens','%s plugins'=>'%s extensions','%s plugin'=>'%s extension','Failed to optimize the %1$s table. Error: %2$s'=>'Impossible d’optimiser la table %1$s. Erreur : %2$s','Successfully optimized the %s table.'=>'La table %s a bien été optimisée.','The %s table is already optimized.'=>'La table %s a déjà été optimisée.','Successfully repaired the %s table.'=>'La table %s a bien été réparée.','The %s table is okay.'=>'La table %s est correcte.','View version %s details.'=>'Afficher les détails de la version %s.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Mettez %2$s à jour, ou apprenez à naviguer sereinement','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, vidéo ou un autre format','Insert media from another website'=>'Insérer un média depuis un autre site','Error: Could not connect to the server. Please verify the settings are correct.'=>'Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects.','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Glisser/déposer - Pour réarranger les sections, glissez/déposez-les en cliquant sur la barre de titre de la section sélectionnée, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer la section.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord afin qu’il s’adapte à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichent au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu.','Updates %s'=>'Mises à jour %s','Installed Plugins'=>'Extensions installées','Plugins %s'=>'Extensions %s','All Users'=>'Tous les comptes','Confirm Deletion'=>'Confirmer cette action','Role'=>'Rôle','Add Existing User'=>'Ajouter un compte existant','Search Users'=>'Rechercher des comptes','User removed from this site.'=>'Compte supprimé de ce site.','Changed roles.'=>'Rôles modifiés.','Caution:'=>'Attention :','User added.'=>'Compte ajouté.','Super Admin'=>'Super-admin','Version %s'=>'Version %s','Update Available (%s)'=>'À mettre à jour (%s)' . "\0" . 'À mettre à jour (%s)','Deactivate'=>'Désactiver','Delete Site'=>'Supprimer le site','Settings saved.'=>'Réglages enregistrés.','For more information:'=>'Plus d’informations :','About Pages'=>'À propos des pages','Title and Post Editor'=>'Titre et éditeur de publications','Customizing This Display'=>'Personnaliser cet écran','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note : Aucune de ces options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande.','Post name'=>'Titre de la publication','sample permalink structuresample-post'=>'exemple-article','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'Cet importateur n’est pas installé. Veuillez installer les outils d’importation depuis le site principal.','Site Language'=>'Langue du site','Attempt to notify any blogs linked to from the post'=>'Tenter de notifier les sites liés depuis la publication','Hi, +You\'ve been invited to join \'%1$s\' at +%2$s with the role of %3$s. +If you do not want to join this site please ignore +this email. This invitation will expire in a few days. + +Please click the following link to activate your user account: +%%s'=>'Bonjour, +Vous avez reçu une invitation à rejoindre « %1$s » sur +%2$s avec le rôle « %3$s ». +Si vous ne souhaitez pas rejoindre ce site, veuillez ignorer +cet e-mail. L’invitation expirera dans quelques jours. + +Veuillez cliquer sur le lien suivant pour activer votre compte : +%%s','Post Formats'=>'Format d’article','Full Width Template'=>'Modèle pleine largeur','Featured Images'=>'Images mises en avant','Featured Image Header'=>'Image d’entête mise en avant','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur.','There are some invalid menu items. Please check or delete them.'=>'Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer.','term nameName'=>'Nom','meta nameName'=>'Nom','theme nameName'=>'Nom','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress.','If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le répertoire d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du répertoire sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML.','External Libraries'=>'Bibliothèques tierces','Network Setup'=>'Création du réseau','Available Tools'=>'Outils disponibles','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'Traductrices & traducteurs','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Tous les thèmes et extensions disponibles sur le répertoire WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y rechercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien que la licence GPL est respectée. Si cela n’est pas le cas, il vaut mieux ne pas l’utiliser.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first.'=>'WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté WordPress apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation des marques déposées par la WordPress Foundation.','All Comments'=>'Tous les commentaires','Lead Developer'=>'Développeur principal','Cofounder, Project Lead'=>'Cofondateur, chef de projet','Core Contributors to WordPress %s'=>'Contributrices & contributeurs au cœur de WordPress %s','Project Leaders'=>'Chefs de projet','Credits'=>'Crédits','removing-widgetDeactivate'=>'Désactiver','Your browser is out of date!'=>'Votre navigateur est obsolète !','You are using an insecure browser!'=>'Vous utilisez un navigateur peu sûr !','Freedoms'=>'Libertés','You can use one of these cool headers or show a random one on each page.'=>'Vous pouvez choisir parmi ces entêtes, ou en afficher un aléatoirement à chaque chargement de page.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’un de ces entêtes, ou en afficher un aléatoirement.','You can choose one of your previously uploaded headers, or show a random one.'=>'Vous pouvez choisir un entête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement.','Collapse Menu'=>'Replier le menu','Uploaded Images'=>'Images téléversées','Random: Show a different image on each page.'=>'Aléatoire : affiche une image différente sur chaque page.','You have specified this user for deletion:'=>'Vous avez choisi de supprimer ce compte :','%s Page Template'=>'Modèle de page %s','You cannot delete a plugin while it is active on the main site.'=>'Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal.','This plugin may be active on other sites in the network.'=>'Cette extension peut uniquement être activée sur l’ensemble des sites du réseau.','Default Post Format'=>'Format par défaut des articles','Any edits to files from this screen will be reflected on all sites in the network.'=>'Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau.','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'Cet écran liste tous les comptes actuels de votre site. Chaque compte a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur ou l’administratrice du site : administrateur/administratrice, éditeur/éditrice, auteur/autrice, contributeur/contributrice ou abonné/abonnée. Les comptes avec un rôle autre qu’administrateur ou administratrice verront moins d’options quand ils seront connectés, en fonction de leur rôle.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre.','The boxes on your Dashboard screen are:'=>'Les sections de l’écran du tableau de bord sont :','sample-page'=>'page-d-exemple','Sample Page'=>'Page d’exemple','Retro (Generated)'=>'Rétro (généré)','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Les privilèges de super-admin ne peuvent pas être retirés, car ce compte est celui avec l’adresse e-mail administrative du réseau.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient.','Visual Editor RTL Stylesheet'=>'Feuille de style de l’éditeur visuel (lecture de droite à gauche)','This is a file in your current parent theme.'=>'Ceci est un fichier de votre thème parent actuel.','This child theme inherits templates from a parent theme, %s.'=>'Ce thème enfant hérite de certains modèles de son thème parent, %s.','Network Enable'=>'Activer sur le réseau','Your WordPress database has been successfully updated!'=>'La base de données de WordPress a bien été mise à jour !','Update Complete'=>'Mise à jour terminée','Update WordPress Database'=>'Mettre à jour la base de données de WordPress','The database update process may take a little while, so please be patient.'=>'Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience.','Database Update Required'=>'Mise à jour de la base de données nécessaire','No Update Required'=>'Aucune mise à jour nécessaire','WordPress › Update'=>'WordPress › Mise à jour','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que cette version soit officiellement traduite dans votre langue.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension.','Update Theme'=>'Mettre à jour le thème','Update Plugin'=>'Mettre à jour l’extension','Theme updated successfully.'=>'Le thème a bien été mis à jour.','Theme update failed.'=>'La mise à jour du thème a échoué.','Plugin updated successfully.'=>'L’extension a bien été mise à jour.','Plugin update failed.'=>'La mise à jour de l’extension a échoué.','Update package not available.'=>'Aucune archive de mise à jour disponible.','Date range:'=>'Date de création :','Authors:'=>'Auteurs/autrices :','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de publications personnalisés.','All content'=>'Tout le contenu','Choose what to export'=>'Choisir les données à exporter','commentsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s — WordPress'=>'%s – WordPress','column nameIn Response To'=>'En réponse à','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera retiré du site.','Remember to click Update to save metadata entered or changed.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées.','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les sections sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton « Aide » de ces sections pour obtenir plus d’informations.','This screen allows you to edit fields for metadata in a file within the media library.'=>'Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la médiathèque.','Email or Username'=>'E-mail ou identifiant','Search installed themes'=>'Rechercher des thèmes installés','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications.','postsSticky (%s)'=>'Épinglé (%s)' . "\0" . 'Épinglés (%s)','Check again.'=>'Vérifier à nouveau.','Last checked on %1$s at %2$s.'=>'Dernière vérification le %1$s à %2$s.','Please select one or more plugins to update.'=>'Veuillez sélectionner une ou plusieurs extensions à mettre à jour.','Please select one or more themes to update.'=>'Veuillez sélectionner un ou plusieurs thèmes à mettre à jour.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience.','Apply Filters'=>'Appliquer les filtres','Editor Style'=>'Éditeur de style','Sorry, you are not allowed to edit users.'=>'Désolé, vous n’avez pas l’autorisation de modifier les comptes.','To perform the requested action, WordPress needs to access your web server.'=>'Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web.','Current Page'=>'Page actuelle','No themes match your request.'=>'Aucun thème ne correspond à votre requête.','Search Sites'=>'Rechercher des sites','Create a New User'=>'Créer un nouveau compte','You have %1$s and %2$s.'=>'Vous avez %1$s et %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s compte' . "\0" . '%s comptes','https://wordpress.org/news/feed/'=>'https://fr.wordpress.org/news/feed/','https://wordpress.org/news/'=>'https://wpfr.net/','(Signup has been disabled. Only members of this site can comment.)'=>'(L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)','There is a new version of %1$s available. View version %4$s details.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s.','Go to Themes page'=>'Aller sur la page des thèmes','Go to WordPress Updates page'=>'Aller à la page des mises à jour de WordPress','Go to Plugins page'=>'Aller sur la page des extensions','Click Save Menu to make pending menu items public.'=>'Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente.','Storage Space'=>'Espace disque','Create a New Site'=>'Créer un nouveau site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles.','Crop and Publish'=>'Recadrer et publier','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur/autrice ou la personne qui est propriétaire de la page liée.','FTP Password'=>'Mot de passe FTP','FTP Username'=>'Identifiant FTP','FTP/SSH Password'=>'Mot de passe FTP/SSH','FTP/SSH Username'=>'Identifiant FTP/SSH','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'De nombreux thèmes affichent par défaut quelques widgets dans la colonne latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de colonne latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles ».','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles.','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %1$s ou %2$s.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les balises de structure (encadrés par %s), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'Si vous voulez retirer le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les réajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes.','To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.'=>'Pour ajouter un nouveau compte à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Comptes ».','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez saisir un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc.','If you do not remember your credentials, you should contact your web host.'=>'Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur.','Please enter your FTP credentials to proceed.'=>'Veuillez saisir votre identifiant FTP pour continuer.','Please enter your FTP or SSH credentials to proceed.'=>'Veuillez saisir votre identifiant FTP ou SSH pour continuer.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média.','Administrators have access to all the administration features.'=>'Les administrateurs et les administratrices peuvent accéder à toutes les fonctionnalités de l’administration.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment.','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'Vous pouvez ajouter ici les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Slug — Le slug est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union.','You can also create posts with the Press This bookmarklet.'=>'Vous pouvez également créer des articles avec le bookmarklet Press This.','Do not forget to click on the Save Changes button when you are finished.'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Les éditeurs ou éditrices peuvent publier et gérer leurs propres publication, ainsi que ceux des autres membres, etc.','Remember to click the Update Profile button when you are finished.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé.','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'Vous pouvez également modérer le commentaire depuis cet écran, à l’aide de la section « État », d’où vous pouvez également changer l’horodatage du commentaire.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'Si besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’entrées à afficher, s’il faut afficher l’article en entier ou juste un résumé. En savoir plus sur les flux.','This screen contains the settings that affect the display of your content.'=>'Cet écran présente les réglages qui influent sur l’affichage de votre contenu.','UTC means Coordinated Universal Time.'=>'UTC signifie « Temps universel coordonné ».','The fields on this screen determine some of the basics of your site setup.'=>'Les champs de cet écran déterminent certains des réglages de base de votre site.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'Les sections pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnées par glisser/déposer. Vous pouvez également masquer les sections que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les sections en cliquant sur leur barre de titre.','Your themes are all up to date.'=>'Vos thèmes sont tous à jour.','Your plugins are all up to date.'=>'Vos extensions sont toutes à jour.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'Durant le processus de mise à jour, votre site sera mis en mode de maintenance. Dès que le processus sera achevé, ce mode sera désactivé.','An updated version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','You have the latest version of WordPress.'=>'Vous avez la dernière version de WordPress.','Function Name…'=>'Nom de la fonction…','Activate Plugin & Run Importer'=>'Activer l’extension & lancer l’outil d’importation','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacune des sections. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse).','Categories can be selectively converted to tags using the category to tag converter.'=>'Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plateformes de blogs ou gestionnaires de contenus. Choisissez la plateforme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plateforme, cliquez sur le lien « Recherche dans le répertoire officiel » et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plateforme de blog capable de lire ce format.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la colonne latérale). Pour remplir les zones à widgets de votre colonne latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site.','After typing in your edits, click Update File.'=>'Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier ».','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier les fichiers CSS et PHP qui composent votre thème.','(no parent)'=>'(pas de parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages.','All updates have been completed.'=>'Toutes les mises à jour sont terminées.','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent.','Name — The name is how it appears on your site.'=>'Nom — Le nom est utilisé un peu partout sur votre site.','When adding a new tag on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :','When adding a new category on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture.','You need JavaScript to choose a part of the image.'=>'Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image.','Crop Header Image'=>'Recadrer l’image d’entête','Image Upload Error'=>'Erreur lors du téléversement de l’image','Text Color'=>'Couleur du texte','Restore Original Header Image'=>'Rétablir l’image d’entête d’origine','This will restore the original header image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’entête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations.','Reset Image'=>'Remettre l’image d’origine','Remove Header Image'=>'Retirer l’image d’entête','This will remove the header image. You will not be able to restore any customizations.'=>'Ceci retirera l’image d’entête. Il ne vous sera pas possible de rétablir vos personnalisations.','Default Images'=>'Images par défaut','Delete this comment permanently'=>'Supprimer définitivement ce commentaire','Restore this comment from the Trash'=>'Récupérer ce commentaire depuis la corbeille','Allow comments'=>'Autoriser les commentaires.','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Commentaires — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer.','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s – Vous pouvez associer une image à votre publication, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un entête personnalisé, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir.','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des publications affichera des liens vous permettant de gérer la publication. Vous pouvez lancer les actions suivantes :','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur ou autrice d’un article, sa catégorie ou une étiquette.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre de publications à afficher par écran à l’aide de l’onglet « Options de l’écran ».','You can customize the display of this screen in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Search installed plugins'=>'Rechercher des extensions installées','Your theme supports one menu. Select which menu you would like to use.'=>'Votre thème peut utiliser un menu. Sélectionnez le menu que vous voudriez utiliser.','Your theme does not support navigation menus or widgets.'=>'Le thème actuel n’accepte pas les menus de navigation ni les widgets.','Categories and Tags Converter'=>'Convertisseur de catégories et étiquettes','Most Recent'=>'Les plus récentes','Start date:'=>'Date de début :','Theme InstallerTag'=>'Étiquette','Plugin InstallerTag'=>'Étiquette','verbClear'=>'Effacer','commentMark as spam'=>'Marquer comme indésirable','Remove Background Image'=>'Retirer l’image d’arrière-plan','Comments on “%s”'=>'Commentaires sur « %s »','Show advanced menu properties'=>'Afficher les propriétés avancées du menu','You have version %1$s installed. Update to %2$s.'=>'Vous utilisez la version %1$s. Mettez à jour vers la version %2$s.','Enabled'=>'Activé','commentNot Spam'=>'Non indésirable','This will restore the original background image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations.','WordPress Blog'=>'Blog WordPress','Remove Users from Site'=>'Supprimer des comptes de ce site','— No role for this site —'=>'— Aucun rôle sur ce site —','New WordPress Site'=>'Nouveau site WordPress','My Site'=>'Mon site','Sorry, you are not allowed to create posts or drafts on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site.','Sorry, you are not allowed to create pages on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site.','Custom site suspended message.'=>'Message personnalisé de site suspendu.','Custom site inactive message.'=>'Message personnalisé de site inactif.','Custom site deleted message.'=>'Message personnalisé de site supprimé.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :','No items.'=>'Aucune entrée.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS.','The installer attempted to contact a random hostname (%s) on your domain.'=>'L’installateur a tenté de contacter un nom d’hôte au hasard (%s) sur votre domaine.','The menu item has been successfully deleted.'=>'L’élément du menu a bien été supprimé.','Please provide a custom field name.'=>'Veuillez saisir un nom pour le champ personnalisé.','Display Options'=>'Options d’affichage','Remove Image'=>'Retirer l’image','Other users have been removed.'=>'Les autres comptes ont été supprimés.','You cannot remove the current user.'=>'Vous ne pouvez pas supprimer le compte actuellement utilisé.','There are no valid users selected for removal.'=>'Aucun compte valide n’est sélectionné pour la suppression.','Confirm Removal'=>'Confirmer cette action','You have specified these users for removal:'=>'Vous avez choisi de supprimer ces comptes :','User deletion is not allowed from this screen.'=>'La suppression d’un compte n’est pas autorisée depuis cet écran.','%s updated successfully.'=>'%s a bien été mis à jour.','No thanks, do not remind me again'=>'Non, ne pas me relancer à ce sujet','Yes, take me to my profile page'=>'Oui, je veux aller sur mon profil maintenant','Your chosen password.'=>'Le mot de passe que vous avez choisi.','Sorry, you are not allowed to restore this item from the Trash.'=>'Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille.','Sorry, you are not allowed to move this item to the Trash.'=>'Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille.','%s comment restored from the Trash.'=>'%s commentaire récupéré depuis la corbeille.' . "\0" . '%s commentaires récupérés depuis la corbeille.','%s comment moved to the Trash.'=>'%s commentaire déplacé dans la corbeille.' . "\0" . '%s commentaires déplacés dans la corbeille.','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes ».','That user is already a member of this site.'=>'Ce compte est déjà membre de ce site.','User has been added to your site.'=>'Le compte a été ajouté à votre site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'L’invitation a été envoyée à l’adresse e-mail liée au compte. La personne concernée devra cliquer sur un lien de confirmation pour être ajoutée à votre site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les extensions ».','This will remove the background image. You will not be able to restore any customizations.'=>'Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Vous n’avez accès qu’au thème déjà actif. Contactez l’administrateur ou l’administratrice de %s pour obtenir des informations sur l’accès à d’autres thèmes.','Tag Template'=>'Modèle pour étiquette','Author Template'=>'Modèle pour les auteurs/autrices','Visual Editor Stylesheet'=>'Feuille de style de l’éditeur visuel','Page saved.'=>'Page enregistrée.','More information about %s'=>'Plus d’informations à propos de %s','Grant this user super admin privileges for the Network.'=>'Donner les privilèges de super-admin à ce compte pour le réseau.','This user has super admin privileges.'=>'Ce compte possède les privilèges de super-admin.','Important:'=>'Important :','Update to version %s'=>'Mettre à jour vers la version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Erreur : le préfixe de table ne doit contenir que des chiffres, des lettres ou le caractère tiret bas.','Usernames cannot be changed.'=>'Les identifiants ne peuvent pas être modifiés.','items'=>'éléments','The menu has been successfully deleted.'=>'Le menu a bien été supprimé.','Site visibility'=>'Visibilité du site','CSS Classes (optional)'=>'Classes CSS (facultatives)','Link Target'=>'Cible du lien','Save Menu'=>'Enregistrer le menu','Updating Theme %1$s (%2$d/%3$d)'=>'Mise à jour du thème %1$s (%2$d/%3$d)','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message.','This resulted in an error message: %s'=>'Cela a abouti à ce message d’erreur : %s','You must provide a valid email address.'=>'Vous devez saisir une adresse de e-mail valide.','The network already exists.'=>'Le réseau existe déjà.','You must provide a name for your network of sites.'=>'Vous devez fournir un nom pour votre réseau de sites.','You must provide a domain name.'=>'Vous devez fournir un nom de domaine.','Notice:'=>'Avertissement :','Get Shortlink'=>'Obtenir le lien court','The update of %s failed.'=>'La mise à jour de %s a échoué.','Updating Plugin %1$s (%2$d/%3$d)'=>'Mise à jour de l’extension %1$s (%2$d/%3$d)','The password you chose during installation.'=>'Le mot de passe que vous avez choisi pendant l’installation.','User already exists. Password inherited.'=>'Le compte existe déjà et a hérité du mot de passe.','WordPress updated successfully.'=>'WordPress a bien été mis à jour.','Update WordPress'=>'Mettre à jour WordPress','Update Plugins'=>'Mettre à jour les extensions','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','WordPress Updates'=>'Mises à jour de WordPress','Edit menu item'=>'Modifier un élément du menu','Go to Dashboard'=>'Aller sur le tableau de bord','Drop-in (%s)'=>'Avancée (%s)' . "\0" . 'Avancées (%s)','Must-Use (%s)'=>'Indispensable (%s)' . "\0" . 'Indispensables (%s)','Inactive:'=>'Inactif :','Yes, delete these files and data'=>'Oui, supprimer ces fichiers et données','Are you sure you want to delete these files and data?'=>'Confirmez-vous la suppression de ces fichiers et données ?','You are about to remove the following plugin:'=>'Vous êtes sur le point de supprimer l’extension suivante :','Delete Plugin'=>'Supprimer l’extension','This timezone does not observe daylight saving time.'=>'Ce fuseau horaire n’a pas d’heure d’été.','This timezone is currently in daylight saving time.'=>'Ce fuseau horaire est actuellement à l’heure d’été.','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée.','View All'=>'Tout voir','Please enter a valid menu name.'=>'Veuillez saisir un nom de menu valide.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','Executed before Multisite is loaded.'=>'Exécuté avant que la fonctionnalité multisites ne soit chargée.','External object cache.'=>'Cache d’objet externe.','Custom maintenance message.'=>'Message personnalisé pour la maintenance.','Custom database error message.'=>'Message personnalisé pour l’erreur de base de données.','Custom database class.'=>'Classe personnalisée de connexion à la base de données.','Advanced caching plugin.'=>'Extension de cache avancée.','File is empty. Please upload something more substantial.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel.','This comment is already marked as spam.'=>'Ce commentaire est déjà marqué comme indésirable.','View Trash'=>'Voir la corbeille','This comment is already in the Trash.'=>'Ce commentaire est déjà marqué comme indésirable.','This comment is already approved.'=>'Ce commentaire est déjà approuvé.','This comment is currently in the Trash.'=>'Ce commentaire est actuellement dans la corbeille.','This comment is currently marked as spam.'=>'Ce commentaire est actuellement marqué comme indésirable.','This comment is currently approved.'=>'Ce commentaire est actuellement approuvé.','Moderate Comment'=>'Modérer le commentaire','Categories:'=>'Catégories :','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels.','Available Widgets'=>'Widgets disponibles','Error in displaying the widget settings form.'=>'Une erreur est survenue lors de l’affichage du formulaire de réglage du widget.','Error while saving.'=>'Erreur lors de la sauvegarde.','Changes saved.'=>'Modifications enregistrées.','Save Widget'=>'Enregistrer le widget','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale.','Widget %s'=>'Widget %s','Inactive Widgets'=>'Widgets désactivés','Change role to…'=>'Changer de rôle pour…','%1$s (%2$s)'=>'%1$s (%2$s)','Other users have been deleted.'=>'Les autres comptes ont été supprimés.','You cannot delete the current user.'=>'Vous ne pouvez pas supprimer le compte en cours d’utilisation.','Other user roles have been changed.'=>'Les rôles des autres comptes ont été modifiés.','The current user’s role must have user editing capabilities.'=>'Le compte actuel doit avoir un rôle lui permettant de modifier les permissions des comptes.','New user created.'=>'Le nouveau compte a été créé.','There are no valid users selected for deletion.'=>'Aucun compte valide n’est sélectionné pour la suppression.','Delete Users'=>'Supprimer des comptes','Skip Confirmation Email'=>'Passer la confirmation par e-mail','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Envoi d’un message d’invitation au nouveau compte. Un lien de confirmation devra d’abord être cliqué avant la création du compte.','[%s] Joining Confirmation'=>'[%s] Confirmation d’inscription','Update User'=>'Mettre à jour le compte','Update Profile'=>'Mettre à jour le profil','Additional Capabilities'=>'Permissions supplémentaires','Type your new password again.'=>'Veuillez saisir une deuxième fois votre mot de passe.','New Password'=>'Nouveau mot de passe','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement.','Biographical Info'=>'Renseignements biographiques','About the user'=>'À propos du compte','About Yourself'=>'À propos de vous','Contact Info'=>'Informations de contact','Display name publicly as'=>'Nom à afficher publiquement','Nickname'=>'Pseudonyme','Last Name'=>'Nom','First Name'=>'Prénom','Enable keyboard shortcuts for comment moderation.'=>'Activer les raccourcis clavier pour la modération de commentaires.','Admin Color Scheme'=>'Couleurs de l’interface d’administration','Disable the visual editor when writing'=>'Désactiver l’éditeur visuel pour écrire','Visual Editor'=>'Éditeur visuel','Personal Options'=>'Options personnelles','User updated.'=>'Compte mis à jour.','Always use https when visiting the admin'=>'Toujours utiliser HTTPS lors de l’utilisation de l’administration','Use https'=>'Utiliser https','Edit user'=>'Modifier le compte','Media file restored from the Trash.'=>'Fichier média récupéré depuis la corbeille.','Media file moved to the Trash.'=>'Fichier média déplacé dans la corbeille.','Media file permanently deleted.'=>'Fichier média définitivement supprimé.','Sorry, you are not allowed to delete these items.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ces éléments.','Your WordPress database is already up to date!'=>'Votre base de données WordPress est déjà à jour !','Installing theme from uploaded file: %s'=>'Installation du thème à partir du fichier téléversé : %s','Upload Theme'=>'Téléverser un thème','Installing Theme: %s'=>'Installation du thème : %s','Installing plugin from uploaded file: %s'=>'Installation de l’extension à partir du fichier téléversé : %s','Upload Plugin'=>'Téléverser une extension','Installing Plugin: %s'=>'Extension en cours d’installation : %s','Plugin failed to reactivate due to a fatal error.'=>'L’extension n’a pu être réactivée suite à une erreur fatale.','Plugin reactivated successfully.'=>'L’extension a bien été réactivée.','Plugin Reactivation'=>'Réactivation d’extension','Installation failed.'=>'Échec de l’installation','Compatibility with WordPress %s: Unknown'=>'Compatibilité avec WordPress %s : inconnue','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibilité avec WordPress %s : 100%% (selon l’auteur ou l’autrice)','Hide hidden updates'=>'Masquer les mises à jour cachées','Show hidden updates'=>'Afficher les mises à jour cachées','Bring back this update'=>'Réafficher cette mise à jour','Hide this update'=>'Masquer cette mise à jour','Broken Themes'=>'Thèmes endommagés','You are about to delete this theme \'%s\' + \'Cancel\' to stop, \'OK\' to delete.'=>'Vous êtes sur le point de supprimer le thème « %s ». +« Annuler » pour arrêter, « OK » pour supprimer.','Theme deleted.'=>'Thème supprimé.','Select theme to edit:'=>'Sélectionnez le thème à modifier :','Edit Themes'=>'Modifier les thèmes','Tags:'=>'Étiquettes :','Compare Revisions of “%s”'=>'Comparer les révisions de « %s »','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Sortez-l’en, puis réessayez.','Sorry, you are not allowed to edit this item.'=>'Désolé, vous n’avez pas l’autorisation de modifier cet élément.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?','No plugins found.'=>'Aucune extension trouvée.','Inactive (%s)'=>'Désactivée (%s)' . "\0" . 'Désactivées (%s)','Recently Active (%s)'=>'Récemment désactivée (%s)' . "\0" . 'Récemment désactivées (%s)','Active (%s)'=>'Activée (%s)' . "\0" . 'Activées (%s)','pluginsAll (%s)'=>'Toutes (%s)' . "\0" . 'Toutes (%s)','Clear List'=>'Vider la liste','Visit plugin site'=>'Aller sur le site de l’extension','Plugin could not be deleted due to an error: %s'=>'L’extension n’a pu être supprimée suite à une erreur fatale : %s','Plugin could not be activated because it triggered a fatal error.'=>'L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée.','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici.','No, return me to the plugin list'=>'Non, retourner à la liste des extensions','Yes, delete these files'=>'Oui, supprimer ces fichiers','Are you sure you want to delete these files?'=>'Confirmez-vous la suppression de ces fichiers ?','Plugin InstallerPopular'=>'Populaires','Plugin InstallerFeatured'=>'Mises en avant','Update File'=>'Mettre à jour le fichier','Documentation:'=>'Documentation :','Plugin Files'=>'Fichiers de l’extension','Select plugin to edit:'=>'Sélectionnez l’extension à modifier :','File edited successfully.'=>'Le fichier a bien été modifié.','Files of this type are not editable.'=>'Les fichiers de ce type ne sont pas éditables.','Edit Plugins'=>'Modifier les extensions','All Settings'=>'Toutes les options','Update Services'=>'Services de mise à jour','Default Mail Category'=>'Catégorie par défaut des articles envoyés par e-mail','Login Name'=>'Identifiant','Port'=>'Port','Mail Server'=>'Serveur de messagerie','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'Pour publier par e-mail sur WordPress, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaines aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s.','Post via email'=>'Publier par e-mail','Default Link Category'=>'Catégorie par défaut des liens','Default Post Category'=>'Catégorie par défaut des articles','WordPress should correct invalidly nested XHTML automatically'=>'WordPress doit automatiquement corriger l’imbrication XHTML erronée','Convert emoticons like :-) and :-P to graphics on display'=>'Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage','Formatting'=>'Mise en forme','Writing Settings'=>'Réglages d’écriture','Encoding for pages and feeds'=>'Codage pour les pages et les flux RSS','Full text'=>'Le texte complet','Syndication feeds show the most recent'=>'Les flux de syndication affichent les derniers','posts'=>'articles','Blog pages show at most'=>'Les pages du site doivent afficher au plus','Warning: these pages should not be the same!'=>'Avertissement : ces pages ne devraient pas être les mêmes !','Posts page: %s'=>'Page des articles : %s','A static page (select below)'=>'Une page statique (choisir ci-dessous)','Reading Settings'=>'Réglages de lecture','Privacy Settings'=>'Réglages de confidentialité','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'Si vous rendez temporairement le dossier racine accessible en écriture pour que WordPress y génère directement le fichier %s, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'Si vous rendez le fichier %s accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','Tag base'=>'Préfixe des étiquettes','Category base'=>'Préfixe des catégories','Optional'=>'Facultatif','Custom Structure'=>'Structure personnalisée','Numeric'=>'Numérique','Month and name'=>'Mois et titre','Day and name'=>'Date et titre','Permalink structure updated.'=>'Structure des permaliens enregistrée.','Permalink structure updated. Remove write access on %s file now!'=>'La structure des permaliens a été mise à jour. Retirez les droits d’accès au fichier %s dès maintenant !','Permalink Settings'=>'Réglages des permaliens','Organize my uploads into month- and year-based folders'=>'Organiser mes téléversements dans des dossiers mensuels et annuels','Configuring this is optional. By default, it should be blank.'=>'Ce réglage est facultatif. Par défaut, ce champ devrait être vide.','Full URL path to files'=>'Adresse web complète pour les fichiers','Store uploads in this folder'=>'Stocker les téléversements dans ce dossier','Uploading Files'=>'Téléversement des médias','Large size'=>'Grande taille','Max Height'=>'Hauteur maximale','Max Width'=>'Largeur maximale','Medium size'=>'Taille moyenne','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Recadrer les images pour parvenir aux dimensions exactes (par défaut, les miniatures sont proportionnelles)','Thumbnail size'=>'Taille des miniatures','Image sizes'=>'Tailles des images','Media Settings'=>'Réglages des médias','Week Starts On'=>'La semaine débute le','Custom:'=>'Personnalisé :','This timezone is currently in standard time.'=>'Ce fuseau horaire est actuellement à l’heure d’hiver.','Timezone'=>'Fuseau horaire','New User Default Role'=>'Rôle par défaut de tout nouveau compte','Anyone can register'=>'Tout le monde peut s’inscrire','Membership'=>'Inscription','General Settings'=>'Réglages généraux','MonsterID (Generated)'=>'MonsterID (généré)','Wavatar (Generated)'=>'Wavatar (généré)','Identicon (Generated)'=>'Identicon (généré)','Gravatar Logo'=>'Logo Gravatar','Blank'=>'Vide','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'Les comptes n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse e-mail.','X — Even more mature than above'=>'X — Réservés aux adultes','R — Intended for adult audiences above 17'=>'R — Réservés aux personnes de plus de 17 ans','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus','G — Suitable for all audiences'=>'G — Visibles par tous','Maximum Rating'=>'Classement maximal','Show Avatars'=>'Afficher les avatars','Avatar Display'=>'Affichage des avatars','Avatars'=>'Avatars','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son e-mail, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, nom d’auteur ou d’autrice, URL, e-mail, adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)','Comment Moderation'=>'Modération de commentaires','Comment author must have a previously approved comment'=>'L’auteur ou l’autrice d’un commentaire doit avoir déjà au moins un commentaire approuvé','Before a comment appears'=>'Avant la publication d’un commentaire','A comment is held for moderation'=>'Un commentaire est en attente de modération','Anyone posts a comment'=>'Un nouveau commentaire est publié','Email me whenever'=>'M’envoyer un message lorsque','newer'=>'récent','older'=>'ancien','Users must be registered and logged in to comment'=>'Un compte doit être inscrit et connecté pour publier des commentaires','Comment author must fill out name and email'=>'L’auteur ou l’autrice d’un commentaire doit renseigner son nom et son adresse e-mail','Other comment settings'=>'Autres réglages des commentaires','Discussion Settings'=>'Réglages des commentaires','No users found.'=>'Aucun compte trouvé.','Update Themes'=>'Mettre à jour les thèmes','Visit'=>'Visiter','Removed'=>'Retiré','Multisite support is not enabled.'=>'Le support multisites n’est pas activé.','Permalinks'=>'Permaliens','Privacy'=>'Confidentialité','Reading'=>'Lecture','Writing'=>'Écriture','settings screenGeneral'=>'Général','Profile'=>'Profil','Comments %s'=>'Commentaires %s','Library'=>'Médiathèque','Upload New Media'=>'Téléverser un média','Repair and Optimize Database'=>'Réparer et optimiser la base de données','Repair Database'=>'Réparer la base de données','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations.','WordPress › Database Repair'=>'WordPress > Réparation de la base de données','Link not found.'=>'Lien non trouvé.','No links found.'=>'Aucun lien trouvé.','Search Links'=>'Rechercher des liens','%s link deleted.'=>'%s lien supprimé.' . "\0" . '%s liens supprimés.','Success!'=>'Quel succès !','Please provide the following information. Do not worry, you can always change these settings later.'=>'Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard.','Information needed'=>'Informations nécessaires','Install WordPress'=>'Installer WordPress','Double-check your email address before continuing.'=>'Vérifiez bien cette adresse e-mail avant de continuer.','Your Email'=>'Votre e-mail','User(s) already exists.'=>'Le compte existe déjà.','WordPress › Installation'=>'WordPress » Installation','Error: Please enter an email address.'=>'Erreur : veuillez saisir une adresse e-mail.','Error: Passwords may not contain the character "\\".'=>'Erreur : le mot de passe ne doit pas contenir le caractère « \\ ».','Error: Please enter a password.'=>'Erreur : veuillez saisir un mot de passe.','Default post slughello-world'=>'bonjour-tout-le-monde','Hello world!'=>'Bonjour tout le monde !','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !','Default category slugUncategorized'=>'Non classé','Note that password carefully! It is a random password that was generated just for you.'=>'Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur ou l’administratrice du site.','An automated WordPress update has failed to complete - please attempt the update again now.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer.','Latest'=>'Dernière version','Update to %s'=>'Mettre à jour vers la version %s','You are using a development version (%1$s). Cool! Please stay updated.'=>'Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour.','Upgrading database…'=>'Mise à jour de la base de données…','The update could not be unpacked'=>'La mise à jour ne peut pas être décompressée','Verifying the unpacked files…'=>'Vérification des fichiers décompressés…','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s.','Could not fully remove the theme %s.'=>'Impossible de supprimer complètement le thème %s.','Unable to locate WordPress theme directory.'=>'Impossible de localiser le dossier des thèmes de WordPress.','This theme is already installed.'=>'Ce thème est déjà installé.','Version: %s'=>'Version : %s','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez un thème au format .zip, vous pouvez l’installer en le téléversant ici.','Find Themes'=>'Trouver des thèmes','Holiday'=>'Vacances','Subject'=>'Thème','Sticky Post'=>'Article épinglé','Theme Options'=>'Options du thème','Features'=>'Fonctionnalités','Right Sidebar'=>'Colonne latérale droite','Left Sidebar'=>'Colonne latérale gauche','Four Columns'=>'Quatre colonnes','Three Columns'=>'Trois colonnes','Two Columns'=>'Deux colonnes','One Column'=>'Une colonne','Feature Filter'=>'Filtre de fonctionnalités','Screen Options'=>'Options de l’écran','Disable accessibility mode'=>'Désactiver le mode Accessibilité','Enable accessibility mode'=>'Activer le mode « Accessibilité »','Install Themes'=>'Installer des thèmes','Upload file and import'=>'Téléverser et importer le fichier','Maximum size: %s'=>'Taille maximale : %s','Choose a file from your computer:'=>'Choisissez un fichier sur votre ordinateur :','Before you can upload your import file, you will need to fix the following error:'=>'Avant de téléverser votre fichier d’import, il vous faut corriger l’erreur suivante :','Add Custom Field'=>'Ajouter un champ personnalisé','Enter new'=>'Saisissez-en un nouveau','Key'=>'Clé','Comment by %s marked as spam.'=>'Commentaire de %s marqué comme indésirable.','Comment by %s moved to the Trash.'=>'Commentaire par %s déplacé dans la corbeille.','Submit Reply'=>'Envoyer la réponse','Reply to Comment'=>'Répondre au commentaire','Missed schedule'=>'Planification manquée','Make this post sticky'=>'Épingler ce contenu','Not Sticky'=>'Non épinglé','Allow Pings'=>'Autoriser les notifications par ping','Allow Comments'=>'Autoriser les commentaires','Do not allow'=>'Refuser','Allow'=>'Autoriser','–OR–'=>'– OU –','— No Change —'=>'– Aucun changement –','Bulk Edit'=>'Modifications groupées','Visible'=>'Visible','Relationship'=>'Relation','column nameComment'=>'Commentaire','column nameDate'=>'Date','column nameFile'=>'Fichier','column nameTitle'=>'Titre','Quick Edit'=>'Modification rapide','Quick Edit'=>'Modification rapide','Warning! Wildcard DNS may not be configured correctly!'=>'Avertissement ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !','Just another %s site'=>'Un site utilisant %s','Just another WordPress site'=>'Un site utilisant WordPress','Auto Draft'=>'Brouillon auto','Sorry, you are not allowed to edit posts as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des articles avec ce compte.','Sorry, you are not allowed to edit pages as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des pages avec ce compte.','The plugin does not have a valid header.'=>'Cette extension ne dispose pas d’un entête valide.','Plugin file does not exist.'=>'Le fichier de l’extension n’existe pas.','Invalid plugin path.'=>'Chemin d’extension non valide.','Could not fully remove the plugins %s.'=>'Impossible de supprimer complètement la ou les extensions %s.','One of the plugins is invalid.'=>'L’une des extensions n’est pas valide.','The plugin generated unexpected output.'=>'Cette extension a produit un résultat inattendu.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Avertissement : cette extension n’a pas été testée avec votre version actuelle de WordPress.','Average Rating'=>'Moyenne des notes','WordPress.org Plugin Page »'=>'Page WordPress.org de l’extension »','Compatible up to:'=>'Compatible jusqu’à la version : ','%s or higher'=>'%s ou plus','Requires WordPress Version:'=>'Nécessite WordPress en version :','Last Updated:'=>'Dernière mise à jour :','(based on %s rating)'=>'(basée sur %s vote)' . "\0" . '(basée sur %s votes)','Plugin zip file'=>'Archive Zip de l’extension','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez une extension au format .zip, vous pouvez l’installer ou la mettre à jour en la téléversant ici.','Search Plugins'=>'Rechercher des extensions','You may also browse based on the most popular tags in the Plugin Directory:'=>'Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :','Popular tags'=>'Étiquettes populaires','(Leave at 0 for no rating.)'=>'(Laissez à 0 pour ne pas donner de note.)','Rating'=>'Note','Notes'=>'Commentaires','RSS Address'=>'Adresse du flux RSS','Image Address'=>'Adresse de l’image','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en savoir plus sur ce système, consultez le site de XFN.','sweetheart'=>'être aimé','date'=>'amoureuse/amoureux','crush'=>'coup de foudre','muse'=>'muse','romantic'=>'romantique','spouse'=>'conjoint','sibling'=>'frère/sœur','parent'=>'parent','kin'=>'apparenté','child'=>'enfant','family'=>'famille','neighbor'=>'voisin','co-resident'=>'colocataire','geographical'=>'géographique','colleague'=>'confrère','co-worker'=>'collègue de travail','professional'=>'professionnel','met'=>'rencontré·e','physical'=>'physique','friend'=>'ami·e','acquaintance'=>'connaissance','contact'=>'contact','friendship'=>'amitié','another web address of mine'=>'une autre de mes adresses web','identity'=>'identité','rel:'=>'rel :','Choose the target frame for your link.'=>'Choisissez le cadre dans lequel le lien doit s’ouvrir.','_none — same window or tab.'=>'_none — même fenêtre ou onglet.','_top — current window or tab, with no frames.'=>'_top — fenêtre ou onglet en cours, sans cadre incorporé (frame).','_blank — new window or tab.'=>'_blank — nouvelle fenêtre ou onglet.','You are about to delete this link \'%s\' + \'Cancel\' to stop, \'OK\' to delete.'=>'Vous êtes sur le point de supprimer le lien « %s ». +« Annuler » pour arrêter, « OK » pour supprimer.','Keep this link private'=>'Ce lien est privé','Visit Link'=>'Visiter le lien','Main Page (no parent)'=>'Publication principale (pas de publication parente)','Show comments'=>'Afficher les commentaires','Separate multiple URLs with spaces'=>'Séparez les URL par des espaces','Send trackbacks to:'=>'Envoyer un rétrolien vers :','Already pinged:'=>'Déjà notifié(s) par ping :','New category name'=>'Nom de la nouvelle catégorie','Publish immediately'=>'Publier tout de suite','Stick this post to the front page'=>'Épingler cet article sur la page d’accueil','Status:'=>'État :','Preview Changes'=>'Prévisualiser les modifications','Link text, e.g. “Ransom Demands (PDF)”'=>'Texte du lien, par exemple « Théorie sur le chaos (PDF) »','Link to image'=>'Lier à l’image','Link Image To:'=>'Lier l’image à :','Image Caption'=>'Légende de l’image','Filter »'=>'Filtrer »','All Types'=>'Tous les types','Search Media'=>'Chercher parmi les médias','Update gallery settings'=>'Mettre à jour les réglages de galerie','Gallery columns:'=>'Colonnes de galerie :','Order:'=>'Ordre :','Random'=>'Aléatoire','Date/Time'=>'Horodatage','Menu order'=>'Ordre du menu','Order images by:'=>'Ranger les images par :','Image File'=>'Fichier image','Link thumbnails to:'=>'Lier les miniatures à :','Descending'=>'Décroissant','Ascending'=>'Croissant','Sort Order:'=>'Ordre de tri :','All Tabs:'=>'Tous les onglets :','Save all changes'=>'Enregistrer toutes les modifications','Add media files from your computer'=>'Ajouter un fichier média depuis votre ordinateur','Insert into Post'=>'Insérer dans la publication','Upload date:'=>'Date de téléversement :','Hide'=>'Masquer','Location of the uploaded file.'=>'Emplacement du fichier envoyé.','Alt text for the image, e.g. “The Mona Lisa”'=>'Texte alternatif de l’image, par ex. : « La Joconde »','File URL'=>'URL du fichier','WordPress'=>'WordPress','Uploads'=>'Téléversements','Gallery (%s)'=>'Galerie (%s)','From URL'=>'Depuis l’URL','From Computer'=>'Depuis votre ordinateur','Image saved'=>'Image enregistrée','Unable to save the image.'=>'Impossible d’enregistrer l’image.','Nothing to save, the image has not changed.'=>'Rien à enregistrer, l’image n’a pas été modifiée.','Error while saving the scaled image. Please reload the page and try again.'=>'Une erreur est survenue lors de la modification de l’échelle de l’image. Veuillez recharger la page et réessayer.','Unable to create new image.'=>'Impossible de créer une nouvelle image.','Image restored successfully.'=>'L’image a bien été rétablie.','Image metadata is inconsistent.'=>'Les métadonnées de l’image ne sont pas cohérentes.','Cannot save image metadata.'=>'Impossible d’enregistrer les métadonnées de l’image.','Cannot load image metadata.'=>'Impossible de charger les métadonnées de l’image.','All sizes except thumbnail'=>'Toutes les tailles sauf la miniature','All image sizes'=>'Toutes les tailles','Apply changes to:'=>'Appliquer les modifications à :','Current thumbnail'=>'Miniature actuelle','Thumbnail Settings'=>'Réglages de la miniature','Selection:'=>'Sélection :','Aspect ratio:'=>'Proportion de taille :','Crop Selection'=>'Sélection de recadrage','Crop Aspect Ratio'=>'Proportion de taille du recadrage','Restore image'=>'Rétablir l’image','Previously edited copies of the image will not be deleted.'=>'Les copies de l’image précédemment modifiées ne seront pas effacées.','Discard any changes and restore the original image.'=>'Abandonner toutes modifications et rétablir l’image originale.','Restore Original Image'=>'Rétablir l’image originale','Original dimensions %s'=>'Taille originale : %s','Scale Image'=>'Redimensionnement de l’image','Flip horizontal'=>'Retourner horizontalement','Flip vertical'=>'Retourner verticalement','Image data does not exist. Please re-upload the image.'=>'Il n’y a aucune donnée d’image. Veuillez retéléverser l’image.','Proceed'=>'Continuer','Connection Type'=>'Type de connexion','Private Key:'=>'Clé privée :','Public Key:'=>'Clé publique :','Authentication Keys'=>'Clés d’authentification','Hostname'=>'Nom de l’hôte :','Connection Information'=>'Informations de connexion','SSH2'=>'SSH2','FTPS (SSL)'=>'FTPS (SSL)','FTP'=>'FTP','Empty archive.'=>'Archive vide.','Could not copy file.'=>'Impossible de copier le fichier.','Could not extract file from archive.'=>'Impossible d’extraire les fichiers depuis l’archive.','Could not retrieve file from archive.'=>'Impossible de récupérer le fichier depuis l’archive.','Could not create temporary file.'=>'Impossible de créer le fichier temporaire.','Specified file failed upload test.'=>'Le test de téléversement du fichier spécifié a échoué.','Invalid form submission.'=>'Envoi non valide du formulaire.','File upload stopped by extension.'=>'Le téléversement de fichier est arrêté par l’extension.','Failed to write file to disk.'=>'Échec de l’écriture du fichier sur le disque.','Missing a temporary folder.'=>'Un dossier temporaire est manquant.','No file was uploaded.'=>'Aucun fichier n’a été envoyé.','The uploaded file was only partially uploaded.'=>'Le fichier n’a été que partiellement envoyé.','Sorry, that file cannot be edited.'=>'Désolé, ce fichier ne peut être modifié.','Popup Comments Template'=>'Modèle de la fenêtre surgissante de commentaires','Comments Template'=>'Modèle pour les commentaires','.htaccess (for rewrite rules )'=>'.htaccess (pour les règles de réécriture)','my-hacks.php (legacy hacks support)'=>'my-hacks.php (reconnaissance des hacks existants)','Application Attachment Template'=>'Modèle pour les programmes attachés','Audio Attachment Template'=>'Modèle pour les fichiers audio attachés','Video Attachment Template'=>'Modèle pour les vidéos attachées','Image Attachment Template'=>'Modèle pour les images attachées','Attachment Template'=>'Modèle pour les fichiers attachés','Theme Functions'=>'Fonctions du thème','Links Template'=>'Modèle pour les liens','404 Template'=>'Modèle pour l’erreur 404','Single Post'=>'Publication seule','Search Form'=>'Formulaire de recherche','Search Requests'=>'Recherche dans les demandes','Category Template'=>'Modèle pour les catégories','Popup Comments'=>'Fenêtre surgissante de commentaires','RTL Stylesheet'=>'Feuille de style RTL','Main Index Template'=>'Modèle pour la page d’accueil','This widget requires JavaScript.'=>'Ce widget nécessite JavaScript.','dashboard%1$s %2$s'=>'%1$s dans %2$s','[Pending]'=>'[En attente]','From %1$s on %2$s %3$s'=>'Par %1$s, sur %2$s%3$s','Move this comment to the Trash'=>'Déplacer ce commentaire dans la corbeille','verbSpam'=>'Indésirable','Mark this comment as spam'=>'Marquer ce commentaire comme indésirable','Reply to this comment'=>'Répondre à ce commentaire','Unapprove this comment'=>'Désapprouver ce commentaire','Approve this comment'=>'Approuver ce commentaire','Page'=>'Page','Configure'=>'Configurer','View all'=>'Tout voir','Other WordPress News'=>'Autres actualités de WordPress (en français)','Right Now'=>'Aujourd’hui','The uploaded file could not be moved to %s.'=>'Le fichier n’a pas pu être déplacé vers %s.','Please select a file'=>'Veuillez choisir un fichier','Return to the Theme Installer'=>'Retourner à l’installation des thèmes','Preview “%s”'=>'Prévisualiser « %s »','Successfully installed the theme %1$s %2$s.'=>'Le thème %1$s %2$s a bien été installé.','Return to the Plugin Installer'=>'Retourner à l’installation des extensions','Successfully installed the plugin %1$s %2$s.'=>'L’extension %1$s %2$s a bien été installée.','Activate Plugin'=>'Activer l’extension','Could not copy files.'=>'Impossible de copier les fichiers.','WordPress is at the latest version.'=>'Vous avez la dernière version de WordPress.','Theme installed successfully.'=>'Le thème a bien été installé.','Installing the theme…'=>'Installation du thème…','Could not remove the old theme.'=>'Impossible de supprimer l’ancien thème.','Removing the old version of the theme…'=>'Retrait de l’ancienne version du thème…','The theme is at the latest version.'=>'Vous avez la dernière version de ce thème.','Plugin installed successfully.'=>'L’extension a bien été installée.','Installing the plugin…'=>'Installation de l’extension…','Unpacking the package…'=>'Décompression de l’archive de l’extension…','Installation package not available.'=>'L’archive d’installation n’est pas disponible.','Could not remove the old plugin.'=>'Impossible de supprimer l’ancienne extension.','Removing the old version of the plugin…'=>'Retrait de l’ancienne version de l’extension…','Unpacking the update…'=>'Décompression de la mise à jour…','The plugin is at the latest version.'=>'Vous avez la dernière version de cette extension.','Disabling Maintenance mode…'=>'Désactivation du mode maintenance…','Enabling Maintenance mode…'=>'Activation du mode maintenance…','Incompatible Archive.'=>'Archive incompatible.','Could not create directory.'=>'Impossible de créer le dossier.','Destination folder already exists.'=>'Le dossier de destination existe déjà.','Installing the latest version…'=>'Installation de la dernière version…','Download failed.'=>'Le téléchargement a échoué.','Unable to locate needed folder (%s).'=>'Impossible de localiser le dossier nécessaire (%s).','Unable to locate WordPress content directory'=>'Impossible de localiser le répertoire de contenu de WordPress.','Unable to locate WordPress plugin directory.'=>'Impossible de localiser le répertoire d’extension de WordPress.','Unable to locate WordPress root directory.'=>'Impossible de localiser le répertoire racine de WordPress.','Filesystem error.'=>'Erreur du système de fichier.','Could not access filesystem'=>'Impossible d’accéder au système de fichiers.','Invalid data provided.'=>'Les données fournies ne sont pas valides.','Unable to perform command: %s'=>'Impossible de lancer la commande : %s','Public and Private keys incorrect for %s'=>'Les clés publiques et privées de %s ne sont pas correctes','Failed to connect to SSH2 Server %s'=>'Impossible de se connecter au serveur SSH2 %s','SSH2 password is required'=>'Le mot de passe SSH2 est nécessaire','SSH2 username is required'=>'L’identifiant SSH2 est nécessaire','SSH2 hostname is required'=>'Le nom de l’hôte SSH2 est nécessaire','The ssh2 PHP extension is not available'=>'L’extension ssh2 de PHP n’est pas disponible','Username/Password incorrect for %s'=>'Le couple identifiant/mot de passe est incorrect pour %s','Failed to connect to FTP Server %s'=>'Impossible de se connecter au serveur FTP %s','FTP password is required'=>'Le mot de passe FTP est nécessaire','FTP username is required'=>'L’identifiant FTP est nécessaire','FTP hostname is required'=>'Le nom de l’hôte FTP est nécessaire','The ftp PHP extension is not available'=>'L’extension ftp de PHP n’est pas disponible','Found %s'=>'Trouvé %s','Changing to %s'=>'Modifier à %s','Could not insert link into the database.'=>'Impossible d’insérer le lien dans la base de données.','Could not update link in the database.'=>'Impossible de mettre à jour le lien dans la base de données.','Movable Type and TypePad'=>'Movable Type et TypePad','LiveJournal'=>'LiveJournal','Try Again'=>'Recommencer','Blogger'=>'Blogger','No importers are available.'=>'Aucun outil d’importation n’est disponible.','Download Export File'=>'Télécharger le fichier d’exportation','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes.','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur.','Export'=>'Exporter','postsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','postsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour : quelqu’un est en train de la modifier.' . "\0" . '%s compositions n’ont pas été mises à jour : quelqu’un est en train de les modifier.','%s post updated.'=>'%s publication mise à jour.' . "\0" . '%s publications mises à jour.','Sorry, you are not allowed to delete this item.'=>'Désolé, vous n’avez pas l’autorisation de supprimer cet élément.','Item not added.'=>'Contenu non ajouté.','Item updated.'=>'Contenu mis à jour.','Item deleted.'=>'Contenu supprimé.','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif.','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit.','Example: https://wordpress.org/ — do not forget the https://'=>'Exemple : https://fr.wordpress.org/ — Et n’oubliez pas le https://','Web Address'=>'Adresse web','Example: Nifty blogging software'=>'Exemple : Logiciel de création de sites rapide, puissant et efficace','Link added.'=>'Lien ajouté.','Links / Add Link'=>'Liens / Ajouter un lien','Update Link'=>'Mettre à jour le lien','Links / Edit Link'=>'Liens / Modifier le lien','Visit site'=>'Aller sur le site','Update Comment'=>'Mettre à jour le commentaire','Last edited on %1$s at %2$s'=>'Dernière modification le %1$s à %2$s','Last edited by %1$s on %2$s at %3$s'=>'Dernière modification par %1$s, le %2$s à %3$s','Custom Fields'=>'Champs personnalisés','Send Trackbacks'=>'Envoyer des rétroliens','Page restored to revision from %s.'=>'Page rétablie à partir de la révision du %s.','Post saved.'=>'Publication enregistrée.','Post restored to revision from %s.'=>'Publication rétablie à partir de la révision du %s.','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','No comments found.'=>'Aucun commentaire trouvé.','Empty Trash'=>'Vider la corbeille','Empty Spam'=>'Supprimer tous les indésirables','Filter'=>'Filtrer','Pings'=>'Pings','Approve'=>'Approuver','Unapprove'=>'Désapprouver','Bulk actions'=>'Actions groupées','Displaying %1$s–%2$s of %3$s'=>'Affichage de %1$s à %2$s sur %3$ss','Search Comments'=>'Rechercher des commentaires','Approved'=>'Approuvé','%s comment permanently deleted.'=>'%s commentaire supprimé définitivement.' . "\0" . '%s commentaires supprimés définitivement.','%s comment restored from the spam.'=>'%s commentaire rétabli depuis les commentaires indésirables.' . "\0" . '%s commentaires rétablis depuis les commentaires indésirables.','%s comment marked as spam.'=>'%s commentaire marqué comme indésirable.' . "\0" . '%s commentaires marqués comme indésirables.','%s comment approved.'=>'%s commentaire approuvé.' . "\0" . '%s commentaires approuvés.','Attach'=>'Joindre','(Unattached)'=>'(Non attaché)','Unpublished'=>'Non publié','View “%s”'=>'Afficher « %s »','Delete Permanently'=>'Supprimer définitivement','Edit “%s”'=>'Modifier « %s »','Choose the part of the image you want to use as your header.'=>'Choisissez la partie de l’image que vous voulez utiliser comme entête.','Image Processing Error'=>'Erreur lors du traitement de l’image','Header updated. Visit your site to see how it looks.'=>'L’entête a été mis à jour. Visiter le site pour voir son nouvel aspect.','Custom Header'=>'Personnalisation de l’entête','Save Changes'=>'Enregistrer les modifications','Choose an image from your computer:'=>'Choisissez une image sur votre ordinateur :','Background updated. Visit your site to see how it looks.'=>'L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu.','Custom Background'=>'Arrière-plan personnalisé','Unknown action.'=>'Action inconnue.','Approve comment'=>'Approuver le commentaire','You are about to approve the following comment:'=>'Vous êtes sur le point d’approuver le commentaire suivant :','Permanently delete comment'=>'Supprimer définitivement le commentaire','You are about to delete the following comment:'=>'Vous êtes sur le point de supprimer le commentaire suivant :','You are about to move the following comment to the Trash:'=>'Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :','You are about to mark the following comment as spam:'=>'Vous êtes sur le point de marquer le commentaire suivant comme indésirable :','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier.','Sorry, you are not allowed to edit comments on this post.'=>'Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cette publication.','Go Back'=>'Retour','Edit Comment'=>'Modifier le commentaire','Import'=>'Importer','Cannot load %s.'=>'Impossible de charger %s.','Invalid plugin page.'=>'Page d’extension non valide.','Item not updated.'=>'L’élément n’a pas été mis à jour.','Saving is disabled: %s is currently editing this post.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette publication.','Saving is disabled: %s is currently editing this page.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette page.','Someone'=>'Quelqu’un','Draft saved at %s.'=>'Brouillon enregistré à %s.','g:i:s a'=>'G\\h i\\m s\\s','Please provide a custom field value.'=>'Veuillez saisir une valeur pour le champ personnalisé.','Sorry, you must be logged in to reply to a comment.'=>'Désolé, vous devez être connecté·e pour répondre à un commentaire.','You did not enter a category name.'=>'Vous n’avez pas saisi de nom de catégorie.','Comment %d does not exist'=>'Le commentaire %d n’existe pas.','»'=>'»','«'=>'«']]; \ No newline at end of file diff --git a/web/app/languages/admin-fr_FR.mo b/web/app/languages/admin-fr_FR.mo new file mode 100644 index 00000000..af26695d Binary files /dev/null and b/web/app/languages/admin-fr_FR.mo differ diff --git a/web/app/languages/admin-fr_FR.po b/web/app/languages/admin-fr_FR.po new file mode 100644 index 00000000..7a8c509a --- /dev/null +++ b/web/app/languages/admin-fr_FR.po @@ -0,0 +1,16419 @@ +# Translation of WordPress - 6.8.x - Development - Administration in French (France) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration package. +msgid "" +msgstr "" +"PO-Revision-Date: 2025-06-12 14:40:36+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration\n" + +#. translators: Default start of the week. 0 = Sunday, 1 = Monday. +#: wp-admin/includes/schema.php:418 +#, gp-priority: high +msgctxt "start of week" +msgid "1" +msgstr "1" + +#. translators: default GMT offset or timezone string. Must be either a valid +#. offset (-12 to 14) or a valid timezone string (America/New_York). See +#. https://www.php.net/manual/en/timezones.php for all timezone strings +#. currently supported by PHP. Important: When a previous timezone string, like +#. `Europe/Kiev`, has been superseded by an updated one, like `Europe/Kyiv`, as +#. a rule of thumb, the **old** timezone name should be used in the +#. "translation" to allow for the default timezone setting to be PHP +#. cross-version compatible, as old timezone names will be recognized in new +#. PHP versions, while new timezone names cannot be recognized in old PHP +#. versions. To verify which timezone strings are available in the _oldest_ PHP +#. version supported, you can use https://3v4l.org/6YQAt#v5.6.20 and replace +#. the "BR" (Brazil) in the code line with the country code for which you want +#. to look up the supported timezone names. +#: wp-admin/includes/schema.php:403 +#, gp-priority: high +msgctxt "default GMT offset or timezone string" +msgid "0" +msgstr "Europe/Paris" + +#: wp-admin/about.php:93 +msgid "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance." +msgstr "Le chargement spéculatif accélère la navigation en préchargeant les liens avant que les internautes ne les consultent, le hachage bcrypt renforce automatiquement la sécurité des mots de passe, et les optimisations de la base de données améliorent les performances." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/upgrade.php:68 +msgid "You cannot upgrade because WordPress %2$s requires the %3$s PHP extension." +msgstr "Vous ne pouvez pas effectuer la mise à niveau car WordPress %2$s nécessite l’extension PHP %3$s." + +#: wp-admin/themes.php:70 +msgid "An error occurred while deleting the theme." +msgstr "Une erreur s‘est produite lors de la suppression du thème." + +#: wp-admin/theme-install.php:57 wp-admin/themes.php:234 +#: wp-admin/themes.php:255 wp-admin/network/menu.php:86 +#: wp-admin/network/themes.php:366 +msgid "Add Theme" +msgstr "Ajouter un thème" + +#. translators: %s: https://wordpress.org/about/privacy +#: wp-admin/privacy.php:62 +msgid "WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy." +msgstr "WordPress.org prend en compte la confidentialité et la transparence vraiment sérieusement. Pour en apprendre plus à propos des données collectées, et comment elles sont utilisées, veuillez visiter la politique de confidentialité de WordPress.org." + +#: wp-admin/privacy.php:29 +msgid "WordPress.org takes privacy and transparency very seriously" +msgstr "WordPress.org prend la confidentialité et la transparence très au sérieux" + +#. translators: %s: File path. +#: wp-admin/plugin-editor.php:246 wp-admin/theme-editor.php:245 +msgid "File: %s" +msgstr "Fichier : %s" + +#: wp-admin/menu.php:332 wp-admin/menu.php:334 wp-admin/menu.php:342 +#: wp-admin/menu.php:344 wp-admin/user-edit.php:269 wp-admin/user-new.php:269 +#: wp-admin/user-new.php:391 wp-admin/user-new.php:515 +#: wp-admin/user-new.php:667 wp-admin/users.php:781 +#: wp-admin/network/menu.php:62 wp-admin/network/site-users.php:336 +#: wp-admin/network/site-users.php:380 wp-admin/network/user-new.php:100 +#: wp-admin/network/user-new.php:107 wp-admin/network/user-new.php:161 +#: wp-admin/network/users.php:292 +msgid "Add User" +msgstr "Ajouter un compte" + +#: wp-admin/menu.php:311 wp-admin/plugins.php:770 wp-admin/network/menu.php:111 +msgid "Add Plugin" +msgstr "Ajouter une extension" + +#: wp-admin/menu.php:217 +msgctxt "design menu item" +msgid "Design" +msgstr "Conception" + +#: wp-admin/menu-header.php:285 +msgid "Collapse Main Menu" +msgstr "Replier le menu principal" + +#: wp-admin/media-upload.php:39 +msgid "Invalid item ID. You can view all media items in the Media Library." +msgstr "ID d’élément invalide. Vous pouvez voir tous les éléments media dans la Médiathèque." + +#: wp-admin/media-upload.php:38 +msgid "An error occurred during the upload process." +msgstr "Une erreur s’est produite lors du processus de téléversement." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/install.php:312 +msgid "You cannot install because WordPress %2$s requires the %3$s PHP extension." +msgstr "Vous ne pouvez pas installer car WordPress %2$s nécessite l’extension PHP %3$s." + +#: wp-admin/includes/template.php:738 +msgid "Add Custom Field:" +msgstr "Ajouter un champ personnalisé :" + +#: wp-admin/includes/revision.php:469 +msgid "An error occurred while loading the comparison. Please refresh the page and try again." +msgstr "Une erreur s’est produite lors du chargement de la comparaison. Veuillez actualiser la page et réessayer." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 +msgid "+ Add Category" +msgstr "+ Ajouter une Catégorie" + +#: wp-admin/includes/class-wp-debug-data.php:1715 +msgid "Does not exist" +msgstr "N’existe pas" + +#: wp-admin/includes/class-wp-debug-data.php:530 +msgid "robots.txt" +msgstr "robots.txt" + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:525 +msgid "WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support" +msgstr "WordPress ne peut pas traiter dynamiquement un fichier %s en raison de l‘absence de la prise en charge des règles de réécriture." + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:519 +msgid "Your site is using the dynamic %s file which is generated by WordPress." +msgstr "Votre site utilise le fichier %s dynamique qui est généré par WordPress." + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:513 +msgid "There is a static %s file in your installation folder. WordPress cannot dynamically serve one." +msgstr "Il y a un fichier %s statique dans votre dossier d’installation. WordPress ne peut pas l’exploiter dynamiquement." + +#: wp-admin/includes/class-custom-image-header.php:834 +#: wp-admin/includes/class-custom-image-header.php:1022 +msgid "The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again." +msgstr "Le thème actif ne prend pas en charge le téléversement d’une image d’entête personnalisée. Veuillez vous assurer que le thème prenne en charge les entêtes personnalisés et réessayer." + +#: wp-admin/includes/class-custom-image-header.php:833 +#: wp-admin/includes/class-custom-image-header.php:1021 +#: wp-admin/includes/class-custom-image-header.php:1032 +msgid "An error occurred while processing your header image." +msgstr "Une erreur s’est produite lors du traitement de l’image d’entête." + +#: wp-admin/customize.php:80 +msgid "Please try again or start a new changeset. This changeset cannot be further modified." +msgstr "Veuillez réessayer ou commencer un nouveau jeu de modifications. Ce jeu de modifications ne peut pas être modifié davantage." + +#: wp-admin/customize.php:79 +msgid "An error occurred while saving your changeset." +msgstr "Une erreur s’est produite lors de l’enregistrement de votre jeu de modifications." + +#: wp-admin/credits.php:150 +msgid "Triage Lead" +msgstr "Responsable du triage" + +#: wp-admin/credits.php:149 +msgid "Tech Lead" +msgstr "Responsable technique" + +#: wp-admin/credits.php:148 +msgid "Default Theme Development Lead" +msgstr "Responsable du développement du thème par défaut" + +#: wp-admin/credits.php:147 +msgid "Default Theme Design Lead" +msgstr "Responsable de la conception du thème natif" + +#: wp-admin/credits.php:146 +msgid "Performance Lead" +msgstr "Responsable des performances" + +#: wp-admin/credits.php:145 +msgid "Design Lead" +msgstr "Responsable du design" + +#: wp-admin/credits.php:144 +msgid "Test Lead" +msgstr "Responsable des tests" + +#: wp-admin/credits.php:143 +msgid "Documentation Lead" +msgstr "Responsable de la documentation" + +#: wp-admin/credits.php:142 +msgid "Editor Triage Lead" +msgstr "Responsable du triage de l’éditeur" + +#: wp-admin/credits.php:141 +msgid "Editor Tech Lead" +msgstr "Responsable technique côté éditeur" + +#: wp-admin/credits.php:140 +msgid "Core Triage Lead" +msgstr "Responsable du triage du cœur" + +#: wp-admin/credits.php:139 +msgid "Core Tech Lead" +msgstr "Responsable technique" + +#: wp-admin/credits.php:137 +msgid "Minor Release Lead" +msgstr "Responsable de la version mineure" + +#: wp-admin/credits.php:136 +msgid "Release Coordination" +msgstr "Coordination de la version" + +#: wp-admin/about.php:194 +msgid "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal." +msgstr "WordPress 6.8 propose de nombreuses corrections et améliorations de performances pour accélérer l’ensemble de votre site, de l’administration aux temps de chargement ressentis par les personnes qui visitent votre site. Au-delà du chargement spéculatif désormais intégré nativement, WordPress 6.8 accorde une attention particulière à l’éditeur de blocs, à l’enregistrement des types de blocs et à la mise en cache des requêtes. N’attendez jamais plus de 50 millisecondes entre chaque interaction. Dans WordPress 6.8, l’API de gestion de l’interactivité constitue un premier pas vers cet objectif." + +#: wp-admin/about.php:181 +msgid "Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic." +msgstr "Le travail se poursuit sur l‘optimisation de la génération des clés de cache dans la classe WP_Query. L‘objectif est, comme toujours, d‘améliorer les performances de votre site, dans ce cas en réduisant davantage la charge de votre base de données. Cela est particulièrement utile si vous avez beaucoup de trafic." + +#: wp-admin/about.php:180 +msgid "Take a load off the database" +msgstr "Allégement de la base de données" + +#: wp-admin/about.php:172 +msgid "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience." +msgstr "Plus de 100 correctifs et améliorations en matière d’accessibilité touchent un large champ de l’expérience WordPress. Cette version inclut des correctifs pour chaque thème natif, des améliorations de la gestion des menus de navigation, de l’outil de personnalisation, et un étiquetage simplifié. L’éditeur de blocs bénéficie de plus de 70 améliorations concernant les blocs, les vues de données, et l’expérience globale des utilisateurs et utilisatrices." + +#: wp-admin/about.php:158 +msgid "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically." +msgstr "Les mots de passe sont désormais plus difficiles à déchiffrer grâce au hachage bcrypt, qui nécessite beaucoup plus de puissance de calcul pour être cassé. Cela renforce la sécurité globale, tout comme d‘autres améliorations de chiffrement dans WordPress. Vous n’avez rien à faire : tout se met à jour automatiquement." + +#: wp-admin/about.php:157 +msgid "Stronger password security with bcrypt" +msgstr "Sécurité renforcée des mots de passe avec bcrypt" + +#: wp-admin/about.php:141 +msgid "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact." +msgstr "Dans WordPress 6.8, les pages se chargent plus rapidement que jamais. Lorsque vous ou tout internaute survolez ou cliquez sur un lien, WordPress peut précharger la page suivante pour une expérience plus fluide et quasi instantanée. Le système équilibre vitesse et efficacité, et vous pouvez contrôler son fonctionnement avec une extension ou votre propre code. Cette fonctionnalité fonctionne uniquement dans les navigateurs modernes ; les anciens l’ignoreront simplement sans aucun impact." + +#: wp-admin/about.php:140 +msgid "Near-instant page loads, thanks to Speculative Loading" +msgstr "Chargement quasi instantané des pages, grâce au chargement spéculatif" + +#: wp-admin/about.php:134 +msgid "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build." +msgstr "Visualisez plus facilement vos options dans les vues de données et excluez les publications épinglées de la boucle de requête. De plus, l’éditeur propose de nombreuses améliorations qui simplifient la création de contenu." + +#: wp-admin/about.php:113 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation." + +#. translators: %s is a direct link to the Style Book. +#: wp-admin/about.php:109 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation." + +#: wp-admin/about.php:101 +msgid "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place." +msgstr "Le guide de styles présente une nouvelle mise en page structurée et des libellés plus clairs, pour faciliter encore plus la modification des couleurs, de la typographie et de presque tous les styles de votre site, en un seul endroit." + +#: wp-admin/about.php:99 +msgid "The Style Book gets a cleaner look—and a few new tricks" +msgstr "Le guide de style fait peau neuve et s’enrichit de quelques nouvelles fonctionnalités" + +#: wp-admin/about.php:92 +msgid "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles." +msgstr "Le guide de styles a maintenant une mise en page structurée et fonctionne désormais avec les thèmes classiques, ce qui vous apporte plus de contrôle sur les styles globaux de votre site." + +#: wp-admin/about.php:91 +msgid "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage." +msgstr "WordPress 6.8 améliore et affine les outils que vous utilisez tous les jours, rendant votre site plus rapide, plus sûr et plus facile à gérer." + +#: wp-admin/about.php:90 +msgid "A release polished to a high sheen." +msgstr "Une version peaufinée à la perfection" + +#: wp-admin/plugins.php:613 +msgid "If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated." +msgstr "S‘il manque des dépendances à une extension dépendante, son bouton d‘activation sera désactivé jusqu‘à ce que les dépendances nécessaires soient activées." + +#: wp-admin/plugins.php:612 +msgid "If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row." +msgstr "Si une extension requise est supprimée, une notification sera affichée sur l’écran d’administration des extensions pour indiquer que des dépendances manquantes doivent être installées ou activées. De plus, chaque extension dont les dépendances ne sont pas présentes auront une notification d’erreur dans la ligne correspondant à l’extension." + +#: wp-admin/plugins.php:611 +msgid "Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy." +msgstr "Les dépendances d’extensions visent à rendre cohérent et à simplifier le processus d’installation et d’activation des modules (extensions dépendantes d’une autre) et des extensions requises pour faire fonctionner le module (dépendances)." + +#: wp-admin/plugins.php:609 +msgid "Dependencies" +msgstr "Dépendances" + +#: wp-admin/options-discussion.php:155 +msgid "Comments to display at the top of each page" +msgstr "Commentaires à afficher en haut de chaque page" + +#: wp-admin/options-discussion.php:148 +msgid "Comments page to display by default" +msgstr "Page des commentaires à afficher par défaut" + +#: wp-admin/options-discussion.php:144 +msgid "Top level comments per page" +msgstr "Commentaires de premier niveau par page" + +#: wp-admin/options-discussion.php:141 +msgid "Break comments into pages" +msgstr "Diviser les commentaires en pages" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:133 wp-admin/options-discussion.php:137 +msgid "Comment Pagination" +msgstr "Pagination des commentaires" + +#: wp-admin/options-discussion.php:125 +msgid "Number of levels for threaded (nested) comments" +msgstr "Nombre de niveaux pour les commentaires en fil (imbriqués)" + +#: wp-admin/options-discussion.php:101 +msgid "Enable threaded (nested) comments" +msgstr "Activer les commentaires en fil (imbriqués)" + +#: wp-admin/options-discussion.php:92 +msgid "Close comments when post is how many days old" +msgstr "Fermez les commentaires lorsque la publication est datée de plusieurs jours" + +#: wp-admin/options-discussion.php:89 +msgid "Automatically close comments on old posts" +msgstr "Fermez automatiquement les commentaires sur les publications anciennes." + +#: wp-admin/nav-menus.php:601 +msgid "Menu order updated" +msgstr "Mise à jour de l’ordre du menu" + +#: wp-admin/nav-menus.php:600 +msgid "Menu parent updated" +msgstr "Mise à jour du menu parent" + +#: wp-admin/includes/revision.php:383 +msgid "Change revision by using the left and right arrow keys" +msgstr "Changez de révision en utilisant les flèches gauche et droite" + +#: wp-admin/includes/revision.php:382 +msgid "Select a revision" +msgstr "Sélectionnez une révision" + +#: wp-admin/includes/class-wp-upgrader.php:207 +msgid "A directory could not be read." +msgstr "Un répertoire n’a pu être lu." + +#: wp-admin/includes/class-wp-debug-data.php:1611 +msgid "Database Extension" +msgstr "Extension de la base de données" + +#: wp-admin/includes/class-wp-debug-data.php:1467 +#: wp-admin/includes/class-wp-debug-data.php:1476 +msgid "Empty value" +msgstr "Valeur vide" + +#: wp-admin/includes/class-wp-debug-data.php:639 +msgid "Max simultaneous file uploads" +msgstr "Nombre maximal de fichiers téléversés en simultané." + +#: wp-admin/includes/class-walker-nav-menu-edit.php:261 +msgid "Menu Order" +msgstr "Ordre du menu" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:254 +msgid "Menu Parent" +msgstr "Menu parent" + +#: wp-admin/edit-form-advanced.php:545 +msgid "Skip to Editor" +msgstr "Aller à l’éditeur" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:289 +msgid "WordPress %s Field Guide" +msgstr "Guide technique de WordPress %s" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:262 +msgid "WordPress %s Release Notes" +msgstr "Notes de version de WordPress %s" + +#: wp-admin/includes/class-wp-debug-data.php:1926 +msgid "The directory does not exist." +msgstr "Le répertoire n’existe pas." + +#: wp-admin/update-core.php:1048 +msgid "Common Errors" +msgstr "Erreurs fréquentes (en anglais)" + +#: wp-admin/theme-editor.php:54 +msgid "Documentation on Editing Files" +msgstr "Documentation sur la modification de fichiers (en anglais)" + +#: wp-admin/plugin-editor.php:154 +msgid "Documentation on Editing Plugins" +msgstr "Documentation sur la modification d’extensions (en anglais)" + +#: wp-admin/options.php:330 +msgid "https://developer.wordpress.org/plugins/settings/settings-api/" +msgstr "https://developer.wordpress.org/plugins/settings/settings-api/" + +#. translators: 1: The option/setting, 2: Documentation URL. +#: wp-admin/options.php:328 +msgid "The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API." +msgstr "Le réglage %1$s n’est pas enregistré. Les réglages non-enregistrés sont obsolètes. Voir la documentation sur les réglages API." + +#: wp-admin/options-writing.php:228 wp-admin/options-writing.php:242 +msgid "https://developer.wordpress.org/advanced-administration/wordpress/update-services/" +msgstr "https://developer.wordpress.org/advanced-administration/wordpress/update-services/" + +#: wp-admin/options-reading.php:35 wp-admin/options-reading.php:200 +msgid "https://developer.wordpress.org/advanced-administration/wordpress/feeds/" +msgstr "https://developer.wordpress.org/advanced-administration/wordpress/feeds/" + +#: wp-admin/options-permalink.php:64 +msgid "Documentation on Nginx configuration." +msgstr "Documentation sur les réglages de Nginx (en anglais)." + +#: wp-admin/options-general.php:35 wp-admin/options-general.php:254 +msgid "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" +msgstr "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" + +#: wp-admin/includes/ms.php:1172 wp-admin/network/site-new.php:32 +#: wp-admin/network/sites.php:44 +msgid "Documentation on Site Management" +msgstr "Documentation sur la gestion de site (en anglais)" + +#. translators: xfn (friendship relation): http://gmpg.org/xfn +#. translators: xfn (geographical relation): http://gmpg.org/xfn +#. translators: xfn (family relation): http://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1357 wp-admin/includes/meta-boxes.php:1408 +#: wp-admin/includes/meta-boxes.php:1437 +msgctxt "Type of relation" +msgid "none" +msgstr "aucune" + +#: wp-admin/includes/file.php:1158 +msgid "No URL Provided." +msgstr "L’URL n’est pas renseignée." + +#: wp-admin/includes/file.php:329 wp-admin/options-permalink.php:468 +#: wp-admin/options-permalink.php:500 wp-admin/options-permalink.php:536 +#: wp-admin/plugin-editor.php:336 wp-admin/setup-config.php:487 +#: wp-admin/theme-editor.php:367 +msgid "https://developer.wordpress.org/advanced-administration/server/file-permissions/" +msgstr "https://developer.wordpress.org/advanced-administration/server/file-permissions/" + +#: wp-admin/includes/class-wp-upgrader.php:199 +msgid "Package not available." +msgstr "Paquet indisponible." + +#: wp-admin/includes/class-wp-site-health.php:2775 +msgid "Autoloaded options" +msgstr "Options chargées automatiquement" + +#: wp-admin/includes/class-wp-site-health.php:2676 +msgid "More info about optimizing autoloaded options" +msgstr "Plus d’informations sur l’optimisation des options automatiquement" + +#: wp-admin/includes/class-wp-site-health.php:2675 +msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options" +msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options" + +#. translators: 1: Number of autoloaded options, 2: Autoloaded options size. +#: wp-admin/includes/class-wp-site-health.php:2658 +msgid "Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site." +msgstr "Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui peut ralentir votre site. Vous pouvez revoir les options chargées automatiquement dans votre base de données et retirer toutes options qui ne seraient plus nécessaires à votre site." + +#: wp-admin/includes/class-wp-site-health.php:2655 +msgid "Autoloaded options could affect performance" +msgstr "Les options chargées automatiquement peuvent affecter les performances" + +#. translators: 1: Number of autoloaded options, 2: Autoloaded options size. +#: wp-admin/includes/class-wp-site-health.php:2633 +msgid "Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable." +msgstr "Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui est acceptable." + +#: wp-admin/includes/class-wp-site-health.php:2625 +msgid "Autoloaded options are acceptable" +msgstr "Les options chargées automatiquement sont acceptables" + +#: wp-admin/includes/class-wp-site-health.php:2622 +msgid "Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site." +msgstr "Les options chargées automatiquement sont des réglages de configuration des extensions et thèmes qui sont chargés automatiquement avec chaque chargement de page dans WordPress. Trop d’options chargées automatiquement peut ralentir votre site." + +#. translators: Localized Support reference. +#: wp-admin/includes/class-wp-site-health.php:2510 +msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache" +msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache" + +#: wp-admin/includes/class-wp-site-health.php:2401 +msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" +msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" + +#: wp-admin/includes/class-wp-debug-data.php:860 +msgid "Fonts directory size" +msgstr "Taille du répertoire de polices" + +#: wp-admin/includes/class-wp-debug-data.php:856 +msgid "Fonts directory location" +msgstr "Emplacement du répertoire de polices" + +#: wp-admin/includes/class-wp-debug-data.php:1712 +msgid "The fonts directory" +msgstr "Le répertoire de polices" + +#: wp-admin/includes/class-wp-automatic-updater.php:1350 +msgid "The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored." +msgstr "Les extensions suivantes n’ont pas pu être mises à jour. S’il y a eu une erreur fatale lors de la mise à jour, la version précédente a été restaurée." + +#. translators: %s: The plugin's slug. +#: wp-admin/includes/class-wp-automatic-updater.php:593 +msgid "The update for '%s' contained a fatal error. The previously installed version has been restored." +msgstr "La mise à jour de « %s » contenait une erreur fatale. La version précédente a été restaurée." + +#. translators: %s: The plugin's slug. +#: wp-admin/includes/class-wp-automatic-updater.php:582 +msgid "The update for '%s' contained a fatal error. The previously installed version could not be restored." +msgstr "La mise à jour de « %s » contenait une erreur fatale. La version précédente n’a pas pu être restaurée." + +#: wp-admin/includes/class-plugin-installer-skin.php:302 +#: wp-admin/includes/class-plugin-installer-skin.php:308 +#: wp-admin/includes/class-theme-installer-skin.php:337 +#: wp-admin/includes/class-theme-installer-skin.php:343 +#: wp-admin/update-core.php:261 +msgid "https://developer.wordpress.org/advanced-administration/security/backup/" +msgstr "https://developer.wordpress.org/advanced-administration/security/backup/" + +#: wp-admin/export-personal-data.php:59 +msgid "If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin." +msgstr "Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil d’export des données personnelles sur votre extension (en anglais)." + +#: wp-admin/erase-personal-data.php:59 +msgid "If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin." +msgstr "Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil de suppression des données personnelles sur votre extension (en anglais)." + +#: wp-admin/about.php:215 +msgid "See everything new" +msgstr "Découvrez toutes les nouveautés" + +#: wp-admin/about.php:215 +msgid "https://wordpress.org/download/releases/6-8/" +msgstr "https://wordpress.org/download/releases/6-8/" + +#. translators: %s: Version number. +#: wp-admin/about.php:207 +msgid "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website." +msgstr "Pour une vision complète de toutes les nouvelles fonctionnalités et améliorations de WordPress %s, veuillez consulter le site de démonstration des fonctionnalités (en anglais)." + +#: wp-admin/about.php:201 +msgid "And much more" +msgstr "Et bien plus encore" + +#: wp-admin/menu.php:219 +msgctxt "patterns menu item" +msgid "Patterns" +msgstr "Compositions" + +#: wp-admin/options-general.php:191 wp-admin/options-general.php:197 +msgid "Change Site Icon" +msgstr "Modifier l’icône du site" + +#. translators: 1: Plugin name, 2: Number of plugins, 3: A comma-separated list +#. of plugin names. +#: wp-admin/includes/plugin.php:1221 +msgid "Error: %1$s requires %2$d plugin to be installed and activated: %3$s." +msgid_plural "Error: %1$s requires %2$d plugins to be installed and activated: %3$s." +msgstr[0] "Erreur : %1$s nécessite l‘installation et l‘activation d‘%2$d extension : %3$s." +msgstr[1] "Erreur : %1$s nécessite l‘installation et l‘activation de %2$d extensions : %3$s." + +#: wp-admin/includes/plugin-install.php:975 +#: wp-admin/includes/plugin-install.php:980 +msgctxt "plugin" +msgid "Update Now" +msgstr "Mettre à jour maintenant" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:339 +#: wp-admin/includes/theme-install.php:207 +msgctxt "theme" +msgid "Install Now" +msgstr "Installer maintenant" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1589 +msgid "This plugin cannot be activated because required plugins are missing or inactive." +msgstr "Cette extension ne peut pas être activée car des extensions nécessaires sont manquantes ou inactives." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1587 +msgid "This plugin is active but may not function correctly because required plugins are missing or inactive." +msgstr "Cette extension est active mais pourrait ne pas fonctionner correctement car des extensions nécessaires sont manquantes ou inactives." + +#. translators: %s: List of dependency names. +#: wp-admin/includes/class-wp-plugins-list-table.php:1579 +msgid "Requires: %s" +msgstr "Nécessite : %s" + +#. translators: %s: List of dependencies. +#: wp-admin/includes/class-wp-plugins-list-table.php:1545 +msgid "Required by: %s" +msgstr "Nécessaire pour : %s" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1540 +msgid "Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted." +msgstr "Note : cette extension ne peut pas être désactivée ou supprimée tant que les extensions qui la nécessitent ne sont pas désactivés ou supprimés." + +#: wp-admin/includes/class-wp-plugins-list-table.php:902 +msgid "You cannot deactivate this plugin as other plugins depend on it." +msgstr "Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent." + +#: wp-admin/includes/class-wp-plugins-list-table.php:868 +#: wp-admin/includes/class-wp-plugins-list-table.php:974 +msgid "You cannot delete this plugin as other plugins require it." +msgstr "Vous ne pouvez pas supprimer cette extension car d’autres extensions la nécessitent." + +#: wp-admin/includes/class-wp-plugins-list-table.php:838 +#: wp-admin/includes/class-wp-plugins-list-table.php:944 +msgid "You cannot activate this plugin as it has unmet requirements." +msgstr "Vous ne pouvez pas activer cette extension car elle a des prérequis non satisfaits." + +#: wp-admin/includes/class-wp-plugins-list-table.php:812 +msgid "You cannot deactivate this plugin as other plugins require it." +msgstr "Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent." + +#: wp-admin/includes/class-wp-plugins-list-table.php:615 +msgctxt "plugin" +msgid "Deactivate" +msgstr "Désactiver" + +#: wp-admin/includes/class-wp-plugins-list-table.php:615 +#: wp-admin/includes/class-wp-plugins-list-table.php:828 +msgctxt "plugin" +msgid "Network Deactivate" +msgstr "Désactiver sur le réseau" + +#: wp-admin/includes/class-wp-plugins-list-table.php:611 +#: wp-admin/includes/class-wp-plugins-list-table.php:942 +#: wp-admin/includes/class-wp-plugins-list-table.php:959 +#: wp-admin/includes/plugin-install.php:881 +#: wp-admin/includes/plugin-install.php:995 +#: wp-admin/includes/plugin-install.php:1026 wp-admin/js/updates.js:980 +#: wp-admin/js/updates.js:1025 +msgctxt "plugin" +msgid "Activate" +msgstr "Activer" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:794 +msgid "Additional plugins are required" +msgstr "Des extensions supplémentaires sont nécessaires." + +#: wp-admin/includes/class-wp-debug-data.php:240 +msgid "Site ID" +msgstr "Identifiant du site" + +#. translators: 1: Current PHP version, 2: PHP version required by the new +#. theme version. +#: wp-admin/includes/class-theme-upgrader.php:465 +msgid "The PHP version on your server is %1$s, however the new theme version requires %2$s." +msgstr "La version PHP de votre serveur est %1$s, alors que la nouvelle version du thème nécessite %2$s." + +#. translators: 1: Current WordPress version, 2: WordPress version required by +#. the new theme version. +#: wp-admin/includes/class-theme-upgrader.php:451 +msgid "Your WordPress version is %1$s, however the new theme version requires %2$s." +msgstr "Votre version de WordPress est %1$s, alors que la nouvelle version du thème nécessite %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:130 +#: wp-admin/includes/class-wp-plugins-list-table.php:611 +#: wp-admin/includes/class-wp-plugins-list-table.php:836 +#: wp-admin/includes/class-wp-plugins-list-table.php:853 +#: wp-admin/includes/plugin-install.php:1008 +#: wp-admin/includes/plugin-install.php:1026 wp-admin/js/updates.js:969 +msgctxt "plugin" +msgid "Network Activate" +msgstr "Activer sur le réseau" + +#. translators: %s: Plugin name. +#: wp-admin/includes/ajax-actions.php:4584 +msgid "%s is already active." +msgstr "%s est déjà active." + +#: wp-admin/import.php:166 wp-admin/includes/plugin-install.php:355 +#: wp-admin/includes/plugin-install.php:953 +#: wp-admin/includes/plugin-install.php:958 wp-admin/press-this.php:63 +#: wp-admin/js/updates.js:1312 wp-admin/js/updates.js:2637 +#: wp-admin/js/updates.js:2693 +msgctxt "plugin" +msgid "Install Now" +msgstr "Installer maintenant" + +#: wp-admin/credits.php:32 +msgid "Created by a worldwide team of passionate individuals" +msgstr "Créé par une équipe de personnes passionnées, réparties sur toute la planète." + +#: wp-admin/about.php:171 +msgid "Accessibility improvements" +msgstr "Amélioration de l’accessibilité" + +#: wp-admin/about.php:193 +msgid "Performance updates" +msgstr "Amélioration des performances" + +#: wp-admin/update.php:158 wp-admin/update.php:310 +msgid "Only .zip archives may be uploaded." +msgstr "Uniquement les archives .zip peuvent être téléversées." + +#. translators: %s: Link to activate the Classic Widgets plugin. +#: wp-admin/widgets-form-blocks.php:105 +msgid "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin." +msgstr "Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets." + +#. translators: %s: Link to install the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:405 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." +msgstr "L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor." + +#. translators: %s: Link to activate the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:396 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." +msgstr "L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor." + +#: wp-admin/my-sites.php:81 +msgid "Add New Site" +msgstr "Ajouter un site" + +#: wp-admin/includes/image-edit.php:80 +msgid "Rotate 180°" +msgstr "Rotation de 180°" + +#: wp-admin/includes/image-edit.php:79 +msgid "Rotate 90° right" +msgstr "Rotation de 90° à droite" + +#: wp-admin/includes/image-edit.php:78 +msgid "Rotate 90° left" +msgstr "Rotation de 90° à gauche" + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:392 +msgid "%s pattern moved to the Trash." +msgid_plural "%s patterns moved to the Trash." +msgstr[0] "La composition %s a été mise à la corbeille." +msgstr[1] "Les compositions %s ont été mises à la corbeille." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:390 +msgid "%s pattern permanently deleted." +msgid_plural "%s patterns permanently deleted." +msgstr[0] "Composition %s définitivement supprimée." +msgstr[1] "Compositions %s définitivement supprimées." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:385 +msgid "%s pattern updated." +msgid_plural "%s patterns updated." +msgstr[0] "Composition %s mise à jour." +msgstr[1] "Compositions %s mises à jour." + +#. translators: %s: The dismiss dashicon used for buttons that dismiss or +#. remove. +#: wp-admin/edit.php:293 +msgid "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears." +msgstr "Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:272 +msgid "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." +msgstr "Lisez les notes de version de WordPress %s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:299 +msgid "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." +msgstr "Explorez le guide des changements techniques de WordPress %s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous permettent de construire votre site avec WordPress." + +#: wp-admin/includes/user.php:721 wp-admin/includes/user.php:744 +msgid "Invalid URL format." +msgstr "Format d’URL invalide." + +#. translators: 1: Current PHP version, 2: PHP version required by the new +#. plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:367 +msgid "The PHP version on your server is %1$s, however the new plugin version requires %2$s." +msgstr "La version de PHP sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s." + +#. translators: 1: Current WordPress version, 2: WordPress version required by +#. the new plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:353 +msgid "Your WordPress version is %1$s, however the new plugin version requires %2$s." +msgstr "La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/about.php:79 +msgid "https://wordpress.org/support/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + +#: wp-admin/contribute.php:103 wp-admin/credits.php:57 wp-admin/credits.php:65 +msgid "https://make.wordpress.org/contribute/" +msgstr "https://make.wordpress.org/contribute/" + +#: wp-admin/update-core.php:1068 +msgid "Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above." +msgstr "Les mises à jour peuvent prendre plusieurs minutes à se terminer. S’il n’y a aucun retour après 5 minutes, ou s’il y a des erreurs, veuillez vous référer à la section Aide ci-dessus." + +#: wp-admin/update-core.php:1043 +msgid "Restore Plugin or Theme" +msgstr "Restaurer l’extension ou le thème" + +#: wp-admin/update-core.php:1038 +msgid "On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title." +msgstr "Sur les systèmes avec moins de ressources, ça peut mener à des dépassement de délais serveur ou à atteindre les limites des ressources. Si vous rencontrez un problème lors du processus de mise à jour, veuillez créer un fil de discussion dans le forum d’aide et indiquer Restauration dans le titre du fil." + +#: wp-admin/update-core.php:1036 +msgid "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." +msgstr "Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus." + +#: wp-admin/site-editor.php:327 +msgid "The site editor requires JavaScript. Please enable JavaScript in your browser settings." +msgstr "L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur." + +#: wp-admin/options-permalink.php:227 +msgid "https://wordpress.org/documentation/article/customize-permalinks/" +msgstr "https://fr.wordpress.org/support/article/using-permalinks/" + +#. translators: %s: Site tagline example. +#: wp-admin/options-general.php:90 +msgid "In a few words, explain what this site is about. Example: “%s.”" +msgstr "En quelques mots, expliquez ce que représente ce site. Exemple : « %s »." + +#: wp-admin/install.php:203 +msgid "Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request." +msgstr "Note : le fait de décourager les moteurs de recherche ne bloque pas l’accès à votre site. Il appartient aux moteurs de recherche d’honorer votre demande." + +#: wp-admin/includes/template.php:762 +msgid "New custom field name" +msgstr "Nouveau nom de champ personnalisé" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/media.php:2758 +msgid "Search Media:" +msgstr "Rechercher un média :" + +#: wp-admin/includes/image-edit.php:270 +msgid "Clear Crop" +msgstr "Annuler le recadrage" + +#: wp-admin/includes/image-edit.php:270 +msgid "Apply Crop" +msgstr "Appliquer le recadrage" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:263 +msgid "vertical start position" +msgstr "position verticale de départ" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:255 +msgid "horizontal start position" +msgstr "position horizontale de départ" + +#: wp-admin/includes/image-edit.php:250 +msgid "Starting Coordinates:" +msgstr "Coordonnées de départ :" + +#: wp-admin/includes/image-edit.php:193 +msgid "Crop Image" +msgstr "Recadrer l’image" + +#: wp-admin/includes/image-edit.php:163 wp-admin/includes/image-edit.php:935 +msgid "Images cannot be scaled to a size larger than the original." +msgstr "Les images ne peuvent pas être mises à l’échelle dans une taille supérieure à celle de l’original." + +#: wp-admin/includes/image-edit.php:101 +msgid "Save Edits" +msgstr "Enregistrer les modifications" + +#: wp-admin/includes/image-edit.php:100 +msgid "Cancel Editing" +msgstr "Annuler la modification" + +#: wp-admin/includes/file.php:2027 +msgid "Could not create the destination directory." +msgstr "Impossible de créer le répertoire de destination." + +#: wp-admin/includes/class-wp-users-list-table.php:397 +#: wp-admin/includes/class-wp-ms-users-list-table.php:217 +msgid "Table ordered by E-mail." +msgstr "Tableau trié par e-mail." + +#: wp-admin/includes/class-wp-users-list-table.php:396 +#: wp-admin/includes/class-wp-ms-users-list-table.php:215 +msgid "Table ordered by Username." +msgstr "Tableau trié par identifiant." + +#. translators: %s: The plugin or theme slug. +#: wp-admin/includes/class-wp-upgrader.php:219 +msgid "Could not delete the temporary backup directory for %s." +msgstr "Impossible de supprimer le répertoire de sauvegarde temporaire de %s." + +#. translators: %s: The plugin or theme slug. +#: wp-admin/includes/class-wp-upgrader.php:217 +msgid "Could not restore the original version of %s." +msgstr "Impossible de restaurer la version originale de %s." + +#. translators: %s: upgrade-temp-backup +#: wp-admin/includes/class-wp-upgrader.php:215 +msgid "Could not move the old version to the %s directory." +msgstr "Impossible de déplacer l’ancienne version vers le répertoire %s." + +#. translators: %s: upgrade-temp-backup +#: wp-admin/includes/class-wp-upgrader.php:213 +msgid "Could not create the %s directory." +msgstr "Impossible de créer le répertoire %s." + +#: wp-admin/includes/class-wp-terms-list-table.php:223 +msgid "Table ordered by Links." +msgstr "Tableau trié par liens." + +#: wp-admin/includes/class-wp-terms-list-table.php:222 +msgid "Table ordered by Posts Count." +msgstr "Tableau trié par nombre de publications." + +#: wp-admin/includes/class-wp-terms-list-table.php:221 +msgid "Table ordered by Slug." +msgstr "Tableau trié par slug." + +#: wp-admin/includes/class-wp-terms-list-table.php:220 +msgid "Table ordered by Description." +msgstr "Tableau trié par description." + +#: wp-admin/includes/class-wp-terms-list-table.php:213 +msgid "Table ordered hierarchically." +msgstr "Tableau trié hiérarchiquement." + +#: wp-admin/includes/class-wp-site-health.php:2771 +msgid "Available disk space" +msgstr "Espace disque disponible" + +#: wp-admin/includes/class-wp-site-health.php:2767 +msgid "Plugin and theme temporary backup directory access" +msgstr "Accès au répertoire de sauvegarde temporaire des extensions et des thèmes" + +#. translators: 1: wp-content/upgrade, 2: wp-content. +#: wp-admin/includes/class-wp-site-health.php:1987 +msgid "The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s." +msgstr "Le répertoire %1$s n’existe pas et le serveur n’a pas les droits en écriture dans %2$s pour le créer. Ce répertoire est utilisé pour les mises à jour des extensions et de thèmes. Veuillez vous assurer que le serveur dispose des droits en écriture dans %2$s." + +#: wp-admin/includes/class-wp-site-health.php:1984 +msgid "The upgrade directory cannot be created" +msgstr "Le répertoire de mise à niveau ne peut pas être créé" + +#. translators: %s: wp-content/upgrade +#: wp-admin/includes/class-wp-site-health.php:1976 +msgid "The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour les mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:1973 +msgid "The upgrade directory exists but is not writable" +msgstr "Le répertoire de mise à niveau existe mais n’est pas accessible en écriture" + +#. translators: %s: wp-content/upgrade-temp-backup +#: wp-admin/includes/class-wp-site-health.php:1965 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:1962 +msgid "The temporary backup directory exists but is not writable" +msgstr "Le répertoire de sauvegarde temporaire existe mais n’est pas accessible en écriture." + +#. translators: %s: wp-content/upgrade-temp-backup/themes +#: wp-admin/includes/class-wp-site-health.php:1954 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour de thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:1951 +msgid "Theme temporary backup directory exists but is not writable" +msgstr "Le répertoire de sauvegarde temporaire des thèmes existe mais n’est pas accessible en écriture" + +#. translators: %s: wp-content/upgrade-temp-backup/plugins +#: wp-admin/includes/class-wp-site-health.php:1943 +msgid "The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory." +msgstr "Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ce répertoire." + +#: wp-admin/includes/class-wp-site-health.php:1940 +msgid "Plugin temporary backup directory exists but is not writable" +msgstr "Le répertoire de sauvegarde temporaire des extensions existe mais n’est pas accessible en écriture" + +#. translators: 1: wp-content/upgrade-temp-backup/plugins, 2: +#. wp-content/upgrade-temp-backup/themes. +#: wp-admin/includes/class-wp-site-health.php:1931 +msgid "The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories." +msgstr "Les répertoires %1$s et %2$s existent mais ne sont pas accessibles en écriture. Ces répertoires sont utilisés pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ces répertoires." + +#: wp-admin/includes/class-wp-site-health.php:1928 +msgid "Plugin and theme temporary backup directories exist but are not writable" +msgstr "Les répertoires de sauvegarde temporaire des extensions et des thèmes existent mais ne sont pas accessibles en écriture." + +#. translators: %s: wp-content +#: wp-admin/includes/class-wp-site-health.php:1910 +msgid "The %s directory cannot be located." +msgstr "Le répertoire %s est introuvable." + +#. translators: %s: wp-content/upgrade-temp-backup +#: wp-admin/includes/class-wp-site-health.php:1881 +msgid "The %s directory used to improve the stability of plugin and theme updates is writable." +msgstr "Le répertoire %s utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes est accessible en écriture." + +#: wp-admin/includes/class-wp-site-health.php:1873 +msgid "Plugin and theme temporary backup directory is writable" +msgstr "Le répertoire de sauvegarde temporaire des extensions et des thèmes est accessible en écriture" + +#: wp-admin/includes/class-wp-site-health.php:1839 +msgid "Could not determine available disk space for updates." +msgstr "Impossible de déterminer l’espace disque disponible pour les mises à jour." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1844 +msgid "Available disk space is critically low, less than %s available. Proceed with caution, updates may fail." +msgstr "L’espace disque disponible est extrêmement faible, moins de %s disponibles. Attention, les mises à jour peuvent échouer." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1851 +msgid "Available disk space is low, less than %s available." +msgstr "L’espace disque disponible est faible, moins de %s disponibles." + +#. translators: %s: Available disk space in MB or GB. +#: wp-admin/includes/class-wp-site-health.php:1831 +msgid "%s available disk space was detected, update routines can be performed safely." +msgstr "%s d’espace disque disponible a été détecté, les routines de mise à jour peuvent être effectuées en toute sécurité." + +#: wp-admin/includes/class-wp-site-health.php:1823 +msgid "Disk space available to safely perform updates" +msgstr "Espace disque disponible pour effectuer les mises à jour en toute sécurité" + +#: wp-admin/includes/class-wp-posts-list-table.php:770 +msgid "Table ordered by Hierarchical Menu Order and Title." +msgstr "Tableau trié par l’ordre hiérarchique du menu et par son titre." + +#: wp-admin/includes/class-wp-posts-list-table.php:768 +#: wp-admin/includes/class-wp-posts-list-table.php:781 +msgid "Table ordered by Title." +msgstr "Tableau trié par titre." + +#: wp-admin/includes/class-wp-media-list-table.php:404 +#: wp-admin/includes/class-wp-posts-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:784 +msgid "Table ordered by Date." +msgstr "Tableau trié par date." + +#: wp-admin/includes/class-wp-media-list-table.php:403 +#: wp-admin/includes/class-wp-posts-list-table.php:776 +#: wp-admin/includes/class-wp-posts-list-table.php:783 +msgid "Table ordered by Comments." +msgstr "Tableau trié par commentaires." + +#: wp-admin/includes/class-wp-media-list-table.php:402 +msgid "Table ordered by Uploaded To." +msgstr "Tableau trié par destination du téléversement." + +#: wp-admin/includes/class-wp-media-list-table.php:401 +msgid "Table ordered by Author." +msgstr "Tableau trié par auteur." + +#: wp-admin/includes/class-wp-media-list-table.php:400 +msgid "Table ordered by File Name." +msgstr "Tableau trié par nom de fichier." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1602 +msgid "Descending." +msgstr "Décroissant." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1600 +msgid "Ascending." +msgstr "Croissant." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1501 +msgid "Sort descending." +msgstr "Tri décroissant" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1499 +msgid "Sort ascending." +msgstr "Tri croissant" + +#: wp-admin/includes/class-wp-links-list-table.php:152 +msgid "Table ordered by Rating." +msgstr "Tableau trié par évaluation." + +#: wp-admin/includes/class-wp-links-list-table.php:151 +msgid "Table ordered by Visibility." +msgstr "Tableau trié par visibilité." + +#: wp-admin/includes/class-wp-links-list-table.php:150 +msgid "Table ordered by URL." +msgstr "Tableau trié par URL." + +#: wp-admin/includes/class-wp-links-list-table.php:149 +#: wp-admin/includes/class-wp-terms-list-table.php:215 +#: wp-admin/includes/class-wp-ms-users-list-table.php:216 +msgid "Table ordered by Name." +msgstr "Tableau trié par nom." + +#: wp-admin/includes/class-wp-debug-data.php:547 +msgid "Current Server time" +msgstr "Heure actuelle du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:543 +msgid "Current UTC time" +msgstr "Heure UTC actuelle" + +#: wp-admin/includes/class-wp-debug-data.php:539 +msgid "Current time" +msgstr "Heure actuelle" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:595 +msgid "Ordered by Comment Date, descending." +msgstr "Tableau trié par date de commentaire décroissante." + +#: wp-admin/includes/class-wp-comments-list-table.php:551 +msgid "Table ordered by Post Replied To." +msgstr "Tableau trié par commentaire lié à l’article." + +#: wp-admin/includes/class-wp-comments-list-table.php:550 +msgid "Table ordered by Comment Author." +msgstr "Tableau trié par l’auteur du commentaire." + +#: wp-admin/includes/class-core-upgrader.php:41 +msgid "Attempting to restore the previous version." +msgstr "Tentative de restauration de la version précédente." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:209 +msgid "More details." +msgstr "Plus de détails." + +#: wp-admin/contribute.php:103 +msgid "Find your team →" +msgstr "Trouvez votre équipe →" + +#: wp-admin/contribute.php:102 +msgid "Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is." +msgstr "Trouver le domaine qui correspond à vos compétences et à vos intérêts est le premier pas vers une contribution significative. Avec plus de 20 équipes Make WordPress travaillant sur différentes parties du projet open source WordPress, il y a une place pour tout le monde, quelles que soient vos compétences." + +#: wp-admin/contribute.php:101 +msgid "Shape the future of the web with WordPress" +msgstr "Façonnez l’avenir du web avec WordPress" + +#: wp-admin/contribute.php:94 +msgid "WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript." +msgstr "Applications mobiles WordPress : Kotlin, Java, Swift, Objective-C, Vue, Python et TypeScript." + +#: wp-admin/contribute.php:93 +msgid "WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React." +msgstr "Cœur de WP et éditeur de blocs : HTML, CSS, PHP, SQL, JavaScript et React." + +#: wp-admin/contribute.php:91 +msgid "WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:" +msgstr "WordPress adopte de nouvelles technologies, tout en s’engageant à en assurer la rétro-compatibilité. Le projet WordPress utilise les langages et outils suivants :" + +#: wp-admin/contribute.php:89 +msgid "Contribute to the code, improve the UX, and test the WordPress app." +msgstr "Contribuez au code, améliorez l’expérience d’utilisation, et testez les applications mobiles WordPress" + +#: wp-admin/contribute.php:88 +msgid "Write and submit patches to fix bugs or help build new features." +msgstr "Écrivez et envoyez des corrections de bogues ou contribuez à l’élaboration de nouvelles fonctionnalités" + +#: wp-admin/contribute.php:87 +msgid "Test new releases and proposed features for the Block Editor." +msgstr "Testez les nouvelles versions et fonctionnalités proposées pour l’éditeur de blocs." + +#: wp-admin/contribute.php:86 +msgid "Find and report bugs in the WordPress core software." +msgstr "Trouvez et signalez des bogues dans le cœur de WordPress" + +#: wp-admin/contribute.php:84 +msgid "If you do code, or want to learn how, you can contribute technically in numerous ways:" +msgstr "Si vous codez, ou souhaitez apprendre à le faire, vous pouvez contribuer techniquement de nombreuses manières :" + +#: wp-admin/contribute.php:83 +msgid "Code-based contribution" +msgstr "Contribution au code de WordPress" + +#: wp-admin/contribute.php:71 +msgid "Explore ways to reduce the environmental impact of websites." +msgstr "Explorez les moyens de réduire l’impact environnemental des millions de sites WordPress." + +#: wp-admin/contribute.php:70 +msgid "Edit videos and add captions to WordPress.tv." +msgstr "Gérez les vidéos et ajoutez des sous-titres sur WordPress.tv" + +#: wp-admin/contribute.php:69 +msgid "Lend your creative imagination to the WordPress UI design." +msgstr "Laissez libre cours à votre imagination créative pour la conception de l’interface d’utilisation de WordPress" + +#: wp-admin/contribute.php:68 +msgid "Organize or participate in local Meetups and WordCamps." +msgstr "Organisez ou participez à des Meetups WordPress locaux ou à des WordCamps" + +#: wp-admin/contribute.php:67 +msgid "Curate submissions or take photos for the Photo Directory." +msgstr "Sélectionnez les propositions ou prenez des photos pour le répertoire de photos de WordPress." + +#: wp-admin/contribute.php:66 +msgid "Promote the WordPress project to your community." +msgstr "Faites la promotion du projet WordPress auprès de la communauté" + +#: wp-admin/contribute.php:65 +msgid "Create and improve WordPress educational materials." +msgstr "Créez et améliorez le matériel pédagogique de WordPress" + +#: wp-admin/contribute.php:64 +msgid "Translate WordPress into your local language." +msgstr "Traduisez WordPress dans votre langue" + +#: wp-admin/contribute.php:63 +msgid "Write or improve documentation for WordPress." +msgstr "Rédigez ou améliorez la documentation de WordPress" + +#: wp-admin/contribute.php:62 +msgid "Share your knowledge in the WordPress support forums." +msgstr "Partagez vos connaissances sur les forums d’entraide de WordPress" + +#: wp-admin/contribute.php:60 +msgid "WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:" +msgstr "WordPress se nourrit de contributions techniques, mais il n’est pas nécessaire de savoir coder pour contribuer. Voici quelques-unes des façons qui vous permettent d’avoir un impact sans écrire une seule ligne de code :" + +#: wp-admin/contribute.php:59 +msgid "No-code contribution" +msgstr "Contributer sans coder" + +#: wp-admin/contribute.php:52 +msgid "Grow your network and make friends." +msgstr "Développez votre réseau et faites-vous des amis" + +#: wp-admin/contribute.php:51 +msgid "Apply your skills or learn new ones." +msgstr "Appliquez vos compétences ou apprenez-en de nouvelles" + +#: wp-admin/contribute.php:50 +msgid "Be part of a global open source community." +msgstr "Rejoignez une communauté mondiale dédiée au logiciel libre" + +#: wp-admin/contribute.php:47 +msgid "Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web." +msgstr "Rejoignez la communauté WordPress et connectez-vous avec d’autres personnes qui ont à cœur de maintenir le web libre et ouvert." + +#: wp-admin/contribute.php:46 +msgid "Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world." +msgstr "Vous utilisez WordPress dans le cadre de votre travail, de vos projets personnels ou simplement pour le plaisir ? Vous pouvez contribuer au succès à long terme du projet open source qui alimente des millions de sites web dans le monde." + +#: wp-admin/contribute.php:29 +msgid "Be the future of WordPress" +msgstr "Participez à l‘avenir de WordPress" + +#. translators: 1: Learn WordPress link, 2: Workshops link. +#: wp-admin/about.php:240 +msgid "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." +msgstr "Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress." + +#: wp-admin/comment.php:73 wp-admin/edit-comments.php:232 +#: wp-admin/edit-form-advanced.php:313 wp-admin/edit-form-advanced.php:331 +#: wp-admin/edit-form-advanced.php:349 wp-admin/edit-link-form.php:77 +#: wp-admin/edit-tags.php:315 wp-admin/edit.php:302 wp-admin/edit.php:327 +#: wp-admin/erase-personal-data.php:66 wp-admin/export-personal-data.php:66 +#: wp-admin/export.php:60 wp-admin/import.php:33 +#: wp-admin/includes/class-custom-background.php:111 +#: wp-admin/includes/class-custom-image-header.php:146 wp-admin/index.php:133 +#: wp-admin/link-manager.php:80 wp-admin/media-new.php:62 +#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:774 +#: wp-admin/options-discussion.php:33 wp-admin/options-general.php:61 +#: wp-admin/options-media.php:42 wp-admin/options-permalink.php:67 +#: wp-admin/options-reading.php:54 wp-admin/options-writing.php:54 +#: wp-admin/plugin-editor.php:156 wp-admin/plugin-install.php:122 +#: wp-admin/plugins.php:622 wp-admin/revision.php:160 +#: wp-admin/theme-editor.php:56 wp-admin/theme-install.php:157 +#: wp-admin/themes.php:210 wp-admin/tools.php:57 wp-admin/update-core.php:1055 +#: wp-admin/upload.php:200 wp-admin/upload.php:402 wp-admin/user-edit.php:79 +#: wp-admin/user-new.php:316 wp-admin/users.php:84 wp-admin/widgets-form.php:72 +#: wp-admin/network.php:83 wp-admin/network/settings.php:65 +#: wp-admin/network/themes.php:340 wp-admin/network/upgrade.php:33 +msgid "Support forums" +msgstr "forums de support" + +#: wp-admin/widgets-form.php:71 +msgid "Documentation on Widgets" +msgstr "Écran Widgets" + +#: wp-admin/users.php:63 +msgid "View takes you to a public author archive which lists all the posts published by the user." +msgstr "Voir vous emmène sur l’archive publique de l’auteur ou de l’autrice, qui liste toutes ses publications mises en ligne." + +#: wp-admin/upload.php:386 +msgid "Download file downloads the original media file to your device." +msgstr "Télécharger le fichier télécharge le fichier média original sur votre appareil." + +#: wp-admin/site-editor.php:121 +msgctxt "site editor title tag" +msgid "Editor" +msgstr "Éditeur" + +#: wp-admin/plugins.php:602 wp-admin/themes.php:202 +#: wp-admin/update-core.php:1030 wp-admin/network/themes.php:333 +msgid "Documentation on Auto-updates" +msgstr "Documentation sur les mises à jour automatiques" + +#: wp-admin/options-general.php:559 +msgid "Documentation on date and time formatting." +msgstr "Documentation sur le formatage de la date et de l’heure." + +#: wp-admin/options-general.php:46 wp-admin/network/settings.php:56 +msgid "You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable)." +msgstr "Vous pouvez définir la langue, et WordPress va automatiquement télécharger et installer les fichiers de traduction (disponible si votre système de fichier autorise l’écriture)." + +#: wp-admin/options-general.php:43 +msgid "If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users." +msgstr "Si vous voulez que les internautes puissent créer eux-mêmes un compte sur le site, cochez la case d’adhésion. Si vous voulez que l’administrateur ou l’administratrice du site soit responsable de l’inscription de chaque compte chaque, laissez la case non-cochée. Dans tous les cas, vous pouvez définir un rôle par défaut pour tout nouveau compte." + +#. translators: 1: http://, 2: https: +#: wp-admin/options-general.php:39 +msgid "Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines." +msgstr "L’URL de WordPress et l’URL du site peuvent commencer par %1$s ou %2$s. Une URL commençant par %2$s nécessite de disposer d’un certificat SSL, alors assurez-vous d’en avoir un installé avant de passer à %2$s. Avec %2$s, un cadenas va s’afficher à côté de l’adresse du site dans votre navigateur. Le fait d’avoir une adresse en %2$s et d’afficher le cadenas dans le navigateur est un bon indice que votre site respecte certaines bases de sécurité web, ce qui permet d’établir une relation de confiance avec les internautes tout comme avec les moteurs de recherche." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:34 +msgid "Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different." +msgstr "Même si le terme correspond à deux concepts spécifiques, en pratique cela peut être la même adresse ou des adresses différentes. Par exemple, vous pouvez avoir les fichiers du cœur de WordPress dans le répertoire racine (https://example.com), auquel cas les deux URL seront similaires. Vous pouvez aussi placer les fichiers de WordPress dans un sous répertoire (https://example.com/wordpress). Dans ce cas, l’URL de WordPress et l’URL du site seront différentes." + +#: wp-admin/options-general.php:31 +msgid "Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site." +msgstr "Il est important de différencier URL de WordPress et URL du site. L’URL de WordPress est l’endroit où se trouvent les fichiers d’installation du cœur de WordPress, et l’URL du site est l’adresse qu’un visiteur utilise dans son navigateur pour se rendre sur votre site." + +#: wp-admin/options-discussion.php:311 +msgid "RoboHash (Generated)" +msgstr "RoboHash (généré)" + +#: wp-admin/menu.php:212 +msgctxt "site editor menu item" +msgid "Editor" +msgstr "Éditeur" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:856 +msgid "Allow trackbacks and pingbacks" +msgstr "Autoriser les rétroliens et pings" + +#: wp-admin/includes/meta-boxes.php:833 +msgid "https://wordpress.org/documentation/article/assign-custom-fields/" +msgstr "https://fr.wordpress.org/support/article/custom-fields/" + +#: wp-admin/includes/meta-boxes.php:758 +msgid "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/" +msgstr "https://fr.wordpress.org/support/article/excerpt/" + +#. translators: %s: The function name. +#: wp-admin/includes/file.php:2789 +msgid "%s expects a non-empty string." +msgstr "%s attend une chaine non vide." + +#: wp-admin/includes/file.php:2108 +msgid "The destination directory already exists and could not be removed." +msgstr "Le répertoire de destination existe déjà et ne peut être supprimé." + +#: wp-admin/includes/file.php:2105 +msgid "The destination folder already exists." +msgstr "Le dossier de destination existe déjà." + +#: wp-admin/includes/file.php:2100 +msgid "The source and destination are the same." +msgstr "La source et la destination sont identiques." + +#: wp-admin/includes/class-wp-screen.php:1119 +msgid "Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows." +msgstr "Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas." + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:847 +msgid "Download “%s”" +msgstr "Télécharger « %s »" + +#. translators: %s: The "$dir" argument. +#: wp-admin/includes/class-wp-automatic-updater.php:83 +msgid "The \"%s\" argument must be a non-empty string." +msgstr "L’argument « %s » doit être une chaine non vide." + +#: wp-admin/edit-form-advanced.php:312 +msgid "Documentation on Writing and Editing Posts" +msgstr "Documentation sur la rédaction d’articles" + +#: wp-admin/edit-comments.php:231 wp-admin/user-edit.php:364 +msgid "Documentation on Keyboard Shortcuts" +msgstr "Documentation sur les raccourcis clavier" + +#: wp-admin/edit-comments.php:230 +msgid "Documentation on Comment Spam" +msgstr "Documentation sur les commentaires indésirables" + +#: wp-admin/customize.php:257 +msgid "Documentation on Customizer" +msgstr "Documentation sur l’outil de personnalisation" + +#. translators: The localized WordPress download URL. +#: wp-admin/about.php:380 +msgid "https://wordpress.org/download/" +msgstr "https://wordpress.org/download/" + +#. translators: %s: The major version of WordPress for this branch. +#: wp-admin/about.php:377 +msgid "This is the final release of WordPress %s" +msgstr "Il s’agit de la version finale de WordPress %s" + +#: wp-admin/includes/theme.php:342 +msgid "Site Editor" +msgstr "Éditeur de site" + +#: wp-admin/users.php:66 +msgid "Send password reset sends the user an email with a link to set a new password." +msgstr "Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe." + +#: wp-admin/user-edit.php:865 +msgid "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" +msgstr "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" + +#: wp-admin/upload.php:385 +msgid "Copy URL copies the URL for the media file to your clipboard." +msgstr "Copier l’URL copie l’URL du fichier média dans votre presse-papier." + +#: wp-admin/upload.php:384 +msgid "View will take you to a public display page for that file." +msgstr "Le lien Voir vous mènera vers une page publique pour ce fichier." + +#: wp-admin/upload.php:383 +msgid "Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached)." +msgstr "Le lien Supprimer définitivement détruira le fichier de la médiathèque (ainsi que dans n’importe quelle publication à laquelle il serait attaché)." + +#: wp-admin/upload.php:382 +msgid "Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail." +msgstr "Modifier vous amène à un écran simple pour modifier les métadonnées de ce fichier individuel. Vous pouvez également accéder à cet écran en cliquant sur le nom ou sur la vignette du média." + +#: wp-admin/upload.php:380 +msgid "Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:" +msgstr "Le survol d’une ligne révèle des liens d’action qui vous permettent de gérer les médias. Vous pouvez effectuer les actions suivantes :" + +#: wp-admin/theme-install.php:213 +msgctxt "themes" +msgid "Block Themes" +msgstr "Thèmes basés sur des blocs" + +#: wp-admin/theme-install.php:156 +msgid "Documentation on Block Themes" +msgstr "Documentation sur les thèmes basés sur des blocs" + +#: wp-admin/theme-install.php:148 +msgid "Block themes" +msgstr "Thèmes basés sur des blocs" + +#: wp-admin/theme-install.php:143 +msgid "With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates." +msgstr "Avec un thème basé sur des blocs, vous pouvez disposer et modifier les blocs sans affecter votre contenu en personnalisant ou en créant de nouveaux modèles." + +#: wp-admin/theme-install.php:142 +msgid "A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site." +msgstr "Un thème basé sur des blocs est un thème qui utilise des blocs pour tous les éléments du site, ce qui comprend les menus de navigation, l’entête, le contenu ou encore le pied de page du site. Ces thèmes sont conçus pour prendre en charge les fonctionnalités qui vous permettent de modifier et de personnaliser toutes les parties de votre site." + +#: wp-admin/site-health.php:277 +msgid "Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more." +msgstr "Les éléments recommandés sont considérés comme bénéfiques pour votre site. Bien qu’ils ne soient pas aussi prioritaires que les anomalies critiques, ils peuvent inclure des améliorations de performances, d’expérience d’utilisation, et bien plus encore." + +#: wp-admin/site-health.php:264 +msgid "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized." +msgstr "Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:441 +msgid "Configuration rules for %s:" +msgstr "Règles de configuration pour %s :" + +#. translators: Hidden accessibility text. +#: wp-admin/options-permalink.php:370 +msgid "Customize permalink structure by selecting available tags" +msgstr "Personnalisez la structure des permaliens en sélectionnant les balises disponibles" + +#. translators: %s: %postname% +#: wp-admin/options-permalink.php:322 +msgid "Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines." +msgstr "Sélectionnez la structure de permaliens de votre site. L’inclusion de la balise %s rend les liens plus faciles à lire et peut aider le référencement de vos publications." + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:313 +msgid "%s removed from permalink structure" +msgstr "%s retiré de la structure de permaliens" + +#. translators: %s: Number of critical Site Health checks. +#: wp-admin/menu.php:378 +msgid "Site Health %s" +msgstr "Santé du site %s" + +#: wp-admin/includes/file.php:24 +msgid "Theme Styles & Block Settings" +msgstr "Styles du thème et réglages des blocs" + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/dashboard.php:1905 +msgid "The minimum recommended version of PHP is %s." +msgstr "La version minimale recommandée de PHP est %s." + +#: wp-admin/includes/dashboard.php:1900 +msgid "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance." +msgstr "PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1885 +msgid "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress. Assurez-vous dès que possible que PHP soit mis à jour sur votre serveur. Sinon, vous ne pourrez pas mettre à jour WordPress." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1872 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress. Assurez-vous que PHP est à jour sur votre serveur dès que possible. Sinon, vous ne pourrez plus mettre à niveau WordPress à l’avenir." + +#: wp-admin/includes/class-wp-site-health.php:2828 +msgid "Persistent object cache" +msgstr "Cache objet persistant" + +#: wp-admin/includes/class-wp-site-health.php:2821 +msgid "Page cache" +msgstr "Cache des page" + +#: wp-admin/includes/class-wp-site-health.php:2572 +msgid "You should use a persistent object cache" +msgstr "Vous devriez utiliser un cache objet persistant" + +#. translators: Available object caching services. +#: wp-admin/includes/class-wp-site-health.php:2551 +msgid "Your host appears to support the following object caching services: %s." +msgstr "Votre hébergeur semble prendre en charge les services de cache objet suivants : %s." + +#: wp-admin/includes/class-wp-site-health.php:2546 +msgid "Your hosting provider can tell you if a persistent object cache can be enabled on your site." +msgstr "Votre hébergeur peut vous indiquer si un cache objet persistant peut être activé sur votre site." + +#: wp-admin/includes/class-wp-site-health.php:2539 +msgid "A persistent object cache is not required" +msgstr "Le cache objet persistant n’est pas obligatoire" + +#: wp-admin/includes/class-wp-site-health.php:2528 +msgid "Learn more about persistent object caching." +msgstr "En savoir plus sur la mise en cache objet persistant." + +#: wp-admin/includes/class-wp-site-health.php:2523 +msgid "A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly." +msgstr "Un cache objets persistant rend la base de données de votre site plus efficace, ce qui assure des temps de chargement plus rapides car WordPress peut récupérer le contenu et les réglages de votre site beaucoup plus rapidement." + +#: wp-admin/includes/class-wp-site-health.php:2520 +msgid "A persistent object cache is being used" +msgstr "Un cache objet persistant est utilisé" + +#: wp-admin/includes/class-wp-site-health.php:2485 +msgid "A page cache plugin was not detected." +msgstr "Aucune extension de mise en cache des pages n’a été détectée." + +#: wp-admin/includes/class-wp-site-health.php:2482 +msgid "A page cache plugin was detected." +msgstr "Une extension de mise en cache des pages a été détectée." + +#. translators: %d: Number of caching headers. +#: wp-admin/includes/class-wp-site-health.php:2469 +msgid "There was %d client caching response header detected:" +msgid_plural "There were %d client caching response headers detected:" +msgstr[0] "%d entête de réponse de cache client a été détecté :" +msgstr[1] "%d entêtes de réponses de cache client ont été détectés :" + +#: wp-admin/includes/class-wp-site-health.php:2464 +msgid "No client caching response headers were detected." +msgstr "Aucun entête de réponse de cache client n’a été détecté." + +#. translators: 1: The response time in milliseconds, 2: The recommended +#. threshold in milliseconds. +#: wp-admin/includes/class-wp-site-health.php:2457 +msgid "Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold." +msgstr "Le temps de réponse médian du serveur était de %1$s millisecondes. Il devrait être inférieur au seuil recommandé de %2$s millisecondes." + +#. translators: 1: The response time in milliseconds, 2: The recommended +#. threshold in milliseconds. +#: wp-admin/includes/class-wp-site-health.php:2450 +msgid "Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold." +msgstr "Le temps de réponse médian du serveur était de %1$s millisecondes. C’est moins que le seuil recommandé de %2$s millisecondes." + +#: wp-admin/includes/class-wp-site-health.php:2443 +msgid "Server response time could not be determined. Verify that loopback requests are working." +msgstr "Le temps de réponse du serveur n’a pas pu être déterminé. Vérifiez que les boucles de requêtes fonctionnent." + +#: wp-admin/includes/class-wp-site-health.php:2436 +msgid "Page cache is detected but the server response time is still slow" +msgstr "La mise en cache des pages est détectée mais le temps de réponse du serveur est toujours lent" + +#: wp-admin/includes/class-wp-site-health.php:2434 +msgid "Page cache is not detected and the server response time is slow" +msgstr "La mise en cache des pages n’est pas détectée et le temps de réponse du serveur est lent" + +#: wp-admin/includes/class-wp-site-health.php:2430 +msgid "Page cache is detected and the server response time is good" +msgstr "La mise en cache des pages est détectée et le temps de réponse du serveur est bon" + +#: wp-admin/includes/class-wp-site-health.php:2427 +msgid "Page cache is not detected but the server response time is OK" +msgstr "La mise en cache des pages n’est pas détectée mais le temps de réponse du serveur est OK" + +#. translators: 1: Error message, 2: Error code. +#: wp-admin/includes/class-wp-site-health.php:2415 +msgid "Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)" +msgstr "Impossible de détecter le cache de la page en raison d’un éventuel problème de boucle de requête. Veuillez vérifier que le test de boucle de requête passe correctement. Erreur : %1$s (code : %2$s)" + +#: wp-admin/includes/class-wp-site-health.php:2411 +msgid "Unable to detect the presence of page cache" +msgstr "Impossible de détecter la présence de la mise en cache des pages" + +#: wp-admin/includes/class-wp-site-health.php:2402 +msgid "Learn more about page cache" +msgstr "En savoir plus sur la mise en cache des pages" + +#: wp-admin/includes/class-wp-site-health.php:2387 +msgid "Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:" +msgstr "Le cache de page est détecté en recherchant une éventuelle extension de cache active sur le site, et aussi en effectuant trois requêtes sur la page d’accueil et en recherchant un ou plusieurs entêtes de réponse de mise en cache du client HTTP parmi les entêtes suivants :" + +#: wp-admin/includes/class-wp-site-health.php:2386 +msgid "Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits." +msgstr "L’utilisation de la mise en cache des pages améliore la vitesse et les performances de votre site en servant des pages statiques au lieu de générer entièrement chaque page à chaque visite d’un internaute." + +#: wp-admin/includes/class-wp-site-health.php:2352 +msgid "If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance." +msgstr "Si vous voyez toujours cet avertissement après avoir essayé les actions ci-dessous, vous devriez peut-être contacter votre hébergeur pour obtenir de l’aide." + +#: wp-admin/includes/class-wp-site-health.php:2335 +msgid "The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site." +msgstr "L’entête d’autorisation est utilisé par les applications tierces que vous avez approuvées pour ce site. Sans cet entête, ces applications ne peuvent pas se connecter à votre site." + +#: wp-admin/includes/class-wp-site-health.php:2191 +msgid "When testing the REST API, an unexpected result was returned:" +msgstr "Lors du test de l’API REST, un résultat inattendu a été retourné :" + +#. translators: 1: The WordPress error code. 2: The WordPress error message. +#. translators: 1: The WordPress error code. 2: The HTTP status code error +#. message. +#: wp-admin/includes/class-wp-site-health.php:2179 +#: wp-admin/includes/class-wp-site-health.php:2199 +msgid "REST API Response: (%1$s) %2$s" +msgstr "Réponse de l’API REST : (%1$s) %2$s" + +#. translators: %s: The REST API URL. +#: wp-admin/includes/class-wp-site-health.php:2174 +#: wp-admin/includes/class-wp-site-health.php:2194 +msgid "REST API Endpoint: %s" +msgstr "Point de terminaison de l’API REST : %s" + +#: wp-admin/includes/class-wp-site-health.php:2171 +msgid "When testing the REST API, an error was encountered:" +msgstr "Lors du test de l’API REST, une erreur s’est produite :" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:817 +#: wp-admin/includes/dashboard.php:1878 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas les mises à jour de sécurité. Une mise à jour est nécessaire." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:810 +msgid "Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress." +msgstr "Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit plus de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress." + +#: wp-admin/includes/class-wp-site-health.php:789 +msgid "Requirements" +msgstr "Prérequis" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:784 +msgid "Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress." +msgstr "Votre site fonctionne avec une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress." + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/class-wp-site-health.php:744 +msgid "PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s." +msgstr "PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site. La version minimale recommandée de PHP est %s." + +#: wp-admin/includes/class-wp-site-health.php:609 +msgid "Your site does not have any installed themes." +msgstr "Votre site ne dispose d’aucun thème installé." + +#: wp-admin/includes/class-wp-site-health.php:441 +msgid "Your site does not have any active plugins." +msgstr "Votre site ne dispose d’aucune extension installée." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:197 +msgid "Another attempt will be made with the next release." +msgstr "Une autre tentative sera faite avec la prochaine version." + +#. translators: 1: Name of the constant used. 2: Value of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:79 +msgid "The %1$s constant is defined as %2$s" +msgstr "La constante %1$s est définie à %2$s" + +#. translators: %1$s: The argument name. %2$s: The view name. +#: wp-admin/includes/class-wp-list-table.php:454 +#: wp-admin/includes/class-wp-list-table.php:469 +msgid "The %1$s argument must be a non-empty string for %2$s." +msgstr "Le paramètre %1$s doit être une chaîne non vide pour %2$s." + +#. translators: %s: The $link_data argument. +#: wp-admin/includes/class-wp-list-table.php:437 +msgid "The %s argument must be an array." +msgstr "Le paramètre %s doit être un tableau." + +#. translators: 1: Plugin name, 2: Version number, 3: Plugin URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1372 +#: wp-admin/includes/class-wp-automatic-updater.php:1444 +msgid "- %1$s version %2$s%3$s" +msgstr "- %1$s version %2$s%3$s" + +#. translators: 1: Plugin name, 2: Current version number, 3: New version +#. number, 4: Plugin URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1363 +#: wp-admin/includes/class-wp-automatic-updater.php:1435 +msgid "- %1$s (from version %2$s to %3$s)%4$s" +msgstr "- %1$s (de la version %2$s vers %3$s)%4$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1069 +msgid "Reach out to WordPress Core developers to ensure you'll never have this problem again." +msgstr "Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème." + +#. translators: 1: WordPress version number, 2: Link to update WordPress +#: wp-admin/about.php:374 +msgid "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." +msgstr "Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress." + +#. translators: 1: WordPress version number, 2: Link to update WordPress +#: wp-admin/about.php:371 +msgid "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." +msgstr "Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:27 +msgid "https://make.wordpress.org/core/wordpress-%s-field-guide/" +msgstr "https://fr.wordpress.org/2024/10/28/guide-des-changements-techniques-de-wordpress-6-7/" + +#. translators: %s: Version number. +#: wp-admin/about.php:231 +msgid "Learn more about WordPress %s" +msgstr "En savoir plus sur WordPress %s" + +#: wp-admin/includes/ajax-actions.php:1356 +#: wp-admin/includes/ajax-actions.php:1473 +msgid "Please type your comment text." +msgstr "Veuillez saisir le texte de votre commentaire." + +#: wp-admin/users.php:461 wp-admin/users.php:493 +msgid "You cannot remove users." +msgstr "Vous ne pouvez pas supprimer ces comptes." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/user-edit.php:799 +msgid "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." +msgid_plural "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." +msgstr[0] "Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin." +msgstr[1] "Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin." + +#: wp-admin/upgrade.php:160 +msgid "WordPress has been updated! Next and final step is to update your database to the newest version." +msgstr "WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données." + +#: wp-admin/themes.php:208 +msgid "Documentation on Managing Themes" +msgstr "Documentation sur la gestion des thèmes" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:182 +msgid "This information is being used to create a %s file." +msgstr "Ces informations sont utilisées pour créer un fichier %s." + +#: wp-admin/setup-config.php:170 +msgid "Welcome to WordPress. Before getting started, you will need to know the following items." +msgstr "Bienvenue sur WordPress. Avant de commencer, vous aurez besoin de connaître les éléments suivants." + +#: wp-admin/options.php:358 +msgid "Settings save failed." +msgstr "L’enregistrement des réglages a échoué." + +#: wp-admin/options-privacy.php:201 +msgid "After your Privacy Policy page is set, you should edit it." +msgstr "Après avoir défini votre page de politique de confidentialité, vous devez la modifier." + +#. translators: 1: .htaccess, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A +#: wp-admin/options-permalink.php:534 +msgid "Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all." +msgstr "Erreur : votre fichier %1$s n’est pas accessible en écriture, il n’a donc pas été possible de le mettre à jour automatiquement. Voici les règles mod_rewrite que vous devriez avoir dans votre fichier %1$s. Cliquez dans le champs et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner." + +#. translators: 1: web.config, 2: Documentation URL, 3: Ctrl + A, 4: ⌘ + A, +#. 5: Element code. +#: wp-admin/options-permalink.php:466 +msgid "Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file." +msgstr "Erreur : votre fichier %1$s n’est pas accessible en écriture, donc sa mise à jour automatique n’a pas été possible. Il s’agit de la règle de réécriture d’URL que vous devriez avoir dans le fichier %1$s. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Ensuite, insérez cette règle dans l’élément %5$s du fichier %1$s." + +#: wp-admin/options-discussion.php:239 +msgid "An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site." +msgstr "Un avatar est une image qui peut être associée à un compte sur plusieurs sites. Dans cette zone, vous pouvez choisir d’afficher les avatars des comptes qui interagissent avec le site." + +#: wp-admin/includes/post.php:1593 +msgid "Change Permalink Structure" +msgstr "Modifier la structure des permaliens" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-admin/includes/misc.php:1462 +msgid "" +"Howdy,\n" +"\n" +"A site administrator (###USERNAME###) recently requested to have the\n" +"administration email address changed on this site:\n" +"###SITEURL###\n" +"\n" +"To confirm this change, please click on the following link:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour ###USERNAME###,\n" +"\n" +"Un administrateur ou une administratrice du site a récemment demandé la modification de l’adresse e-mail d’administration de ce site :\n" +"###SITEURL###\n" +"\n" +"Pour confirmer cette modification, veuillez cliquer sur le lien suivant :\n" +"###ADMIN_URL###\n" +"\n" +"Vous pouvez ignorer et supprimer cet e-mail si vous ne souhaitez pas effectuer cette action.\n" +"\n" +"Cet e-mail a été envoyé à ###EMAIL###\n" +"\n" +"Salutations,\n" +"L’équipe de ###SITENAME###\n" +"###SITEURL###" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:598 +msgid "Where your data is sent" +msgstr "Où vos données sont envoyées" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:835 +msgid "Copy “%s” URL to clipboard" +msgstr "Copier l’URL de “%s” dans le presse-papier" + +#: wp-admin/includes/class-wp-automatic-updater.php:1084 +msgid "Some data that describes the error your site encountered has been put together." +msgstr "Des données relatives à l’erreur rencontrée par votre site ont été recueillies." + +#: wp-admin/includes/class-wp-automatic-updater.php:1018 +msgid "An attempt was made, but your site could not be updated automatically." +msgstr "Une tentative a été faite, mais votre site n’a pas pu être mis à jour automatiquement." + +#: wp-admin/includes/class-core-upgrader.php:166 +#: wp-admin/includes/class-wp-upgrader.php:206 +#: wp-admin/includes/update-core.php:1101 +msgid "The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions." +msgstr "La mise à jour ne peut pas être installée car certains fichiers n’ont pas pu être copiés. Ceci est généralement dû à des incohérences dans les droits des fichiers." + +#: wp-admin/export-personal-data.php:42 +msgid "Media — A list of URLs for media files the user uploads." +msgstr "Médias — Une liste d’URL pour les téléversements de médias effectués par le compte." + +#: wp-admin/export-personal-data.php:39 +msgid "Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information." +msgstr "Emplacement des évènements communautaires — L’adresse IP du compte, qui alimente le widget du tableau de bord des évènements communautaires à venir avec des informations pertinentes." + +#: wp-admin/export-personal-data.php:37 +msgid "WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:" +msgstr "WordPress collecte (mais ne publie jamais) une quantité limitée de données des personnes inscrites qui se sont connectées sur le site. En général, ce sont des personnes qui contribuent au site d’une certaine façon : contenu, gestion de boutique, et ainsi de suite. Hormis de rares exceptions, ces comptes n’incluent pas les visiteurs occasionnels qui pourraient s’être inscrits pour commenter des articles ou acheter des produits. Les données que WordPress conserve peuvent inclure :" + +#: wp-admin/export-personal-data.php:28 +msgid "Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses." +msgstr "Remarque : Étant donné que cet outil collecte uniquement des données de WordPress et des extensions qui y contribuent, vous pourriez avoir besoin d’aller plus loin pour que vos demandes d’exportations soient conformes. Par exemple, vous devriez également envoyer au demandeur une partie des données collectées ou conservées par les services tiers que votre entreprise ou votre site utilise." + +#: wp-admin/export-personal-data.php:26 +msgid "Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the \"Right of Data Portability\". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another." +msgstr "Les lois sur la protection de la vie privée du monde entier exigent des entreprises et des services en ligne qu’ils fournissent une exportation de certaines des données qu’ils recueillent sur les individus, et qu’ils fournissent cette exportation sur demande. Les droits que ces lois garantissent sont souvent appelés « droit à la portabilité des données ». Cela permet aux personnes d’obtenir et de réutiliser leurs données personnelles à leurs propres fins dans différents services. L’objectif est de leur permettre de déplacer, copier ou transférer facilement leurs données personnelles d’un environnement informatique à un autre." + +#: wp-admin/erase-personal-data.php:41 +msgid "Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS)." +msgstr "Commentaires : WordPress ne supprime pas les commentaires. Le logiciel anonymise (et ne publie jamais) les informations associées comme l’adresse e-mail, l’adresse IP ou l’agent utilisateur (navigateur et système d’exploitation)." + +#: wp-admin/erase-personal-data.php:37 +msgid "WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:" +msgstr "WordPress collecte (mais ne publie jamais) une quantité limitée de données des comptes connectés mais ces données sont ensuite supprimées ou anonymisées. Ces données peuvent inclure :" + +#: wp-admin/erase-personal-data.php:28 +msgid "Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted." +msgstr "Note : comme cet outil recueille uniquement des données provenant de WordPress et des extensions utilisées, il se peut que vous deviez faire davantage pour vous conformer aux demandes d’effacement de données. Par exemple, il vous incombe également de veiller à ce que les données collectées ou stockées par les services tiers utilisés par votre organisation soient aussi effacées." + +#: wp-admin/erase-personal-data.php:26 +msgid "Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the \"Right to be Forgotten\"." +msgstr "Les lois sur la protection de la vie privée en vigueur dans le monde entier obligent les entreprises et les services en ligne à supprimer, anonymiser ou oublier les données recueillies sur une personne. Les droits que ces lois garantissent sont souvent appelés « droit à l’oubli »." + +#: wp-admin/erase-personal-data.php:25 +msgid "This screen is where you manage requests to erase personal data." +msgstr "Cet écran vous permet de gérer les demandes de suppression de données personnelles." + +#: wp-admin/edit-form-advanced.php:462 +msgid "This post is being backed up in your browser, just in case." +msgstr "Cette publication est sauvegardée dans votre navigateur, au cas où." + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/authorize-application.php:185 +msgid "This will grant access to the %2$s site on the network as you have Super Admin rights." +msgid_plural "This will grant access to all %2$s sites on the network as you have Super Admin rights." +msgstr[0] "Ceci vous donne accès à %2$s site sur le réseau étant donné que vous avez des droits de Super Admin." +msgstr[1] "Ceci vous donne accès à l’ensemble des %2$s sites sur le réseau étant donné que vous avez des droits de Super Admin." + +#: wp-admin/includes/dashboard.php:2122 +msgid "Learn about block themes" +msgstr "En savoir plus sur les thèmes basés sur des blocs" + +#: wp-admin/includes/dashboard.php:2121 +msgid "There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles." +msgstr "Il existe maintenant une nouvelle sorte de thème WordPress : les thèmes basés sur des blocs. Ils vous donnent la possibilité de construire le site que vous avez toujours voulu, en agençant des blocs et en leur donnant des styles graphiques." + +#: wp-admin/includes/dashboard.php:2120 +msgid "Discover a new way to build your site." +msgstr "Découvrez une nouvelle façon de construire votre site" + +#: wp-admin/includes/dashboard.php:2118 +msgid "Edit styles" +msgstr "Modifier les styles" + +#: wp-admin/includes/dashboard.php:2117 +msgid "Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?" +msgstr "Ajustez votre site, ou donnez-lui une apparence totalement nouvelle ! Laissez libre cours à votre imagination… que diriez vous d’une nouvelle palette de couleurs ou de nouvelles polices d’écriture ?" + +#: wp-admin/includes/dashboard.php:2116 +msgid "Switch up your site’s look & feel with Styles" +msgstr "Modifiez l’apparence de votre site avec les styles globaux" + +#: wp-admin/includes/dashboard.php:2104 +msgid "Open the Customizer" +msgstr "Ouvrir l’outil de personnalisation" + +#: wp-admin/includes/dashboard.php:2102 +msgid "Configure your site’s logo, header, menus, and more in the Customizer." +msgstr "Configurez le logo de votre site, son entête, ses menus et bien plus encore avec l’outil de personnalisation." + +#: wp-admin/includes/dashboard.php:2101 +msgid "Start Customizing" +msgstr "Personnalisez votre site comme vous le voulez" + +#: wp-admin/includes/dashboard.php:2099 +msgid "Open site editor" +msgstr "Ouvrir l’éditeur de site" + +#: wp-admin/includes/dashboard.php:2098 +msgid "Design everything on your site — from the header down to the footer, all using blocks and patterns." +msgstr "Bâtissez l’ensemble de votre site, de l’entête au pied de page, en utilisant simplement des blocs et des compositions." + +#: wp-admin/includes/dashboard.php:2097 +msgid "Customize your entire site with block themes" +msgstr "Personnalisez l’ensemble de votre site avec les thèmes basés sur des blocs" + +#: wp-admin/includes/dashboard.php:2087 +msgid "Add a new page" +msgstr "Créer une nouvelle page" + +#: wp-admin/includes/dashboard.php:2086 +msgid "Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash." +msgstr "Les compositions de blocs sont des mises en page de blocs pré-configurées. Utilisez-les pour vous en inspirer ou pour créer des nouvelles page en un clin d’œil." + +#: wp-admin/includes/dashboard.php:2085 +msgid "Author rich content with blocks and patterns" +msgstr "Créez des contenus riches avec les blocs et les compositions" + +#. translators: %s: Current WordPress version. +#: wp-admin/includes/dashboard.php:2073 +msgid "Learn more about the %s version." +msgstr "En savoir plus sur la version %s" + +#: wp-admin/freedoms.php:35 +msgid "WordPress is free and open source software" +msgstr "WordPress est un logiciel libre et ouvert" + +#: wp-admin/menu.php:286 wp-admin/menu.php:287 wp-admin/menu.php:316 +#: wp-admin/network/menu.php:112 +msgid "Plugin File Editor" +msgstr "Éditeur de fichiers des extensions" + +#: wp-admin/menu.php:266 wp-admin/menu.php:267 wp-admin/network/menu.php:87 +msgid "Theme File Editor" +msgstr "Éditeur de fichiers des thèmes" + +#. translators: %s: Documentation URL. +#: wp-admin/user-edit.php:864 +msgid "If this is a development website, you can set the environment type accordingly to enable application passwords." +msgstr "S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications." + +#: wp-admin/user-edit.php:859 +msgid "The application password feature requires HTTPS, which is not enabled on this site." +msgstr "La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site." + +#. translators: Last update time format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/update-core.php:1115 +msgid "g:i a T" +msgstr "G\\hi" + +#: wp-admin/theme-editor.php:53 +msgid "Documentation on Editing Themes" +msgstr "Documentation sur l’éditeur de thèmes" + +#: wp-admin/site-health.php:90 +msgid "Documentation on Site Health tool" +msgstr "Documentation sur l’outil Santé du site" + +#: wp-admin/site-health.php:84 +msgid "In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support." +msgstr "Dans l’onglet Informations, vous trouverez tous les détails concernant la configuration de votre site WordPress, le serveur, et la base de données. Il existe également une fonctionnalité d’exportation qui vous permet de copier toutes les informations concernant votre site vers le presse-papier, ce qui vous aidera à résoudre les problèmes sur votre site lorsque vous chercherez de l’aide sur les forums." + +#: wp-admin/site-health.php:83 +msgid "In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention." +msgstr "Dans l’onglet État, vous pouvez voir les informations critiques concernant votre configuration de WordPress, ainsi que tout ce qui requiert votre attention." + +#: wp-admin/site-health.php:82 +msgid "This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation." +msgstr "Cet écran vous permet d’obtenir un diagnostic de santé de votre site, et affiche une évaluation globale de l’état de votre installation." + +#: wp-admin/options-privacy.php:47 +msgid "Documentation on Privacy Settings" +msgstr "Documentation sur les réglages de confidentialité" + +#: wp-admin/options-privacy.php:41 +msgid "This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate." +msgstr "Cet écran comprend des suggestions pour vous aider à rédiger votre propre politique de confidentialité. Cependant, il est de votre responsabilité d’utiliser correctement ces ressources, de fournir les informations requises par votre politique de confidentialité, et de maintenir ces informations à jour et exactes." + +#: wp-admin/options-privacy.php:40 +msgid "The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show." +msgstr "L’écran Confidentialité vous permet soit de créer une nouvelle page de politique de confidentialité, soit de choisir une page existante à afficher." + +#: wp-admin/options-discussion.php:66 +msgid "Individual posts may override these settings. Changes here will only be applied to new posts." +msgstr "Des publications individuelles peuvent surcharger ces réglages. Les modifications ne seront ici appliquées qu’aux nouvelles publications." + +#: wp-admin/nav-menus.php:597 +msgid "Menu item moved to the top" +msgstr "Élément de menu déplacé vers le haut" + +#: wp-admin/nav-menus.php:594 +msgid "Menu item removed" +msgstr "Élément de menu retiré" + +#: wp-admin/index.php:37 +msgid "The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title." +msgstr "Le Tableau de bord est le premier endroit sur lequel vous arrivez à chaque fois que vous vous connectez à votre site. C’est là que vous trouverez tous vos outils WordPress. Si vous avez besoin d’aide, cliquez simplement sur l’onglet « Aide » au dessus du titre de l’écran." + +#: wp-admin/index.php:36 +msgid "Welcome to your WordPress Dashboard!" +msgstr "Bienvenue sur votre Tableau de bord WordPress !" + +#: wp-admin/includes/user.php:680 +msgid "The application ID must be a UUID." +msgstr "L’ID de l’application doit être un UUID." + +#: wp-admin/includes/dashboard.php:1378 +msgid "Select location" +msgstr "Sélectionner un emplacement" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:1203 +msgid "Visit plugin site for %s" +msgstr "Consultez le site de l’extension %s" + +#: wp-admin/includes/class-wp-plugins-list-table.php:859 +#: wp-admin/includes/class-wp-plugins-list-table.php:965 +msgctxt "plugin" +msgid "Cannot Activate" +msgstr "Impossible à activer" + +#: wp-admin/includes/class-wp-debug-data.php:1657 +msgid "Max connections number" +msgstr "Nombre maximal de connexions" + +#: wp-admin/includes/class-wp-debug-data.php:1653 +msgid "Max allowed packet size" +msgstr "Taille maximale autorisée du paquet" + +#: wp-admin/authorize-application.php:94 +msgid "Your website appears to use Basic Authentication, which is not currently compatible with application passwords." +msgstr "Votre site semble utiliser une authentification de base, ce qui n’est actuellement pas compatible avec les mots de passe d’applications." + +#. translators: Editor admin screen title. 1: "Edit item" text for the post +#. type, 2: Post title. +#: wp-admin/admin-header.php:65 +msgid "%1$s “%2$s”" +msgstr "%1$s « %2$s »" + +#: wp-admin/includes/theme.php:347 +msgid "Template Editing" +msgstr "Modification de modèles" + +#. translators: %s: https://wordpress.org/about/license +#: wp-admin/freedoms.php:52 +msgid "WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL." +msgstr "WordPress est distribué sous la merveilleuse licence GPL, qui vous garantit la plus grande liberté d’utilisation possible." + +#: wp-admin/credits.php:63 +msgid "Want to see your name in lights on this page?" +msgstr "Voudriez-vous voir votre nom cité sur cette page ?" + +#: wp-admin/credits.php:57 wp-admin/credits.php:65 +msgid "Get involved in WordPress." +msgstr "Contribuez à WordPress" + +#. translators: 1: https://wordpress.org/about +#: wp-admin/credits.php:52 +msgid "WordPress is created by a worldwide team of passionate individuals." +msgstr "WordPress est créé par une équipe de personnes passionnées répartie dans le monde entier." + +#. translators: %s: Name of deactivated plugin. +#: wp-admin/includes/plugin.php:2656 +msgid "%s plugin deactivated during WordPress upgrade." +msgstr "Extension « %s » désactivée pendant la mise à jour de WordPress." + +#. translators: 1: Name of deactivated plugin, 2: Plugin version deactivated, +#. 3: Current WP version. +#: wp-admin/includes/plugin.php:2644 +msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s." +msgstr "L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s." + +#. translators: 1: Name of deactivated plugin, 2: Plugin version deactivated, +#. 3: Current WP version, 4: Compatible plugin version. +#: wp-admin/includes/plugin.php:2635 +msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." +msgstr "L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus." + +#: wp-admin/freedoms.php:30 +msgid "The Four Freedoms" +msgstr "Les quatre libertés" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:1311 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:641 +msgctxt "theme" +msgid "Delete %s" +msgstr "Supprimer %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:631 wp-admin/themes.php:650 wp-admin/themes.php:1022 +#: wp-admin/themes.php:1040 wp-admin/themes.php:1267 wp-admin/themes.php:1289 +msgctxt "theme" +msgid "Live Preview %s" +msgstr "Prévisualiser %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:610 wp-admin/themes.php:1002 +msgctxt "theme" +msgid "Customize %s" +msgstr "Personnaliser %s" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:584 wp-admin/themes.php:976 +msgctxt "theme" +msgid "View Theme Details for %s" +msgstr "Voir les détails du thème %s" + +#. translators: Hidden accessibility text. +#: wp-admin/site-health.php:176 +msgid "Toggle extra menu items" +msgstr "Permuter les éléments de menu additionnels" + +#. translators: %s: The currently displayed tab. +#: wp-admin/site-health.php:43 +msgid "Site Health - %s" +msgstr "Santé du site – %s" + +#. translators: 1: wp-config.php, 2: Documentation URL. +#: wp-admin/setup-config.php:485 +msgid "You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information." +msgstr "Vous devez rendre le fichier %1$s accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Changer les droits des fichiers pour plus d’informations." + +#: wp-admin/options-permalink.php:478 wp-admin/options-permalink.php:510 +#: wp-admin/options-permalink.php:545 +msgid "Rewrite rules:" +msgstr "Règles de réécriture :" + +#: wp-admin/nav-menus.php:1168 +msgid "List of menu items selected for deletion:" +msgstr "Liste des éléments de menu sélectionnés pour la suppression :" + +#: wp-admin/nav-menus.php:1166 +msgid "Remove Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: wp-admin/nav-menus.php:1129 wp-admin/nav-menus.php:1164 +msgid "Bulk Select" +msgstr "Sélection groupée" + +#. translators: %s: Item name. +#: wp-admin/nav-menus.php:592 +msgid "Deleted menu item: %s." +msgstr "Élément de menu supprimé : %s." + +#. translators: %s: Item name. +#: wp-admin/nav-menus.php:590 +msgid "item %s" +msgstr "élément %s" + +#. translators: %s: Number of available theme updates. +#: wp-admin/menu.php:209 wp-admin/network/menu.php:68 +msgid "Themes %s" +msgstr "Thèmes %s" + +#. translators: %s: Error message. +#: wp-admin/includes/privacy-tools.php:419 +msgid "Unable to encode the personal data for export. Error: %s" +msgstr "Impossible d’encoder les données personnelles pour l’exportation. Erreur : %s" + +#. translators: %s: Post meta key. +#: wp-admin/includes/privacy-tools.php:404 +msgid "The %s post meta must be an array." +msgstr "La metadonnée de publication %s doit être un tableau." + +#: wp-admin/includes/dashboard.php:2014 +msgid "Your site’s health is looking good, but there is still one thing you can do to improve its performance and security." +msgstr "La santé de votre site semble bonne, mais il y a encore une chose que vous pouvez faire pour améliorer ses performances et sa sécurité." + +#: wp-admin/includes/dashboard.php:2010 +msgid "Your site has a critical issue that should be addressed as soon as possible to improve its performance and security." +msgstr "Votre site rencontre une erreur critique qui doit être réglée dès que possible afin d’améliorer ses performances et sa sécurité." + +#. translators: %s: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1749 +msgid "Learn how to browse happy" +msgstr "Apprenez comment naviguer sereinement" + +#: wp-admin/includes/dashboard.php:1716 +msgid "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." +msgstr "Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site." + +#: wp-admin/includes/class-wp-debug-data.php:720 +msgid "GD supported file formats" +msgstr "Formats de fichier GD pris en charge" + +#: wp-admin/includes/class-wp-debug-data.php:680 +msgid "Unable to determine" +msgstr "Impossible à déterminer" + +#: wp-admin/includes/class-wp-debug-data.php:679 +msgid "ImageMagick supported file formats" +msgstr "Formats de fichier ImageMagik pris en charge" + +#: wp-admin/includes/class-wp-debug-data.php:598 +msgid "Imagick version" +msgstr "Version de Imagick" + +#: wp-admin/includes/class-theme-installer-skin.php:254 +msgctxt "theme" +msgid "Uploaded" +msgstr "Téléversé" + +#: wp-admin/includes/class-plugin-installer-skin.php:319 +msgctxt "plugin" +msgid "Replace current with uploaded" +msgstr "Remplacer l’extension actuelle par celle que vous avez téléversée" + +#: wp-admin/includes/class-plugin-installer-skin.php:231 +msgctxt "plugin" +msgid "Uploaded" +msgstr "Téléversée" + +#: wp-admin/includes/class-plugin-installer-skin.php:230 +msgctxt "plugin" +msgid "Current" +msgstr "Actuelle" + +#. translators: %s: A link to activate the Link Manager plugin. +#: wp-admin/includes/bookmark.php:371 +msgid "Please activate the Link Manager plugin to use the link manager." +msgstr "Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien." + +#: wp-admin/options-privacy.php:265 +msgid "Create a new Privacy Policy page" +msgstr "Créer une nouvelle page de politique de confidentialité" + +#: wp-admin/export-personal-data.php:132 +msgid "Send personal data export confirmation email." +msgstr "Envoyer un e-mail de confirmation d’exportation des données personnelles." + +#: wp-admin/export-personal-data.php:108 +msgid "This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file." +msgstr "Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en exportant les données connues d’un compte donné dans un fichier ZIP." + +#: wp-admin/export-personal-data.php:65 +msgid "Documentation on Export Personal Data" +msgstr "Documentation sur l’exportation de données personnelles" + +#: wp-admin/export-personal-data.php:57 +msgid "Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well." +msgstr "De nombreuses extensions peuvent collecter ou stocker des données personnelles dans la base de données WordPress ou sur leurs propres serveurs. Toute demande d’exportation de données personnelles doit également inclure les données des extensions." + +#. translators: %s: URL to Privacy Policy Guide screen. +#: wp-admin/export-personal-data.php:48 +msgid "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide." +msgstr "Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil d’exportation des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité." + +#: wp-admin/export-personal-data.php:41 +msgid "Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL." +msgstr "Commentaires — Pour tout commentaire déposé sur le site, adresse e-mail, adresse IP, agent utilisateur (navigateur/OS), date/heure, contenu du commentaire et URL du contenu." + +#: wp-admin/export-personal-data.php:25 +msgid "This screen is where you manage requests for an export of personal data." +msgstr "Cet écran vous permet de gérer les demandes d’exportation de données personnelles." + +#: wp-admin/site-health.php:118 +msgid "Site URLs could not be switched to HTTPS." +msgstr "Les URL du site ne peuvent pas être passées en HTTPS." + +#: wp-admin/site-health.php:109 +msgid "Site URLs switched to HTTPS." +msgstr "Les URL du site ont été passées en HTTPS." + +#: wp-admin/site-health.php:66 +msgid "It looks like HTTPS is not supported for your website at this point." +msgstr "Il semble que le protocole HTTPS ne soit pas pris en charge par votre site à ce stade." + +#: wp-admin/site-health.php:62 +msgid "Sorry, you are not allowed to update this site to HTTPS." +msgstr "Désolé, vous n’avez pas l’autorisation de passer ce site en HTTPS." + +#. translators: %s: Number of users. +#: wp-admin/users.php:660 +msgid "Password reset links sent to %s user." +msgid_plural "Password reset links sent to %s users." +msgstr[0] "Le lien de réinitialisation du mot de passe a été envoyé à %s compte." +msgstr[1] "Le lien de réinitialisation du mot de passe a été envoyé à %s comptes." + +#: wp-admin/users.php:657 +msgid "Password reset link sent." +msgstr "Le lien de réinitialisation du mot de passe a été envoyé." + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:731 +msgid "Send %s a link to reset their password. This will not change their password, nor will it force a change." +msgstr "Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas son mot de passe, ni ne l’obligera à le modifier." + +#: wp-admin/user-edit.php:724 +msgid "Send Reset Link" +msgstr "Envoyer le lien de réinitialisation" + +#: wp-admin/privacy-policy-guide.php:95 +msgid "Policies" +msgstr "Politiques" + +#: wp-admin/options-privacy.php:182 wp-admin/privacy-policy-guide.php:65 +msgid "The Privacy Settings require JavaScript." +msgstr "Les réglages de confidentialité nécessitent JavaScript." + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/options-privacy.php:172 wp-admin/privacy-policy-guide.php:55 +msgctxt "Privacy Settings" +msgid "Policy Guide" +msgstr "Guide de politique" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/options-privacy.php:165 wp-admin/privacy-policy-guide.php:48 +msgctxt "Privacy Settings" +msgid "Settings" +msgstr "Réglages " + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:82 +msgid "Re-install version %s" +msgstr "Réinstaller la version %s" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:71 +msgid "Update to latest %s nightly" +msgstr "Mettre à jour vers la dernière version nightly" + +#: wp-admin/erase-personal-data.php:132 +msgid "Send personal data erasure confirmation email." +msgstr "Envoyer l’e-mail de confirmation de la suppression des données personnelles." + +#: wp-admin/erase-personal-data.php:127 wp-admin/export-personal-data.php:127 +msgid "Confirmation email" +msgstr "E-mail de confirmation" + +#: wp-admin/erase-personal-data.php:108 +msgid "This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user." +msgstr "Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en supprimant ou en anonymisant les données connues d’un compte donné." + +#: wp-admin/erase-personal-data.php:65 +msgid "Documentation on Erase Personal Data" +msgstr "Documentation sur l’effacement de données personnelles" + +#: wp-admin/erase-personal-data.php:57 +msgid "Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well." +msgstr "De nombreuses extensions peuvent collecter ou stocker des données personnelles, soit dans la base de données WordPress, soit à distance. Toute demande d’effacement de données personnelles doit également effacer les données des extensions." + +#: wp-admin/erase-personal-data.php:55 wp-admin/export-personal-data.php:55 +msgid "Plugin Data" +msgstr "Données des extensions" + +#. translators: %s: URL to Privacy Policy Guide screen. +#: wp-admin/erase-personal-data.php:48 +msgid "If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide." +msgstr "Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil de suppression des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité." + +#: wp-admin/erase-personal-data.php:42 +msgid "Media — A list of URLs for all media file uploads made by the user." +msgstr " Fichiers multimédias – une liste d’URL pour tous les téléversements de fichiers multimédias effectués par le compte." + +#: wp-admin/erase-personal-data.php:40 wp-admin/export-personal-data.php:40 +msgid "Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login." +msgstr "Jetons de session – informations de connexion de l’utilisateur ou de utilisatrice, adresses IP, date d’expiration, agent utilisateur (navigateur/OS) et dernière connexion." + +#: wp-admin/erase-personal-data.php:39 +msgid "Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget." +msgstr "Localisation d’évènements communautaires – adresse IP de l’utilisateur ou de l’utilisatrice qui est utilisée pour les prochains évènements de la communauté indiqués dans le widget du tableau de bord." + +#: wp-admin/erase-personal-data.php:38 wp-admin/export-personal-data.php:38 +msgid "Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date." +msgstr "Informations de profil — adresse e-mail du compte, identifiant, nom affiché, pseudonyme, prénom, nom, description/bio, et date d’inscription." + +#: wp-admin/erase-personal-data.php:35 wp-admin/export-personal-data.php:35 +msgid "Default Data" +msgstr "Données par défaut" + +#: wp-admin/erase-personal-data.php:27 wp-admin/export-personal-data.php:27 +msgid "The tool associates data stored in WordPress with a supplied email address, including profile data and comments." +msgstr "L’outil associe les données stockées dans WordPress par une adresse e-mail fournie, y compris les données de profil et les commentaires." + +#: wp-admin/includes/dashboard.php:1483 +msgid "https://make.wordpress.org/community/organize-event-landing-page/" +msgstr "https://make.wordpress.org/community/organize-event-landing-page/" + +#. translators: %s: Localized meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1482 +msgid "Want more events? Help organize the next one!" +msgstr "Vous voulez plus d’évènements ? Aidez à organiser le prochain !" + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:5630 +msgid "A password reset link was emailed to %s." +msgstr "Un lien de réinitialisation du mot de passe a été envoyé par e-mail à %s." + +#: wp-admin/includes/ajax-actions.php:5620 +msgid "Cannot send password reset, permission denied." +msgstr "Impossible d’envoyer le lien de réinitialisation du mot de passe, autorisation refusée." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2295 +msgid "The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled." +msgstr "Le réglage pour %1$s est actuellement configuré à 0, ce qui pourrait causer quelques problèmes lorsque vous essayez de téléverser des fichiers par le biais d’extensions ou de thèmes qui dépendent de différentes méthodes de téléversement. Il est recommandé de configurer ce réglage à une valeur fixe, correspondant idéalement à la valeur de %2$s, car certaines méthodes de téléversement lisent la valeur 0 comme étant soit illimitée, soit désactivée." + +#: wp-admin/includes/class-wp-site-health.php:1563 +#: wp-admin/includes/class-wp-site-health.php:1570 +msgid "Talk to your web host about supporting HTTPS for your website." +msgstr "Contactez votre hébergeur pour la prise en charge HTTPS sur votre site." + +#: wp-admin/includes/class-wp-site-health.php:1544 +#: wp-admin/includes/class-wp-site-health.php:1552 +msgid "Update your site to use HTTPS" +msgstr "Mettre à jour votre site pour utiliser le HTTPS" + +#. translators: 1: wp-config.php, 2: WP_HOME, 3: WP_SITEURL +#: wp-admin/includes/class-wp-site-health.php:1530 +msgid "However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s." +msgstr "Bien que votre adresse WordPress est actuellement contrôlée par une constante PHP et ne peut donc pas être mise à jour. Vous devez modifier votre %1$s et supprimer ou mettre à jour les définitions de %2$s et de %3$s." + +#: wp-admin/includes/class-wp-site-health.php:1522 +msgid "HTTPS is already supported for your website." +msgstr "Le HTTPS est déjà pris en charge pour votre site." + +#. translators: 1: URL to Settings > General > WordPress Address, 2: URL to +#. Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1511 +msgid "Your WordPress Address and Site Address are not set up to use HTTPS." +msgstr "Votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS." + +#. translators: 1: URL to Settings > General > WordPress Address, 2: URL to +#. Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1501 +msgid "You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default." +msgstr "Vous accédez à ce site en utilisant le HTTPS, mais votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS par défaut." + +#. translators: %s: URL to Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1490 +msgid "Your Site Address is not set up to use HTTPS." +msgstr "Votre adresse de site n’est pas configurée pour utiliser le HTTPS." + +#: wp-admin/includes/class-wp-site-health.php:1379 +msgid "Learn more about debugging in WordPress." +msgstr "En savoir plus sur le débogage de WordPress." + +#: wp-admin/includes/revision.php:98 +msgid "Added" +msgstr "Ajouté" + +#: wp-admin/includes/class-wp-users-list-table.php:286 +#: wp-admin/includes/class-wp-users-list-table.php:507 +msgid "Send password reset" +msgstr "Réinitialisation de mot de passe" + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:612 +msgid "Contact information" +msgstr "Informations de contact" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:431 +msgid "Copy suggested policy text to clipboard" +msgstr "Copier la suggestion de texte de politique de confidentialité dans le presse-papier" + +#: wp-admin/includes/file.php:2018 +msgid "Directory listing failed." +msgstr "Le listage du répertoire a échoué." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:105 +#: wp-admin/includes/class-wp-theme-install-list-table.php:61 +#: wp-admin/includes/file.php:33 wp-admin/js/updates.js:3039 +msgid "Search Results" +msgstr "Résultats de recherche" + +#: wp-admin/includes/privacy-tools.php:944 +msgid "Invalid request ID when processing personal data to erase." +msgstr "ID non valide lors de la fusion des données personnelles à supprimer." + +#: wp-admin/includes/privacy-tools.php:793 +msgid "Invalid request ID when merging personal data to export." +msgstr "ID non valide lors de la fusion des données personnelles à exporter." + +#: wp-admin/includes/privacy-tools.php:545 +msgid "Unable to archive the personal data export file (HTML format)." +msgstr "Impossible d’archiver le fichier d’exportation des données personnelles (format HTML)." + +#: wp-admin/includes/privacy-tools.php:541 +msgid "Unable to archive the personal data export file (JSON format)." +msgstr "Impossible d’archiver le fichier d’exportation des données personnelles (format JSON)." + +#: wp-admin/includes/privacy-tools.php:447 +msgid "Unable to open personal data export (HTML report) for writing." +msgstr "Impossible d’ouvrir le fichier d’exportation des données personnelles (rapport HTML) en écriture." + +#: wp-admin/includes/privacy-tools.php:333 +msgid "Unable to create personal data export folder." +msgstr "Impossible de créer le dossier d’exportation des données personnelles du compte." + +#: wp-admin/includes/privacy-tools.php:173 +msgid "Request added successfully." +msgstr "La demande a bien été ajoutée." + +#: wp-admin/includes/privacy-tools.php:107 +#: wp-admin/includes/privacy-tools.php:124 +msgid "Invalid personal data action." +msgstr "Action des données personnelles non valide." + +#: wp-admin/includes/privacy-tools.php:31 +msgid "Unable to initiate confirmation for personal data request." +msgstr "Impossible d’initier la confirmation pour la demande de données personnelles." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/dashboard.php:1891 +msgid "Your site is running on an outdated version of PHP (%s), which should be updated." +msgstr "Votre site utilise une version obsolète de PHP (%s), qui devrait être mise à jour." + +#: wp-admin/includes/dashboard.php:52 +msgid "PHP Update Recommended" +msgstr "Mise à jour PHP recommandée" + +#: wp-admin/user-edit.php:842 +msgid "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." +msgstr "Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application." + +#: wp-admin/includes/class-wp-site-health.php:2368 +msgid "https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working" +msgstr "https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working" + +#: wp-admin/update-core.php:411 +msgid "This site appears to be under version control. Automatic updates are disabled." +msgstr "Ce site semble être sous contrôle de version. Les mises à jour automatiques sont désactivées." + +#: wp-admin/update-core.php:272 +msgid "You are using a development version of WordPress." +msgstr "Vous utilisez actuellement une version de développement de WordPress." + +#: wp-admin/update-core.php:78 +msgid "You can update to the latest nightly build manually:" +msgstr "Vous pouvez mettre à jour vers la dernière version du jour manuellement :" + +#: wp-admin/update-core.php:431 +msgid "Enable automatic updates for all new versions of WordPress." +msgstr "Activer les mises à jour automatiques pour toutes les nouvelles versions de WordPress." + +#: wp-admin/update-core.php:420 +msgid "Switch to automatic updates for maintenance and security releases only." +msgstr "Basculer sur les mises à jour de maintenance et de sécurité uniquement." + +#. translators: Current version of WordPress. +#: wp-admin/update-core.php:1104 +msgid "Current version: %s" +msgstr "Version actuelle : %s" + +#: wp-admin/update-core.php:435 +msgid "This site will not receive automatic updates for new versions of WordPress." +msgstr "Ce site ne recevra pas de mise à jour automatique pour les nouvelles versions de WordPress." + +#: wp-admin/update-core.php:424 +msgid "This site is automatically kept up to date with maintenance and security releases of WordPress only." +msgstr "Ce site est automatiquement mis à jour avec uniquement les versions de maintenance et de sécurité de WordPress." + +#: wp-admin/update-core.php:413 +msgid "This site is automatically kept up to date with each new version of WordPress." +msgstr "Ce site est automatiquement mis à jour avec chaque nouvelle version de WordPress." + +#: wp-admin/update-core.php:318 +msgid "WordPress will only receive automatic security and maintenance releases from now on." +msgstr "À partir de maintenant, WordPress ne recevra que les mises à jour automatiques de sécurité et de maintenance." + +#: wp-admin/update-core.php:309 +msgid "Automatic updates for all WordPress versions have been enabled. Thank you!" +msgstr "Les mises à jour automatiques de toutes les nouvelles versions de WordPress ont été activées. Merci !" + +#: wp-admin/index.php:82 +msgid "Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website." +msgstr "Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site." + +#. translators: %s: Application name. +#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:983 +#: wp-admin/js/auth-app.js:90 +msgid "Your new password for %s is:" +msgstr "Votre nouveau mot de passe pour %s est :" + +#: wp-admin/user-edit.php:837 +msgid "Add Application Password" +msgstr "Ajouter un mot de passe d’application" + +#: wp-admin/user-edit.php:823 +msgid "Required to create an Application Password, but not to update the user." +msgstr "Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte." + +#: wp-admin/about.php:315 +msgid "Go to Updates" +msgstr "Aller aux mises à jour" + +#: wp-admin/user-edit.php:225 +msgid "← Go to Users" +msgstr "← Aller aux comptes" + +#: wp-admin/revision.php:112 +msgid "← Go to editor" +msgstr "← Aller à l’éditeur" + +#: wp-admin/includes/class-plugin-installer-skin.php:145 +#: wp-admin/includes/class-plugin-installer-skin.php:151 +msgid "Go to Plugin Installer" +msgstr "Aller à l’installeur d’extensions" + +#: wp-admin/includes/class-plugin-installer-skin.php:139 +msgid "Go to Importers" +msgstr "Aller aux outils d’importation" + +#: wp-admin/includes/class-theme-installer-skin.php:164 +msgid "Go to Theme Installer" +msgstr "Aller à l’installeur de thèmes" + +#: wp-admin/includes/privacy-tools.php:294 +msgid "Go to top" +msgstr "Aller en haut" + +#. translators: %s is the name of the city we couldn't locate. Replace the +#. examples with cities in your locale, but test that they match the expected +#. location before including them. Use endonyms (native locale names) whenever +#. possible. +#: wp-admin/includes/dashboard.php:1440 +msgid "%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland." +msgstr "La localisation de %s n’a pas fonctionné. Veuillez essayer une autre ville proche. Par exemple : Rennes, Strasbourg ou Grenoble." + +#: wp-admin/authorize-application.php:323 +msgid "You will be returned to the WordPress Dashboard, and no changes will be made." +msgstr "Vous serez redirigé vers le Tableau de bord de WordPress, et aucune modification ne sera faite." + +#: wp-admin/authorize-application.php:305 +msgid "No, I do not approve of this connection" +msgstr "Non, je n’autorise pas cette connexion" + +#: wp-admin/authorize-application.php:298 +msgid "You will be given a password to manually enter into the application in question." +msgstr "Un mot de passe à saisir manuellement dans l’application en question vous sera donné." + +#. translators: %s: The URL the user is being redirected to. +#: wp-admin/authorize-application.php:285 +#: wp-admin/authorize-application.php:319 +msgid "You will be sent to %s" +msgstr "Vous allez être redirigé vers %s" + +#: wp-admin/authorize-application.php:271 +msgid "Yes, I approve of this connection" +msgstr "Oui, j’autorise la connexion" + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/authorize-application.php:177 +msgid "This will grant access to the %2$s site in this installation that you have permissions on." +msgid_plural "This will grant access to all %2$s sites in this installation that you have permissions on." +msgstr[0] "Cela donnera accès au site sur lequel vous avez des droits sur cette installation." +msgstr[1] "Cela donnera accès aux %2$s sites sur lesquels vous avez des droits sur cette installation." + +#: wp-admin/authorize-application.php:164 +msgid "Would you like to give this application access to your account? You should only do this if you trust the application in question." +msgstr "Voulez-vous fournir à cette application un accès à votre compte ? Vous ne devriez le faire que si vous avez confiance en l’application en question." + +#. translators: %s: Application name. +#: wp-admin/authorize-application.php:158 +msgid "Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question." +msgstr "Voulez-vous fournir un accès à votre compte à l’application s’identifiant comme %s ? Vous ne devriez le faire que si vous avez confiance en l’application en question." + +#: wp-admin/authorize-application.php:152 +msgid "An application would like to connect to your account." +msgstr "Une application souhaite se connecter à votre compte." + +#: wp-admin/authorize-application.php:88 wp-admin/authorize-application.php:95 +#: wp-admin/authorize-application.php:113 +msgid "Cannot Authorize Application" +msgstr "Impossible d’autoriser l’application" + +#: wp-admin/authorize-application.php:87 +msgid "The Authorize Application request is not allowed." +msgstr "La demande d’autorisation pour les applications n’est pas autorisée." + +#: wp-admin/authorize-application.php:66 +msgid "Authorize Application" +msgstr "Autoriser l’application" + +#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:992 +#: wp-admin/js/auth-app.js:98 +msgid "Be sure to save this in a safe location. You will not be able to retrieve it." +msgstr "Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer." + +#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:821 +msgid "New Application Password Name" +msgstr "Nouveau nom du mot de passe d’application" + +#. translators: 1: URL to my-sites.php, 2: Number of sites the user has. +#: wp-admin/user-edit.php:791 +msgid "Application passwords grant access to the %2$s site in this installation that you have permissions on." +msgid_plural "Application passwords grant access to all %2$s sites in this installation that you have permissions on." +msgstr[0] "Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation." +msgstr[1] "Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation." + +#: wp-admin/user-edit.php:779 +msgid "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." +msgstr "Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site." + +#: wp-admin/user-edit.php:778 +msgid "Application Passwords" +msgstr "Mots de passe d’application" + +#: wp-admin/user-edit.php:702 +msgid "Type the new password again." +msgstr "Saisissez à nouveau le nouveau mot de passe." + +#: wp-admin/user-edit.php:678 +msgid "Set New Password" +msgstr "Définir le nouveau mot de passe" + +#: wp-admin/user-new.php:617 +msgid "Type the password again." +msgstr "Saisissez à nouveau le nouveau mot de passe." + +#. translators: 1: Installed WordPress version number, 2: URL to WordPress +#. release notes, 3: New WordPress version number, including locale if +#. necessary. +#: wp-admin/update-core.php:142 +msgid "You can update from WordPress %1$s to WordPress %3$s manually:" +msgstr "Vous pouvez mettre à jour de WordPress %1$s à WordPress %3$s manuellement :" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:156 +msgid "Revoke all application passwords" +msgstr "Révoquer tous les mots de passe d’application" + +#. translators: %s: the application password's given name. +#: wp-admin/includes/class-wp-application-passwords-list-table.php:117 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:237 +msgid "Revoke \"%s\"" +msgstr "Révoquer « %s »" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:32 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:118 +#: wp-admin/includes/class-wp-application-passwords-list-table.php:238 +msgid "Revoke" +msgstr "Révoquer" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:31 +msgid "Last IP" +msgstr "Dernière IP" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:30 +msgid "Last Used" +msgstr "Dernier utilisé" + +#. translators: 1: The Site Health action that is no longer used by core. 2: +#. The new function that replaces it. +#: wp-admin/includes/ajax-actions.php:5358 +#: wp-admin/includes/ajax-actions.php:5391 +#: wp-admin/includes/ajax-actions.php:5424 +#: wp-admin/includes/ajax-actions.php:5474 +msgid "The Site Health check for %1$s has been replaced with %2$s." +msgstr "La fonction %1$s de l’outil Santé du site a été remplacée par %2$s." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:139 +msgid "Erase personal data" +msgstr "Effacer les données personnelles" + +#. translators: 1: Theme name, 2: Current version number, 3: New version +#. number. +#: wp-admin/includes/class-wp-automatic-updater.php:1395 +#: wp-admin/includes/class-wp-automatic-updater.php:1466 +msgid "- %1$s (from version %2$s to %3$s)" +msgstr "- %1$s (de la version %2$s à %3$s)" + +#: wp-admin/includes/template.php:2433 +msgid "Current Header Video" +msgstr "Vidéo d’entête actuelle" + +#: wp-admin/includes/class-wp-site-health.php:2810 +msgid "Authorization header" +msgstr "Entête d’autorisation" + +#: wp-admin/includes/class-wp-site-health.php:2369 +msgid "Learn how to configure the Authorization header." +msgstr "En savoir plus sur la configuration des entêtes d’autorisation." + +#: wp-admin/includes/class-wp-site-health.php:2363 +msgid "Flush permalinks" +msgstr "Regénérer les permaliens" + +#: wp-admin/includes/class-wp-site-health.php:2344 +msgid "The authorization header is invalid" +msgstr "L’entête d’autorisation est invalide." + +#: wp-admin/includes/class-wp-site-health.php:2342 +msgid "The authorization header is missing" +msgstr "L’entête d’autorisation est manquant" + +#: wp-admin/includes/class-wp-site-health.php:2327 +msgid "The Authorization header is working as expected" +msgstr "L’entête d’autorisation fonctionne comme prévu" + +#: wp-admin/includes/class-wp-screen.php:1118 +msgid "Some screen elements can be shown or hidden by using the checkboxes." +msgstr "Certains éléments de l’écran peuvent être affichés ou masqués en utilisant les cases à cocher." + +#: wp-admin/includes/class-wp-screen.php:1116 +msgid "Screen elements" +msgstr "Éléments de l’écran" + +#: wp-admin/includes/user.php:751 +msgid "The URL must be served over a secure connection." +msgstr "L’URL doit être accédée via une connexion sécurisée." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:570 +msgid "If you request a password reset, your IP address will be included in the reset email." +msgstr "Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation." + +#. translators: %s: Plugin search term. +#: wp-admin/includes/class-wp-plugins-list-table.php:420 +msgid "No plugins found for: %s." +msgstr "Aucune extension trouvée pour : %s." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:92 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:98 +msgid "Complete request" +msgstr "Demande terminée" + +#. translators: %s: Request email. +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:88 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:94 +msgid "Mark export request for “%s” as completed." +msgstr "Marquer la demande d’exportation pour « %s » comme terminée." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:346 +msgid "%d request deleted successfully." +msgid_plural "%d requests deleted successfully." +msgstr[0] "%d demande bien supprimée." +msgstr[1] "%d demandes bien supprimées." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:329 +msgid "%d request failed to delete." +msgid_plural "%d requests failed to delete." +msgstr[0] "%d demande de suppression a échoué." +msgstr[1] "%d demandes de suppression ont échoué." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:303 +msgid "%d request marked as complete." +msgid_plural "%d requests marked as complete." +msgstr[0] "%d demande marquée comme terminée." +msgstr[1] "%d demandes marquées comme terminées." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:276 +msgid "%d confirmation request re-sent successfully." +msgid_plural "%d confirmation requests re-sent successfully." +msgstr[0] "%d demande de confirmation renvoyée avec succès." +msgstr[1] "%d demandes de confirmation renvoyées avec succès." + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:259 +msgid "%d confirmation request failed to resend." +msgid_plural "%d confirmation requests failed to resend." +msgstr[0] "%d demande de confirmation n’a pas pu être renvoyée." +msgstr[1] "%d demandes de confirmation n’ont pas pu être renvoyées." + +#: wp-admin/includes/class-wp-privacy-requests-table.php:217 +msgid "Mark requests as completed" +msgstr "Marquer les demandes comme terminées" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:46 +msgid "Next steps" +msgstr "Étapes suivantes" + +#: wp-admin/includes/privacy-tools.php:566 +msgid "Unable to open personal data export file (archive) for writing." +msgstr "Impossible d’ouvrir en écriture le fichier (archive) d’exportation des données confidentielles du compte." + +#: wp-admin/includes/privacy-tools.php:432 +msgid "Unable to open personal data export file (JSON report) for writing." +msgstr "Impossible d’ouvrir le fichier (rapport JSON) d’exportation des données confidentielles du compte." + +#: wp-admin/includes/privacy-tools.php:341 +msgid "Unable to protect personal data export folder from browsing." +msgstr "Impossible de protéger le dossier d’exportation de confidentialité du compte contre l’affichage public." + +#: wp-admin/includes/privacy-tools.php:325 +msgid "Invalid email address when generating personal data export file." +msgstr "Réception d’une adresse e-mail non valide lors de la génération du fichier d’exportation de confidentialité du compte." + +#: wp-admin/includes/privacy-tools.php:319 +msgid "Invalid request ID when generating personal data export file." +msgstr "ID non valide lors de la demande génération du fichier d’exportation de confidentialité du compte." + +#: wp-admin/includes/privacy-tools.php:312 +msgid "Unable to generate personal data export file. ZipArchive not available." +msgstr "Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible." + +#. translators: %s: Search query. +#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:343 +#: wp-admin/edit.php:429 wp-admin/link-manager.php:111 wp-admin/plugins.php:778 +#: wp-admin/upload.php:430 wp-admin/users.php:795 wp-admin/js/updates.js:3139 +#: wp-admin/network/sites.php:399 wp-admin/network/themes.php:374 +#: wp-admin/network/users.php:300 +msgid "Search results for: %s" +msgstr "Résultats de recherche pour : %s" + +#: wp-admin/options-reading.php:46 +msgid "Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive." +msgstr "Notez que même lorsqu’il est paramétré pour décourager les moteurs de recherche, votre site est toujours visible sur le web et que tous les moteurs de recherche ne suivent pas cette directive." + +#: wp-admin/options-reading.php:45 +msgid "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen." +msgstr "Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés ou non. Si vous préférez que ces services ignorent votre site, cochez l’option « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2284 +msgid "The \"%1$s\" value is smaller than \"%2$s\"" +msgstr "La valeur « %1$s » est inférieure à « %2$s »" + +#: wp-admin/includes/class-wp-debug-data.php:229 +msgid "Environment type" +msgstr "Type d’environnement" + +#: wp-admin/plugins.php:597 +msgid "Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system." +msgstr "Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible." + +#: wp-admin/includes/theme.php:902 wp-admin/themes.php:1164 +msgid "Update Incompatible" +msgstr "Mise à jour non compatible" + +#: wp-admin/update-core.php:733 +msgid "This update does not work with your version of WordPress." +msgstr "Cette mise à jour ne fonctionne pas avec votre version de WordPress." + +#: wp-admin/update-core.php:699 +msgid "This update does not work with your versions of WordPress and PHP." +msgstr "Cette mise à jour ne fonctionne pas avec votre version de WordPress et de PHP." + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:221 wp-admin/options-discussion.php:225 +msgid "Disallowed Comment Keys" +msgstr "Clés de commentaires non autorisées" + +#: wp-admin/includes/class-wp-site-health.php:2763 +msgid "Plugin and theme auto-updates" +msgstr "Mise à jour auto des extensions et thèmes" + +#: wp-admin/includes/class-wp-site-health.php:3099 +msgid "There appear to be no issues with plugin and theme auto-updates." +msgstr "Il ne semble pas y avoir de problème avec les mises à jour automatiques des extensions et des thèmes." + +#: wp-admin/includes/class-wp-site-health.php:3093 +msgid "Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Les mises à jour automatiques des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible." + +#: wp-admin/includes/class-wp-site-health.php:3088 +msgid "Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Les mises à jour automatiques des extensions semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible." + +#: wp-admin/includes/class-wp-site-health.php:3083 +msgid "Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Les mises à jour automatiques des extensions et des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible." + +#: wp-admin/includes/class-wp-site-health.php:3074 +msgid "Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected." +msgstr "Les mises à jour automatiques des extensions et/ou des thèmes semblent désactivées, mais les réglages s’affichent tout de même. Cela pourrait empêcher les mises à jour automatiques de fonctionner comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:1801 +msgid "Your site may have problems auto-updating plugins and themes" +msgstr "Votre site semble avoir des problèmes avec les mises à jour automatiques des extensions et des thèmes." + +#: wp-admin/includes/class-wp-site-health.php:1790 +msgid "Plugin and theme auto-updates ensure that the latest versions are always installed." +msgstr "Les mises à jour automatiques des extensions et des thèmes permettent de s’assurer qu’ils soient toujours installés dans leur dernière version disponible." + +#: wp-admin/includes/class-wp-site-health.php:1782 +msgid "Plugin and theme auto-updates appear to be configured correctly" +msgstr "Les mises à jour automatiques des extensions et des thèmes semblent correctement configurées" + +#. translators: Hidden accessibility text. %s: Theme name. +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:149 +#: wp-admin/includes/class-theme-upgrader-skin.php:115 +#: wp-admin/includes/class-wp-themes-list-table.php:217 +msgctxt "theme" +msgid "Activate “%s”" +msgstr "Activer « %s »" + +#: wp-admin/includes/ajax-actions.php:5564 +msgid "Sorry, you are not allowed to modify plugins." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les extensions." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2305 +msgid "The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files." +msgstr "Le réglage de %1$s est inférieur à %2$s, ce qui pourrait causer des problèmes lors du téléversement de fichiers." + +#. translators: 1: file_uploads, 2: 0 +#: wp-admin/includes/class-wp-site-health.php:2270 +msgid "%1$s is set to %2$s. You won't be able to upload files on your site." +msgstr "%1$s est réglé sur %2$s. Vous ne pourrez pas téléverser des fichiers sur votre site." + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-site-health.php:2258 +msgid "The %s function has been disabled, some media settings are unavailable because of this." +msgstr "La fonction %s a été désactivée. De ce fait, certains réglages des médias ne sont pas disponibles." + +#. translators: 1: file_uploads, 2: php.ini +#: wp-admin/includes/class-wp-site-health.php:2245 +msgid "The %1$s directive in %2$s determines if uploading files is allowed on your site." +msgstr "La directive %1$s dans le fichier %2$s détermine si le téléversement de fichiers est autorisé sur votre site." + +#: wp-admin/includes/class-wp-site-health.php:2235 +msgid "Files can be uploaded" +msgstr "Les fichiers peuvent être téléversés" + +#: wp-admin/includes/class-wp-debug-data.php:635 +msgid "Max effective file size" +msgstr "Taille de fichier effective maximale" + +#: wp-admin/includes/class-wp-debug-data.php:631 +msgid "Max size of an uploaded file" +msgstr "Taille maximale des fichiers téléversés" + +#: wp-admin/includes/class-wp-debug-data.php:627 +msgid "Max size of post data allowed" +msgstr "Taille maximale autorisée pour les données des publications" + +#: wp-admin/includes/class-wp-debug-data.php:622 +#: wp-admin/includes/class-wp-site-health.php:2759 +msgid "File uploads" +msgstr "Téléversements de fichiers" + +#: wp-admin/includes/class-wp-debug-data.php:604 +msgid "File upload settings" +msgstr "Réglages des téléversements de fichiers" + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:452 +msgctxt "theme" +msgid "Cannot Install %s" +msgstr "Impossible d’installer %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/deprecated.php:1392 +msgctxt "plugin" +msgid "Install %s" +msgstr "Installer %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-theme-install-list-table.php:338 +#: wp-admin/theme-install.php:445 +msgctxt "theme" +msgid "Install %s" +msgstr "Installer %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:268 wp-admin/includes/update.php:758 +msgctxt "theme" +msgid "Update %s now" +msgstr "Mettre à jour %s maintenant" + +#. translators: 1: Theme name, 2: Version number. +#: wp-admin/includes/class-wp-automatic-updater.php:1403 +#: wp-admin/includes/class-wp-automatic-updater.php:1474 +msgid "- %1$s version %2$s" +msgstr "- %1$s version %2$s" + +#: wp-admin/theme-install.php:413 wp-admin/theme-install.php:492 +msgctxt "theme" +msgid "Activated" +msgstr "Activé" + +#: wp-admin/themes.php:86 +msgid "Sorry, you are not allowed to enable themes automatic updates." +msgstr "Désolé, vous n’avez pas l’autorisation d’activer les mises à jour automatiques de thèmes." + +#: wp-admin/includes/class-plugin-installer-skin.php:217 +msgid "This plugin is already installed." +msgstr "Cette extension est déjà installée." + +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/includes/plugin-install.php:973 wp-admin/includes/update.php:566 +#: wp-admin/js/updates.js:2544 +msgctxt "plugin" +msgid "Update %s now" +msgstr "Mettre à jour %s maintenant" + +#. translators: %s: Importer name. +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/import.php:165 wp-admin/includes/plugin-install.php:951 +#: wp-admin/js/updates.js:1308 wp-admin/js/updates.js:2553 +#: wp-admin/js/updates.js:2689 +msgctxt "plugin" +msgid "Install %s now" +msgstr "Installer %s maintenant" + +#. translators: Hidden accessibility text. +#: wp-admin/user-edit.php:997 wp-admin/js/application-passwords.js:203 +#: wp-admin/js/common.js:1109 +msgid "Dismiss this notice." +msgstr "Ignorer cette notification." + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:430 wp-admin/themes.php:641 +#: wp-admin/themes.php:1031 wp-admin/themes.php:1299 +msgctxt "theme" +msgid "Cannot Activate %s" +msgstr "Impossible d’activer %s" + +#: wp-admin/themes.php:335 wp-admin/network/themes.php:434 +msgid "Theme will no longer be auto-updated." +msgstr "Le thème ne sera plus mis à jour automatiquement." + +#: wp-admin/themes.php:326 wp-admin/network/themes.php:423 +msgid "Theme will be auto-updated." +msgstr "Le thème sera mis à jour automatiquement." + +#: wp-admin/themes.php:191 wp-admin/network/themes.php:328 +msgid "Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Les mises à jour automatiques peuvent être activées ou désactivées pour chaque thème. Les thèmes qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron." + +#: wp-admin/themes.php:106 +msgid "Sorry, you are not allowed to disable themes automatic updates." +msgstr "Désolé, vous n’avez pas l’autorisation de désactiver les mises à jour automatiques des thèmes." + +#: wp-admin/plugins.php:469 +msgid "Sorry, you are not allowed to manage plugins automatic updates." +msgstr "Désolé, vous n’êtes pas autorisé à gérer les mises à jour automatiques d’extensions." + +#: wp-admin/edit.php:185 wp-admin/post.php:326 +msgid "Error in deleting the item." +msgstr "Erreur lors de la suppression de l’élément." + +#: wp-admin/edit.php:160 wp-admin/post.php:291 wp-admin/upload.php:321 +msgid "Error in restoring the item from Trash." +msgstr "Erreur lors de la restauration de l’élément depuis la corbeille." + +#: wp-admin/edit.php:132 wp-admin/post.php:261 wp-admin/upload.php:300 +msgid "Error in moving the item to Trash." +msgstr "Erreur lors du déplacement de l’élément vers la corbeille." + +#: wp-admin/plugins.php:754 +msgid "Selected plugins will no longer be auto-updated." +msgstr "Les extensions sélectionnées ne seront plus mises à jour automatiquement." + +#: wp-admin/plugins.php:752 +msgid "Selected plugins will be auto-updated." +msgstr "Les extensions sélectionnées seront mises à jour automatiquement." + +#: wp-admin/plugins.php:750 +msgid "Plugin will no longer be auto-updated." +msgstr "L’extension ne sera plus mise à jour automatiquement." + +#: wp-admin/plugins.php:748 +msgid "Plugin will be auto-updated." +msgstr "L’extension sera mise à jour automatiquement." + +#: wp-admin/plugins.php:596 +msgid "Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Les mises à jour automatiques peuvent être activées ou désactivées extension par extension. Les extensions dont les mises à jour automatiques sont activées afficheront la date estimée de la prochaine mise à jour automatique. Les mises à jour automatiques dépendent du système de planification des tâches de WP-Cron." + +#: wp-admin/plugins.php:473 +msgid "Please connect to your network admin to manage plugins automatic updates." +msgstr "Veuillez vous connecter à l’administration de votre réseau pour gérer les mises à jour automatiques des extensions." + +#. translators: %s: Human-readable time interval. +#: wp-admin/index.php:159 +msgid "The admin email verification page will reappear after %s." +msgstr "La page de vérification de l’e-mail d’administration réapparaîtra après %s." + +#: wp-admin/includes/class-wp-debug-data.php:1168 wp-admin/plugins.php:594 +#: wp-admin/themes.php:197 wp-admin/update-core.php:1025 +#: wp-admin/network/themes.php:326 +msgid "Auto-updates" +msgstr "Mises à jour auto" + +#: wp-admin/plugins.php:598 wp-admin/themes.php:192 +#: wp-admin/update-core.php:1020 wp-admin/network/themes.php:329 +msgid "Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling." +msgstr "Veuillez noter que des thèmes et extensions tiers ou du code personnalisé peuvent passer outre la planification WordPress." + +#: wp-admin/update-core.php:1019 +msgid "Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Les mises à jour automatiques peuvent être activées ou désactivées pour les versions majeures de WordPress et pour chaque thème ou extension. Les thèmes et les extensions qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron." + +#. translators: 1: Documentation on WordPress backups, 2: Documentation on +#. updating WordPress. +#: wp-admin/update-core.php:260 +msgid "Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page." +msgstr "Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, consultez la page de documentation Comment mettre à jour WordPress." + +#: wp-admin/customize.php:203 wp-admin/theme-install.php:433 +#: wp-admin/theme-install.php:495 wp-admin/themes.php:645 +#: wp-admin/themes.php:1035 wp-admin/themes.php:1303 +msgctxt "theme" +msgid "Cannot Activate" +msgstr "Impossible à activer" + +#: wp-admin/comment.php:47 +msgid "You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again." +msgstr "Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau." + +#: wp-admin/async-upload.php:70 +msgctxt "media item" +msgid "Success" +msgstr "Succès" + +#. translators: 1: Current WordPress version, 2: Plugin name, 3: Required +#. WordPress version. +#: wp-admin/includes/plugin.php:1192 +msgctxt "plugin" +msgid "Error: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s." +msgstr "Erreur : la version courante de WordPress (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite WordPress %3$s." + +#. translators: 1: Current PHP version, 2: Plugin name, 3: Required PHP +#. version. +#: wp-admin/includes/plugin.php:1181 +msgctxt "plugin" +msgid "Error: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s." +msgstr "Erreur : la version courante de PHP (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite PHP %3$s." + +#. translators: 1: Current WordPress version, 2: Current PHP version, 3: Plugin +#. name, 4: Required WordPress version, 5: Required PHP version. +#: wp-admin/includes/plugin.php:1168 +msgctxt "plugin" +msgid "Error: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s." +msgstr "Erreur : la version courante de WordPress (%1$s) et PHP (%2$s) ne correspondent pas aux prérequis minimaux pour %3$s. L’extension nécessite WordPress %4$s et PHP %5$s." + +#: wp-admin/includes/ajax-actions.php:5586 +msgid "Invalid data. The item does not exist." +msgstr "Données non valides. L’élément n’existe pas." + +#: wp-admin/includes/ajax-actions.php:5557 +#: wp-admin/includes/ajax-actions.php:5582 +msgid "Invalid data. Unknown type." +msgstr "Données non valides. Type inconnu." + +#: wp-admin/includes/ajax-actions.php:5552 +msgid "Invalid data. Unknown state." +msgstr "Données non valides. État inconnu." + +#: wp-admin/includes/ajax-actions.php:5546 +msgid "Invalid data. No selected item." +msgstr "Données non valides. Aucun élément sélectionné." + +#: wp-admin/includes/ajax-actions.php:1326 +msgid "You cannot reply to a comment on a draft post." +msgstr "Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon." + +#. translators: %s: Themes screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1499 +msgid "To manage themes on your site, visit the Themes page: %s" +msgstr "Pour gérer les thèmes de votre site, visitez la page des thèmes : %s" + +#. translators: %s: Plugins screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1490 +msgid "To manage plugins on your site, visit the Plugins page: %s" +msgstr "Pour gérer les thèmes de votre site, visitez la page des extensions : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1460 +msgid "These themes are now up to date:" +msgstr "Ces thèmes sont maintenant à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1422 +msgid "These plugins are now up to date:" +msgstr "Ces extensions sont maintenant à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1389 +msgid "These themes failed to update:" +msgstr "Ces thèmes n’ont pas été mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1345 +msgid "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." +msgstr "Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire." + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1335 +msgid "Howdy! Themes failed to update on your site at %s." +msgstr "Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1332 +msgid "[%s] Some themes have failed to update" +msgstr "[%s] Certaines mises à jour de thèmes ont échoué" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1327 +msgid "Howdy! Plugins failed to update on your site at %s." +msgstr "Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1324 +msgid "[%s] Some plugins have failed to update" +msgstr "[%s] Certaines mises à jour d’extensions ont échoué" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1319 +msgid "Howdy! Plugins and themes failed to update on your site at %s." +msgstr "Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1316 +msgid "[%s] Some plugins and themes have failed to update" +msgstr "[%s] Certaines mises à jour d’extensions et de thèmes ont échoué" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1306 +msgid "Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1303 +msgid "[%s] Some themes were automatically updated" +msgstr "[%s] Certains thèmes ont été mis à jour automatiquement" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1298 +msgid "Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1295 +msgid "[%s] Some plugins were automatically updated" +msgstr "[%s] Certaines extensions ont été mises à jour automatiquement" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1290 +msgid "Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1287 +msgid "[%s] Some plugins and themes have automatically updated" +msgstr "[%s] Des extensions et thèmes ont été mis à jour automatiquement" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1420 +msgid "Move %s box down" +msgstr "Déplacer la boite %s vers le bas" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1407 +msgid "Move %s box up" +msgstr "Déplacer la boite %s vers le haut" + +#: wp-admin/includes/class-wp-comments-list-table.php:381 +msgctxt "comment" +msgid "Not spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-site-health.php:2730 +msgid "PHP Sessions" +msgstr "Sessions PHP" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1187 +msgid "A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests." +msgstr "Une session PHP a été créée par un appel de fonction %1$s. Cela interfère avec l’API REST et les requêtes de boucle (loopback). La session devrait être fermée par %2$s avant d’effectuer toute requête HTTP." + +#: wp-admin/includes/class-wp-site-health.php:1181 +msgid "An active PHP session was detected" +msgstr "Une session PHP active a été détectée" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1170 +msgid "PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests." +msgstr "Les sessions PHP créées par un appel de fonction %1$s peuvent interférer avec l’API REST et les requêtes de boucle (loopback). Une session active devrait être fermée par %2$s avant d’effectuer toute requête HTTP." + +#: wp-admin/includes/class-wp-site-health.php:1160 +msgid "No PHP sessions detected" +msgstr "Aucune session PHP détectée." + +#: wp-admin/includes/class-wp-list-table.php:170 +#: wp-admin/includes/class-wp-screen.php:1338 +msgid "Extended view" +msgstr "Vue étendue" + +#: wp-admin/includes/class-wp-list-table.php:169 +#: wp-admin/includes/class-wp-screen.php:1334 +msgid "Compact view" +msgstr "Vue compacte" + +#: wp-admin/includes/user.php:183 +msgid "Error: Passwords do not match. Please enter the same password in both password fields." +msgstr "Erreur : les mots de passe ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs." + +#: wp-admin/includes/meta-boxes.php:383 wp-admin/includes/meta-boxes.php:384 +#: wp-admin/js/post.js:777 +msgctxt "post action/button label" +msgid "Schedule" +msgstr "Planifier" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:305 +#: wp-admin/js/updates.js:3158 +msgid "No plugins found. Try a different search." +msgstr "Aucune extension trouvée. Essayez une recherche différente." + +#. translators: %s: Time until the next update. +#: wp-admin/includes/update.php:1120 +msgid "Automatic update scheduled in %s." +msgstr "Mise à jour automatique planifiée dans %s." + +#. translators: %s: Duration that WP-Cron has been overdue. +#: wp-admin/includes/update.php:1114 +msgid "Automatic update overdue by %s. There may be a problem with WP-Cron." +msgstr "La mise à jour automatique est en retard de %s. Il peut y avoir un problème avec WP-Cron." + +#: wp-admin/includes/update.php:1104 +msgid "Automatic update not scheduled. There may be a problem with WP-Cron." +msgstr "Mise à jour automatique non planifiée. Il peut y avoir un problème avec WP-Cron." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:307 +msgid "You are updating a plugin. Be sure to back up your database and files first." +msgstr "Vous mettez à jour une extension. Au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:301 +msgid "You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Vous téléversez une ancienne version d’une extension actuelle. Vous pouvez poursuivre l’installation de l’ancienne version, mais assurez-vous de sauvegarder la base de donnée et les fichiers auparavant." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded plugin. +#: wp-admin/includes/class-plugin-installer-skin.php:286 +#: wp-admin/includes/class-plugin-upgrader.php:510 +msgid "Your WordPress version is %1$s, however the uploaded plugin requires %2$s." +msgstr "Vous utilisez la version %1$s de WordPress, mais l’extension téléversée nécessite la version %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. plugin. +#: wp-admin/includes/class-plugin-installer-skin.php:274 +#: wp-admin/includes/class-plugin-upgrader.php:499 +msgid "The PHP version on your server is %1$s, however the uploaded plugin requires %2$s." +msgstr "Votre serveur utilise la version %1$s de PHP, mais l’extension téléversée nécessite la version %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:265 +msgid "The plugin cannot be updated due to the following:" +msgstr "L’extension ne peut être mise à jour pour la raison suivante :" + +#: wp-admin/includes/class-plugin-installer-skin.php:222 +msgid "Plugin name" +msgstr "Nom de l’extension" + +#: wp-admin/includes/class-theme-upgrader.php:107 +msgid "Theme downgraded successfully." +msgstr "Le thème a bien été rétrogradé." + +#: wp-admin/includes/class-theme-upgrader.php:106 +msgid "Theme downgrade failed." +msgstr "La rétrogradation du thème a échoué." + +#: wp-admin/includes/class-theme-upgrader.php:105 +msgid "Downgrading the theme…" +msgstr "Rétrogradation du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:99 +msgid "Updating the theme…" +msgstr "Mise à jour du thème…" + +#. translators: %s: Theme error. +#: wp-admin/includes/class-theme-upgrader.php:95 +msgid "The active theme has the following error: \"%s\"." +msgstr "Le thème actif contient l’erreur suivante : « %s »." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1324 +#: wp-admin/themes.php:801 wp-admin/js/updates.js:3474 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:823 +msgid "Enable auto-updates" +msgstr "Activer les mises à jour auto" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1320 +#: wp-admin/themes.php:797 wp-admin/js/updates.js:3463 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:819 +msgid "Disable auto-updates" +msgstr "Désactiver les mises à jour auto" + +#: wp-admin/includes/class-wp-plugins-list-table.php:632 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:489 +msgid "Disable Auto-updates" +msgstr "Désactiver les mises à jour auto" + +#: wp-admin/includes/class-wp-plugins-list-table.php:629 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:485 +msgid "Enable Auto-updates" +msgstr "Activer les mises à jour auto" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:581 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:433 +msgid "Auto-updates Disabled (%s)" +msgid_plural "Auto-updates Disabled (%s)" +msgstr[0] "Mises à jour auto désactivées (%s)" +msgstr[1] "Mises à jour auto désactivées (%s)" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:573 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:425 +msgid "Auto-updates Enabled (%s)" +msgid_plural "Auto-updates Enabled (%s)" +msgstr[0] "Mises à jour auto activées (%s)" +msgstr[1] "Mises à jour auto activées (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:478 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:337 +msgid "Automatic Updates" +msgstr "Mises à jour automatiques" + +#: wp-admin/includes/class-wp-plugins-list-table.php:429 +#: wp-admin/plugin-editor.php:34 wp-admin/js/updates.js:1457 +msgid "No plugins are currently available." +msgstr "Aucune extension n’est disponible pour l’instant." + +#: wp-admin/includes/image-edit.php:173 +msgid "Restore original image" +msgstr "Restaurer l’image originale" + +#: wp-admin/includes/class-plugin-installer-skin.php:348 +#: wp-admin/includes/class-theme-installer-skin.php:383 +msgid "The uploaded file has expired. Please go back and upload it again." +msgstr "Le fichier téléversé a expiré. Veuillez le téléverser à nouveau." + +#: wp-admin/includes/class-plugin-installer-skin.php:330 +#: wp-admin/includes/class-theme-installer-skin.php:365 +msgid "Cancel and go back" +msgstr "Annuler et revenir en arrière" + +#: wp-admin/includes/class-theme-installer-skin.php:354 +msgctxt "theme" +msgid "Replace installed with uploaded" +msgstr "Remplacer le thème installé par celui que vous avez téléversé" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:342 +msgid "You are updating a theme. Be sure to back up your database and files first." +msgstr "Vous mettez à jour un thème. Assurez-vous de sauvegarder votre base de données et vos fichiers d’abord." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:336 +msgid "You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Vous téléversez une ancienne version du thème installé. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded theme. +#: wp-admin/includes/class-theme-installer-skin.php:321 +#: wp-admin/includes/class-theme-upgrader.php:658 +msgid "Your WordPress version is %1$s, however the uploaded theme requires %2$s." +msgstr "Vous utilisez la version %1$s de WordPress, mais le thème téléversé nécessite la version %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. theme. +#: wp-admin/includes/class-theme-installer-skin.php:309 +#: wp-admin/includes/class-theme-upgrader.php:648 +msgid "The PHP version on your server is %1$s, however the uploaded theme requires %2$s." +msgstr "Votre serveur utilise la version %1$s de PHP, mais le thème téléversé nécessite la version %2$s." + +#: wp-admin/includes/class-theme-installer-skin.php:300 +msgid "The theme cannot be updated due to the following:" +msgstr "Le thème ne peut pas être mis à jour pour les raisons suivantes :" + +#: wp-admin/includes/class-theme-installer-skin.php:276 +msgid "(not found)" +msgstr "(non trouvé)" + +#: wp-admin/includes/class-plugin-installer-skin.php:226 +#: wp-admin/includes/class-theme-installer-skin.php:249 +msgid "Required PHP version" +msgstr "Version de PHP nécessaire" + +#: wp-admin/includes/class-plugin-installer-skin.php:225 +#: wp-admin/includes/class-theme-installer-skin.php:248 +msgid "Required WordPress version" +msgstr "Version de WordPress nécessaire" + +#: wp-admin/includes/class-theme-installer-skin.php:245 +msgid "Theme name" +msgstr "Nom du thème" + +#: wp-admin/includes/theme.php:1092 wp-admin/theme-install.php:454 +#: wp-admin/theme-install.php:501 +msgctxt "theme" +msgid "Cannot Install" +msgstr "Impossible d’installer" + +#: wp-admin/includes/theme.php:332 +msgid "Block Editor Patterns" +msgstr "Compositions pour l’éditeur de blocs" + +#: wp-admin/includes/class-plugin-upgrader.php:98 +msgid "Plugin downgraded successfully." +msgstr "L’extension a bien été rétrogradée." + +#: wp-admin/includes/class-plugin-upgrader.php:97 +msgid "Plugin downgrade failed." +msgstr "La rétrogradation de l’extension a échoué." + +#: wp-admin/includes/class-plugin-upgrader.php:96 +msgid "Downgrading the plugin…" +msgstr "Rétrogradation de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:90 +msgid "Updating the plugin…" +msgstr "Mise à jour de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:81 +msgid "Could not remove the current plugin." +msgstr "Impossible de supprimer l’extension actuelle." + +#: wp-admin/includes/class-plugin-upgrader.php:80 +msgid "Removing the current plugin…" +msgstr "Suppression de l’extension actuelle…" + +#: wp-admin/includes/class-wp-debug-data.php:1279 +msgid "Auto-update" +msgstr "Mise à jour auto" + +#: wp-admin/includes/class-wp-debug-data.php:1005 +#: wp-admin/includes/class-wp-debug-data.php:1385 +#: wp-admin/includes/class-wp-plugins-list-table.php:1311 +#: wp-admin/themes.php:792 wp-admin/js/updates.js:3476 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:810 +msgid "Auto-updates disabled" +msgstr "Mises à jour auto désactivées" + +#: wp-admin/includes/class-wp-debug-data.php:1003 +#: wp-admin/includes/class-wp-debug-data.php:1383 +#: wp-admin/includes/class-wp-plugins-list-table.php:1309 +#: wp-admin/themes.php:794 wp-admin/js/updates.js:3465 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:808 +msgid "Auto-updates enabled" +msgstr "Mises à jour auto activées" + +#: wp-admin/includes/class-wp-debug-data.php:478 +msgid "Are pretty permalinks supported?" +msgstr "Les permaliens sont-ils pris en charge ?" + +#: wp-admin/includes/class-wp-debug-data.php:417 +msgid "PHP memory limit (only for admin screens)" +msgstr "Limite de mémoire PHP (uniquement pour les écrans d’administration)" + +#: wp-admin/includes/class-wp-debug-data.php:219 +msgid "Is this site discouraging search engines?" +msgstr "Ce site décourage-t-il les moteurs de recherche ?" + +#: wp-admin/includes/theme.php:359 +msgid "Wide Blocks" +msgstr "Blocs larges" + +#: wp-admin/includes/theme.php:333 +msgid "Block Editor Styles" +msgstr "Styles de l’éditeur de blocs" + +#: wp-admin/edit-form-comment.php:123 +msgid "Spam" +msgstr "Indésirable" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:423 wp-admin/setup-config.php:492 +msgid "Unable to write to %s file." +msgstr "Impossible d’écrire dans le fichier %s." + +#. translators: %s: The options page name. +#: wp-admin/options.php:252 +msgid "Error: The %s options page is not in the allowed options list." +msgstr "Erreur : page d’options %s introuvable dans la liste des options autorisées." + +#: wp-admin/import.php:65 wp-admin/themes.php:348 wp-admin/users.php:345 +#: wp-admin/includes/network.php:117 wp-admin/includes/network.php:161 +msgid "Error:" +msgstr "Erreur :" + +#. translators: %s: web.config +#. translators: %s: .htaccess +#: wp-admin/options-permalink.php:183 wp-admin/options-permalink.php:196 +msgid "You should update your %s file now." +msgstr "Vous devez mettre à jour votre fichier %s maintenant." + +#: wp-admin/update-core.php:183 +msgid "This localized version contains both the translation and various other localization fixes." +msgstr "Cette version localisée contient à la fois les traductions et d’autres correctifs de localisation." + +#. translators: 1: Number of issues. 2: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:2026 +msgid "Take a look at the %1$d item on the Site Health screen." +msgid_plural "Take a look at the %1$d items on the Site Health screen." +msgstr[0] "Jetez un œil à %1$d élément sur l’écran de santé du site." +msgstr[1] "Jetez un œil à %1$d éléments sur l’écran de santé du site." + +#: wp-admin/includes/dashboard.php:2016 +msgid "Your site’s health is looking good, but there are still some things you can do to improve its performance and security." +msgstr "L’état de santé de votre site semble correct, mais il reste des choses que vous pourriez faire afin d’améliorer ses performances et sa sécurité." + +#: wp-admin/includes/dashboard.php:2008 +msgid "Great job! Your site currently passes all site health checks." +msgstr "Bon travail ! Votre site passe actuellement toutes les vérifications de santé du site." + +#: wp-admin/includes/dashboard.php:2012 +msgid "Your site has critical issues that should be addressed as soon as possible to improve its performance and security." +msgstr "Votre site rencontre des erreurs critiques qui doivent être réglées dès que possible afin d’améliorer ses performances et sa sécurité." + +#. translators: %s: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:2000 +msgid "Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now." +msgstr "Des contrôles de santé du site seront automatiquement effectués périodiquement pour recueillir des informations sur votre site. Vous pouvez également vous rendre sur l’écran de Santé du site pour recueillir dès maintenant des informations sur votre site." + +#: wp-admin/includes/dashboard.php:1987 +msgid "No information yet…" +msgstr "Aucune information pour le moment…" + +#. translators: 1: upload_max_filesize, 2: php.ini +#: wp-admin/includes/file.php:892 +msgid "The uploaded file exceeds the %1$s directive in %2$s." +msgstr "Le fichier téléversé dépasse la directive %1$s dans %2$s." + +#: wp-admin/includes/class-wp-comments-list-table.php:223 +msgid "No comments found in Trash." +msgstr "Aucun commentaire trouvé dans la corbeille." + +#. translators: 1: php.ini, 2: post_max_size, 3: upload_max_filesize +#: wp-admin/includes/file.php:942 wp-admin/includes/import.php:87 +msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s." +msgstr "Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel. Cette erreur peut également être due au fait que les téléversements sont désactivés dans votre fichier %1$s ou que %2$s est défini comme inférieur à %3$s dans %1$s." + +#: wp-admin/includes/class-wp-site-health.php:3278 +#: wp-admin/js/site-health.js:338 +msgid "A test is unavailable" +msgstr "Un test n’est pas disponible" + +#. translators: 1: The WordPress error message. 2: The WordPress error code. +#: wp-admin/includes/class-wp-site-health.php:3150 +msgid "Error: %1$s (%2$s)" +msgstr "Erreur : %1$s (%2$s)" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:798 +msgid "Your site is running on an older version of PHP (%s), which should be updated" +msgstr "Votre site utilise une version dépréciée de PHP (%s), elle devrait être mise à niveau." + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:767 +msgid "Your site is running on an older version of PHP (%s)" +msgstr "Votre site utilise une version ancienne de PHP (%s)" + +#. translators: %s: The recommended PHP version. +#: wp-admin/includes/class-wp-site-health.php:732 +msgid "Your site is running a recommended version of PHP (%s)" +msgstr "Votre site utilise une version recommandée de PHP (%s)" + +#: wp-admin/includes/class-wp-media-list-table.php:259 +msgid "No media files found in Trash." +msgstr "Aucun fichier média trouvé dans la corbeille." + +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Year. +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Ending year. +#: wp-admin/includes/class-wp-community-events.php:427 +#: wp-admin/js/dashboard.js:784 +msgid "%1$s %2$d – %3$s %4$d, %5$d" +msgstr "%1$s %2$d – %3$s %4$d, %5$d" + +#. translators: Upcoming events year format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:422 +#: wp-admin/includes/class-wp-community-events.php:432 +#: wp-admin/js/dashboard.js:797 wp-admin/js/dashboard.js:808 +msgctxt "upcoming events year format" +msgid "Y" +msgstr "Y" + +#. translators: Upcoming events day format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:419 +#: wp-admin/includes/class-wp-community-events.php:420 +#: wp-admin/includes/class-wp-community-events.php:429 +#: wp-admin/includes/class-wp-community-events.php:431 +#: wp-admin/js/dashboard.js:795 wp-admin/js/dashboard.js:796 +#: wp-admin/js/dashboard.js:805 wp-admin/js/dashboard.js:807 +msgctxt "upcoming events day format" +msgid "j" +msgstr "j" + +#. translators: Date string for upcoming events. 1: Month, 2: Starting day, 3: +#. Ending day, 4: Year. +#: wp-admin/includes/class-wp-community-events.php:416 +#: wp-admin/js/dashboard.js:782 +msgid "%1$s %2$d–%3$d, %4$d" +msgstr "%1$s %2$d–%3$d, %4$d" + +#. translators: Upcoming events month format. See +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:410 +#: wp-admin/includes/class-wp-community-events.php:411 +#: wp-admin/js/dashboard.js:794 wp-admin/js/dashboard.js:804 +#: wp-admin/js/dashboard.js:806 +msgctxt "upcoming events month format" +msgid "F" +msgstr "F" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:216 +msgid "Resend confirmation requests" +msgstr "Renvoyer les demandes de confirmation" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:218 +msgid "Delete requests" +msgstr "Supprimer les demandes" + +#: wp-admin/includes/class-wp-debug-data.php:1638 +msgid "Table prefix" +msgstr "Préfixe de table" + +#: wp-admin/includes/class-wp-site-health.php:2726 +msgid "PHP Default Timezone" +msgstr "Fuseau horaire par défaut de PHP" + +#. translators: %s: date_default_timezone_set() +#: wp-admin/includes/class-wp-site-health.php:1142 +msgid "PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times." +msgstr "Le fuseau horaire par défaut de PHP a été modifié après le chargement de WordPress par un appel à la fonction %s. Cela perturbe le fonctionnement du calcul des dates et des heures." + +#: wp-admin/includes/class-wp-site-health.php:1136 +msgid "PHP default timezone is invalid" +msgstr "Le fuseau horaire par défaut de PHP n’est pas valide." + +#: wp-admin/includes/class-wp-site-health.php:1127 +msgid "PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times." +msgstr "Le fuseau horaire par défaut de PHP a été configuré au chargement de WordPress. Ceci est nécessaire au fonctionnement du calcul des dates et des heures." + +#: wp-admin/includes/class-wp-site-health.php:1119 +msgid "PHP default timezone is valid" +msgstr "Le fuseau horaire par défaut de PHP est valide" + +#. translators: %s: add_menu_page() +#. translators: %s: add_submenu_page() +#: wp-admin/includes/plugin.php:1406 wp-admin/includes/plugin.php:1510 +msgid "The seventh parameter passed to %s should be numeric representing menu position." +msgstr "Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu." + +#. translators: 1: WordPress version number, 2: The PHP extension name needed. +#: wp-admin/includes/update-core.php:1207 +msgid "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." +msgstr "La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s." + +#: wp-admin/privacy.php:53 +msgid "https://wordpress.org/about/stats/" +msgstr "https://fr.wordpress.org/about/stats/" + +#: wp-admin/export.php:59 +msgid "Documentation on Export" +msgstr "Documentation sur l’exportation" + +#: wp-admin/plugin-install.php:121 +msgid "Documentation on Installing Plugins" +msgstr "Documentation sur l’installation d’extensions" + +#: wp-admin/edit.php:326 +msgid "Documentation on Managing Pages" +msgstr "Documentation sur la gestion des pages" + +#: wp-admin/edit.php:301 +msgid "Documentation on Managing Posts" +msgstr "Documentation sur la gestion des articles" + +#: wp-admin/options-discussion.php:32 +msgid "Documentation on Discussion Settings" +msgstr "Documentation sur les réglages des commentaires" + +#: wp-admin/theme-install.php:155 +msgid "Documentation on Adding New Themes" +msgstr "Documentation sur l’ajout de nouveaux thèmes" + +#: wp-admin/media-new.php:61 +msgid "Documentation on Uploading Media Files" +msgstr "Documentation sur le téléversement de médias" + +#: wp-admin/users.php:83 +msgid "Descriptions of Roles and Capabilities" +msgstr "Description des rôles et des permissions" + +#: wp-admin/users.php:82 +msgid "Documentation on Managing Users" +msgstr "Documentation sur la gestion des comptes" + +#: wp-admin/user-edit.php:78 +msgid "Documentation on User Profiles" +msgstr "Documentation sur l’écran Profil" + +#: wp-admin/options-media.php:41 +msgid "Documentation on Media Settings" +msgstr "Documentation sur les réglages des médias" + +#: wp-admin/import.php:32 +msgid "Documentation on Import" +msgstr "Documentation sur l’import" + +#: wp-admin/tools.php:56 +msgid "Documentation on Tools" +msgstr "Documentation sur l’écran Outils" + +#: wp-admin/options.php:386 +msgid "This page allows direct access to your site settings. You can break things here. Please be cautious!" +msgstr "Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des choses ici, donc faites attention !" + +#: wp-admin/edit-form-advanced.php:373 +msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format." +msgstr "Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format." + +#: wp-admin/edit-form-advanced.php:330 +msgid "Documentation on Editing Pages" +msgstr "Documentation sur la modification des pages" + +#: wp-admin/edit-form-advanced.php:329 +msgid "Documentation on Adding New Pages" +msgstr "Documentation sur la création de nouvelles pages" + +#: wp-admin/upload.php:199 wp-admin/upload.php:401 +msgid "Documentation on Media Library" +msgstr "Documentation sur la médiathèque" + +#: wp-admin/revision.php:159 +msgid "Revisions Management" +msgstr "Gestion des révisions" + +#: wp-admin/edit-form-advanced.php:348 +msgid "Documentation on Edit Media" +msgstr "Documentation sur la modification des médias" + +#: wp-admin/plugins.php:620 +msgid "Documentation on Managing Plugins" +msgstr "Documentation sur la gestion des extensions (en anglais)" + +#: wp-admin/index.php:132 +msgid "Documentation on Dashboard" +msgstr "Documentation sur le Tableau de bord" + +#: wp-admin/user-new.php:315 +msgid "Documentation on Adding New Users" +msgstr "Documentation sur l’ajout de nouveaux comptes" + +#. translators: %s: URL to Site Health Status page. +#: wp-admin/site-health-info.php:47 +msgid "This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page." +msgstr "Cette page peut vous afficher tous les détails sur la configuration de votre site WordPress. Pour toute amélioration qui pourrait être apportée, consultez la page État de santé du site." + +#: wp-admin/includes/dashboard.php:1989 wp-admin/site-health.php:137 +msgid "Results are still loading…" +msgstr "Les résultats sont toujours en cours de chargement…" + +#: wp-admin/options-permalink.php:61 +msgid "Documentation on Using Permalinks" +msgstr "Documentation sur l’utilisation des permaliens" + +#: wp-admin/options-permalink.php:60 +msgid "Documentation on Permalinks Settings" +msgstr "Documentation sur les réglages des permaliens" + +#: wp-admin/update-core.php:1053 +msgid "Documentation on Updating WordPress" +msgstr "Documentation sur la mise à jour de WordPress" + +#: wp-admin/nav-menus.php:773 +msgid "Documentation on Menus" +msgstr "Documentation sur les menus" + +#: wp-admin/plugin-editor.php:155 +msgid "Documentation on Writing Plugins" +msgstr "Documentation sur l’écriture d’extensions en anglais)" + +#: wp-admin/theme-editor.php:55 +msgid "Documentation on Template Tags" +msgstr "Documentation sur les balises de modèles (en anglais)" + +#: wp-admin/themes.php:207 +msgid "Documentation on Using Themes" +msgstr "Documentation sur l’utilisation des thèmes" + +#: wp-admin/theme-editor.php:52 +msgid "Documentation on Theme Development" +msgstr "Documentation sur le développement de thèmes (en anglais)" + +#: wp-admin/comment.php:72 wp-admin/edit-comments.php:229 +msgid "Documentation on Comments" +msgstr "Documentation sur les commentaires" + +#. translators: %s: UTC time. +#: wp-admin/options-general.php:405 +msgid "Universal time is %s." +msgstr "L’heure universelle est %s." + +#. translators: %s: UTC abbreviation +#: wp-admin/options-general.php:394 +msgid "Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset." +msgstr "Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire %s (Temps Universel Coordonné)." + +#: wp-admin/options-general.php:265 +msgid "Administration Email Address" +msgstr "Adresse e-mail d’administration" + +#: wp-admin/options-general.php:60 +msgid "Documentation on General Settings" +msgstr "Documentation sur les réglages généraux" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:335 +#: wp-admin/theme-editor.php:366 +msgid "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." +msgstr "Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations." + +#: wp-admin/includes/ajax-actions.php:2512 +msgid "Upload failed. Please reload and try again." +msgstr "Téléversement échoué. Veuillez actualiser et réessayer." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:142 +msgid "Data erasure has failed." +msgstr "L’effacement des données a échoué." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:67 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:141 +msgid "Erasure completed." +msgstr "Effacement terminé." + +#: wp-admin/includes/image.php:171 +msgid "The attached file cannot be found." +msgstr "Le fichier attaché ne peut pas être trouvé." + +#: wp-admin/includes/template.php:2335 +msgctxt "page label" +msgid "Privacy Policy Page" +msgstr "Page de politique de confidentialité" + +#: wp-admin/includes/template.php:2330 +msgctxt "page label" +msgid "Posts Page" +msgstr "Page des articles" + +#: wp-admin/includes/template.php:2326 +msgctxt "page label" +msgid "Front Page" +msgstr "Page d’accueil" + +#: wp-admin/includes/template.php:2317 +msgctxt "post status" +msgid "Sticky" +msgstr "Épinglé" + +#: wp-admin/includes/template.php:2309 +msgctxt "post status" +msgid "Customization Draft" +msgstr "Brouillon de personnalisation" + +#: wp-admin/includes/template.php:2295 +msgctxt "post status" +msgid "Password protected" +msgstr "Protégé par mot de passe" + +#. translators: %s: The name of the late cron event. +#: wp-admin/includes/class-wp-site-health.php:1685 +msgid "The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "L’évènement planifié %s, est en retard. Votre site fonctionne toujours, mais cela peut indiquer que la planification des articles ou des mises à jour automatisées peuvent ne pas fonctionner comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:1679 +msgid "A scheduled event is late" +msgstr "Un évènement planifié est en retard" + +#: wp-admin/includes/class-wp-site-health.php:1455 +msgid "An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy." +msgstr "Une connexion HTTPS est un moyen plus sûr de naviguer sur le web. De nombreux services ont maintenant HTTPS comme exigence. HTTPS vous permet de profiter de nouvelles fonctionnalités qui peuvent augmenter la vitesse du site, améliorer les classements de recherche et gagner la confiance de vos visiteurs en aidant à protéger leur vie privée en ligne." + +#. translators: %s: The current version of WordPress installed on this site. +#: wp-admin/includes/class-wp-site-health.php:330 +msgid "Your version of WordPress (%s) is up to date" +msgstr "Votre version de WordPress (%s) est à jour" + +#: wp-admin/includes/meta-boxes.php:857 +msgid "https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments" +msgstr "https://fr.wordpress.org/support/article/introduction-to-blogging/#gerer-les-commentaires" + +#: wp-admin/includes/meta-boxes.php:796 +msgid "https://wordpress.org/documentation/article/introduction-to-blogging/#comments" +msgstr "https://fr.wordpress.org/support/article/introduction-to-blogging/#les-commentaires-spam" + +#: wp-admin/includes/dashboard.php:2122 +msgid "https://wordpress.org/documentation/article/block-themes/" +msgstr "https://fr.wordpress.org/support/article/block-themes/" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:252 +msgid "Publish on: %s" +msgstr "Publier le : %s" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:249 +msgid "Schedule for: %s" +msgstr "Planifier pour le : %s" + +#. translators: Post date information. %s: Date on which the post was +#. published. +#: wp-admin/includes/meta-boxes.php:244 +msgid "Published on: %s" +msgstr "Publié le : %s" + +#. translators: Post date information. %s: Date on which the post is currently +#. scheduled to be published. +#: wp-admin/includes/meta-boxes.php:241 +msgid "Scheduled for: %s" +msgstr "Planifié pour le : %s" + +#. translators: Publish box time format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/edit-form-advanced.php:170 wp-admin/edit-form-comment.php:150 +#: wp-admin/includes/meta-boxes.php:236 wp-admin/includes/meta-boxes.php:442 +msgctxt "publish box time format" +msgid "H:i" +msgstr "H\\h i \\m\\i\\n" + +#. translators: Publish box date format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/edit-form-advanced.php:168 wp-admin/edit-form-comment.php:148 +#: wp-admin/includes/meta-boxes.php:234 wp-admin/includes/meta-boxes.php:440 +msgctxt "publish box date format" +msgid "M j, Y" +msgstr "j F Y" + +#. translators: 1: Marker. +#: wp-admin/includes/misc.php:142 +msgid "" +"The directives (lines) between \"BEGIN %1$s\" and \"END %1$s\" are\n" +"dynamically generated, and should only be modified via WordPress filters.\n" +"Any changes to the directives between these markers will be overwritten." +msgstr "" +"Les directives (lignes) entre « BEGIN %1$s » et « END %1$s » sont générées\n" +"dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.\n" +"Toute modification des directives situées entre ces marqueurs sera surchargée." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:158 +msgid "All automatic updates are disabled." +msgstr "Toutes les mises à jour automatiques sont désactivées." + +#: wp-admin/includes/class-wp-debug-data.php:1648 +msgid "Database collation" +msgstr "Classement de base de données" + +#: wp-admin/includes/class-wp-debug-data.php:1643 +msgid "Database charset" +msgstr "Jeu de caractères de la base de données" + +#: wp-admin/includes/class-wp-debug-data.php:1416 +msgid "Inactive Themes" +msgstr "Thèmes inactifs" + +#: wp-admin/includes/class-wp-debug-data.php:1287 +msgid "Parent Theme" +msgstr "Thème parent" + +#. translators: %s: wp-content directory name. +#: wp-admin/includes/class-wp-debug-data.php:331 +#: wp-admin/includes/class-wp-plugins-list-table.php:678 +msgid "Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins." +msgstr "Les extensions avancées sont des fichiers uniques, trouvés dans le répertoire %s, qui remplacent ou améliorent les fonctionnalités de WordPress d’une manière non accessible aux extensions traditionnelles." + +#. translators: Description for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:370 +msgctxt "personal data group description" +msgid "Overview of export report." +msgstr "Vue globale du rapport sur les exportations." + +#: wp-admin/options-writing.php:53 +msgid "Documentation on Writing Settings" +msgstr "Documentation sur les réglages d’écriture" + +#: wp-admin/edit-tags.php:312 +msgid "Documentation on Tags" +msgstr "Documentation sur les étiquettes" + +#: wp-admin/edit-tags.php:308 +msgid "Documentation on Categories" +msgstr "Documentation sur les catégories" + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:199 +msgid "Your theme determines how content is displayed in browsers. Learn more about feeds." +msgstr "Votre thème détermine comment le contenu est affiché dans les navigateurs. En savoir plus sur les flux." + +#. translators: Hidden accessibility text. +#: wp-admin/options-reading.php:183 wp-admin/options-reading.php:188 +msgid "For each post in a feed, include" +msgstr "Dans chaque publication du flux, inclure" + +#: wp-admin/options-reading.php:160 +msgid "Warning: these pages should not be the same as your Privacy Policy page!" +msgstr "Avertissement : ces pages ne doivent pas être les mêmes que votre page de politique de confidentialité !" + +#: wp-admin/options-reading.php:53 +msgid "Documentation on Reading Settings" +msgstr "Documentation sur les réglages de lecture" + +#. translators: %s: Site title. +#: wp-admin/ms-delete-site.php:93 +msgid "[%s] Delete My Site" +msgstr "[%s] Supprimer mon site" + +#: wp-admin/options-discussion.php:64 +msgid "Allow people to submit comments on new posts" +msgstr "Autoriser les commentaires sur les nouvelles publications" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:47 wp-admin/options-discussion.php:51 +msgid "Default post settings" +msgstr "Réglages de publication par défaut" + +#. translators: %s: Gravatar URL. +#: wp-admin/user-edit.php:632 +msgid "You can change your profile picture on Gravatar." +msgstr "Vous pouvez changer votre image de profil sur Gravatar." + +#: wp-admin/plugins.php:746 +msgid "Plugin resumed." +msgstr "Extension reprise." + +#: wp-admin/plugins.php:742 +msgid "Selected plugins deactivated." +msgstr "Extensions sélectionnées désactivées." + +#: wp-admin/plugins.php:740 +msgid "Plugin deactivated." +msgstr "Extension désactivée." + +#: wp-admin/plugins.php:738 +msgid "Selected plugins activated." +msgstr "Extensions sélectionnées activées." + +#: wp-admin/plugins.php:736 +msgid "Plugin activated." +msgstr "Extension activée." + +#: wp-admin/plugins.php:731 +msgid "The selected plugins have been deleted." +msgstr "Les extensions sélectionnées ont été supprimées." + +#: wp-admin/plugins.php:729 +msgid "The selected plugin has been deleted." +msgstr "L’extension sélectionnée a été supprimée." + +#. translators: 1: Plugin file, 2: Error message. +#: wp-admin/plugins.php:644 +msgid "The plugin %1$s has been deactivated due to an error: %2$s" +msgstr "L’extension %1$s a été désactivée en raison d’une erreur : %2$s" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:415 +msgid "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." +msgstr "Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant." + +#: wp-admin/theme-editor.php:407 +msgid "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." +msgstr "Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour." + +#. translators: Maximum number of words used in a preview of a draft on the +#. dashboard. +#: wp-admin/includes/dashboard.php:663 +msgctxt "draft_length" +msgid "10" +msgstr "10" + +#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:121 +#: wp-admin/theme-editor.php:311 +msgid "File does not exist! Please double check the name and try again." +msgstr "Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer." + +#. translators: 1: $image, 2: WP_Image_Editor +#: wp-admin/includes/image-edit.php:364 wp-admin/includes/image-edit.php:459 +#: wp-admin/includes/image-edit.php:629 +msgid "%1$s needs to be a %2$s object." +msgstr "%1$s doit être un objet %2$s." + +#. translators: %s: Recovery Mode exit link. +#: wp-admin/includes/update.php:1030 +msgid "You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode" +msgstr "Vous êtes en mode de récupération. Cela signifie qu’il pourrait y avoir une erreur avec un thème ou une extension. Pour sortir du mode de récupération, déconnectez vous ou utilisez le bouton Sortir. Exit Recovery Mode" + +#. translators: Tab heading for Site Health Info page. +#: wp-admin/site-health.php:18 +msgctxt "Site Health" +msgid "Info" +msgstr "Informations" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/site-health.php:16 +msgctxt "Site Health" +msgid "Status" +msgstr "État" + +#: wp-admin/includes/class-wp-debug-data.php:838 +msgid "Themes directory location" +msgstr "Emplacement du répertoire de thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:225 +msgctxt "comment status" +msgid "Closed" +msgstr "Fermé" + +#. translators: %s: Number of critical issues found. +#: wp-admin/site-health.php:260 wp-admin/js/site-health.js:148 +msgid "%s critical issue" +msgid_plural "%s critical issues" +msgstr[0] "%s problème critique" +msgstr[1] "%s problèmes critiques" + +#: wp-admin/update-core.php:262 +msgid "https://wordpress.org/documentation/article/updating-wordpress/" +msgstr "https://fr.wordpress.org/support/article/updating-wordpress/" + +#: wp-admin/includes/class-wp-site-health.php:1341 +msgid "Get help resolving this issue." +msgstr "Obtenez de l’aide pour résoudre ce problème." + +#: wp-admin/includes/class-wp-site-health.php:1224 +msgid "Learn more about what WordPress requires to run." +msgstr "En savoir plus sur les pré-requis de fonctionnement de WordPress." + +#. translators: Localized version of WordPress requirements if one exists. +#: wp-admin/includes/class-wp-site-health.php:1223 +msgid "https://wordpress.org/about/requirements/" +msgstr "https://fr.wordpress.org/about/requirements/" + +#: wp-admin/includes/class-wp-site-health.php:1218 +msgid "The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings." +msgstr "Le serveur SQL est un élément obligatoire de l’architecture utilisée par WordPress pour stocker les contenus et réglages de votre site." + +#: wp-admin/includes/class-wp-site-health.php:889 +msgid "PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator." +msgstr "Les modules PHP réalisent la plupart des tâches sur le serveur qui fait fonctionner votre site. Toute modification les concernant doit être réalisée par la personne chargée de l’administration de votre serveur." + +#: wp-admin/includes/class-wp-site-health.php:504 +msgid "Manage your themes" +msgstr "Gérez vos thèmes" + +#: wp-admin/includes/class-wp-site-health.php:471 +msgid "Manage inactive plugins" +msgstr "Gérer les extensions inactives" + +#: wp-admin/includes/class-wp-site-health.php:417 +msgid "Update your plugins" +msgstr "Mettez à jour vos extensions" + +#: wp-admin/includes/class-wp-site-health.php:370 +msgid "Manage your plugins" +msgstr "Gérez vos extensions" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:338 +msgid "View Privacy Policy Guide." +msgstr "Voir le guide de politique de confidentialité." + +#: wp-admin/includes/class-wp-debug-data.php:181 +msgid "User Language" +msgstr "Langue du compte" + +#. translators: 1: WP_DEBUG_DISPLAY, 2: WP_DEBUG +#: wp-admin/includes/class-wp-site-health.php:1416 +msgid "The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site." +msgstr "La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier de configuration. Cela fera apparaître les erreurs sur l’interface publique de votre site." + +#. translators: Background update finished notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1661 +msgid "[%s] Background Update Finished" +msgstr "[%s] Mise à jour en arrière-plan terminée" + +#. translators: Background update failed notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1658 +msgid "[%s] Background Update Failed" +msgstr "[%s] Mise à jour en arrière-plan échouée" + +#: wp-admin/plugins.php:680 +msgid "Plugin could not be resumed because it triggered a fatal error." +msgstr "L’extension n’a pas pu être relancée car elle a déclenché une erreur fatale." + +#: wp-admin/includes/class-wp-site-health.php:621 +#: wp-admin/includes/class-wp-site-health.php:667 +msgid "You should remove inactive themes" +msgstr "Vous devriez retirer les thèmes inactifs" + +#: wp-admin/includes/class-wp-site-health.php:591 +msgid "Your site has 1 installed theme, and it is up to date." +msgstr "Votre site a un thème installé, et il est à jour." + +#: wp-admin/includes/class-wp-site-health.php:423 +msgid "Your site has 1 active plugin, and it is up to date." +msgstr "Votre site a une extension active, et elle est à jour." + +#: wp-admin/site-health.php:285 +msgid "Passed tests" +msgstr "Tests passés avec succès" + +#: wp-admin/site-health.php:48 +msgid "Sorry, you are not allowed to access site health information." +msgstr "Désolé, vous n’avez pas l’autorisation d’accéder aux informations de santé du site." + +#: wp-admin/site-health-info.php:57 +msgid "Copy site info to clipboard" +msgstr "Copier les informations du site dans le presse-papier" + +#: wp-admin/site-health-info.php:51 +msgid "If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example." +msgstr "Si vous souhaitez exporter une liste de toutes les informations contenues dans cette page, vous pouvez utiliser le bouton ci-dessous pour les copier dans votre presse-papier. Vous pourrez ensuite les coller dans un fichier texte pour les enregistrer sur votre ordinateur, dans un e-mail d’échange avec un support technique, ou encore dans une discussion avec une développeuse ou un développeur de thème/extension." + +#: wp-admin/site-health-info.php:23 wp-admin/site-health.php:226 +msgid "The Site Health check requires JavaScript." +msgstr "La vérification de santé du site nécessite JavaScript." + +#: wp-admin/site-health-info.php:41 +msgid "Site Health Info" +msgstr "Informations de santé du site" + +#: wp-admin/update-core.php:549 wp-admin/update-core.php:742 +msgid "This update does not work with your version of PHP." +msgstr "Cette mise à jour ne fonctionne pas avec votre version de PHP." + +#: wp-admin/includes/class-wp-posts-list-table.php:544 +msgid "All formats" +msgstr "Tous les formats" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-posts-list-table.php:540 +msgid "Filter by post format" +msgstr "Filtrer par format de publication" + +#: wp-admin/includes/plugin.php:2579 wp-admin/includes/plugin.php:2661 +msgid "Go to the Plugins screen" +msgstr "Aller à l’écran des extensions" + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1516 +msgid "The authenticity of %s could not be verified." +msgstr "L’authenticité de %s ne peut pas être vérifiée." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1468 +msgid "The authenticity of %s could not be verified as no signature was found." +msgstr "L’authenticité de %s n’a pas pu être vérifiée car aucune signature n’a été trouvée." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1416 wp-admin/includes/file.php:1450 +msgid "The authenticity of %s could not be verified as signature verification is unavailable on this system." +msgstr "L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5226 +msgid "Eraser callback is not valid: %s." +msgstr "Le retour de l’outil de suppression n’est pas valide : %s." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5216 +msgid "Eraser does not include a callback: %s." +msgstr "L’outil de suppression n’inclue aucun retour : %s." + +#: wp-admin/includes/ajax-actions.php:4938 +#: wp-admin/includes/ajax-actions.php:5129 +msgid "Sorry, you are not allowed to perform this action." +msgstr "Désolé, vous n’avez pas l’autorisation d’effectuer cette action." + +#. translators: 1: Name of the constant used. 2: List of allowed hostnames. +#: wp-admin/includes/class-wp-site-health.php:2102 +msgid "HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s." +msgstr "Les requêtes HTTP ont été bloquées par la constante %1$s, avec certains hôtes autorisés : %2$s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health.php:2087 +msgid "HTTP requests have been blocked by the %s constant, with no allowed hosts." +msgstr "Les requêtes HTTP ont été bloquées par la constante %s, avec aucun hôte autorisé." + +#. translators: 1: The name of the drop-in. 2: The name of the database engine. +#: wp-admin/includes/class-wp-site-health.php:1272 +msgid "You are using a %1$s drop-in which might mean that a %2$s database is not being used." +msgstr "Vous utilisez une extension avancée %1$s, ce qui pourrait signifier que la base de données %2$s n’est pas utilisée." + +#. translators: Localized team handbook, if one exists. +#: wp-admin/includes/class-wp-site-health.php:894 +msgid "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" +msgstr "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" + +#. translators: 1: Link to the hosting group page about recommended PHP +#. modules. 2: Additional link attributes. 3: Accessibility text. +#: wp-admin/includes/class-wp-site-health.php:892 +msgid "The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s." +msgstr "L’équipe Hébergement de WordPress maintient une liste des modules recommandés et obligatoires dans le manuel de l’équipe (en anglais)%3$s." + +#: wp-admin/includes/class-wp-site-health.php:259 +#: wp-admin/includes/class-wp-site-health.php:737 +#: wp-admin/includes/class-wp-site-health.php:884 +#: wp-admin/includes/class-wp-site-health.php:1122 +#: wp-admin/includes/class-wp-site-health.php:1163 +#: wp-admin/includes/class-wp-site-health.php:1213 +#: wp-admin/includes/class-wp-site-health.php:1637 +#: wp-admin/includes/class-wp-site-health.php:2013 +#: wp-admin/includes/class-wp-site-health.php:2056 +#: wp-admin/includes/class-wp-site-health.php:2127 +#: wp-admin/includes/class-wp-site-health.php:2238 +#: wp-admin/includes/class-wp-site-health.php:2392 +#: wp-admin/includes/class-wp-site-health.php:2517 +#: wp-admin/includes/class-wp-site-health.php:2628 +msgid "Performance" +msgstr "Performances" + +#. translators: 1: The amount of inactive themes. 2: The default theme for +#. WordPress. 3: The currently active theme. +#: wp-admin/includes/class-wp-site-health.php:689 +msgid "Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgstr[0] "Votre site a %1$d thème inactif, autre que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif." +msgstr[1] "Votre site a %1$d thèmes inactifs, autres que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif." + +#: wp-admin/includes/class-wp-site-health.php:682 +#: wp-admin/includes/class-wp-site-health.php:698 +msgid "You should consider removing any unused themes to enhance your site’s security." +msgstr "Nous recommandons de supprimer tous les thèmes non utilisés pour améliorer la sécurité de votre site." + +#. translators: 1: The amount of inactive themes. 2: The currently active +#. theme. +#: wp-admin/includes/class-wp-site-health.php:674 +msgid "Your site has %1$d inactive theme, other than %2$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, your active theme." +msgstr[0] "Votre site a %1$d thème inactif, autre que %2$s, votre thème actif." +msgstr[1] "Votre site a %1$d thèmes inactifs, autres que %2$s, votre thème actif." + +#. translators: %d: The number of inactive themes. +#: wp-admin/includes/class-wp-site-health.php:628 +#: wp-admin/includes/class-wp-site-health.php:647 +msgid "Your site has %d inactive theme." +msgid_plural "Your site has %d inactive themes." +msgstr[0] "Votre site a %d thème inactif." +msgstr[1] "Votre site a %d thèmes inactifs." + +#: wp-admin/includes/class-wp-site-health.php:465 +msgid "Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it." +msgstr "Les extensions inactives sont des cibles tentantes pour les pirates. Si vous n’utilisez plus une extension, vous devriez envisager de la retirer." + +#. translators: %d: The number of inactive plugins. +#: wp-admin/includes/class-wp-site-health.php:458 +msgid "Your site has %d inactive plugin." +msgid_plural "Your site has %d inactive plugins." +msgstr[0] "Votre site a %d extension inactive." +msgstr[1] "Votre site a %d extensions inactives." + +#: wp-admin/includes/class-wp-site-health.php:320 +#: wp-admin/includes/class-wp-site-health.php:360 +#: wp-admin/includes/class-wp-site-health.php:494 +#: wp-admin/includes/class-wp-site-health.php:825 +#: wp-admin/includes/class-wp-site-health.php:1253 +#: wp-admin/includes/class-wp-site-health.php:1298 +#: wp-admin/includes/class-wp-site-health.php:1368 +#: wp-admin/includes/class-wp-site-health.php:1450 +#: wp-admin/includes/class-wp-site-health.php:1591 +#: wp-admin/includes/class-wp-site-health.php:1710 +#: wp-admin/includes/class-wp-site-health.php:1785 +#: wp-admin/includes/class-wp-site-health.php:1826 +#: wp-admin/includes/class-wp-site-health.php:1876 +#: wp-admin/includes/class-wp-site-health.php:2330 +msgid "Security" +msgstr "Sécurité" + +#: wp-admin/erase-personal-data.php:96 +msgid "Erase personal data list" +msgstr "Supprimer la liste de données personnelles" + +#: wp-admin/erase-personal-data.php:95 +msgid "Erase personal data list navigation" +msgstr "Supprimer la navigation dans la liste de données personnelles" + +#: wp-admin/erase-personal-data.php:94 +msgid "Filter erase personal data list" +msgstr "Filtrer la suppression de la liste de données personnelles" + +#: wp-admin/export-personal-data.php:96 +msgid "Export personal data list" +msgstr "Exporter la liste de données personnelles" + +#: wp-admin/export-personal-data.php:95 +msgid "Export personal data list navigation" +msgstr "Exporter la navigation dans la liste de données personnelles" + +#: wp-admin/export-personal-data.php:94 +msgid "Filter export personal data list" +msgstr "Filtrer l’exportation de la liste de données personnelles" + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number 5: URL to Update PHP page. +#: wp-admin/includes/update.php:572 +msgid "There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP." +msgstr "Il existe une nouvelle version disponible de %1$s, mais elle ne fonctionne pas avec votre version de PHP. Voir les détails de la version %4$s ou en savoir plus sur la mise à jour de PHP." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1284 +msgid "This plugin failed to load properly and is paused during recovery mode." +msgstr "Cette extension n’a pas pu se charger correctement et a été mise en pause dans le cadre du mode de récupération." + +#: wp-admin/includes/theme.php:1247 +msgid "Go to the Themes screen" +msgstr "Aller à l’écran des thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:1994 +msgid "Total size is not available. Some errors were encountered when determining the size of your installation." +msgstr "La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation." + +#: wp-admin/includes/class-wp-debug-data.php:1943 +msgid "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." +msgstr "La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides." + +#: wp-admin/includes/class-wp-debug-data.php:1950 +msgid "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." +msgstr "Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers." + +#: wp-admin/includes/class-wp-debug-data.php:1579 +msgid "These settings alter where and how parts of WordPress are loaded." +msgstr "Ces réglages modifient où et comment les éléments de WordPress sont chargés." + +#. translators: %s: Number of items with no issues. +#: wp-admin/site-health.php:294 wp-admin/js/site-health.js:158 +msgid "%s item with no issues detected" +msgid_plural "%s items with no issues detected" +msgstr[0] "%s élément sans problème détecté" +msgstr[1] "%s éléments sans problème détectés" + +#. translators: %s: Number of recommended improvements. +#: wp-admin/site-health.php:273 wp-admin/js/site-health.js:153 +msgid "%s recommended improvement" +msgid_plural "%s recommended improvements" +msgstr[0] "%s amélioration recommandée" +msgstr[1] "%s améliorations recommandées" + +#: wp-admin/site-health.php:254 +msgid "The site health check shows information about your WordPress configuration and items that may need your attention." +msgstr "La vérification de santé du site affiche des informations critiques à propos de votre configuration WordPress et les éléments qui nécessitent votre attention." + +#: wp-admin/includes/dashboard.php:68 wp-admin/site-health.php:251 +msgid "Site Health Status" +msgstr "État de santé du site" + +#: wp-admin/site-health.php:245 +msgid "Everything is running smoothly here." +msgstr "Tout fonctionne parfaitement ici." + +#: wp-admin/site-health.php:241 +msgid "Great job!" +msgstr "Bon travail !" + +#: wp-admin/about.php:49 wp-admin/contribute.php:33 wp-admin/credits.php:36 +#: wp-admin/freedoms.php:39 wp-admin/includes/ms.php:1134 +#: wp-admin/nav-menus.php:811 wp-admin/options-privacy.php:161 +#: wp-admin/privacy-policy-guide.php:44 wp-admin/privacy.php:33 +#: wp-admin/site-health.php:141 +msgid "Secondary menu" +msgstr "Menu secondaire" + +#: wp-admin/includes/class-wp-site-health.php:3171 +msgid "The loopback request to your site completed successfully." +msgstr "La demande de bouclage vers votre site s’est bien terminée." + +#. translators: %d: The HTTP response code returned. +#: wp-admin/includes/class-wp-site-health.php:3163 +msgid "The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected." +msgstr "La requête de bouclage a renvoyé un code d’état HTTP inattendu, %d. Il n’a pas été possible de déterminer si cela peut empêcher des fonctionnalités de fonctionner comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:3147 +msgid "The loopback request to your site failed, this means features relying on them are not currently working as expected." +msgstr "La requête de bouclage sur votre site a échoué, ce qui signifie que les fonctionnalités qui s’appuient sur ces requêtes ne fonctionnent actuellement pas comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:2939 +msgid "No scheduled events exist on this site." +msgstr "Aucun évènement planifié n’existe sur ce site." + +#: wp-admin/includes/class-wp-site-health.php:2750 +msgid "REST API availability" +msgstr "Disponibilité de l’API REST" + +#: wp-admin/includes/class-wp-site-health.php:2793 +msgid "Loopback request" +msgstr "Demande de bouclage" + +#: wp-admin/includes/class-wp-site-health.php:2755 +msgid "Debugging enabled" +msgstr "Débogage activé" + +#: wp-admin/includes/class-wp-site-health.php:2746 +msgid "HTTP Requests" +msgstr "Requêtes HTTP" + +#: wp-admin/includes/class-wp-site-health.php:2742 +msgid "Scheduled events" +msgstr "Évènements planifiés" + +#: wp-admin/includes/class-wp-site-health.php:2738 +msgid "Secure communication" +msgstr "Communication sécurisée" + +#: wp-admin/includes/class-wp-site-health.php:2799 +msgid "HTTPS status" +msgstr "État HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:2722 +msgid "PHP Extensions" +msgstr "Extensions PHP" + +#: wp-admin/includes/class-wp-site-health.php:2734 +msgid "Database Server version" +msgstr "Version du serveur de base de données" + +#: wp-admin/includes/class-wp-site-health.php:2718 +msgid "PHP Version" +msgstr "Version de PHP" + +#: wp-admin/includes/class-wp-site-health.php:2714 +msgid "Theme Versions" +msgstr "Version des thèmes" + +#: wp-admin/includes/class-wp-site-health.php:2710 +msgid "Plugin Versions" +msgstr "Versions des extensions" + +#: wp-admin/includes/class-wp-site-health.php:2706 +msgid "WordPress Version" +msgstr "Version de WordPress" + +#. translators: %s: The name of the query parameter being tested. +#: wp-admin/includes/class-wp-site-health.php:2216 +msgid "The REST API did not process the %s query parameter correctly." +msgstr "L’API REST n’a pas traité correctement le paramètre de la requête %s." + +#: wp-admin/includes/class-wp-site-health.php:2210 +msgid "The REST API did not behave correctly" +msgstr "L’API REST ne s’est pas correctement comportée" + +#: wp-admin/includes/class-wp-site-health.php:2187 +msgid "The REST API encountered an unexpected result" +msgstr "L’API REST a rencontré un résultat inattendu" + +#: wp-admin/includes/class-wp-site-health.php:2167 +msgid "The REST API encountered an error" +msgstr "L’API REST a rencontré une erreur" + +#: wp-admin/includes/class-wp-site-health.php:2132 +msgid "The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages." +msgstr "L’API REST est l’une des façons pour WordPress ou d’autres applications de communiquer avec le serveur. Par exemple, l’écran de l’éditeur s’appuie sur celle-ci pour afficher et enregistrer vos publications." + +#: wp-admin/includes/class-wp-site-health.php:2124 +msgid "The REST API is available" +msgstr "L’API REST est disponible" + +#: wp-admin/includes/class-wp-site-health.php:2096 +msgid "HTTP requests are partially blocked" +msgstr "Les requêtes HTTP sont partiellement bloquées" + +#: wp-admin/includes/class-wp-site-health.php:2081 +msgid "HTTP requests are blocked" +msgstr "Les requêtes HTTP sont bloquées" + +#: wp-admin/includes/class-wp-site-health.php:2061 +msgid "It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended." +msgstr "Il est possible pour les responsables du site de bloquer tout ou partie de la communication vers d’autres sites et services. Si la configuration est incorrecte, cela peut empêcher les extensions et thèmes de fonctionner comme prévu." + +#: wp-admin/includes/class-wp-site-health.php:2053 +msgid "HTTP requests seem to be working as expected" +msgstr "Les requêtes HTTP semblent fonctionner comme prévu" + +#: wp-admin/includes/class-wp-site-health.php:2029 +msgid "Your site could not complete a loopback request" +msgstr "Votre site n’a pas pu terminer la requête de bouclage" + +#: wp-admin/includes/class-wp-site-health.php:2018 +msgid "Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability." +msgstr "Les requêtes de bouclage sont utilisées pour lancer des évènements planifiés, ainsi que par les éditeurs de thèmes et d’extensions pour vérifier la stabilité du code." + +#: wp-admin/includes/class-wp-site-health.php:2010 +msgid "Your site can perform loopback requests" +msgstr "Votre site peut lancer des requêtes de bouclage" + +#: wp-admin/includes/class-wp-site-health.php:1748 +msgid "Background updates may not be working properly" +msgstr "Les mises à jour d’arrière-plan pourraient ne pas fonctionner correctement" + +#: wp-admin/includes/class-wp-site-health.php:1739 +msgid "Background updates are not working as expected" +msgstr "Les mises à jour d’arrière-plan ne fonctionnent pas comme prévu" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1736 +msgid "Passed" +msgstr "Succès" + +#: wp-admin/includes/class-wp-site-health.php:1715 +msgid "Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using." +msgstr "Les mises à jour d’arrière-plan assurent que WordPress peut se mettre à jour automatiquement si une mise à jour de sécurité est disponible pour la version que vous utilisez actuellement." + +#: wp-admin/includes/class-wp-site-health.php:1707 +msgid "Background updates are working" +msgstr "Les mises à jour d’arrière-plan fonctionnent" + +#. translators: %s: The name of the failed cron event. +#: wp-admin/includes/class-wp-site-health.php:1672 +msgid "The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "L’évènement planifié %s a échoué. Votre site fonctionne toujours, mais cela pourrait indiquer que les publications planifiées ou les mises à jour automatiques ne fonctionnent pas comme elles le devraient." + +#: wp-admin/includes/class-wp-site-health.php:1666 +msgid "A scheduled event has failed" +msgstr "Un évènement planifié a échoué" + +#. translators: %s: The error message returned while from the cron scheduler. +#: wp-admin/includes/class-wp-site-health.php:1659 +msgid "While trying to test your site’s scheduled events, the following error was returned: %s" +msgstr "Lors du test des évènements planifiés de votre site, l’erreur suivante a été retournée : %s" + +#: wp-admin/includes/class-wp-site-health.php:1653 +msgid "It was not possible to check your scheduled events" +msgstr "Il n’a pas été possible de vérifier vos évènements planifiés" + +#: wp-admin/includes/class-wp-site-health.php:1642 +msgid "Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed." +msgstr "Les évènements planifiés permettent de vérifier périodiquement les mises à jour d’extensions, de thèmes et de WordPress lui-même. Cela permet également de s’assurer que les publications planifiées sont publiées à temps. Ils sont également utilisés par diverses extensions pour exécuter des actions planifiées." + +#: wp-admin/includes/class-wp-site-health.php:1634 +msgid "Scheduled events are running" +msgstr "Les évènements planifiés fonctionnent" + +#: wp-admin/includes/class-wp-site-health.php:1615 +msgid "Talk to your web host about OpenSSL support for PHP." +msgstr "Demandez à votre hébergeur la prise en charge de OpenSSL pour PHP." + +#: wp-admin/includes/class-wp-site-health.php:1611 +msgid "Your site is unable to communicate securely with other services" +msgstr "Votre site n’est pas en mesure de communiquer en toute sécurité avec d’autres services" + +#: wp-admin/includes/class-wp-site-health.php:1607 +msgid "Your site can communicate securely with other services" +msgstr "Votre site peut communiquer en toute sécurité avec d’autres services" + +#: wp-admin/includes/class-wp-site-health.php:1596 +msgid "Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more." +msgstr "Des communications sécurisées entre serveurs sont nécessaires pour des transactions telles que le parcours de fichiers, la vente sur les boutiques en ligne, et plus encore." + +#: wp-admin/includes/class-wp-site-health.php:1460 +msgid "Learn more about why you should use HTTPS" +msgstr "Apprenez pourquoi vous devriez utiliser HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1473 +msgid "Your website does not use HTTPS" +msgstr "Votre site n’utilise pas HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1447 +msgid "Your website is using an active HTTPS connection" +msgstr "Votre site utilise une connexion HTTPS opérationnelle." + +#. translators: %s: URL to Settings > General > Site Address. +#: wp-admin/includes/class-wp-site-health.php:1481 +msgid "You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default." +msgstr "Vous accédez à ce site en utilisant HTTPS, mais votre Adresse WordPress n’est pas configurée pour utiliser HTTPS par défaut." + +#: wp-admin/includes/class-wp-site-health.php:1403 +msgid "Your site is set to display errors to site visitors" +msgstr "Votre site est réglé pour afficher les erreurs aux visiteurs du site" + +#. translators: %s: WP_DEBUG_LOG +#: wp-admin/includes/class-wp-site-health.php:1396 +msgid "The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users." +msgstr "La valeur %s a été ajoutée au fichier de configuration de votre site. Cela signifie que toute erreur sur le site sera enregistrée dans un fichier qui est potentiellement visible par tous les comptes." + +#: wp-admin/includes/class-wp-site-health.php:1388 +msgid "Your site is set to log errors to a potentially public file" +msgstr "Votre site est configuré pour enregistrer le journal des erreurs dans un fichier potentiellement public" + +#: wp-admin/includes/class-wp-site-health.php:1373 +msgid "Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website." +msgstr "Le mode débogage est souvent activé pour obtenir plus de détails à propos d’une erreur ou d’une défaillance du site, mais peut contenir des informations sensibles qui ne devraient pas être disponibles sur un site accessible au public." + +#: wp-admin/includes/class-wp-site-health.php:1365 +msgid "Your site is not set to output debug information" +msgstr "Votre site n’est pas réglé pour afficher les informations de débogage" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-site-health.php:1330 +msgid "Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s" +msgstr "Votre site ne peut pas rejoindre WordPress.org sur %1$s et a retourné l’erreur suivante : %2$s" + +#: wp-admin/includes/class-wp-site-health.php:1320 +msgid "Could not reach WordPress.org" +msgstr "Impossible de rejoindre WordPress.org" + +#: wp-admin/includes/class-wp-site-health.php:1303 +msgid "Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins." +msgstr "La communication avec les serveurs WordPress est utilisée pour vérifier l’existence de nouvelles versions et pour installer et mettre à jour le cœur WordPress, les thèmes et les extensions." + +#: wp-admin/includes/class-wp-site-health.php:1295 +msgid "Can communicate with WordPress.org" +msgstr "Peut communiquer avec WordPress.org" + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server minimum version number. +#: wp-admin/includes/class-wp-site-health.php:1259 +msgid "WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "WordPress nécessite %1$s version %2$s ou plus. Contactez votre hébergeur web pour corriger cela." + +#: wp-admin/includes/class-wp-site-health.php:1252 +msgid "Severely outdated SQL server" +msgstr "Serveur SQL fortement obsolète " + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server recommended version number. +#: wp-admin/includes/class-wp-site-health.php:1242 +msgid "For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "Pour des performances optimales et pour des raisons de sécurité, nous recommandons %1$s version %2$s ou supérieure. Contactez votre hébergeur pour corriger cela." + +#: wp-admin/includes/class-wp-site-health.php:1236 +msgid "Outdated SQL server" +msgstr "Serveur SQL obsolète" + +#: wp-admin/includes/class-wp-site-health.php:1210 +msgid "SQL server is up to date" +msgstr "Le serveur SQL est à jour" + +#: wp-admin/includes/class-wp-site-health.php:1101 +msgid "One or more required modules are missing" +msgstr "Un module nécessaire ou plus sont manquants." + +#: wp-admin/includes/class-wp-site-health.php:1098 +msgid "One or more recommended modules are missing" +msgstr "Un ou plusieurs modules recommandés sont manquants" + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1070 +msgid "The optional module, %s, is not installed, or has been disabled." +msgstr "Le module facultatif, %s, n’est pas installé, ou a été désactivé." + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1061 +msgid "The required module, %s, is not installed, or has been disabled." +msgstr "Le module obligatoire %s n’est pas installé, ou a été désactivé." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1058 +#: wp-admin/includes/class-wp-site-health.php:1327 +#: wp-admin/includes/class-wp-site-health.php:1744 +msgid "Error" +msgstr "Erreur" + +#: wp-admin/includes/class-wp-site-health.php:881 +msgid "Required and recommended modules are installed" +msgstr "Les modules obligatoires et recommandés sont installés" + +#: wp-admin/includes/class-wp-site-health.php:712 +msgid "Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme." +msgstr "Votre site n’a pas de thème par défaut. Les thèmes par défaut sont utilisés par WordPress automatiquement si quelque chose ne va pas avec votre thème actif." + +#: wp-admin/includes/class-wp-site-health.php:708 +msgid "Have a default theme available" +msgstr "Avoir un thème par défaut disponible" + +#. translators: 1: The default theme for WordPress. 2: The currently active +#. theme. 3: The active theme's parent theme. +#: wp-admin/includes/class-wp-site-health.php:656 +msgid "To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme." +msgstr "Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver %1$s, le thème WordPress par défaut, %2$s, votre thème actuel, et %3$s, son thème parent." + +#. translators: 1: The currently active theme. 2: The active theme's parent +#. theme. +#: wp-admin/includes/class-wp-site-health.php:637 +msgid "To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme." +msgstr "Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver uniquement votre thème actuel, %1$s et %2$s, son thème parent." + +#: wp-admin/includes/class-wp-site-health.php:452 +msgid "You should remove inactive plugins" +msgstr "Vous devriez retirer les extensions inactives" + +#. translators: %d: The number of themes. +#: wp-admin/includes/class-wp-site-health.php:598 +msgid "Your site has %d installed theme, and it is up to date." +msgid_plural "Your site has %d installed themes, and they are all up to date." +msgstr[0] "Votre site a %d thème installé et il est à jour." +msgstr[1] "Votre site a %d thèmes installés et ils sont tous à jour." + +#. translators: %d: The number of outdated themes. +#: wp-admin/includes/class-wp-site-health.php:578 +msgid "Your site has %d theme waiting to be updated." +msgid_plural "Your site has %d themes waiting to be updated." +msgstr[0] "Votre site à %d thème en attente de mise à jour." +msgstr[1] "Votre site à %d thèmes en attente de mise à jour." + +#: wp-admin/includes/class-wp-site-health.php:572 +msgid "You have themes waiting to be updated" +msgstr "Vous avez des thèmes en attente de mise à jour" + +#: wp-admin/includes/class-wp-site-health.php:499 +msgid "Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure." +msgstr "Les thèmes concernent l’aspect visuel de votre site. Il est important de les tenir à jour, pour la cohérence de votre identité visuelle et pour garder votre site sécurisé." + +#: wp-admin/includes/class-wp-site-health.php:491 +msgid "Your themes are all up to date" +msgstr "Vos thèmes sont à jour" + +#. translators: %d: The number of active plugins. +#: wp-admin/includes/class-wp-site-health.php:430 +msgid "Your site has %d active plugin, and it is up to date." +msgid_plural "Your site has %d active plugins, and they are all up to date." +msgstr[0] "Votre site a %d extension installée et elle est à jour." +msgstr[1] "Votre site a %d extensions installées et elles sont toutes à jour." + +#. translators: %d: The number of outdated plugins. +#: wp-admin/includes/class-wp-site-health.php:405 +msgid "Your site has %d plugin waiting to be updated." +msgid_plural "Your site has %d plugins waiting to be updated." +msgstr[0] "Votre site a %d extension en attente de mise à jour." +msgstr[1] "Votre site a %d extensions en attente de mise à jour." + +#: wp-admin/includes/class-wp-site-health.php:399 +msgid "You have plugins waiting to be updated" +msgstr "Vous avez des extensions en attente de mise à jour" + +#: wp-admin/includes/class-wp-site-health.php:365 +msgid "Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date." +msgstr "Les extensions étendent les fonctionnalités de votre site avec des choses comme des formulaires de contact, une boutique e-commerce et bien plus. Cela signifie qu’elles ont accès à votre site en profondeur, il est donc vital de les tenir à jour." + +#: wp-admin/includes/class-wp-site-health.php:357 +msgid "Your plugins are all up to date" +msgstr "Vos extensions sont à jour" + +#: wp-admin/includes/class-wp-site-health.php:336 +msgid "You are currently running the latest version of WordPress available, keep it up!" +msgstr "Vous utilisez actuellement la dernière version disponible de WordPress, gardez-la à jour !" + +#: wp-admin/includes/class-wp-site-health.php:323 +msgid "A new minor update is available for your site. Because minor updates often address security, it’s important to install them." +msgstr "Une mise à jour mineure est disponible pour votre site. Comme les mises à jour mineures concernent souvent la sécurité, il est important de les installer." + +#: wp-admin/includes/class-wp-site-health.php:315 +msgid "A new version of WordPress is available." +msgstr "Une nouvelle version de WordPress est disponible." + +#: wp-admin/includes/class-wp-site-health.php:307 +msgid "Install the latest version of WordPress" +msgstr "Installer la dernière version de WordPress" + +#. translators: %s: The latest version of WordPress available. +#: wp-admin/includes/class-wp-site-health.php:300 +msgid "WordPress update available (%s)" +msgstr "Mise à jour de WordPress disponible (%s)" + +#: wp-admin/includes/class-wp-site-health.php:287 +msgid "Check for updates manually" +msgstr "Vérifier les mises à jour manuellement" + +#: wp-admin/includes/class-wp-site-health.php:281 +msgid "Unable to check if any new versions of WordPress are available." +msgstr "Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:472 +msgid "WordPress security and maintenance releases are blocked by the %s filter." +msgstr "Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:460 +msgid "WordPress security and maintenance releases are blocked by %s." +msgstr "Les mises à jour de sécurité et de maintenance sont bloquées par %s." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:437 +msgid "WordPress development updates are blocked by the %s filter." +msgstr "Les mises à jour de développement WordPress sont bloquées par le filtre %s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:425 +msgid "WordPress development updates are blocked by the %s constant." +msgstr "Les mises à jour de développement WordPress sont bloquées par la constante %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:400 +msgid "All of your WordPress files are writable." +msgstr "Tous vos fichiers WordPress sont accessibles en écriture." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:395 +msgid "Some files are not writable by WordPress:" +msgstr "Certains fichiers ne sont pas accessibles par WordPress :" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:369 +msgid "This could mean that connections are failing to WordPress.org." +msgstr "Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:366 +msgid "Couldn't retrieve a list of the checksums for WordPress %s." +msgstr "Impossible de récupérer une liste des checksums pour WordPress %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:312 +msgid "Your installation of WordPress does not require FTP credentials to perform updates." +msgstr "Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:303 +msgid "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" +msgstr "(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:302 +msgid "Your installation of WordPress prompts for FTP credentials to perform updates." +msgstr "Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:280 +msgid "No version control systems were detected." +msgstr "Aucun système de contrôle de version n’a été détecté." + +#. translators: 1: Folder name. 2: Version control directory. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:271 +msgid "The folder %1$s was detected as being under version control (%2$s)." +msgstr "Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s)." + +#. translators: 1: Folder name. 2: Version control directory. 3: Filter name. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:258 +msgid "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." +msgstr "Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:192 +msgid "A previous automatic background update could not occur." +msgstr "Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée." + +#. translators: %s: Code of error shown. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:200 +msgid "The error code was %s." +msgstr "Le code d’erreur était %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:180 +msgid "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." +msgstr "Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:179 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:194 +msgid "You would have received an email because of this." +msgstr "Vous auriez reçu un e-mail à cause de cela." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:178 +msgid "A previous automatic background update ended with a critical failure, so updates are now disabled." +msgstr "Une précédente mise à jour automatique en arrière-plan s’est terminée par un échec critique, les mises à jour sont désormais désactivées." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:129 +msgid "The %s filter is enabled." +msgstr "Le filtre %s est activé." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:105 +msgid "A plugin has prevented updates by disabling %s." +msgstr "Une extension a empêché les mises à jour en désactivant %s." + +#: wp-admin/includes/class-wp-debug-data.php:1727 +msgid "The must use plugins directory" +msgstr "Le répertoire des extensions indispensables" + +#: wp-admin/includes/class-wp-debug-data.php:1125 +msgid "Theme features" +msgstr "Fonctionnalités de thèmes" + +#: wp-admin/includes/class-theme-installer-skin.php:250 +#: wp-admin/includes/class-wp-debug-data.php:1120 +msgid "Parent theme" +msgstr "Thème parent" + +#: wp-admin/includes/class-wp-debug-data.php:1115 +#: wp-admin/includes/class-wp-debug-data.php:1235 +msgid "Author website" +msgstr "Site de l’auteur ou de l’autrice" + +#. translators: %s: Latest WordPress version number. +#. translators: %s: Latest plugin version number. +#. translators: %s: Latest theme version number. +#: wp-admin/includes/class-wp-debug-data.php:163 +#: wp-admin/includes/class-wp-debug-data.php:967 +#: wp-admin/includes/class-wp-debug-data.php:1072 +#: wp-admin/includes/class-wp-debug-data.php:1209 +#: wp-admin/includes/class-wp-debug-data.php:1354 +msgid "(Latest version: %s)" +msgstr "(dernière version : %s)" + +#. translators: 1: Plugin version number. 2: Plugin author name. +#. translators: 1: Theme version number. 2: Theme author name. +#: wp-admin/includes/class-wp-debug-data.php:773 +#: wp-admin/includes/class-wp-debug-data.php:949 +#: wp-admin/includes/class-wp-debug-data.php:1336 +msgid "Version %1$s by %2$s" +msgstr "Version %1$s par %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:768 +#: wp-admin/includes/class-wp-debug-data.php:944 +#: wp-admin/includes/class-wp-debug-data.php:1331 +msgid "No version or author information is available." +msgstr "Aucune information de version ou d’auteur/autrice n’est disponible." + +#: wp-admin/includes/class-wp-debug-data.php:1615 +msgid "Server version" +msgstr "Version du serveur" + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:497 +msgid "Your %s file contains only core WordPress features." +msgstr "Votre fichier %s ne contient que des fonctionnalités du cœur WordPress." + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:494 +msgid "Custom rules have been added to your %s file." +msgstr "Des règles personnalisées ont été ajoutées à votre fichier %s." + +#: wp-admin/includes/class-wp-debug-data.php:501 +msgid ".htaccess rules" +msgstr "Règles du .htaccess" + +#: wp-admin/includes/class-wp-debug-data.php:469 +msgid "Is the Imagick library available?" +msgstr "La bibliothèque Imagick est-elle disponible ?" + +#: wp-admin/includes/class-wp-debug-data.php:460 +msgid "Is SUHOSIN installed?" +msgstr "SUHOSIN est-il installé ?" + +#: wp-admin/includes/class-wp-debug-data.php:445 +#: wp-admin/includes/class-wp-debug-data.php:450 +msgid "cURL version" +msgstr "Version de cURL" + +#: wp-admin/includes/class-wp-debug-data.php:436 +msgid "PHP post max size" +msgstr "Taille maximale d’envoi de PHP" + +#: wp-admin/includes/class-wp-debug-data.php:432 +msgid "Upload max filesize" +msgstr "Taille maximale de téléversement de fichier" + +#: wp-admin/includes/class-wp-debug-data.php:428 +msgid "Max input time" +msgstr "Temps d’entrée max" + +#: wp-admin/includes/class-wp-debug-data.php:413 +#: wp-admin/includes/class-wp-debug-data.php:422 +msgid "PHP memory limit" +msgstr "Limite de mémoire PHP" + +#: wp-admin/includes/class-wp-debug-data.php:407 +msgid "PHP time limit" +msgstr "Limite d’exécution PHP" + +#: wp-admin/includes/class-wp-debug-data.php:403 +msgid "PHP max input variables" +msgstr "Valeur maximale des variables PHP" + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-debug-data.php:396 +#: wp-admin/includes/class-wp-debug-data.php:607 +msgid "Unable to determine some settings, as the %s function has been disabled." +msgstr "Impossible de déterminer certains réglages, car la fonction %s a été désactivée." + +#: wp-admin/includes/class-wp-debug-data.php:393 +msgid "Server settings" +msgstr "Réglages du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:385 +msgid "PHP SAPI" +msgstr "PHP SAPI" + +#: wp-admin/includes/class-wp-debug-data.php:360 +msgid "(Does not support 64bit values)" +msgstr "(ne prend pas en charge les valeurs 64 bits)" + +#: wp-admin/includes/class-wp-debug-data.php:360 +msgid "(Supports 64bit values)" +msgstr "(Supporte les valeurs 64 bits)" + +#: wp-admin/includes/class-wp-debug-data.php:380 +msgid "PHP version" +msgstr "Version de PHP" + +#: wp-admin/includes/class-wp-debug-data.php:376 +msgid "Unable to determine what web server software is used" +msgstr "Impossible de déterminer le serveur web utilisé" + +#: wp-admin/includes/class-wp-debug-data.php:375 +msgid "Web server" +msgstr "Serveur web" + +#: wp-admin/includes/class-wp-debug-data.php:371 +msgid "Unable to determine server architecture" +msgstr "Impossible de déterminer l’architecture du serveur" + +#: wp-admin/includes/class-wp-debug-data.php:370 +msgid "Server architecture" +msgstr "Architecture serveur" + +#: wp-admin/includes/class-wp-debug-data.php:741 +msgid "Ghostscript version" +msgstr "Version de Ghostscript" + +#: wp-admin/includes/class-wp-debug-data.php:736 +msgid "Unable to determine if Ghostscript is installed" +msgstr "Impossible de déterminer si Ghostscript est installé" + +#: wp-admin/includes/class-wp-debug-data.php:693 +msgid "GD version" +msgstr "Version de GD" + +#: wp-admin/includes/class-wp-debug-data.php:667 +msgid "Imagick Resource Limits" +msgstr "Limites de ressources Imagick" + +#: wp-admin/includes/class-wp-debug-data.php:591 +msgid "ImageMagick version string" +msgstr "Chaîne de version ImageMagick" + +#: wp-admin/includes/class-wp-debug-data.php:586 +msgid "ImageMagick version number" +msgstr "Numéro de version ImageMagick" + +#: wp-admin/includes/class-wp-debug-data.php:451 +#: wp-admin/includes/class-wp-debug-data.php:568 +#: wp-admin/includes/class-wp-debug-data.php:582 +#: wp-admin/includes/class-wp-debug-data.php:599 +#: wp-admin/includes/class-wp-debug-data.php:1978 wp-admin/includes/ms.php:803 +msgid "Not available" +msgstr "Non disponible" + +#: wp-admin/includes/class-wp-debug-data.php:572 +msgid "Active editor" +msgstr "Éditeur actif" + +#: wp-admin/includes/class-wp-debug-data.php:870 +msgid "Total installation size" +msgstr "Taille totale de l’installation" + +#: wp-admin/includes/class-wp-debug-data.php:865 +msgid "Database size" +msgstr "Taille de la base de données" + +#: wp-admin/includes/class-wp-debug-data.php:824 +msgid "WordPress directory size" +msgstr "Taille du répertoire de WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:820 +msgid "WordPress directory location" +msgstr "Emplacement du répertoire de WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:851 +msgid "Plugins directory size" +msgstr "Taille du répertoire des extensions" + +#: wp-admin/includes/class-wp-debug-data.php:847 +msgid "Plugins directory location" +msgstr "Emplacement du répertoire des extensions" + +#: wp-admin/includes/class-wp-debug-data.php:842 +msgid "Themes directory size" +msgstr "Taille du répertoire des thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:1129 +#: wp-admin/includes/class-wp-debug-data.php:1240 +msgid "Theme directory location" +msgstr "Emplacement du répertoire des thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:833 +msgid "Uploads directory size" +msgstr "Taille du répertoire des téléversements" + +#: wp-admin/includes/class-wp-debug-data.php:829 +msgid "Uploads directory location" +msgstr "Emplacement du répertoire des téléversements" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-debug-data.php:289 +msgid "Unable to reach WordPress.org at %1$s: %2$s" +msgstr "Impossible d’atteindre WordPress.org à %1$s : %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:281 +msgid "WordPress.org is reachable" +msgstr "WordPress.org est accessible" + +#: wp-admin/includes/class-wp-debug-data.php:280 +#: wp-admin/includes/class-wp-debug-data.php:286 +#: wp-admin/includes/class-wp-site-health.php:2781 +msgid "Communication with WordPress.org" +msgstr "Communication avec WordPress.org" + +#: wp-admin/includes/class-wp-debug-data.php:265 +msgid "Network count" +msgstr "Nombre de réseaux" + +#: wp-admin/includes/class-wp-debug-data.php:260 +msgid "Site count" +msgstr "Nombre de sites" + +#: wp-admin/includes/class-wp-debug-data.php:271 +msgid "User count" +msgstr "Nombre de comptes" + +#: wp-admin/includes/class-wp-debug-data.php:1707 +msgid "The themes directory" +msgstr "Le répertoire de thèmes" + +#: wp-admin/includes/class-wp-debug-data.php:1702 +msgid "The plugins directory" +msgstr "Le répertoire d’extensions" + +#: wp-admin/includes/class-wp-debug-data.php:1697 +msgid "The uploads directory" +msgstr "Le répertoire des téléversements" + +#: wp-admin/includes/class-wp-debug-data.php:1692 +msgid "The wp-content directory" +msgstr "Le répertoire wp-content" + +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 +msgid "Not writable" +msgstr "Non accessible en écriture" + +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 +msgid "Writable" +msgstr "Accessible en écriture" + +#: wp-admin/includes/class-wp-debug-data.php:1687 +msgid "The main WordPress directory" +msgstr "Le répertoire principal de WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:1735 +msgid "Shows whether WordPress is able to write to the directories it needs access to." +msgstr "Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder." + +#: wp-admin/includes/class-wp-debug-data.php:1734 +msgid "Filesystem Permissions" +msgstr "Droits des fichiers système" + +#: wp-admin/includes/class-wp-debug-data.php:1116 +#: wp-admin/includes/class-wp-debug-data.php:1236 +#: wp-admin/includes/class-wp-debug-data.php:1443 +#: wp-admin/includes/class-wp-debug-data.php:1452 +#: wp-admin/includes/class-wp-debug-data.php:1461 +#: wp-admin/includes/class-wp-debug-data.php:1470 +#: wp-admin/includes/class-wp-debug-data.php:1479 +#: wp-admin/includes/class-wp-debug-data.php:1491 +#: wp-admin/includes/class-wp-debug-data.php:1496 +#: wp-admin/includes/class-wp-debug-data.php:1567 +msgid "Undefined" +msgstr "Indéfini" + +#: wp-admin/includes/class-wp-debug-data.php:1578 +msgid "WordPress Constants" +msgstr "Constantes WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:1663 +msgid "Database" +msgstr "Base de données" + +#: wp-admin/includes/class-wp-debug-data.php:553 +msgid "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." +msgstr "Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur." + +#: wp-admin/includes/class-wp-debug-data.php:552 +msgid "Server" +msgstr "Serveur" + +#: wp-admin/includes/class-wp-debug-data.php:747 +msgid "Media Handling" +msgstr "Traitement des médias" + +#: wp-admin/includes/class-wp-debug-data.php:907 +msgid "Inactive Plugins" +msgstr "Extensions inactives" + +#: wp-admin/includes/class-wp-debug-data.php:892 +msgid "Active Plugins" +msgstr "Extensions actives" + +#: wp-admin/includes/class-wp-debug-data.php:797 +msgid "Must Use Plugins" +msgstr "Extensions indispensables" + +#: wp-admin/includes/class-wp-debug-data.php:1175 +#: wp-admin/includes/theme.php:862 wp-admin/themes.php:1086 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:945 +msgid "Active Theme" +msgstr "Thème actif" + +#: wp-admin/includes/class-wp-debug-data.php:327 +msgid "Drop-ins" +msgstr "Extensions avancées" + +#. translators: Filesystem directory paths and storage sizes. +#: wp-admin/includes/class-wp-debug-data.php:878 +msgid "Directories and Sizes" +msgstr "Répertoires et tailles" + +#: wp-admin/includes/class-wp-debug-data.php:209 +msgid "Is this a multisite?" +msgstr "S’agit-il d’un multisite ?" + +#: wp-admin/includes/class-wp-debug-data.php:224 +msgid "Default comment status" +msgstr "État par défaut des commentaires" + +#: wp-admin/includes/class-wp-debug-data.php:214 +msgid "Can anyone register on this site?" +msgstr "Tout le monde peut-il s’inscrire sur ce site ?" + +#: wp-admin/includes/class-wp-debug-data.php:204 +msgid "Is this site using HTTPS?" +msgstr "Est-ce que ce site utilise HTTPS ?" + +#: wp-admin/includes/class-wp-debug-data.php:200 +msgid "No permalink structure set" +msgstr "Aucune structure de permaliens définie" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-debug-data.php:199 +#: wp-admin/options-permalink.php:330 wp-admin/options-permalink.php:336 +msgid "Permalink structure" +msgstr "Structure des permaliens" + +#: wp-admin/includes/class-wp-debug-data.php:194 +msgid "Site URL" +msgstr "URL du site" + +#: wp-admin/includes/class-wp-debug-data.php:189 +msgid "Home URL" +msgstr "URL de la page d’accueil" + +#: wp-admin/site-health.php:101 +msgid "Site Health" +msgstr "Santé du site" + +#. translators: %s: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:163 +msgctxt "requests" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/options-discussion.php:98 +msgid "Show comments cookies opt-in checkbox, allowing comment author cookies to be set" +msgstr "Afficher la case à cocher pour accepter les cookies sur les commentaires, ce qui permet l’enregistrement de cookies pour les personnes ayant commenté" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:480 +msgid "Next theme" +msgstr "Thème suivant" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:474 +msgid "Previous theme" +msgstr "Thème précédent" + +#: wp-admin/user-edit.php:551 +msgid "If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed." +msgstr "Si vous modifiez cela, vous recevrez un e-mail de confirmation à votre nouvelle adresse. La nouvelle adresse ne sera pas active tant que vous n’aurez pas confirmé." + +#: wp-admin/themes.php:309 +msgid "Theme resumed." +msgstr "Thème relancé." + +#: wp-admin/themes.php:318 +msgid "Theme could not be resumed because it triggered a fatal error." +msgstr "Le thème n’a pas pu être relancé car il a déclenché une erreur fatale." + +#: wp-admin/plugins.php:678 +msgid "If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin." +msgstr "Si vous remarquez des messages « headers already sent », des problèmes avec vos flux de syndication ou d’autres soucis, essayez de désactiver ou de supprimer cette extension." + +#. translators: %d: Number of characters. +#: wp-admin/plugins.php:671 +msgid "The plugin generated %d character of unexpected output during activation." +msgid_plural "The plugin generated %d characters of unexpected output during activation." +msgstr[0] "Cette extension a généré %d caractère de sortie inattendu lors de son activation." +msgstr[1] "Cette extension a généré %d caractères de sortie inattendus lors de son activation." + +#: wp-admin/plugins.php:451 +msgid "Sorry, you are not allowed to resume this plugin." +msgstr "Désolé, vous n’êtes pas autorisé à relancer cette extension." + +#. translators: %s: WordPress Planet URL. +#: wp-admin/index.php:97 +msgid "WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet." +msgstr "Évènements et actualités WordPress – évènements à venir près de chez vous et dernières actualités officielles du projet WordPress ainsi que de l’écosystème WordPress." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/update-core.php:133 wp-admin/upgrade.php:139 +msgid "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/update-core.php:124 wp-admin/upgrade.php:130 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s." + +#: wp-admin/nav-menus.php:1067 +msgid "Add menu items" +msgstr "Ajouter des éléments de menu" + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:1028 +msgid "or create a new menu. Do not forget to save your changes!" +msgstr "ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !" + +#. translators: Hidden accessibility text. +#: wp-admin/nav-menus.php:973 wp-admin/nav-menus.php:1043 +msgid "Click the Save Menu button to save your changes." +msgstr "Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications." + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:958 +msgid "Edit your menu below, or create a new menu. Do not forget to save your changes!" +msgstr "Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !" + +#. translators: Hidden accessibility text. +#: wp-admin/nav-menus.php:949 +msgid "Fill in the Menu Name and click the Create Menu button to create your first menu." +msgstr "Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu." + +#: wp-admin/nav-menus.php:945 +msgid "Create your first menu below." +msgstr "Créez votre premier menu ci-dessous." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/install.php:289 +msgid "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/install.php:280 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s." + +#: wp-admin/includes/class-wp-site-health.php:751 +#: wp-admin/includes/dashboard.php:1917 +msgid "Learn more about updating PHP" +msgstr "En savoir plus sur la mise à jour de PHP" + +#: wp-admin/includes/dashboard.php:1898 +msgid "What is PHP and how does it affect my site?" +msgstr "Qu’est-ce que PHP et comment cela affecte t-il mon site ?" + +#: wp-admin/includes/dashboard.php:50 +msgid "PHP Update Required" +msgstr "Mise à jour de PHP nécessaire" + +#: wp-admin/includes/plugin.php:2577 +msgid "You can find more details and make changes on the Plugins screen." +msgstr "Vous pouvez trouver davantage de détails et faire des modifications sur l’écran des extensions." + +#: wp-admin/includes/plugin.php:2576 +msgid "One or more plugins failed to load properly." +msgstr "Le chargement d’une ou plusieurs extensions a échoué." + +#: wp-admin/includes/plugin.php:2546 +msgid "Could not resume the plugin." +msgstr "Impossible de relancer l’extension." + +#: wp-admin/includes/plugin.php:509 +msgid "Custom PHP fatal error handler." +msgstr "Gestionnaire d’erreur fatale PHP personnalisée." + +#: wp-admin/includes/plugin.php:508 +msgid "Custom PHP error message." +msgstr "Message d’erreur PHP personnalisé." + +#: wp-admin/includes/class-language-pack-upgrader.php:122 +msgid "Could not remove the old translation." +msgstr "Impossible de retirer l’ancienne traduction." + +#: wp-admin/includes/class-language-pack-upgrader.php:121 +msgid "Removing the old version of the translation…" +msgstr "Retrait de l’ancienne version de la traduction…" + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/plugin-install.php:847 +msgid "Click here to update WordPress." +msgstr "Cliquer ici pour mettre WordPress à jour." + +#: wp-admin/includes/plugin-install.php:843 +msgid "Error: This plugin requires a newer version of WordPress." +msgstr "Erreur : Cette extension nécessite une version plus récente de WordPress." + +#. translators: %s: URL to Update PHP page. +#: wp-admin/includes/plugin-install.php:817 +msgid "Click here to learn more about updating PHP." +msgstr "Cliquez ici pour en savoir plus sur la mise à jour de PHP." + +#: wp-admin/includes/plugin-install.php:812 +msgid "Error: This plugin requires a newer version of PHP." +msgstr "Erreur : Cette extension nécessite une version plus récente de PHP." + +#. translators: Hidden accessibility text. %s: Widget title. +#: wp-admin/includes/widgets.php:257 +msgid "Add widget: %s" +msgstr "Ajouter le widget : %s" + +#. translators: %s: Widgets sidebar name. +#: wp-admin/includes/widgets.php:97 +msgid "Add to: %s" +msgstr "Ajouter à : %s" + +#. translators: Audio file track information. %s: Audio track number. +#: wp-admin/includes/media.php:378 +msgid "Track %s." +msgstr "Piste %s." + +#: wp-admin/includes/schema.php:1260 +msgid "My Network" +msgstr "Mon réseau" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:641 +#: wp-admin/includes/class-wp-plugins-list-table.php:1453 +msgid "This plugin does not work with your version of PHP." +msgstr "Cette extension ne fonctionne pas avec votre version de PHP." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:632 +#: wp-admin/includes/class-wp-plugins-list-table.php:1444 +msgid "This plugin does not work with your version of WordPress." +msgstr "Cette extension ne fonctionne pas avec votre version de WordPress." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:608 +#: wp-admin/includes/class-wp-plugins-list-table.php:1420 +msgid "This plugin does not work with your versions of WordPress and PHP." +msgstr "Cette extension ne fonctionne pas avec vos versions de WordPress et de PHP." + +#. translators: %s: WordPress version number. +#. translators: %s: WordPress version. +#: wp-admin/about.php:21 wp-admin/includes/update.php:321 +#: wp-admin/index.php:119 wp-admin/install.php:250 wp-admin/update-core.php:94 +#: wp-admin/upgrade.php:100 +msgid "https://wordpress.org/documentation/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + +#: wp-admin/includes/class-wp-plugins-list-table.php:935 +#: wp-admin/themes.php:716 +msgid "Resume" +msgstr "Relancer" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:934 +msgctxt "plugin" +msgid "Resume %s" +msgstr "Relancer %s" + +#: wp-admin/includes/theme.php:1245 +msgid "You can find more details and make changes on the Themes screen." +msgstr "Vous trouverez plus de détails et pouvez apporter des modifications sur l’écran des thèmes." + +#: wp-admin/includes/theme.php:1244 +msgid "One or more themes failed to load properly." +msgstr "Un ou plusieurs thèmes ont échoués à se charger correctement." + +#: wp-admin/includes/theme.php:1214 +msgid "Could not resume the theme." +msgstr "Impossible de relancer le thème." + +#. translators: %s: Default category. +#: wp-admin/edit-tags.php:632 +msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." +msgstr "Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée." + +#. translators: %s: A link to install the Classic Widgets plugin. +#: wp-admin/widgets-form-blocks.php:114 +msgid "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin." +msgstr "Les blocs widgets nécessite JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur, ou essayez l’extension Classic Editor." + +#: wp-admin/post.php:47 +msgid "A post type mismatch has been detected." +msgstr "Une incohérence de type de publication a été détectée." + +#: wp-admin/includes/class-wp-screen.php:297 wp-admin/post.php:20 +msgid "A post ID mismatch has been detected." +msgstr "Une incohérence d’identifiant de publication a été détectée." + +#. translators: %s: A link to use the Classic Editor plugin. +#: wp-admin/includes/template.php:1232 +msgid "Please open the classic editor to use this meta box." +msgstr "Veuillez ouvrir l’éditeur classique pour utiliser cette boîte méta." + +#. translators: %s: A link to activate the Classic Editor plugin. +#: wp-admin/includes/template.php:1219 +msgid "Please activate the Classic Editor plugin to use this meta box." +msgstr "Veuillez activer l’extension Classic Editor pour utiliser cette boîte méta." + +#. translators: %s: A link to install the Classic Editor plugin. +#: wp-admin/includes/template.php:1207 +msgid "Please install the Classic Editor plugin to use this meta box." +msgstr "Veuillez installer l’extension Classic Editor pour utiliser cette boîte méta." + +#: wp-admin/includes/template.php:1194 +msgid "This meta box is not compatible with the block editor." +msgstr "Cette boîte méta n’est pas compatible avec le nouvel éditeur." + +#: wp-admin/freedoms.php:78 +msgid "To distribute copies of your modified versions to others." +msgstr "la liberté d’améliorer le programme et de distribuer ces améliorations au public, pour en faire profiter toute la communauté." + +#: wp-admin/freedoms.php:77 +msgid "The 4th Freedom" +msgstr "La quatrième liberté" + +#: wp-admin/freedoms.php:73 +msgid "To redistribute." +msgstr "La liberté de redistribution ;" + +#: wp-admin/freedoms.php:72 +msgid "The 3rd Freedom" +msgstr "La troisième liberté" + +#: wp-admin/freedoms.php:68 +msgid "To study how the program works and change it to make it do what you wish." +msgstr "La liberté d’étudier le fonctionnement du programme et de l’adapter à ses besoins ;" + +#: wp-admin/freedoms.php:67 +msgid "The 2nd Freedom" +msgstr "La deuxième liberté" + +#: wp-admin/freedoms.php:63 +msgid "To run the program for any purpose." +msgstr "La liberté d’exécuter le programme, pour tous les usages ;" + +#: wp-admin/freedoms.php:62 +msgid "The 1st Freedom" +msgstr "La première liberté" + +#: wp-admin/includes/class-wp-application-passwords-list-table.php:29 +msgid "Created" +msgstr "Créé" + +#. translators: First post content. %s: Site link. +#: wp-admin/includes/upgrade.php:235 +msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" +msgstr "Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !" + +#. translators: First page content. %s: Site admin URL. +#: wp-admin/includes/upgrade.php:336 +msgid "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" +msgstr "En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:330 +msgid "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." +msgstr "La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:325 +msgid "...or something like this:" +msgstr "…ou quelque chose comme cela :" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:320 +msgid "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" +msgstr "Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil)." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:315 +msgid "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" +msgstr "Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela :" + +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1573 +msgid "Export “%s” as JSON" +msgstr "Exporter « %s » en JSON" + +#: wp-admin/edit.php:386 +msgid "1 pattern not updated, somebody is editing it." +msgstr "Une composition n’a pas été mise à jour, quelqu’un est train de la modifier." + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:394 +msgid "%s pattern restored from the Trash." +msgid_plural "%s patterns restored from the Trash." +msgstr[0] "%s composition restaurée depuis la corbeille." +msgstr[1] "%s compositions restaurées depuis la corbeille." + +#: wp-admin/setup-config.php:304 +msgid "Error: \"Table Prefix\" must not be empty." +msgstr "Erreur : le préfixe de table ne doit pas être vide." + +#. translators: %s: The name of the plugin that generated this meta box. +#: wp-admin/includes/template.php:1192 wp-admin/includes/template.php:1444 +msgid "This meta box, from the %s plugin, is not compatible with the block editor." +msgstr "Cette boîte méta de l’extension %s n’est pas compatible avec le nouvel éditeur." + +#. translators: Header for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:368 +msgctxt "personal data group label" +msgid "About" +msgstr "À propos" + +#. translators: Page title of the About WordPress page in the admin. +#: wp-admin/about.php:14 +msgctxt "page title" +msgid "About" +msgstr "À propos" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy +#. Policy page. +#: wp-admin/options-privacy.php:228 +msgid "Edit or preview your Privacy Policy page content." +msgstr "Modifier ou prévisualiser le contenu de votre page de politique de confidentialité." + +#: wp-admin/includes/file.php:40 +msgid "Privacy Policy Page" +msgstr "Page de politique de confidentialité" + +#. translators: %s: Page title. +#: wp-admin/includes/misc.php:1554 +msgid "%s (Draft)" +msgstr "%s (Brouillon)" + +#: wp-admin/options-privacy.php:57 +msgid "Privacy Policy page updated successfully." +msgstr "La page de politique de confidentialité a bien été mise à jour." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2433 +msgid "The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation." +msgstr "Le contenu suggéré de politique de confidentialité devrait être ajouté en utilisant l’action %s (ou ultérieurement). Veuillez vous référer à la documentation en ligne." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2422 +msgid "The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action." +msgstr "Le contenu suggéré de politique de confidentialité devrait être ajouté uniquement dans wp-admin en utilisant l’action %s (ou ultérieurement)." + +#. translators: %s: Privacy Policy Guide URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:143 +msgid "The suggested privacy policy text has changed. Please review the guide and update your privacy policy." +msgstr "Le texte suggéré pour votre politique de confidentialité a été modifié. Veuillez relire le guide et mettre à jour votre politique de confidentialité." + +#: wp-admin/options-privacy.php:267 +msgid "There are no pages." +msgstr "Il n’y a aucune page." + +#. translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-admin/options-privacy.php:239 +msgid "Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème." + +#: wp-admin/privacy-policy-guide.php:21 wp-admin/privacy-policy-guide.php:74 +#: wp-admin/privacy-policy-guide.php:83 +msgid "Privacy Policy Guide" +msgstr "Guide de la politique de confidentialité" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:607 +msgid "Visitor comments may be checked through an automated spam detection service." +msgstr "Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:555 +msgid "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." +msgstr "Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:512 +msgid "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." +msgstr "Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les comptes pouvant téléverser des fichiers dans votre médiathèque. Les fichiers téléversés sont généralement accessibles publiquement." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:499 +msgid "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." +msgstr "Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:483 +msgid "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." +msgstr "Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs/utilisatrices et personnes visitant votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse e-mail, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:457 +msgid "Suggested text:" +msgstr "Texte suggéré :" + +#: wp-admin/privacy-policy-guide.php:77 +msgid "The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins." +msgstr "Le modèle propose des suggestions de sections dont vous pourriez avoir besoin. Sous chaque titre de section, vous trouverez un bref résumé des informations que vous devriez fournir, ce qui vous aidera à rédiger votre page. Certaines sections comprennent des contenus suggérés, d’autres devront être complétées par des informations provenant de votre thème et de vos extensions." + +#. translators: %s: Date of privacy policy text update. +#: wp-admin/includes/class-wp-privacy-policy-content.php:408 +msgid "Updated %s." +msgstr "Mise à jour le %s." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:396 +msgid "You deactivated this plugin on %s and may no longer need this policy." +msgstr "Vous avez désactivé l’extension %s et n’avez donc normalement plus besoin de ces informations." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:393 +msgid "Removed %s." +msgstr "%s supprimé." + +#: wp-admin/privacy-policy-guide.php:75 +msgid "Introduction" +msgstr "Introduction" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:336 +msgid "Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez le guide des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:66 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:140 +msgid "Erasing data..." +msgstr "Effacement des données…" + +#: wp-admin/erase-personal-data.php:114 +msgid "Add Data Erasure Request" +msgstr "Ajout d’une demande d’effacement de données" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:133 +msgid "Send export link" +msgstr "Envoyer le lien d’exportation" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:656 +msgid "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." +msgstr "Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:654 +msgid "Industry regulatory disclosure requirements" +msgstr "Affichage des informations liées aux secteurs soumis à des régulations spécifiques" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:649 +msgid "If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." +msgstr "Si votre site fournit un service qui inclut la prise de décision automatisée – par exemple, autoriser vos clients à souscrire à un crédit ou agréger leurs données dans un profil publicitaire – vous devez expliciter ce qui est mis en place et inclure des informations sur la façon dont les informations sont utilisées, quelles décisions sont prises avec ces données agrégées et quels sont les droits dont disposent les internautes sur les décisions prises sans intervention humaine." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:647 +msgid "What automated decision making and/or profiling we do with user data" +msgstr "Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:642 +msgid "If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data." +msgstr "Si votre site reçoit des données personnelles depuis des sources tierces – ce qui inclut les sources publicitaires – ces informations doivent être incluses dans la section sur les données issues de sources tierces de votre déclaration de protection de la vie privée." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:640 +msgid "What third parties we receive data from" +msgstr "Les services tiers qui nous transmettent des données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:635 +msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." +msgstr "Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues »." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:633 +msgid "What data breach procedures we have in place" +msgstr "Procédures mises en œuvre en cas de fuite de données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:628 +msgid "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." +msgstr "Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos comptes. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:626 +msgid "How we protect your data" +msgstr "Comment nous protégeons vos données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:621 +msgid "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." +msgstr "Si vous utilisez votre site dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:619 +msgid "Additional information" +msgstr "Informations supplémentaires" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:614 +msgid "In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." +msgstr "Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:604 +msgid "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." +msgstr "La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:602 +msgid "In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." +msgstr "Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:594 +msgid "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." +msgstr "Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:591 +msgid "In this section you should explain what rights your users have over their data and how they can invoke those rights." +msgstr "Dans cette section, indiquez les droits des comptes concernant leurs données et comment ils peuvent exercer ces droits." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:587 +msgid "What rights you have over your data" +msgstr "Les droits que vous avez sur vos données" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:583 +msgid "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." +msgstr "Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:581 +msgid "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue." +msgstr "Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:578 +msgid "In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." +msgstr "Dans cette section, vous devriez indiquer la durée de conservation des données personnelles collectées et traitées par votre site web. Même s’il est de votre responsabilité de fournir un planning de conservation de chaque jeu de données dont vous disposez, cette information n’a pas besoin d’être affichée ici. Par exemple, vous pourriez indiquer que vous conservez les données reçues via vos formulaires de contact pendant six mois, les statistiques de visites pendant un an et les enregistrements liés aux ventes en ligne pendant dix ans." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:574 +msgid "How long we retain your data" +msgstr "Durées de stockage de vos données" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:567 +msgid "By default WordPress does not share any personal data with anyone." +msgstr "Par défaut, WordPress ne partage vos informations personnelles avec personne." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:565 +msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." +msgstr "Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:561 +msgid "Who we share your data with" +msgstr "Utilisation et transmission de vos données personnelles" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:557 +msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." +msgstr "Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:553 +msgid "Analytics" +msgstr "Statistiques et mesures d’audience" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:548 +msgid "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." +msgstr "Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:546 +msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." +msgstr "Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:544 +msgid "Embedded content from other websites" +msgstr "Contenu embarqué depuis d’autres sites" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:539 +msgid "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." +msgstr "En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:537 +msgid "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." +msgstr "Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:535 +msgid "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." +msgstr "Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:533 +msgid "If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." +msgstr "Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:530 +msgid "In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." +msgstr "Dans cette sous-section, vous devriez lister les cookies utilisés par votre site, incluant ceux enregistrés par vos extensions, les réseaux sociaux et vos statistiques de visites. Nous avons indiqué les cookies que WordPress installe par défaut." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:526 +msgid "Cookies" +msgstr "Cookies" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:504 +msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." +msgstr "Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:502 +msgid "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." +msgstr "Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:522 +msgid "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." +msgstr "Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:520 +msgid "Contact forms" +msgstr "Formulaires de contact" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:515 +msgid "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." +msgstr "Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:491 +msgid "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." +msgstr "Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des comptes inscrits. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:489 +msgid "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds." +msgstr "Les données personnelles ne sont pas seulement créées par l’interaction d’une personne avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:487 +msgid "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." +msgstr "En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:485 +msgid "You should also note any collection and retention of sensitive personal data, such as data concerning health." +msgstr "Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:481 +msgid "What personal data we collect and why we collect it" +msgstr "Utilisation des données personnelles collectées" + +#. translators: Default privacy policy text. %s: Site URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:476 +msgid "Our website address is: %s." +msgstr "L’adresse de notre site est : %s." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:473 +msgid "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." +msgstr "La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:471 +msgid "In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information." +msgstr "Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:467 +msgid "Who we are" +msgstr "Qui sommes-nous ?" + +#: wp-admin/privacy-policy-guide.php:79 +msgid "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate." +msgstr "Il est de votre responsabilité de rédiger une politique de confidentialité compréhensible, de vous assurer qu’elle reflète les exigences nationales et internationales sur la vie privée et de maintenir cette politique à jour et exacte." + +#: wp-admin/privacy-policy-guide.php:78 +msgid "Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu." +msgstr "Veuillez modifier le contenu de votre politique de confidentialité. Assurez-vous de supprimer les exemples de textes et d’ajouter les différentes informations à propos de vos thèmes et extensions. Une fois votre page publiée, pensez à l’ajouter à votre menu de navigation ou à votre pied de page." + +#: wp-admin/privacy-policy-guide.php:76 +msgid "This text template will help you to create your website’s privacy policy." +msgstr "Ce modèle de texte est proposé pour vous aider à créer la politique de confidentialité de votre site." + +#: wp-admin/options-privacy.php:193 +msgid "As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy." +msgstr "En tant que propriétaire du site, vous pourriez avoir besoin de suivre des réglementations nationales ou internationales en matière de confidentialité. Par exemple, vous pouvez avoir besoin de créer et d’afficher une politique de confidentialité." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:68 +msgid "Force erasure has failed." +msgstr "L’effacement forcé a échoué." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:136 +msgid "Email could not be sent." +msgstr "L’e-mail n’a pas pu être envoyé." + +#: wp-admin/includes/privacy-tools.php:386 +msgctxt "date/time" +msgid "On" +msgstr "Le" + +#: wp-admin/includes/privacy-tools.php:382 +msgctxt "website URL" +msgid "At URL" +msgstr "À l’URL" + +#: wp-admin/includes/privacy-tools.php:378 +msgctxt "website name" +msgid "For site" +msgstr "Pour le site" + +#: wp-admin/includes/privacy-tools.php:374 +msgctxt "email address" +msgid "Report generated for" +msgstr "Rapport généré pour" + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:5022 +msgid "Exporter array at index %s does not include a friendly name." +msgstr "Le tableau d’exportation ne contient aucun « friendly name » à l’index %s." + +#: wp-admin/erase-personal-data.php:13 +msgid "Sorry, you are not allowed to erase personal data on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’effacer les données personnelles sur ce site." + +#: wp-admin/export-personal-data.php:13 +msgid "Sorry, you are not allowed to export personal data on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’exporter les données personnelles sur ce site." + +#: wp-admin/includes/ajax-actions.php:5189 +msgid "Eraser index is out of range." +msgstr "L’index d’effacement est hors de portée." + +#: wp-admin/includes/ajax-actions.php:5148 +msgid "Missing eraser index." +msgstr "Index d’effacement manquant." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5073 +msgid "Expected done (boolean) in response array from exporter: %s." +msgstr "Résultat attendu (booléen) dans le tableau de réponse de l’outil d’exportation : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5066 +msgid "Expected data array in response array from exporter: %s." +msgstr "Donnée tabulaire attendue dans le tableau de réponse de l’outil d’exportation : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5059 +msgid "Expected data in response array from exporter: %s." +msgstr "Donnée attendue dans le tableau de réponse de l’outil d’exportation : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5052 +msgid "Expected response as an array from exporter: %s." +msgstr "Réponse attendue de l’outil d’exportation en tant que tableau : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5038 +msgid "Exporter callback is not a valid callback: %s." +msgstr "Le retour de l’outil d’exportation n’est pas un rappel valide : %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:5031 +msgid "Exporter does not include a callback: %s." +msgstr "L’outil d’exportation n’inclue aucun rappel : %s." + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:5015 +msgid "Expected an array describing the exporter at index %s." +msgstr "Réponse attendue sous forme de tableau décrivant l’outil d’exportation à l’index %s." + +#: wp-admin/includes/ajax-actions.php:5001 +msgid "Exporter index is out of range." +msgstr "L’index d’exportation est hors limite." + +#: wp-admin/includes/ajax-actions.php:4997 +msgid "Exporter index cannot be negative." +msgstr "L’index d’exportation ne peut pas être un nombre inférieur à zéro." + +#: wp-admin/includes/ajax-actions.php:4991 +msgid "An exporter has improperly used the registration filter." +msgstr "Un outil d’exportation a utilisé le filtre d’inscription de façon erronée." + +#: wp-admin/includes/ajax-actions.php:4962 +#: wp-admin/includes/ajax-actions.php:5154 +msgid "Missing page index." +msgstr "Index de page manquant." + +#: wp-admin/includes/ajax-actions.php:4956 +msgid "Missing exporter index." +msgstr "Index d’exportation manquant." + +#: wp-admin/includes/ajax-actions.php:4947 +#: wp-admin/includes/ajax-actions.php:5138 +msgid "Invalid request type." +msgstr "Type de requête non valide." + +#: wp-admin/options-privacy.php:311 +msgid "Use This Page" +msgstr "Utiliser cette page" + +#: wp-admin/options-privacy.php:290 +msgid "Select a Privacy Policy page" +msgstr "Sélectionner une page de politique de confidentialité" + +#: wp-admin/options-privacy.php:288 +msgid "Change your Privacy Policy page" +msgstr "Modifier la page de politique de confidentialité" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy +#. Policy page. +#: wp-admin/options-privacy.php:221 +msgid "Edit or view your Privacy Policy page content." +msgstr "Modifiez ou visualisez le contenu de votre page de politique de confidentialité." + +#: wp-admin/options-privacy.php:202 +msgid "You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy." +msgstr "Vous devriez aussi relire votre politique de confidentialité régulièrement, spécialement après l’installation ou la mise à jour de thèmes ou d’extensions. Il se peut que des changements ou de nouvelles informations vous fassent envisager de les ajouter à votre politique." + +#: wp-admin/options-privacy.php:198 +msgid "However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate." +msgstr "Cependant, il est de votre responsabilité d’utiliser ces ressources correctement, afin de fournir les informations que votre politique de confidentialité nécessite, de tenir à jour ces informations et de garantir leur pertinence." + +#: wp-admin/options-privacy.php:197 +msgid "The new page will include help and suggestions for your privacy policy." +msgstr "La nouvelle page contiendra de l’aide et des suggestions pour votre politique de confidentialité." + +#: wp-admin/options-privacy.php:194 +msgid "If you already have a Privacy Policy page, please select it below. If not, please create one." +msgstr "Si vous disposez déjà d’une page de politique de confidentialité, veuillez la sélectionner ci-dessous. Sinon, veuillez en créer une." + +#. translators: %s: URL to Pages Trash. +#: wp-admin/options-privacy.php:136 +msgid "The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page." +msgstr "La page de politique de confidentialité actuellement sélectionnée est dans la corbeille. Veuillez créer ou sélectionner une nouvelle page de politique de confidentialité ou restaurer la page actuelle." + +#: wp-admin/options-privacy.php:126 +msgid "The currently selected Privacy Policy page does not exist. Please create or select a new page." +msgstr "La page de politique de confidentialité actuellement sélectionnée n’existe pas. Veuillez créer ou sélectionner une nouvelle page." + +#: wp-admin/options-privacy.php:102 +msgid "Unable to create a Privacy Policy page." +msgstr "Impossible de créer une page de politique de confidentialité." + +#. translators: Privacy Policy page slug. +#: wp-admin/includes/upgrade.php:399 +msgid "privacy-policy" +msgstr "politique-de-confidentialite" + +#. translators: %s: URL to Customizer -> Menus. +#: wp-admin/options-privacy.php:74 +msgid "Privacy Policy page setting updated successfully. Remember to update your menus!" +msgstr "La page de politique de confidentialité a bien été mise à jour. Pensez à mettre à jour vos menus !" + +#. translators: Hidden accessibility text. %s: Plugin name. +#: wp-admin/includes/class-wp-privacy-policy-content.php:435 +msgid "Copy suggested policy text from %s." +msgstr "Copier la suggestion de politique de confidentialité depuis %s." + +#. translators: Do not translate EXPIRATION, LINK, SITENAME, SITEURL: those are +#. placeholders. +#: wp-admin/includes/privacy-tools.php:662 +msgid "" +"Howdy,\n" +"\n" +"Your request for an export of personal data has been completed. You may\n" +"download your personal data by clicking on the link below. For privacy\n" +"and security, we will automatically delete the file on ###EXPIRATION###,\n" +"so please download it before then.\n" +"\n" +"###LINK###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour,\n" +"\n" +"Votre demande d’exportation de données personnelles a été traitée. Vous pouvez télécharger vos données personnelles en cliquant sur le lien ci-dessous. Par sécurité et afin de respecter vos données privées, ce fichier sera automatiquement supprimé le ###EXPIRATION###, alors veuillez le télécharger d’ici là.\n" +"\n" +"###LINK###\n" +"\n" +"Cordialement,\n" +"L’équipe de ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:135 +msgid "Email sent." +msgstr "E-mail envoyé." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:134 +msgid "Sending email..." +msgstr "Envoi de l’e-mail…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:62 +msgid "Download personal data again" +msgstr "Retélécharger les données personnelles" + +#: wp-admin/includes/privacy-tools.php:746 +msgid "Unable to send personal data export email." +msgstr "Impossible d’envoyer l’exportation des données personnelles par e-mail." + +#. translators: Personal data export notification email subject. %s: Site +#. title. +#: wp-admin/includes/privacy-tools.php:636 +msgid "[%s] Personal Data Export" +msgstr "[%s] Exportation de données personnelles" + +#: wp-admin/includes/privacy-tools.php:593 +msgid "Invalid request ID when sending personal data export email." +msgstr "ID non valide lors de l’envoi par e-mail des données d’exportation." + +#: wp-admin/includes/privacy-tools.php:467 +msgid "Personal Data Export" +msgstr "Exportation de données personnelles" + +#. translators: %s: User's email address. +#: wp-admin/includes/privacy-tools.php:361 +msgid "Personal Data Export for %s" +msgstr "Exportation de données personnelles pour %s" + +#: wp-admin/includes/ajax-actions.php:4952 +msgid "A valid email address must be given." +msgstr "Erreur : une adresse e-mail valide doit être fournie." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:65 +msgid "Force erase personal data" +msgstr "Forcer l’effacement des données personnelles" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:156 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:163 +msgid "Remove request" +msgstr "Supprimer la demande" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:116 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:122 +msgid "Waiting for confirmation" +msgstr "Attente de confirmation" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:63 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:136 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:142 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:68 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:142 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:149 +msgid "Retry" +msgstr "Réessayer" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:61 +msgid "Downloading data..." +msgstr "Téléchargement des données…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:60 +msgid "Download personal data" +msgstr "Télécharger les données personnelles" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:45 +msgid "Requested" +msgstr "Demande envoyée" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:43 +msgid "Requester" +msgstr "Origine de la demande" + +#: wp-admin/erase-personal-data.php:138 wp-admin/export-personal-data.php:138 +msgid "Send Request" +msgstr "Envoyer la demande de confirmation" + +#: wp-admin/erase-personal-data.php:119 wp-admin/export-personal-data.php:119 +msgid "Username or email address" +msgstr "Identifiant ou adresse e-mail" + +#: wp-admin/export-personal-data.php:114 +msgid "Add Data Export Request" +msgstr "Ajouter une demande d’exportation de données" + +#: wp-admin/includes/privacy-tools.php:171 +msgid "Confirmation request initiated successfully." +msgstr "Demande de confirmation bien initialisée." + +#: wp-admin/includes/privacy-tools.php:135 +msgid "Unable to add this request. A valid email address or username must be supplied." +msgstr "Impossible d’ajouter cette demande. Une adresse e-mail ou un identifiant valide doit être fourni." + +#: wp-admin/includes/privacy-tools.php:91 +msgid "Confirmation request sent again successfully." +msgstr "Demande de confirmation bien ré-envoyée." + +#: wp-admin/includes/privacy-tools.php:155 +msgid "Unable to initiate confirmation request." +msgstr "Impossible d’initialiser la demande de confirmation." + +#: wp-admin/includes/ajax-actions.php:4934 +#: wp-admin/includes/ajax-actions.php:5124 +msgid "Invalid request ID." +msgstr "ID de demande non valide." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5298 +msgid "Expected done flag in response array from %1$s eraser (index %2$d)." +msgstr "Marqueur de résultat attendu dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5287 +msgid "Expected messages key to reference an array in response array from %1$s eraser (index %2$d)." +msgstr "Clé de messages de référence d’un tableau attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5276 +msgid "Expected messages key in response array from %1$s eraser (index %2$d)." +msgstr "Clé de messages attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5265 +msgid "Expected items_retained key in response array from %1$s eraser (index %2$d)." +msgstr "Clé items_retained attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5254 +msgid "Expected items_removed key in response array from %1$s eraser (index %2$d)." +msgstr "Clé items_removed attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5243 +msgid "Did not receive array from %1$s eraser (index %2$d)." +msgstr "Pas de tableau reçu depuis l’effaceur %1$s (index %2$d)." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5207 +msgid "Eraser array at index %d does not include a friendly name." +msgstr "Le tableau d’effacement à l’index %d ne contient pas de nom élégant." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5202 +msgid "Expected an array describing the eraser at index %d." +msgstr "Un tableau décrivant l’effaceur à l’index %d est attendu." + +#: wp-admin/includes/ajax-actions.php:5005 +#: wp-admin/includes/ajax-actions.php:5193 +msgid "Page index cannot be less than one." +msgstr "L’index de page ne peut pas être inférieur à 1." + +#: wp-admin/includes/ajax-actions.php:5185 +msgid "Eraser index cannot be less than one." +msgstr "L’index de suppression ne peut pas être inférieur à 1." + +#: wp-admin/includes/ajax-actions.php:5144 +msgid "Invalid email address in request." +msgstr "Adresse e-mail non valide dans la demande." + +#: wp-admin/includes/plugin-install.php:682 +msgid "Requires PHP Version:" +msgstr "Nécessite PHP en version :" + +#. translators: %s: https://wordpress.org/about/stats +#: wp-admin/privacy.php:52 +msgid "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." +msgstr "Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées à des fins statistiques comme celles que vous pouvez consulter sur la page des statistiques de WordPress.org." + +#. translators: %s: Link to Custom CSS section in the Customizer. +#: wp-admin/theme-editor.php:216 +msgid "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." +msgstr "Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué." + +#: wp-admin/theme-editor.php:214 +msgid "Did you know?" +msgstr "Le saviez-vous ?" + +#: wp-admin/credits.php:130 +msgid "Noteworthy Contributors" +msgstr "Contributrices & contributeurs remarquables" + +#: wp-admin/theme-editor.php:421 +msgid "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal." + +#: wp-admin/plugin-editor.php:369 +msgid "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal." + +#: wp-admin/plugin-editor.php:368 +msgid "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates." +msgstr "Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour." + +#. translators: 1: Documentation URL, 2: URL to Reading Settings screen. +#: wp-admin/options-writing.php:241 +msgid "WordPress is not notifying any Update Services because of your site’s visibility settings." +msgstr "WordPress ne notifie aucun service de mise à jour du fait de vos réglages de visibilité." + +#. translators: 1: Documentation URL, 2: web.config, 3: Ctrl + A, 4: ⌘ + A +#: wp-admin/options-permalink.php:499 +msgid "Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file." +msgstr "Si le répertoire racine de votre site était accessible en écriture, cela aurait pu être fait automatiquement, mais ce n’est pas le cas donc voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:253 +msgid "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." +msgstr "Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress." + +#: wp-admin/freedoms.php:53 wp-admin/freedoms.php:103 +msgid "https://wordpress.org/about/license/" +msgstr "https://fr.wordpress.org/about/license/" + +#: wp-admin/privacy.php:46 +msgid "From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes." +msgstr "De temps en temps, votre site WordPress peut envoyer des données sur WordPress.org incluant entre autres la version de WordPress utilisée et la liste des extensions et des thèmes installés." + +#. translators: Attachment information. %s: Date the attachment was uploaded. +#: wp-admin/includes/meta-boxes.php:445 +msgid "Uploaded on: %s" +msgstr "Téléversé le : %s" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-plugin-upgrader.php:77 +#: wp-admin/includes/class-theme-upgrader.php:75 +msgid "Downloading installation package from %s…" +msgstr "Téléchargement du paquet d’installation depuis %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-language-pack-upgrader.php:117 +msgid "Downloading translation from %s…" +msgstr "Téléchargement des traductions depuis %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-core-upgrader.php:37 +#: wp-admin/includes/class-plugin-upgrader.php:60 +#: wp-admin/includes/class-theme-upgrader.php:59 +msgid "Downloading update from %s…" +msgstr "Téléchargement de la mise à jour depuis %s…" + +#. translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: +#. add_meta_boxes +#: wp-admin/includes/template.php:2681 +msgid "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." +msgstr "Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s." + +#: wp-admin/includes/template.php:2304 +msgid "Customization Draft" +msgstr "Brouillon de personnalisation" + +#. translators: %s: URL to the Customizer. +#: wp-admin/includes/meta-boxes.php:316 +msgid "This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." +msgstr "Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements." + +#: wp-admin/theme-editor.php:283 +msgid "Theme Files" +msgstr "Fichiers du thème" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/misc.php:421 wp-admin/includes/misc.php:523 +msgid "folder" +msgstr "dossier" + +#: wp-admin/includes/file.php:591 +msgid "Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP." +msgstr "Impossible d’envoyer un message au site afin de vérifier l’absence d’erreurs fatales. Du coup, la modification PHP a été annulée. Vous allez devoir téléverser votre fichier PHP modifié par un autre moyen, par exemple en utilisant un client FTP." + +#: wp-admin/press-this.php:75 wp-admin/press-this.php:81 +msgid "Installation Required" +msgstr "Installation nécessaire" + +#. translators: %s: Plugin filename. +#: wp-admin/includes/plugin.php:1048 +msgid "Could not fully remove the plugin %s." +msgstr "Impossible de supprimer l’extension %s." + +#: wp-admin/user-new.php:371 +msgid "User has been created, but could not be added to this site." +msgstr "Le compte a été créé, mais il ne peut pas être ajouté à ce site." + +#: wp-admin/user-new.php:368 +msgid "That user could not be added to this site." +msgstr "Ce compte ne peut pas être ajouté à ce site." + +#: wp-admin/user-edit.php:328 +msgid "Disable syntax highlighting when editing code" +msgstr "Désactiver le surlignage syntaxique lors de l’édition de code" + +#: wp-admin/user-edit.php:325 +msgid "Syntax Highlighting" +msgstr "Édition de code" + +#: wp-admin/setup-config.php:446 wp-admin/setup-config.php:511 +msgid "Run the installation" +msgstr "Lancer l’installation" + +#: wp-admin/privacy.php:63 +msgid "https://wordpress.org/about/privacy/" +msgstr "https://fr.wordpress.org/about/privacy/" + +#: wp-admin/press-this.php:80 +msgid "Press This is not available. Please contact your site administrator." +msgstr "Press This n’est pas disponible. Veuillez contacter l’administrateur ou l’administratrice du site." + +#. translators: %s: URL to Press This bookmarklet on the main site. +#: wp-admin/press-this.php:68 +msgid "Press This is not installed. Please install Press This from the main site." +msgstr "Press This n’est pas installé. Veuillez installer Press This depuis le site principal." + +#: wp-admin/press-this.php:44 +msgid "Activate Press This" +msgstr "Activer Press This" + +#: wp-admin/plugin-editor.php:373 wp-admin/theme-editor.php:425 +msgid "I understand" +msgstr "Je comprends" + +#: wp-admin/plugin-editor.php:367 wp-admin/theme-editor.php:404 +msgid "Heads up!" +msgstr "Faites attention !" + +#: wp-admin/plugin-editor.php:317 +msgid "Warning: Making changes to active plugins is not recommended." +msgstr "Avertissement : Effectuer des modifications dans les extensions actives n’est pas recommandé." + +#: wp-admin/plugin-editor.php:297 wp-admin/theme-editor.php:321 +msgid "Selected file content:" +msgstr "Contenu du fichier sélectionné :" + +#: wp-admin/plugin-editor.php:207 wp-admin/theme-editor.php:202 +msgid "There was an error while trying to update the file. You may need to fix something and try updating again." +msgstr "Une erreur s’est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer." + +#. translators: %s: Select field to choose the front page. +#: wp-admin/options-reading.php:116 +msgid "Homepage: %s" +msgstr "Page d’accueil : %s" + +#: wp-admin/options-permalink.php:386 +msgid "Available tags:" +msgstr "Balises disponibles :" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:315 +msgid "%s (already used in permalink structure)" +msgstr "%s (déjà utilisé dans la structure de permalien)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:311 +msgid "%s added to permalink structure" +msgstr "%s ajouté à la structure du permalien" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:298 +msgid "%s (A sanitized version of the author name.)" +msgstr "%s (Une version normalisée du nom de l’auteur ou de l’autrice)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:296 +msgid "%s (Category slug. Nested sub-categories appear as nested directories in the URL.)" +msgstr "%s (slug de catégorie. Les sous-catégories imbriquées apparaissent sous la forme de sous-répertoires dans l’URL.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:294 +msgid "%s (The sanitized post title (slug).)" +msgstr "%s (Le titre normalisé de la publication, ou slug)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:292 +msgid "%s (The unique ID of the post, for example 423.)" +msgstr "%s (L’ID unique de la publication, par exemple 423)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:290 +msgid "%s (Second of the minute, for example 33.)" +msgstr "%s (Seconde de la minute, par exemple 33.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:288 +msgid "%s (Minute of the hour, for example 43.)" +msgstr "%s (Minute de l’heure, par exemple 43.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:286 +msgid "%s (Hour of the day, for example 15.)" +msgstr "%s (Heure de la journée, par exemple 15.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:284 +msgid "%s (Day of the month, for example 28.)" +msgstr "%s (Jour du mois, par exemple 28.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:282 +msgid "%s (Month of the year, for example 05.)" +msgstr "%s (Mois de l’année, par exemple 05.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:280 +msgid "%s (The year of the post, four digits, for example 2004.)" +msgstr "%s (L’année de la publication, en quatre chiffres, par exemple 2004)" + +#: wp-admin/includes/theme-install.php:264 +msgid "Theme Installation" +msgstr "Installation du thème" + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1881 +msgid "%s is currently editing this post." +msgstr "%s modifie actuellement cette publication." + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1878 +msgid "%s is currently editing this post. Do you want to take over?" +msgstr "%s modifie actuellement cette publication. Voulez-vous prendre la main ?" + +#: wp-admin/includes/plugin.php:505 +msgid "Custom installation script." +msgstr "Script personnalisé d’installation." + +#: wp-admin/includes/plugin-install.php:689 +msgid "Active Installations:" +msgstr "Installations actives :" + +#: wp-admin/includes/plugin-install.php:604 wp-admin/update.php:128 +msgid "Plugin Installation" +msgstr "Installation de l’extension" + +#: wp-admin/includes/ms.php:1159 +msgid "Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database." +msgstr "Réglages — Cette page affiche une liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par les extensions que vous activez. Notez que certains champs sont grisé et affichent « Serialized Data » ; vous ne pouvez pas modifier ces valeurs en raison de la manière dont elles sont stockées dans la base de données." + +#. translators: %s: URL to Network Themes screen. +#: wp-admin/includes/ms.php:1156 +msgid "Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen." +msgstr "Thèmes — Cette zone affiche les thèmes qui n’ont pas encore été activés sur le réseau. Un thème activé dans ce menu le rendra accessible au présent site. Cela n’active pas le thème, mais l’affichera dans le menu Apparence du site. Pour activer un thème sur l’ensemble du réseau, allez sur l’écran Thèmes du réseau." + +#: wp-admin/includes/ms.php:1153 +msgid "Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network." +msgstr "Comptes — Cette page affiche les comptes associés à ce site. Vous pouvez modifier leur rôle, réinitialiser leur mot de passe, ou les supprimer du site. Supprimer un compte d’un site ne le supprime pas du réseau." + +#: wp-admin/includes/ms.php:1152 +msgid "Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable." +msgstr "Info — L’URL du site est rarement modifiée, car cela peut empêcher le site de fonctionner correctement. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs ou administratrices du réseau peuvent archiver un site, le marquer comme indésirable, le supprimer et le marquer comme étant « pour adultes », afin de le retirer de la liste publique, ou le désactiver." + +#: wp-admin/includes/ms.php:1151 +msgid "The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable." +msgstr "Le menu sert à modifier les informations propres à chaque site, notamment si leur interface d’administration est inaccessible." + +#: wp-admin/includes/file.php:520 +msgid "Unable to write to file." +msgstr "Impossible d’écrire sur le fichier." + +#. translators: 1: Line number, 2: File path. +#: wp-admin/includes/file.php:316 +msgid "Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again." +msgstr "Vos modifications de code PHP ont été annulées en raison d’une erreur sur la ligne %1$s du fichier %2$s. Veuillez la corriger et réessayer d’enregistrer." + +#. translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), +#. then use that. Otherwise, leave untranslated. +#: wp-admin/includes/dashboard.php:1336 +msgctxt "Events and News dashboard widget" +msgid "https://wordpress.org/news/" +msgstr "https://fr.wordpress.org/news/" + +#: wp-admin/includes/dashboard.php:87 wp-admin/includes/dashboard.php:659 +msgid "Your Recent Drafts" +msgstr "Vos brouillons récents" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-users-list-table.php:589 +#: wp-admin/includes/class-wp-ms-users-list-table.php:316 +msgctxt "name" +msgid "Unknown" +msgstr "Inconnu" + +#. translators: %s: Author's display name. +#: wp-admin/includes/class-wp-users-list-table.php:497 +msgid "View posts by %s" +msgstr "Voir les publications par %s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-terms-list-table.php:579 +msgid "No description" +msgstr "Aucune description" + +#. translators: %s: Number of installations. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:723 +msgid "%s Active Installations" +msgstr "%s installations actives" + +#: wp-admin/includes/class-theme-upgrader.php:81 +msgid "Theme installation failed." +msgstr "L’installation du thème a échoué." + +#: wp-admin/includes/class-plugin-upgrader.php:83 +msgid "Plugin installation failed." +msgstr "L’installation de l’extension a échoué." + +#: wp-admin/includes/class-plugin-installer-skin.php:116 +msgid "Activate Plugin & Go to Press This" +msgstr "Activer l’extension et aller sur Press This" + +#: wp-admin/customize.php:71 +msgid "Your scheduled changes just published" +msgstr "Votre planification vient d’être publiée" + +#: wp-admin/includes/class-theme-installer-skin.php:147 +#: wp-admin/includes/class-theme-upgrader-skin.php:113 +#: wp-admin/includes/class-wp-themes-list-table.php:218 +#: wp-admin/js/updates.js:1815 +msgctxt "theme" +msgid "Activate" +msgstr "Activer" + +#: wp-admin/options-discussion.php:60 +msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" +msgstr "Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:852 +#: wp-admin/includes/plugin-install.php:1010 wp-admin/js/updates.js:972 +msgctxt "plugin" +msgid "Network Activate %s" +msgstr "Activer %s sur le réseau" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:958 +#: wp-admin/includes/plugin-install.php:997 wp-admin/js/updates.js:983 +msgctxt "plugin" +msgid "Activate %s" +msgstr "Activer %s" + +#: wp-admin/includes/class-wp-media-list-table.php:261 +msgid "No media files found." +msgstr "Aucun fichier média trouvé." + +#: wp-admin/import.php:139 wp-admin/import.php:188 wp-admin/js/updates.js:1261 +msgid "Run Importer" +msgstr "Lancer l’outil d’importation" + +#. translators: %s: Importer name. +#: wp-admin/import.php:138 wp-admin/import.php:187 wp-admin/js/updates.js:1257 +msgid "Run %s" +msgstr "Lancer %s" + +#: wp-admin/includes/class-wp-debug-data.php:225 +msgctxt "comment status" +msgid "Open" +msgstr "Ouvert" + +#: wp-admin/includes/image-edit.php:66 +msgid "Image Rotation" +msgstr "Rotation de l’image" + +#. translators: %s: Meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1507 +msgid "There are no events scheduled near you at the moment. Would you like to organize a WordPress event?" +msgstr "Il n’y a aucun évènement planifié à proximité de vous pour le moment. Voulez-vous en organiser un ?" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:45 +msgid "Edit User %s" +msgstr "Modifier le compte %s" + +#. translators: Hidden accessibility text. %s: Widget title. +#: wp-admin/includes/widgets.php:251 +msgid "Edit widget: %s" +msgstr "Modifier le widget : %s" + +#: wp-admin/includes/dashboard.php:1499 wp-admin/includes/dashboard.php:1508 +msgid "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" +msgstr "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" + +#. translators: 1: The city the user searched for, 2: Meetup organization +#. documentation URL. +#: wp-admin/includes/dashboard.php:1497 +msgid "There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?" +msgstr "Il n’y a aucun évènement planifié à proximité de %1$s pour le moment. Voulez-vous en organiser un ?" + +#. translators: %s: The name of a city. +#: wp-admin/includes/dashboard.php:1426 +msgid "Attend an upcoming event near %s." +msgstr "Participez à un évènement à venir près de %s." + +#: wp-admin/includes/dashboard.php:1396 +msgid "Cincinnati" +msgstr "Paris" + +#: wp-admin/includes/dashboard.php:1384 +msgid "City:" +msgstr "Ville :" + +#: wp-admin/includes/dashboard.php:1324 +msgid "WordCamps" +msgstr "WordCamps" + +#: wp-admin/includes/dashboard.php:1312 +msgid "Meetups" +msgstr "Meetups" + +#: wp-admin/includes/dashboard.php:1354 wp-admin/js/dashboard.js:591 +msgid "An error occurred. Please try again." +msgstr "Une erreur s’est produite. Veuillez réessayer." + +#: wp-admin/includes/dashboard.php:92 +msgid "WordPress Events and News" +msgstr "Évènements et nouveautés WordPress" + +#. translators: Date format for upcoming events on the dashboard. Include the +#. day of the week. See https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/class-wp-community-events.php:401 +#: wp-admin/includes/class-wp-community-events.php:406 +#: wp-admin/js/dashboard.js:780 +msgid "l, M j, Y" +msgstr "l j M Y" + +#: wp-admin/includes/class-wp-community-events.php:125 +msgid "Unknown API error." +msgstr "Erreur d’API inconnue." + +#. translators: %d: Numeric HTTP status code, e.g. 400, 403, 500, 504, etc. +#: wp-admin/includes/class-wp-community-events.php:120 +msgid "Invalid API response code (%d)." +msgstr "Code de réponse d’API non valide (%d)." + +#: wp-admin/users.php:193 wp-admin/users.php:287 +msgid "Sorry, you are not allowed to delete users." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des comptes." + +#: wp-admin/user-new.php:23 wp-admin/user-new.php:195 +msgid "Sorry, you are not allowed to create users." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des comptes." + +#: wp-admin/customize.php:272 +msgctxt "short (~12 characters) label for hide controls button" +msgid "Hide Controls" +msgstr "Masquer les controles" + +#: wp-admin/theme-install.php:71 +msgid "Expand Sidebar" +msgstr "Étendre la colonne latérale" + +#: wp-admin/nav-menus.php:1200 +msgid "Display location" +msgstr "Afficher l’emplacement" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:537 +msgid "ID #%1$s: %2$s Sorry, you are not allowed to remove this user." +msgstr "ID #%1$s : %2$s Désolé, vous n’avez pas l’autorisation pour supprimer ce compte." + +#: wp-admin/user-edit.php:62 +msgid "You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see." +msgstr "Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans affecter la langue que les visiteurs du site voient." + +#: wp-admin/theme-install.php:271 +msgid "Edit Filters" +msgstr "Modifier les filtres" + +#: wp-admin/theme-install.php:244 wp-admin/theme-install.php:266 +msgid "Clear current filters" +msgstr "Réinitialiser les filtres actuels" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:73 +msgid "Select one or more Theme features to filter by" +msgstr "Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/theme.php:885 wp-admin/theme-install.php:526 +msgid "(%s ratings)" +msgstr "(%s votes)" + +#: wp-admin/includes/template.php:2446 +msgid "Current Background Image" +msgstr "Image d’arrière plan actuelle" + +#: wp-admin/includes/template.php:2426 +msgid "Current Header Image" +msgstr "Image d’entête actuelle" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:147 +msgid "Set status" +msgstr "État" + +#. translators: Hidden accessibility text. %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1057 +msgid "“%s” is locked" +msgstr "« %s » est verrouillé" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:718 +#: wp-admin/includes/plugin-install.php:699 +msgctxt "Active plugin installations" +msgid "Less Than 10" +msgstr "Inférieur à 10" + +#: wp-admin/includes/ajax-actions.php:2595 +msgid "Sorry, you are not allowed to attach files to this post." +msgstr "Désolé, vous n’avez pas l’autorisation d’attacher des fichiers à cette publication." + +#: wp-admin/freedoms.php:96 wp-admin/includes/plugin-install.php:405 +#: wp-admin/includes/plugin-install.php:706 wp-admin/plugin-install.php:101 +#: wp-admin/plugins.php:570 +msgid "https://wordpress.org/plugins/" +msgstr "https://fr.wordpress.org/plugins/" + +#: wp-admin/customize.php:252 +msgid "The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes." +msgstr "L’outil de personnalisation vous permet de prévisualiser les modifications sur votre site avant de les publier. Vous pouvez naviguer sur différentes pages de votre site au sein de la prévisualisation. Des raccourcis sont affichés pour certains éléments modifiables. La personnalisation est destinée à être utilisée avec des thèmes non basé sur les blocs." + +#: wp-admin/customize.php:72 wp-admin/customize.php:81 +msgid "Customize New Changes" +msgstr "Personnaliser les nouvelles modifications" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-custom-background.php:485 +#: wp-admin/includes/class-custom-background.php:489 +msgctxt "Background Scroll" +msgid "Scroll" +msgstr "Défilement" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-custom-background.php:472 +#: wp-admin/includes/class-custom-background.php:476 +msgctxt "Background Repeat" +msgid "Repeat" +msgstr "Répétition" + +#: wp-admin/plugin-install.php:103 +msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." +msgstr "Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section des extensions." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/plugin-install.php:100 +msgid "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses." +msgstr "Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:324 +msgid "Search plugins by:" +msgstr "Rechercher des extensions par :" + +#: wp-admin/includes/import.php:224 +msgid "Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file." +msgstr "Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’exportation de WordPress." + +#: wp-admin/includes/import.php:218 +msgid "Import posts & media from Tumblr using their API." +msgstr "Importer des articles et des fichiers média depuis Tumblr via leur API." + +#: wp-admin/includes/import.php:212 +msgid "Import posts from an RSS feed." +msgstr "Importer des articles depuis un flux RSS." + +#: wp-admin/includes/import.php:206 +msgid "Import posts and comments from a Movable Type or TypePad blog." +msgstr "Importer des articles et commentaires depuis un blog Movable Type ou TypePad." + +#: wp-admin/includes/import.php:200 +msgid "Import posts from LiveJournal using their API." +msgstr "Importer des articles depuis LiveJournal via leur API." + +#: wp-admin/includes/import.php:194 +msgid "Convert existing categories to tags or tags to categories, selectively." +msgstr "Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective." + +#: wp-admin/includes/import.php:188 +msgid "Import posts, comments, and users from a Blogger blog." +msgstr "Importer des articles, commentaires et comptes depuis un blog Blogger." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:916 +msgctxt "plugin" +msgid "Deactivate %s" +msgstr "Désactiver %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:882 +#: wp-admin/includes/class-wp-plugins-list-table.php:988 +msgctxt "plugin" +msgid "Delete %s" +msgstr "Supprimer %s" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:827 +msgctxt "plugin" +msgid "Network Deactivate %s" +msgstr "Désactiver %s du réseau" + +#: wp-admin/user-new.php:285 +msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." +msgstr "Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue." + +#: wp-admin/user-new.php:283 +msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." +msgstr "Les nouveaux comptes reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher ». L’identifiant ne peut pas être modifié une fois que le compte a été créé." + +#. translators: %s: Plugin name. +#: wp-admin/includes/update.php:995 +msgctxt "plugin" +msgid "%s was successfully deleted." +msgstr "%s a bien été supprimée." + +#: wp-admin/plugins.php:566 +msgid "The search for installed plugins will search for terms in their name, description, or author." +msgstr "La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions, leurs auteurs ou autrices." + +#: wp-admin/includes/theme.php:337 +msgid "Custom Logo" +msgstr "Logo personnalisé" + +#: wp-admin/users.php:470 wp-admin/users.php:502 +#: wp-admin/network/site-users.php:120 +msgid "Sorry, you are not allowed to remove users." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des comptes." + +#: wp-admin/user-new.php:16 wp-admin/user-new.php:57 +#: wp-admin/network/user-new.php:14 +msgid "Sorry, you are not allowed to add users to this network." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des comptes pour ce réseau." + +#: wp-admin/customize.php:35 +msgid "Sorry, you are not allowed to edit this changeset." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications." + +#: wp-admin/includes/ajax-actions.php:4302 wp-admin/update.php:211 +#: wp-admin/update.php:234 +msgid "Sorry, you are not allowed to update themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site." + +#: wp-admin/update-core.php:23 wp-admin/update-core.php:1155 +#: wp-admin/update-core.php:1191 wp-admin/update-core.php:1232 +#: wp-admin/update-core.php:1273 wp-admin/update-core.php:1302 +msgid "Sorry, you are not allowed to update this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour ce site." + +#: wp-admin/themes.php:448 wp-admin/themes.php:846 +msgid "New version available. " +msgstr "Nouvelle version disponible. " + +#: wp-admin/theme-install.php:187 +msgid "The Theme Installer screen requires JavaScript." +msgstr "L’écran d’installation de thèmes nécessite JavaScript." + +#: wp-admin/includes/file.php:439 wp-admin/theme-editor.php:18 +msgid "Sorry, you are not allowed to edit templates for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site." + +#: wp-admin/setup-config.php:343 +msgid "Error: \"Table Prefix\" is invalid." +msgstr "Erreur : préfixe de table invalide." + +#: wp-admin/plugins.php:228 +msgid "Sorry, you are not allowed to deactivate plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site." + +#: wp-admin/plugins.php:94 +msgid "Sorry, you are not allowed to activate plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site." + +#: wp-admin/includes/file.php:406 wp-admin/plugin-editor.php:18 +msgid "Sorry, you are not allowed to edit plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site." + +#: wp-admin/options.php:260 +msgid "Sorry, you are not allowed to modify unregistered settings for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site." + +#: wp-admin/options-discussion.php:12 wp-admin/options-general.php:16 +#: wp-admin/options-media.php:13 wp-admin/options-permalink.php:13 +#: wp-admin/options-reading.php:13 wp-admin/options-writing.php:13 +#: wp-admin/options.php:52 wp-admin/network.php:19 +msgid "Sorry, you are not allowed to manage options for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les options de ce site." + +#: wp-admin/nav-menus.php:796 wp-admin/widgets-form.php:394 +msgid "Manage with Live Preview" +msgstr "Gérer avec la prévisualisation en direct" + +#: wp-admin/ms-delete-site.php:17 +msgid "Sorry, you are not allowed to delete this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/link-add.php:13 +msgid "Sorry, you are not allowed to add links to this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site." + +#. translators: %s: Gravatar URL. +#: wp-admin/includes/upgrade.php:285 +msgid "" +"Hi, this is a comment.\n" +"To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" +"Commenter avatars come from Gravatar." +msgstr "" +"Bonjour, ceci est un commentaire.\n" +"Pour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\n" +"Les avatars des personnes qui commentent arrivent depuis Gravatar." + +#. translators: %s: Theme name. +#: wp-admin/includes/update.php:1003 +msgctxt "theme" +msgid "%s was successfully deleted." +msgstr "%s a bien été supprimé." + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version. +#: wp-admin/includes/update.php:337 +msgid "WordPress %2$s is available! Please notify the site administrator." +msgstr "WordPress %2$s est disponible ! Veuillez informer l’administrateur ou l’administratrice du site." + +#: wp-admin/includes/update.php:332 +msgid "Please update WordPress now" +msgstr "Veuillez mettre WordPress à jour maintenant" + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version, 3: +#. URL to network admin, 4: Accessibility text. +#: wp-admin/includes/update.php:328 +msgid "WordPress %2$s is available! Please update now." +msgstr "WordPress %2$s est disponible ! Veuillez mettre à jour maintenant." + +#: wp-admin/includes/theme.php:327 +msgid "Portfolio" +msgstr "Portfolio" + +#: wp-admin/includes/theme.php:326 +msgid "Photography" +msgstr "Photographie" + +#: wp-admin/includes/dashboard.php:1337 wp-admin/includes/theme.php:325 +msgid "News" +msgstr "Actualités" + +#: wp-admin/includes/theme.php:323 +msgid "Food & Drink" +msgstr "Nourriture & Boisson" + +#: wp-admin/includes/theme.php:322 +msgid "Entertainment" +msgstr "Divertissement" + +#: wp-admin/includes/theme.php:321 +msgid "Education" +msgstr "Éducation" + +#: wp-admin/includes/theme.php:320 +msgid "E-Commerce" +msgstr "E-Commerce" + +#: wp-admin/includes/theme.php:319 +msgid "Blog" +msgstr "Blog" + +#: wp-admin/includes/theme.php:341 +msgid "Footer Widgets" +msgstr "Widgets de pied de page" + +#: wp-admin/includes/theme.php:352 +msgid "Grid Layout" +msgstr "Style en grille" + +#: wp-admin/includes/template.php:2708 +msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." +msgstr "Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:2037 +msgid "Close media attachment panel" +msgstr "Fermer le panneau des fichiers joints." + +#: wp-admin/includes/ms.php:1068 +msgid "Info" +msgstr "Info" + +#: wp-admin/includes/meta-boxes.php:1083 +msgid "Need help? Use the Help tab above the screen title." +msgstr "Besoin d’aide ? Utilisez l’onglet « Aide » au dessus du titre de l’écran." + +#: wp-admin/includes/menu.php:380 wp-admin/my-sites.php:17 +#: wp-admin/network/index.php:17 wp-admin/network/settings.php:17 +#: wp-admin/network/site-info.php:32 wp-admin/network/site-settings.php:32 +#: wp-admin/network/site-themes.php:57 wp-admin/network/site-users.php:50 +#: wp-admin/network/sites.php:14 wp-admin/network/sites.php:151 +#: wp-admin/network/upgrade.php:39 wp-admin/network/user-new.php:37 +#: wp-admin/network/users.php:14 wp-admin/network/users.php:24 +#: wp-admin/network/users.php:51 wp-admin/network/users.php:65 +#: wp-admin/network/users.php:160 +msgid "Sorry, you are not allowed to access this page." +msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." + +#: wp-admin/includes/file.php:52 +msgid "Embed Footer Template" +msgstr "Modèle intégré de pied de page" + +#: wp-admin/includes/file.php:51 +msgid "Embed Header Template" +msgstr "Modèle intégré d’entête" + +#: wp-admin/includes/file.php:50 +msgid "Embed Content Template" +msgstr "Modèle intégré de contenu" + +#: wp-admin/includes/file.php:49 +msgid "Embed 404 Template" +msgstr "Modèle intégré 404" + +#: wp-admin/includes/file.php:48 +msgid "Embed Template" +msgstr "Modèle intégré" + +#: wp-admin/includes/plugin-install.php:991 wp-admin/js/updates.js:1155 +#: wp-admin/js/updates.js:1163 +msgctxt "plugin" +msgid "Active" +msgstr "Actif" + +#: wp-admin/includes/class-wp-media-list-table.php:597 +msgid "(Private post)" +msgstr "(Publication privée)" + +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:379 +#: wp-admin/link-manager.php:12 wp-admin/link-manager.php:92 +msgid "Sorry, you are not allowed to edit the links for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site." + +#: wp-admin/options-privacy.php:13 wp-admin/privacy-policy-guide.php:13 +msgid "Sorry, you are not allowed to manage privacy options on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les options de confidentialité sur ce site." + +#: wp-admin/includes/ajax-actions.php:4777 +msgid "Plugin could not be deleted." +msgstr "L’extension ne peut pas être supprimée." + +#: wp-admin/includes/ajax-actions.php:4631 wp-admin/update.php:29 +#: wp-admin/update.php:57 wp-admin/update.php:80 +msgid "Sorry, you are not allowed to update plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site." + +#: wp-admin/includes/ajax-actions.php:4577 +msgid "Sorry, you are not allowed to activate plugins on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’activer des extensions sur ce site." + +#: wp-admin/includes/ajax-actions.php:4433 +msgid "Theme could not be deleted." +msgstr "Le thème ne peut pas être supprimé." + +#: wp-admin/includes/ajax-actions.php:4395 +msgid "Sorry, you are not allowed to delete themes on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site." + +#: wp-admin/includes/ajax-actions.php:4175 wp-admin/theme-install.php:16 +#: wp-admin/update.php:262 wp-admin/update.php:304 wp-admin/update.php:342 +msgid "Sorry, you are not allowed to install themes on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site." + +#: wp-admin/includes/ajax-actions.php:4162 +#: wp-admin/includes/ajax-actions.php:4288 +#: wp-admin/includes/ajax-actions.php:4383 +msgid "No theme specified." +msgstr "Aucun thème spécifié." + +#: wp-admin/admin.php:306 wp-admin/import.php:15 +msgid "Sorry, you are not allowed to import content into this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site." + +#: wp-admin/export.php:13 +msgid "Sorry, you are not allowed to export the content of this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site." + +#: wp-admin/edit.php:265 +msgid "You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts." +msgstr "Vous pouvez filtrer la liste des articles par état en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec cet état. La vue par défaut affiche tous les articles." + +#. translators: Hidden accessibility text. +#: wp-admin/customize.php:217 +msgid "Close the Customizer and go back to the previous page" +msgstr "Fermer l’outil de personnalisation et retour vers la page précédente." + +#: wp-admin/includes/class-custom-image-header.php:1122 +msgid "Sorry, you are not allowed to customize headers." +msgstr "Désolé, vous n’avez pas l’autorisation de personnaliser les entêtes." + +#: wp-admin/credits.php:135 +msgid "Release Deputy" +msgstr "Assistant·e de la direction de cette version" + +#: wp-admin/credits.php:134 +msgid "Release Design Lead" +msgstr "Responsable du design" + +#: wp-admin/about.php:133 +msgid "Editor improvements" +msgstr "Amélioration de l’éditeur" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:832 +msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." +msgstr "Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à une publication, que vous pouvez ensuite utiliser dans votre thème." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:795 +msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary." +msgstr "Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:757 +msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." +msgstr "Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus." + +#: wp-admin/edit-form-advanced.php:288 +msgid "The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "Le mode Code vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode code, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML." + +#: wp-admin/edit-form-advanced.php:287 +msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." +msgstr "Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options." + +#: wp-admin/upload.php:117 +msgid "Error saving media file." +msgstr "Une erreur est survenue lors de l’enregistrement du fichier média." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:106 +msgid "%s media file restored from the Trash." +msgid_plural "%s media files restored from the Trash." +msgstr[0] "%s fichier média restauré depuis la corbeille." +msgstr[1] "%s fichiers médias restaurés depuis la corbeille." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:83 +msgid "%s media file moved to the Trash." +msgid_plural "%s media files moved to the Trash." +msgstr[0] "%s fichier média déplacé dans la corbeille." +msgstr[1] "%s fichiers médias déplacés dans la corbeille." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:66 +msgid "%s media file permanently deleted." +msgid_plural "%s media files permanently deleted." +msgstr[0] "%s fichier média supprimé définitivement." +msgstr[1] "%s fichiers médias supprimés définitivement." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:49 +msgid "%s media file detached." +msgid_plural "%s media files detached." +msgstr[0] "%s fichier média détaché." +msgstr[1] "%s fichiers médias détachés." + +#: wp-admin/upload.php:45 +msgid "Media file detached." +msgstr "Fichier média détaché." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:32 +msgid "%s media file attached." +msgid_plural "%s media files attached." +msgstr[0] "%s fichier média attaché." +msgstr[1] "%s fichiers médias attachés." + +#: wp-admin/upload.php:28 +msgid "Media file attached." +msgstr "Fichier média attaché." + +#: wp-admin/edit-form-advanced.php:203 wp-admin/upload.php:18 +#: wp-admin/upload.php:115 +msgid "Media file updated." +msgstr "Fichier média mis à jour." + +#. translators: 1: Theme name, 2: Version number. +#. translators: 1: Plugin name, 2: Version number. +#: wp-admin/includes/theme.php:235 wp-admin/includes/theme.php:248 +#: wp-admin/includes/theme.php:261 wp-admin/includes/update.php:532 +#: wp-admin/includes/update.php:545 wp-admin/includes/update.php:559 +#: wp-admin/includes/update.php:578 wp-admin/includes/update.php:725 +#: wp-admin/includes/update.php:738 wp-admin/includes/update.php:751 +#: wp-admin/update-core.php:575 +msgid "View %1$s version %2$s details" +msgstr "Voir les détails de la version %2$s de %1$s" + +#. translators: 1: Relative date, 2: Time. +#: wp-admin/includes/dashboard.php:1036 +msgctxt "dashboard" +msgid "%1$s, %2$s" +msgstr "%1$s, %2$s" + +#: wp-admin/edit-form-advanced.php:369 +msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." +msgstr "Publier - Vous pouvez définir la manière dont votre publication est mise en ligne dans la section « Publier ». Pour « État », « Visibilité », et « Publier tout de suite », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger la publication avec un mot de passe ou faire en sorte qu’elle reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacune de vos publications avec un mot de passe. L’option « Privée » cache la publication pour tout le monde, sauf aux éditeurs/éditrices et administrateurs/administratrices. « Publier tout de suite » vous permet de planifier la sortie de votre publication à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance les publications à mettre en ligne, ou de les antidater." + +#. translators: %s: New email. +#: wp-admin/user-edit.php:563 +msgid "There is a pending change of your email to %s." +msgstr "Il y a une modification de votre adresse e-mail en attente, en faveur de %s." + +#: wp-admin/user-edit.php:242 +msgid "Error while saving the new email address. Please try again." +msgstr "Une erreur est survenue lors de l’enregistrement de votre adresse e-mail. Veuillez réessayer." + +#: wp-admin/upload.php:371 +msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." +msgstr "Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias." + +#: wp-admin/themes.php:676 wp-admin/network/themes.php:470 +msgid "The following themes are installed but incomplete." +msgstr "Les thèmes suivants sont installés mais incomplets." + +#: wp-admin/themes.php:282 +msgid "New theme activated." +msgstr "Nouveau thème activé." + +#: wp-admin/themes.php:273 +msgid "Settings saved and theme activated." +msgstr "Réglages enregistrés et thème activé." + +#: wp-admin/freedoms.php:97 wp-admin/theme-install.php:110 +#: wp-admin/themes.php:157 +msgid "https://wordpress.org/themes/" +msgstr "https://fr.wordpress.org/themes/" + +#: wp-admin/users.php:201 +msgid "Sorry, you are not allowed to delete that user." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce compte." + +#: wp-admin/setup-config.php:248 +msgid "Your database password." +msgstr "Votre mot de passe de base de données." + +#: wp-admin/setup-config.php:236 +msgid "Your database username." +msgstr "Votre identifiant MySQL." + +#: wp-admin/setup-config.php:231 +msgid "The name of the database you want to use with WordPress." +msgstr "Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress." + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:383 +msgctxt "plugin" +msgid "%1$s by %2$s" +msgstr "%1$s par %2$s" + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:379 +msgid "%1$s by %2$s (will also delete its data)" +msgstr "%1$s par %2$s (attention : supprimera également les données liées)" + +#. translators: %s: New admin email. +#: wp-admin/options-general.php:273 +msgid "There is a pending change of the admin email to %s." +msgstr "Il y a une modification en attente de l’adresse e-mail d’administration vers %s." + +#: wp-admin/install.php:454 +msgid "WordPress has been installed. Thank you, and enjoy!" +msgstr "WordPress est installé. Merci et profitez bien !" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/install.php:344 +msgid "The constant %s cannot be defined when installing WordPress." +msgstr "La constante %s ne peut pas être définie lors de l’installation de WordPress." + +#. translators: %s: wp-config.php +#: wp-admin/install.php:331 +msgid "Your %s file has an empty database table prefix, which is not supported." +msgstr "Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté." + +#: wp-admin/index.php:187 +msgid "Dismiss the welcome panel" +msgstr "Ignorer le panneau de bienvenue" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:203 +msgid "Theme zip file" +msgstr "Fichier zip du thème" + +#: wp-admin/includes/template.php:2033 +msgid "Attach to existing content" +msgstr "Attacher à un contenu existant" + +#: wp-admin/includes/post.php:1682 +msgid "Click the image to edit or update" +msgstr "Cliquez sur l’image pour la modifier ou la mettre à jour." + +#. translators: 1: Number of stars (used to determine singular/plural), 2: +#. Number of reviews. +#: wp-admin/includes/plugin-install.php:747 +msgid "Reviews with %1$d star: %2$s. Opens in a new tab." +msgid_plural "Reviews with %1$d stars: %2$s. Opens in a new tab." +msgstr[0] "Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre." +msgstr[1] "Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre." + +#: wp-admin/includes/plugin-install.php:739 +msgid "Read all reviews on WordPress.org or write your own!" +msgstr "Lisez tous les avis sur WordPress.org ou écrivez le vôtre !" + +#: wp-admin/includes/plugin-install.php:738 +msgid "Reviews" +msgstr "Avis" + +#. translators: %s: URL to "Features as Plugins" page. +#: wp-admin/includes/plugin-install.php:397 +msgid "You are using a development version of WordPress. These feature plugins are also under development. Learn more." +msgstr "Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:287 +msgid "Thumbnail Settings Help" +msgstr "Aide aux réglages de la miniature" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:243 +msgid "selection height" +msgstr "hauteur de la sélection" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:235 +msgid "selection width" +msgstr "largeur de la sélection" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:223 +msgid "crop ratio height" +msgstr "Proportion verticale" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:215 +msgid "crop ratio width" +msgstr "Proportion horizontale" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:197 +msgid "Image Crop Help" +msgstr "Aide au recadrage d’image" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:154 wp-admin/includes/image-edit.php:159 +msgid "scale height" +msgstr "redimensionner en hauteur" + +#: wp-admin/includes/image-edit.php:149 +msgid "New dimensions:" +msgstr "Nouvelles dimensions :" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/image-edit.php:130 +msgid "Scale Image Help" +msgstr "Aide sur le redimensionnement d’image" + +#: wp-admin/includes/file.php:38 +msgid "Single Page" +msgstr "Page individuelle" + +#: wp-admin/includes/file.php:36 +msgid "Singular Template" +msgstr "Modèle individuel" + +#: wp-admin/includes/file.php:34 +msgid "Date Template" +msgstr "Modèle de date" + +#: wp-admin/includes/file.php:29 +msgid "Taxonomy Template" +msgstr "Modèle de taxonomie" + +#: wp-admin/includes/dashboard.php:1763 +msgid "Dismiss the browser warning panel" +msgstr "Masquer l’alerte du navigateur" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:1115 +msgid "View more comments" +msgstr "Voir plus de commentaires" + +#. translators: 1: Type of comment, 2: Post link, 3: Notification if the +#. comment is pending. +#: wp-admin/includes/dashboard.php:892 +msgctxt "dashboard" +msgid "%1$s on %2$s %3$s" +msgstr "%1$s sur %2$s %3$s" + +#: wp-admin/includes/dashboard.php:801 +msgid "View this comment" +msgstr "Voir ce commentaire" + +#: wp-admin/includes/class-core-upgrader.php:34 +msgid "Another update is currently in progress." +msgstr "Une autre mise à jour est actuellement en cours." + +#: wp-admin/includes/class-plugin-upgrader-skin.php:85 +#: wp-admin/update-core.php:1215 wp-admin/update-core.php:1256 +msgid "Update progress" +msgstr "Progression de la mise à jour" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:530 +msgid "View “%s” archive" +msgstr "Voir l’archive pour « %s »" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:520 +msgid "Delete “%s”" +msgstr "Supprimer « %s »" + +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-posts-list-table.php:1509 +#: wp-admin/includes/class-wp-terms-list-table.php:509 +msgid "Quick edit “%s” inline" +msgstr "Modifier rapidement « %s » en ligne" + +#: wp-admin/includes/class-wp-plugins-list-table.php:424 +msgid "Search for plugins in the WordPress Plugin Directory." +msgstr "Rechercher des extensions dans le répertoire des extensions WordPress." + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:788 +#: wp-admin/includes/class-wp-posts-list-table.php:1521 +msgid "Restore “%s” from the Trash" +msgstr "Restaurer « %s » depuis la corbeille" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:809 +#: wp-admin/includes/class-wp-posts-list-table.php:1539 +msgid "Delete “%s” permanently" +msgstr "Supprimer « %s » définitivement" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:796 +#: wp-admin/includes/class-wp-posts-list-table.php:1529 +msgid "Move “%s” to the Trash" +msgstr "Déplacer « %s » dans la corbeille" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:627 +#: wp-admin/includes/class-wp-media-list-table.php:857 +msgid "Attach “%s” to existing content" +msgstr "Attacher « %s » à du contenu existant" + +#. translators: %s: Title of the post the attachment is attached to. +#: wp-admin/includes/class-wp-media-list-table.php:613 +msgid "Detach from “%s”" +msgstr "Détacher de « %s »" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-media-list-table.php:465 +#: wp-admin/includes/class-wp-posts-list-table.php:1145 +#: wp-admin/includes/class-wp-terms-list-table.php:419 +msgid "“%s” (Edit)" +msgstr "« %s » (Modifier)" + +#: wp-admin/includes/class-wp-media-list-table.php:169 +msgctxt "attachment filter" +msgid "Trash" +msgstr "Corbeille" + +#: wp-admin/includes/class-wp-comments-list-table.php:839 +msgid "Quick edit this comment inline" +msgstr "Modifier ce commentaire sur cette page" + +#: wp-admin/includes/class-wp-comments-list-table.php:827 +#: wp-admin/includes/dashboard.php:759 +msgid "Edit this comment" +msgstr "Modifier ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:790 +msgid "Restore this comment from the spam" +msgstr "Restaurer ce commentaire depuis les indésirables" + +#. translators: 1: User login, 2: User email address. +#: wp-admin/includes/ajax-actions.php:355 +msgctxt "user autocomplete result" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. translators: %s: Importer slug. +#: wp-admin/import.php:67 +msgid "The %s importer is invalid or is not installed." +msgstr "L’outil d’importation %s n’est pas installé ou n’est pas valide." + +#: wp-admin/edit-form-comment.php:137 +msgctxt "comment status" +msgid "Pending" +msgstr "En attente" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:650 +msgid "Suggested height is %s." +msgstr "La hauteur suggérée est de %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:638 +msgid "Suggested width is %s." +msgstr "La largeur suggérée est de %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:622 +msgid "Images should be at least %s tall." +msgstr "Les images devraient faire au moins %s de haut." + +#. translators: %d: Custom header width. +#. translators: %d: Custom header height. +#: wp-admin/includes/class-custom-image-header.php:613 +#: wp-admin/includes/class-custom-image-header.php:625 +#: wp-admin/includes/class-custom-image-header.php:641 +#: wp-admin/includes/class-custom-image-header.php:653 +msgid "%d pixels" +msgstr "%d pixels" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:610 +msgid "Images should be at least %s wide." +msgstr "Les images doivent être large de %s minimum." + +#: wp-admin/user-new.php:633 +msgid "Send the new user an email about their account" +msgstr "Envoyer un e-mail à la personne à propos de son nouveau compte." + +#: wp-admin/user-new.php:630 +msgid "Send User Notification" +msgstr "Envoyer une notification au compte" + +#. translators: %s: Menu name. +#: wp-admin/nav-menus.php:1220 +msgctxt "menu location" +msgid "(Currently set to: %s)" +msgstr "(Actuellement réglé sur : %s)" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:345 +msgid "Version %s addressed one security issue." +msgstr "La version %s a corrigé une faille de sécurité." + +#. translators: The localized Gravatar URL. +#: wp-admin/includes/upgrade.php:291 wp-admin/user-edit.php:634 +msgid "https://gravatar.com/" +msgstr "https://fr.gravatar.com/" + +#: wp-admin/user-edit.php:624 +msgid "Profile Picture" +msgstr "Illustration du profil" + +#: wp-admin/about.php:342 +msgid "Maintenance and Security Releases" +msgstr "Mises à jour de maintenance et de sécurité" + +#: wp-admin/about.php:339 +msgid "Security Releases" +msgstr "Mises à jour de sécurité" + +#: wp-admin/about.php:336 +msgid "Maintenance Releases" +msgstr "Mises à jour de maintenance" + +#: wp-admin/options-permalink.php:246 +msgid "Plain" +msgstr "Simple" + +#. translators: %s: Documentation URL. +#: wp-admin/options-permalink.php:226 +msgid "WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." +msgstr "WordPress vous offre la possibilité de créer une structure personnalisée d’URL pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreuses balises sont disponibles, et nous vous donnons quelques exemples pour commencer." + +#: wp-admin/options-permalink.php:34 +msgid "Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure." +msgstr "Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa date de publication ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:429 +msgid "You can create the %s file manually and paste the following text into it." +msgstr "Vous pouvez créer le fichier %s manuellement et y coller le contenu suivant." + +#. translators: %s: localhost +#: wp-admin/setup-config.php:257 +msgid "You should be able to get this info from your web host, if %s does not work." +msgstr "Si %s ne fonctionne pas, demandez cette information à l’hébergeur de votre site." + +#. translators: 1: wp-config-sample.php, 2: wp-config.php +#: wp-admin/setup-config.php:190 +msgid "If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s." +msgstr "Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s." + +#. translators: %s: wp-content/uploads +#: wp-admin/options-media.php:143 +msgid "Default is %s" +msgstr "Par défaut, %s" + +#. translators: 1: .po, 2: .mo, 3: .l10n.php +#: wp-admin/includes/class-language-pack-upgrader.php:359 +msgid "The language pack is missing either the %1$s, %2$s, or %3$s files." +msgstr "Il manque les fichiers %1$s, %2$s, ou %3$s au paquet de langue." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:610 +msgid "The %s stylesheet does not contain a valid theme header." +msgstr "Le fichier %s ne contient pas d’entête de thème valide." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:585 +msgid "The theme is missing the %s stylesheet." +msgstr "Le thème n’a pas de fichier %s." + +#: wp-admin/theme-install.php:231 +msgid "If you have marked themes as favorites on WordPress.org, you can browse them here." +msgstr "Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici." + +#: wp-admin/theme-install.php:214 +msgctxt "themes" +msgid "Favorites" +msgstr "Favoris" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:91 +msgid "Database repair results" +msgstr "Résultats de la réparation de la base de données" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:32 +msgid "Allow automatic database repair" +msgstr "Autoriser la réparation automatique de la base de données" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:506 +msgid "Successful database connection" +msgstr "La connexion à la base de données s’est bien faite" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:222 +msgid "Set up your database connection" +msgstr "Configurer la connexion à votre base de données" + +#. translators: Hidden accessibility text. +#: wp-admin/setup-config.php:167 +msgid "Before getting started" +msgstr "Avant de commencer" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:176 +msgid "WordPress database repair" +msgstr "Réparation de la base de données de WordPress" + +#. translators: Hidden accessibility text. +#: wp-admin/maint/repair.php:81 +msgid "Check secret keys" +msgstr "Vérifier les clés secrètes" + +#. translators: %s: Nav menu title. +#: wp-admin/includes/nav-menu.php:1496 +msgid "%s has been updated." +msgstr "%s a été mis à jour." + +#. translators: %s: Walker class name. +#: wp-admin/includes/nav-menu.php:1276 +msgid "The Walker class named %s does not exist." +msgstr "La classe Walker nommée %s n’existe pas." + +#. translators: 1: Drop-in constant name, 2: wp-config.php +#: wp-admin/includes/class-wp-plugins-list-table.php:788 +msgid "Requires %1$s in %2$s file." +msgstr "Nécessite la constance %1$s dans le fichier %2$s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:448 +msgid "Standard time begins on: %s." +msgstr "Le passage à l’heure d’hiver commence le %s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:446 +msgid "Daylight saving time begins on: %s." +msgstr "Le passage à l’heure d’été commence le %s." + +#. translators: %s: File name. +#: wp-admin/includes/media.php:1741 +msgid "You are about to delete %s." +msgstr "Vous êtes sur le point de supprimer %s." + +#. translators: %s: mu-plugins directory name. +#: wp-admin/includes/class-wp-plugins-list-table.php:672 +msgid "Files in the %s directory are executed automatically." +msgstr "Les fichiers du répertoire %s sont exécutés automatiquement." + +#: wp-admin/widgets-form.php:500 +msgid "This will clear all items from the inactive widgets list. You will not be able to restore any customizations." +msgstr "Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation." + +#: wp-admin/widgets-form.php:490 +msgid "Clear Inactive Widgets" +msgstr "Vider les widgets désactivés" + +#: wp-admin/users.php:159 wp-admin/network/site-users.php:159 +msgid "One of the selected users is not a member of this site." +msgstr "Un des comptes sélectionnés n’est pas membre de ce site." + +#: wp-admin/users.php:91 wp-admin/network/users.php:250 +msgid "Users list" +msgstr "Liste des comptes" + +#: wp-admin/users.php:90 wp-admin/network/users.php:249 +msgid "Users list navigation" +msgstr "Navigation de la liste des comptes" + +#: wp-admin/users.php:89 wp-admin/network/users.php:248 +msgid "Filter users list" +msgstr "Liste des filtres utilisateurs" + +#: wp-admin/upload.php:409 +msgid "Media items list" +msgstr "Liste des éléments média" + +#: wp-admin/upload.php:408 +msgid "Media items list navigation" +msgstr "Navigation de la liste des éléments média" + +#: wp-admin/upload.php:407 +msgid "Filter media items list" +msgstr "Filtrer la liste des fichiers média." + +#: wp-admin/themes.php:754 +msgid "Install Parent Theme" +msgstr "Installer le thème parent" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:278 wp-admin/network/themes.php:347 +msgid "Themes list" +msgstr "Liste des thèmes" + +#. translators: Hidden accessibility text. +#: wp-admin/theme-install.php:201 wp-admin/network/themes.php:345 +msgid "Filter themes list" +msgstr "Filtrer la liste des thèmes" + +#: wp-admin/plugins.php:744 +msgid "All selected plugins are up to date." +msgstr "Toutes les extensions sélectionnées sont à jour." + +#: wp-admin/plugin-install.php:129 wp-admin/plugins.php:629 +msgid "Plugins list" +msgstr "Liste des extensions" + +#: wp-admin/plugin-install.php:128 wp-admin/plugins.php:628 +msgid "Plugins list navigation" +msgstr "Navigation de la liste des extensions" + +#: wp-admin/plugin-install.php:127 wp-admin/plugins.php:627 +msgid "Filter plugins list" +msgstr "Filtrer la liste des extensions" + +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:238 +msgid "Browsing %s (inactive)" +msgstr "Parcours de %s (désactivée)" + +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:235 wp-admin/theme-editor.php:238 +msgid "Editing %s (inactive)" +msgstr "Modification de %s (désactivée)" + +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:230 +msgid "Browsing %s (active)" +msgstr "Parcours de %s (activée)" + +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:227 wp-admin/theme-editor.php:235 +msgid "Editing %s (active)" +msgstr "Modification de %s (activée)" + +#. translators: %s: Local time. +#: wp-admin/options-general.php:415 +msgid "Local time is %s." +msgstr "L’heure locale est %s." + +#: wp-admin/link-manager.php:85 +msgid "Links list" +msgstr "Liste des liens" + +#. translators: %s: WordPress version. +#: wp-admin/includes/update.php:284 +msgid "Get Version %s" +msgstr "Obtenir la version %s" + +#. translators: %s: Hidden accessibility text. Meta box title. +#: wp-admin/includes/template.php:1427 +msgid "Toggle panel: %s" +msgstr "Ouvrir/fermer la section %s" + +#: wp-admin/includes/post.php:1921 +msgid "Saving revision…" +msgstr "Enregistrement de la révision…" + +#: wp-admin/includes/post.php:1608 +msgid "Edit permalink" +msgstr "Modifier le permalien" + +#. translators: 1: Site Wide Only: true, 2: Network: true +#: wp-admin/includes/plugin.php:99 +msgid "The %1$s plugin header is deprecated. Use %2$s instead." +msgstr "L’entête d’extensions %1$s est obsolète. Utilisez plutôt %2$s." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-site-health.php:1067 +#: wp-admin/includes/class-wp-site-health.php:1753 +msgid "Warning" +msgstr "Avertissement" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:1381 wp-admin/options.php:386 +#: wp-admin/includes/network.php:139 wp-admin/includes/network.php:203 +#: wp-admin/includes/network.php:211 wp-admin/includes/network.php:276 +#: wp-admin/includes/network.php:332 wp-admin/includes/network.php:345 +#: wp-admin/includes/network.php:453 wp-admin/includes/network.php:657 +#: wp-admin/includes/network.php:719 +msgid "Warning:" +msgstr "Attention :" + +#: wp-admin/includes/ms.php:993 +msgid "Once you hit “Confirm Deletion”, these users will be permanently removed." +msgstr "Dès que vous aurez cliqué sur « Confirmer cette action », ces comptes seront définitivement supprimés." + +#: wp-admin/includes/ms.php:991 +msgid "Once you hit “Confirm Deletion”, the user will be permanently removed." +msgstr "Dès que vous aurez cliqué sur « Confirmer cette action », le compte sera définitivement supprimé." + +#: wp-admin/includes/ms.php:976 +msgid "User has no sites or content and will be deleted." +msgstr "Le compte n’a pas de site ou de contenu, et sera supprimé." + +#. translators: %s: Link to user's site. +#: wp-admin/includes/ms.php:961 +msgid "Site: %s" +msgstr "Site : %s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/ms.php:939 +msgid "Select a user" +msgstr "Sélectionnez un compte" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:921 +msgid "What should be done with content owned by %s?" +msgstr "Que faire du contenu ayant %s pour propriétaire ?" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:902 +msgid "Warning! User cannot be deleted. The user %s is a network administrator." +msgstr "Avertissement ! Le compte ne peut pas être supprimé. %s est administrateur ou administratrice du réseau." + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:892 +msgid "Warning! User %s cannot be deleted." +msgstr "Avertissement ! Le compte %s ne peut pas être supprimé." + +#: wp-admin/includes/ms.php:871 +msgid "You have chosen to delete the following users from all networks and sites." +msgstr "Vous avez choisi de supprimer les comptes suivants de tous les réseaux et sites." + +#: wp-admin/includes/ms.php:869 +msgid "You have chosen to delete the user from all networks and sites." +msgstr "Vous avez choisi de supprimer le compte de tous les réseaux et sites." + +#: wp-admin/includes/media.php:1045 +msgid "Invalid image URL." +msgstr "URL non valide pour l’image." + +#: wp-admin/includes/file.php:17 +msgid "Theme Header" +msgstr "Entête du thème" + +#: wp-admin/includes/file.php:18 +msgid "Theme Footer" +msgstr "Pied de page du thème" + +#. translators: Date and time format for recent posts on the dashboard, from a +#. different calendar year, see https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/dashboard.php:1023 +msgid "M jS Y" +msgstr "j M Y" + +#. translators: 1: Comment author, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:863 +msgid "From %1$s %2$s" +msgstr "De %1$s %2$s" + +#: wp-admin/includes/dashboard.php:655 +msgid "View all drafts" +msgstr "Voir tous les brouillons" + +#: wp-admin/includes/class-wp-users-list-table.php:670 +msgctxt "no user roles" +msgid "None" +msgstr "Aucun" + +#: wp-admin/includes/class-wp-users-list-table.php:246 +msgid "No role" +msgstr "Aucun rôle" + +#. translators: 1: Title of an update, 2: Error message. +#: wp-admin/includes/class-bulk-upgrader-skin.php:63 +msgid "An error occurred while updating %1$s: %2$s" +msgstr "Une erreur s’est produite lors de la mise à jour de %1$s : %2$s" + +#: wp-admin/includes/class-wp-screen.php:1331 +msgid "View mode" +msgstr "Mode d’affichage" + +#. translators: %s: Number of columns on the page. +#: wp-admin/includes/class-wp-screen.php:1216 +msgid "%s column" +msgid_plural "%s columns" +msgstr[0] "%s colonne" +msgstr[1] "%s colonnes" + +#: wp-admin/includes/class-wp-screen.php:1005 +msgid "Additional settings" +msgstr "Réglages supplémentaires" + +#: wp-admin/includes/class-wp-screen.php:765 +msgid "Items list" +msgstr "Liste des éléments" + +#: wp-admin/includes/class-wp-screen.php:764 +msgid "Items list navigation" +msgstr "Navigation de la liste des éléments" + +#: wp-admin/includes/class-wp-screen.php:763 +msgid "Filter items list" +msgstr "Filtrer la liste des éléments" + +#: wp-admin/includes/class-wp-plugins-list-table.php:895 +msgid "Network Only" +msgstr "Réseau uniquement" + +#: wp-admin/includes/class-wp-plugins-list-table.php:891 +msgid "Network Active" +msgstr "Activé sur le réseau" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:950 +msgid "No pending comments" +msgstr "Aucun commentaire en attente" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:176 +msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" +msgstr "Échec de l’initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s." + +#: wp-admin/includes/class-wp-comments-list-table.php:484 +msgctxt "column name" +msgid "Submitted on" +msgstr "Envoyé le" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:277 +msgctxt "comments" +msgid "Trash (%s)" +msgid_plural "Trash (%s)" +msgstr[0] "Mis à la corbeille (%s)" +msgstr[1] "Mis à la corbeille (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:270 +msgctxt "comments" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Indésirable (%s)" +msgstr[1] "Indésirables (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:263 +msgctxt "comments" +msgid "Approved (%s)" +msgid_plural "Approved (%s)" +msgstr[0] "Approuvé (%s)" +msgstr[1] "Approuvés (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:256 +msgctxt "comments" +msgid "Pending (%s)" +msgid_plural "Pending (%s)" +msgstr[0] "En attente (%s)" +msgstr[1] "En attente (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:242 +msgctxt "comments" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s) " +msgstr[1] "Tous (%s) " + +#. translators: %s: The new user. +#: wp-admin/includes/ajax-actions.php:1779 +msgid "User %s added" +msgstr "Le compte %s a été ajouté" + +#: wp-admin/export.php:229 wp-admin/export.php:281 wp-admin/export.php:326 +msgid "End date:" +msgstr "Date de fin :" + +#. translators: Hidden accessibility text. +#: wp-admin/export.php:186 +msgid "Content to export" +msgstr "Contenu à exporter" + +#: wp-admin/edit.php:266 +msgid "You can view posts in a simple title list or with an excerpt using the Screen Options tab." +msgstr "Vous pouvez voir la liste des publications en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran »." + +#. translators: %s: Comment date. +#: wp-admin/edit-form-comment.php:156 +msgid "Submitted on: %s" +msgstr "Envoyé le : %s" + +#: wp-admin/edit-form-comment.php:37 +msgctxt "comment" +msgid "Permalink:" +msgstr "Permalien :" + +#: wp-admin/edit-form-advanced.php:201 +msgid "Page draft updated." +msgstr "Le brouillon de la page a été mis à jour." + +#. translators: %s: Scheduled date for the page. +#: wp-admin/edit-form-advanced.php:200 +msgid "Page scheduled for: %s." +msgstr "Page planifiée pour le %s." + +#: wp-admin/edit-form-advanced.php:198 +msgid "Page submitted." +msgstr "Page envoyée." + +#: wp-admin/edit-form-advanced.php:186 +msgid "Post draft updated." +msgstr "Le brouillon de la publication a été mis à jour." + +#. translators: %s: Scheduled date for the post. +#: wp-admin/edit-form-advanced.php:185 +msgid "Post scheduled for: %s." +msgstr "Publication planifiée pour le %s." + +#: wp-admin/edit-form-advanced.php:183 +msgid "Post submitted." +msgstr "Publication transmise." + +#: wp-admin/edit-form-advanced.php:159 +msgid "View page" +msgstr "Voir la page" + +#: wp-admin/edit-form-advanced.php:145 wp-admin/edit-form-advanced.php:152 +msgid "Preview page" +msgstr "Prévisualiser la page" + +#: wp-admin/edit-form-advanced.php:124 wp-admin/edit-form-advanced.php:131 +msgid "Preview post" +msgstr "Prévisualiser la publication" + +#: wp-admin/edit-comments.php:239 +msgid "Comments list" +msgstr "Liste des commentaires" + +#: wp-admin/edit-comments.php:238 +msgid "Comments list navigation" +msgstr "Navigation de la liste des commentaires" + +#: wp-admin/edit-comments.php:237 +msgid "Filter comments list" +msgstr "Filtrer la liste des commentaires" + +#: wp-admin/edit-comments.php:222 +msgid "In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site." +msgstr "Dans la colonne « Envoyé le », vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la publication où se situe le commentaire." + +#: wp-admin/edit-comments.php:220 +msgid "In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment." +msgstr "Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d’afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille." + +#. translators: %s: Comments count. +#: wp-admin/edit-comments.php:194 wp-admin/js/edit-comments.js:196 +#: wp-admin/js/edit-comments.js:216 +msgid "Comments (%s)" +msgstr "Commentaires (%s)" + +#. translators: 1: Comments count, 2: Post title. +#: wp-admin/edit-comments.php:175 +msgid "Comments (%1$s) on “%2$s”" +msgstr "Commentaires (%1$s) sur « %2$s »" + +#: wp-admin/includes/ajax-actions.php:5574 +msgid "Sorry, you are not allowed to modify themes." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les thèmes." + +#: wp-admin/includes/class-custom-image-header.php:1033 +msgid "The active theme does not support a flexible sized header image." +msgstr "Le thème actif ne prend pas en charge les images d’entête de taille variable." + +#: wp-admin/includes/user.php:542 +msgid "You are using the auto-generated password for your account. Would you like to change it?" +msgstr "Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?" + +#: wp-admin/users.php:521 +msgid "You have specified this user for removal:" +msgstr "Vous avez indiqué que ce compte devait être supprimé :" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:768 +msgid "Log %s out of all locations." +msgstr "Déconnecter %s de tous les emplacements." + +#: wp-admin/user-edit.php:756 +msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." +msgstr "Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez garder votre compte connecté ici tout en vous déconnectant partout ailleurs." + +#: wp-admin/user-edit.php:744 wp-admin/user-edit.php:754 +msgid "Log Out Everywhere Else" +msgstr "Déconnecter partout ailleurs" + +#: wp-admin/user-edit.php:742 wp-admin/user-edit.php:752 +#: wp-admin/user-edit.php:762 +msgid "Sessions" +msgstr "Sessions" + +#: wp-admin/user-edit.php:688 +msgid "Cancel password change" +msgstr "Annuler la modification du mot de passe" + +#: wp-admin/user-new.php:599 +msgid "Generate password" +msgstr "Générer un mot de passe" + +#: wp-admin/user-edit.php:671 +msgid "Account Management" +msgstr "Gestion du compte" + +#. translators: The non-breaking space prevents 1Password from thinking the +#. text "log in" should trigger a password save prompt. +#: wp-admin/install.php:155 +msgid "You will need this password to log in. Please store it in a secure location." +msgstr "Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:917 +msgid "No approved comments" +msgstr "Aucun commentaire approuvé" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:867 +msgid "%s pending comment" +msgid_plural "%s pending comments" +msgstr[0] "%s commentaire en attente" +msgstr[1] "%s commentaires en attente" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:861 +msgid "%s approved comment" +msgid_plural "%s approved comments" +msgstr[0] "%s commentaire approuvé" +msgstr[1] "%s commentaires approuvés" + +#: wp-admin/includes/ajax-actions.php:4023 +msgid "Image could not be processed." +msgstr "L’image n’a pas pu être traitée." + +#: wp-admin/install.php:169 wp-admin/user-edit.php:707 +#: wp-admin/user-new.php:621 +msgid "Confirm Password" +msgstr "Confirmer le mot de passe" + +#: wp-admin/options-general.php:207 +msgid "Remove Site Icon" +msgstr "Supprimer l’icône du site" + +#. translators: 1: wp-config.php, 2: Secret key service URL. +#: wp-admin/maint/repair.php:85 +msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." +msgstr "Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org." + +#: wp-admin/options-general.php:192 +msgid "Set as Site Icon" +msgstr "Définir comme icône du site" + +#: wp-admin/options-general.php:190 wp-admin/options-general.php:199 +msgid "Choose a Site Icon" +msgstr "Choisir une icône de site" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-application-passwords-list-table.php:258 +#: wp-admin/includes/class-wp-comments-list-table.php:909 +#: wp-admin/includes/class-wp-list-table.php:689 +#: wp-admin/includes/class-wp-list-table.php:1823 +#: wp-admin/includes/update.php:933 +msgid "Show more details" +msgstr "Afficher plus de détails" + +#. translators: %s: Number of menus. +#: wp-admin/nav-menus.php:840 +msgid "Your theme supports %s menu. Select which menu appears in each location." +msgid_plural "Your theme supports %s menus. Select which menu appears in each location." +msgstr[0] "Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître à chaque emplacement." +msgstr[1] "Votre thème peut utiliser %s menus. Sélectionnez les menus qui devront apparaître à chaque emplacement." + +#. translators: Hidden accessibility text. %s: Number of posts. +#: wp-admin/includes/class-wp-users-list-table.php:607 +msgid "%s post by this author" +msgid_plural "%s posts by this author" +msgstr[0] "%s publication par cet auteur/autrice" +msgstr[1] "%s publications par cet auteur/autrice" + +#. translators: Hidden accessibility text. %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:139 +#: wp-admin/includes/class-theme-upgrader-skin.php:105 +msgid "Live Preview “%s”" +msgstr "Prévisualisation de « %s »" + +#: wp-admin/options-discussion.php:150 +msgid "last page" +msgstr "dernière page" + +#: wp-admin/options-discussion.php:151 +msgid "first page" +msgstr "première page" + +#. translators: %s: Post link. +#: wp-admin/edit-form-comment.php:197 +msgid "In response to: %s" +msgstr "En réponse à : %s" + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:169 wp-admin/includes/meta-boxes.php:304 +msgid "Date and time" +msgstr "Date et heure" + +#: wp-admin/edit-form-advanced.php:355 +msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." +msgstr "Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués." + +#: wp-admin/includes/class-custom-background.php:110 +msgid "Documentation on Custom Background" +msgstr "Documentation sur l’arrière-plan personnalisé (en anglais)" + +#: wp-admin/edit-tags.php:310 +msgid "Documentation on Link Categories" +msgstr "Documentation sur les catégories de liens (en anglais)" + +#: wp-admin/edit-link-form.php:76 +msgid "Documentation on Creating Links" +msgstr "Documentation sur la création de liens (en anglais)" + +#: wp-admin/link-manager.php:79 +msgid "Documentation on Managing Links" +msgstr "Documentation sur la gestion des liens (en anglais)" + +#: wp-admin/includes/class-custom-image-header.php:145 +msgid "Documentation on Custom Header" +msgstr "Documentation sur l’entête personnalisé" + +#: wp-admin/my-sites.php:52 +msgid "Documentation on My Sites" +msgstr "Documentation sur Mes Sites (en anglais)" + +#: wp-admin/widgets.php:24 +msgid "The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." +msgstr "Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions (en anglais)." + +#. translators: %s: Documentation URL. +#: wp-admin/options-writing.php:227 +msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks." +msgstr "Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication est disponible sur la documentation de WordPress. Séparez les URL de services par des retours à la ligne." + +#: wp-admin/includes/options.php:137 +msgid "The character encoding of your site (UTF-8 is recommended)" +msgstr "Le codage de caractères utilisé par votre site (nous recommandons UTF-8)" + +#: wp-admin/includes/file.php:2589 +msgid "example: www.wordpress.org" +msgstr "exemple : www.wordpress.org" + +#: wp-admin/themes.php:138 +msgid "The search for installed themes will search for terms in their name, description, author, or tag." +msgstr "La recherche parmi les thèmes installés se fait sur leur nom, leur description, leur auteur/autrice ou leurs étiquettes." + +#: wp-admin/theme-install.php:113 +msgid "Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it." +msgstr "Autrement, vous pouvez parcourir les thèmes populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer." + +#: wp-admin/theme-install.php:112 +msgid "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter." +msgstr "Vous pouvez rechercher des thèmes par mot-clé, auteur/autrice ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités." + +#. translators: %d: Number of themes. +#: wp-admin/theme-install.php:68 wp-admin/themes.php:237 +msgid "Number of Themes found: %d" +msgstr "Nombre de thèmes trouvés : %d" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:552 +msgid "Custom time format:" +msgstr "Format d’heure personnalisé :" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:548 +msgid "enter a custom time format in the following field" +msgstr "saisissez un format d’heure personnalisé dans le champ suivant" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:504 +msgid "Custom date format:" +msgstr "Format de date personnalisé :" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:500 +msgid "enter a custom date format in the following field" +msgstr "saisir un format de date personnalisé dans le champ suivant" + +#: wp-admin/includes/class-plugin-upgrader.php:66 +msgid "Plugins updated successfully." +msgstr "Les extensions ont bien été mises à jour." + +#. translators: %s: Number of millions. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:714 +#: wp-admin/includes/plugin-install.php:695 +msgctxt "Active plugin installations" +msgid "%s+ Million" +msgid_plural "%s+ Million" +msgstr[0] "%s million et +" +msgstr[1] "%s millions et +" + +#. translators: 1: Error message, 2: Line number. +#: wp-admin/link-parse-opml.php:93 +msgid "XML Error: %1$s at line %2$s" +msgstr "Erreur XML : %1$s à la ligne %2$s" + +#: wp-admin/menu-header.php:293 +msgid "Main menu" +msgstr "Menu principal" + +#: wp-admin/includes/file.php:2639 +msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." +msgstr "Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus." + +#. translators: %s: Number of users. +#: wp-admin/users.php:616 +msgid "%s user deleted." +msgid_plural "%s users deleted." +msgstr[0] "%s compte supprimé." +msgstr[1] "%s comptes supprimés." + +#: wp-admin/users.php:406 +msgid "What should be done with content owned by these users?" +msgstr "Que doit-il arriver aux contenus appartenant à ces comptes ?" + +#: wp-admin/users.php:356 +msgid "You have specified these users for deletion:" +msgstr "Vous avez indiqué que vous voulez supprimer ces comptes :" + +#: wp-admin/plugins.php:369 +msgid "You are about to remove the following plugins:" +msgstr "Vous êtes sur le point de supprimer les extensions suivantes :" + +#: wp-admin/plugins.php:360 +msgid "These plugins may be active on other sites in the network." +msgstr "Ces extensions peuvent être actives sur d’autres sites du réseau." + +#: wp-admin/plugins.php:357 +msgid "Delete Plugins" +msgstr "Supprimer les extensions" + +#: wp-admin/edit.php:373 +msgid "1 page not updated, somebody is editing it." +msgstr "Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier." + +#: wp-admin/edit.php:360 +msgid "1 post not updated, somebody is editing it." +msgstr "Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier." + +#: wp-admin/user-edit.php:64 +msgid "You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button." +msgstr "Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Déconnecter partout ailleurs »" + +#: wp-admin/update-core.php:829 +msgid "New translations are available." +msgstr "De nouvelles traductions sont disponibles." + +#: wp-admin/theme-install.php:531 +msgid "This theme has not been rated yet." +msgstr "Ce thème n’a pas encore reçu de note." + +#. translators: Date and time format for exact current time, mainly about +#. timezones, see https://www.php.net/manual/datetime.format.php +#: wp-admin/options-general.php:23 +msgctxt "timezone date format" +msgid "Y-m-d H:i:s" +msgstr "Y-m-d H:i:s" + +#: wp-admin/nav-menus.php:745 +msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" +msgstr "Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une URL et un texte pour le lien, et cliquez sur « Ajouter au menu »" + +#. translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those +#. are placeholders. +#: wp-admin/ms-delete-site.php:58 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently clicked the 'Delete Site' link on your site and filled in a\n" +"form on that page.\n" +"\n" +"If you really want to delete your site, click the link below. You will not\n" +"be asked to confirm again so only click this link if you are absolutely certain:\n" +"###URL_DELETE###\n" +"\n" +"If you delete your site, please consider opening a new site here some time in\n" +"the future! (But remember that your current site and username are gone forever.)\n" +"\n" +"Thank you for using the site,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour ###USERNAME###,\n" +"\n" +"Vous avez récemment cliqué sur le lien « Supprimer le site » de votre site, \n" +"et avez complété le formulaire présent sur cette même page.\n" +"\n" +"Si vous confirmez la suppression de votre site, cliquez sur le lien ci-dessous.\n" +"Aucune confirmation ne vous sera demandée par la suite, soyez donc totalement \n" +"certain·e de ce que vous faites :\n" +"###URL_DELETE###\n" +"\n" +"Si vous effacez votre site, n’hésitez pas à revenir créer un autre site à l’avenir ! \n" +"(mais souvenez-vous que votre site actuel et votre identifiant ne seront plus jamais disponibles).\n" +"\n" +"Merci d’avoir utilisé ce site,\n" +"\n" +"Les responsables de ###SITENAME###\n" +"###SITEURL###" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:847 wp-admin/themes.php:1071 +msgid "Close details dialog" +msgstr "Fermer la fenêtre des détails" + +#: wp-admin/includes/template.php:2798 wp-admin/includes/template.php:2817 +msgid "You are currently editing the page that shows your latest posts." +msgstr "Vous êtes en train de modifier la page qui affiche vos derniers articles." + +#: wp-admin/includes/class-wp-screen.php:1238 +msgid "Number of items per page:" +msgstr "Nombre d’éléments par page :" + +#: wp-admin/includes/revision.php:252 wp-admin/includes/revision.php:295 +msgctxt "revision date short format" +msgid "j M @ H:i" +msgstr "j F \\à G \\h i \\m\\i\\n " + +#. translators: Hidden accessibility text. +#: wp-admin/includes/ms.php:314 wp-admin/network/settings.php:420 +msgid "Size in megabytes" +msgstr "Taille en mégaoctets" + +#: wp-admin/includes/ms.php:306 +msgid "Site Upload Space Quota" +msgstr "Quota d’espace de fichiers" + +#: wp-admin/includes/class-wp-automatic-updater.php:1665 +msgid "" +"UPDATE LOG\n" +"==========" +msgstr "" +"JOURNAL DES MISES À JOUR\n" +"==========" + +#: wp-admin/includes/class-wp-automatic-updater.php:1642 +msgid "" +"BETA TESTING?\n" +"=============\n" +"\n" +"This debugging email is sent when you are using a development version of WordPress.\n" +"\n" +"If you think these failures might be due to a bug in WordPress, could you report it?\n" +" * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta\n" +" * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/\n" +"\n" +"Thanks! -- The WordPress Team" +msgstr "" +"BÊTA TESTEUR ?\n" +"==============\n" +"\n" +"Cet e-mail de débogage est envoyé lorsque vous utilisez une version de développement de WordPress.\n" +"\n" +"Si vous pensez que ces erreurs puissent être dues à un problème du côté de WordPress, pourriez-vous nous les signaler ?\n" +"* Ouvrez une discussion sur le forum de support en anglais : https://wordpress.org/support/forum/alphabeta\n" +"* Ou, si rédiger un rapport de bogue ne vous fait pas peur : https://core.trac.wordpress.org/\n" +"\n" +"Merci ! -- L’équipe WordPress" + +#: wp-admin/includes/revision.php:251 wp-admin/includes/revision.php:294 +msgid "M j, Y @ H:i" +msgstr "j F Y \\à G \\h i \\m\\i\\n" + +#: wp-admin/comment.php:227 +msgid "Submitted on" +msgstr "Envoyé le" + +#. translators: Column name or table row header. +#: wp-admin/comment.php:201 +#: wp-admin/includes/class-wp-comments-list-table.php:481 +msgid "In response to" +msgstr "En réponse à" + +#. translators: 1: Month, 2: Day, 3: Year, 4: Hour, 5: Minute. +#: wp-admin/includes/template.php:869 wp-admin/js/comment.js:89 +#: wp-admin/js/post.js:794 +msgid "%1$s %2$s, %3$s at %4$s:%5$s" +msgstr "%2$s %1$s %3$s à %4$sh%5$s" + +#: wp-admin/user-edit.php:746 +msgid "You are only logged in at this location." +msgstr "Vous n’êtes connecté·e qu’à cet emplacement." + +#: wp-admin/includes/plugin-install.php:409 +msgid "These suggestions are based on the plugins you and other users have installed." +msgstr "Ces suggestions sont basées sur les extensions que vous et d’autres comptes ont installées." + +#: wp-admin/edit-form-advanced.php:290 +msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." +msgstr "Vous pouvez activer le mode d’écriture sans distraction en cliquant sur l’icône à droite. Cette fonctionnalité n’est pas disponible pour les anciens navigateurs ou les appareils à petits écrans, et nécessite l’activation de l’éditeur plein-écran dans les options de l’écran." + +#: wp-admin/user-edit.php:764 +msgid "Log Out Everywhere" +msgstr "Déconnexion globale" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:114 +msgctxt "Plugin Installer" +msgid "Recommended" +msgstr "Recommandées" + +#. translators: New site notification email. 1: New site URL, 2: User login, 3: +#. User password or password reset link, 4: Login URL. +#: wp-admin/includes/upgrade.php:589 +msgid "" +"Your new WordPress site has been successfully set up at:\n" +"\n" +"%1$s\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: %2$s\n" +"Password: %3$s\n" +"Log in here: %4$s\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The WordPress Team\n" +"https://wordpress.org/\n" +msgstr "" +"Votre nouveau site WordPress a bien été installé à l’adresse :\n" +"\n" +"%1$s\n" +"\n" +"Vous pouvez vous y connecter en tant qu’administrateur ou administratrice avec les informations suivantes :\n" +"\n" +"Identifiant : %2$s\n" +"Mot de passe : %3$s\n" +"Connectez-vous ici : %4$s\n" +"\n" +"Nous espérons que vous aimerez votre nouveau site ! Merci à vous !\n" +"\n" +"--L’équipe WordPress\n" +"https://wordpress.org/\n" + +#: wp-admin/themes.php:301 +msgid "You cannot delete a theme while it has an active child theme." +msgstr "Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant." + +#: wp-admin/options-discussion.php:304 +msgid "Mystery Person" +msgstr "Personne mystère" + +#: wp-admin/install.php:127 +msgid "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol." +msgstr "Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas (\"_\"), des traits d’union (\"-\"), des points et le symbole @." + +#: wp-admin/includes/class-wp-screen.php:1007 +msgid "Enable full-height editor and distraction-free functionality." +msgstr "Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction." + +#. translators: Link to the Planet feed of the locale. +#: wp-admin/includes/dashboard.php:1583 +msgid "https://planet.wordpress.org/feed/" +msgstr "https://rss.wpfr.net/wp-planet" + +#. translators: Link to the Planet website of the locale. +#: wp-admin/includes/dashboard.php:1570 wp-admin/index.php:98 +msgid "https://planet.wordpress.org/" +msgstr "https://fr.wordpress.org/news/" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:729 +msgid "Untested with your version of WordPress" +msgstr "Non testé avec votre version de WordPress" + +#: wp-admin/includes/meta-boxes.php:1180 +msgid "All categories" +msgstr "Toutes les catégories" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:517 +msgid "Filter by comment type" +msgstr "Filtrer par type de commentaire" + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:3998 +msgid "%s has been logged out." +msgstr "%s a été déconnecté·e." + +#: wp-admin/includes/ajax-actions.php:3994 +msgid "You are now logged out everywhere else." +msgstr "Vous êtes désormais déconnecté·e partout ailleurs." + +#: wp-admin/includes/ajax-actions.php:3985 +msgid "Could not log out user sessions. Please try again." +msgstr "Impossible de déconnecter les sessions des comptes. Veuillez réessayer." + +#: wp-admin/includes/ajax-actions.php:3856 +msgid "This preview is unavailable in the editor." +msgstr "Cette prévisualisation n’est pas disponible dans l’éditeur." + +#: wp-admin/edit-form-advanced.php:289 +msgid "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." +msgstr "Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel." + +#: wp-admin/edit-form-advanced.php:286 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab." +msgstr "Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel et Code. Choisissez un mode en cliquant sur l’onglet correspondant." + +#. translators: %s: URL to header image configuration in Customizer. +#: wp-admin/includes/class-custom-image-header.php:518 +msgid "You can now manage and live-preview Custom Header in the Customizer." +msgstr "Vous pouvez gérer et prévisualiser l’entête personnalisée dans l’outil de personnalisation." + +#. translators: %s: URL to background image configuration in Customizer. +#: wp-admin/includes/class-custom-background.php:249 +msgid "You can now manage and live-preview Custom Backgrounds in the Customizer." +msgstr "Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation." + +#: wp-admin/includes/class-wp-screen.php:1138 +msgctxt "Welcome panel" +msgid "Welcome" +msgstr "Bienvenue" + +#. translators: %s: Number of users. +#. translators: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:206 +#: wp-admin/includes/class-wp-ms-users-list-table.php:144 +msgctxt "users" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/edit-link-form.php:123 +#: wp-admin/includes/class-wp-links-list-table.php:135 +#: wp-admin/includes/class-wp-links-list-table.php:149 +msgctxt "link name" +msgid "Name" +msgstr "Nom" + +#. translators: %s: Placeholder that must come at the start of the URL. +#: wp-admin/options-permalink.php:417 +msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used." +msgstr "Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les URL de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée." + +#: wp-admin/credits.php:133 +msgid "Release Lead" +msgstr "Responsable de la version" + +#: wp-admin/upload.php:192 +msgid "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." +msgstr "Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre." + +#: wp-admin/upload.php:193 +msgid "You can also delete individual items and access the extended edit screen from the details dialog." +msgstr "Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran des modifications étendues par la fenêtre des détails." + +#: wp-admin/upload.php:191 +msgid "Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved." +msgstr "Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées." + +#: wp-admin/upload.php:182 +msgid "To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media." +msgstr "Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias." + +#: wp-admin/upload.php:181 wp-admin/upload.php:372 +msgid "You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media." +msgstr "Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias." + +#: wp-admin/upload.php:180 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first." +msgstr "Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, avec le dernier téléversé qui apparaît en premier." + +#: wp-admin/plugin-install.php:113 +msgid "If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly." +msgstr "Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées." + +#: wp-admin/plugin-install.php:155 +msgid "Browse Plugins" +msgstr "Parcourir les extensions" + +#: wp-admin/plugin-install.php:51 +msgid "Add Plugins" +msgstr "Ajouter des extensions" + +#. translators: 1: WPLANG, 2: wp-config.php +#: wp-admin/options-general.php:350 +msgid "The %1$s constant in your %2$s file is no longer needed." +msgstr "La constante %1$s de votre fichier %2$s n’est plus nécessaire." + +#: wp-admin/includes/translation-install.php:38 +msgid "Invalid translation type." +msgstr "Type de traduction non valide." + +#: wp-admin/install.php:393 +msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." +msgstr "Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:733 +msgid "Compatible with your version of WordPress" +msgstr "Compatible avec votre version de WordPress" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:731 +msgid "Incompatible with your version of WordPress" +msgstr "Incompatible avec votre version de WordPress" + +#. translators: %s: Number of stars. +#: wp-admin/includes/plugin-install.php:765 +msgid "%d star" +msgid_plural "%d stars" +msgstr[0] "%d étoile" +msgstr[1] "%d étoiles" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:604 +msgid "Select bulk action" +msgstr "Sélectionnez l’action groupée" + +#: wp-admin/user-new.php:489 wp-admin/user-new.php:656 +msgid "Add the user without sending an email that requires their confirmation" +msgstr "Ajouter le compte sans envoyer de message de confirmation." + +#. translators: %s: List view URL. +#: wp-admin/upload.php:236 +msgid "The grid view for the Media Library requires JavaScript. Switch to the list view." +msgstr "La vue en grille de la médiathèque nécessite JavaScript. Passer à la vue en liste." + +#: wp-admin/credits.php:27 wp-admin/includes/plugin-install.php:779 +msgid "Contributors" +msgstr "Crédits" + +#: wp-admin/includes/plugin-install.php:710 +#: wp-admin/includes/plugin-install.php:797 +msgid "Donate to this plugin »" +msgstr "Faire un don à cette extension »" + +#: wp-admin/includes/plugin-install.php:580 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Avis" + +#. translators: %s: Support email address. +#: wp-admin/includes/class-wp-automatic-updater.php:1054 +msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." +msgstr "L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:67 +msgctxt "themes" +msgid "Recently Updated" +msgstr "Mis à jour récemment" + +#: wp-admin/includes/class-wp-terms-list-table.php:200 +#: wp-admin/includes/class-wp-terms-list-table.php:222 +msgctxt "Number/count of items" +msgid "Count" +msgstr "Total" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1199 +msgid "View details" +msgstr "Afficher les détails" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:576 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:828 +msgid "More Details" +msgstr "Plus de détails" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:495 +msgctxt "Plugin installer group title" +msgid "Tools" +msgstr "Outils" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:494 +msgctxt "Plugin installer group title" +msgid "Social" +msgstr "Social" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:493 +msgctxt "Plugin installer group title" +msgid "Performance" +msgstr "Performances" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:109 +msgctxt "Plugin Installer" +msgid "Beta Testing" +msgstr "Test de phase beta" + +#. translators: %s: URL that could not be embedded. +#: wp-admin/includes/ajax-actions.php:3822 +msgid "%s failed to embed." +msgstr "%s n’a pas pu être intégré." + +#: wp-admin/theme-install.php:269 +msgid "Filtering by:" +msgstr "Trier par :" + +#: wp-admin/includes/media.php:3291 +msgid "Displayed on attachment pages." +msgstr "affichée sur les pages du fichier joint." + +#: wp-admin/includes/image-edit.php:291 +msgid "You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image." +msgstr "Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image." + +#: wp-admin/includes/image-edit.php:206 +msgid "Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings." +msgstr "Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média." + +#: wp-admin/includes/image-edit.php:203 +msgid "The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc." +msgstr "Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Maj tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc." + +#: wp-admin/includes/image-edit.php:201 +msgid "To crop the image, click on it and drag to make your selection." +msgstr "Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection." + +#: wp-admin/includes/image-edit.php:134 +msgid "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." +msgstr "Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée." + +#. translators: %s: Alt + F10 +#: wp-admin/edit-form-advanced.php:293 +msgid "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." +msgstr "Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils." + +#: wp-admin/edit-comments.php:218 +msgid "A red bar on the left means the comment is waiting for you to moderate it." +msgstr "Une barre rouge sur la gauche signifie que le commentaire attention votre validation." + +#: wp-admin/includes/class-wp-comments-list-table.php:522 +msgid "All comment types" +msgstr "Tous les types de commentaire" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:66 +#: wp-admin/theme-install.php:212 +msgctxt "themes" +msgid "Latest" +msgstr "Derniers en date" + +#: wp-admin/theme-install.php:211 +msgctxt "themes" +msgid "Popular" +msgstr "Populaires" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:64 +msgctxt "themes" +msgid "Featured" +msgstr "Mis en avant" + +#: wp-admin/includes/ms.php:967 wp-admin/users.php:416 +msgid "Attribute all content to:" +msgstr "Attribuer tout le contenu à :" + +#: wp-admin/includes/ms.php:965 wp-admin/users.php:412 +msgid "Delete all content." +msgstr "Supprimer tout le contenu." + +#: wp-admin/users.php:404 +msgid "What should be done with content owned by this user?" +msgstr "Que faire du contenu ayant ce compte pour propriétaire ?" + +#: wp-admin/users.php:60 +msgid "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions." +msgstr "« Supprimer » vous amène à l’écran de suppression des comptes pour confirmer votre action, d’où vous pouvez supprimer un compte de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées." + +#: wp-admin/users.php:58 +msgid "Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions." +msgstr "Supprimer vous permet de supprimer un compte de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées." + +#: wp-admin/theme-install.php:391 +msgctxt "theme" +msgid "Details & Preview" +msgstr "Détails et prévisualisation" + +#: wp-admin/theme-install.php:58 +msgid "Search Themes" +msgstr "Rechercher des thèmes" + +#: wp-admin/theme-install.php:25 +msgid "Add Themes" +msgstr "Ajouter des thèmes" + +#: wp-admin/maint/repair.php:162 +msgid "https://wordpress.org/support/forum/how-to-and-troubleshooting" +msgstr "https://wpfr.net/support/forum/support-de-wordpress/" + +#: wp-admin/index.php:86 +msgid "At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using." +msgstr "D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez." + +#: wp-admin/index.php:65 +msgid "Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it." +msgstr "Contrôles des sections – Cliquez sur la barre de titre d’une section pour l’ouvrir ou la fermer. Certaines sections ajoutées par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris." + +#: wp-admin/themes.php:43 +msgid "Sorry, you are not allowed to resume this theme." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter ce thème." + +#. translators: Hidden accessibility text. +#: wp-admin/edit-form-comment.php:162 wp-admin/includes/meta-boxes.php:296 +msgid "Edit date and time" +msgstr "Modifier la date et l’heure" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:278 +msgid "Browse revisions" +msgstr "Parcourir les révisions" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:200 +msgid "Edit visibility" +msgstr "Modifier la visibilité" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:138 +msgid "Edit status" +msgstr "Modifier l’état" + +#: wp-admin/includes/ms.php:1173 wp-admin/network/index.php:57 +#: wp-admin/network/site-new.php:33 wp-admin/network/sites.php:45 +#: wp-admin/network/user-new.php:30 wp-admin/network/users.php:243 +msgid "Support forums" +msgstr "Forums d’entraide" + +#. translators: %s: https://wordpress.org +#: wp-admin/admin-footer.php:37 +msgid "Thank you for creating with WordPress." +msgstr "Merci de faire de WordPress votre outil de création de contenu." + +#: wp-admin/update-core.php:1005 +msgid "Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button." +msgstr "Traductions – Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton « Mettre à jour les traductions »." + +#: wp-admin/update-core.php:1001 +msgid "In most cases, WordPress will automatically apply maintenance and security updates in the background for you." +msgstr "Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan." + +#: wp-admin/update-core.php:1001 +msgid "WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available." +msgstr "WordPress – Mise à jour de votre installation WordPress en un clic : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié·e qu’une nouvelle version est disponible." + +#: wp-admin/update-core.php:991 +msgid "If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu." +msgstr "Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils." + +#: wp-admin/update-core.php:1002 +msgid "Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button." +msgstr "Thèmes et extensions – Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à cocher pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions en une seule opération, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le bouton de mise à jour." + +#: wp-admin/update-core.php:990 +msgid "On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories." +msgstr "Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org." + +#. translators: %s: https://wordpress.org/themes +#: wp-admin/themes.php:156 +msgid "If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgstr "Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire des thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !" + +#. translators: 1: Number of megabytes, 2: Percentage. +#: wp-admin/includes/dashboard.php:1682 +msgid "%1$s MB (%2$s%%) Space Used" +msgstr "%1$s Mo (%2$s%%) d’espace utilisés" + +#. translators: %s: Number of megabytes. +#: wp-admin/includes/dashboard.php:1667 +msgid "%s MB Space Allowed" +msgstr "%s Mo d’espace autorisés" + +#. translators: Date and time format for recent posts on the dashboard, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/dashboard.php:1026 +msgid "M jS" +msgstr "j M" + +#. translators: %s: Number of pages. +#: wp-admin/includes/dashboard.php:315 +msgid "%s Page" +msgid_plural "%s Pages" +msgstr[0] "%s page" +msgstr[1] "%s pages" + +#. translators: %s: Number of posts. +#: wp-admin/includes/dashboard.php:312 +msgid "%s Post" +msgid_plural "%s Posts" +msgstr[0] "%s article" +msgstr[1] "%s articles" + +#: wp-admin/options-reading.php:47 +msgid "When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site." +msgstr "Lorsque ce réglage est actif, un rappel est affiché dans la section « D’un coup d’œil » du Tableau de bord, indiquant « Moteurs de recherche refusés » pour que vous n’oubliez pas que vous avez indiqué aux moteurs de recherche de ne pas parcourir votre site." + +#: wp-admin/includes/dashboard.php:73 +msgid "At a Glance" +msgstr "D’un coup d’œil" + +#: wp-admin/themes.php:599 wp-admin/themes.php:991 +msgctxt "theme" +msgid "Active:" +msgstr "Activé :" + +#: wp-admin/includes/theme.php:331 +msgid "Accessibility Ready" +msgstr "Optimisé pour l’accessibilité" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:976 wp-admin/themes.php:1243 +msgid "This is a child theme of %s." +msgstr "Ce thème est un thème enfant de %s." + +#: wp-admin/themes.php:175 +msgid "When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again." +msgstr "Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, recliquez sur l’icône de réduction." + +#: wp-admin/themes.php:174 +msgid "The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu." +msgstr "Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres modèles de pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un clic, cliquez sur le bouton « Activer et publier » en haut du menu." + +#: wp-admin/themes.php:173 +msgid "Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way." +msgstr "Touchez ou survolez n’importe quel thème puis cliquez sur le bouton « Prévisualiser en direct » pour avoir un aperçu de celui-ci et modifier ses options dans une vue séparée et plein écran. Vous pouvez également trouver un bouton « Prévisualiser en direct » en bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière." + +#: wp-admin/themes.php:137 +msgid "The active theme is displayed highlighted as the first theme." +msgstr "Le thème actif est mis en avant en tant que premier thème." + +#: wp-admin/themes.php:136 +msgid "Click Customize for the active theme or Live Preview for any other theme to see a live preview" +msgstr "Cliquer sur « Personnaliser » pour le thème actif ou « Prévisualiser en direct » pour n’importe quel autre thème afin d’afficher la prévisualisation." + +#: wp-admin/themes.php:135 +msgid "Click on the theme to see the theme name, version, author, description, tags, and the Delete link" +msgstr "Cliquer sur le thème pour voir le nom du thème, sa version, son auteur/autrice, sa description, ses étiquettes et le bouton « Supprimer »." + +#: wp-admin/themes.php:134 +msgid "Hover or tap to see Activate and Live Preview buttons" +msgstr "Survoler ou toucher pour voir les boutons « Activer » et « Prévisualiser en direct »." + +#: wp-admin/themes.php:132 +msgid "This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties." +msgstr "Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers." + +#: wp-admin/widgets-form.php:453 +msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." +msgstr "Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale." + +#. translators: Hidden accessibility text. %s: The rating. +#: wp-admin/includes/template.php:2773 +msgid "%s rating" +msgstr "Note : %s" + +#. translators: Hidden accessibility text. 1: The rating, 2: The number of +#. ratings. +#: wp-admin/includes/template.php:2769 +msgid "%1$s rating based on %2$s rating" +msgid_plural "%1$s rating based on %2$s ratings" +msgstr[0] "Une note de %1$s basée sur %2$s vote" +msgstr[1] "Une note de %1$s basée sur %2$s votes" + +#: wp-admin/my-sites.php:46 +msgid "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." +msgstr "Cet écran affiche à un compte individuel tous ses sites sur ce réseau, et permet également à ce comptes de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration." + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1703 +msgid "Error: [%1$s] %2$s" +msgstr "Erreur : [%1$s] %2$s" + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1700 +msgid "Rollback Error: [%1$s] %2$s" +msgstr "Erreur de restauration : [%1$s] %2$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1617 +msgid "The following translations failed to update:" +msgstr "Les traductions suivantes n’ont pas pu être mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1616 +msgid "The following themes failed to update:" +msgstr "Les thèmes suivants n’ont pas pu être mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1615 +msgid "The following plugins failed to update:" +msgstr "Les extensions suivantes n’ont pas pu être mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1602 +msgid "The following translations were successfully updated:" +msgstr "Les traductions suivantes ont bien été mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1601 +msgid "The following themes were successfully updated:" +msgstr "Les thèmes suivants ont bien été mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1600 +msgid "The following plugins were successfully updated:" +msgstr "Les extensions suivantes ont bien été mises à jour :" + +#: wp-admin/widgets-form.php:574 +msgid "Add Widget" +msgstr "Ajouter le widget" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:841 wp-admin/themes.php:1065 +msgid "Show next theme" +msgstr "Afficher le thème suivant" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme.php:835 wp-admin/themes.php:1059 +msgid "Show previous theme" +msgstr "Afficher le thème précédent" + +#: wp-admin/includes/theme.php:897 wp-admin/themes.php:1159 +msgid "Update Available" +msgstr "Mise à jour disponible" + +#: wp-admin/themes.php:230 +msgid "" +"Are you sure you want to delete this theme?\n" +"\n" +"Click 'Cancel' to go back, 'OK' to confirm the delete." +msgstr "" +"Confirmez-vous la suppression de ce thème ?\n" +"\n" +"« Annuler » pour arrêter, « OK » pour supprimer." + +#: wp-admin/post.php:82 +msgid "Unable to submit this form, please refresh and try again." +msgstr "Impossible d’envoyer ce formulaire. Veuillez recharger la page et réessayer." + +#: wp-admin/index.php:92 +msgid "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." +msgstr "Brouillon rapide — Vous permet de créer une nouvelle publication et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 3 derniers brouillons que vous avez créés." + +#: wp-admin/index.php:89 +msgid "Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them." +msgstr "Activité – Affiche les publications planifiées, celles qui ont été publiées récemment, et les commentaires récents, que vous pouvez valider ou non." + +#: wp-admin/index.php:63 +msgid "Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show." +msgstr "Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les sections à afficher dans le Tableau de bord." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:1675 wp-admin/includes/dashboard.php:1691 +msgid "Manage Uploads" +msgstr "Gérer les téléversements" + +#: wp-admin/includes/deprecated.php:1389 +msgid "Popular Plugin" +msgstr "Extensions populaires" + +#: wp-admin/includes/dashboard.php:1020 +msgid "Tomorrow" +msgstr "Demain" + +#: wp-admin/includes/dashboard.php:954 +msgid "No activity yet!" +msgstr "Aucune activité pour le moment !" + +#: wp-admin/includes/dashboard.php:945 +msgid "Recently Published" +msgstr "Publié récemment" + +#: wp-admin/includes/dashboard.php:936 +msgid "Publishing Soon" +msgstr "Bientôt publié" + +#: wp-admin/includes/dashboard.php:599 +msgid "What’s on your mind?" +msgstr "Qu’avez-vous en tête ?" + +#. translators: 1: Version number, 2: Theme name. +#: wp-admin/includes/update.php:381 +msgid "WordPress %1$s running %2$s theme." +msgstr "WordPress %1$s avec le thème %2$s." + +#: wp-admin/includes/dashboard.php:87 +msgid "Quick Draft" +msgstr "Brouillon rapide" + +#: wp-admin/includes/dashboard.php:82 +msgid "Activity" +msgstr "Activité" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1625 +msgid "FAILED: %s" +msgstr "ÉCHEC : %s" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1608 +msgid "SUCCESS: %s" +msgstr "SUCCÈS : %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1583 +msgid "FAILED: WordPress failed to update to %s" +msgstr "ÉCHEC : WordPress n’a pas pu être mis à jour en %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1580 +msgid "SUCCESS: WordPress was successfully updated to %s" +msgstr "SUCCÈS : WordPress a bien été mis à jour vers %s" + +#. translators: %s: Network home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1572 +msgid "WordPress site: %s" +msgstr "Site WordPress : %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1083 +msgid "Your site was running version %s." +msgstr "Votre site utilise la version %s." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1029 +msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." +msgstr "Votre site à l’adresse %1$s a rencontré un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s." + +#. translators: %s: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:995 +msgid "WordPress %s is also now available." +msgstr "WordPress %s est disponible." + +#: wp-admin/includes/update-core.php:1297 +#: wp-admin/includes/update-core.php:1333 +msgid "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." +msgstr "La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers." + +#: wp-admin/includes/class-language-pack-upgrader.php:114 +#: wp-admin/update-core.php:820 +msgid "Your translations are all up to date." +msgstr "Vos traductions sont toutes à jour." + +#: wp-admin/update-core.php:819 wp-admin/update-core.php:827 +msgid "Translations" +msgstr "Traductions" + +#. translators: %s: Error code. +#: wp-admin/includes/class-wp-automatic-updater.php:1104 +msgid "Error code: %s" +msgstr "Code d’erreur : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1085 +msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" +msgstr "Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1078 +#: wp-admin/includes/class-wp-automatic-updater.php:1508 +msgid "The WordPress Team" +msgstr "L’équipe WordPress" + +#: wp-admin/includes/class-wp-automatic-updater.php:1074 +msgid "You also have some plugins or themes with updates available. Update them now:" +msgstr "Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1059 +#: wp-admin/includes/class-wp-automatic-updater.php:1506 +msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." +msgstr "Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de WPFR (https://wpfr.net/support) devraient pouvoir vous aider." + +#: wp-admin/includes/class-wp-automatic-updater.php:1065 +#: wp-admin/update-core.php:991 +msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." +msgstr "Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le web plus sûr pour vous et pour votre audience." + +#: wp-admin/includes/class-wp-automatic-updater.php:1044 +msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" +msgstr "Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :" + +#: wp-admin/includes/class-wp-automatic-updater.php:1042 +msgid "This means your site may be offline or broken. Don't panic; this can be fixed." +msgstr "Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé." + +#. translators: 1: Home URL, 2: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:1036 +msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." +msgstr "Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s." + +#: wp-admin/includes/class-wp-automatic-updater.php:996 +#: wp-admin/includes/class-wp-automatic-updater.php:1021 +msgid "Updating is easy and only takes a few moments:" +msgstr "La mise à jour est facile et ne nécessite que quelques secondes :" + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1006 +msgid "Please update your site at %1$s to WordPress %2$s." +msgstr "Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:990 +msgid "For more on version %s, see the About WordPress screen:" +msgstr "Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : " + +#: wp-admin/includes/class-wp-automatic-updater.php:984 +msgid "No further action is needed on your part." +msgstr "Vous n’avez rien de plus à faire." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:978 +msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." +msgstr "Bonjour ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s." + +#. translators: Site down notification email subject. 1: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:961 +msgid "[%1$s] URGENT: Your site may be down due to a failed update" +msgstr "[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible." + +#. translators: Update available notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:956 +msgid "[%1$s] WordPress %2$s is available. Please update!" +msgstr "[%1$s] WordPress %2$s est disponible. Veuillez mettre à jour !" + +#. translators: Site updated notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:950 +msgid "[%1$s] Your site has updated to WordPress %2$s" +msgstr "[%1$s] Votre site a été mis à jour vers WordPress %2$s" + +#. translators: %s: Project name (plugin, theme, or WordPress). +#: wp-admin/includes/class-wp-automatic-updater.php:438 +msgid "Translations for %s" +msgstr "Traductions pour %s" + +#. translators: 1: Project name (plugin, theme, or WordPress), 2: Language. +#: wp-admin/includes/class-language-pack-upgrader-skin.php:60 +#: wp-admin/includes/class-wp-automatic-updater.php:440 +msgid "Updating translations for %1$s (%2$s)…" +msgstr "Mise à jour de la traduction de %1$s (%2$s)…" + +#: wp-admin/includes/class-language-pack-upgrader-skin.php:37 +#: wp-admin/update-core.php:831 wp-admin/update-core.php:1283 +msgid "Update Translations" +msgstr "Mettre à jour les traductions" + +#: wp-admin/includes/class-wp-site-health.php:2787 +msgid "Background updates" +msgstr "Mises à jour en arrière-plan" + +#: wp-admin/includes/update-core.php:1400 +msgid "There is not enough free disk space to complete the update." +msgstr "Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-automatic-updater.php:433 +msgid "Updating plugin: %s" +msgstr "Mise à jour de l’extension : %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-automatic-updater.php:421 +msgid "Updating theme: %s" +msgstr "Mise à jour du thème : %s" + +#: wp-admin/includes/class-language-pack-upgrader.php:120 +msgid "Translation updated successfully." +msgstr "La traduction a bien été mise à jour." + +#: wp-admin/includes/class-language-pack-upgrader.php:119 +msgid "Translation update failed." +msgstr "La mise à jour de la traduction a échoué." + +#: wp-admin/includes/class-language-pack-upgrader.php:113 +msgid "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." +msgstr "Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour." + +#: wp-admin/user-new.php:518 +msgid "Create a brand new user and add them to this site." +msgstr "Créer un nouveau compte et l’ajouter à ce site." + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:43 +msgid "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead." +msgstr "La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant." + +#: wp-admin/options-media.php:56 +msgid "The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library." +msgstr "Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la médiathèque." + +#: wp-admin/options-discussion.php:191 +msgid "Comment must be manually approved" +msgstr "Le commentaire doit être approuvé manuellement" + +#: wp-admin/nav-menus.php:743 +msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." +msgstr "En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran »." + +#. translators: 1: URL to Widgets screen, 2 and 3: The names of the default +#. themes. +#: wp-admin/nav-menus.php:712 +msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." +msgstr "Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté." + +#. translators: %s: URL to Widgets screen. +#: wp-admin/nav-menus.php:695 +msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." +msgstr "Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget « Menu de navigation » depuis l’écran Widgets." + +#: wp-admin/install.php:443 +msgid "Sorry, that is not a valid email address. Email addresses look like username@example.com." +msgstr "Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com." + +#: wp-admin/install.php:439 +msgid "You must provide an email address." +msgstr "Vous devez saisir une adresse e-mail." + +#: wp-admin/install.php:435 +msgid "Your passwords do not match. Please try again." +msgstr "Vos mots de passe ne correspondent pas. Veuillez réessayer." + +#: wp-admin/install.php:431 +msgid "The username you provided has invalid characters." +msgstr "L’identifiant que vous avez fourni contient des caractères non valides." + +#: wp-admin/install.php:428 +msgid "Please provide a valid username." +msgstr "Veuillez saisir un identifiant valide." + +#: wp-admin/includes/update-core.php:1314 +msgid "Copying the required files…" +msgstr "Copie des fichiers nécessaires…" + +#: wp-admin/includes/update-core.php:1221 +msgid "Preparing to install the latest version…" +msgstr "Préparation de l’installation de la dernière version…" + +#: wp-admin/includes/file.php:2603 +msgid "This password will not be stored on the server." +msgstr "Le mot de passe ne sera pas stocké sur le serveur." + +#. translators: 1: File checksum, 2: Expected checksum value. +#: wp-admin/includes/file.php:1387 +msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." +msgstr "L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s)." + +#. translators: %s: Version number. +#. translators: %s: WordPress version. +#: wp-admin/about.php:41 wp-admin/includes/class-wp-automatic-updater.php:409 +msgid "WordPress %s" +msgstr "WordPress %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:407 +msgid "Updating to WordPress %s" +msgstr "Mise à jour vers WordPress %s" + +#: wp-admin/includes/class-core-upgrader.php:42 +msgid "Due to an error during updating, WordPress has been restored to your previous version." +msgstr "Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente." + +#. translators: 1: Folder to locate, 2: Folder to start searching from. +#: wp-admin/includes/class-wp-filesystem-base.php:268 +msgid "Looking for %1$s in %2$s" +msgstr "Recherche %1$s dans %2$s" + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:381 +msgid "%s page restored from the Trash." +msgid_plural "%s pages restored from the Trash." +msgstr[0] "%s page récupérée depuis la corbeille." +msgstr[1] "%s pages récupérées depuis la corbeille." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:379 +msgid "%s page moved to the Trash." +msgid_plural "%s pages moved to the Trash." +msgstr[0] "%s page déplacée dans la corbeille." +msgstr[1] "%s pages déplacées dans la corbeille." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:377 +msgid "%s page permanently deleted." +msgid_plural "%s pages permanently deleted." +msgstr[0] "%s page définitivement supprimée." +msgstr[1] "%s pages définitivement supprimées." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:375 +msgid "%s page not updated, somebody is editing it." +msgid_plural "%s pages not updated, somebody is editing them." +msgstr[0] "%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier." +msgstr[1] "%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:372 +msgid "%s page updated." +msgid_plural "%s pages updated." +msgstr[0] "%s page mise à jour." +msgstr[1] "%s pages mises à jour." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:368 +msgid "%s post restored from the Trash." +msgid_plural "%s posts restored from the Trash." +msgstr[0] "%s publication récupérée depuis la corbeille." +msgstr[1] "%s publications récupérées depuis la corbeille." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:366 +msgid "%s post moved to the Trash." +msgid_plural "%s posts moved to the Trash." +msgstr[0] "%s publication déplacée dans la corbeille." +msgstr[1] "%s publications déplacées dans la corbeille." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:364 +msgid "%s post permanently deleted." +msgid_plural "%s posts permanently deleted." +msgstr[0] "%s publication supprimée définitivement." +msgstr[1] "%s publications supprimées définitivement." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:362 +msgid "%s post not updated, somebody is editing it." +msgid_plural "%s posts not updated, somebody is editing them." +msgstr[0] "%s publication n’a pas été mise à jour : quelqu’un est déjà en train de la modifier." +msgstr[1] "%s publications n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier." + +#: wp-admin/includes/edit-tag-messages.php:39 +msgid "Tags deleted." +msgstr "Étiquettes supprimées." + +#: wp-admin/includes/edit-tag-messages.php:38 +msgid "Tag not updated." +msgstr "Étiquette non mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:37 +msgid "Tag not added." +msgstr "Étiquette non ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:36 +msgid "Tag updated." +msgstr "Étiquette mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:35 +msgid "Tag deleted." +msgstr "Étiquette supprimée." + +#: wp-admin/includes/edit-tag-messages.php:34 +msgid "Tag added." +msgstr "Étiquette ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:29 +msgid "Categories deleted." +msgstr "Catégories supprimées." + +#: wp-admin/includes/edit-tag-messages.php:28 +msgid "Category not updated." +msgstr "Catégorie non mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:27 +msgid "Category not added." +msgstr "Catégorie non ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:26 +msgid "Category updated." +msgstr "Catégorie mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:25 +msgid "Category deleted." +msgstr "Catégorie effacée." + +#: wp-admin/includes/edit-tag-messages.php:24 +msgid "Category added." +msgstr "Catégorie ajoutée." + +#: wp-admin/revision.php:147 +msgid "Compare two different revisions by selecting the “Compare any two revisions” box to the side." +msgstr "Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté." + +#: wp-admin/includes/revision.php:396 +msgid "Compare any two revisions" +msgstr "Comparer n’importe quelles révisions" + +#: wp-admin/includes/revision.php:455 +msgid "Restore This Autosave" +msgstr "Rétablir cette sauvegarde automatique" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:427 +msgid "Current Revision by %s" +msgstr "Révision actuelle par %s" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:417 +msgid "Autosave by %s" +msgstr "Sauvegarde automatique par %s" + +#: wp-admin/includes/meta-boxes.php:275 +msgctxt "revisions" +msgid "Browse" +msgstr "Parcourir" + +#. translators: Post revisions heading. %s: The number of available revisions. +#: wp-admin/includes/meta-boxes.php:273 +msgid "Revisions: %s" +msgstr "Révisions : %s" + +#. translators: %s: Audio track title. +#: wp-admin/includes/media.php:343 +msgid "\"%s\"." +msgstr "%s." + +#. translators: 1: Audio track title, 2: Artist name. +#: wp-admin/includes/media.php:340 +msgid "\"%1$s\" by %2$s." +msgstr "%1$s par %2$s." + +#. translators: 1: Audio track title, 2: Album title. +#: wp-admin/includes/media.php:337 +msgid "\"%1$s\" from %2$s." +msgstr "« %1$s » depuis %2$s." + +#. translators: 1: Audio track title, 2: Album title, 3: Artist name. +#: wp-admin/includes/media.php:334 +msgid "\"%1$s\" from %2$s by %3$s." +msgstr "%1$s tiré de %2$s par %3$s." + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:437 +msgid "Revision by %s" +msgstr "Révision par %s" + +#: wp-admin/edit-form-advanced.php:461 +msgid "Connection lost. Saving has been disabled until you are reconnected." +msgstr "Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion." + +#: wp-admin/install.php:160 wp-admin/user-new.php:614 +msgid "Repeat Password" +msgstr "Répétez le mot de passe" + +#: wp-admin/user-edit.php:696 +msgid "Repeat New Password" +msgstr "Répétez le nouveau mot de passe" + +#: wp-admin/includes/nav-menu.php:1252 +msgid "Add menu items from the column on the left." +msgstr "Ajouter des éléments de menu depuis la colonne de gauche." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/includes/plugin-install.php:404 +msgid "Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page." +msgstr "Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou téléverser une extension au format .zip en cliquant sur le bouton en haut de cette page." + +#. Plugin URI of the plugin +#: hello.php +msgid "http://wordpress.org/plugins/hello-dolly/" +msgstr "https://fr.wordpress.org/plugins/hello-dolly/" + +#: wp-admin/includes/class-theme-upgrader.php:80 +msgid "The theme contains no files." +msgstr "Ce thème ne contient aucun fichier." + +#: wp-admin/includes/class-wp-upgrader.php:202 +msgid "The package contains no files." +msgstr "Ce paquet ne contient aucun fichier." + +#: wp-admin/revision.php:146 +msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." +msgstr "Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante." + +#: wp-admin/customize.php:155 wp-admin/includes/class-wp-debug-data.php:816 +#: wp-admin/includes/dashboard.php:1164 +msgid "Loading…" +msgstr "Chargement…" + +#: wp-admin/post.php:308 +msgid "This item has already been deleted." +msgstr "Cet élément a déjà été supprimé." + +#: wp-admin/post.php:279 +msgid "The item you are trying to restore from the Trash no longer exists." +msgstr "L’élément que vous essayez de sortir de la corbeille n’existe plus." + +#: wp-admin/post.php:242 +msgid "The item you are trying to move to the Trash no longer exists." +msgstr "L’élément que vous essayez de placer dans la corbeille n’existe plus." + +#: wp-admin/nav-menus.php:1118 +msgid "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." +msgstr "Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration." + +#: wp-admin/nav-menus.php:731 +msgid "If you have not yet created any menus, click the ’create a new menu’ link to get started" +msgstr "Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer" + +#: wp-admin/revision.php:148 +msgid "To restore a revision, click Restore This Revision." +msgstr "Pour rétablir cette révision, cliquez sur « Rétablir cette révision »." + +#: wp-admin/revision.php:145 +msgid "From this screen you can review, compare, and restore revisions:" +msgstr "Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :" + +#: wp-admin/revision.php:144 +msgid "Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added." +msgstr "Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été retiré. Sur la droite, le texte en vert indique le contenu qui a été ajouté." + +#: wp-admin/revision.php:143 +msgid "This screen is used for managing your content revisions." +msgstr "Cet écran est utilisé pour gérer les révisions de vos contenus." + +#: wp-admin/includes/revision.php:407 +msgctxt "Followed by post revision info" +msgid "To:" +msgstr "Vers :" + +#: wp-admin/includes/revision.php:377 +msgctxt "Button label for a next revision" +msgid "Next" +msgstr "Suivante" + +#: wp-admin/includes/revision.php:373 +msgctxt "Button label for a previous revision" +msgid "Previous" +msgstr "Précédente" + +#: wp-admin/includes/revision.php:405 +msgctxt "Followed by post revision info" +msgid "From:" +msgstr "Depuis :" + +#: wp-admin/nav-menus.php:918 +msgctxt "menu" +msgid "Use new menu" +msgstr "Utiliser le nouveau menu" + +#: wp-admin/nav-menus.php:897 +msgctxt "menu" +msgid "Edit" +msgstr "Modifier" + +#: wp-admin/nav-menus.php:864 +msgid "Select a Menu" +msgstr "Choisir un menu" + +#: wp-admin/nav-menus.php:855 +msgid "Assigned Menu" +msgstr "Menu assigné" + +#: wp-admin/nav-menus.php:854 +msgid "Theme Location" +msgstr "Emplacement du thème" + +#: wp-admin/nav-menus.php:823 +msgid "Manage Locations" +msgstr "Gérer les emplacements" + +#: wp-admin/nav-menus.php:812 +msgid "Edit Menus" +msgstr "Modifier les menus" + +#: wp-admin/nav-menus.php:760 +msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" +msgstr "Pour ajouter un menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème" + +#: wp-admin/nav-menus.php:759 +msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" +msgstr "Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent" + +#: wp-admin/nav-menus.php:758 +msgid "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" +msgstr "Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »" + +#: wp-admin/nav-menus.php:757 +msgid "This screen is used for globally assigning menus to locations defined by your theme." +msgstr "Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème." + +#: wp-admin/nav-menus.php:752 +msgid "Editing Menus" +msgstr "Modification des menus" + +#: wp-admin/nav-menus.php:747 +msgid "Delete a menu item by expanding it and clicking the Remove link" +msgstr "Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer" + +#: wp-admin/nav-menus.php:746 +msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" +msgstr "Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu" + +#: wp-admin/nav-menus.php:744 +msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" +msgstr "Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »" + +#: wp-admin/nav-menus.php:742 +msgid "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." +msgstr "Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des URL personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’une des sections situées dans la colonne de gauche ci-dessous." + +#: wp-admin/nav-menus.php:737 +msgid "Menu Management" +msgstr "Gestion des menus" + +#: wp-admin/nav-menus.php:732 +msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." +msgstr "Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran." + +#: wp-admin/nav-menus.php:730 +msgid "To edit an existing menu, choose a menu from the dropdown and click Select" +msgstr "Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »" + +#: wp-admin/nav-menus.php:729 +msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." +msgstr "La section de gestion des menus, en haut de l’écran, est utilisée pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous." + +#: wp-admin/nav-menus.php:719 +msgid "Add, organize, and modify individual menu items" +msgstr "Ajouter, organiser et modifier des éléments de menu individuels" + +#: wp-admin/nav-menus.php:718 +msgid "Create, edit, and delete menus" +msgstr "Créer, modifier et supprimer des menus" + +#: wp-admin/nav-menus.php:717 wp-admin/themes.php:133 +msgid "From this screen you can:" +msgstr "Depuis cet écran, vous pouvez :" + +#: wp-admin/nav-menus.php:709 +msgid "This screen is used for managing your navigation menus." +msgstr "Cet écran est utilisé pour gérer vos menus de navigation." + +#: wp-admin/nav-menus.php:535 +msgid "Menu locations updated." +msgstr "Les emplacements de menu ont été mis à jour." + +#: wp-admin/includes/post.php:1922 +msgid "Your latest changes were saved as a revision." +msgstr "Vos dernières modifications ont été enregistrées dans une révision." + +#: wp-admin/includes/media.php:3474 +msgid "Audio Codec:" +msgstr "Codec audio :" + +#: wp-admin/includes/media.php:3473 +msgid "Audio Format:" +msgstr "Format audio :" + +#. translators: Audio file genre information. %s: Audio genre name. +#: wp-admin/includes/media.php:387 +msgid "Genre: %s." +msgstr "Genre : %s." + +#. translators: Audio file track information. 1: Audio track number, 2: Total +#. audio tracks. +#: wp-admin/includes/media.php:371 +msgid "Track %1$s of %2$s." +msgstr "Piste %1$s sur %2$s." + +#. translators: Audio file track information. %d: Year of audio track release. +#: wp-admin/includes/media.php:361 +msgid "Released: %d." +msgstr "Date de sortie : %d." + +#. translators: 1: Audio album title, 2: Artist name. +#: wp-admin/includes/media.php:349 +msgid "%1$s by %2$s." +msgstr "%1$s par %2$s." + +#: wp-admin/includes/revision.php:457 +msgid "Restore This Revision" +msgstr "Rétablir cette révision" + +#. translators: %s: Capability name. +#: wp-admin/user-edit.php:932 +msgid "Denied: %s" +msgstr "Refusé : %s" + +#: wp-admin/user-edit.php:918 +msgid "Capabilities" +msgstr "Permissions" + +#: wp-admin/nav-menus.php:1175 wp-admin/network/settings.php:511 +msgid "Menu Settings" +msgstr "Réglages du menu" + +#: wp-admin/nav-menus.php:1075 +msgid "Menu structure" +msgstr "Structure du menu" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:289 +msgid "To the top" +msgstr "Tout en haut" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:286 +msgid "Down one" +msgstr "Descendre d’un cran" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:285 +msgid "Up one" +msgstr "Un cran vers le haut" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:284 +msgid "Move" +msgstr "Déplacer" + +#. translators: 1: Post creation date, 2: Post creation time. +#: wp-admin/includes/ajax-actions.php:1638 +msgid "Draft created on %1$s at %2$s" +msgstr "Brouillon créé le %1$s à %2$s" + +#. translators: %s: User's display name. +#: wp-admin/post.php:257 +msgid "You cannot move this item to the Trash. %s is currently editing." +msgstr "Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier." + +#. translators: %s: User's display name. +#: wp-admin/includes/misc.php:1208 +msgid "%s has taken over and is currently editing." +msgstr "%s a pris la main et modifie actuellement ce contenu." + +#: wp-admin/nav-menus.php:980 +msgid "Select a menu to edit:" +msgstr "Sélectionnez le menu à modifier :" + +#. translators: %s: URL to Upgrade Network screen. +#: wp-admin/includes/ms.php:699 +msgid "Thank you for Updating! Please visit the Upgrade Network page to update all your sites." +msgstr "Merci d’avoir fait cette mise à jour ! Veuillez vous rendre sur la page de mise à jour du réseau afin de mettre à jour tous vos sites." + +#: wp-admin/setup-config.php:509 +msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" +msgstr "C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…" + +#: wp-admin/includes/class-wp-debug-data.php:1619 +msgid "Client version" +msgstr "Version du client" + +#: wp-admin/nav-menus.php:1191 +msgid "Auto add pages" +msgstr "Ajoutez automatiquement des pages" + +#: wp-admin/nav-menus.php:1145 +msgid "Give your menu a name, then click Create Menu." +msgstr "Donnez à votre menu un nom, puis cliquez sur « Créer le menu »." + +#: wp-admin/nav-menus.php:1116 +msgid "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." +msgstr "Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications." + +#: wp-admin/nav-menus.php:358 +msgid "Selected menus have been successfully deleted." +msgstr "Les menus sélectionnés ont bien été supprimés." + +#: wp-admin/theme-editor.php:32 +msgid "For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." +msgstr "Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction." + +#: wp-admin/plugin-editor.php:308 wp-admin/theme-editor.php:332 +msgid "Look Up" +msgstr "Consulter" + +#: wp-admin/plugin-editor.php:140 +msgid "The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." +msgstr "Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction." + +#. translators: %s: User's display name. +#: wp-admin/includes/class-wp-posts-list-table.php:1126 +#: wp-admin/includes/misc.php:1155 +msgid "%s is currently editing" +msgstr "%s modifie actuellement ce contenu" + +#: wp-admin/edit-form-advanced.php:354 +msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." +msgstr "Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la médiathèque, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie »." + +#: wp-admin/includes/image-edit.php:83 +msgid "Image rotation is not supported by your web host." +msgstr "La rotation d’image n’est pas disponible avec cet hébergeur." + +#. translators: %s: A link to install the Link Manager plugin. +#: wp-admin/includes/bookmark.php:356 +msgid "If you are looking to use the link manager, please install the Link Manager plugin." +msgstr "Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager." + +#: wp-admin/widgets-form.php:65 +msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." +msgstr "En changeant de thème, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des colonnes latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avez changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages." + +#: wp-admin/edit-tags.php:289 +msgid "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." +msgstr "Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente »." + +#: wp-admin/edit-form-advanced.php:367 +msgid "Several boxes on this screen contain settings for how your content will be published, including:" +msgstr "Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :" + +#: wp-admin/edit-form-advanced.php:360 +msgid "Inserting Media" +msgstr "Insertion de média" + +#: wp-admin/edit-form-advanced.php:275 +msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." +msgstr "Le champ du titre et la zone d’édition de la publication sont inamovibles, mais vous pouvez déplacer toutes les autres sections par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque section. Utilisez l’onglet « Options de l’écran » pour masquer d’autres sections (Extrait, Envoyer des rétroliens, Champs personnalisés, Commentaires, Slug, Auteur ou autrice) ou pour choisir un affichage sur une ou deux colonnes pour cet écran." + +#: wp-admin/includes/class-custom-image-header.php:139 +msgid "Do not forget to click “Save Changes” when you are done!" +msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !" + +#: wp-admin/includes/class-custom-background.php:102 +msgid "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." +msgstr "Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre médiathèque en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps." + +#. translators: 1: URL to browser uploader, 2: Additional link attributes. +#: wp-admin/includes/media.php:3049 +msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." +msgstr "Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place." + +#: wp-admin/async-upload.php:68 +msgctxt "media item" +msgid "Edit" +msgstr "Modifier" + +#. translators: %s: Default text color. +#: wp-admin/includes/class-custom-image-header.php:795 +msgctxt "color" +msgid "Default: %s" +msgstr "Par défaut : %s" + +#: wp-admin/includes/class-wp-media-list-table.php:368 +#: wp-admin/includes/class-wp-media-list-table.php:402 +msgctxt "column name" +msgid "Uploaded to" +msgstr "Téléversé sur " + +#: wp-admin/includes/ajax-actions.php:2622 +#: wp-admin/includes/class-custom-background.php:542 +#: wp-admin/includes/class-custom-image-header.php:980 +msgid "The uploaded file is not a valid image. Please try again." +msgstr "Le fichier téléversé n’est pas une image valide. Veuillez réessayer." + +#: wp-admin/includes/class-custom-image-header.php:683 +msgid "Choose a Custom Header" +msgstr "Choisir un entête personnalisé" + +#: wp-admin/includes/class-custom-background.php:362 +msgid "Choose a Background Image" +msgstr "Choisir une image d’arrière-plan" + +#: wp-admin/includes/class-custom-image-header.php:138 +msgid "In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Dans la section « Texte d’entête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : « #ff0000 » pour du rouge) ou en cliquant sur le sélecteur de couleur." + +#: wp-admin/includes/class-custom-background.php:103 +msgid "You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton de sélection de couleur ou en saisissant une valeur HTML valide (exemple : « #ff0000 » pour du rouge) ou en utilisant la palette de couleurs." + +#: wp-admin/edit-comments.php:221 +msgid "In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post." +msgstr "Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour n’ afficher que ceux qui sont liés à cet article." + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:383 wp-admin/users.php:550 +msgid "ID #%1$s: %2$s" +msgstr "ID n°%1$s : %2$s" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:370 +msgid "ID #%1$s: %2$s The current user will not be deleted." +msgstr "ID n°%1$s : %2$s Le compte actuel ne sera pas supprimé." + +#. translators: Storage space that's been used. 1: Percentage of used space, 2: +#. Total space allowed in megabytes or gigabytes. +#: wp-admin/includes/ms.php:266 +msgid "Used: %1$s%% of %2$s" +msgstr "Taux d’utilisation : %1$s%% sur %2$s" + +#: wp-admin/users.php:345 +msgid "Please select an option." +msgstr "Veuillez sélectionner une option." + +#: wp-admin/setup-config.php:445 +msgid "After you’ve done that, click “Run the installation”." +msgstr "Après cela, cliquez sur « Lancer l’installation »" + +#: wp-admin/plugin-install.php:115 +msgid "If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin." +msgstr "Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Téléverser une extension ». Il vous sera demandé d’indiquer le fichier .zip à téléverser, et ceci fait, vous pourrez activer l’extension." + +#: wp-admin/plugin-install.php:114 +msgid "You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username." +msgstr "Vous pouvez voir les extensions favorites d’un compte WordPress.org en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org." + +#: wp-admin/plugin-install.php:112 +msgid "If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag." +msgstr "Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur/autrice, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions." + +#: wp-admin/install.php:211 wp-admin/options-reading.php:245 +msgid "It is up to search engines to honor this request." +msgstr "Certains moteurs de recherche peuvent décider de l’indexer malgré tout." + +#: wp-admin/install.php:202 wp-admin/install.php:210 +#: wp-admin/options-reading.php:223 wp-admin/options-reading.php:244 +msgid "Discourage search engines from indexing this site" +msgstr "Demander aux moteurs de recherche de ne pas indexer ce site" + +#: wp-admin/install.php:200 wp-admin/options-reading.php:221 +msgid "Allow search engines to index this site" +msgstr "Autoriser les moteurs de recherche à indexer ce site" + +#. translators: Hidden accessibility text. +#: wp-admin/install.php:184 wp-admin/install.php:193 +#: wp-admin/options-reading.php:44 wp-admin/options-reading.php:208 +#: wp-admin/options-reading.php:216 +msgid "Search engine visibility" +msgstr "Visibilité par les moteurs de recherche" + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1702 wp-admin/update-core.php:923 +msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." +msgstr "Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici." + +#: wp-admin/includes/plugin-install.php:376 wp-admin/theme-install.php:237 +msgid "Get Favorites" +msgstr "Afficher les favoris" + +#: wp-admin/includes/plugin-install.php:374 wp-admin/theme-install.php:234 +msgid "Your WordPress.org username:" +msgstr "Votre identifiant WordPress.org :" + +#: wp-admin/includes/plugin-install.php:370 +msgid "If you have marked plugins as favorites on WordPress.org, you can browse them here." +msgstr "Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici." + +#: wp-admin/includes/dashboard.php:2068 +msgid "Welcome to WordPress!" +msgstr "Bienvenue sur WordPress !" + +#: wp-admin/includes/dashboard.php:400 +msgid "Search engines discouraged" +msgstr "Moteurs de recherche refusés" + +#. translators: 1: Link to documentation on child themes, 2: Name of parent +#. theme. +#: wp-admin/includes/class-wp-themes-list-table.php:287 +msgid "This child theme requires its parent theme, %2$s." +msgstr "Ce thème enfant nécessite son thème parent, %2$s." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:115 +msgctxt "Plugin Installer" +msgid "Favorites" +msgstr "Favorites" + +#: wp-admin/theme-install.php:130 +msgid "To install the theme so you can preview it with your site’s content and customize its theme options, click the \"Install\" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the \"Activate\" link, or by navigating to your Manage Themes screen and clicking the \"Live Preview\" link under any installed theme’s thumbnail image." +msgstr "Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualiser en direct » situé sous la miniature de chaque thème." + +#: wp-admin/includes/widgets.php:264 +msgctxt "widget" +msgid "Add" +msgstr "Ajouter" + +#: wp-admin/includes/widgets.php:263 +msgctxt "widget" +msgid "Edit" +msgstr "Modifier" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:125 +msgid "Search by tag" +msgstr "Recherche par étiquette" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:121 +msgid "Search by author" +msgstr "Recherche par auteur ou autrice" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:117 +#: wp-admin/includes/theme-install.php:134 +msgid "Search by keyword" +msgstr "Rechercher par mot-clé" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/theme-install.php:104 +msgid "Type of search" +msgstr "Type de recherche" + +#: wp-admin/includes/class-wp-screen.php:1064 +msgid "Screen Options Tab" +msgstr "Onglet des options de l’écran" + +#: wp-admin/includes/class-wp-screen.php:873 +msgid "Contextual Help Tab" +msgstr "Onglet d’aide contextuelle" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-comments-list-table.php:931 +msgid "Select comment" +msgstr "Sélectionnez un commentaire" + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:656 +msgid "Tags can be selectively converted to categories using the tag to category converter." +msgstr "Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories." + +#: wp-admin/edit-tags.php:263 +msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." +msgstr "Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut." + +#: wp-admin/edit-form-advanced.php:317 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’écran », et en ouvrant/fermant les sections selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Code, via les boutons « Plein écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans la section « Attributs de page »." + +#: wp-admin/includes/class-custom-image-header.php:595 +msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." +msgstr "Vous pouvez choisir une image d’entête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre médiathèque. Après avoir sélectionné l’image, vous pourrez la recadrer." + +#: wp-admin/menu-header.php:294 +msgid "Skip to main content" +msgstr "Aller au contenu principal" + +#: wp-admin/includes/class-custom-image-header.php:120 +msgid "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button." +msgstr "Vous pouvez utiliser une image d’entête personnalisée pour votre site. Téléversez simplement l’image, recadrez-la, et le nouvel entête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été téléversée dans votre médiathèque, en cliquant sur le bouton « Choisissez une image »." + +#: wp-admin/includes/class-custom-image-header.php:958 +msgid "Skip Cropping, Publish Image as Is" +msgstr "Aucun recadrage, utiliser l’image telle quelle" + +#: wp-admin/includes/class-custom-background.php:363 +#: wp-admin/includes/class-custom-image-header.php:684 +msgid "Choose Image" +msgstr "Choisissez une image" + +#: wp-admin/includes/class-custom-background.php:360 +#: wp-admin/includes/class-custom-image-header.php:680 +msgid "Or choose an image from your media library:" +msgstr "Ou choisissez une image dans votre médiathèque :" + +#: wp-admin/includes/class-custom-background.php:350 +#: wp-admin/includes/class-custom-image-header.php:593 +msgid "Select Image" +msgstr "Sélectionnez une image" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:406 +#: wp-admin/theme-install.php:603 +msgid "Collapse" +msgstr "Réduire" + +#: wp-admin/includes/class-custom-image-header.php:123 +msgid "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." +msgstr "Si vous ne souhaitez pas que votre site utilise une image d’entête, cliquez sur le bouton « Retirer l’image d’entête » en bas de la section « Image d’entête » de cette page. Si vous souhaitez réactiver l’image d’entête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications »." + +#: wp-admin/includes/plugin-install.php:1032 +msgctxt "plugin" +msgid "Installed" +msgstr "Installée" + +#: wp-admin/themes.php:180 +msgid "Previewing and Customizing" +msgstr "Prévisualisation et personnalisation" + +#: wp-admin/theme-install.php:135 +msgid "Previewing and Installing" +msgstr "Prévisualisation et installation" + +#: wp-admin/theme-install.php:129 +msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." +msgstr "Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème." + +#: wp-admin/includes/media.php:3066 +msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." +msgstr "Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclut la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement." + +#: wp-admin/tools.php:50 +msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." +msgstr "Le lien « Convertisseur de catégories-étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Lancer l’outil d’importation » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre." + +#: wp-admin/tools.php:49 +msgid "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content." +msgstr "Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriquées. Parfois, des auteurs ou autrices commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre." + +#. translators: %s: URL to General Settings screen. +#: wp-admin/includes/class-custom-image-header.php:134 +msgid "For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section." +msgstr "Pour la plupart des thèmes, le texte d’entête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux." + +#: wp-admin/includes/class-custom-image-header.php:122 +msgid "If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature." +msgstr "Si votre thème a plus d’une image d’entête par défaut, ou si vous avez téléversé plus d’une image d’entête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images téléversées » pour activer cette fonctionnalité." + +#: wp-admin/includes/class-custom-image-header.php:121 +msgid "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button." +msgstr "Certains thèmes disposent d’une série d’images d’entête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications »." + +#: wp-admin/includes/class-custom-image-header.php:111 +msgid "You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed." +msgstr "Vous pouvez choisir à partir des images d’entête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan." + +#: wp-admin/includes/class-custom-image-header.php:110 +msgid "This screen is used to customize the header section of your theme." +msgstr "Cet écran est utilisé pour personnaliser la section d’entête de votre thème." + +#: wp-admin/install.php:328 wp-admin/install.php:341 +msgid "Configuration Error" +msgstr "Erreur de configuration" + +#: wp-admin/media-new.php:55 +msgid "Revert to the Browser Uploader by clicking the link below the drag and drop box." +msgstr "Revenez à l’outil de téléversement du navigateur en cliquant sur le lien sous la zone de glisser-déposer." + +#: wp-admin/users.php:613 wp-admin/network/users.php:260 +msgid "User deleted." +msgstr "Compte supprimé." + +#: wp-admin/includes/class-core-upgrader.php:40 wp-admin/includes/file.php:1741 +#: wp-admin/includes/file.php:1923 +msgid "Could not copy files. You may have run out of disk space." +msgstr "Impossible de copier les fichiers. Il se pourrait que vous manquiez de place." + +#: wp-admin/includes/theme-install.php:153 +msgid "Find a theme based on specific features." +msgstr "Trouver un thème selon des critères précis." + +#: wp-admin/includes/theme-install.php:95 +msgid "Search for themes by keyword." +msgstr "Rechercher des thèmes par mot-clé." + +#: wp-admin/setup-config.php:205 +msgid "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" +msgstr "Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…" + +#: wp-admin/theme-editor.php:274 +msgid "This theme is broken." +msgstr "Le thème est cassé." + +#: wp-admin/includes/class-custom-image-header.php:684 +msgid "Set as header" +msgstr "Utiliser comme entête" + +#: wp-admin/includes/class-custom-background.php:363 +msgid "Set as background" +msgstr "Utiliser comme image de fond" + +#. translators: Hidden accessibility text. %s: Theme name. +#: wp-admin/includes/class-theme-upgrader-skin.php:94 +msgid "Customize “%s”" +msgstr "Personnaliser « %s »" + +#: wp-admin/install.php:161 wp-admin/user-edit.php:498 +#: wp-admin/user-edit.php:546 wp-admin/user-new.php:543 +#: wp-admin/user-new.php:547 wp-admin/user-new.php:594 +#: wp-admin/user-new.php:614 +msgid "(required)" +msgstr "(nécessaire)" + +#: wp-admin/link.php:114 +msgid "Edit Link" +msgstr "Modifier le lien" + +#: wp-admin/includes/user.php:213 +msgid "Error: This email is already registered. Please choose another one." +msgstr "Erreur : cet e-mail est déjà inscrit. Veuillez en choisir un autre." + +#: wp-admin/includes/user.php:157 +msgid "Error: Please enter a nickname." +msgstr "Erreur : veuillez saisir un pseudonyme." + +#: wp-admin/credits.php:53 +msgid "https://wordpress.org/about/" +msgstr "https://fr.wordpress.org/about/" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1427 +#: wp-admin/includes/nav-menu.php:812 wp-admin/includes/nav-menu.php:1107 +#: wp-admin/update-core.php:501 wp-admin/update-core.php:625 +#: wp-admin/update-core.php:677 wp-admin/update-core.php:801 +msgid "Select All" +msgstr "Tout sélectionner" + +#: wp-admin/includes/meta-boxes.php:186 wp-admin/js/post.js:888 +msgid "Public, Sticky" +msgstr "Public, épinglé" + +#: wp-admin/includes/meta-boxes.php:109 wp-admin/includes/meta-boxes.php:154 +#: wp-admin/js/post.js:808 wp-admin/js/post.js:810 +msgid "Privately Published" +msgstr "Mis en ligne en privé" + +#: wp-admin/includes/meta-boxes.php:59 wp-admin/js/post.js:842 +msgid "Save as Pending" +msgstr "Mettre en attente" + +#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3010 +msgid "Enter a link URL or click above for presets." +msgstr "Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis." + +#: wp-admin/includes/media.php:1415 +msgid "Link URL" +msgstr "URL du lien" + +#: wp-admin/includes/meta-boxes.php:912 +msgid "No comments yet." +msgstr "Aucun commentaire pour l’instant." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:520 +#: wp-admin/includes/class-wp-themes-list-table.php:281 +#: wp-admin/includes/plugin-install.php:660 +msgid "Version:" +msgstr "Version : " + +#: wp-admin/includes/class-wp-theme-install-list-table.php:404 +#: wp-admin/theme-install.php:70 wp-admin/theme-install.php:601 +msgid "Collapse Sidebar" +msgstr "Réduire la colonne latérale" + +#: wp-admin/includes/class-wp-plugins-list-table.php:473 +msgid "Plugin" +msgstr "Extension" + +#: wp-admin/export.php:197 wp-admin/export.php:209 wp-admin/export.php:239 +#: wp-admin/export.php:261 wp-admin/export.php:291 +#: wp-admin/includes/class-wp-users-list-table.php:189 +msgid "All" +msgstr "Tout" + +#. translators: %s: Number of words. +#: wp-admin/edit-form-advanced.php:638 +msgid "Word count: %s" +msgstr "Nombre de mots : %s" + +#: wp-admin/edit-comments.php:399 wp-admin/edit-comments.php:413 +msgid "Edit comment" +msgstr "Modifier le commentaire" + +#: wp-admin/options-general.php:508 wp-admin/options-general.php:556 +msgid "Preview:" +msgstr "Aperçu :" + +#: wp-admin/includes/class-wp-users-list-table.php:397 +#: wp-admin/includes/class-wp-ms-users-list-table.php:217 +msgid "E-mail" +msgstr "E-mail" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-upgrader.php:93 +msgid "The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme." +msgstr "Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:91 +msgid "Successfully installed the parent theme, %1$s %2$s." +msgstr "Le thème parent, %1$s %2$s, a bien été installé." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:89 +msgid "The parent theme, %1$s %2$s, is currently installed." +msgstr "Le thème parent, %1$s %2$s, est bien installé." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:87 +msgid "Preparing to install %1$s %2$s…" +msgstr "Préparation à l’installation de %1$s %2$s…" + +#: wp-admin/includes/class-theme-upgrader.php:85 +msgid "This theme requires a parent theme. Checking if it is installed…" +msgstr "Ce thème nécessite un thème parent. Nous vérifions s’il est installé…" + +#: wp-admin/includes/class-custom-image-header.php:767 +msgid "Show header text with your image." +msgstr "Afficher le texte d’entête avec l’image." + +#: wp-admin/includes/class-custom-image-header.php:130 +#: wp-admin/includes/class-custom-image-header.php:759 +#: wp-admin/includes/class-custom-image-header.php:764 +msgid "Header Text" +msgstr "Texte de l’entête" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#: wp-admin/includes/theme.php:255 wp-admin/includes/update.php:553 +#: wp-admin/includes/update.php:745 +msgid "There is a new version of %1$s available. View version %4$s details or update now." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour maintenant." + +#. translators: %s: Plugin author. +#: wp-admin/includes/plugin.php:215 +msgid "By %s." +msgstr "par %s." + +#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:464 +#: wp-admin/includes/template.php:508 +msgid "Add Comment" +msgstr "Ajouter un commentaire" + +#. Author URI of the plugin +#: hello.php +msgid "http://ma.tt/" +msgstr "https://ma.tt/" + +#. Description of the plugin +#: hello.php +msgid "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page." +msgstr "Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration." + +#. Plugin Name of the plugin +#: hello.php +msgid "Hello Dolly" +msgstr "Hello Dolly" + +#: wp-admin/index.php:78 +msgid "Welcome — Shows links for some of the most common tasks when setting up a new site." +msgstr "Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site." + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:242 wp-admin/includes/update.php:732 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème." + +#: wp-admin/install.php:108 wp-admin/install.php:392 +msgctxt "Howdy" +msgid "Welcome" +msgstr "Bienvenue" + +#: wp-admin/ms-delete-site.php:132 +msgid "Delete My Site Permanently" +msgstr "Effacer mon site définitivement" + +#. translators: %s: Site address. +#: wp-admin/ms-delete-site.php:127 +msgid "I'm sure I want to permanently delete my site, and I am aware I can never get it back or use %s again." +msgstr "Je suis certain·e de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais le récupérer ni utiliser %s pour un nouveau site." + +#: wp-admin/ms-delete-site.php:118 +msgid "Remember, once deleted your site cannot be restored." +msgstr "Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:113 +msgid "If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site." +msgstr "Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site." + +#: wp-admin/ms-delete-site.php:104 +msgid "Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked." +msgstr "Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient." + +#: wp-admin/ms-delete-site.php:31 +msgid "Sorry, the link you clicked is stale. Please select another option." +msgstr "Désolé, mais le lien que vous avez cliqué est avarié. Veuillez sélectionner une autre option." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:26 +msgid "Thank you for using %s, your site has been deleted. Happy trails to you until we meet again." +msgstr "Merci à vous d’avoir utilisé %s, votre site a été effacé. Nous espérons vous revoir." + +#. translators: My Sites label. +#: wp-admin/includes/ms.php:771 +msgid "Primary Site" +msgstr "Site principal" + +#: wp-admin/includes/ms.php:646 +msgid "British English" +msgstr "Anglais (UK)" + +#: wp-admin/includes/ms.php:642 +msgid "American English" +msgstr "Anglais (US)" + +#: wp-admin/includes/ms.php:599 +msgid "View Site" +msgstr "Afficher le site" + +#: wp-admin/includes/ms.php:598 +msgid "Visit Dashboard" +msgstr "Se rendre sur le Tableau de bord" + +#: wp-admin/includes/ms.php:592 +msgid "Your Sites" +msgstr "Vos sites" + +#: wp-admin/includes/ms.php:590 +msgid "If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way." +msgstr "Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin." + +#. translators: 1: Site title. +#: wp-admin/includes/ms.php:578 wp-admin/includes/ms.php:587 +msgid "You attempted to access the \"%1$s\" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the \"%1$s\" dashboard, please contact your network administrator." +msgstr "Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur ou l’administratrice du réseau." + +#: wp-admin/includes/ms.php:316 +msgid "MB (Leave blank for network default)" +msgstr "Mo (Laisser vide pour utiliser la valeur par défaut du réseau)" + +#. translators: New admin email address notification email subject. %s: Site +#. title. +#: wp-admin/includes/misc.php:1520 +msgid "[%s] New Admin Email Address" +msgstr "[%s] Nouvelle adresse e-mail d’administration" + +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1161 +#: wp-admin/includes/class-wp-debug-data.php:1272 +#: wp-admin/includes/class-wp-debug-data.php:1431 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 +#: wp-admin/includes/class-wp-debug-data.php:1562 +msgid "Disabled" +msgstr "Désactivé" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:557 +msgid "Paused (%s)" +msgid_plural "Paused (%s)" +msgstr[0] "Mis en pause (%s)" +msgstr[1] "Mis en pause (%s)" + +#: wp-admin/my-sites.php:127 +msgid "Global Settings" +msgstr "Réglages globaux" + +#: wp-admin/my-sites.php:86 +msgid "You must be a member of at least one site to use this page." +msgstr "Vous devez être membre d’au moins un site pour utiliser cette page." + +#: wp-admin/my-sites.php:33 +msgid "The primary site you chose does not exist." +msgstr "Le site principal que vous avez choisi n’existe pas." + +#: wp-admin/setup-config.php:264 +msgid "If you want to run multiple WordPress installations in a single database, change this." +msgstr "Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage." + +#: wp-admin/setup-config.php:262 +msgid "Table Prefix" +msgstr "Préfixe des tables" + +#: wp-admin/setup-config.php:252 +msgid "Database Host" +msgstr "Adresse de la base de données" + +#: wp-admin/setup-config.php:242 +msgctxt "example password" +msgid "password" +msgstr "mot de passe" + +#: wp-admin/setup-config.php:235 +msgctxt "example username" +msgid "username" +msgstr "Identifiant" + +#: wp-admin/setup-config.php:229 +msgid "Database Name" +msgstr "Nom de la base de données" + +#: wp-admin/setup-config.php:226 +msgid "Below you should enter your database connection details. If you are not sure about these, contact your host." +msgstr "Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur." + +#: wp-admin/setup-config.php:207 +msgid "Let’s go!" +msgstr "C’est parti !" + +#: wp-admin/setup-config.php:176 +msgid "Table prefix (if you want to run more than one WordPress in a single database)" +msgstr "Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)" + +#: wp-admin/includes/class-wp-debug-data.php:1628 wp-admin/setup-config.php:175 +msgid "Database host" +msgstr "Hôte de base de données" + +#: wp-admin/setup-config.php:174 +msgid "Database password" +msgstr "Mot de passe de base de données" + +#: wp-admin/includes/class-wp-debug-data.php:1623 wp-admin/setup-config.php:173 +msgid "Database username" +msgstr "Identifiant MySQL" + +#: wp-admin/includes/class-wp-debug-data.php:1633 wp-admin/setup-config.php:172 +msgid "Database name" +msgstr "Nom de la base de données" + +#: wp-admin/setup-config.php:111 +msgid "WordPress › Setup Configuration File" +msgstr "WordPress › Fichier de configuration" + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:76 +msgid "The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Le fichier %1$s existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation maintenant." + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:63 +msgid "The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Le fichier %1$s existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer de lancer l’installation maintenant." + +#. translators: %s: wp-config-sample.php +#: wp-admin/setup-config.php:52 +msgid "Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation." +msgstr "Désolé, il est nécessaire de disposer d’un fichier %s à partir duquel travailler. Veuillez retéléverser ce fichier au sein de votre installation WordPress." + +#. translators: %s: wp-config.php +#: wp-admin/maint/repair.php:38 +msgid "To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page." +msgstr "Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page." + +#: wp-admin/includes/class-wp-comments-list-table.php:221 +msgid "No comments awaiting moderation." +msgstr "Aucun commentaire en attente de modération." + +#: wp-admin/includes/plugin-install.php:581 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Autres notes" + +#: wp-admin/includes/plugin-install.php:579 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Journal des modifications" + +#: wp-admin/includes/plugin-install.php:578 +msgctxt "Plugin installer section title" +msgid "Screenshots" +msgstr "Captures d’écrans" + +#: wp-admin/includes/plugin-install.php:577 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: wp-admin/includes/plugin-install.php:576 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: wp-admin/includes/plugin-install.php:575 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Description" + +#: wp-admin/includes/plugin-install.php:708 +msgid "Plugin Homepage »" +msgstr "Site de l’extension »" + +#: wp-admin/export.php:52 +msgid "You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status." +msgstr "Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une autre plateforme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur ou autrice donné, une catégorie précise, ou des états de publication." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:129 +msgid "Failed to repair the %1$s table. Error: %2$s" +msgstr "Impossible de réparer la table %1$s. Erreur : %2$s" + +#: wp-admin/user-new.php:281 +msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." +msgstr "Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue." + +#: wp-admin/includes/image-edit.php:329 +msgid "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor." +msgstr "Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’image." + +#: wp-admin/options-writing.php:35 +msgid "Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret." +msgstr "Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards." + +#: wp-admin/users.php:47 +msgid "You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed." +msgstr "Vous pouvez filtrer la liste des comptes par rôle, à l’aide des liens textuels au-dessus de la liste des comptes, afin d’afficher tous les comptes, ou seulement les administrateurs/administratrices, éditeurs/éditrices, auteurs/autrices ou contributeurs/contributrices. Par défaut, tous les comptes sont affichés. Les rôles sans compte associé ne sont pas listés." + +#: wp-admin/import.php:26 +msgid "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." +msgstr "Dans les versions précédentes de WordPress, tous les outils d’importation étaient directement inclus. Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois." + +#. translators: %s: URL to view the autosave. +#: wp-admin/edit-form-advanced.php:246 +msgid "There is an autosave of this post that is more recent than the version below. View the autosave" +msgstr "Une sauvegarde automatique existe pour cette publication ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique." + +#: wp-admin/includes/class-custom-image-header.php:915 +#: wp-admin/includes/class-custom-image-header.php:1074 +#: wp-admin/includes/class-custom-image-header.php:1420 +msgid "Image could not be processed. Please go back and try again." +msgstr "L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer." + +#: wp-admin/themes.php:263 +msgid "The active theme is broken. Reverting to the default theme." +msgstr "Le thème courant est endommagé. Retour au thème par défaut." + +#: wp-admin/maint/repair.php:186 +msgid "WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing." +msgstr "WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation." + +#: wp-admin/maint/repair.php:182 +msgid "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient." +msgstr "WordPress peut automatiquement rechercher les problèmes courants de base de données et les réparer. La réparation peut prendre un certain temps, veuillez être patient." + +#: wp-admin/maint/repair.php:170 +msgid "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users." +msgstr "Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des comptes non autorisés." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:119 +msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" +msgstr "La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…" + +#: wp-admin/user-new.php:454 +msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Pour inviter un compte de ce réseau sur ce site, saisissez son adresse e-mail ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout." + +#: wp-admin/user-new.php:450 +msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Saisissez l’adresse e-mail d’un compte existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation." + +#: wp-admin/user-edit.php:374 +msgid "Show Toolbar when viewing site" +msgstr "Afficher la barre d’outils lorsque vous visitez le site" + +#. translators: %s: HelpHub URL. +#. translators: %s: Documentation URL. +#: wp-admin/about.php:76 wp-admin/about.php:368 +msgid "For more information, see the release notes." +msgstr "Pour plus d’informations, consultez les notes de publication." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. More +#. than one security issue. +#: wp-admin/about.php:362 +msgid "Version %1$s addressed some security issues and fixed %2$s bug." +msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." +msgstr[0] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogue." +msgstr[1] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogues." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. Singular +#. security issue. +#: wp-admin/about.php:356 +msgid "Version %1$s addressed a security issue and fixed %2$s bug." +msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." +msgstr[0] "La version %1$s a corrigé un problème de sécurité et %2$s bogue." +msgstr[1] "La version %1$s a corrigé un problème de sécurité et %2$s bogues." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. +#: wp-admin/about.php:64 wp-admin/about.php:350 +msgid "Version %1$s addressed %2$s bug." +msgid_plural "Version %1$s addressed %2$s bugs." +msgstr[0] "La version %1$s a corrigé %2$s bogue." +msgstr[1] "La version %1$s a corrigé %2$s bogues." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:347 +msgid "Version %s addressed some security issues." +msgstr "La version %s a corrigé quelques problèmes de sécurité." + +#: wp-admin/about.php:59 wp-admin/about.php:341 +msgid "Maintenance and Security Release" +msgstr "Mise à jour de maintenance et de sécurité" + +#: wp-admin/about.php:338 +msgid "Security Release" +msgstr "Mise à jour de sécurité" + +#: wp-admin/about.php:335 +msgid "Maintenance Release" +msgstr "Mise à jour de maintenance" + +#: wp-admin/about.php:50 wp-admin/contribute.php:34 wp-admin/credits.php:37 +#: wp-admin/freedoms.php:40 wp-admin/privacy.php:34 +msgid "What’s New" +msgstr "Nouveautés" + +#: wp-admin/options-permalink.php:25 +msgid "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." +msgstr "Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens." + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1710 wp-admin/update-core.php:931 +msgid "Welcome to WordPress %1$s. Learn more." +msgstr "Bienvenue sur WordPress %1$s. En savoir plus." + +#: wp-admin/media-new.php:51 +msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" +msgstr "Vous pouvez ici téléverser des fichiers sans avoir besoin de créer un publication au préalable. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :" + +#: wp-admin/edit-tags.php:299 +msgid "Adding Tags" +msgstr "Ajout d’étiquettes" + +#: wp-admin/edit-tags.php:299 +msgid "Adding Categories" +msgstr "Ajout de catégories" + +#: wp-admin/plugins.php:577 +msgid "Troubleshooting" +msgstr "Diagnostic" + +#: wp-admin/update-core.php:1011 +msgid "How to Update" +msgstr "Comment faire les mises à jour" + +#: wp-admin/export.php:178 +msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site." +msgstr "Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site." + +#: wp-admin/upload.php:393 +msgid "Attaching Files" +msgstr "Joindre des fichiers" + +#: wp-admin/edit.php:290 +msgid "You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply." +msgstr "Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action en cochant leurs cases, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer »." + +#: wp-admin/edit.php:274 wp-admin/upload.php:378 wp-admin/users.php:74 +msgid "Available Actions" +msgstr "Actions disponibles" + +#: wp-admin/edit.php:262 +msgid "You can customize the display of this screen’s contents in a number of ways:" +msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :" + +#: wp-admin/edit.php:260 wp-admin/users.php:43 +msgid "Screen Content" +msgstr "Contenu de l’écran" + +#: wp-admin/edit.php:254 +msgid "This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow." +msgstr "Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins." + +#. translators: %s: URL to Add Plugins screen. +#: wp-admin/import.php:234 +msgid "If the importer you need is not listed, search the plugin directory to see if an importer is available." +msgstr "Si l’outil d’importation dont vous avez besoin n’est pas listé, faites une recherche dans le répertoire officiel des extensions pour voir s’il y en a un qui répond à votre besoin." + +#: wp-admin/edit-comments.php:216 +msgid "Moderating Comments" +msgstr "Modération des commentaires" + +#. translators: %s: URL to Import screen. +#: wp-admin/tools.php:78 +msgid "If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen." +msgstr "Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des outils d’importation." + +#: wp-admin/plugin-install.php:110 +msgid "Adding Plugins" +msgstr "Ajout d’extensions" + +#: wp-admin/themes.php:164 +msgid "Adding Themes" +msgstr "Ajout de thèmes" + +#: wp-admin/user-new.php:304 +msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." +msgstr "Les abonnés et abonnées peuvent lire les commentaires/commenter/recevoir les newsletters… mais ne peuvent pas créer de contenu sur le site." + +#: wp-admin/user-new.php:306 +msgid "Authors can publish and manage their own posts, and are able to upload files." +msgstr "Les auteurs ou autrices peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers." + +#: wp-admin/user-new.php:302 +msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" +msgstr "Voici un rapide survol des différents rôles assignables aux comptes, et des droits qui leurs sont associés :" + +#: wp-admin/user-new.php:301 +msgid "User Roles" +msgstr "Rôles des comptes" + +#: wp-admin/user-new.php:288 +msgid "Remember to click the Add User button at the bottom of this screen when you are finished." +msgstr "N’oubliez pas de cliquer sur le bouton « Ajouter un compte », en bas de cet écran, quand vous aurez terminé." + +#: wp-admin/user-new.php:277 +msgid "To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom." +msgstr "Pour ajouter un nouveau compte à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un compte » en bas de l’écran." + +#: wp-admin/options-permalink.php:53 +msgid "Custom Structures" +msgstr "Structure personnalisée" + +#: wp-admin/options-permalink.php:317 +msgid "Common Settings" +msgstr "Réglages les plus courants" + +#: wp-admin/options-permalink.php:24 +msgid "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink." +msgstr "Les permaliens sont des adresses web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien." + +#: wp-admin/options-writing.php:24 +msgid "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links." +msgstr "Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation." + +#: wp-admin/options-media.php:26 +msgid "Uploading Files allows you to choose the folder and path for storing your uploaded files." +msgstr "L’option « Téléversement des médias » vous permet de choisir le dossier et le chemin de stockage de vos fichiers téléversés." + +#: wp-admin/themes.php:152 +msgid "Installing themes on Multisite can only be done from the Network Admin section." +msgstr "En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau." + +#: wp-admin/options-writing.php:46 +msgid "If desired, WordPress will automatically alert various services of your new posts." +msgstr "Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications." + +#: wp-admin/options-writing.php:34 +msgid "Post Via Email" +msgstr "Envoi d’article par e-mail" + +#: wp-admin/options-discussion.php:25 +msgid "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does." +msgstr "Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. D’ailleurs, il y en a tellement qu’elles ne tiennent pas toutes ici :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage des commentaires." + +#: wp-admin/user-edit.php:61 +msgid "You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens." +msgstr "Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier le jeu de couleurs des écrans de l’administration de votre WordPress, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur l’interface publique de votre site, mais elle ne peut pas être désactivée sur les écrans d’administration." + +#: wp-admin/widgets-form.php:94 +msgid "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar." +msgstr "Cette colonne latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement." + +#: wp-admin/widgets-form.php:91 +msgid "Inactive Sidebar (not used)" +msgstr "Colonne latérale inactive (inutilisée)" + +#: wp-admin/media-new.php:54 +msgid "Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen." +msgstr "Un clic sur Sélectionner des fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement." + +#: wp-admin/media-new.php:53 +msgid "Drag and drop your files into the area below. Multiple files are allowed." +msgstr "Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois." + +#: wp-admin/edit-tags.php:259 +msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." +msgstr "Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles." + +#: wp-admin/edit-tags.php:257 +msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." +msgstr "Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles." + +#: wp-admin/widgets-form.php:62 +msgid "Missing Widgets" +msgstr "Widgets manquants" + +#: wp-admin/widgets-form.php:52 +msgid "Removing and Reusing" +msgstr "Retirer et réutiliser" + +#: wp-admin/upload.php:395 +msgid "If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file." +msgstr "Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Téléversé sur », et vous pourrez cliquer sur le lien « Joindre » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier." + +#: wp-admin/upload.php:370 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen." +msgstr "Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran." + +#: wp-admin/edit.php:320 +msgid "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once." +msgstr "Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup." + +#: wp-admin/edit.php:319 +msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." +msgstr "La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière." + +#: wp-admin/edit-form-advanced.php:316 wp-admin/edit.php:311 +msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." +msgstr "Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages." + +#: wp-admin/edit-comments.php:223 +msgid "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more." +msgstr "De nombreuses personnes utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus." + +#: wp-admin/edit-comments.php:219 +msgid "In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address." +msgstr "Dans la colonne Auteur/autrice, en plus de trouver le nom de l’auteur ou de l’autrice, son adresse e-mail et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP." + +#: wp-admin/edit-comments.php:210 +msgid "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions." +msgstr "Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées »." + +#: wp-admin/index.php:52 +msgid "Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information." +msgstr "Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress." + +#: wp-admin/link-manager.php:71 +msgid "Deleting Links" +msgstr "Suppression de liens" + +#: wp-admin/link-manager.php:64 +msgid "Links may be separated into Link Categories; these are different than the categories used on your posts." +msgstr "Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles." + +#. translators: 1: URL to About screen, 2: WordPress version. +#: wp-admin/update-core.php:292 +msgid "Learn more about WordPress %2$s." +msgstr "À propos de WordPress %2$s." + +#: wp-admin/users.php:55 +msgid "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username." +msgstr "« Modifier » vous envoie sur l’écran de modification de ce compte. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom du compte." + +#: wp-admin/users.php:53 +msgid "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:" +msgstr "Passer la souris au-dessus d’une ligne de la liste des comptes affichera des liens vous permettant de gérer le compte. Vous pouvez lancer les actions suivantes :" + +#: wp-admin/users.php:48 +msgid "You can view all posts made by a user by clicking on the number under the Posts column." +msgstr "Vous pouvez voir tous les articles faits par un même compte en cliquant sur le nombre sous la colonne « Articles »." + +#: wp-admin/users.php:46 +msgid "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab." +msgstr "Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre de comptes à afficher par écran à l’aide de l’onglet « Options de l’écran »." + +#: wp-admin/edit.php:317 +msgid "Managing Pages" +msgstr "Gestion de pages" + +#: wp-admin/edit.php:281 +msgid "Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status." +msgstr "Prévisualiser vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de la publication. L’action disponible dépend de l’état de votre publication." + +#: wp-admin/edit.php:280 +msgid "Trash removes your post from this list and places it in the Trash, from which you can permanently delete it." +msgstr "Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement." + +#: wp-admin/edit.php:279 +msgid "Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen." +msgstr "Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste." + +#: wp-admin/edit.php:278 +msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." +msgstr "Modifier vous envoie sur l’écran de modification de cette publication. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de la publication." + +#: wp-admin/user-new.php:280 +msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." +msgstr "Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un identifiant ou une adresse e-mail, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur ou administratrice du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur ou de l’utilisatrice pour modifier son compte, depuis l’écran « Tous les comptes »." + +#: wp-admin/about.php:322 +msgid "Go to Dashboard → Home" +msgstr "Aller sur l’accueil" + +#: wp-admin/about.php:315 +msgid "Go to Dashboard → Updates" +msgstr "Aller sur Tableau de bord → Mises à jour" + +#: wp-admin/user-edit.php:217 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#. translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. +#: wp-admin/user-new.php:127 +msgid "" +"Hi,\n" +"\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"\n" +"Please click the following link to confirm the invite:\n" +"%4$s" +msgstr "" +"Bonjour,\n" +"\n" +"Vous avez été invité·e à rejoindre « %1$s » sur\n" +"%2$s en tant que %3$s. \n" +"Veuillez cliquer sur le lien suivant pour confirmer l’invitation :\n" +"%4$s" + +#: wp-admin/credits.php:138 +msgid "Core Developer" +msgstr "Développeur cœur" + +#: wp-admin/includes/class-plugin-upgrader.php:490 +msgid "No valid plugins were found." +msgstr "Aucune extension valide trouvée." + +#: wp-admin/includes/class-plugin-upgrader.php:82 +msgid "The plugin contains no files." +msgstr "Cette extension ne contient aucun fichier." + +#: wp-admin/includes/class-wp-upgrader.php:205 +msgid "The package could not be installed." +msgstr "L’archive n’a pas pu être installée." + +#: wp-admin/includes/media.php:1290 +msgid "Attachment Post URL" +msgstr "Adresse de la page du fichier joint" + +#: wp-admin/menu.php:85 +msgctxt "admin menu" +msgid "All Links" +msgstr "Tous les liens" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:298 +msgid "%s plugins" +msgstr "%s extensions" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:296 +msgid "%s plugin" +msgstr "%s extension" + +#. translators: 1: Table name. 2: Error message. +#: wp-admin/maint/repair.php:151 +msgid "Failed to optimize the %1$s table. Error: %2$s" +msgstr "Impossible d’optimiser la table %1$s. Erreur : %2$s" + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:148 +msgid "Successfully optimized the %s table." +msgstr "La table %s a bien été optimisée." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:141 +msgid "The %s table is already optimized." +msgstr "La table %s a déjà été optimisée." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:126 +msgid "Successfully repaired the %s table." +msgstr "La table %s a bien été réparée." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:116 +msgid "The %s table is okay." +msgstr "La table %s est correcte." + +#. translators: %s: Plugin version. +#: wp-admin/update-core.php:577 +msgid "View version %s details." +msgstr "Afficher les détails de la version %s." + +#: wp-admin/includes/import.php:217 +msgid "Tumblr" +msgstr "Tumblr" + +#. translators: 1: Browser update URL, 2: Browser name, 3: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1755 +msgid "Update %2$s or learn how to browse happy" +msgstr "Mettez %2$s à jour, ou apprenez à naviguer sereinement" + +#. translators: 1: Link start tag, 2: Link end tag, 3: Width, 4: Height. +#: wp-admin/includes/media.php:3098 +msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." +msgstr "Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d)." + +#: wp-admin/includes/media.php:2958 +msgid "Audio, Video, or Other File" +msgstr "Audio, vidéo ou un autre format" + +#: wp-admin/includes/media.php:2428 +msgid "Insert media from another website" +msgstr "Insérer un média depuis un autre site" + +#: wp-admin/includes/file.php:2507 +msgid "Error: Could not connect to the server. Please verify the settings are correct." +msgstr "Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects." + +#: wp-admin/index.php:64 +msgid "Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box." +msgstr "Glisser/déposer - Pour réarranger les sections, glissez/déposez-les en cliquant sur la barre de titre de la section sélectionnée, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer la section." + +#: wp-admin/index.php:62 +msgid "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well." +msgstr "Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord afin qu’il s’adapte à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière." + +#: wp-admin/index.php:51 +msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." +msgstr "La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichent au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu." + +#. translators: %s: Number of pending updates. +#. translators: %s: Number of available updates. +#: wp-admin/menu.php:54 wp-admin/network/menu.php:35 +msgid "Updates %s" +msgstr "Mises à jour %s" + +#: wp-admin/menu.php:308 wp-admin/network/menu.php:110 +msgid "Installed Plugins" +msgstr "Extensions installées" + +#. translators: %s: Number of available plugin updates. +#: wp-admin/menu.php:306 wp-admin/network/menu.php:93 +msgid "Plugins %s" +msgstr "Extensions %s" + +#: wp-admin/menu.php:330 wp-admin/network/menu.php:61 +msgid "All Users" +msgstr "Tous les comptes" + +#: wp-admin/includes/ms.php:997 wp-admin/users.php:444 +msgid "Confirm Deletion" +msgstr "Confirmer cette action" + +#: wp-admin/includes/class-wp-users-list-table.php:376 +#: wp-admin/user-edit.php:451 wp-admin/user-new.php:478 +#: wp-admin/user-new.php:639 wp-admin/network/site-users.php:325 +#: wp-admin/network/site-users.php:366 +msgid "Role" +msgstr "Rôle" + +#: wp-admin/user-edit.php:271 wp-admin/user-new.php:393 +#: wp-admin/user-new.php:447 wp-admin/user-new.php:508 wp-admin/users.php:787 +#: wp-admin/network/site-users.php:316 +msgid "Add Existing User" +msgstr "Ajouter un compte existant" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:497 wp-admin/includes/dashboard.php:501 +#: wp-admin/users.php:808 wp-admin/network/site-users.php:292 +#: wp-admin/network/users.php:312 +msgid "Search Users" +msgstr "Rechercher des comptes" + +#: wp-admin/users.php:720 wp-admin/network/site-users.php:263 +msgid "User removed from this site." +msgstr "Compte supprimé de ce site." + +#: wp-admin/users.php:674 wp-admin/network/site-users.php:256 +msgid "Changed roles." +msgstr "Rôles modifiés." + +#: wp-admin/comment.php:175 wp-admin/plugins.php:346 wp-admin/plugins.php:360 +#: wp-admin/theme-editor.php:340 wp-admin/includes/network.php:473 +#: wp-admin/network/themes.php:140 wp-admin/network/themes.php:151 +msgid "Caution:" +msgstr "Attention :" + +#: wp-admin/user-new.php:382 wp-admin/network/site-users.php:243 +#: wp-admin/network/user-new.php:91 wp-admin/network/users.php:272 +msgid "User added." +msgstr "Compte ajouté." + +#: wp-admin/includes/class-wp-users-list-table.php:455 +#: wp-admin/user-edit.php:476 +#: wp-admin/includes/class-wp-ms-users-list-table.php:287 +msgid "Super Admin" +msgstr "Super-admin" + +#. translators: %s: Plugin version. +#. translators: %s: Plugin version number. +#. translators: %s: Theme version number. +#. translators: %s: WordPress version. +#. translators: %s: Theme version. +#: wp-admin/includes/ajax-actions.php:4641 +#: wp-admin/includes/ajax-actions.php:4684 +#: wp-admin/includes/class-wp-debug-data.php:784 +#: wp-admin/includes/class-wp-debug-data.php:960 +#: wp-admin/includes/class-wp-debug-data.php:1347 +#: wp-admin/includes/class-wp-plugins-list-table.php:1172 +#: wp-admin/includes/update.php:250 wp-admin/includes/update.php:290 +#: wp-admin/index.php:113 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:736 +msgid "Version %s" +msgstr "Version %s" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:565 +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "À mettre à jour (%s)" +msgstr[1] "À mettre à jour (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:810 +#: wp-admin/includes/class-wp-plugins-list-table.php:900 +#: wp-admin/includes/class-wp-plugins-list-table.php:917 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:772 +msgid "Deactivate" +msgstr "Désactiver" + +#: wp-admin/menu.php:382 wp-admin/ms-delete-site.php:39 +msgid "Delete Site" +msgstr "Supprimer le site" + +#: wp-admin/my-sites.php:60 wp-admin/options-head.php:20 +#: wp-admin/options.php:367 wp-admin/network/settings.php:142 +#: wp-admin/network/sites.php:366 +msgid "Settings saved." +msgstr "Réglages enregistrés." + +#: wp-admin/comment.php:71 wp-admin/edit-comments.php:228 +#: wp-admin/edit-form-advanced.php:311 wp-admin/edit-form-advanced.php:328 +#: wp-admin/edit-form-advanced.php:347 wp-admin/edit-link-form.php:75 +#: wp-admin/edit-tags.php:305 wp-admin/edit.php:300 wp-admin/edit.php:325 +#: wp-admin/erase-personal-data.php:64 wp-admin/export-personal-data.php:64 +#: wp-admin/export.php:58 wp-admin/import.php:31 +#: wp-admin/includes/class-custom-background.php:109 +#: wp-admin/includes/class-custom-image-header.php:144 +#: wp-admin/includes/ms.php:1171 wp-admin/index.php:131 +#: wp-admin/link-manager.php:78 wp-admin/media-new.php:60 +#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:772 +#: wp-admin/options-discussion.php:31 wp-admin/options-general.php:59 +#: wp-admin/options-media.php:40 wp-admin/options-permalink.php:59 +#: wp-admin/options-privacy.php:46 wp-admin/options-reading.php:52 +#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:153 +#: wp-admin/plugin-install.php:120 wp-admin/plugins.php:619 +#: wp-admin/revision.php:158 wp-admin/site-health.php:89 +#: wp-admin/theme-editor.php:51 wp-admin/theme-install.php:154 +#: wp-admin/themes.php:206 wp-admin/tools.php:55 wp-admin/update-core.php:1052 +#: wp-admin/upload.php:198 wp-admin/upload.php:400 wp-admin/user-edit.php:77 +#: wp-admin/user-new.php:314 wp-admin/users.php:81 wp-admin/widgets-form.php:70 +#: wp-admin/network.php:67 wp-admin/network.php:80 +#: wp-admin/network/index.php:55 wp-admin/network/settings.php:63 +#: wp-admin/network/site-new.php:31 wp-admin/network/sites.php:43 +#: wp-admin/network/themes.php:337 wp-admin/network/upgrade.php:31 +#: wp-admin/network/user-new.php:28 wp-admin/network/users.php:241 +msgid "For more information:" +msgstr "Plus d’informations :" + +#: wp-admin/edit-form-advanced.php:322 +msgid "About Pages" +msgstr "À propos des pages" + +#: wp-admin/edit-form-advanced.php:300 +msgid "Title and Post Editor" +msgstr "Titre et éditeur de publications" + +#: wp-admin/edit-form-advanced.php:280 +msgid "Customizing This Display" +msgstr "Personnaliser cet écran" + +#: wp-admin/options-reading.php:224 +msgid "Note: Neither of these options blocks access to your site — it is up to search engines to honor your request." +msgstr "Note : Aucune de ces options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande." + +#: wp-admin/options-permalink.php:270 +msgid "Post name" +msgstr "Titre de la publication" + +#: wp-admin/options-permalink.php:254 wp-admin/options-permalink.php:260 +#: wp-admin/options-permalink.php:272 +msgctxt "sample permalink structure" +msgid "sample-post" +msgstr "exemple-article" + +#: wp-admin/options-permalink.php:265 wp-admin/options-permalink.php:266 +msgctxt "sample permalink base" +msgid "archives" +msgstr "archives" + +#. translators: %s: URL to Import screen on the main site. +#: wp-admin/import.php:171 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Cet importateur n’est pas installé. Veuillez installer les outils d’importation depuis le site principal." + +#: wp-admin/includes/class-wp-debug-data.php:177 +#: wp-admin/options-general.php:325 wp-admin/network/site-new.php:250 +msgid "Site Language" +msgstr "Langue du site" + +#: wp-admin/options-discussion.php:56 +msgid "Attempt to notify any blogs linked to from the post" +msgstr "Tenter de notifier les sites liés depuis la publication" + +#. translators: 1: Site title, 2: Site URL, 3: User role. +#: wp-admin/includes/user.php:620 +msgid "" +"Hi,\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"If you do not want to join this site please ignore\n" +"this email. This invitation will expire in a few days.\n" +"\n" +"Please click the following link to activate your user account:\n" +"%%s" +msgstr "" +"Bonjour,\n" +"Vous avez reçu une invitation à rejoindre « %1$s » sur\n" +"%2$s avec le rôle « %3$s ». \n" +"Si vous ne souhaitez pas rejoindre ce site, veuillez ignorer\n" +"cet e-mail. L’invitation expirera dans quelques jours.\n" +"\n" +"Veuillez cliquer sur le lien suivant pour activer votre compte :\n" +"%%s" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:537 wp-admin/includes/theme.php:344 +msgid "Post Formats" +msgstr "Format d’article" + +#: wp-admin/includes/theme.php:343 +msgid "Full Width Template" +msgstr "Modèle pleine largeur" + +#: wp-admin/includes/theme.php:340 +msgid "Featured Images" +msgstr "Images mises en avant" + +#: wp-admin/includes/theme.php:339 +msgid "Featured Image Header" +msgstr "Image d’entête mise en avant" + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1726 +msgid "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." +msgstr "Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur." + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1720 +msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." +msgstr "Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur." + +#: wp-admin/includes/nav-menu.php:1304 +msgid "There are some invalid menu items. Please check or delete them." +msgstr "Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer." + +#: wp-admin/edit-tag-form.php:150 wp-admin/edit-tags.php:464 +#: wp-admin/includes/class-wp-terms-list-table.php:192 +#: wp-admin/includes/class-wp-terms-list-table.php:219 +#: wp-admin/includes/class-wp-terms-list-table.php:696 +msgctxt "term name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/includes/template.php:592 wp-admin/includes/template.php:607 +#: wp-admin/includes/template.php:742 +msgctxt "meta name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/themes.php:685 +msgctxt "theme name" +msgid "Name" +msgstr "Nom" + +#. translators: %s: Theme Directory URL. +#: wp-admin/theme-install.php:109 +msgid "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses." +msgstr "Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress." + +#. translators: %s: WordPress Plugin Directory URL. +#: wp-admin/plugins.php:569 +msgid "If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgstr "Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le répertoire d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du répertoire sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !" + +#. translators: %s: MAX_FILE_SIZE +#: wp-admin/includes/file.php:898 +msgid "The uploaded file exceeds the %s directive that was specified in the HTML form." +msgstr "La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML." + +#: wp-admin/credits.php:151 +msgid "External Libraries" +msgstr "Bibliothèques tierces" + +#: wp-admin/menu.php:385 wp-admin/network.php:53 wp-admin/network/menu.php:117 +msgid "Network Setup" +msgstr "Création du réseau" + +#: wp-admin/menu.php:374 +msgid "Available Tools" +msgstr "Outils disponibles" + +#: wp-admin/includes/credits.php:101 +msgctxt "Translate this to be the equivalent of English Translators in your language for the credits page Translators section" +msgid "Translators" +msgstr "Traductrices & traducteurs" + +#. translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: +#. https://wordpress.org/about/license +#: wp-admin/freedoms.php:100 +msgid "Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them." +msgstr "Tous les thèmes et extensions disponibles sur le répertoire WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y rechercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien que la licence GPL est respectée. Si cela n’est pas le cas, il vaut mieux ne pas l’utiliser." + +#. translators: %s: https://wordpressfoundation.org/trademark-policy +#: wp-admin/freedoms.php:88 +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first." +msgstr "WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté WordPress apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation des marques déposées par la WordPress Foundation." + +#: wp-admin/menu.php:112 +msgid "All Comments" +msgstr "Tous les commentaires" + +#: wp-admin/credits.php:132 +msgid "Lead Developer" +msgstr "Développeur principal" + +#: wp-admin/credits.php:131 +msgid "Cofounder, Project Lead" +msgstr "Cofondateur, chef de projet" + +#. translators: %s: The current WordPress version number. +#: wp-admin/credits.php:129 +msgid "Core Contributors to WordPress %s" +msgstr "Contributrices & contributeurs au cœur de WordPress %s" + +#: wp-admin/credits.php:127 +msgid "Project Leaders" +msgstr "Chefs de projet" + +#: wp-admin/about.php:51 wp-admin/contribute.php:35 wp-admin/credits.php:14 +#: wp-admin/credits.php:38 wp-admin/freedoms.php:41 wp-admin/privacy.php:35 +msgid "Credits" +msgstr "Crédits" + +#: wp-admin/widgets-form.php:449 +msgctxt "removing-widget" +msgid "Deactivate" +msgstr "Désactiver" + +#: wp-admin/includes/dashboard.php:37 +msgid "Your browser is out of date!" +msgstr "Votre navigateur est obsolète !" + +#: wp-admin/includes/dashboard.php:35 +msgid "You are using an insecure browser!" +msgstr "Vous utilisez un navigateur peu sûr !" + +#: wp-admin/about.php:52 wp-admin/contribute.php:36 wp-admin/credits.php:39 +#: wp-admin/freedoms.php:19 wp-admin/freedoms.php:42 wp-admin/privacy.php:36 +msgid "Freedoms" +msgstr "Libertés" + +#: wp-admin/includes/class-custom-image-header.php:717 +msgid "You can use one of these cool headers or show a random one on each page." +msgstr "Vous pouvez choisir parmi ces entêtes, ou en afficher un aléatoirement à chaque chargement de page." + +#: wp-admin/includes/class-custom-image-header.php:715 +msgid "If you do not want to upload your own image, you can use one of these cool headers, or show a random one." +msgstr "Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’un de ces entêtes, ou en afficher un aléatoirement." + +#: wp-admin/includes/class-custom-image-header.php:701 +msgid "You can choose one of your previously uploaded headers, or show a random one." +msgstr "Vous pouvez choisir un entête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement." + +#: wp-admin/menu-header.php:287 +msgid "Collapse Menu" +msgstr "Replier le menu" + +#: wp-admin/includes/class-custom-image-header.php:699 +msgid "Uploaded Images" +msgstr "Images téléversées" + +#: wp-admin/includes/class-custom-image-header.php:325 +msgid "Random: Show a different image on each page." +msgstr "Aléatoire : affiche une image différente sur chaque page." + +#: wp-admin/users.php:354 +msgid "You have specified this user for deletion:" +msgstr "Vous avez choisi de supprimer ce compte :" + +#. translators: %s: Template name. +#: wp-admin/includes/file.php:93 +msgid "%s Page Template" +msgstr "Modèle de page %s" + +#: wp-admin/includes/ajax-actions.php:4746 wp-admin/plugins.php:667 +msgid "You cannot delete a plugin while it is active on the main site." +msgstr "Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal." + +#: wp-admin/plugins.php:346 +msgid "This plugin may be active on other sites in the network." +msgstr "Cette extension peut uniquement être activée sur l’ensemble des sites du réseau." + +#: wp-admin/options-writing.php:106 +msgid "Default Post Format" +msgstr "Format par défaut des articles" + +#: wp-admin/plugin-editor.php:148 wp-admin/theme-editor.php:46 +msgid "Any edits to files from this screen will be reflected on all sites in the network." +msgstr "Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau." + +#: wp-admin/users.php:35 +msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." +msgstr "Cet écran liste tous les comptes actuels de votre site. Chaque compte a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur ou l’administratrice du site : administrateur/administratrice, éditeur/éditrice, auteur/autrice, contributeur/contributrice ou abonné/abonnée. Les comptes avec un rôle autre qu’administrateur ou administratrice verront moins d’options quand ils seront connectés, en fonction de leur rôle." + +#: wp-admin/plugin-editor.php:147 +msgid "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." +msgstr "Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre." + +#: wp-admin/index.php:75 +msgid "The boxes on your Dashboard screen are:" +msgstr "Les sections de l’écran du tableau de bord sont :" + +#. translators: Default page slug. +#: wp-admin/includes/upgrade.php:354 +msgid "sample-page" +msgstr "page-d-exemple" + +#: wp-admin/includes/upgrade.php:352 +msgid "Sample Page" +msgstr "Page d’exemple" + +#: wp-admin/options-discussion.php:310 +msgid "Retro (Generated)" +msgstr "Rétro (généré)" + +#. translators: %s: URL to Themes tab on Edit Site screen. +#: wp-admin/includes/class-wp-themes-list-table.php:110 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes." +msgstr "Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes." + +#. translators: 1: URL to Themes tab on Edit Site screen, 2: URL to Add Themes +#. screen. +#: wp-admin/includes/class-wp-themes-list-table.php:101 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes." +msgstr "Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes." + +#: wp-admin/user-edit.php:481 +msgid "Super admin privileges cannot be removed because this user has the network admin email." +msgstr "Les privilèges de super-admin ne peuvent pas être retirés, car ce compte est celui avec l’adresse e-mail administrative du réseau." + +#. translators: %s: URL to Add Themes screen. +#: wp-admin/includes/class-wp-themes-list-table.php:121 +msgid "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above." +msgstr "Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus." + +#: wp-admin/maint/repair.php:180 +msgid "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient." +msgstr "Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient." + +#: wp-admin/includes/file.php:56 +msgid "Visual Editor RTL Stylesheet" +msgstr "Feuille de style de l’éditeur visuel (lecture de droite à gauche)" + +#: wp-admin/theme-editor.php:341 +msgid "This is a file in your current parent theme." +msgstr "Ceci est un fichier de votre thème parent actuel." + +#. translators: %s: Link to edit parent theme. +#: wp-admin/theme-editor.php:290 +msgid "This child theme inherits templates from a parent theme, %s." +msgstr "Ce thème enfant hérite de certains modèles de son thème parent, %s." + +#: wp-admin/includes/class-theme-installer-skin.php:156 +#: wp-admin/js/updates.js:1804 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:469 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:594 +msgid "Network Enable" +msgstr "Activer sur le réseau" + +#: wp-admin/upgrade.php:173 +msgid "Your WordPress database has been successfully updated!" +msgstr "La base de données de WordPress a bien été mise à jour !" + +#: wp-admin/upgrade.php:172 +msgid "Update Complete" +msgstr "Mise à jour terminée" + +#: wp-admin/upgrade.php:162 +msgid "Update WordPress Database" +msgstr "Mettre à jour la base de données de WordPress" + +#: wp-admin/upgrade.php:161 wp-admin/network/upgrade.php:144 +msgid "The database update process may take a little while, so please be patient." +msgstr "Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience." + +#: wp-admin/upgrade.php:159 wp-admin/network/upgrade.php:140 +msgid "Database Update Required" +msgstr "Mise à jour de la base de données nécessaire" + +#: wp-admin/upgrade.php:92 +msgid "No Update Required" +msgstr "Aucune mise à jour nécessaire" + +#: wp-admin/upgrade.php:84 +msgid "WordPress › Update" +msgstr "WordPress › Mise à jour" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:188 +msgid "You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released." +msgstr "Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que cette version soit officiellement traduite dans votre langue." + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/update.php:539 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension." + +#: wp-admin/includes/class-theme-upgrader-skin.php:44 wp-admin/update.php:219 +msgid "Update Theme" +msgstr "Mettre à jour le thème" + +#: wp-admin/includes/class-plugin-upgrader-skin.php:62 wp-admin/update.php:63 +msgid "Update Plugin" +msgstr "Mettre à jour l’extension" + +#: wp-admin/includes/class-theme-upgrader.php:64 +#: wp-admin/includes/class-theme-upgrader.php:101 +msgid "Theme updated successfully." +msgstr "Le thème a bien été mis à jour." + +#: wp-admin/includes/ajax-actions.php:4362 +#: wp-admin/includes/class-theme-upgrader.php:63 +#: wp-admin/includes/class-theme-upgrader.php:100 +msgid "Theme update failed." +msgstr "La mise à jour du thème a échoué." + +#: wp-admin/includes/class-plugin-upgrader.php:65 +#: wp-admin/includes/class-plugin-upgrader.php:92 +msgid "Plugin updated successfully." +msgstr "L’extension a bien été mise à jour." + +#: wp-admin/includes/ajax-actions.php:4703 +#: wp-admin/includes/class-plugin-upgrader.php:64 +#: wp-admin/includes/class-plugin-upgrader.php:91 +msgid "Plugin update failed." +msgstr "La mise à jour de l’extension a échoué." + +#: wp-admin/includes/class-core-upgrader.php:35 +#: wp-admin/includes/class-language-pack-upgrader.php:115 +#: wp-admin/includes/class-plugin-upgrader.php:58 +#: wp-admin/includes/class-theme-upgrader.php:57 +msgid "Update package not available." +msgstr "Aucune archive de mise à jour disponible." + +#. translators: Hidden accessibility text. +#: wp-admin/export.php:221 wp-admin/export.php:273 wp-admin/export.php:318 +msgid "Date range:" +msgstr "Date de création :" + +#: wp-admin/export.php:201 wp-admin/export.php:253 +msgid "Authors:" +msgstr "Auteurs/autrices :" + +#: wp-admin/export.php:191 +msgid "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts." +msgstr "Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de publications personnalisés." + +#: wp-admin/export.php:190 +msgid "All content" +msgstr "Tout le contenu" + +#: wp-admin/export.php:180 +msgid "Choose what to export" +msgstr "Choisir les données à exporter" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:249 +msgctxt "comments" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Le mien (%s)" +msgstr[1] "Les miens (%s)" + +#. translators: Admin screen title. %s: Admin screen name. +#: wp-admin/admin-header.php:55 +msgid "%s — WordPress" +msgstr "%s – WordPress" + +#: wp-admin/includes/class-wp-comments-list-table.php:551 +msgctxt "column name" +msgid "In Response To" +msgstr "En réponse à" + +#: wp-admin/widgets-form.php:46 +msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." +msgstr "La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera retiré du site." + +#: wp-admin/edit-form-advanced.php:342 +msgid "Remember to click Update to save metadata entered or changed." +msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées." + +#: wp-admin/edit-form-advanced.php:341 +msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." +msgstr "Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification." + +#: wp-admin/edit-form-advanced.php:340 +msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." +msgstr "Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les sections sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton « Aide » de ces sections pour obtenir plus d’informations." + +#: wp-admin/edit-form-advanced.php:339 +msgid "This screen allows you to edit fields for metadata in a file within the media library." +msgstr "Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la médiathèque." + +#: wp-admin/user-new.php:455 +msgid "Email or Username" +msgstr "E-mail ou identifiant" + +#: wp-admin/themes.php:235 wp-admin/network/site-themes.php:240 +#: wp-admin/network/themes.php:463 +msgid "Search installed themes" +msgstr "Rechercher des thèmes installés" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/update-core.php:665 +msgid "Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications." +msgstr "Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications." + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:404 +msgctxt "posts" +msgid "Sticky (%s)" +msgid_plural "Sticky (%s)" +msgstr[0] "Épinglé (%s)" +msgstr[1] "Épinglés (%s)" + +#: wp-admin/update-core.php:1117 +msgid "Check again." +msgstr "Vérifier à nouveau." + +#. translators: 1: Date, 2: Time. +#: wp-admin/update-core.php:1111 +msgid "Last checked on %1$s at %2$s." +msgstr "Dernière vérification le %1$s à %2$s." + +#: wp-admin/update-core.php:1086 +msgid "Please select one or more plugins to update." +msgstr "Veuillez sélectionner une ou plusieurs extensions à mettre à jour." + +#: wp-admin/update-core.php:1076 +msgid "Please select one or more themes to update." +msgstr "Veuillez sélectionner un ou plusieurs thèmes à mettre à jour." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:61 +msgid "The update process is starting. This process may take a while on some hosts, so please be patient." +msgstr "Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience." + +#: wp-admin/theme-install.php:243 wp-admin/theme-install.php:265 +msgid "Apply Filters" +msgstr "Appliquer les filtres" + +#: wp-admin/includes/theme.php:338 +msgid "Editor Style" +msgstr "Éditeur de style" + +#: wp-admin/users.php:235 +msgid "Sorry, you are not allowed to edit users." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les comptes." + +#: wp-admin/includes/file.php:2560 +msgid "To perform the requested action, WordPress needs to access your web server." +msgstr "Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-list-table.php:1108 +#: wp-admin/includes/class-wp-list-table.php:1117 +msgid "Current Page" +msgstr "Page actuelle" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:176 +msgid "No themes match your request." +msgstr "Aucun thème ne correspond à votre requête." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/dashboard.php:510 wp-admin/includes/dashboard.php:514 +#: wp-admin/network/sites.php:413 +msgid "Search Sites" +msgstr "Rechercher des sites" + +#: wp-admin/includes/dashboard.php:454 +msgid "Create a New User" +msgstr "Créer un nouveau compte" + +#. translators: 1: Text indicating the number of sites on the network, 2: Text +#. indicating the number of users on the network. +#: wp-admin/includes/dashboard.php:466 +msgid "You have %1$s and %2$s." +msgstr "Vous avez %1$s et %2$s." + +#. translators: %s: Number of sites on the network. +#: wp-admin/includes/dashboard.php:463 +msgid "%s site" +msgid_plural "%s sites" +msgstr[0] "%s site" +msgstr[1] "%s sites" + +#. translators: %s: Number of users on the network. +#: wp-admin/includes/dashboard.php:461 +msgid "%s user" +msgid_plural "%s users" +msgstr[0] "%s compte" +msgstr[1] "%s comptes" + +#: wp-admin/includes/dashboard.php:1543 +msgid "https://wordpress.org/news/feed/" +msgstr "https://fr.wordpress.org/news/feed/" + +#: wp-admin/includes/dashboard.php:1534 +msgid "https://wordpress.org/news/" +msgstr "https://wpfr.net/" + +#: wp-admin/options-discussion.php:84 +msgid "(Signup has been disabled. Only members of this site can comment.)" +msgstr "(L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:229 wp-admin/includes/update.php:526 +#: wp-admin/includes/update.php:719 +msgid "There is a new version of %1$s available. View version %4$s details." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s." + +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:78 +#: wp-admin/includes/class-theme-installer-skin.php:170 +#: wp-admin/includes/class-theme-upgrader-skin.php:127 +msgid "Go to Themes page" +msgstr "Aller sur la page des thèmes" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:82 +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:83 +#: wp-admin/includes/class-language-pack-upgrader-skin.php:98 +msgid "Go to WordPress Updates page" +msgstr "Aller à la page des mises à jour de WordPress" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:77 +#: wp-admin/includes/class-plugin-installer-skin.php:157 +#: wp-admin/includes/class-plugin-upgrader-skin.php:101 +msgid "Go to Plugins page" +msgstr "Aller sur la page des extensions" + +#: wp-admin/includes/nav-menu.php:1295 +msgid "Click Save Menu to make pending menu items public." +msgstr "Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente." + +#: wp-admin/includes/dashboard.php:1660 +msgid "Storage Space" +msgstr "Espace disque" + +#: wp-admin/includes/dashboard.php:451 +msgid "Create a New Site" +msgstr "Créer un nouveau site" + +#. translators: 1: Image width in pixels, 2: Image height in pixels. +#: wp-admin/includes/class-custom-image-header.php:602 +msgid "Images of exactly %1$d × %2$d pixels will be used as-is." +msgstr "Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles." + +#: wp-admin/includes/class-custom-image-header.php:952 +msgid "Crop and Publish" +msgstr "Recadrer et publier" + +#: wp-admin/edit-link-form.php:70 +msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." +msgstr "XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur/autrice ou la personne qui est propriétaire de la page liée." + +#: wp-admin/includes/file.php:2570 +msgid "FTP Password" +msgstr "Mot de passe FTP" + +#: wp-admin/includes/file.php:2569 +msgid "FTP Username" +msgstr "Identifiant FTP" + +#: wp-admin/includes/file.php:2566 +msgid "FTP/SSH Password" +msgstr "Mot de passe FTP/SSH" + +#: wp-admin/includes/file.php:2565 +msgid "FTP/SSH Username" +msgstr "Identifiant FTP/SSH" + +#: wp-admin/widgets-form.php:64 +msgid "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area." +msgstr "De nombreux thèmes affichent par défaut quelques widgets dans la colonne latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de colonne latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles »." + +#. translators: %s: URL to create a new page. +#: wp-admin/options-reading.php:29 +msgid "You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed." +msgstr "Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles." + +#: wp-admin/options-permalink.php:54 +msgid "The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized." +msgstr "Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/." + +#. translators: 1: %category%, 2: %tag% +#: wp-admin/options-permalink.php:42 +msgid "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s." +msgstr "Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %1$s ou %2$s." + +#. translators: %s: Percent sign (%). +#: wp-admin/options-permalink.php:37 +msgid "If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there." +msgstr "Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les balises de structure (encadrés par %s), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis." + +#: wp-admin/widgets-form.php:54 +msgid "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." +msgstr "Si vous voulez retirer le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les réajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes." + +#: wp-admin/users.php:36 +msgid "To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section." +msgstr "Pour ajouter un nouveau compte à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Comptes »." + +#: wp-admin/options-media.php:20 +msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." +msgstr "Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine." + +#: wp-admin/options-general.php:28 +msgid "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." +msgstr "La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes." + +#: wp-admin/edit-form-advanced.php:407 +msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." +msgstr "Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez saisir un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc." + +#: wp-admin/includes/file.php:2574 +msgid "If you do not remember your credentials, you should contact your web host." +msgstr "Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur." + +#: wp-admin/includes/file.php:2568 +msgid "Please enter your FTP credentials to proceed." +msgstr "Veuillez saisir votre identifiant FTP pour continuer." + +#: wp-admin/includes/file.php:2564 +msgid "Please enter your FTP or SSH credentials to proceed." +msgstr "Veuillez saisir votre identifiant FTP ou SSH pour continuer." + +#: wp-admin/user-edit.php:60 +msgid "Your profile contains information about you (your “account”) as well as some personal options related to using WordPress." +msgstr "Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress." + +#. translators: %s: /wp-content/themes +#: wp-admin/theme-install.php:116 +msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." +msgstr "Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s." + +#: wp-admin/edit-form-advanced.php:394 +msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." +msgstr "Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite." + +#: wp-admin/user-new.php:305 +msgid "Contributors can write and manage their posts but not publish posts or upload media files." +msgstr "Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média." + +#: wp-admin/user-new.php:308 +msgid "Administrators have access to all the administration features." +msgstr "Les administrateurs et les administratrices peuvent accéder à toutes les fonctionnalités de l’administration." + +#: wp-admin/plugin-editor.php:138 +msgid "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." +msgstr "Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements." + +#: wp-admin/link-manager.php:73 +msgid "If you delete a link, it will be removed permanently, as Links do not have a Trash function yet." +msgstr "Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment." + +#. translators: %s: URL to Widgets screen. +#: wp-admin/link-manager.php:61 +msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." +msgstr "Vous pouvez ajouter ici les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut." + +#: wp-admin/edit-tags.php:286 +msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "Slug — Le slug est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union." + +#. translators: %s: URL to Press This bookmarklet. +#: wp-admin/edit-form-advanced.php:308 +msgid "You can also create posts with the Press This bookmarklet." +msgstr "Vous pouvez également créer des articles avec le bookmarklet Press This." + +#: wp-admin/includes/class-custom-background.php:104 +msgid "Do not forget to click on the Save Changes button when you are finished." +msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé." + +#: wp-admin/includes/class-custom-background.php:101 +msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." +msgstr "Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur." + +#: wp-admin/user-new.php:307 +msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." +msgstr "Les éditeurs ou éditrices peuvent publier et gérer leurs propres publication, ainsi que ceux des autres membres, etc." + +#: wp-admin/user-edit.php:66 +msgid "Remember to click the Update Profile button when you are finished." +msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé." + +#: wp-admin/user-edit.php:65 +msgid "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so." +msgstr "Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter." + +#: wp-admin/user-edit.php:63 +msgid "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts." +msgstr "Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles." + +#: wp-admin/comment.php:66 +msgid "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment." +msgstr "Vous pouvez également modérer le commentaire depuis cet écran, à l’aide de la section « État », d’où vous pouvez également changer l’horodatage du commentaire." + +#: wp-admin/comment.php:65 +msgid "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error." +msgstr "Si besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe." + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:34 +msgid "You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds." +msgstr "Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’entrées à afficher, s’il faut afficher l’article en entier ou juste un résumé. En savoir plus sur les flux." + +#: wp-admin/options-reading.php:26 +msgid "This screen contains the settings that affect the display of your content." +msgstr "Cet écran présente les réglages qui influent sur l’affichage de votre contenu." + +#: wp-admin/options-general.php:47 +msgid "UTC means Coordinated Universal Time." +msgstr "UTC signifie « Temps universel coordonné »." + +#: wp-admin/options-general.php:27 +msgid "The fields on this screen determine some of the basics of your site setup." +msgstr "Les champs de cet écran déterminent certains des réglages de base de votre site." + +#: wp-admin/options-discussion.php:26 wp-admin/options-general.php:48 +#: wp-admin/options-media.php:29 wp-admin/options-permalink.php:26 +#: wp-admin/options-permalink.php:46 wp-admin/options-permalink.php:55 +#: wp-admin/options-reading.php:37 wp-admin/options-writing.php:25 +msgid "You must click the Save Changes button at the bottom of the screen for new settings to take effect." +msgstr "Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet." + +#: wp-admin/edit-link-form.php:69 +msgid "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box." +msgstr "Les sections pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnées par glisser/déposer. Vous pouvez également masquer les sections que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les sections en cliquant sur leur barre de titre." + +#: wp-admin/update-core.php:643 +msgid "Your themes are all up to date." +msgstr "Vos thèmes sont tous à jour." + +#: wp-admin/update-core.php:470 +msgid "Your plugins are all up to date." +msgstr "Vos extensions sont toutes à jour." + +#: wp-admin/update-core.php:287 +msgid "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated." +msgstr "Durant le processus de mise à jour, votre site sera mis en mode de maintenance. Dès que le processus sera achevé, ce mode sera désactivé." + +#: wp-admin/update-core.php:255 +msgid "An updated version of WordPress is available." +msgstr "Une nouvelle version de WordPress est disponible." + +#: wp-admin/update-core.php:274 +msgid "You have the latest version of WordPress." +msgstr "Vous avez la dernière version de WordPress." + +#: wp-admin/plugin-editor.php:181 wp-admin/theme-editor.php:172 +msgid "Function Name…" +msgstr "Nom de la fonction…" + +#: wp-admin/includes/class-plugin-installer-skin.php:110 +msgid "Activate Plugin & Run Importer" +msgstr "Activer l’extension & lancer l’outil d’importation" + +#: wp-admin/edit-link-form.php:68 +msgid "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." +msgstr "Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacune des sections. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse)." + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:643 +msgid "Categories can be selectively converted to tags using the category to tag converter." +msgstr "Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes." + +#: wp-admin/import.php:25 +msgid "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform." +msgstr "Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plateformes de blogs ou gestionnaires de contenus. Choisissez la plateforme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plateforme, cliquez sur le lien « Recherche dans le répertoire officiel » et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes." + +#: wp-admin/export.php:53 +msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." +msgstr "Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plateforme de blog capable de lire ce format." + +#: wp-admin/plugin-editor.php:139 +msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." +msgstr "Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé." + +#: wp-admin/link-manager.php:65 +msgid "You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table." +msgstr "Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens." + +#: wp-admin/plugins.php:579 +msgid "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue." +msgstr "La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause." + +#: wp-admin/widgets-form.php:56 +msgid "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop." +msgstr "En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer." + +#: wp-admin/widgets-form.php:55 +msgid "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required." +msgstr "Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire." + +#: wp-admin/widgets-form.php:45 +msgid "Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them." +msgstr "Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la colonne latérale). Pour remplir les zones à widgets de votre colonne latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir." + +#: wp-admin/theme-editor.php:40 +msgid "Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use." +msgstr "Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site." + +#: wp-admin/theme-editor.php:39 +msgid "After typing in your edits, click Update File." +msgstr "Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier »." + +#: wp-admin/theme-editor.php:31 +msgid "Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box." +msgstr "Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur." + +#: wp-admin/theme-editor.php:30 +msgid "You can use the theme file editor to edit the individual CSS and PHP files which make up your theme." +msgstr "Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier les fichiers CSS et PHP qui composent votre thème." + +#: wp-admin/includes/meta-boxes.php:1010 +msgid "(no parent)" +msgstr "(pas de parent)" + +#: wp-admin/edit-form-advanced.php:406 +msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." +msgstr "Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant." + +#: wp-admin/edit-form-advanced.php:405 +msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." +msgstr "Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:68 +msgid "All updates have been completed." +msgstr "Toutes les mises à jour sont terminées." + +#: wp-admin/edit-tags.php:294 +msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." +msgstr "Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau." + +#: wp-admin/edit-tags.php:292 +msgid "Description — The description is not prominent by default; however, some themes may display it." +msgstr "Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent." + +#: wp-admin/edit-tags.php:284 +msgid "Name — The name is how it appears on your site." +msgstr "Nom — Le nom est utilisé un peu partout sur votre site." + +#: wp-admin/edit-tags.php:280 +msgid "When adding a new tag on this screen, you’ll fill in the following fields:" +msgstr "Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :" + +#: wp-admin/edit-tags.php:278 +msgid "When adding a new category on this screen, you’ll fill in the following fields:" +msgstr "Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :" + +#: wp-admin/edit-tags.php:265 +msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." +msgstr "Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index." + +#. translators: %s: URL to Writing Settings screen. +#: wp-admin/edit-tags.php:253 +msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." +msgstr "Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture." + +#: wp-admin/includes/class-custom-image-header.php:934 +msgid "You need JavaScript to choose a part of the image." +msgstr "Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image." + +#: wp-admin/includes/class-custom-image-header.php:930 +msgid "Crop Header Image" +msgstr "Recadrer l’image d’entête" + +#: wp-admin/includes/class-custom-image-header.php:986 +msgid "Image Upload Error" +msgstr "Erreur lors du téléversement de l’image" + +#: wp-admin/includes/class-custom-image-header.php:773 +msgid "Text Color" +msgstr "Couleur du texte" + +#: wp-admin/includes/class-custom-image-header.php:750 +msgid "Restore Original Header Image" +msgstr "Rétablir l’image d’entête d’origine" + +#: wp-admin/includes/class-custom-image-header.php:749 +msgid "This will restore the original header image. You will not be able to restore any customizations." +msgstr "Ceci remettra en place l’image d’entête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations." + +#: wp-admin/includes/class-custom-image-header.php:747 +msgid "Reset Image" +msgstr "Remettre l’image d’origine" + +#: wp-admin/includes/class-custom-image-header.php:732 +msgid "Remove Header Image" +msgstr "Retirer l’image d’entête" + +#: wp-admin/includes/class-custom-image-header.php:731 +msgid "This will remove the header image. You will not be able to restore any customizations." +msgstr "Ceci retirera l’image d’entête. Il ne vous sera pas possible de rétablir vos personnalisations." + +#: wp-admin/includes/class-custom-image-header.php:712 +msgid "Default Images" +msgstr "Images par défaut" + +#: wp-admin/includes/class-wp-comments-list-table.php:810 +#: wp-admin/includes/dashboard.php:785 +msgid "Delete this comment permanently" +msgstr "Supprimer définitivement ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:800 +msgid "Restore this comment from the Trash" +msgstr "Récupérer ce commentaire depuis la corbeille" + +#: wp-admin/includes/meta-boxes.php:851 +msgid "Allow comments" +msgstr "Autoriser les commentaires." + +#: wp-admin/edit-form-advanced.php:395 +msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." +msgstr "Commentaires — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer." + +#. translators: %s: Featured image. +#: wp-admin/edit-form-advanced.php:379 +msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." +msgstr "%s – Vous pouvez associer une image à votre publication, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un entête personnalisé, etc." + +#: wp-admin/edit-form-advanced.php:285 +msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." +msgstr "Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir." + +#: wp-admin/edit.php:276 +msgid "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:" +msgstr "Passer la souris au-dessus d’une ligne de la liste des publications affichera des liens vous permettant de gérer la publication. Vous pouvez lancer les actions suivantes :" + +#: wp-admin/edit.php:267 +msgid "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list." +msgstr "Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur ou autrice d’un article, sa catégorie ou une étiquette." + +#: wp-admin/edit.php:264 +msgid "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab." +msgstr "Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre de publications à afficher par écran à l’aide de l’onglet « Options de l’écran »." + +#: wp-admin/users.php:44 +msgid "You can customize the display of this screen in a number of ways:" +msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :" + +#: wp-admin/plugins.php:806 +msgid "Search installed plugins" +msgstr "Rechercher des extensions installées" + +#: wp-admin/nav-menus.php:836 +msgid "Your theme supports one menu. Select which menu you would like to use." +msgstr "Votre thème peut utiliser un menu. Sélectionnez le menu que vous voudriez utiliser." + +#: wp-admin/nav-menus.php:19 +msgid "Your theme does not support navigation menus or widgets." +msgstr "Le thème actuel n’accepte pas les menus de navigation ni les widgets." + +#: wp-admin/includes/import.php:193 wp-admin/tools.php:48 wp-admin/tools.php:73 +msgid "Categories and Tags Converter" +msgstr "Convertisseur de catégories et étiquettes" + +#: wp-admin/includes/nav-menu.php:584 wp-admin/includes/nav-menu.php:607 +msgid "Most Recent" +msgstr "Les plus récentes" + +#: wp-admin/export.php:224 wp-admin/export.php:276 wp-admin/export.php:321 +msgid "Start date:" +msgstr "Date de début :" + +#: wp-admin/includes/theme-install.php:110 +msgctxt "Theme Installer" +msgid "Tag" +msgstr "Étiquette" + +#: wp-admin/includes/plugin-install.php:330 +msgctxt "Plugin Installer" +msgid "Tag" +msgstr "Étiquette" + +#: wp-admin/includes/media.php:2589 +msgctxt "verb" +msgid "Clear" +msgstr "Effacer" + +#: wp-admin/comment.php:135 +#: wp-admin/includes/class-wp-comments-list-table.php:375 +msgctxt "comment" +msgid "Mark as spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-custom-background.php:327 +msgid "Remove Background Image" +msgstr "Retirer l’image d’arrière-plan" + +#. translators: %s: Post title. +#. translators: %s: Link to post. +#: wp-admin/edit-comments.php:183 wp-admin/edit-comments.php:252 +msgid "Comments on “%s”" +msgstr "Commentaires sur « %s »" + +#: wp-admin/includes/nav-menu.php:1335 +msgid "Show advanced menu properties" +msgstr "Afficher les propriétés avancées du menu" + +#. translators: 1: Plugin version, 2: New version. +#. translators: 1: Theme version, 2: New version. +#: wp-admin/update-core.php:602 wp-admin/update-core.php:780 +msgid "You have version %1$s installed. Update to %2$s." +msgstr "Vous utilisez la version %1$s. Mettez à jour vers la version %2$s." + +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1159 +#: wp-admin/includes/class-wp-debug-data.php:1270 +#: wp-admin/includes/class-wp-debug-data.php:1435 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 +msgid "Enabled" +msgstr "Activé" + +#: wp-admin/includes/class-wp-comments-list-table.php:791 +msgctxt "comment" +msgid "Not Spam" +msgstr "Non indésirable" + +#: wp-admin/includes/class-custom-background.php:342 +msgid "This will restore the original background image. You will not be able to restore any customizations." +msgstr "Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations." + +#: wp-admin/includes/dashboard.php:1552 +msgid "WordPress Blog" +msgstr "Blog WordPress" + +#: wp-admin/users.php:518 +msgid "Remove Users from Site" +msgstr "Supprimer des comptes de ce site" + +#: wp-admin/includes/class-wp-users-list-table.php:315 +#: wp-admin/user-edit.php:464 wp-admin/user-edit.php:466 wp-admin/users.php:127 +msgid "— No role for this site —" +msgstr "— Aucun rôle sur ce site —" + +#: wp-admin/includes/upgrade.php:614 +msgid "New WordPress Site" +msgstr "Nouveau site WordPress" + +#: wp-admin/includes/schema.php:413 +msgid "My Site" +msgstr "Mon site" + +#: wp-admin/includes/post.php:919 +msgid "Sorry, you are not allowed to create posts or drafts on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site." + +#: wp-admin/includes/post.php:917 +msgid "Sorry, you are not allowed to create pages on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site." + +#: wp-admin/includes/plugin.php:516 +msgid "Custom site suspended message." +msgstr "Message personnalisé de site suspendu." + +#: wp-admin/includes/plugin.php:515 +msgid "Custom site inactive message." +msgstr "Message personnalisé de site inactif." + +#: wp-admin/includes/plugin.php:514 +msgid "Custom site deleted message." +msgstr "Message personnalisé de site supprimé." + +#: wp-admin/import.php:78 +msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" +msgstr "Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :" + +#: wp-admin/includes/nav-menu.php:509 wp-admin/includes/nav-menu.php:874 +msgid "No items." +msgstr "Aucune entrée." + +#. translators: %s: Asterisk symbol (*). +#: wp-admin/includes/schema.php:1146 +msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." +msgstr "Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS." + +#. translators: %s: Host name. +#: wp-admin/includes/schema.php:1135 +msgid "The installer attempted to contact a random hostname (%s) on your domain." +msgstr "L’installateur a tenté de contacter un nom d’hôte au hasard (%s) sur votre domaine." + +#: wp-admin/nav-menus.php:285 +msgid "The menu item has been successfully deleted." +msgstr "L’élément du menu a bien été supprimé." + +#: wp-admin/includes/ajax-actions.php:1689 +msgid "Please provide a custom field name." +msgstr "Veuillez saisir un nom pour le champ personnalisé." + +#: wp-admin/includes/class-custom-background.php:372 +msgid "Display Options" +msgstr "Options d’affichage" + +#: wp-admin/includes/class-custom-background.php:323 +#: wp-admin/includes/class-custom-image-header.php:729 +msgid "Remove Image" +msgstr "Retirer l’image" + +#: wp-admin/users.php:738 +msgid "Other users have been removed." +msgstr "Les autres comptes ont été supprimés." + +#: wp-admin/users.php:730 +msgid "You cannot remove the current user." +msgstr "Vous ne pouvez pas supprimer le compte actuellement utilisé." + +#: wp-admin/users.php:569 +msgid "There are no valid users selected for removal." +msgstr "Aucun compte valide n’est sélectionné pour la suppression." + +#: wp-admin/users.php:565 +msgid "Confirm Removal" +msgstr "Confirmer cette action" + +#: wp-admin/users.php:523 +msgid "You have specified these users for removal:" +msgstr "Vous avez choisi de supprimer ces comptes :" + +#: wp-admin/users.php:173 wp-admin/users.php:276 +msgid "User deletion is not allowed from this screen." +msgstr "La suppression d’un compte n’est pas autorisée depuis cet écran." + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:67 +msgid "%s updated successfully." +msgstr "%s a bien été mis à jour." + +#: wp-admin/includes/user.php:552 +msgid "No thanks, do not remind me again" +msgstr "Non, ne pas me relancer à ce sujet" + +#: wp-admin/includes/user.php:547 +msgid "Yes, take me to my profile page" +msgstr "Oui, je veux aller sur mon profil maintenant" + +#: wp-admin/includes/upgrade.php:120 +msgid "Your chosen password." +msgstr "Le mot de passe que vous avez choisi." + +#: wp-admin/edit.php:156 wp-admin/post.php:287 wp-admin/upload.php:317 +msgid "Sorry, you are not allowed to restore this item from the Trash." +msgstr "Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille." + +#: wp-admin/edit.php:123 wp-admin/post.php:250 wp-admin/upload.php:296 +msgid "Sorry, you are not allowed to move this item to the Trash." +msgstr "Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:378 +msgid "%s comment restored from the Trash." +msgid_plural "%s comments restored from the Trash." +msgstr[0] "%s commentaire récupéré depuis la corbeille." +msgstr[1] "%s commentaires récupérés depuis la corbeille." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:366 +msgid "%s comment moved to the Trash." +msgid_plural "%s comments moved to the Trash." +msgstr[0] "%s commentaire déplacé dans la corbeille." +msgstr[1] "%s commentaires déplacés dans la corbeille." + +#: wp-admin/update-core.php:660 +msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." +msgstr "Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes »." + +#: wp-admin/user-new.php:365 +msgid "That user is already a member of this site." +msgstr "Ce compte est déjà membre de ce site." + +#: wp-admin/user-new.php:356 +msgid "User has been added to your site." +msgstr "Le compte a été ajouté à votre site." + +#: wp-admin/user-new.php:353 +msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." +msgstr "L’invitation a été envoyée à l’adresse e-mail liée au compte. La personne concernée devra cliquer sur un lien de confirmation pour être ajoutée à votre site." + +#: wp-admin/update-core.php:493 +msgid "The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”." +msgstr "Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les extensions »." + +#: wp-admin/includes/class-custom-background.php:328 +msgid "This will remove the background image. You will not be able to restore any customizations." +msgstr "Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations." + +#. translators: %s: Network title. +#: wp-admin/includes/class-wp-themes-list-table.php:131 +msgid "Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes." +msgstr "Vous n’avez accès qu’au thème déjà actif. Contactez l’administrateur ou l’administratrice de %s pour obtenir des informations sur l’accès à d’autres thèmes." + +#: wp-admin/includes/file.php:31 +msgid "Tag Template" +msgstr "Modèle pour étiquette" + +#: wp-admin/includes/file.php:28 +msgid "Author Template" +msgstr "Modèle pour les auteurs/autrices" + +#: wp-admin/includes/file.php:55 +msgid "Visual Editor Stylesheet" +msgstr "Feuille de style de l’éditeur visuel" + +#: wp-admin/edit-form-advanced.php:197 +msgid "Page saved." +msgstr "Page enregistrée." + +#. translators: %s: Importer name. +#. translators: %s: Plugin name and version. +#. translators: %s: Plugin name. +#: wp-admin/import.php:210 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:574 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:826 +#: wp-admin/includes/class-wp-plugins-list-table.php:1197 +#: wp-admin/includes/class-wp-plugins-list-table.php:1656 +msgid "More information about %s" +msgstr "Plus d’informations à propos de %s" + +#: wp-admin/user-edit.php:479 +msgid "Grant this user super admin privileges for the Network." +msgstr "Donner les privilèges de super-admin à ce compte pour le réseau." + +#: wp-admin/user-edit.php:206 +msgid "This user has super admin privileges." +msgstr "Ce compte possède les privilèges de super-admin." + +#: wp-admin/install.php:153 wp-admin/user-edit.php:206 +msgid "Important:" +msgstr "Important :" + +#. translators: %s: Theme version. +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-theme-install-list-table.php:321 +#: wp-admin/includes/class-wp-theme-install-list-table.php:478 +#: wp-admin/update-core.php:74 +msgid "Update to version %s" +msgstr "Mettre à jour vers la version %s" + +#: wp-admin/setup-config.php:309 +msgid "Error: \"Table Prefix\" can only contain numbers, letters, and underscores." +msgstr "Erreur : le préfixe de table ne doit contenir que des chiffres, des lettres ou le caractère tiret bas." + +#: wp-admin/user-edit.php:446 +msgid "Usernames cannot be changed." +msgstr "Les identifiants ne peuvent pas être modifiés." + +#: wp-admin/options-reading.php:180 +msgid "items" +msgstr "éléments" + +#: wp-admin/nav-menus.php:322 +msgid "The menu has been successfully deleted." +msgstr "Le menu a bien été supprimé." + +#. translators: Hidden accessibility text. +#: wp-admin/install.php:184 wp-admin/install.php:191 +#: wp-admin/options-reading.php:44 wp-admin/options-reading.php:208 +#: wp-admin/options-reading.php:214 +msgid "Site visibility" +msgstr "Visibilité du site" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:224 +msgid "CSS Classes (optional)" +msgstr "Classes CSS (facultatives)" + +#: wp-admin/includes/nav-menu.php:1337 +msgid "Link Target" +msgstr "Cible du lien" + +#: wp-admin/nav-menus.php:1101 wp-admin/nav-menus.php:1238 +msgid "Save Menu" +msgstr "Enregistrer le menu" + +#. translators: 1: Theme name, 2: Number of the theme, 3: Total number of +#. themes being updated. +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:40 +msgid "Updating Theme %1$s (%2$d/%3$d)" +msgstr "Mise à jour du thème %1$s (%2$d/%3$d)" + +#: wp-admin/includes/schema.php:1150 +msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." +msgstr "Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message." + +#. translators: %s: Error message. +#: wp-admin/includes/schema.php:1140 +msgid "This resulted in an error message: %s" +msgstr "Cela a abouti à ce message d’erreur : %s" + +#: wp-admin/includes/schema.php:1014 +msgid "You must provide a valid email address." +msgstr "Vous devez saisir une adresse de e-mail valide." + +#: wp-admin/includes/schema.php:1003 wp-admin/includes/schema.php:1009 +msgid "The network already exists." +msgstr "Le réseau existe déjà." + +#: wp-admin/includes/schema.php:996 +msgid "You must provide a name for your network of sites." +msgstr "Vous devez fournir un nom pour votre réseau de sites." + +#: wp-admin/includes/schema.php:993 +msgid "You must provide a domain name." +msgstr "Vous devez fournir un nom de domaine." + +#: wp-admin/includes/user.php:541 +msgid "Notice:" +msgstr "Avertissement :" + +#: wp-admin/edit-form-advanced.php:572 +msgid "Get Shortlink" +msgstr "Obtenir le lien court" + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:65 +msgid "The update of %s failed." +msgstr "La mise à jour de %s a échoué." + +#. translators: 1: Plugin name, 2: Number of the plugin, 3: Total number of +#. plugins being updated. +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:39 +msgid "Updating Plugin %1$s (%2$d/%3$d)" +msgstr "Mise à jour de l’extension %1$s (%2$d/%3$d)" + +#: wp-admin/includes/upgrade.php:141 +msgid "The password you chose during installation." +msgstr "Le mot de passe que vous avez choisi pendant l’installation." + +#: wp-admin/includes/upgrade.php:124 +msgid "User already exists. Password inherited." +msgstr "Le compte existe déjà et a hérité du mot de passe." + +#: wp-admin/includes/class-wp-automatic-updater.php:529 +#: wp-admin/includes/update-core.php:1696 wp-admin/update-core.php:919 +msgid "WordPress updated successfully." +msgstr "WordPress a bien été mis à jour." + +#: wp-admin/update-core.php:872 +msgid "Update WordPress" +msgstr "Mettre à jour WordPress" + +#: wp-admin/plugins.php:159 wp-admin/update-core.php:496 +#: wp-admin/update-core.php:629 wp-admin/update-core.php:1209 +#: wp-admin/update-core.php:1214 +msgid "Update Plugins" +msgstr "Mettre à jour les extensions" + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/update-core.php:113 wp-admin/upgrade.php:119 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s." + +#: wp-admin/update-core.php:987 wp-admin/update-core.php:1067 +msgid "WordPress Updates" +msgstr "Mises à jour de WordPress" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:185 +msgid "Edit menu item" +msgstr "Modifier un élément du menu" + +#: wp-admin/about.php:322 +msgid "Go to Dashboard" +msgstr "Aller sur le tableau de bord" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:549 +msgid "Drop-in (%s)" +msgid_plural "Drop-ins (%s)" +msgstr[0] "Avancée (%s)" +msgstr[1] "Avancées (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:541 +msgid "Must-Use (%s)" +msgid_plural "Must-Use (%s)" +msgstr[0] "Indispensable (%s)" +msgstr[1] "Indispensables (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:785 +msgid "Inactive:" +msgstr "Inactif :" + +#: wp-admin/plugins.php:411 +msgid "Yes, delete these files and data" +msgstr "Oui, supprimer ces fichiers et données" + +#: wp-admin/plugins.php:393 +msgid "Are you sure you want to delete these files and data?" +msgstr "Confirmez-vous la suppression de ces fichiers et données ?" + +#: wp-admin/plugins.php:355 +msgid "You are about to remove the following plugin:" +msgstr "Vous êtes sur le point de supprimer l’extension suivante :" + +#: wp-admin/plugins.php:343 +msgid "Delete Plugin" +msgstr "Supprimer l’extension" + +#: wp-admin/options-general.php:454 +msgid "This timezone does not observe daylight saving time." +msgstr "Ce fuseau horaire n’a pas d’heure d’été." + +#: wp-admin/options-general.php:431 +msgid "This timezone is currently in daylight saving time." +msgstr "Ce fuseau horaire est actuellement à l’heure d’été." + +#: wp-admin/options-general.php:267 wp-admin/network/settings.php:170 +msgid "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." +msgstr "Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée." + +#: wp-admin/includes/nav-menu.php:592 wp-admin/includes/nav-menu.php:964 +msgid "View All" +msgstr "Tout voir" + +#: wp-admin/nav-menus.php:446 wp-admin/nav-menus.php:475 +msgid "Please enter a valid menu name." +msgstr "Veuillez saisir un nom de menu valide." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/install.php:269 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s." + +#: wp-admin/includes/plugin.php:513 +msgid "Executed before Multisite is loaded." +msgstr "Exécuté avant que la fonctionnalité multisites ne soit chargée." + +#: wp-admin/includes/plugin.php:507 +msgid "External object cache." +msgstr "Cache d’objet externe." + +#: wp-admin/includes/plugin.php:506 +msgid "Custom maintenance message." +msgstr "Message personnalisé pour la maintenance." + +#: wp-admin/includes/plugin.php:504 +msgid "Custom database error message." +msgstr "Message personnalisé pour l’erreur de base de données." + +#: wp-admin/includes/plugin.php:503 +msgid "Custom database class." +msgstr "Classe personnalisée de connexion à la base de données." + +#: wp-admin/includes/plugin.php:502 +msgid "Advanced caching plugin." +msgstr "Extension de cache avancée." + +#: wp-admin/includes/file.php:938 +msgid "File is empty. Please upload something more substantial." +msgstr "Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel." + +#: wp-admin/edit-comments.php:410 +msgid "This comment is already marked as spam." +msgstr "Ce commentaire est déjà marqué comme indésirable." + +#: wp-admin/edit-comments.php:406 +msgid "View Trash" +msgstr "Voir la corbeille" + +#: wp-admin/edit-comments.php:403 +msgid "This comment is already in the Trash." +msgstr "Ce commentaire est déjà marqué comme indésirable." + +#: wp-admin/edit-comments.php:396 +msgid "This comment is already approved." +msgstr "Ce commentaire est déjà approuvé." + +#: wp-admin/comment.php:161 +msgid "This comment is currently in the Trash." +msgstr "Ce commentaire est actuellement dans la corbeille." + +#: wp-admin/comment.php:158 +msgid "This comment is currently marked as spam." +msgstr "Ce commentaire est actuellement marqué comme indésirable." + +#: wp-admin/comment.php:155 +msgid "This comment is currently approved." +msgstr "Ce commentaire est actuellement approuvé." + +#: wp-admin/comment.php:102 +msgid "Moderate Comment" +msgstr "Modérer le commentaire" + +#: wp-admin/export.php:196 +msgid "Categories:" +msgstr "Catégories :" + +#: wp-admin/widgets-form.php:113 +msgid "Drag widgets here to remove them from the sidebar but keep their settings." +msgstr "Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels." + +#. translators: Hidden accessibility text. +#: wp-admin/widgets-form.php:444 wp-admin/widgets-form.php:449 +msgid "Available Widgets" +msgstr "Widgets disponibles" + +#: wp-admin/widgets-form.php:368 +msgid "Error in displaying the widget settings form." +msgstr "Une erreur est survenue lors de l’affichage du formulaire de réglage du widget." + +#: wp-admin/includes/misc.php:1365 wp-admin/includes/post.php:2151 +#: wp-admin/widgets-form.php:367 +msgid "Error while saving." +msgstr "Erreur lors de la sauvegarde." + +#: wp-admin/widgets-form.php:363 wp-admin/js/inline-edit-post.js:525 +#: wp-admin/js/inline-edit-tax.js:227 +msgid "Changes saved." +msgstr "Modifications enregistrées." + +#: wp-admin/widgets-form.php:345 +msgid "Save Widget" +msgstr "Enregistrer le widget" + +#: wp-admin/widgets-form.php:298 +msgid "Select both the sidebar for this widget and the position of the widget in that sidebar." +msgstr "Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale." + +#. translators: %s: Widget name. +#: wp-admin/widgets-form.php:283 +msgid "Widget %s" +msgstr "Widget %s" + +#: wp-admin/widgets-form.php:110 +msgid "Inactive Widgets" +msgstr "Widgets désactivés" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-users-list-table.php:309 +#: wp-admin/includes/class-wp-users-list-table.php:313 +msgid "Change role to…" +msgstr "Changer de rôle pour…" + +#. translators: 1: User role name, 2: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:231 +#: wp-admin/includes/class-wp-users-list-table.php:249 +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: wp-admin/users.php:710 +msgid "Other users have been deleted." +msgstr "Les autres comptes ont été supprimés." + +#: wp-admin/users.php:702 +msgid "You cannot delete the current user." +msgstr "Vous ne pouvez pas supprimer le compte en cours d’utilisation." + +#: wp-admin/users.php:692 +msgid "Other user roles have been changed." +msgstr "Les rôles des autres comptes ont été modifiés." + +#: wp-admin/users.php:684 +msgid "The current user’s role must have user editing capabilities." +msgstr "Le compte actuel doit avoir un rôle lui permettant de modifier les permissions des comptes." + +#: wp-admin/users.php:629 +msgid "New user created." +msgstr "Le nouveau compte a été créé." + +#: wp-admin/users.php:448 +msgid "There are no valid users selected for deletion." +msgstr "Aucun compte valide n’est sélectionné pour la suppression." + +#: wp-admin/users.php:340 +msgid "Delete Users" +msgstr "Supprimer des comptes" + +#: wp-admin/user-new.php:486 wp-admin/user-new.php:653 +msgid "Skip Confirmation Email" +msgstr "Passer la confirmation par e-mail" + +#: wp-admin/user-new.php:350 +msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." +msgstr "Envoi d’un message d’invitation au nouveau compte. Un lien de confirmation devra d’abord être cliqué avant la création du compte." + +#. translators: Joining confirmation notification email subject. %s: Site +#. title. +#: wp-admin/user-new.php:140 +msgid "[%s] Joining Confirmation" +msgstr "[%s] Confirmation d’inscription" + +#: wp-admin/user-edit.php:946 +msgid "Update User" +msgstr "Mettre à jour le compte" + +#: wp-admin/user-edit.php:946 +msgid "Update Profile" +msgstr "Mettre à jour le profil" + +#: wp-admin/user-edit.php:914 +msgid "Additional Capabilities" +msgstr "Permissions supplémentaires" + +#: wp-admin/user-edit.php:700 +msgid "Type your new password again." +msgstr "Veuillez saisir une deuxième fois votre mot de passe." + +#: wp-admin/user-edit.php:675 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: wp-admin/user-edit.php:619 +msgid "Share a little biographical information to fill out your profile. This may be shown publicly." +msgstr "Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement." + +#: wp-admin/user-edit.php:617 +msgid "Biographical Info" +msgstr "Renseignements biographiques" + +#: wp-admin/user-edit.php:613 +msgid "About the user" +msgstr "À propos du compte" + +#: wp-admin/user-edit.php:613 +msgid "About Yourself" +msgstr "À propos de vous" + +#: wp-admin/user-edit.php:542 +msgid "Contact Info" +msgstr "Informations de contact" + +#: wp-admin/user-edit.php:504 +msgid "Display name publicly as" +msgstr "Nom à afficher publiquement" + +#: wp-admin/user-edit.php:498 +msgid "Nickname" +msgstr "Pseudonyme" + +#: wp-admin/user-edit.php:493 wp-admin/user-new.php:556 +msgid "Last Name" +msgstr "Nom" + +#: wp-admin/user-edit.php:488 wp-admin/user-new.php:552 +msgid "First Name" +msgstr "Prénom" + +#: wp-admin/user-edit.php:362 +msgid "Enable keyboard shortcuts for comment moderation." +msgstr "Activer les raccourcis clavier pour la modération de commentaires." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/misc.php:1028 wp-admin/user-edit.php:336 +msgid "Admin Color Scheme" +msgstr "Couleurs de l’interface d’administration" + +#: wp-admin/user-edit.php:304 +msgid "Disable the visual editor when writing" +msgstr "Désactiver l’éditeur visuel pour écrire" + +#: wp-admin/user-edit.php:301 +msgid "Visual Editor" +msgstr "Éditeur visuel" + +#: wp-admin/user-edit.php:296 +msgid "Personal Options" +msgstr "Options personnelles" + +#: wp-admin/user-edit.php:219 +msgid "User updated." +msgstr "Compte mis à jour." + +#: wp-admin/includes/user.php:597 +msgid "Always use https when visiting the admin" +msgstr "Toujours utiliser HTTPS lors de l’utilisation de l’administration" + +#: wp-admin/includes/user.php:596 +msgid "Use https" +msgstr "Utiliser https" + +#: wp-admin/user-new.php:359 wp-admin/users.php:641 +#: wp-admin/network/user-new.php:94 +msgid "Edit user" +msgstr "Modifier le compte" + +#: wp-admin/upload.php:102 wp-admin/upload.php:123 +msgid "Media file restored from the Trash." +msgstr "Fichier média récupéré depuis la corbeille." + +#: wp-admin/upload.php:79 wp-admin/upload.php:118 +msgid "Media file moved to the Trash." +msgstr "Fichier média déplacé dans la corbeille." + +#: wp-admin/upload.php:62 wp-admin/upload.php:116 +msgid "Media file permanently deleted." +msgstr "Fichier média définitivement supprimé." + +#: wp-admin/edit-tags.php:137 wp-admin/options.php:85 +msgid "Sorry, you are not allowed to delete these items." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ces éléments." + +#: wp-admin/upgrade.php:93 +msgid "Your WordPress database is already up to date!" +msgstr "Votre base de données WordPress est déjà à jour !" + +#. translators: %s: File name. +#: wp-admin/update.php:323 +msgid "Installing theme from uploaded file: %s" +msgstr "Installation du thème à partir du fichier téléversé : %s" + +#: wp-admin/theme-install.php:59 wp-admin/theme-install.php:177 +#: wp-admin/theme-install.php:179 wp-admin/update.php:316 +msgid "Upload Theme" +msgstr "Téléverser un thème" + +#. translators: %s: Theme name and version. +#: wp-admin/update.php:291 +msgid "Installing Theme: %s" +msgstr "Installation du thème : %s" + +#. translators: %s: File name. +#: wp-admin/update.php:171 +msgid "Installing plugin from uploaded file: %s" +msgstr "Installation de l’extension à partir du fichier téléversé : %s" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:122 +#: wp-admin/plugin-install.php:154 wp-admin/update.php:164 +msgid "Upload Plugin" +msgstr "Téléverser une extension" + +#. translators: %s: Plugin name and version. +#: wp-admin/update.php:135 +msgid "Installing Plugin: %s" +msgstr "Extension en cours d’installation : %s" + +#: wp-admin/update.php:96 +msgid "Plugin failed to reactivate due to a fatal error." +msgstr "L’extension n’a pu être réactivée suite à une erreur fatale." + +#: wp-admin/update.php:92 +msgid "Plugin reactivated successfully." +msgstr "L’extension a bien été réactivée." + +#: wp-admin/update.php:90 +msgid "Plugin Reactivation" +msgstr "Réactivation d’extension" + +#: wp-admin/includes/class-wp-automatic-updater.php:526 +#: wp-admin/update-core.php:913 wp-admin/js/updates.js:863 +#: wp-admin/js/updates.js:1891 +msgid "Installation failed." +msgstr "Échec de l’installation" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:532 wp-admin/update-core.php:541 +msgid "Compatibility with WordPress %s: Unknown" +msgstr "Compatibilité avec WordPress %s : inconnue" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:529 wp-admin/update-core.php:538 +msgid "Compatibility with WordPress %s: 100%% (according to its author)" +msgstr "Compatibilité avec WordPress %s : 100%% (selon l’auteur ou l’autrice)" + +#: wp-admin/update-core.php:211 +msgid "Hide hidden updates" +msgstr "Masquer les mises à jour cachées" + +#: wp-admin/update-core.php:210 wp-admin/update-core.php:229 +msgid "Show hidden updates" +msgstr "Afficher les mises à jour cachées" + +#: wp-admin/update-core.php:177 +msgid "Bring back this update" +msgstr "Réafficher cette mise à jour" + +#: wp-admin/update-core.php:175 +msgid "Hide this update" +msgstr "Masquer cette mise à jour" + +#: wp-admin/themes.php:675 +msgid "Broken Themes" +msgstr "Thèmes endommagés" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-themes-list-table.php:234 +msgid "" +"You are about to delete this theme '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer le thème « %s ».\n" +"« Annuler » pour arrêter, « OK » pour supprimer." + +#: wp-admin/themes.php:292 wp-admin/network/themes.php:412 +msgid "Theme deleted." +msgstr "Thème supprimé." + +#: wp-admin/theme-editor.php:252 +msgid "Select theme to edit:" +msgstr "Sélectionnez le thème à modifier :" + +#: wp-admin/theme-editor.php:22 +msgid "Edit Themes" +msgstr "Modifier les thèmes" + +#: wp-admin/includes/theme.php:1056 wp-admin/themes.php:1249 +msgid "Tags:" +msgstr "Étiquettes :" + +#. translators: %s: Post title. +#: wp-admin/revision.php:111 +msgid "Compare Revisions of “%s”" +msgstr "Comparer les révisions de « %s »" + +#: wp-admin/post.php:143 +msgid "You cannot edit this item because it is in the Trash. Please restore it and try again." +msgstr "Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Sortez-l’en, puis réessayez." + +#: wp-admin/edit-tags.php:173 wp-admin/includes/class-wp-screen.php:297 +#: wp-admin/includes/post.php:2157 wp-admin/media-upload.php:47 +#: wp-admin/post.php:20 wp-admin/post.php:47 wp-admin/post.php:139 +#: wp-admin/term.php:43 +msgid "Sorry, you are not allowed to edit this item." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier cet élément." + +#: wp-admin/edit-tags.php:160 wp-admin/edit-tags.php:180 wp-admin/post.php:127 +#: wp-admin/term.php:31 +msgid "You attempted to edit an item that does not exist. Perhaps it was deleted?" +msgstr "Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?" + +#: wp-admin/includes/class-wp-plugins-list-table.php:427 +msgid "No plugins found." +msgstr "Aucune extension trouvée." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:533 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Désactivée (%s)" +msgstr[1] "Désactivées (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:525 +msgid "Recently Active (%s)" +msgid_plural "Recently Active (%s)" +msgstr[0] "Récemment désactivée (%s)" +msgstr[1] "Récemment désactivées (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:517 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activée (%s)" +msgstr[1] "Activées (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:508 +msgctxt "plugins" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Toutes (%s)" +msgstr[1] "Toutes (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:668 +msgid "Clear List" +msgstr "Vider la liste" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1209 +msgid "Visit plugin site" +msgstr "Aller sur le site de l’extension" + +#. translators: %s: Error message. +#: wp-admin/plugins.php:716 +msgid "Plugin could not be deleted due to an error: %s" +msgstr "L’extension n’a pu être supprimée suite à une erreur fatale : %s" + +#: wp-admin/plugins.php:682 +msgid "Plugin could not be activated because it triggered a fatal error." +msgstr "L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale." + +#. translators: %s: WP_PLUGIN_DIR constant value. +#: wp-admin/plugins.php:582 +msgid "If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." +msgstr "Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée." + +#: wp-admin/plugins.php:565 +msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." +msgstr "Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici." + +#: wp-admin/plugins.php:419 +msgid "No, return me to the plugin list" +msgstr "Non, retourner à la liste des extensions" + +#: wp-admin/plugins.php:411 +msgid "Yes, delete these files" +msgstr "Oui, supprimer ces fichiers" + +#: wp-admin/plugins.php:395 +msgid "Are you sure you want to delete these files?" +msgstr "Confirmez-vous la suppression de ces fichiers ?" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:113 +msgctxt "Plugin Installer" +msgid "Popular" +msgstr "Populaires" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:112 +msgctxt "Plugin Installer" +msgid "Featured" +msgstr "Mises en avant" + +#: wp-admin/plugin-editor.php:327 wp-admin/theme-editor.php:356 +msgid "Update File" +msgstr "Mettre à jour le fichier" + +#: wp-admin/plugin-editor.php:306 wp-admin/theme-editor.php:330 +msgid "Documentation:" +msgstr "Documentation :" + +#: wp-admin/plugin-editor.php:276 +msgid "Plugin Files" +msgstr "Fichiers de l’extension" + +#: wp-admin/plugin-editor.php:253 +msgid "Select plugin to edit:" +msgstr "Sélectionnez l’extension à modifier :" + +#: wp-admin/includes/ajax-actions.php:4914 wp-admin/plugin-editor.php:199 +#: wp-admin/theme-editor.php:193 +msgid "File edited successfully." +msgstr "Le fichier a bien été modifié." + +#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:128 +msgid "Files of this type are not editable." +msgstr "Les fichiers de ce type ne sont pas éditables." + +#: wp-admin/plugin-editor.php:22 +msgid "Edit Plugins" +msgstr "Modifier les extensions" + +#: wp-admin/options.php:382 +msgid "All Settings" +msgstr "Toutes les options" + +#: wp-admin/options-writing.php:45 wp-admin/options-writing.php:219 +msgid "Update Services" +msgstr "Services de mise à jour" + +#: wp-admin/options-writing.php:190 +msgid "Default Mail Category" +msgstr "Catégorie par défaut des articles envoyés par e-mail" + +#: wp-admin/options-writing.php:170 +msgid "Login Name" +msgstr "Identifiant" + +#: wp-admin/options-writing.php:165 +msgid "Port" +msgstr "Port" + +#: wp-admin/options-writing.php:163 +msgid "Mail Server" +msgstr "Serveur de messagerie" + +#. translators: 1, 2, 3: Examples of random email addresses. +#: wp-admin/options-writing.php:153 +msgid "To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s." +msgstr "Pour publier par e-mail sur WordPress, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaines aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s." + +#: wp-admin/options-writing.php:148 +msgid "Post via email" +msgstr "Publier par e-mail" + +#: wp-admin/options-writing.php:120 +msgid "Default Link Category" +msgstr "Catégorie par défaut des liens" + +#: wp-admin/options-writing.php:86 +msgid "Default Post Category" +msgstr "Catégorie par défaut des articles" + +#: wp-admin/options-writing.php:81 +msgid "WordPress should correct invalidly nested XHTML automatically" +msgstr "WordPress doit automatiquement corriger l’imbrication XHTML erronée" + +#: wp-admin/options-writing.php:80 +msgid "Convert emoticons like :-) and :-P to graphics on display" +msgstr "Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage" + +#. translators: Hidden accessibility text. +#: wp-admin/options-writing.php:71 wp-admin/options-writing.php:75 +msgid "Formatting" +msgstr "Mise en forme" + +#: wp-admin/options-writing.php:17 +msgid "Writing Settings" +msgstr "Réglages d’écriture" + +#: wp-admin/options-reading.php:68 +msgid "Encoding for pages and feeds" +msgstr "Codage pour les pages et les flux RSS" + +#: wp-admin/options-reading.php:192 +msgid "Full text" +msgstr "Le texte complet" + +#: wp-admin/options-reading.php:179 +msgid "Syndication feeds show the most recent" +msgstr "Les flux de syndication affichent les derniers" + +#: wp-admin/options-reading.php:175 +msgid "posts" +msgstr "articles" + +#: wp-admin/options-reading.php:173 +msgid "Blog pages show at most" +msgstr "Les pages du site doivent afficher au plus" + +#: wp-admin/options-reading.php:150 +msgid "Warning: these pages should not be the same!" +msgstr "Avertissement : ces pages ne devraient pas être les mêmes !" + +#. translators: %s: Select field to choose the page for posts. +#: wp-admin/options-reading.php:133 +msgid "Posts page: %s" +msgstr "Page des articles : %s" + +#. translators: %s: URL to Pages screen. +#: wp-admin/options-reading.php:105 +msgid "A static page (select below)" +msgstr "Une page statique (choisir ci-dessous)" + +#: wp-admin/options-reading.php:17 +msgid "Reading Settings" +msgstr "Réglages de lecture" + +#: wp-admin/options-privacy.php:191 +msgid "Privacy Settings" +msgstr "Réglages de confidentialité" + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:521 +msgid "If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created." +msgstr "Si vous rendez temporairement le dossier racine accessible en écriture pour que WordPress y génère directement le fichier %s, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:489 +msgid "If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved." +msgstr "Si vous rendez le fichier %s accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées." + +#: wp-admin/options-permalink.php:439 +msgid "Tag base" +msgstr "Préfixe des étiquettes" + +#. translators: Prefix for category permalinks. +#: wp-admin/options-permalink.php:427 +msgid "Category base" +msgstr "Préfixe des catégories" + +#: wp-admin/options-permalink.php:412 +msgid "Optional" +msgstr "Facultatif" + +#: wp-admin/options-permalink.php:365 +msgid "Custom Structure" +msgstr "Structure personnalisée" + +#: wp-admin/options-permalink.php:264 +msgid "Numeric" +msgstr "Numérique" + +#: wp-admin/options-permalink.php:258 +msgid "Month and name" +msgstr "Mois et titre" + +#: wp-admin/options-permalink.php:252 +msgid "Day and name" +msgstr "Date et titre" + +#: wp-admin/options-permalink.php:176 +msgid "Permalink structure updated." +msgstr "Structure des permaliens enregistrée." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:189 +msgid "Permalink structure updated. Remove write access on %s file now!" +msgstr "La structure des permaliens a été mise à jour. Retirez les droits d’accès au fichier %s dès maintenant !" + +#: wp-admin/options-permalink.php:17 wp-admin/options-permalink.php:33 +msgid "Permalink Settings" +msgstr "Réglages des permaliens" + +#: wp-admin/options-media.php:163 +msgid "Organize my uploads into month- and year-based folders" +msgstr "Organiser mes téléversements dans des dossiers mensuels et annuels" + +#: wp-admin/options-media.php:152 +msgid "Configuring this is optional. By default, it should be blank." +msgstr "Ce réglage est facultatif. Par défaut, ce champ devrait être vide." + +#: wp-admin/options-media.php:150 +msgid "Full URL path to files" +msgstr "Adresse web complète pour les fichiers" + +#: wp-admin/options-media.php:138 +msgid "Store uploads in this folder" +msgstr "Stocker les téléversements dans ce dossier" + +#: wp-admin/options-media.php:126 +msgid "Uploading Files" +msgstr "Téléversement des médias" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:95 wp-admin/options-media.php:99 +msgid "Large size" +msgstr "Grande taille" + +#: wp-admin/options-media.php:89 wp-admin/options-media.php:105 +msgid "Max Height" +msgstr "Hauteur maximale" + +#: wp-admin/options-media.php:86 wp-admin/options-media.php:102 +msgid "Max Width" +msgstr "Largeur maximale" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:79 wp-admin/options-media.php:83 +msgid "Medium size" +msgstr "Taille moyenne" + +#: wp-admin/options-media.php:74 +msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" +msgstr "Recadrer les images pour parvenir aux dimensions exactes (par défaut, les miniatures sont proportionnelles)" + +#. translators: Hidden accessibility text. +#: wp-admin/options-media.php:60 wp-admin/options-media.php:64 +msgid "Thumbnail size" +msgstr "Taille des miniatures" + +#: wp-admin/options-media.php:55 +msgid "Image sizes" +msgstr "Tailles des images" + +#: wp-admin/options-media.php:17 +msgid "Media Settings" +msgstr "Réglages des médias" + +#: wp-admin/options-general.php:565 +msgid "Week Starts On" +msgstr "La semaine débute le" + +#: wp-admin/options-general.php:498 wp-admin/options-general.php:546 +msgid "Custom:" +msgstr "Personnalisé :" + +#: wp-admin/options-general.php:433 +msgid "This timezone is currently in standard time." +msgstr "Ce fuseau horaire est actuellement à l’heure d’hiver." + +#: wp-admin/includes/class-wp-debug-data.php:185 +#: wp-admin/options-general.php:383 +msgid "Timezone" +msgstr "Fuseau horaire" + +#: wp-admin/options-general.php:308 +msgid "New User Default Role" +msgstr "Rôle par défaut de tout nouveau compte" + +#: wp-admin/options-general.php:303 +msgid "Anyone can register" +msgstr "Tout le monde peut s’inscrire" + +#. translators: Hidden accessibility text. +#: wp-admin/options-general.php:295 wp-admin/options-general.php:299 +msgid "Membership" +msgstr "Inscription" + +#: wp-admin/options-general.php:20 +msgid "General Settings" +msgstr "Réglages généraux" + +#: wp-admin/options-discussion.php:309 +msgid "MonsterID (Generated)" +msgstr "MonsterID (généré)" + +#: wp-admin/options-discussion.php:308 +msgid "Wavatar (Generated)" +msgstr "Wavatar (généré)" + +#: wp-admin/options-discussion.php:307 +msgid "Identicon (Generated)" +msgstr "Identicon (généré)" + +#: wp-admin/options-discussion.php:306 +msgid "Gravatar Logo" +msgstr "Logo Gravatar" + +#: wp-admin/options-discussion.php:305 +msgid "Blank" +msgstr "Vide" + +#: wp-admin/options-discussion.php:299 +msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address." +msgstr "Les comptes n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse e-mail." + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:279 +msgid "X — Even more mature than above" +msgstr "X — Réservés aux adultes" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:277 +msgid "R — Intended for adult audiences above 17" +msgstr "R — Réservés aux personnes de plus de 17 ans" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:275 +msgid "PG — Possibly offensive, usually for audiences 13 and above" +msgstr "PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:273 +msgid "G — Suitable for all audiences" +msgstr "G — Visibles par tous" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:262 wp-admin/options-discussion.php:266 +msgid "Maximum Rating" +msgstr "Classement maximal" + +#: wp-admin/options-discussion.php:257 +msgid "Show Avatars" +msgstr "Afficher les avatars" + +#: wp-admin/options-discussion.php:253 +msgid "Avatar Display" +msgstr "Affichage des avatars" + +#: wp-admin/options-discussion.php:237 +msgid "Avatars" +msgstr "Avatars" + +#: wp-admin/options-discussion.php:228 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son e-mail, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress »." + +#: wp-admin/options-discussion.php:214 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, nom d’auteur ou d’autrice, URL, e-mail, adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress »." + +#. translators: %s: Number of links. +#: wp-admin/options-discussion.php:208 +msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" +msgstr "Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:197 wp-admin/options-discussion.php:201 +msgid "Comment Moderation" +msgstr "Modération de commentaires" + +#: wp-admin/options-discussion.php:193 +msgid "Comment author must have a previously approved comment" +msgstr "L’auteur ou l’autrice d’un commentaire doit avoir déjà au moins un commentaire approuvé" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:182 wp-admin/options-discussion.php:186 +msgid "Before a comment appears" +msgstr "Avant la publication d’un commentaire" + +#: wp-admin/options-discussion.php:178 +msgid "A comment is held for moderation" +msgstr "Un commentaire est en attente de modération" + +#: wp-admin/options-discussion.php:174 +msgid "Anyone posts a comment" +msgstr "Un nouveau commentaire est publié" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:165 wp-admin/options-discussion.php:169 +msgid "Email me whenever" +msgstr "M’envoyer un message lorsque" + +#: wp-admin/options-discussion.php:158 +msgid "newer" +msgstr "récent" + +#: wp-admin/options-discussion.php:157 +msgid "older" +msgstr "ancien" + +#: wp-admin/options-discussion.php:81 +msgid "Users must be registered and logged in to comment" +msgstr "Un compte doit être inscrit et connecté pour publier des commentaires" + +#: wp-admin/options-discussion.php:77 +msgid "Comment author must fill out name and email" +msgstr "L’auteur ou l’autrice d’un commentaire doit renseigner son nom et son adresse e-mail" + +#. translators: Hidden accessibility text. +#: wp-admin/options-discussion.php:70 wp-admin/options-discussion.php:74 +msgid "Other comment settings" +msgstr "Autres réglages des commentaires" + +#: wp-admin/edit-form-advanced.php:400 wp-admin/options-discussion.php:16 +msgid "Discussion Settings" +msgstr "Réglages des commentaires" + +#: wp-admin/includes/class-wp-users-list-table.php:158 +#: wp-admin/includes/deprecated.php:579 +#: wp-admin/includes/class-wp-ms-users-list-table.php:125 +msgid "No users found." +msgstr "Aucun compte trouvé." + +#: wp-admin/update-core.php:672 wp-admin/update-core.php:805 +#: wp-admin/update-core.php:1250 wp-admin/update-core.php:1255 +#: wp-admin/network/themes.php:85 +msgid "Update Themes" +msgstr "Mettre à jour les thèmes" + +#: wp-admin/my-sites.php:139 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:841 +#: wp-admin/network/site-info.php:146 wp-admin/network/site-settings.php:95 +#: wp-admin/network/site-themes.php:181 wp-admin/network/site-users.php:226 +msgid "Visit" +msgstr "Visiter" + +#: wp-admin/includes/revision.php:97 +msgid "Removed" +msgstr "Retiré" + +#: wp-admin/ms-delete-site.php:13 wp-admin/my-sites.php:13 +#: wp-admin/network/admin.php:17 +msgid "Multisite support is not enabled." +msgstr "Le support multisites n’est pas activé." + +#: wp-admin/menu.php:394 +msgid "Permalinks" +msgstr "Permaliens" + +#: wp-admin/about.php:53 wp-admin/contribute.php:37 wp-admin/credits.php:40 +#: wp-admin/freedoms.php:43 wp-admin/menu.php:395 +#: wp-admin/options-privacy.php:22 wp-admin/options-privacy.php:157 +#: wp-admin/privacy-policy-guide.php:40 wp-admin/privacy.php:13 +#: wp-admin/privacy.php:24 wp-admin/privacy.php:37 +msgid "Privacy" +msgstr "Confidentialité" + +#: wp-admin/menu.php:391 +msgid "Reading" +msgstr "Lecture" + +#: wp-admin/menu.php:390 +msgid "Writing" +msgstr "Écriture" + +#: wp-admin/menu.php:389 +msgctxt "settings screen" +msgid "General" +msgstr "Général" + +#: wp-admin/menu.php:325 wp-admin/menu.php:337 wp-admin/menu.php:340 +#: wp-admin/user-edit.php:41 wp-admin/user/menu.php:19 +msgid "Profile" +msgstr "Profil" + +#. translators: %s: Number of comments. +#: wp-admin/menu.php:101 +msgid "Comments %s" +msgstr "Commentaires %s" + +#: wp-admin/menu.php:72 +msgid "Library" +msgstr "Médiathèque" + +#: wp-admin/media-new.php:43 +msgid "Upload New Media" +msgstr "Téléverser un média" + +#: wp-admin/maint/repair.php:187 +msgid "Repair and Optimize Database" +msgstr "Réparer et optimiser la base de données" + +#: wp-admin/maint/repair.php:185 +msgid "Repair Database" +msgstr "Réparer la base de données" + +#. translators: %s: URL to "Fixing WordPress" forum. +#: wp-admin/maint/repair.php:161 +msgid "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance." +msgstr "Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations." + +#: wp-admin/maint/repair.php:20 +msgid "WordPress › Database Repair" +msgstr "WordPress > Réparation de la base de données" + +#: wp-admin/link.php:120 +msgid "Link not found." +msgstr "Lien non trouvé." + +#: wp-admin/includes/class-wp-links-list-table.php:82 +msgid "No links found." +msgstr "Aucun lien trouvé." + +#: wp-admin/link-manager.php:139 +msgid "Search Links" +msgstr "Rechercher des liens" + +#. translators: %s: Number of links. +#: wp-admin/link-manager.php:124 +msgid "%s link deleted." +msgid_plural "%s links deleted." +msgstr[0] "%s lien supprimé." +msgstr[1] "%s liens supprimés." + +#: wp-admin/install.php:452 +msgid "Success!" +msgstr "Quel succès !" + +#: wp-admin/install.php:396 +msgid "Please provide the following information. Do not worry, you can always change these settings later." +msgstr "Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard." + +#: wp-admin/install.php:395 +msgid "Information needed" +msgstr "Informations nécessaires" + +#: wp-admin/install.php:217 +msgid "Install WordPress" +msgstr "Installer WordPress" + +#: wp-admin/install.php:181 +msgid "Double-check your email address before continuing." +msgstr "Vérifiez bien cette adresse e-mail avant de continuer." + +#: wp-admin/install.php:179 +msgid "Your Email" +msgstr "Votre e-mail" + +#: wp-admin/install.php:122 +msgid "User(s) already exists." +msgstr "Le compte existe déjà." + +#: wp-admin/install.php:73 +msgid "WordPress › Installation" +msgstr "WordPress » Installation" + +#: wp-admin/includes/user.php:207 +msgid "Error: Please enter an email address." +msgstr "Erreur : veuillez saisir une adresse e-mail." + +#: wp-admin/includes/user.php:178 +msgid "Error: Passwords may not contain the character \"\\\"." +msgstr "Erreur : le mot de passe ne doit pas contenir le caractère « \\ »." + +#: wp-admin/includes/user.php:173 +msgid "Error: Please enter a password." +msgstr "Erreur : veuillez saisir un mot de passe." + +#. translators: Default post slug. +#: wp-admin/includes/upgrade.php:249 wp-admin/includes/upgrade.php:529 +msgctxt "Default post slug" +msgid "hello-world" +msgstr "bonjour-tout-le-monde" + +#: wp-admin/includes/upgrade.php:247 +msgid "Hello world!" +msgstr "Bonjour tout le monde !" + +#. translators: %s: Site link. +#. translators: First post content. %s: Site link. +#: wp-admin/includes/schema.php:1273 wp-admin/includes/upgrade.php:220 +msgid "Welcome to %s. This is your first post. Edit or delete it, then start writing!" +msgstr "Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !" + +#. translators: Default category slug. +#: wp-admin/includes/upgrade.php:184 +msgctxt "Default category slug" +msgid "Uncategorized" +msgstr "Non classé" + +#: wp-admin/includes/upgrade.php:113 +msgid "Note that password carefully! It is a random password that was generated just for you." +msgstr "Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique." + +#: wp-admin/includes/update.php:887 +msgid "An automated WordPress update has failed to complete! Please notify the site administrator." +msgstr "Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur ou l’administratrice du site." + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/update.php:883 +msgid "An automated WordPress update has failed to complete - please attempt the update again now." +msgstr "Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer." + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:375 +msgid "Latest" +msgstr "Dernière version" + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:375 +msgid "Update to %s" +msgstr "Mettre à jour vers la version %s" + +#. translators: 1: WordPress version number, 2: URL to WordPress Updates +#. screen. +#: wp-admin/includes/update.php:272 +msgid "You are using a development version (%1$s). Cool! Please stay updated." +msgstr "Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour." + +#: wp-admin/includes/update-core.php:1569 +msgid "Upgrading database…" +msgstr "Mise à jour de la base de données…" + +#: wp-admin/includes/update-core.php:1085 +msgid "The update could not be unpacked" +msgstr "La mise à jour ne peut pas être décompressée" + +#: wp-admin/includes/update-core.php:1067 +msgid "Verifying the unpacked files…" +msgstr "Vérification des fichiers décompressés…" + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number, 3: Current MySQL version number. +#: wp-admin/includes/update-core.php:1187 +msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Current PHP version number. +#: wp-admin/includes/update-core.php:1176 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Minimum required MySQL version number, 4: Current PHP version +#. number, 5: Current MySQL version number. +#: wp-admin/includes/update-core.php:1163 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s." + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:104 +msgid "Could not fully remove the theme %s." +msgstr "Impossible de supprimer complètement le thème %s." + +#: wp-admin/includes/class-wp-upgrader.php:195 wp-admin/includes/theme.php:72 +msgid "Unable to locate WordPress theme directory." +msgstr "Impossible de localiser le dossier des thèmes de WordPress." + +#: wp-admin/includes/class-theme-installer-skin.php:230 +msgid "This theme is already installed." +msgstr "Ce thème est déjà installé." + +#. translators: %s: Theme version. +#: wp-admin/includes/theme.php:867 wp-admin/theme-install.php:537 +#: wp-admin/themes.php:1091 +msgid "Version: %s" +msgstr "Version : %s" + +#: wp-admin/includes/theme-install.php:197 +msgid "If you have a theme in a .zip format, you may install or update it by uploading it here." +msgstr "Si vous avez un thème au format .zip, vous pouvez l’installer en le téléversant ici." + +#: wp-admin/includes/theme-install.php:185 +msgid "Find Themes" +msgstr "Trouver des thèmes" + +#: wp-admin/includes/theme.php:324 +msgid "Holiday" +msgstr "Vacances" + +#: wp-admin/includes/theme.php:318 wp-admin/includes/theme.php:389 +msgid "Subject" +msgstr "Thème" + +#: wp-admin/includes/theme.php:345 +msgid "Sticky Post" +msgstr "Article épinglé" + +#: wp-admin/includes/theme.php:348 +msgid "Theme Options" +msgstr "Options du thème" + +#: wp-admin/includes/theme.php:330 wp-admin/includes/theme.php:388 +msgid "Features" +msgstr "Fonctionnalités" + +#: wp-admin/includes/theme.php:358 +msgid "Right Sidebar" +msgstr "Colonne latérale droite" + +#: wp-admin/includes/theme.php:357 +msgid "Left Sidebar" +msgstr "Colonne latérale gauche" + +#: wp-admin/includes/theme.php:356 +msgid "Four Columns" +msgstr "Quatre colonnes" + +#: wp-admin/includes/theme.php:355 +msgid "Three Columns" +msgstr "Trois colonnes" + +#: wp-admin/includes/theme.php:354 +msgid "Two Columns" +msgstr "Deux colonnes" + +#: wp-admin/includes/theme.php:353 +msgid "One Column" +msgstr "Une colonne" + +#: wp-admin/includes/theme-install.php:152 wp-admin/theme-install.php:217 +msgid "Feature Filter" +msgstr "Filtre de fonctionnalités" + +#: wp-admin/includes/class-wp-screen.php:972 +msgid "Screen Options" +msgstr "Options de l’écran" + +#: wp-admin/widgets-form.php:401 +msgid "Disable accessibility mode" +msgstr "Désactiver le mode Accessibilité" + +#: wp-admin/widgets-form.php:401 +msgid "Enable accessibility mode" +msgstr "Activer le mode « Accessibilité »" + +#: wp-admin/update.php:284 +msgid "Install Themes" +msgstr "Installer des thèmes" + +#: wp-admin/includes/template.php:1041 +msgid "Upload file and import" +msgstr "Téléverser et importer le fichier" + +#. translators: %s: Maximum allowed file size. +#: wp-admin/includes/template.php:1034 +msgid "Maximum size: %s" +msgstr "Taille maximale : %s" + +#: wp-admin/includes/template.php:1032 +msgid "Choose a file from your computer:" +msgstr "Choisissez un fichier sur votre ordinateur :" + +#: wp-admin/includes/template.php:1016 +msgid "Before you can upload your import file, you will need to fix the following error:" +msgstr "Avant de téléverser votre fichier d’import, il vous faut corriger l’erreur suivante :" + +#: wp-admin/includes/template.php:779 +msgid "Add Custom Field" +msgstr "Ajouter un champ personnalisé" + +#: wp-admin/includes/template.php:764 +msgid "Enter new" +msgstr "Saisissez-en un nouveau" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/template.php:665 +msgid "Key" +msgstr "Clé" + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:570 +msgid "Comment by %s marked as spam." +msgstr "Commentaire de %s marqué comme indésirable." + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:561 +msgid "Comment by %s moved to the Trash." +msgstr "Commentaire par %s déplacé dans la corbeille." + +#: wp-admin/includes/template.php:510 +msgid "Submit Reply" +msgstr "Envoyer la réponse" + +#: wp-admin/includes/template.php:463 +msgid "Reply to Comment" +msgstr "Répondre au commentaire" + +#: wp-admin/includes/class-wp-posts-list-table.php:1217 +msgid "Missed schedule" +msgstr "Planification manquée" + +#: wp-admin/includes/class-wp-posts-list-table.php:2024 +msgid "Make this post sticky" +msgstr "Épingler ce contenu" + +#: wp-admin/includes/class-wp-posts-list-table.php:2016 +msgid "Not Sticky" +msgstr "Non épinglé" + +#: wp-admin/includes/class-wp-posts-list-table.php:1974 +msgid "Allow Pings" +msgstr "Autoriser les notifications par ping" + +#: wp-admin/includes/class-wp-posts-list-table.php:1965 +msgid "Allow Comments" +msgstr "Autoriser les commentaires" + +#: wp-admin/includes/class-wp-posts-list-table.php:1936 +#: wp-admin/includes/class-wp-posts-list-table.php:1949 +msgid "Do not allow" +msgstr "Refuser" + +#: wp-admin/includes/class-wp-posts-list-table.php:1935 +#: wp-admin/includes/class-wp-posts-list-table.php:1948 +msgid "Allow" +msgstr "Autoriser" + +#. translators: Between password field and private checkbox on post quick edit +#. interface. +#: wp-admin/includes/class-wp-posts-list-table.php:1791 +msgid "–OR–" +msgstr "– OU –" + +#: wp-admin/includes/class-wp-posts-list-table.php:1748 +#: wp-admin/includes/class-wp-posts-list-table.php:1851 +#: wp-admin/includes/class-wp-posts-list-table.php:1891 +#: wp-admin/includes/class-wp-posts-list-table.php:1934 +#: wp-admin/includes/class-wp-posts-list-table.php:1947 +#: wp-admin/includes/class-wp-posts-list-table.php:1991 +#: wp-admin/includes/class-wp-posts-list-table.php:2014 +#: wp-admin/includes/class-wp-posts-list-table.php:2039 +msgid "— No Change —" +msgstr "– Aucun changement –" + +#: wp-admin/includes/class-wp-posts-list-table.php:1688 +msgid "Bulk Edit" +msgstr "Modifications groupées" + +#: wp-admin/includes/class-wp-links-list-table.php:139 +#: wp-admin/includes/class-wp-links-list-table.php:151 +msgid "Visible" +msgstr "Visible" + +#: wp-admin/includes/class-wp-links-list-table.php:138 +msgid "Relationship" +msgstr "Relation" + +#: wp-admin/includes/class-wp-comments-list-table.php:477 +#: wp-admin/includes/class-wp-post-comments-list-table.php:26 +msgctxt "column name" +msgid "Comment" +msgstr "Commentaire" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:381 +msgctxt "column name" +msgid "Date" +msgstr "Date" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:337 +#: wp-admin/includes/class-wp-media-list-table.php:400 +msgctxt "column name" +msgid "File" +msgstr "Fichier" + +#. translators: Posts screen column name. +#: wp-admin/includes/class-wp-posts-list-table.php:664 +msgctxt "column name" +msgid "Title" +msgstr "Titre" + +#: wp-admin/includes/class-wp-comments-list-table.php:840 +#: wp-admin/includes/class-wp-posts-list-table.php:1510 +#: wp-admin/includes/class-wp-terms-list-table.php:510 +msgid "Quick Edit" +msgstr "Modification rapide" + +#: wp-admin/includes/class-wp-posts-list-table.php:1688 +#: wp-admin/includes/class-wp-terms-list-table.php:693 +msgid "Quick Edit" +msgstr "Modification rapide" + +#: wp-admin/includes/schema.php:1131 +msgid "Warning! Wildcard DNS may not be configured correctly!" +msgstr "Avertissement ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !" + +#. translators: %s: Network title. +#: wp-admin/options-general.php:86 +msgid "Just another %s site" +msgstr "Un site utilisant %s" + +#. translators: Site tagline. +#: wp-admin/options-general.php:83 +msgid "Just another WordPress site" +msgstr "Un site utilisant WordPress" + +#: wp-admin/includes/post.php:767 +msgid "Auto Draft" +msgstr "Brouillon auto" + +#: wp-admin/includes/post.php:37 wp-admin/includes/post.php:82 +msgid "Sorry, you are not allowed to edit posts as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des articles avec ce compte." + +#: wp-admin/includes/post.php:35 wp-admin/includes/post.php:80 +msgid "Sorry, you are not allowed to edit pages as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des pages avec ce compte." + +#: wp-admin/includes/plugin.php:1119 +msgid "The plugin does not have a valid header." +msgstr "Cette extension ne dispose pas d’un entête valide." + +#: wp-admin/includes/plugin.php:1114 +msgid "Plugin file does not exist." +msgstr "Le fichier de l’extension n’existe pas." + +#: wp-admin/includes/plugin.php:1111 +msgid "Invalid plugin path." +msgstr "Chemin d’extension non valide." + +#. translators: %s: Comma-separated list of plugin filenames. +#: wp-admin/includes/plugin.php:1051 +msgid "Could not fully remove the plugins %s." +msgstr "Impossible de supprimer complètement la ou les extensions %s." + +#: wp-admin/includes/plugin.php:886 +msgid "One of the plugins is invalid." +msgstr "L’une des extensions n’est pas valide." + +#: wp-admin/includes/plugin.php:735 +msgid "The plugin generated unexpected output." +msgstr "Cette extension a produit un résultat inattendu." + +#: wp-admin/includes/plugin-install.php:836 +msgid "Warning: This plugin has not been tested with your current version of WordPress." +msgstr "Avertissement : cette extension n’a pas été testée avec votre version actuelle de WordPress." + +#: wp-admin/includes/plugin-install.php:714 +msgid "Average Rating" +msgstr "Moyenne des notes" + +#: wp-admin/includes/plugin-install.php:706 +msgid "WordPress.org Plugin Page »" +msgstr "Page WordPress.org de l’extension »" + +#: wp-admin/includes/plugin-install.php:679 +msgid "Compatible up to:" +msgstr "Compatible jusqu’à la version : " + +#. translators: %s: Version number. +#: wp-admin/includes/plugin-install.php:675 +#: wp-admin/includes/plugin-install.php:685 +msgid "%s or higher" +msgstr "%s ou plus" + +#: wp-admin/includes/plugin-install.php:672 +msgid "Requires WordPress Version:" +msgstr "Nécessite WordPress en version :" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:702 +#: wp-admin/includes/plugin-install.php:664 +msgid "Last Updated:" +msgstr "Dernière mise à jour :" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/plugin-install.php:728 +msgid "(based on %s rating)" +msgid_plural "(based on %s ratings)" +msgstr[0] "(basée sur %s vote)" +msgstr[1] "(basée sur %s votes)" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/plugin-install.php:351 +msgid "Plugin zip file" +msgstr "Archive Zip de l’extension" + +#: wp-admin/includes/plugin-install.php:345 +msgid "If you have a plugin in a .zip format, you may install or update it by uploading it here." +msgstr "Si vous avez une extension au format .zip, vous pouvez l’installer ou la mettre à jour en la téléversant ici." + +#: wp-admin/includes/plugin-install.php:319 +#: wp-admin/includes/plugin-install.php:332 +msgid "Search Plugins" +msgstr "Rechercher des extensions" + +#: wp-admin/includes/plugin-install.php:270 +msgid "You may also browse based on the most popular tags in the Plugin Directory:" +msgstr "Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :" + +#: wp-admin/includes/plugin-install.php:269 +msgid "Popular tags" +msgstr "Étiquettes populaires" + +#: wp-admin/includes/meta-boxes.php:1504 +msgid "(Leave at 0 for no rating.)" +msgstr "(Laissez à 0 pour ne pas donner de note.)" + +#: wp-admin/includes/class-wp-links-list-table.php:140 +#: wp-admin/includes/class-wp-links-list-table.php:152 +#: wp-admin/includes/meta-boxes.php:1493 +msgid "Rating" +msgstr "Note" + +#: wp-admin/includes/meta-boxes.php:1489 +msgid "Notes" +msgstr "Commentaires" + +#: wp-admin/includes/meta-boxes.php:1485 +msgid "RSS Address" +msgstr "Adresse du flux RSS" + +#: wp-admin/includes/meta-boxes.php:1481 +msgid "Image Address" +msgstr "Adresse de l’image" + +#: wp-admin/includes/meta-boxes.php:1466 +msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." +msgstr "Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en savoir plus sur ce système, consultez le site de XFN." + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1460 +msgid "sweetheart" +msgstr "être aimé" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1457 +msgid "date" +msgstr "amoureuse/amoureux" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1454 +msgid "crush" +msgstr "coup de foudre" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1451 +msgid "muse" +msgstr "muse" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1442 wp-admin/includes/meta-boxes.php:1447 +msgid "romantic" +msgstr "romantique" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1434 +msgid "spouse" +msgstr "conjoint" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1431 +msgid "sibling" +msgstr "frère/sœur" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1428 +msgid "parent" +msgstr "parent" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1425 +msgid "kin" +msgstr "apparenté" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1422 +msgid "child" +msgstr "enfant" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1413 wp-admin/includes/meta-boxes.php:1418 +msgid "family" +msgstr "famille" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1405 +msgid "neighbor" +msgstr "voisin" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1402 +msgid "co-resident" +msgstr "colocataire" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1393 wp-admin/includes/meta-boxes.php:1398 +msgid "geographical" +msgstr "géographique" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1388 +msgid "colleague" +msgstr "confrère" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1385 +msgid "co-worker" +msgstr "collègue de travail" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1376 wp-admin/includes/meta-boxes.php:1381 +msgid "professional" +msgstr "professionnel" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1371 +msgid "met" +msgstr "rencontré·e" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1362 wp-admin/includes/meta-boxes.php:1367 +msgid "physical" +msgstr "physique" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1354 +msgid "friend" +msgstr "ami·e" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1351 +msgid "acquaintance" +msgstr "connaissance" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1348 +msgid "contact" +msgstr "contact" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1339 wp-admin/includes/meta-boxes.php:1344 +msgid "friendship" +msgstr "amitié" + +#: wp-admin/includes/meta-boxes.php:1335 +msgid "another web address of mine" +msgstr "une autre de mes adresses web" + +#. translators: xfn: https://gmpg.org/xfn +#. translators: Hidden accessibility text. xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1325 wp-admin/includes/meta-boxes.php:1330 +msgid "identity" +msgstr "identité" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1321 +msgid "rel:" +msgstr "rel :" + +#: wp-admin/includes/meta-boxes.php:1247 +msgid "Choose the target frame for your link." +msgstr "Choisissez le cadre dans lequel le lien doit s’ouvrir." + +#: wp-admin/includes/meta-boxes.php:1245 +msgid "_none — same window or tab." +msgstr "_none — même fenêtre ou onglet." + +#: wp-admin/includes/meta-boxes.php:1242 +msgid "_top — current window or tab, with no frames." +msgstr "_top — fenêtre ou onglet en cours, sans cadre incorporé (frame)." + +#: wp-admin/includes/meta-boxes.php:1239 +msgid "_blank — new window or tab." +msgstr "_blank — nouvelle fenêtre ou onglet." + +#. translators: %s: Link name. +#: wp-admin/includes/class-wp-links-list-table.php:356 +#: wp-admin/includes/meta-boxes.php:1140 +msgid "" +"You are about to delete this link '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer le lien « %s ».\n" +"« Annuler » pour arrêter, « OK » pour supprimer." + +#: wp-admin/includes/meta-boxes.php:1122 +msgid "Keep this link private" +msgstr "Ce lien est privé" + +#: wp-admin/includes/meta-boxes.php:1114 +msgid "Visit Link" +msgstr "Visiter le lien" + +#: wp-admin/includes/class-wp-posts-list-table.php:1845 +msgid "Main Page (no parent)" +msgstr "Publication principale (pas de publication parente)" + +#: wp-admin/includes/meta-boxes.php:922 +msgid "Show comments" +msgstr "Afficher les commentaires" + +#: wp-admin/includes/meta-boxes.php:790 +msgid "Separate multiple URLs with spaces" +msgstr "Séparez les URL par des espaces" + +#: wp-admin/includes/meta-boxes.php:787 +msgid "Send trackbacks to:" +msgstr "Envoyer un rétrolien vers :" + +#: wp-admin/includes/meta-boxes.php:777 +msgid "Already pinged:" +msgstr "Déjà notifié(s) par ping :" + +#: wp-admin/includes/meta-boxes.php:1211 +msgid "New category name" +msgstr "Nom de la nouvelle catégorie" + +#: wp-admin/includes/meta-boxes.php:246 wp-admin/includes/meta-boxes.php:260 +msgid "Publish immediately" +msgstr "Publier tout de suite" + +#: wp-admin/includes/meta-boxes.php:214 +msgid "Stick this post to the front page" +msgstr "Épingler cet article sur la page d’accueil" + +#: wp-admin/edit-form-comment.php:113 wp-admin/export.php:237 +#: wp-admin/export.php:289 wp-admin/includes/meta-boxes.php:104 +msgid "Status:" +msgstr "État :" + +#: wp-admin/includes/meta-boxes.php:71 +msgid "Preview Changes" +msgstr "Prévisualiser les modifications" + +#: wp-admin/includes/media.php:2978 +msgid "Link text, e.g. “Ransom Demands (PDF)”" +msgstr "Texte du lien, par exemple « Théorie sur le chaos (PDF) »" + +#: wp-admin/includes/media.php:3009 +msgid "Link to image" +msgstr "Lier à l’image" + +#: wp-admin/includes/media.php:3004 +msgid "Link Image To:" +msgstr "Lier l’image à :" + +#: wp-admin/includes/media.php:2935 +msgid "Image Caption" +msgstr "Légende de l’image" + +#: wp-admin/includes/media.php:2888 +msgid "Filter »" +msgstr "Filtrer »" + +#: wp-admin/includes/media.php:2797 +msgid "All Types" +msgstr "Tous les types" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/class-wp-media-list-table.php:319 +#: wp-admin/includes/class-wp-media-list-table.php:323 +#: wp-admin/includes/media.php:2762 +msgid "Search Media" +msgstr "Chercher parmi les médias" + +#: wp-admin/includes/media.php:2696 +msgid "Update gallery settings" +msgstr "Mettre à jour les réglages de galerie" + +#: wp-admin/includes/media.php:2675 +msgid "Gallery columns:" +msgstr "Colonnes de galerie :" + +#: wp-admin/includes/media.php:2660 +msgid "Order:" +msgstr "Ordre :" + +#: wp-admin/includes/media.php:2652 +msgid "Random" +msgstr "Aléatoire" + +#: wp-admin/includes/media.php:2651 +msgid "Date/Time" +msgstr "Horodatage" + +#: wp-admin/includes/media.php:2649 +msgid "Menu order" +msgstr "Ordre du menu" + +#: wp-admin/includes/media.php:2644 +msgid "Order images by:" +msgstr "Ranger les images par :" + +#: wp-admin/includes/media.php:2634 +msgid "Image File" +msgstr "Fichier image" + +#: wp-admin/includes/media.php:2629 +msgid "Link thumbnails to:" +msgstr "Lier les miniatures à :" + +#: wp-admin/includes/media.php:2588 wp-admin/includes/media.php:2668 +msgid "Descending" +msgstr "Décroissant" + +#: wp-admin/includes/media.php:2587 wp-admin/includes/media.php:2665 +msgid "Ascending" +msgstr "Croissant" + +#: wp-admin/includes/media.php:2586 +msgid "Sort Order:" +msgstr "Ordre de tri :" + +#: wp-admin/includes/media.php:2582 +msgid "All Tabs:" +msgstr "Tous les onglets :" + +#: wp-admin/includes/media.php:2390 wp-admin/includes/media.php:2608 +#: wp-admin/includes/media.php:2914 +msgid "Save all changes" +msgstr "Enregistrer toutes les modifications" + +#: wp-admin/includes/media.php:2360 +msgid "Add media files from your computer" +msgstr "Ajouter un fichier média depuis votre ordinateur" + +#: wp-admin/includes/media.php:1730 wp-admin/includes/media.php:3015 +#: wp-admin/includes/media.php:3021 +msgid "Insert into Post" +msgstr "Insérer dans la publication" + +#: wp-admin/includes/media.php:1705 +msgid "Upload date:" +msgstr "Date de téléversement :" + +#: wp-admin/includes/media.php:1621 wp-admin/includes/media.php:2584 +#: wp-admin/install.php:149 wp-admin/user-edit.php:686 +#: wp-admin/user-new.php:608 wp-admin/js/password-toggle.js:28 +#: wp-admin/js/user-profile.js:91 +msgid "Hide" +msgstr "Masquer" + +#: wp-admin/includes/media.php:1429 +msgid "Location of the uploaded file." +msgstr "Emplacement du fichier envoyé." + +#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2985 +msgid "Alt text for the image, e.g. “The Mona Lisa”" +msgstr "Texte alternatif de l’image, par ex. : « La Joconde »" + +#: wp-admin/includes/media.php:1289 wp-admin/includes/media.php:1425 +msgid "File URL" +msgstr "URL du fichier" + +#: wp-admin/includes/class-wp-debug-data.php:298 +#: wp-admin/includes/class-wp-privacy-policy-content.php:702 +#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2139 +#: wp-admin/install.php:77 wp-admin/maint/repair.php:24 +#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:88 +msgid "WordPress" +msgstr "WordPress" + +#: wp-admin/includes/media.php:540 +msgid "Uploads" +msgstr "Téléversements" + +#. translators: %s: Number of attachments. +#: wp-admin/includes/media.php:64 +msgid "Gallery (%s)" +msgstr "Galerie (%s)" + +#: wp-admin/includes/media.php:19 +msgid "From URL" +msgstr "Depuis l’URL" + +#: wp-admin/includes/media.php:18 +msgid "From Computer" +msgstr "Depuis votre ordinateur" + +#: wp-admin/includes/image-edit.php:1152 +msgid "Image saved" +msgstr "Image enregistrée" + +#: wp-admin/includes/image-edit.php:1012 +msgid "Unable to save the image." +msgstr "Impossible d’enregistrer l’image." + +#: wp-admin/includes/image-edit.php:960 +msgid "Nothing to save, the image has not changed." +msgstr "Rien à enregistrer, l’image n’a pas été modifiée." + +#: wp-admin/includes/image-edit.php:950 +msgid "Error while saving the scaled image. Please reload the page and try again." +msgstr "Une erreur est survenue lors de la modification de l’échelle de l’image. Veuillez recharger la page et réessayer." + +#: wp-admin/includes/image-edit.php:917 +msgid "Unable to create new image." +msgstr "Impossible de créer une nouvelle image." + +#: wp-admin/includes/image-edit.php:885 +msgid "Image restored successfully." +msgstr "L’image a bien été rétablie." + +#: wp-admin/includes/image-edit.php:883 +msgid "Image metadata is inconsistent." +msgstr "Les métadonnées de l’image ne sont pas cohérentes." + +#: wp-admin/includes/image-edit.php:878 +msgid "Cannot save image metadata." +msgstr "Impossible d’enregistrer les métadonnées de l’image." + +#: wp-admin/includes/image-edit.php:810 +msgid "Cannot load image metadata." +msgstr "Impossible de charger les métadonnées de l’image." + +#: wp-admin/includes/image-edit.php:315 +msgid "All sizes except thumbnail" +msgstr "Toutes les tailles sauf la miniature" + +#: wp-admin/includes/image-edit.php:305 +msgid "All image sizes" +msgstr "Toutes les tailles" + +#: wp-admin/includes/image-edit.php:301 +msgid "Apply changes to:" +msgstr "Appliquer les modifications à :" + +#: wp-admin/includes/image-edit.php:297 +msgid "Current thumbnail" +msgstr "Miniature actuelle" + +#: wp-admin/includes/image-edit.php:283 +msgid "Thumbnail Settings" +msgstr "Réglages de la miniature" + +#: wp-admin/includes/image-edit.php:230 +msgid "Selection:" +msgstr "Sélection :" + +#: wp-admin/includes/image-edit.php:210 +msgid "Aspect ratio:" +msgstr "Proportion de taille :" + +#: wp-admin/includes/image-edit.php:205 +msgid "Crop Selection" +msgstr "Sélection de recadrage" + +#: wp-admin/includes/image-edit.php:202 +msgid "Crop Aspect Ratio" +msgstr "Proportion de taille du recadrage" + +#: wp-admin/includes/image-edit.php:184 +msgid "Restore image" +msgstr "Rétablir l’image" + +#: wp-admin/includes/image-edit.php:179 +msgid "Previously edited copies of the image will not be deleted." +msgstr "Les copies de l’image précédemment modifiées ne seront pas effacées." + +#: wp-admin/includes/image-edit.php:177 +msgid "Discard any changes and restore the original image." +msgstr "Abandonner toutes modifications et rétablir l’image originale." + +#: wp-admin/includes/class-custom-background.php:337 +#: wp-admin/includes/class-custom-background.php:341 +msgid "Restore Original Image" +msgstr "Rétablir l’image originale" + +#. translators: %s: Image width and height in pixels. +#: wp-admin/includes/image-edit.php:141 +msgid "Original dimensions %s" +msgstr "Taille originale : %s" + +#: wp-admin/includes/image-edit.php:126 +msgid "Scale Image" +msgstr "Redimensionnement de l’image" + +#: wp-admin/includes/image-edit.php:92 +msgid "Flip horizontal" +msgstr "Retourner horizontalement" + +#: wp-admin/includes/image-edit.php:91 +msgid "Flip vertical" +msgstr "Retourner verticalement" + +#: wp-admin/includes/image-edit.php:28 wp-admin/includes/image-edit.php:968 +msgid "Image data does not exist. Please re-upload the image." +msgstr "Il n’y a aucune donnée d’image. Veuillez retéléverser l’image." + +#: wp-admin/includes/file.php:2661 +msgid "Proceed" +msgstr "Continuer" + +#: wp-admin/includes/file.php:2609 +msgid "Connection Type" +msgstr "Type de connexion" + +#: wp-admin/includes/file.php:2636 +msgid "Private Key:" +msgstr "Clé privée :" + +#: wp-admin/includes/file.php:2632 +msgid "Public Key:" +msgstr "Clé publique :" + +#: wp-admin/includes/file.php:2630 +msgid "Authentication Keys" +msgstr "Clés d’authentification" + +#: wp-admin/includes/file.php:2588 +msgid "Hostname" +msgstr "Nom de l’hôte :" + +#: wp-admin/includes/file.php:2554 +msgid "Connection Information" +msgstr "Informations de connexion" + +#: wp-admin/includes/file.php:2528 +msgid "SSH2" +msgstr "SSH2" + +#: wp-admin/includes/file.php:2525 +msgid "FTPS (SSL)" +msgstr "FTPS (SSL)" + +#: wp-admin/includes/file.php:2522 +msgid "FTP" +msgstr "FTP" + +#: wp-admin/includes/file.php:1893 +msgid "Empty archive." +msgstr "Archive vide." + +#: wp-admin/includes/file.php:1831 wp-admin/includes/file.php:1985 +#: wp-admin/includes/file.php:2043 wp-admin/includes/update-core.php:1507 +msgid "Could not copy file." +msgstr "Impossible de copier le fichier." + +#: wp-admin/includes/file.php:1826 +msgid "Could not extract file from archive." +msgstr "Impossible d’extraire les fichiers depuis l’archive." + +#: wp-admin/includes/file.php:1701 wp-admin/includes/file.php:1806 +msgid "Could not retrieve file from archive." +msgstr "Impossible de récupérer le fichier depuis l’archive." + +#: wp-admin/includes/file.php:1169 +msgid "Could not create temporary file." +msgstr "Impossible de créer le fichier temporaire." + +#: wp-admin/includes/file.php:931 +msgid "Specified file failed upload test." +msgstr "Le test de téléversement du fichier spécifié a échoué." + +#: wp-admin/includes/file.php:920 +msgid "Invalid form submission." +msgstr "Envoi non valide du formulaire." + +#: wp-admin/includes/file.php:906 +msgid "File upload stopped by extension." +msgstr "Le téléversement de fichier est arrêté par l’extension." + +#: wp-admin/includes/file.php:905 +msgid "Failed to write file to disk." +msgstr "Échec de l’écriture du fichier sur le disque." + +#: wp-admin/includes/file.php:904 +msgid "Missing a temporary folder." +msgstr "Un dossier temporaire est manquant." + +#: wp-admin/includes/file.php:902 +msgid "No file was uploaded." +msgstr "Aucun fichier n’a été envoyé." + +#: wp-admin/includes/file.php:901 +msgid "The uploaded file was only partially uploaded." +msgstr "Le fichier n’a été que partiellement envoyé." + +#: wp-admin/includes/file.php:418 wp-admin/includes/file.php:479 +#: wp-admin/includes/file.php:746 wp-admin/includes/file.php:752 +msgid "Sorry, that file cannot be edited." +msgstr "Désolé, ce fichier ne peut être modifié." + +#: wp-admin/includes/file.php:64 +msgid "Popup Comments Template" +msgstr "Modèle de la fenêtre surgissante de commentaires" + +#: wp-admin/includes/file.php:63 +msgid "Comments Template" +msgstr "Modèle pour les commentaires" + +#: wp-admin/includes/file.php:60 +msgid ".htaccess (for rewrite rules )" +msgstr ".htaccess (pour les règles de réécriture)" + +#: wp-admin/includes/file.php:59 +msgid "my-hacks.php (legacy hacks support)" +msgstr "my-hacks.php (reconnaissance des hacks existants)" + +#: wp-admin/includes/file.php:46 +msgid "Application Attachment Template" +msgstr "Modèle pour les programmes attachés" + +#: wp-admin/includes/file.php:45 +msgid "Audio Attachment Template" +msgstr "Modèle pour les fichiers audio attachés" + +#: wp-admin/includes/file.php:44 +msgid "Video Attachment Template" +msgstr "Modèle pour les vidéos attachées" + +#: wp-admin/includes/file.php:43 +msgid "Image Attachment Template" +msgstr "Modèle pour les images attachées" + +#: wp-admin/includes/file.php:42 +msgid "Attachment Template" +msgstr "Modèle pour les fichiers attachés" + +#: wp-admin/includes/file.php:16 +msgid "Theme Functions" +msgstr "Fonctions du thème" + +#: wp-admin/includes/file.php:23 +msgid "Links Template" +msgstr "Modèle pour les liens" + +#: wp-admin/includes/file.php:22 +msgid "404 Template" +msgstr "Modèle pour l’erreur 404" + +#: wp-admin/includes/file.php:37 +msgid "Single Post" +msgstr "Publication seule" + +#: wp-admin/includes/file.php:21 +msgid "Search Form" +msgstr "Formulaire de recherche" + +#: wp-admin/erase-personal-data.php:150 wp-admin/export-personal-data.php:150 +msgid "Search Requests" +msgstr "Recherche dans les demandes" + +#: wp-admin/includes/file.php:30 +msgid "Category Template" +msgstr "Modèle pour les catégories" + +#: wp-admin/includes/file.php:65 +msgid "Popup Comments" +msgstr "Fenêtre surgissante de commentaires" + +#: wp-admin/includes/file.php:57 +msgid "RTL Stylesheet" +msgstr "Feuille de style RTL" + +#: wp-admin/includes/file.php:26 +msgid "Main Index Template" +msgstr "Modèle pour la page d’accueil" + +#: wp-admin/includes/dashboard.php:1166 +msgid "This widget requires JavaScript." +msgstr "Ce widget nécessite JavaScript." + +#. translators: 1: Type of comment, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:900 +msgctxt "dashboard" +msgid "%1$s %2$s" +msgstr "%1$s dans %2$s" + +#: wp-admin/includes/dashboard.php:858 wp-admin/includes/dashboard.php:865 +#: wp-admin/includes/dashboard.php:895 wp-admin/includes/dashboard.php:902 +msgid "[Pending]" +msgstr "[En attente]" + +#. translators: 1: Comment author, 2: Post link, 3: Notification if the comment +#. is pending. +#: wp-admin/includes/dashboard.php:855 +msgid "From %1$s on %2$s %3$s" +msgstr "Par %1$s, sur %2$s%3$s" + +#: wp-admin/includes/class-wp-comments-list-table.php:818 +#: wp-admin/includes/dashboard.php:793 +msgid "Move this comment to the Trash" +msgstr "Déplacer ce commentaire dans la corbeille" + +#. translators: "Mark as spam" link. +#: wp-admin/includes/class-wp-comments-list-table.php:783 +#: wp-admin/includes/dashboard.php:777 +msgctxt "verb" +msgid "Spam" +msgstr "Indésirable" + +#: wp-admin/includes/class-wp-comments-list-table.php:781 +#: wp-admin/includes/dashboard.php:775 +msgid "Mark this comment as spam" +msgstr "Marquer ce commentaire comme indésirable" + +#: wp-admin/includes/class-wp-comments-list-table.php:849 +#: wp-admin/includes/dashboard.php:767 +msgid "Reply to this comment" +msgstr "Répondre à ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:746 +#: wp-admin/includes/class-wp-comments-list-table.php:771 +#: wp-admin/includes/dashboard.php:752 +msgid "Unapprove this comment" +msgstr "Désapprouver ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:754 +#: wp-admin/includes/class-wp-comments-list-table.php:763 +#: wp-admin/includes/dashboard.php:744 +msgid "Approve this comment" +msgstr "Approuver ce commentaire" + +#. translators: Hidden accessibility text. +#: wp-admin/includes/nav-menu.php:532 wp-admin/includes/nav-menu.php:904 +msgid "Page" +msgstr "Page" + +#: wp-admin/includes/dashboard.php:210 +msgid "Configure" +msgstr "Configurer" + +#: wp-admin/includes/dashboard.php:148 +msgid "View all" +msgstr "Tout voir" + +#: wp-admin/includes/dashboard.php:1593 +msgid "Other WordPress News" +msgstr "Autres actualités de WordPress (en français)" + +#: wp-admin/includes/dashboard.php:77 +msgid "Right Now" +msgstr "Aujourd’hui" + +#. translators: %s: Destination file path. +#: wp-admin/includes/file.php:1033 +msgid "The uploaded file could not be moved to %s." +msgstr "Le fichier n’a pas pu être déplacé vers %s." + +#: wp-admin/includes/class-file-upload-upgrader.php:57 +#: wp-admin/includes/class-file-upload-upgrader.php:120 +#: wp-admin/includes/class-file-upload-upgrader.php:136 +msgid "Please select a file" +msgstr "Veuillez choisir un fichier" + +#: wp-admin/includes/class-file-upload-upgrader.php:89 +msgid "Return to the Theme Installer" +msgstr "Retourner à l’installation des thèmes" + +#. translators: %s: Post title. +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-posts-list-table.php:1553 +#: wp-admin/includes/class-wp-theme-install-list-table.php:286 +msgid "Preview “%s”" +msgstr "Prévisualiser « %s »" + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:84 +msgid "Successfully installed the theme %1$s %2$s." +msgstr "Le thème %1$s %2$s a bien été installé." + +#: wp-admin/includes/class-file-upload-upgrader.php:80 +msgid "Return to the Plugin Installer" +msgstr "Retourner à l’installation des extensions" + +#. translators: 1: Plugin name, 2: Plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:86 +msgid "Successfully installed the plugin %1$s %2$s." +msgstr "L’extension %1$s %2$s a bien été installée." + +#: wp-admin/includes/class-plugin-installer-skin.php:122 +#: wp-admin/includes/class-plugin-upgrader-skin.php:96 +msgid "Activate Plugin" +msgstr "Activer l’extension" + +#: wp-admin/includes/class-core-upgrader.php:39 +msgid "Could not copy files." +msgstr "Impossible de copier les fichiers." + +#: wp-admin/includes/class-core-upgrader.php:33 +msgid "WordPress is at the latest version." +msgstr "Vous avez la dernière version de WordPress." + +#: wp-admin/includes/class-theme-upgrader.php:82 +msgid "Theme installed successfully." +msgstr "Le thème a bien été installé." + +#: wp-admin/includes/class-theme-upgrader.php:77 +msgid "Installing the theme…" +msgstr "Installation du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:62 +#: wp-admin/includes/class-theme-upgrader.php:79 +msgid "Could not remove the old theme." +msgstr "Impossible de supprimer l’ancien thème." + +#: wp-admin/includes/class-theme-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:78 +msgid "Removing the old version of the theme…" +msgstr "Retrait de l’ancienne version du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:56 +msgid "The theme is at the latest version." +msgstr "Vous avez la dernière version de ce thème." + +#: wp-admin/includes/class-plugin-upgrader.php:84 +msgid "Plugin installed successfully." +msgstr "L’extension a bien été installée." + +#: wp-admin/includes/class-plugin-upgrader.php:79 +msgid "Installing the plugin…" +msgstr "Installation de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:78 +#: wp-admin/includes/class-theme-upgrader.php:76 +msgid "Unpacking the package…" +msgstr "Décompression de l’archive de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:75 +#: wp-admin/includes/class-theme-upgrader.php:73 +msgid "Installation package not available." +msgstr "L’archive d’installation n’est pas disponible." + +#: wp-admin/includes/class-plugin-upgrader.php:63 +msgid "Could not remove the old plugin." +msgstr "Impossible de supprimer l’ancienne extension." + +#: wp-admin/includes/class-plugin-upgrader.php:62 +msgid "Removing the old version of the plugin…" +msgstr "Retrait de l’ancienne version de l’extension…" + +#: wp-admin/includes/class-core-upgrader.php:38 +#: wp-admin/includes/class-language-pack-upgrader.php:118 +#: wp-admin/includes/class-plugin-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:60 +msgid "Unpacking the update…" +msgstr "Décompression de la mise à jour…" + +#: wp-admin/includes/class-plugin-upgrader.php:57 +msgid "The plugin is at the latest version." +msgstr "Vous avez la dernière version de cette extension." + +#: wp-admin/includes/class-wp-upgrader.php:210 +#: wp-admin/includes/update-core.php:1454 +msgid "Disabling Maintenance mode…" +msgstr "Désactivation du mode maintenance…" + +#: wp-admin/includes/class-wp-upgrader.php:209 +#: wp-admin/includes/update-core.php:1305 +msgid "Enabling Maintenance mode…" +msgstr "Activation du mode maintenance…" + +#: wp-admin/includes/class-file-upload-upgrader.php:82 +#: wp-admin/includes/class-file-upload-upgrader.php:91 +#: wp-admin/includes/file.php:1691 wp-admin/includes/file.php:1889 +msgid "Incompatible Archive." +msgstr "Archive incompatible." + +#: wp-admin/includes/class-wp-upgrader.php:204 wp-admin/includes/file.php:1777 +#: wp-admin/includes/file.php:1958 wp-admin/includes/file.php:2051 +#: wp-admin/includes/file.php:2134 +msgid "Could not create directory." +msgstr "Impossible de créer le dossier." + +#: wp-admin/includes/class-wp-upgrader.php:203 +msgid "Destination folder already exists." +msgstr "Le dossier de destination existe déjà." + +#: wp-admin/includes/class-wp-upgrader.php:201 +msgid "Installing the latest version…" +msgstr "Installation de la dernière version…" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:63 +#: wp-admin/includes/class-wp-upgrader.php:200 +msgid "Download failed." +msgstr "Le téléchargement a échoué." + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-upgrader.php:197 +msgid "Unable to locate needed folder (%s)." +msgstr "Impossible de localiser le dossier nécessaire (%s)." + +#: wp-admin/includes/class-wp-site-health.php:1907 +msgid "Unable to locate WordPress content directory" +msgstr "Impossible de localiser le répertoire de contenu de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:194 wp-admin/includes/plugin.php:958 +msgid "Unable to locate WordPress plugin directory." +msgstr "Impossible de localiser le répertoire d’extension de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:191 +msgid "Unable to locate WordPress root directory." +msgstr "Impossible de localiser le répertoire racine de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:190 wp-admin/includes/plugin.php:952 +#: wp-admin/includes/theme.php:66 +msgid "Filesystem error." +msgstr "Erreur du système de fichier." + +#: wp-admin/includes/class-wp-site-health.php:1898 +msgid "Could not access filesystem" +msgstr "Impossible d’accéder au système de fichiers." + +#: wp-admin/includes/class-wp-upgrader.php:188 +msgid "Invalid data provided." +msgstr "Les données fournies ne sont pas valides." + +#. translators: %s: Command. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:228 +msgid "Unable to perform command: %s" +msgstr "Impossible de lancer la commande : %s" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:160 +msgid "Public and Private keys incorrect for %s" +msgstr "Les clés publiques et privées de %s ne sont pas correctes" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:133 +msgid "Failed to connect to SSH2 Server %s" +msgstr "Impossible de se connecter au serveur SSH2 %s" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:105 +msgid "SSH2 password is required" +msgstr "Le mot de passe SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:95 +msgid "SSH2 username is required" +msgstr "L’identifiant SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:81 +msgid "SSH2 hostname is required" +msgstr "Le nom de l’hôte SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:69 +msgid "The ssh2 PHP extension is not available" +msgstr "L’extension ssh2 de PHP n’est pas disponible" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ftpext.php:110 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:113 +#: wp-admin/includes/class-wp-filesystem-ssh2.php:147 +msgid "Username/Password incorrect for %s" +msgstr "Le couple identifiant/mot de passe est incorrect pour %s" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ftpext.php:97 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:87 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:100 +msgid "Failed to connect to FTP Server %s" +msgstr "Impossible de se connecter au serveur FTP %s" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:66 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:62 +msgid "FTP password is required" +msgstr "Le mot de passe FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:60 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:56 +msgid "FTP username is required" +msgstr "L’identifiant FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:53 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:49 +msgid "FTP hostname is required" +msgstr "Le nom de l’hôte FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:37 +msgid "The ftp PHP extension is not available" +msgstr "L’extension ftp de PHP n’est pas disponible" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:317 +msgid "Found %s" +msgstr "Trouvé %s" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:297 +msgid "Changing to %s" +msgstr "Modifier à %s" + +#: wp-admin/includes/bookmark.php:236 +msgid "Could not insert link into the database." +msgstr "Impossible d’insérer le lien dans la base de données." + +#: wp-admin/includes/bookmark.php:228 +msgid "Could not update link in the database." +msgstr "Impossible de mettre à jour le lien dans la base de données." + +#: wp-admin/includes/import.php:205 +msgid "Movable Type and TypePad" +msgstr "Movable Type et TypePad" + +#: wp-admin/includes/import.php:199 +msgid "LiveJournal" +msgstr "LiveJournal" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:295 +#: wp-admin/includes/class-wp-theme-install-list-table.php:159 +#: wp-admin/setup-config.php:301 wp-admin/theme-install.php:66 +msgid "Try Again" +msgstr "Recommencer" + +#: wp-admin/includes/import.php:187 +msgid "Blogger" +msgstr "Blogger" + +#: wp-admin/import.php:102 +msgid "No importers are available." +msgstr "Aucun outil d’importation n’est disponible." + +#: wp-admin/export.php:345 +msgid "Download Export File" +msgstr "Télécharger le fichier d’exportation" + +#: wp-admin/export.php:177 +msgid "This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." +msgstr "Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes." + +#: wp-admin/export.php:176 +msgid "When you click the button below WordPress will create an XML file for you to save to your computer." +msgstr "Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur." + +#: wp-admin/export.php:20 wp-admin/menu.php:376 +msgid "Export" +msgstr "Exporter" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:345 +msgctxt "posts" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:324 +msgctxt "posts" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Le mien (%s)" +msgstr[1] "Les miens (%s)" + +#. translators: %s: Number of patterns. +#: wp-admin/edit.php:388 +msgid "%s pattern not updated, somebody is editing it." +msgid_plural "%s patterns not updated, somebody is editing them." +msgstr[0] "Une composition n’a pas été mise à jour : quelqu’un est en train de la modifier." +msgstr[1] "%s compositions n’ont pas été mises à jour : quelqu’un est en train de les modifier." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:359 +msgid "%s post updated." +msgid_plural "%s posts updated." +msgstr[0] "%s publication mise à jour." +msgstr[1] "%s publications mises à jour." + +#: wp-admin/edit-tags.php:117 wp-admin/edit.php:176 wp-admin/post.php:316 +#: wp-admin/themes.php:63 wp-admin/upload.php:332 +msgid "Sorry, you are not allowed to delete this item." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet élément." + +#: wp-admin/includes/edit-tag-messages.php:17 +msgid "Item not added." +msgstr "Contenu non ajouté." + +#: wp-admin/includes/edit-tag-messages.php:16 +msgid "Item updated." +msgstr "Contenu mis à jour." + +#: wp-admin/includes/edit-tag-messages.php:15 +msgid "Item deleted." +msgstr "Contenu supprimé." + +#: wp-admin/edit-tag-form.php:198 wp-admin/edit-tags.php:515 +msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." +msgstr "Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif." + +#: wp-admin/edit-link-form.php:142 +msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." +msgstr "Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit." + +#: wp-admin/edit-link-form.php:134 +msgid "Example: https://wordpress.org/ — do not forget the https://" +msgstr "Exemple : https://fr.wordpress.org/ — Et n’oubliez pas le https://" + +#: wp-admin/edit-link-form.php:131 +msgid "Web Address" +msgstr "Adresse web" + +#: wp-admin/edit-link-form.php:126 +msgid "Example: Nifty blogging software" +msgstr "Exemple : Logiciel de création de sites rapide, puissant et efficace" + +#: wp-admin/edit-link-form.php:97 +msgid "Link added." +msgstr "Lien ajouté." + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:22 +msgid "Links / Add Link" +msgstr "Liens / Ajouter un lien" + +#: wp-admin/edit-link-form.php:17 wp-admin/includes/meta-boxes.php:1149 +msgid "Update Link" +msgstr "Mettre à jour le lien" + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:16 +msgid "Links / Edit Link" +msgstr "Liens / Modifier le lien" + +#: wp-admin/themes.php:273 wp-admin/themes.php:282 +msgid "Visit site" +msgstr "Aller sur le site" + +#: wp-admin/includes/template.php:509 +msgid "Update Comment" +msgstr "Mettre à jour le commentaire" + +#. translators: 1: Post edited date, 2: Post edited time. +#. translators: 1: Date of last edit, 2: Time of last edit. +#: wp-admin/edit-form-advanced.php:660 wp-admin/includes/ajax-actions.php:2902 +msgid "Last edited on %1$s at %2$s" +msgstr "Dernière modification le %1$s à %2$s" + +#. translators: 1: Name of most recent post author, 2: Post edited date, 3: +#. Post edited time. +#. translators: 1: User's display name, 2: Date of last edit, 3: Time of last +#. edit. +#: wp-admin/edit-form-advanced.php:652 wp-admin/includes/ajax-actions.php:2899 +msgid "Last edited by %1$s on %2$s at %3$s" +msgstr "Dernière modification par %1$s, le %2$s à %3$s" + +#: wp-admin/includes/meta-boxes.php:1652 +msgid "Custom Fields" +msgstr "Champs personnalisés" + +#: wp-admin/includes/meta-boxes.php:1646 +msgid "Send Trackbacks" +msgstr "Envoyer des rétroliens" + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:195 +msgid "Page restored to revision from %s." +msgstr "Page rétablie à partir de la révision du %s." + +#: wp-admin/edit-form-advanced.php:182 +msgid "Post saved." +msgstr "Publication enregistrée." + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:180 +msgid "Post restored to revision from %s." +msgstr "Publication rétablie à partir de la révision du %s." + +#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-advanced.php:192 +msgid "Custom field deleted." +msgstr "Champ personnalisé supprimé." + +#: wp-admin/edit-form-advanced.php:176 wp-admin/edit-form-advanced.php:191 +msgid "Custom field updated." +msgstr "Champ personnalisé mis à jour." + +#: wp-admin/includes/class-wp-comments-list-table.php:225 +msgid "No comments found." +msgstr "Aucun commentaire trouvé." + +#: wp-admin/includes/class-wp-comments-list-table.php:433 +#: wp-admin/includes/class-wp-media-list-table.php:222 +#: wp-admin/includes/class-wp-posts-list-table.php:607 +msgid "Empty Trash" +msgstr "Vider la corbeille" + +#: wp-admin/includes/class-wp-comments-list-table.php:433 +msgid "Empty Spam" +msgstr "Supprimer tous les indésirables" + +#: wp-admin/includes/class-wp-comments-list-table.php:425 +#: wp-admin/includes/class-wp-links-list-table.php:123 +#: wp-admin/includes/class-wp-media-list-table.php:217 +#: wp-admin/includes/class-wp-posts-list-table.php:600 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:344 +msgid "Filter" +msgstr "Filtrer" + +#: wp-admin/includes/class-wp-comments-list-table.php:509 +#: wp-admin/includes/class-wp-posts-list-table.php:1945 +msgid "Pings" +msgstr "Pings" + +#: wp-admin/includes/class-wp-comments-list-table.php:371 +#: wp-admin/includes/class-wp-comments-list-table.php:755 +#: wp-admin/includes/class-wp-comments-list-table.php:764 +#: wp-admin/includes/dashboard.php:745 +msgid "Approve" +msgstr "Approuver" + +#: wp-admin/includes/class-wp-comments-list-table.php:367 +#: wp-admin/includes/class-wp-comments-list-table.php:747 +#: wp-admin/includes/class-wp-comments-list-table.php:772 +#: wp-admin/includes/dashboard.php:753 +msgid "Unapprove" +msgstr "Désapprouver" + +#: wp-admin/edit.php:288 wp-admin/includes/class-wp-list-table.php:607 +msgid "Bulk actions" +msgstr "Actions groupées" + +#. translators: 1: Starting number of users on the current page, 2: Ending +#. number of users, 3: Total number of users. +#: wp-admin/includes/deprecated.php:614 +msgid "Displaying %1$s–%2$s of %3$s" +msgstr "Affichage de %1$s à %2$s sur %3$ss" + +#: wp-admin/edit-comments.php:436 +msgid "Search Comments" +msgstr "Rechercher des commentaires" + +#: wp-admin/edit-form-comment.php:117 +msgid "Approved" +msgstr "Approuvé" + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:386 +msgid "%s comment permanently deleted." +msgid_plural "%s comments permanently deleted." +msgstr[0] "%s commentaire supprimé définitivement." +msgstr[1] "%s commentaires supprimés définitivement." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:356 +msgid "%s comment restored from the spam." +msgid_plural "%s comments restored from the spam." +msgstr[0] "%s commentaire rétabli depuis les commentaires indésirables." +msgstr[1] "%s commentaires rétablis depuis les commentaires indésirables." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:344 +msgid "%s comment marked as spam." +msgid_plural "%s comments marked as spam." +msgstr[0] "%s commentaire marqué comme indésirable." +msgstr[1] "%s commentaires marqués comme indésirables." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:334 +msgid "%s comment approved." +msgid_plural "%s comments approved." +msgstr[0] "%s commentaire approuvé." +msgstr[1] "%s commentaires approuvés." + +#: wp-admin/includes/class-wp-media-list-table.php:194 +#: wp-admin/includes/class-wp-media-list-table.php:628 +#: wp-admin/includes/class-wp-media-list-table.php:858 +msgid "Attach" +msgstr "Joindre" + +#: wp-admin/includes/class-wp-media-list-table.php:618 +msgid "(Unattached)" +msgstr "(Non attaché)" + +#: wp-admin/includes/class-wp-media-list-table.php:547 +#: wp-admin/includes/class-wp-posts-list-table.php:1197 +msgid "Unpublished" +msgstr "Non publié" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:825 +#: wp-admin/includes/class-wp-posts-list-table.php:1562 +msgid "View “%s”" +msgstr "Afficher « %s »" + +#: wp-admin/edit-form-comment.php:242 +#: wp-admin/includes/class-wp-comments-list-table.php:811 +#: wp-admin/includes/class-wp-media-list-table.php:810 +#: wp-admin/includes/class-wp-posts-list-table.php:1540 +#: wp-admin/includes/dashboard.php:786 wp-admin/includes/media.php:1736 +msgid "Delete Permanently" +msgstr "Supprimer définitivement" + +#. translators: %s: Link name. +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-links-list-table.php:205 +#: wp-admin/includes/class-wp-media-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:1491 +#: wp-admin/includes/class-wp-terms-list-table.php:491 +#: wp-admin/includes/dashboard.php:675 wp-admin/includes/dashboard.php:1039 +msgid "Edit “%s”" +msgstr "Modifier « %s »" + +#: wp-admin/includes/class-custom-image-header.php:933 +msgid "Choose the part of the image you want to use as your header." +msgstr "Choisissez la partie de l’image que vous voulez utiliser comme entête." + +#: wp-admin/includes/class-custom-image-header.php:915 +#: wp-admin/includes/class-custom-image-header.php:1074 +msgid "Image Processing Error" +msgstr "Erreur lors du traitement de l’image" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-image-header.php:533 +msgid "Header updated. Visit your site to see how it looks." +msgstr "L’entête a été mis à jour. Visiter le site pour voir son nouvel aspect." + +#: wp-admin/includes/class-custom-image-header.php:512 +#: wp-admin/includes/theme.php:336 +msgid "Custom Header" +msgstr "Personnalisation de l’entête" + +#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2602 +#: wp-admin/nav-menus.php:928 wp-admin/options.php:440 +msgid "Save Changes" +msgstr "Enregistrer les modifications" + +#: wp-admin/includes/class-custom-background.php:353 +#: wp-admin/includes/class-custom-image-header.php:663 +msgid "Choose an image from your computer:" +msgstr "Choisissez une image sur votre ordinateur :" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-background.php:264 +msgid "Background updated. Visit your site to see how it looks." +msgstr "L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu." + +#: wp-admin/includes/class-custom-background.php:243 +#: wp-admin/includes/theme.php:334 +msgid "Custom Background" +msgstr "Arrière-plan personnalisé" + +#: wp-admin/comment.php:383 +msgid "Unknown action." +msgstr "Action inconnue." + +#: wp-admin/comment.php:147 +msgid "Approve comment" +msgstr "Approuver le commentaire" + +#: wp-admin/comment.php:146 +msgid "You are about to approve the following comment:" +msgstr "Vous êtes sur le point d’approuver le commentaire suivant :" + +#: wp-admin/comment.php:143 +msgid "Permanently delete comment" +msgstr "Supprimer définitivement le commentaire" + +#: wp-admin/comment.php:142 +msgid "You are about to delete the following comment:" +msgstr "Vous êtes sur le point de supprimer le commentaire suivant :" + +#: wp-admin/comment.php:138 +msgid "You are about to move the following comment to the Trash:" +msgstr "Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :" + +#: wp-admin/comment.php:134 +msgid "You are about to mark the following comment as spam:" +msgstr "Vous êtes sur le point de marquer le commentaire suivant comme indésirable :" + +#: wp-admin/comment.php:88 +msgid "This comment is in the Trash. Please move it out of the Trash if you want to edit it." +msgstr "Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier." + +#: wp-admin/comment.php:295 wp-admin/edit-comments.php:300 +#: wp-admin/includes/comment.php:55 +msgid "Sorry, you are not allowed to edit comments on this post." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cette publication." + +#: wp-admin/authorize-application.php:98 wp-admin/authorize-application.php:116 +msgid "Go Back" +msgstr "Retour" + +#: wp-admin/comment.php:58 wp-admin/edit-form-comment.php:22 +#: wp-admin/includes/template.php:462 +msgid "Edit Comment" +msgstr "Modifier le commentaire" + +#: wp-admin/admin.php:339 wp-admin/import.php:19 wp-admin/menu.php:375 +msgid "Import" +msgstr "Importer" + +#. translators: %s: Admin page generated by a plugin. +#: wp-admin/admin.php:270 +msgid "Cannot load %s." +msgstr "Impossible de charger %s." + +#: wp-admin/admin.php:263 +msgid "Invalid plugin page." +msgstr "Page d’extension non valide." + +#: wp-admin/includes/ajax-actions.php:2208 +#: wp-admin/includes/ajax-actions.php:2214 +#: wp-admin/includes/edit-tag-messages.php:18 +msgid "Item not updated." +msgstr "L’élément n’a pas été mis à jour." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2085 +msgid "Saving is disabled: %s is currently editing this post." +msgstr "Enregistrement automatique désactivé : %s modifie actuellement cette publication." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2089 +msgid "Saving is disabled: %s is currently editing this page." +msgstr "Enregistrement automatique désactivé : %s modifie actuellement cette page." + +#: wp-admin/includes/ajax-actions.php:2082 +msgid "Someone" +msgstr "Quelqu’un" + +#. translators: %s: Date and time. +#: wp-admin/includes/misc.php:1373 +msgid "Draft saved at %s." +msgstr "Brouillon enregistré à %s." + +#. translators: Draft saved date format, see +#. https://www.php.net/manual/datetime.format.php +#: wp-admin/includes/misc.php:1369 +msgid "g:i:s a" +msgstr "G\\h i\\m s\\s" + +#: wp-admin/includes/ajax-actions.php:1658 +#: wp-admin/includes/ajax-actions.php:1666 +msgid "Please provide a custom field value." +msgstr "Veuillez saisir une valeur pour le champ personnalisé." + +#: wp-admin/includes/ajax-actions.php:1350 +msgid "Sorry, you must be logged in to reply to a comment." +msgstr "Désolé, vous devez être connecté·e pour répondre à un commentaire." + +#: wp-admin/includes/taxonomy.php:136 +msgid "You did not enter a category name." +msgstr "Vous n’avez pas saisi de nom de catégorie." + +#. translators: %d: Comment ID. +#: wp-admin/includes/ajax-actions.php:990 +msgid "Comment %d does not exist" +msgstr "Le commentaire %d n’existe pas." + +#: wp-admin/includes/media.php:2840 wp-admin/includes/nav-menu.php:530 +#: wp-admin/includes/nav-menu.php:902 +msgid "»" +msgstr "»" + +#: wp-admin/includes/media.php:2839 wp-admin/includes/nav-menu.php:529 +#: wp-admin/includes/nav-menu.php:901 +msgid "«" +msgstr "«" \ No newline at end of file diff --git a/web/app/languages/admin-network-en_GB.l10n.php b/web/app/languages/admin-network-en_GB.l10n.php new file mode 100644 index 00000000..a57cd490 --- /dev/null +++ b/web/app/languages/admin-network-en_GB.l10n.php @@ -0,0 +1,2 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2025-04-06 12:48:35+0000','plural-forms'=>'nplurals=2; plural=n != 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration - Network Admin','language'=>'en_GB','messages'=>['Documentation on Upgrade Network'=>'Documentation on Upgrade Network','Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.'=>'Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.','Delete this site permanently'=>'Delete this site permanently','Visit to go to the front-end of the live site.'=>'Visit to go to the front end of the live site.','Documentation on Network Settings'=>'Documentation on Network Settings','Documentation on the Network Admin'=>'Documentation on the Network Admin','Documentation on Creating a Network'=>'Documentation on Creating a Network','https://developer.wordpress.org/advanced-administration/server/web-server/nginx/'=>'https://developer.wordpress.org/advanced-administration/server/web-server/nginx/','siteActivate'=>'Activate','Missing site title.'=>'Missing site title.','Table ordered by User Registered Date.'=>'Table ordered by User Registered Date.','Table ordered by Theme Name.'=>'Table ordered by Theme Name.','Table ordered by Site Registered Date.'=>'Table ordered by Site Registered Date.','Table ordered by Last Updated.'=>'Table ordered by Last Updated.','Table ordered by Site Path.'=>'Table ordered by Site Path.','Table ordered by Site Domain Name.'=>'Table ordered by Site Domain Name.','Network configuration authentication keys'=>'Network configuration authentication keys','Network configuration rules for %s'=>'Network configuration rules for %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress has been updated! Next and final step is to individually upgrade the sites in your network.','Cannot create an empty site.'=>'Cannot create an empty site.','You should back up your existing %s file.'=>'You should back up your existing %s file.','You should back up your existing %1$s and %2$s files.'=>'You should back up your existing %1$s and %2$s files.','Visit theme site for %s'=>'Visit theme site for %s','Child theme of %s'=>'Child theme of %s','sitePublic'=>'Public','siteNot spam'=>'Not spam','%s theme will no longer be auto-updated.'=>'%s theme will no longer be auto-updated.' . "\0" . '%s themes will no longer be auto-updated.','%s theme will be auto-updated.'=>'%s theme will be auto-updated.' . "\0" . '%s themes will be auto-updated.','Sorry, you are not allowed to change themes automatic update settings.'=>'Sorry, you are not allowed to change themes automatic update settings.','No themes are currently available.'=>'No themes are currently available.','Y/m/d g:i:s a'=>'j F Y H:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'It seems your network is running with the Nginx web server. Learn more about further configuration.','Deleted (%s)'=>'Deleted (%s)' . "\0" . 'Deleted (%s)','sitesSpam (%s)'=>'Spam (%s)' . "\0" . 'Spam (%s)','Mature (%s)'=>'Mature (%s)' . "\0" . 'Mature (%s)','Archived (%s)'=>'Archived (%s)' . "\0" . 'Archived (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Public (%1$s)','sitesAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','themesUpdate Available (%s)'=>'Update Available (%s)' . "\0" . 'Update Available (%s)','Main'=>'Main','Documentation on the Network Screen'=>'Documentation on the Network Screen','The constant %s cannot be defined when creating a network.'=>'The constant %s cannot be defined when creating a network.','You are about to delete the following sites:'=>'You are about to delete the following sites:','User could not be added to this site.'=>'User could not be added to this site.','The username and a link to set the password will be mailed to this email address.'=>'The username and a link to set the password will be mailed to this email address.','There is a pending change of the network admin email to %s.'=>'There is a pending change of the network admin email to %s.','Sub-domain Installation'=>'Sub-domain Installation','Sub-directory Installation'=>'Sub-directory Installation','Active Child Theme'=>'Active Child Theme','%s KB'=>'%s KB','%s Sites'=>'%s Sites','Sorry, you are not allowed to delete themes for this site.'=>'Sorry, you are not allowed to delete themes for this site.','Sorry, you are not allowed to manage network themes.'=>'Sorry, you are not allowed to manage network themes.','Sorry, you are not allowed to delete that site.'=>'Sorry, you are not allowed to delete that site.','Sorry, you are not allowed to manage themes for this site.'=>'Sorry, you are not allowed to manage themes for this site.','Sorry, you are not allowed to add sites to this network.'=>'Sorry, you are not allowed to add sites to this network.','Sorry, you are not allowed to edit this site.'=>'Sorry, you are not allowed to edit this site.','The email address of the first comment author on a new site.'=>'The email address of the first comment author on a new site.','First Comment Email'=>'First Comment Email','That’s all, stop editing! Happy publishing.'=>'That’s all, stop editing! Happy publishing.','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Add the following to your %1$s file in %2$s above the line reading %3$s:','theme%1$s by %2$s'=>'%1$s by %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Only lowercase letters (a-z), numbers, and hyphens are allowed.','These unique authentication keys are also missing from your %s file.'=>'These unique authentication keys are also missing from your %s file.','This unique authentication key is also missing from your %s file.'=>'This unique authentication key is also missing from your %s file.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.','The internet address of your network will be %s.'=>'The internet address of your network will be %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s, but any links will not have the %3$s prefix.','You cannot change this later.'=>'You cannot change this later.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.','It looks like the Apache %s module is not installed.'=>'It looks like the Apache %s module is not installed.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Please make sure the Apache %s module is installed as it will be used at the end of this installation.','userRegistered'=>'Registered','Super Admin (%s)'=>'Super Admin (%s)' . "\0" . 'Super Admins (%s)','userNot spam'=>'Not spam','userMark as spam'=>'Mark as spam','Visit Theme Site'=>'Visit Theme Site','Broken Theme:'=>'Broken Theme:','Network Disable %s'=>'Network Disable %s','Disable %s'=>'Disable %s','Network Enable %s'=>'Network Enable %s','Enable %s'=>'Enable %s','Network Disable'=>'Network Disable','themesBroken (%s)'=>'Broken (%s)' . "\0" . 'Broken (%s)','themesDisabled (%s)'=>'Disabled (%s)' . "\0" . 'Disabled (%s)','themesEnabled (%s)'=>'Enabled (%s)' . "\0" . 'Enabled (%s)','themesAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','No themes found.'=>'No themes found.','verb; siteArchive'=>'Archive','Unarchive'=>'Unarchive','Never'=>'Never','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Registered','Last Updated'=>'Last Updated','siteNot Spam'=>'Not Spam','siteMark as spam'=>'Mark as spam','No sites found.'=>'No sites found.','Mature'=>'Mature','Deleted'=>'Deleted','siteSpam'=>'Spam','Archived'=>'Archived','A password reset link will be sent to the user via email.'=>'A password reset link will be sent to the user via email.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'You must define the %1$s constant as true in your %2$s file to allow creation of a Network.','Themes list navigation'=>'Themes list navigation','Sites list'=>'Sites list','Sites list navigation'=>'Sites list navigation','Site users list'=>'Site users list','Site users list navigation'=>'Site users list navigation','Filter site users list'=>'Filter site users list','Site themes list'=>'Site themes list','Site themes list navigation'=>'Site themes list navigation','Filter site themes list'=>'Filter site themes list','The domain or path entered conflicts with an existing username.'=>'The domain or path entered conflicts with an existing username.','The requested action is not valid.'=>'The requested action is not valid.','You are about to mark the site %s as not mature.'=>'You are about to mark the site %s as not mature.','You are about to mark the site %s as mature.'=>'You are about to mark the site %s as mature.','You are about to delete the site %s.'=>'You are about to delete the site %s.','You are about to mark the site %s as spam.'=>'You are about to mark the site %s as spam.','You are about to unspam the site %s.'=>'You are about to unspam the site %s.','You are about to archive the site %s.'=>'You are about to archive the site %s.','You are about to unarchive the site %s.'=>'You are about to unarchive the site %s.','You are about to deactivate the site %s.'=>'You are about to deactivate the site %s.','You are about to activate the site %s.'=>'You are about to activate the site %s.','The requested site does not exist.'=>'The requested site does not exist.','Path'=>'Path','Domain'=>'domain','Documentation on Network Users'=>'Documentation on Network Users','Documentation on Network Themes'=>'Documentation on Network Themes','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s','%s theme deleted.'=>'%s theme deleted.' . "\0" . '%s themes deleted.','%s theme disabled.'=>'%s theme disabled.' . "\0" . '%s themes disabled.','%s theme enabled.'=>'%s theme enabled.' . "\0" . '%s themes enabled.','Yes, delete these themes'=>'Yes, delete these themes','You are about to remove the following themes:'=>'You are about to remove the following themes:','These themes may be active on other sites in the network.'=>'These themes may be active on other sites in the network.','Delete Themes'=>'Delete Themes','Set site attributes'=>'Set site attributes','Enable menus'=>'Enable menus','Size in kilobytes'=>'Size in kilobytes','Allowed file types. Separate types by spaces.'=>'Allowed file types. Separate types by spaces.','New registrations settings'=>'New registrations settings','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Add the following to your %1$s file in %2$s, replacing other WordPress rules:','Confirm your action'=>'Confirm your action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.','To search for a site, enter the path or domain.'=>'To search for a site, enter the path or domain.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.','To add a new site, click Create a New Site.'=>'To add a new site, click Create a New Site.','To add a new user, click Create a New User.'=>'To add a new user, click Create a New User.','Quick Tasks'=>'Quick Tasks','To search for a user or site, use the search boxes.'=>'To search for a user or site, use the search boxes.','The Right Now widget on this screen provides current user and site counts on your network.'=>'The Right Now widget on this screen provides current user and site counts on your network.','Modify global network settings'=>'Modify global network settings','Update your network'=>'Update your network','Install and activate themes or plugins'=>'Install and activate themes or plugins','Add and manage sites or users'=>'Add and manage sites or users','From here you can:'=>'From here you can:','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.','Upgrade Network'=>'Upgrade Network','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Subdirectory networks may not be fully compatible with custom wp-content directories.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).','Language Settings'=>'Language Settings','Allow site administrators to add new users to their site via the "Users → Add User" page'=>'Allow site administrators to add new users to their site via the "Users → Add User" page','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.','Enter the username and email.'=>'Enter the username and email.','User created.'=>'User created.','Select a user to remove.'=>'Select a user to remove.','Select a user to change role.'=>'Select a user to change role.','Enter the username of an existing user.'=>'Enter the username of an existing user.','User is already a member of this site.'=>'User is already a member of this site.','Site options updated.'=>'Site options updated.','Site added. Visit Dashboard or Edit Site'=>'Site added. Visit Dashboard or Edit Site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.','Site info updated.'=>'Site info updated.','You cannot delete a theme while it is active on the main site.'=>'You cannot delete a theme while it is active on the main site.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.','No, return me to the theme list'=>'No, return me to the theme list','Yes, delete this theme'=>'Yes, delete this theme','Are you sure you want to delete these themes?'=>'Are you sure you want to delete these themes?','You are about to remove the following theme:'=>'You are about to remove the following theme:' . "\0" . 'You are about to remove the following themes:','This theme may be active on other sites in the network.'=>'This theme may be active on other sites in the network.' . "\0" . 'These themes may be active on other sites in the network.','Delete Theme'=>'Delete Theme' . "\0" . 'Delete Themes','Network enabled themes are not shown on this screen.'=>'Network enabled themes are not shown on this screen.','No theme selected.'=>'No theme selected.','Theme disabled.'=>'Theme disabled.' . "\0" . '%s themes disabled.','Theme enabled.'=>'Theme enabled.' . "\0" . '%s themes enabled.','Edit Site: %s'=>'Edit Site: %s','Invalid site ID.'=>'Invalid site ID.','Sorry, you are not allowed to delete the site %s.'=>'Sorry, you are not allowed to delete the site %s.','Delete which is a permanent action after the confirmation screen.'=>'Delete which is a permanent action after the confirmation screen.','Dashboard leads to the Dashboard for that site.'=>'Dashboard leads to the Dashboard for that site.','An Edit link to a separate Edit Site screen.'=>'An Edit link to a separate Edit Site screen.','Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.','Add Users'=>'Add Users','Cannot add user.'=>'Cannot add user.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'Add User will set up a new user account on the network and send that person an email with username and password.','Updates'=>'Updates','Network Settings'=>'Network Settings','Installed Themes'=>'Installed Themes','All Sites'=>'All Sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Once you complete these steps, your network is enabled and configured. You will have to log in again.','To make your installation more secure, you should also add:'=>'To make your installation more secure, you should also add:','Complete the following steps to enable the features for creating a network of sites.'=>'Complete the following steps to enable the features for creating a network of sites.','Enabling the Network'=>'Enabling the Network','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.','An existing WordPress network was detected.'=>'An existing WordPress network was detected.','The original configuration steps are shown here for reference.'=>'The original configuration steps are shown here for reference.','Your email address.'=>'Your email address.','What would you like to call your network?'=>'What would you like to call your network?','Network Title'=>'Network Title','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Because your installation is not new, the sites in your WordPress network must use sub-domains.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Because your installation is in a directory, the sites in your WordPress network must use sub-directories.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.','Network Details'=>'Network Details','Server Address'=>'Server Address','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'like %1$s/site1 and %1$s/site2','Sub-directories'=>'Sub-directories','subdomain exampleslike site1.%1$s and site2.%1$s'=>'like site1.%1$s and site2.%1$s','Sub-domains'=>'Sub-domains','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.','Addresses of Sites in your Network'=>'Addresses of Sites in your Network','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.','Welcome to the Network installation process!'=>'Welcome to the Network installation process!','The network could not be created.'=>'The network could not be created.','Once the network is created, you may reactivate your plugins.'=>'Once the network is created, you may reactivate your plugins.','Please deactivate your plugins before enabling the Network feature.'=>'Please deactivate your plugins before enabling the Network feature.','Network'=>'Network','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the toolbar.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.','Create a Network of WordPress Sites'=>'Create a Network of WordPress Sites','The Network creation panel is not for WordPress MU networks.'=>'The Network creation panel is not for WordPress MU networks.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Warning! User cannot be modified. The user %s is a network administrator.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'If the admin email for the new site does not exist in the database, a new user will also be created.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.','Hovering over each site reveals seven options (three for the primary site):'=>'Hovering over each site reveals seven options (three for the primary site):','Operational settings has fields for the network’s name and admin email.'=>'Operational settings has fields for the network’s name and admin email.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.','You can also go to the user’s profile page by clicking on the individual username.'=>'You can also go to the user’s profile page by clicking on the individual username.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.','This table shows all users across the network and the sites to which they are assigned.'=>'This table shows all users across the network and the sites to which they are assigned.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'If this process fails for any reason, users logging in to their sites will force the same update.','If a version update to core has not happened, clicking this button will not affect anything.'=>'If a version update to core has not happened, clicking this button will not affect anything.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'The following words are reserved for use by WordPress functions and cannot be used as site names: %s','If your browser does not start loading the next page automatically, click this link:'=>'If your browser does not start loading the next page automatically, click this link:','If you want to ban domains from site registrations. One domain per line.'=>'If you want to ban domains from site registrations. One domain per line.','If you want to limit site registrations to certain domains. One domain per line.'=>'If you want to limit site registrations to certain domains. One domain per line.','Users removed from spam.'=>'Users removed from spam.','Site marked as spam.'=>'Site marked as spam.','Site removed from spam.'=>'Site removed from spam.','Sites marked as spam.'=>'Sites marked as spam.','Sites removed from spam.'=>'Sites removed from spam.','Users deleted.'=>'Users deleted.','Users marked as spam.'=>'Users marked as spam.','Site deactivated.'=>'Site deactivated.','Site activated.'=>'Site activated.','Site unarchived.'=>'Site unarchived.','Site archived.'=>'Site archived.','Site deleted.'=>'Site deleted.','Sites deleted.'=>'Sites deleted.','Sorry, you are not allowed to change the current site.'=>'Sorry, you are not allowed to change the current site.','There was an error creating the user.'=>'There was an error creating the user.','Upload file types'=>'Upload file types','Limit total size of files uploaded to %s MB'=>'Limit total size of files uploaded to %s MB','The URL for the first comment on a new site.'=>'The URL for the first comment on a new site.','The author of the first comment on a new site.'=>'The author of the first comment on a new site.','The first comment on a new site.'=>'The first comment on a new site.','The first page on a new site.'=>'The first page on a new site.','The first post on a new site.'=>'The first post on a new site.','All done!'=>'All done!','Both sites and user accounts can be registered'=>'Both sites and user accounts can be registered','Logged in users may register new sites'=>'Logged in users may register new sites','User accounts may be registered'=>'User accounts may be registered','Registration is disabled'=>'Registration is disabled','Enable administration menus'=>'Enable administration menus','Upload Settings'=>'Upload Settings','New Site Settings'=>'New Site Settings','Registration Settings'=>'Registration Settings','Operational Settings'=>'Operational Settings','Missing email address.'=>'Missing email address.','Missing or invalid site address.'=>'Missing or invalid site address.','Next Sites'=>'Next Sites','Site upload space'=>'Site upload space','The welcome email sent to new site owners.'=>'The welcome email sent to new site owners.','Users are not allowed to register these sites. Separate names by spaces.'=>'Users are not allowed to register these sites. Separate names by spaces.','Send the network admin an email notification every time someone registers a site or user account'=>'Send the network admin an email notification every time someone registers a site or user account','Network Admin Email'=>'Network Admin Email','A new user will be created if the above email address is not in the database.'=>'A new user will be created if the above email address is not in the database.','Admin Email'=>'Admin Email','Add Site'=>'Add Site','Default Language'=>'Default Language','Max upload file size'=>'Max upload file size','First Comment URL'=>'First Comment URL','First Comment Author'=>'First Comment Author','First Comment'=>'First Comment','First Page'=>'First Page','The welcome email sent to new users.'=>'The welcome email sent to new users.','Welcome User Email'=>'Welcome User Email','Welcome Email'=>'Welcome Email','Banned Email Domains'=>'Banned Email Domains','Limited Email Registrations'=>'Limited Email Registrations','Banned Names'=>'Banned Names','Add New User'=>'Add New User','Registration notification'=>'Registration notification','Allow new registrations'=>'Allow new registrations','Duplicated username or email address.'=>'Duplicated username or email address.','Cannot create an empty user.'=>'Cannot create an empty user.','Confirm'=>'Confirm']]; \ No newline at end of file diff --git a/web/app/languages/admin-network-en_GB.mo b/web/app/languages/admin-network-en_GB.mo new file mode 100644 index 00000000..5c66df94 Binary files /dev/null and b/web/app/languages/admin-network-en_GB.mo differ diff --git a/web/app/languages/admin-network-en_GB.po b/web/app/languages/admin-network-en_GB.po new file mode 100644 index 00000000..2427022a --- /dev/null +++ b/web/app/languages/admin-network-en_GB.po @@ -0,0 +1,1454 @@ +# Translation of WordPress - 6.8.x - Development - Administration - Network Admin in English (UK) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration - Network Admin package. +msgid "" +msgstr "" +"PO-Revision-Date: 2025-04-06 12:48:35+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: en_GB\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration - Network Admin\n" + +#: wp-admin/network/upgrade.php:32 +msgid "Documentation on Upgrade Network" +msgstr "Documentation on Upgrade Network" + +#: wp-admin/network/sites.php:124 +msgid "Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory." +msgstr "Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory." + +#: wp-admin/network/sites.php:121 +msgid "Delete this site permanently" +msgstr "Delete this site permanently" + +#: wp-admin/network/sites.php:38 +msgid "Visit to go to the front-end of the live site." +msgstr "Visit to go to the front end of the live site." + +#: wp-admin/network/settings.php:64 +msgid "Documentation on Network Settings" +msgstr "Documentation on Network Settings" + +#: wp-admin/network/index.php:56 +msgid "Documentation on the Network Admin" +msgstr "Documentation on the Network Admin" + +#: wp-admin/network.php:68 wp-admin/network.php:81 +msgid "Documentation on Creating a Network" +msgstr "Documentation on Creating a Network" + +#: wp-admin/includes/network.php:680 +msgid "https://developer.wordpress.org/advanced-administration/server/web-server/nginx/" +msgstr "https://developer.wordpress.org/advanced-administration/server/web-server/nginx/" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:761 +msgctxt "site" +msgid "Activate" +msgstr "Activate" + +#: wp-admin/network/site-new.php:87 +msgid "Missing site title." +msgstr "Missing site title." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:218 +msgid "Table ordered by User Registered Date." +msgstr "Table ordered by User Registered Date." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:348 +msgid "Table ordered by Theme Name." +msgstr "Table ordered by Theme Name." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:404 +msgid "Table ordered by Site Registered Date." +msgstr "Table ordered by Site Registered Date." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:403 +msgid "Table ordered by Last Updated." +msgstr "Table ordered by Last Updated." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:398 +msgid "Table ordered by Site Path." +msgstr "Table ordered by Site Path." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:395 +msgid "Table ordered by Site Domain Name." +msgstr "Table ordered by Site Domain Name." + +#: wp-admin/includes/network.php:588 +msgid "Network configuration authentication keys" +msgstr "Network configuration authentication keys" + +#. translators: %s: File name (wp-config.php, .htaccess or web.config). +#: wp-admin/includes/network.php:525 wp-admin/includes/network.php:664 +#: wp-admin/includes/network.php:726 +msgid "Network configuration rules for %s" +msgstr "Network configuration rules for %s" + +#: wp-admin/network/upgrade.php:141 +msgid "WordPress has been updated! Next and final step is to individually upgrade the sites in your network." +msgstr "WordPress has been updated! Next and final step is to individually upgrade the sites in your network." + +#: wp-admin/network/site-new.php:40 +msgid "Cannot create an empty site." +msgstr "Cannot create an empty site." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:496 +msgid "You should back up your existing %s file." +msgstr "You should back up your existing %s file." + +#. translators: 1: wp-config.php, 2: .htaccess +#. translators: 1: wp-config.php, 2: web.config +#: wp-admin/includes/network.php:482 wp-admin/includes/network.php:489 +msgid "You should back up your existing %1$s and %2$s files." +msgstr "You should back up your existing %1$s and %2$s files." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:744 +msgid "Visit theme site for %s" +msgstr "Visit theme site for %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:757 +msgid "Child theme of %s" +msgstr "Child theme of %s" + +#: wp-admin/network/site-info.php:199 +msgctxt "site" +msgid "Public" +msgstr "Public" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:297 +msgctxt "site" +msgid "Not spam" +msgstr "Not spam" + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:438 +msgid "%s theme will no longer be auto-updated." +msgid_plural "%s themes will no longer be auto-updated." +msgstr[0] "%s theme will no longer be auto-updated." +msgstr[1] "%s themes will no longer be auto-updated." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:427 +msgid "%s theme will be auto-updated." +msgid_plural "%s themes will be auto-updated." +msgstr[0] "%s theme will be auto-updated." +msgstr[1] "%s themes will be auto-updated." + +#: wp-admin/network/themes.php:240 +msgid "Sorry, you are not allowed to change themes automatic update settings." +msgstr "Sorry, you are not allowed to change themes automatic update settings." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:322 +msgid "No themes are currently available." +msgstr "No themes are currently available." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:503 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:528 +#: wp-admin/includes/class-wp-ms-users-list-table.php:346 +msgid "Y/m/d g:i:s a" +msgstr "j F Y H:i:s" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/network.php:679 +msgid "It seems your network is running with Nginx web server. Learn more about further configuration." +msgstr "It seems your network is running with the Nginx web server. Learn more about further configuration." + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:258 +msgid "Deleted (%s)" +msgid_plural "Deleted (%s)" +msgstr[0] "Deleted (%s)" +msgstr[1] "Deleted (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:251 +msgctxt "sites" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Spam (%s)" +msgstr[1] "Spam (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:245 +msgid "Mature (%s)" +msgid_plural "Mature (%s)" +msgstr[0] "Mature (%s)" +msgstr[1] "Mature (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:239 +msgid "Archived (%s)" +msgid_plural "Archived (%s)" +msgstr[0] "Archived (%s)" +msgstr[1] "Archived (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:233 +msgid "Public (%s)" +msgid_plural "Public (%s)" +msgstr[0] "Public (%s)" +msgstr[1] "Public (%1$s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:226 +msgctxt "sites" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:407 +msgctxt "themes" +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Update Available (%s)" +msgstr[1] "Update Available (%s)" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:652 +msgid "Main" +msgstr "Main" + +#: wp-admin/network.php:69 wp-admin/network.php:82 +msgid "Documentation on the Network Screen" +msgstr "Documentation on the Network Screen" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/includes/network.php:120 +msgid "The constant %s cannot be defined when creating a network." +msgstr "The constant %s cannot be defined when creating a network." + +#: wp-admin/network/sites.php:208 +msgid "You are about to delete the following sites:" +msgstr "You are about to delete the following sites:" + +#: wp-admin/network/site-users.php:249 +msgid "User could not be added to this site." +msgstr "User could not be added to this site." + +#: wp-admin/network/site-new.php:287 +msgid "The username and a link to set the password will be mailed to this email address." +msgstr "The username and a link to set the password will be mailed to this email address." + +#. translators: %s: New network admin email. +#: wp-admin/network/settings.php:177 +msgid "There is a pending change of the network admin email to %s." +msgstr "There is a pending change of the network admin email to %s." + +#: wp-admin/includes/network.php:352 +msgid "Sub-domain Installation" +msgstr "Sub-domain Installation" + +#: wp-admin/includes/network.php:321 wp-admin/includes/network.php:339 +msgid "Sub-directory Installation" +msgstr "Sub-directory Installation" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:950 +msgid "Active Child Theme" +msgstr "Active Child Theme" + +#. translators: %s: File size in kilobytes. +#: wp-admin/network/settings.php:442 +msgid "%s KB" +msgstr "%s KB" + +#. translators: %s: Default network title. +#: wp-admin/includes/network.php:179 +msgid "%s Sites" +msgstr "%s Sites" + +#: wp-admin/network/themes.php:102 +msgid "Sorry, you are not allowed to delete themes for this site." +msgstr "Sorry, you are not allowed to delete themes for this site." + +#: wp-admin/network/themes.php:14 +msgid "Sorry, you are not allowed to manage network themes." +msgstr "Sorry, you are not allowed to manage network themes." + +#: wp-admin/network/sites.php:335 +msgid "Sorry, you are not allowed to delete that site." +msgstr "Sorry, you are not allowed to delete that site." + +#: wp-admin/network/site-themes.php:14 +msgid "Sorry, you are not allowed to manage themes for this site." +msgstr "Sorry, you are not allowed to manage themes for this site." + +#: wp-admin/network/site-new.php:17 +msgid "Sorry, you are not allowed to add sites to this network." +msgstr "Sorry, you are not allowed to add sites to this network." + +#: wp-admin/network/site-info.php:14 wp-admin/network/site-settings.php:14 +#: wp-admin/network/site-users.php:14 +msgid "Sorry, you are not allowed to edit this site." +msgstr "Sorry, you are not allowed to edit this site." + +#: wp-admin/network/settings.php:389 +msgid "The email address of the first comment author on a new site." +msgstr "The email address of the first comment author on a new site." + +#: wp-admin/network/settings.php:385 +msgid "First Comment Email" +msgstr "First Comment Email" + +#. translators: This string should only be translated if wp-config-sample.php +#. is localized. You can check the localized release package or +#. https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php +#: wp-admin/includes/network.php:517 +msgid "That’s all, stop editing! Happy publishing." +msgstr "That’s all, stop editing! Happy publishing." + +#. translators: 1: wp-config.php, 2: Location of wp-config file, 3: Translated +#. version of "That's all, stop editing! Happy publishing." +#: wp-admin/includes/network.php:509 +msgid "Add the following to your %1$s file in %2$s above the line reading %3$s:" +msgstr "Add the following to your %1$s file in %2$s above the line reading %3$s:" + +#. translators: 1: Theme name, 2: Theme author. +#: wp-admin/network/themes.php:164 +msgctxt "theme" +msgid "%1$s by %2$s" +msgstr "%1$s by %2$s" + +#: wp-admin/network/site-new.php:229 +msgid "Only lowercase letters (a-z), numbers, and hyphens are allowed." +msgstr "Only lowercase letters (a-z), numbers, and hyphens are allowed." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:581 +msgid "These unique authentication keys are also missing from your %s file." +msgstr "These unique authentication keys are also missing from your %s file." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:575 +msgid "This unique authentication key is also missing from your %s file." +msgstr "This unique authentication key is also missing from your %s file." + +#. translators: 1: localhost, 2: localhost.localdomain +#: wp-admin/includes/network.php:326 +msgid "Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains." +msgstr "Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains." + +#. translators: %s: Host name. +#: wp-admin/includes/network.php:308 wp-admin/includes/network.php:368 +msgid "The internet address of your network will be %s." +msgstr "The internet address of your network will be %s." + +#. translators: 1: Site URL, 2: Host name, 3: www. +#: wp-admin/includes/network.php:294 +msgid "You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix." +msgstr "You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s, but any links will not have the %3$s prefix." + +#: wp-admin/includes/network.php:242 +msgid "You cannot change this later." +msgstr "You cannot change this later." + +#: wp-admin/includes/network.php:241 +msgid "Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories." +msgstr "Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories." + +#. translators: 1: mod_rewrite, 2: mod_rewrite documentation URL, 3: Google +#. search for mod_rewrite. +#: wp-admin/includes/network.php:222 +msgid "If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up." +msgstr "If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:214 +msgid "It looks like the Apache %s module is not installed." +msgstr "It looks like the Apache %s module is not installed." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:206 +msgid "Please make sure the Apache %s module is installed as it will be used at the end of this installation." +msgstr "Please make sure the Apache %s module is installed as it will be used at the end of this installation." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:196 +#: wp-admin/includes/class-wp-ms-users-list-table.php:218 +msgctxt "user" +msgid "Registered" +msgstr "Registered" + +#. translators: Number of users. +#: wp-admin/includes/class-wp-ms-users-list-table.php:159 +msgid "Super Admin (%s)" +msgid_plural "Super Admins (%s)" +msgstr[0] "Super Admin (%s)" +msgstr[1] "Super Admins (%s)" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:117 +msgctxt "user" +msgid "Not spam" +msgstr "Not spam" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:116 +msgctxt "user" +msgid "Mark as spam" +msgstr "Mark as spam" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:750 +msgid "Visit Theme Site" +msgstr "Visit Theme Site" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:707 +msgid "Broken Theme:" +msgstr "Broken Theme:" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:613 +msgid "Network Disable %s" +msgstr "Network Disable %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:610 +msgid "Disable %s" +msgstr "Disable %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:587 +msgid "Network Enable %s" +msgstr "Network Enable %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:584 +msgid "Enable %s" +msgstr "Enable %s" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:472 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:620 +msgid "Network Disable" +msgstr "Network Disable" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:416 +msgctxt "themes" +msgid "Broken (%s)" +msgid_plural "Broken (%s)" +msgstr[0] "Broken (%s)" +msgstr[1] "Broken (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:398 +msgctxt "themes" +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Disabled (%s)" +msgstr[1] "Disabled (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:389 +msgctxt "themes" +msgid "Enabled (%s)" +msgid_plural "Enabled (%s)" +msgstr[0] "Enabled (%s)" +msgstr[1] "Enabled (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:380 +msgctxt "themes" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "All (%s)" +msgstr[1] "All (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:320 +msgid "No themes found." +msgstr "No themes found." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:796 +msgctxt "verb; site" +msgid "Archive" +msgstr "Archive" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:785 +msgid "Unarchive" +msgstr "Unarchive" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:507 +msgid "Never" +msgstr "Never" + +#. translators: 1: Site title, 2: Site tagline. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:479 +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:369 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:404 +#: wp-admin/network/site-info.php:191 +msgctxt "site" +msgid "Registered" +msgstr "Registered" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:368 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:403 +#: wp-admin/network/site-info.php:195 +msgid "Last Updated" +msgstr "Last Updated" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:809 +msgctxt "site" +msgid "Not Spam" +msgstr "Not Spam" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:296 +msgctxt "site" +msgid "Mark as spam" +msgstr "Mark as spam" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:211 +msgid "No sites found." +msgstr "No sites found." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:41 +#: wp-admin/network/site-info.php:205 +msgid "Mature" +msgstr "Mature" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:40 +#: wp-admin/network/site-info.php:203 +msgid "Deleted" +msgstr "Deleted" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:39 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:820 +#: wp-admin/network/site-info.php:202 +msgctxt "site" +msgid "Spam" +msgstr "Spam" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:38 +#: wp-admin/network/site-info.php:201 +msgid "Archived" +msgstr "Archived" + +#: wp-admin/network/site-users.php:376 wp-admin/network/user-new.php:149 +msgid "A password reset link will be sent to the user via email." +msgstr "A password reset link will be sent to the user via email." + +#. translators: 1: NOBLOGREDIRECT, 2: wp-config.php +#: wp-admin/network/settings.php:227 +msgid "If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site." +msgstr "If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site." + +#. translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php +#: wp-admin/network.php:44 +msgid "You must define the %1$s constant as true in your %2$s file to allow creation of a Network." +msgstr "You must define the %1$s constant as true in your %2$s file to allow creation of a Network." + +#: wp-admin/network/themes.php:346 +msgid "Themes list navigation" +msgstr "Themes list navigation" + +#: wp-admin/network/sites.php:51 +msgid "Sites list" +msgstr "Sites list" + +#: wp-admin/network/sites.php:50 +msgid "Sites list navigation" +msgstr "Sites list navigation" + +#: wp-admin/network/site-users.php:27 +msgid "Site users list" +msgstr "Site users list" + +#: wp-admin/network/site-users.php:26 +msgid "Site users list navigation" +msgstr "Site users list navigation" + +#: wp-admin/network/site-users.php:25 +msgid "Filter site users list" +msgstr "Filter site users list" + +#: wp-admin/network/site-themes.php:24 +msgid "Site themes list" +msgstr "Site themes list" + +#: wp-admin/network/site-themes.php:23 +msgid "Site themes list navigation" +msgstr "Site themes list navigation" + +#: wp-admin/network/site-themes.php:22 +msgid "Filter site themes list" +msgstr "Filter site themes list" + +#: wp-admin/network/site-new.php:125 +msgid "The domain or path entered conflicts with an existing username." +msgstr "The domain or path entered conflicts with an existing username." + +#: wp-admin/network/sites.php:88 +msgid "The requested action is not valid." +msgstr "The requested action is not valid." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:80 +msgid "You are about to mark the site %s as not mature." +msgstr "You are about to mark the site %s as not mature." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:78 +msgid "You are about to mark the site %s as mature." +msgstr "You are about to mark the site %s as mature." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:76 +msgid "You are about to delete the site %s." +msgstr "You are about to delete the site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:74 +msgid "You are about to mark the site %s as spam." +msgstr "You are about to mark the site %s as spam." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:72 +msgid "You are about to unspam the site %s." +msgstr "You are about to unspam the site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:70 +msgid "You are about to archive the site %s." +msgstr "You are about to archive the site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:68 +msgid "You are about to unarchive the site %s." +msgstr "You are about to unarchive the site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:66 +msgid "You are about to deactivate the site %s." +msgstr "You are about to deactivate the site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:64 +msgid "You are about to activate the site %s." +msgstr "You are about to activate the site %s." + +#: wp-admin/network/site-info.php:28 wp-admin/network/site-settings.php:28 +#: wp-admin/network/site-themes.php:53 wp-admin/network/site-users.php:46 +msgid "The requested site does not exist." +msgstr "The requested site does not exist." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:397 +msgid "Path" +msgstr "Path" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:394 +msgid "Domain" +msgstr "domain" + +#: wp-admin/network/user-new.php:29 wp-admin/network/users.php:242 +msgid "Documentation on Network Users" +msgstr "Documentation on Network Users" + +#: wp-admin/network/themes.php:338 +msgid "Documentation on Network Themes" +msgstr "Documentation on Network Themes" + +#. translators: 1: Site URL, 2: Server error message. +#: wp-admin/network/upgrade.php:99 +msgid "Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s" +msgstr "Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s" + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:416 +msgid "%s theme deleted." +msgid_plural "%s themes deleted." +msgstr[0] "%s theme deleted." +msgstr[1] "%s themes deleted." + +#. translators: %s: Number of themes. +#: wp-admin/network/site-themes.php:214 wp-admin/network/themes.php:405 +msgid "%s theme disabled." +msgid_plural "%s themes disabled." +msgstr[0] "%s theme disabled." +msgstr[1] "%s themes disabled." + +#. translators: %s: Number of themes. +#: wp-admin/network/site-themes.php:197 wp-admin/network/themes.php:394 +msgid "%s theme enabled." +msgid_plural "%s themes enabled." +msgstr[0] "%s theme enabled." +msgstr[1] "%s themes enabled." + +#: wp-admin/network/themes.php:190 +msgid "Yes, delete these themes" +msgstr "Yes, delete these themes" + +#: wp-admin/network/themes.php:157 +msgid "You are about to remove the following themes:" +msgstr "You are about to remove the following themes:" + +#: wp-admin/network/themes.php:151 +msgid "These themes may be active on other sites in the network." +msgstr "These themes may be active on other sites in the network." + +#: wp-admin/network/themes.php:148 +msgid "Delete Themes" +msgstr "Delete Themes" + +#. translators: Hidden accessibility text. +#: wp-admin/network/site-info.php:214 +msgid "Set site attributes" +msgstr "Set site attributes" + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:519 +msgid "Enable menus" +msgstr "Enable menus" + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:449 +msgid "Size in kilobytes" +msgstr "Size in kilobytes" + +#: wp-admin/network/settings.php:431 +msgid "Allowed file types. Separate types by spaces." +msgstr "Allowed file types. Separate types by spaces." + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:215 +msgid "New registrations settings" +msgstr "New registrations settings" + +#. translators: 1: File name (.htaccess or web.config), 2: File path. +#: wp-admin/includes/network.php:651 wp-admin/includes/network.php:713 +msgid "Add the following to your %1$s file in %2$s, replacing other WordPress rules:" +msgstr "Add the following to your %1$s file in %2$s, replacing other WordPress rules:" + +#: wp-admin/network/sites.php:113 wp-admin/network/sites.php:203 +msgid "Confirm your action" +msgstr "Confirm your action" + +#: wp-admin/network/users.php:232 +msgid "Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site." +msgstr "Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site." + +#: wp-admin/network/index.php:44 +msgid "To search for a site, enter the path or domain." +msgstr "To search for a site, enter the path or domain." + +#: wp-admin/network/index.php:43 +msgid "To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*." +msgstr "To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*." + +#: wp-admin/network/index.php:41 +msgid "To add a new site, click Create a New Site." +msgstr "To add a new site, click Create a New Site." + +#: wp-admin/network/index.php:40 +msgid "To add a new user, click Create a New User." +msgstr "To add a new user, click Create a New User." + +#: wp-admin/network/index.php:49 +msgid "Quick Tasks" +msgstr "Quick Tasks" + +#: wp-admin/network/index.php:42 +msgid "To search for a user or site, use the search boxes." +msgstr "To search for a user or site, use the search boxes." + +#: wp-admin/network/index.php:39 +msgid "The Right Now widget on this screen provides current user and site counts on your network." +msgstr "The Right Now widget on this screen provides current user and site counts on your network." + +#: wp-admin/network/index.php:29 +msgid "Modify global network settings" +msgstr "Modify global network settings" + +#: wp-admin/network/index.php:28 +msgid "Update your network" +msgstr "Update your network" + +#: wp-admin/network/index.php:27 +msgid "Install and activate themes or plugins" +msgstr "Install and activate themes or plugins" + +#: wp-admin/network/index.php:26 +msgid "Add and manage sites or users" +msgstr "Add and manage sites or users" + +#: wp-admin/network/index.php:25 +msgid "From here you can:" +msgstr "From here you can:" + +#: wp-admin/network/index.php:24 +msgid "Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network." +msgstr "Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network." + +#: wp-admin/network/upgrade.php:24 +msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." +msgstr "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." + +#: wp-admin/network/menu.php:51 wp-admin/network/upgrade.php:16 +#: wp-admin/network/upgrade.php:43 wp-admin/network/upgrade.php:145 +msgid "Upgrade Network" +msgstr "Upgrade Network" + +#: wp-admin/includes/network.php:277 wp-admin/includes/network.php:657 +#: wp-admin/includes/network.php:719 +msgid "Subdirectory networks may not be fully compatible with custom wp-content directories." +msgstr "Subdirectory networks may not be fully compatible with custom wp-content directories." + +#: wp-admin/network.php:64 +msgid "Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules)." +msgstr "Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules)." + +#: wp-admin/network/settings.php:461 +msgid "Language Settings" +msgstr "Language Settings" + +#: wp-admin/network/settings.php:253 +msgid "Allow site administrators to add new users to their site via the \"Users → Add User\" page" +msgstr "Allow site administrators to add new users to their site via the \"Users → Add User\" page" + +#: wp-admin/network/settings.php:58 +msgid "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." +msgstr "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." + +#: wp-admin/network/site-users.php:273 +msgid "Enter the username and email." +msgstr "Enter the username and email." + +#: wp-admin/network/site-users.php:270 +msgid "User created." +msgstr "User created." + +#: wp-admin/network/site-users.php:266 +msgid "Select a user to remove." +msgstr "Select a user to remove." + +#: wp-admin/network/site-users.php:259 +msgid "Select a user to change role." +msgstr "Select a user to change role." + +#: wp-admin/network/site-users.php:252 +msgid "Enter the username of an existing user." +msgstr "Enter the username of an existing user." + +#: wp-admin/network/site-users.php:246 +msgid "User is already a member of this site." +msgstr "User is already a member of this site." + +#: wp-admin/network/site-settings.php:78 +msgid "Site options updated." +msgstr "Site options updated." + +#. translators: 1: Dashboard URL, 2: Network admin edit URL. +#: wp-admin/network/site-new.php:174 +msgid "Site added. Visit Dashboard or Edit Site" +msgstr "Site added. Visit Dashboard or Edit Site" + +#: wp-admin/network/site-new.php:25 +msgid "This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings." +msgstr "This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings." + +#: wp-admin/network/site-info.php:129 +msgid "Site info updated." +msgstr "Site info updated." + +#: wp-admin/network/themes.php:446 +msgid "You cannot delete a theme while it is active on the main site." +msgstr "You cannot delete a theme while it is active on the main site." + +#: wp-admin/network/themes.php:316 +msgid "Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes." +msgstr "Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes." + +#: wp-admin/network/themes.php:197 +msgid "No, return me to the theme list" +msgstr "No, return me to the theme list" + +#: wp-admin/network/themes.php:188 +msgid "Yes, delete this theme" +msgstr "Yes, delete this theme" + +#: wp-admin/network/themes.php:174 +msgid "Are you sure you want to delete these themes?" +msgstr "Are you sure you want to delete these themes?" + +#: wp-admin/network/themes.php:146 +msgid "You are about to remove the following theme:" +msgstr "You are about to remove the following theme:" + +#: wp-admin/network/themes.php:140 +msgid "This theme may be active on other sites in the network." +msgstr "This theme may be active on other sites in the network." + +#: wp-admin/network/themes.php:137 +msgid "Delete Theme" +msgstr "Delete Theme" + +#: wp-admin/network/site-themes.php:237 +msgid "Network enabled themes are not shown on this screen." +msgstr "Network enabled themes are not shown on this screen." + +#: wp-admin/network/site-themes.php:227 wp-admin/network/themes.php:443 +msgid "No theme selected." +msgstr "No theme selected." + +#: wp-admin/network/site-themes.php:211 wp-admin/network/themes.php:401 +msgid "Theme disabled." +msgstr "Theme disabled." + +#: wp-admin/network/site-themes.php:194 wp-admin/network/themes.php:390 +msgid "Theme enabled." +msgstr "Theme enabled." + +#. translators: %s: Site title. +#: wp-admin/network/site-info.php:135 wp-admin/network/site-settings.php:84 +#: wp-admin/network/site-themes.php:171 wp-admin/network/site-users.php:200 +msgid "Edit Site: %s" +msgstr "Edit Site: %s" + +#: wp-admin/network/site-info.php:23 wp-admin/network/site-settings.php:23 +#: wp-admin/network/site-themes.php:46 wp-admin/network/site-users.php:41 +msgid "Invalid site ID." +msgstr "Invalid site ID." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:178 +msgid "Sorry, you are not allowed to delete the site %s." +msgstr "Sorry, you are not allowed to delete the site %s." + +#: wp-admin/network/sites.php:37 +msgid "Delete which is a permanent action after the confirmation screen." +msgstr "Delete which is a permanent action after the confirmation screen." + +#: wp-admin/network/sites.php:35 +msgid "Dashboard leads to the Dashboard for that site." +msgstr "Dashboard leads to the Dashboard for that site." + +#: wp-admin/network/sites.php:34 +msgid "An Edit link to a separate Edit Site screen." +msgstr "An Edit link to a separate Edit Site screen." + +#: wp-admin/network/sites.php:31 +msgid "Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." + +#: wp-admin/network/settings.php:251 +msgid "Add Users" +msgstr "Add Users" + +#: wp-admin/network/user-new.php:55 +msgid "Cannot add user." +msgstr "Cannot add user." + +#: wp-admin/network/user-new.php:22 +msgid "Add User will set up a new user account on the network and send that person an email with username and password." +msgstr "Add User will set up a new user account on the network and send that person an email with username and password." + +#: wp-admin/network/menu.php:46 +msgid "Updates" +msgstr "Updates" + +#: wp-admin/network/menu.php:116 wp-admin/network/settings.php:21 +msgid "Network Settings" +msgstr "Network Settings" + +#: wp-admin/network/menu.php:85 +msgid "Installed Themes" +msgstr "Installed Themes" + +#: wp-admin/network/menu.php:57 +msgid "All Sites" +msgstr "All Sites" + +#: wp-admin/includes/network.php:740 +msgid "Once you complete these steps, your network is enabled and configured. You will have to log in again." +msgstr "Once you complete these steps, your network is enabled and configured. You will have to log in again." + +#: wp-admin/includes/network.php:586 +msgid "To make your installation more secure, you should also add:" +msgstr "To make your installation more secure, you should also add:" + +#: wp-admin/includes/network.php:471 +msgid "Complete the following steps to enable the features for creating a network of sites." +msgstr "Complete the following steps to enable the features for creating a network of sites." + +#: wp-admin/includes/network.php:470 +msgid "Enabling the Network" +msgstr "Enabling the Network" + +#: wp-admin/includes/network.php:459 +msgid "Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables." +msgstr "Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables." + +#: wp-admin/includes/network.php:453 +msgid "An existing WordPress network was detected." +msgstr "An existing WordPress network was detected." + +#: wp-admin/includes/network.php:447 +msgid "The original configuration steps are shown here for reference." +msgstr "The original configuration steps are shown here for reference." + +#: wp-admin/includes/network.php:389 +msgid "Your email address." +msgstr "Your email address." + +#: wp-admin/includes/network.php:380 +msgid "What would you like to call your network?" +msgstr "What would you like to call your network?" + +#: wp-admin/includes/network.php:376 wp-admin/network/settings.php:159 +msgid "Network Title" +msgstr "Network Title" + +#: wp-admin/includes/network.php:355 +msgid "Because your installation is not new, the sites in your WordPress network must use sub-domains." +msgstr "Because your installation is not new, the sites in your WordPress network must use sub-domains." + +#: wp-admin/includes/network.php:342 +msgid "Because your installation is in a directory, the sites in your WordPress network must use sub-directories." +msgstr "Because your installation is in a directory, the sites in your WordPress network must use sub-directories." + +#: wp-admin/includes/network.php:332 wp-admin/includes/network.php:345 +#: wp-admin/includes/network.php:356 +msgid "The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links." +msgstr "The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links." + +#: wp-admin/includes/network.php:317 +msgid "Network Details" +msgstr "Network Details" + +#: wp-admin/includes/network.php:289 wp-admin/includes/network.php:303 +#: wp-admin/includes/network.php:363 +msgid "Server Address" +msgstr "Server Address" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:264 +msgctxt "subdirectory examples" +msgid "like %1$s/site1 and %1$s/site2" +msgstr "like %1$s/site1 and %1$s/site2" + +#: wp-admin/includes/network.php:259 +msgid "Sub-directories" +msgstr "Sub-directories" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:252 +msgctxt "subdomain examples" +msgid "like site1.%1$s and site2.%1$s" +msgstr "like site1.%1$s and site2.%1$s" + +#: wp-admin/includes/network.php:247 +msgid "Sub-domains" +msgstr "Sub-domains" + +#: wp-admin/includes/network.php:243 +msgid "You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality." +msgstr "You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality." + +#: wp-admin/includes/network.php:240 +msgid "Addresses of Sites in your Network" +msgstr "Addresses of Sites in your Network" + +#: wp-admin/includes/network.php:189 +msgid "Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step." +msgstr "Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step." + +#: wp-admin/includes/network.php:188 +msgid "Welcome to the Network installation process!" +msgstr "Welcome to the Network installation process!" + +#: wp-admin/includes/network.php:161 +msgid "The network could not be created." +msgstr "The network could not be created." + +#: wp-admin/includes/network.php:146 +msgid "Once the network is created, you may reactivate your plugins." +msgstr "Once the network is created, you may reactivate your plugins." + +#. translators: %s: URL to Plugins screen. +#: wp-admin/includes/network.php:141 +msgid "Please deactivate your plugins before enabling the Network feature." +msgstr "Please deactivate your plugins before enabling the Network feature." + +#: wp-admin/network.php:74 +msgid "Network" +msgstr "Network" + +#: wp-admin/network.php:66 +msgid "The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version." +msgstr "The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version." + +#: wp-admin/network.php:65 +msgid "Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar." +msgstr "Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the toolbar." + +#: wp-admin/network.php:63 +msgid "The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files." +msgstr "The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files." + +#: wp-admin/network.php:62 +msgid "Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories)." +msgstr "Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories)." + +#: wp-admin/network.php:61 +msgid "This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it." +msgstr "This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it." + +#: wp-admin/network.php:57 +msgid "Create a Network of WordPress Sites" +msgstr "Create a Network of WordPress Sites" + +#: wp-admin/network.php:29 +msgid "The Network creation panel is not for WordPress MU networks." +msgstr "The Network creation panel is not for WordPress MU networks." + +#. translators: %s: User login. +#: wp-admin/network/users.php:87 +msgid "Warning! User cannot be modified. The user %s is a network administrator." +msgstr "Warning! User cannot be modified. The user %s is a network administrator." + +#: wp-admin/network/site-new.php:26 +msgid "If the admin email for the new site does not exist in the database, a new user will also be created." +msgstr "If the admin email for the new site does not exist in the database, a new user will also be created." + +#: wp-admin/network/sites.php:36 +msgid "Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later." +msgstr "Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later." + +#: wp-admin/network/sites.php:33 +msgid "Hovering over each site reveals seven options (three for the primary site):" +msgstr "Hovering over each site reveals seven options (three for the primary site):" + +#: wp-admin/network/settings.php:52 +msgid "Operational settings has fields for the network’s name and admin email." +msgstr "Operational settings has fields for the network’s name and admin email." + +#: wp-admin/network/users.php:235 +msgid "The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses." +msgstr "The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses." + +#: wp-admin/network/users.php:233 +msgid "You can also go to the user’s profile page by clicking on the individual username." +msgstr "You can also go to the user’s profile page by clicking on the individual username." + +#: wp-admin/network/settings.php:55 +msgid "Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only)." +msgstr "Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only)." + +#: wp-admin/network/users.php:236 +msgid "You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege." +msgstr "You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege." + +#: wp-admin/network/user-new.php:23 +msgid "Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them." +msgstr "Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them." + +#: wp-admin/network/users.php:234 +msgid "You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list." +msgstr "You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list." + +#: wp-admin/network/users.php:231 +msgid "This table shows all users across the network and the sites to which they are assigned." +msgstr "This table shows all users across the network and the sites to which they are assigned." + +#: wp-admin/network/upgrade.php:26 +msgid "If this process fails for any reason, users logging in to their sites will force the same update." +msgstr "If this process fails for any reason, users logging in to their sites will force the same update." + +#: wp-admin/network/upgrade.php:25 +msgid "If a version update to core has not happened, clicking this button will not affect anything." +msgstr "If a version update to core has not happened, clicking this button will not affect anything." + +#: wp-admin/network/themes.php:315 +msgid "If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen." +msgstr "If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen." + +#: wp-admin/network/themes.php:314 +msgid "This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using." +msgstr "This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using." + +#: wp-admin/network/sites.php:32 +msgid "This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table." +msgstr "This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table." + +#: wp-admin/network/settings.php:57 +msgid "Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins." +msgstr "Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins." + +#: wp-admin/network/settings.php:54 +msgid "New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL." +msgstr "New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL." + +#: wp-admin/network/settings.php:53 +msgid "Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network." +msgstr "Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network." + +#: wp-admin/network/settings.php:51 +msgid "This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options." +msgstr "This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options." + +#. translators: %s: Reserved names list. +#: wp-admin/network/site-new.php:59 +msgid "The following words are reserved for use by WordPress functions and cannot be used as site names: %s" +msgstr "The following words are reserved for use by WordPress functions and cannot be used as site names: %s" + +#: wp-admin/network/upgrade.php:125 +msgid "If your browser does not start loading the next page automatically, click this link:" +msgstr "If your browser does not start loading the next page automatically, click this link:" + +#: wp-admin/network/settings.php:316 +msgid "If you want to ban domains from site registrations. One domain per line." +msgstr "If you want to ban domains from site registrations. One domain per line." + +#: wp-admin/network/settings.php:296 +msgid "If you want to limit site registrations to certain domains. One domain per line." +msgstr "If you want to limit site registrations to certain domains. One domain per line." + +#: wp-admin/network/users.php:266 +msgid "Users removed from spam." +msgstr "Users removed from spam." + +#: wp-admin/network/sites.php:353 +msgid "Site marked as spam." +msgstr "Site marked as spam." + +#: wp-admin/network/sites.php:350 +msgid "Site removed from spam." +msgstr "Site removed from spam." + +#: wp-admin/network/sites.php:326 +msgid "Sites marked as spam." +msgstr "Sites marked as spam." + +#: wp-admin/network/sites.php:323 +msgid "Sites removed from spam." +msgstr "Sites removed from spam." + +#: wp-admin/network/users.php:269 +msgid "Users deleted." +msgstr "Users deleted." + +#: wp-admin/network/users.php:263 +msgid "Users marked as spam." +msgstr "Users marked as spam." + +#: wp-admin/network/sites.php:347 +msgid "Site deactivated." +msgstr "Site deactivated." + +#: wp-admin/network/sites.php:344 +msgid "Site activated." +msgstr "Site activated." + +#: wp-admin/network/sites.php:341 +msgid "Site unarchived." +msgstr "Site unarchived." + +#: wp-admin/network/sites.php:338 +msgid "Site archived." +msgstr "Site archived." + +#: wp-admin/network/sites.php:332 +msgid "Site deleted." +msgstr "Site deleted." + +#: wp-admin/network/sites.php:329 +msgid "Sites deleted." +msgstr "Sites deleted." + +#: wp-admin/network/sites.php:104 wp-admin/network/sites.php:238 +msgid "Sorry, you are not allowed to change the current site." +msgstr "Sorry, you are not allowed to change the current site." + +#: wp-admin/network/site-new.php:130 +msgid "There was an error creating the user." +msgstr "There was an error creating the user." + +#: wp-admin/network/settings.php:427 +msgid "Upload file types" +msgstr "Upload file types" + +#. translators: %s: Number of megabytes to limit uploads to. +#: wp-admin/network/settings.php:412 +msgid "Limit total size of files uploaded to %s MB" +msgstr "Limit total size of files uploaded to %s MB" + +#: wp-admin/network/settings.php:398 +msgid "The URL for the first comment on a new site." +msgstr "The URL for the first comment on a new site." + +#: wp-admin/network/settings.php:380 +msgid "The author of the first comment on a new site." +msgstr "The author of the first comment on a new site." + +#: wp-admin/network/settings.php:371 +msgid "The first comment on a new site." +msgstr "The first comment on a new site." + +#: wp-admin/network/settings.php:361 +msgid "The first page on a new site." +msgstr "The first page on a new site." + +#: wp-admin/network/settings.php:351 +msgid "The first post on a new site." +msgstr "The first post on a new site." + +#: wp-admin/network/upgrade.php:74 +msgid "All done!" +msgstr "All done!" + +#: wp-admin/network/settings.php:221 +msgid "Both sites and user accounts can be registered" +msgstr "Both sites and user accounts can be registered" + +#: wp-admin/network/settings.php:220 +msgid "Logged in users may register new sites" +msgstr "Logged in users may register new sites" + +#: wp-admin/network/settings.php:219 +msgid "User accounts may be registered" +msgstr "User accounts may be registered" + +#: wp-admin/network/settings.php:218 +msgid "Registration is disabled" +msgstr "Registration is disabled" + +#: wp-admin/network/settings.php:514 +msgid "Enable administration menus" +msgstr "Enable administration menus" + +#: wp-admin/network/settings.php:403 +msgid "Upload Settings" +msgstr "Upload Settings" + +#: wp-admin/network/settings.php:322 +msgid "New Site Settings" +msgstr "New Site Settings" + +#: wp-admin/network/settings.php:200 +msgid "Registration Settings" +msgstr "Registration Settings" + +#: wp-admin/network/settings.php:156 +msgid "Operational Settings" +msgstr "Operational Settings" + +#: wp-admin/network/site-new.php:95 +msgid "Missing email address." +msgstr "Missing email address." + +#: wp-admin/network/site-new.php:91 +msgid "Missing or invalid site address." +msgstr "Missing or invalid site address." + +#: wp-admin/network/upgrade.php:125 +msgid "Next Sites" +msgstr "Next Sites" + +#: wp-admin/network/settings.php:406 +msgid "Site upload space" +msgstr "Site upload space" + +#: wp-admin/network/settings.php:331 +msgid "The welcome email sent to new site owners." +msgstr "The welcome email sent to new site owners." + +#: wp-admin/network/settings.php:271 +msgid "Users are not allowed to register these sites. Separate names by spaces." +msgstr "Users are not allowed to register these sites. Separate names by spaces." + +#: wp-admin/network/settings.php:246 +msgid "Send the network admin an email notification every time someone registers a site or user account" +msgstr "Send the network admin an email notification every time someone registers a site or user account" + +#: wp-admin/includes/network.php:385 wp-admin/network/settings.php:166 +msgid "Network Admin Email" +msgstr "Network Admin Email" + +#: wp-admin/network/site-new.php:287 +msgid "A new user will be created if the above email address is not in the database." +msgstr "A new user will be created if the above email address is not in the database." + +#: wp-admin/network/site-new.php:279 +msgid "Admin Email" +msgstr "Admin Email" + +#: wp-admin/network/menu.php:58 wp-admin/network/site-new.php:182 +#: wp-admin/network/site-new.php:192 wp-admin/network/site-new.php:299 +#: wp-admin/network/sites.php:391 +msgid "Add Site" +msgstr "Add Site" + +#: wp-admin/network/settings.php:464 +msgid "Default Language" +msgstr "Default Language" + +#: wp-admin/network/settings.php:437 +msgid "Max upload file size" +msgstr "Max upload file size" + +#: wp-admin/network/settings.php:394 +msgid "First Comment URL" +msgstr "First Comment URL" + +#: wp-admin/network/settings.php:376 +msgid "First Comment Author" +msgstr "First Comment Author" + +#: wp-admin/network/settings.php:366 +msgid "First Comment" +msgstr "First Comment" + +#: wp-admin/network/settings.php:356 +msgid "First Page" +msgstr "First Page" + +#: wp-admin/network/settings.php:341 +msgid "The welcome email sent to new users." +msgstr "The welcome email sent to new users." + +#: wp-admin/network/settings.php:336 +msgid "Welcome User Email" +msgstr "Welcome User Email" + +#: wp-admin/network/settings.php:326 +msgid "Welcome Email" +msgstr "Welcome Email" + +#: wp-admin/network/settings.php:302 +msgid "Banned Email Domains" +msgstr "Banned Email Domains" + +#: wp-admin/network/settings.php:277 +msgid "Limited Email Registrations" +msgstr "Limited Email Registrations" + +#: wp-admin/network/settings.php:258 +msgid "Banned Names" +msgstr "Banned Names" + +#: wp-admin/network/site-users.php:353 +msgid "Add New User" +msgstr "Add New User" + +#: wp-admin/network/settings.php:239 +msgid "Registration notification" +msgstr "Registration notification" + +#: wp-admin/network/settings.php:203 +msgid "Allow new registrations" +msgstr "Allow new registrations" + +#: wp-admin/network/site-users.php:276 +msgid "Duplicated username or email address." +msgstr "Duplicated username or email address." + +#: wp-admin/network/user-new.php:41 +msgid "Cannot create an empty user." +msgstr "Cannot create an empty user." + +#: wp-admin/network/sites.php:128 wp-admin/network/sites.php:223 +msgid "Confirm" +msgstr "Confirm" \ No newline at end of file diff --git a/web/app/languages/admin-network-fr_BE.l10n.php b/web/app/languages/admin-network-fr_BE.l10n.php new file mode 100755 index 00000000..beea5c83 --- /dev/null +++ b/web/app/languages/admin-network-fr_BE.l10n.php @@ -0,0 +1,2 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2024-02-01 21:25:44+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.5.x - Development - Administration - Network Admin','language'=>'fr_BE','messages'=>['Missing site title.'=>'Titre du site manquant.','Table ordered by User Registered Date.'=>'Tableau trié par date d’inscription du compte.','Table ordered by Theme Name.'=>'Tableau trié par nom de thème.','Table ordered by Site Registered Date.'=>'Tableau trié par date de création du site.','Table ordered by Last Updated.'=>'Tableau trié par date de dernière mise à jour.','Table ordered by Site Path.'=>'Tableau trié par chemin d’accès du site.','Table ordered by Site Domain Name.'=>'Tableau trié par nom de domaine du site.','https://wordpress.org/documentation/article/nginx/'=>'https://wordpress.org/documentation/article/nginx/','Network configuration authentication keys'=>'Clés d’authentification de la configuration du réseau','Network configuration rules for %s'=>'Règles de configuration du réseau pour le fichier %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress a été mis à jour ! La prochaine étape pour finaliser est de mettre à niveau individuellement les sites de votre réseau.','Cannot create an empty site.'=>'Impossible de créer un site vide.','You should back up your existing %s file.'=>'Vous devez sauvegarder votre fichier %s existant.','You should back up your existing %1$s and %2$s files.'=>'Vous devriez sauvegarder vos fichiers %1$s et %2$s existants.','Visit theme site for %s'=>'Consultez le site du thème pour %s','Child theme of %s'=>'Thème enfant de %s','Documentation on Network Settings'=>'Documentation de l’écran des réglages de l’administration du réseau','sitePublic'=>'Public','siteNot spam'=>'Non indésirable','%s theme will no longer be auto-updated.'=>'%s thème ne sera plus mis à jour automatiquement.' . "\0" . '%s thèmes ne seront plus mis à jour automatiquement.','%s theme will be auto-updated.'=>'%s thème sera mis à jour automatiquement.' . "\0" . '%s thèmes seront mis à jour automatiquement.','Sorry, you are not allowed to change themes automatic update settings.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages de mise à jour automatique des thèmes.','No themes are currently available.'=>'Aucun thème n’est actuellement disponible.','Y/m/d g:i:s a'=>'d/m/Y G:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'Il semble que votre réseau fonctionne avec un serveur web Nginx. En savoir plus sur les possibilités de configurations supplémentaires.','Deleted (%s)'=>'Supprimé (%s)' . "\0" . 'Supprimés (%s)','sitesSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','Mature (%s)'=>'Contenu adulte (%s)' . "\0" . 'Contenu adulte (%s)','Archived (%s)'=>'Archivé (%s)' . "\0" . 'Archivés (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Publics (%s)','sitesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','Documentation on Upgrade Network'=>'Documentation sur la mise à jour d’un réseau (en anglais)','Documentation on the Network Admin'=>'Documentation sur l’administration d’un réseau de sites','themesUpdate Available (%s)'=>'Mise à jour disponible (%s)' . "\0" . 'Mises à jour disponible (%s)','Main'=>'Principal','Documentation on the Network Screen'=>'Documentation sur l’écran Réseau de sites','Documentation on Creating a Network'=>'Documentation sur la création d’un réseau de site','The constant %s cannot be defined when creating a network.'=>'La constante %s ne peut pas être définie lors de la création d’un réseau.','You are about to delete the following sites:'=>'Vous allez supprimer les sites suivants :','User could not be added to this site.'=>'L’utilisateur ne peut pas être ajouté à ce site.','The username and a link to set the password will be mailed to this email address.'=>'Le nom de l’utilisateur et un lien pour mettre en place son mot de passe seront envoyés à cette adresse de messagerie.','There is a pending change of the network admin email to %s.'=>'Il y a une modification en attente pour l’e-mail de l’administrateur du réseau sur %s.','Sub-domain Installation'=>'Installation en sous-domaine','Sub-directory Installation'=>'Installation en sous-répertoire','Active Child Theme'=>'Thème enfant actif','Attributes'=>'Attributs','%s KB'=>'%s Ko','%s Sites'=>'Les sites de %s','Sorry, you are not allowed to delete themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to manage network themes.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau.','Sorry, you are not allowed to delete that site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to manage themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site.','Sorry, you are not allowed to add sites to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau.','Sorry, you are not allowed to edit this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce site.','The email address of the first comment author on a new site.'=>'L’adresse e-mail de l’auteur du premier commentaire sur un nouveau site.','First Comment Email'=>'E-mail du premier commentaire','That’s all, stop editing! Happy publishing.'=>'C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenus !','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :','theme%1$s by %2$s'=>'%1$s par %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Seuls les lettres minuscules (a-z), les nombres, et les traits d\'union sont autorisés.','These unique authentication keys are also missing from your %s file.'=>'Ces clés d’authentification uniques manquent également à votre fichier %s.','This unique authentication key is also missing from your %s file.'=>'La clé unique d\'authentification est aussi absente de votre fichier %s.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines.','The internet address of your network will be %s.'=>'L’adresse internet de votre réseau sera %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'Il est recommandé de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s.','You cannot change this later.'=>'Vous ne pourrez pas changer ceci ultérieurement.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'Si %1$s est désactivé, demandez à votre administrateur d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation.','It looks like the Apache %s module is not installed.'=>'Il semble que le module %s d’Apache ne soit pas installé.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation.','You cannot use port numbers such as %s.'=>'Vous ne pouvez pas utiliser des numéros de port tels que %s.','userRegistered'=>'Inscription','Super Admin (%s)'=>'Super-admin (%s)' . "\0" . 'Super-admins (%s)','userNot spam'=>'N’est pas un indésirable','userMark as spam'=>'Marquer comme indésirable','Visit Theme Site'=>'Aller sur le site du thème','Broken Theme:'=>'Thème cassé :','Network Disable %s'=>'Désactiver %s pour le réseau','Disable %s'=>'Désactiver %s','Network Enable %s'=>'Activer %s sur le réseau','Enable %s'=>'Activer %s','Network Disable'=>'Désactiver du réseau','Disable'=>'Désactiver','Enable'=>'Activer','themesBroken (%s)'=>'Cassé (%s)' . "\0" . 'Cassés (%s)','themesDisabled (%s)'=>'Désactivé (%s)' . "\0" . 'Désactivés (%s)','themesEnabled (%s)'=>'Activé (%s)' . "\0" . 'Activés (%s)','themesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','No themes found.'=>'Aucun thème trouvé.','verb; siteArchive'=>'Archiver','Unarchive'=>'Désarchiver','Never'=>'Jamais','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Inscription','Last Updated'=>'Dernière mise à jour','siteNot Spam'=>'N’est pas un indésirable','siteMark as spam'=>'Marquer comme indésirable','No sites found.'=>'Aucun site trouvé.','Mature'=>'Adulte','Deleted'=>'Supprimé','siteSpam'=>'Indésirable','Archived'=>'Archivé','A password reset link will be sent to the user via email.'=>'Un lien de réinitialisation de mot de passe sera envoyé à l’utilisateur par e-mail.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau.','Themes list navigation'=>'Parcours de la liste des thèmes','Sites list'=>'Liste des sites','Sites list navigation'=>'Parcours de la liste des sites','Site users list'=>'Liste des utilisateurs du site','Site users list navigation'=>'Parcours de la liste des utilisateurs du site','Filter site users list'=>'Filtrer la liste des utilisateurs du site','Site themes list'=>'Liste des thèmes du site','Site themes list navigation'=>'Parcours de la liste des thèmes du site','Filter site themes list'=>'Filtrer la liste des thème du site','The domain or path entered conflicts with an existing username.'=>'Le domaine ou le chemin saisi est entré en conflit avec un identifiant utilisateur existant.','The requested action is not valid.'=>'L’action demandée n’est pas valide.','You are about to mark the site %s as not mature.'=>'Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes.','You are about to mark the site %s as mature.'=>'Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes.','You are about to delete the site %s.'=>'Vous êtes sur le point de supprimer le site %s.','You are about to mark the site %s as spam.'=>'Vous êtes sur le point de marquer le site %s comme indésirable.','You are about to unspam the site %s.'=>'Vous êtes sur le point de marquer le site %s comme sain.','You are about to archive the site %s.'=>'Vous êtes sur le point d’archiver le site %s.','You are about to unarchive the site %s.'=>'Vous êtes sur le point de désarchiver le site %s.','You are about to deactivate the site %s.'=>'Vous êtes sur le point de désactiver le site %s.','You are about to activate the site %s.'=>'Vous êtes sur le point d’activer le site %s.','The requested site does not exist.'=>'Le site demandé n’existe pas.','Path'=>'Chemin','Domain'=>'domaine','Documentation on Network Users'=>'Documentation sur les utilisateurs du réseau.','Documentation on Network Themes'=>'Documentation sur les thèmes du réseau.','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s.','%s theme deleted.'=>'%s thème supprimé.' . "\0" . '%s thèmes supprimés.','%s theme disabled.'=>'%s thème désactivé.' . "\0" . '%s thèmes désactivés.','%s theme enabled.'=>'%s thème activé.' . "\0" . '%s thèmes activés.','Yes, delete these themes'=>'Oui, supprimer ces thèmes','You are about to remove the following themes:'=>'Vous êtes sur le point d’enlever les thèmes suivants :','These themes may be active on other sites in the network.'=>'Ces thèmes peuvent être actifs sur d’autres site de ce réseau.','Delete Themes'=>'Supprimer les thèmes','Set site attributes'=>'Configurer les attributs du site','Enable menus'=>'Activer les menus','Size in kilobytes'=>'Taille en kilooctets','Allowed file types. Separate types by spaces.'=>'Types de fichier autorisés. Séparez les types par une espace.','New registrations settings'=>'Réglages pour les nouvelles inscriptions','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :','Confirm your action'=>'Confirmez cette action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Survolez n’importe quel des utilisateurs de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil de l\'utilisateur ; le lien Modifier à droite de n\'importe quel nom de site ouvrira l\'écran de modification de ce site.','To search for a site, enter the path or domain.'=>'Pour chercher un site, saisissez son chemin ou son domaine.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'Pour chercher un utilisateur, saisissez une adresse de messagerie ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple utilisa*.','To add a new site, click Create a New Site.'=>'Pour ajouter un nouveau site, cliquez sur Créer un nouveau site.','To add a new user, click Create a New User.'=>'Pour ajouter un nouvel utilisateur, cliquez sur Créer un nouvel utilisateur.','Quick Tasks'=>'Tâches rapides','To search for a user or site, use the search boxes.'=>'Pour chercher un utilisateur ou un site, utilisez les champs de recherche.','The Right Now widget on this screen provides current user and site counts on your network.'=>'Le widget Aujourd’hui de cet écran vous donne le nombre actuel d’utilisateurs et de sites sur votre réseau.','Modify global network settings'=>'Modifier les réglages globaux du réseau','Update your network'=>'Mettre à jour votre réseau','Install and activate themes or plugins'=>'Installer et activer des thèmes ou des extensions','Add and manage sites or users'=>'Ajouter et gérer des sites ou des utilisateurs','From here you can:'=>'D’ici, vous pouvez :','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées.','Upgrade Network'=>'Mettre à jour le réseau','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...stop editing...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress).','Language Settings'=>'Réglages de langue','Allow site administrators to add new users to their site via the "Users → Add New" page'=>'Autoriser les administrateurs de sites à ajouter de nouveaux utilisateurs à leurs sites via la page « Utilisateurs → Ajouter ».','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des utilisateurs (option « Utilisateurs » du menu « Admin du réseau ») et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte utilisateur, où une case à cocher donne les droits de super-admin.','Enter the username and email.'=>'Saisir l’identifiant et l’adresse de messagerie.','User created.'=>'L’utilisateur a été créé.','Select a user to remove.'=>'Sélectionnez un utilisateur à enlever.','Select a user to change role.'=>'Sélectionnez un utilisateur dont vous voulez changer le rôle.','Enter the username of an existing user.'=>'Saisir l’identifiant d’un utilisateur existant.','User is already a member of this site.'=>'Cet utilisateur est déjà membre de ce site.','Site options updated.'=>'Les réglages du site ont été mis à jour.','Site added. Visit Dashboard or Edit Site'=>'Site ajouté. Afficher le tableau de bord | Modifier le site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription.','Site info updated.'=>'Les infos du site ont été mises à jour.','You cannot delete a theme while it is active on the main site.'=>'Vous ne pouvez pas effacer un thème s’il est activé sur le site principal.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Les thèmes peuvent être activés par l’administrateur du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs du réseau peuvent installer ou modifier des thèmes.','No, return me to the theme list'=>'Non, je veux revenir à la liste des thèmes.','Yes, delete this theme'=>'Oui, supprimer ce thème','Are you sure you want to delete these themes?'=>'Confirmez-vous la suppression de ces thèmes ?','You are about to remove the following theme:'=>'Vous êtes sur le point de supprimer le thème suivant :','This theme may be active on other sites in the network.'=>'Ce thème est peut-être activé sur d’autres sites du réseau','Delete Theme'=>'Supprimer le thème','Network enabled themes are not shown on this screen.'=>'Les thèmes activés pour le réseau ne sont pas visibles sur cet écran.','No theme selected.'=>'Aucun thème sélectionné.','Theme disabled.'=>'Thème désactivé.','Theme enabled.'=>'Thème activé.','Edit Site: %s'=>'Modifier le site : %s','Invalid site ID.'=>'Identifiant du site non valide.','Sorry, you are not allowed to delete the site %s.'=>'Vous n’avez pas l’autorisation d’effacer ce site.','Clicking on bold headings can re-sort this table.'=>'Cliquez sur les en-têtes en gras afin de retrier ce tableau.','Delete which is a permanent action after the confirmation screens.'=>'« Supprimer » est une action irréversible une fois passé l’écran de confirmation.','Dashboard leads to the Dashboard for that site.'=>'« Tableau de bord » mène au tableau de bord pour ce site.','An Edit link to a separate Edit Site screen.'=>'Un lien « Modifier » vers un nouvel écran de modification de site.','Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'Ajouter vous envoie au formulaire en bas de cette page. Vous pouvez chercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page.','Add User'=>'Ajouter un utilisateur','Cannot add user.'=>'Impossible d’ajouter l’utilisateur.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'« Ajouter un utilisateur » créera un nouveau compte utilisateur sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire.','Updates'=>'Mises à jour','Network Settings'=>'Réglages du réseau','Installed Themes'=>'Thèmes installés','All Sites'=>'Tous les sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter.','To make your installation more secure, you should also add:'=>'Pour sécuriser encore plus votre installation, vous devriez également ajouter :','Complete the following steps to enable the features for creating a network of sites.'=>'Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites.','Enabling the Network'=>'Activer le Réseau','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données.','An existing WordPress network was detected.'=>'Un réseau WordPress pré-existant a été détecté.','The original configuration steps are shown here for reference.'=>'Les étapes de la configuration originale sont affichées ici pour référence.','Your email address.'=>'Votre adresse de messagerie.','What would you like to call your network?'=>'Comment souhaitez-vous appeler votre réseau ?','Network Title'=>'Titre du réseau','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Comme votre installation de WordPress n’est pas récente, les sites de votre réseau doivent utiliser des sous-domaines.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'Le site principal d’une installation en sous-répertoire devra utiliser une structure de permaliens modifiée, ce qui pourrait potentiellement casser vos liens existants.','Network Details'=>'Détails du réseau','Server Address'=>'Adresse du serveur','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'comme %1$s/site1 et %1$s/site2','Sub-directories'=>'Sous-répertoires','subdomain exampleslike site1.%1$s and site2.%1$s'=>'comme site1.%1$s et site2.%1$s','Sub-domains'=>'Sous-domaines','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard).','Addresses of Sites in your Network'=>'Adresses des sites de votre réseau','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites WordPress. Les fichiers de configuration seront créés lors de la prochaine étape.','Welcome to the Network installation process!'=>'Bienvenue dans l’installation du Réseau !','Error: The network could not be created.'=>'Erreur : Le réseau ne peut pas être créé.','You cannot install a network of sites with your server address.'=>'Vous ne pouvez pas installer un réseau de sites avec votre adresse de serveur.','Once the network is created, you may reactivate your plugins.'=>'Dès que le réseau sera créé, vous pourrez réactiver vos extensions.','Please deactivate your plugins before enabling the Network feature.'=>'Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau. ','Network'=>'Réseau','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de « /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet.','Create a Network of WordPress Sites'=>'Créer un réseau de sites WordPress','The Network creation panel is not for WordPress MU networks.'=>'Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Attention ! L’utilisateur %s ne peut être modifié car c’est un administrateur du réseau.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouvel utilisateur sera créé pour l’occasion.','The site ID is used internally, and is not shown on the front end of the site or to users/viewers.'=>'L’ID du site est utilisé en interne et n’est pas affiché dans la partie publique du site, ni aux utilisateurs/visiteurs.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite .','Hovering over each site reveals seven options (three for the primary site):'=>'Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :','Operational settings has fields for the network’s name and admin email.'=>'Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse de messagerie de l’administrateur.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'Le menu « Actions groupées » permet d’effacer définitivement plusieurs utilisateurs d’un coup, ou de les marquer comme sains ou indésirables. Les utilisateurs indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse de messagerie.','You can also go to the user’s profile page by clicking on the individual username.'=>'Vous pouvez également aller sur la page de profil d’un utilisateur en cliquant sur son identifiant.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers téléversés et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces).','Visit to go to the front-end site live.'=>'« Afficher » envoie vers la page d’accueil du site.','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'Vous pouvez promouvoir un utilisateur existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Les utilisateurs qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces utilisateurs ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non.','This table shows all users across the network and the sites to which they are assigned.'=>'Ce tableau affiche tous les utilisateurs appartenant au réseau, et les sites auxquels ils sont assignés.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'Si ce processus échoue pour n’importe quelles raisons, les utilisateurs se connectant à leurs sites déclencheront la même mise à jour.','If a version update to core has not happened, clicking this button will not affect anything.'=>'S’il n’y a pas eu de mise à jour du cœur WordPress récemment, cliquer sur ce bouton n’aura aucun effet.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'Si l’administrateur du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Le réglage du menu (dés)active la section « Extensions » du menu pour les utilisateurs normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouvel utilisateur ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’adresse web du commentateur).','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s','If your browser does not start loading the next page automatically, click this link:'=>'Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :','If you want to ban domains from site registrations. One domain per line.'=>'Si vous souhaitez interdire la création de sites aux personnes dont l’adresse de messagerie est liée à certains noms de domaines. Un domaine par ligne.','If you want to limit site registrations to certain domains. One domain per line.'=>'Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse de messagerie liée à certains noms de domaines. Un domaine par ligne.','Users removed from spam.'=>'Utilisateurs marqués comme sains.','Site marked as spam.'=>'Site marqué comme indésirable.','Site removed from spam.'=>'Site marqué comme sain.','Sites marked as spam.'=>'Sites marqués comme indésirables.','Sites removed from spam.'=>'Sites marqués comme sains.','Users deleted.'=>'Utilisateurs supprimés.','Users marked as spam.'=>'Utilisateurs marqués comme indésirables.','Site deactivated.'=>'Site désactivé.','Site activated.'=>'Site activé.','Site unarchived.'=>'Site désarchivé.','Site archived.'=>'Site archivé.','Site deleted.'=>'Site effacé.','Sites deleted.'=>'Sites effacés.','Sorry, you are not allowed to change the current site.'=>'Désolé, vous n’avez pas l’autorisation de modifier le site actuel.','There was an error creating the user.'=>'Une erreur s’est produite lors de la création d’un utilisateur.','Upload file types'=>'Types de fichiers ','Limit total size of files uploaded to %s MB'=>'La taille totale des fichiers téléversés est limitée à %s Mo','The URL for the first comment on a new site.'=>'L’adresse web du premier commentaire sur tout nouveau site.','The author of the first comment on a new site.'=>'L’auteur du premier commentaire sur tout nouveau site.','The first comment on a new site.'=>'Le premier commentaire sur tout nouveau site.','The first page on a new site.'=>'La première page sur tout nouveau site.','The first post on a new site.'=>'Le premier article sur tout nouveau site.','All done!'=>'Terminé !','Both sites and user accounts can be registered'=>'La création de sites et d’utilisateurs est autorisée.','Logged in users may register new sites'=>'Les utilisateurs connectés peuvent créer de nouveaux sites.','User accounts may be registered'=>'Les comptes utilisateurs peuvent être créés.','Registration is disabled'=>'Les inscriptions ne sont pas autorisées pour le moment.','Enable administration menus'=>'Activer les menus d’administration','Upload Settings'=>'Réglages des téléversements','New Site Settings'=>'Réglages des nouveaux sites','Registration Settings'=>'Réglages d’inscription','Operational Settings'=>'Réglages de fonctionnement','Missing email address.'=>'Adresse de messagerie manquante.','Missing or invalid site address.'=>'Adresse de site manquante ou non valide.','Next Sites'=>'Sites suivants','Site upload space'=>'Espace de stockage du site','The welcome email sent to new site owners.'=>'Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites.','Users are not allowed to register these sites. Separate names by spaces.'=>'Les utilisateurs ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace.','Send the network admin an email notification every time someone registers a site or user account'=>'Envoyer un message à l’administrateur du réseau à chaque création de site ou d’utilisateur.','Network Admin Email'=>'Adresse de messagerie de l’administrateur du réseau','A new user will be created if the above email address is not in the database.'=>'Un nouvel utilisateur sera créé si l’adresse de contact n’existe pas dans la base de données.','Admin Email'=>'Adresse de contact de l’administrateur','Add Site'=>'Ajouter un site','Default Language'=>'Langue par défaut','Max upload file size'=>'Taille maximale des fichiers','First Comment URL'=>'Adresse du premier commentaire','First Comment Author'=>'Auteur du premier commentaire','First Comment'=>'Premier commentaire','First Page'=>'Première page','The welcome email sent to new users.'=>'Ce message de bienvenue sera envoyé aux nouveaux utilisateurs.','Welcome User Email'=>'Message de bienvenue des utilisateurs','Welcome Email'=>'Message de bienvenue','Banned Email Domains'=>'Noms de domaines bannis','Limited Email Registrations'=>'Enregistrement réservé aux noms de domaines','Banned Names'=>'Noms bannis','Add New Users'=>'Ajouter de nouveaux utilisateurs','Registration notification'=>'Notification d’inscription','Allow new registrations'=>'Autoriser les nouvelles inscriptions','Duplicated username or email address.'=>'Identifiant ou adresse de messagerie déjà utilisé(e).','Cannot create an empty user.'=>'Impossible de créer un utilisateur vide.']]; \ No newline at end of file diff --git a/web/app/languages/admin-network-fr_BE.mo b/web/app/languages/admin-network-fr_BE.mo new file mode 100755 index 00000000..cc438345 Binary files /dev/null and b/web/app/languages/admin-network-fr_BE.mo differ diff --git a/web/app/languages/admin-network-fr_BE.po b/web/app/languages/admin-network-fr_BE.po new file mode 100755 index 00000000..78d11b22 --- /dev/null +++ b/web/app/languages/admin-network-fr_BE.po @@ -0,0 +1,1466 @@ +# Translation of WordPress - 6.5.x - Development - Administration - Network Admin in French (Belgium) +# This file is distributed under the same license as the WordPress - 6.5.x - Development - Administration - Network Admin package. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-01 21:25:44+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: fr_BE\n" +"Project-Id-Version: WordPress - 6.5.x - Development - Administration - Network Admin\n" + +#: wp-admin/network/site-new.php:87 +msgid "Missing site title." +msgstr "Titre du site manquant." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:218 +msgid "Table ordered by User Registered Date." +msgstr "Tableau trié par date d’inscription du compte." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:346 +msgid "Table ordered by Theme Name." +msgstr "Tableau trié par nom de thème." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:404 +msgid "Table ordered by Site Registered Date." +msgstr "Tableau trié par date de création du site." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:403 +msgid "Table ordered by Last Updated." +msgstr "Tableau trié par date de dernière mise à jour." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:398 +msgid "Table ordered by Site Path." +msgstr "Tableau trié par chemin d’accès du site." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:395 +msgid "Table ordered by Site Domain Name." +msgstr "Tableau trié par nom de domaine du site." + +#: wp-admin/includes/network.php:697 +msgid "https://wordpress.org/documentation/article/nginx/" +msgstr "https://wordpress.org/documentation/article/nginx/" + +#: wp-admin/includes/network.php:605 +msgid "Network configuration authentication keys" +msgstr "Clés d’authentification de la configuration du réseau" + +#. translators: %s: File name (wp-config.php, .htaccess or web.config). +#: wp-admin/includes/network.php:542 wp-admin/includes/network.php:681 +#: wp-admin/includes/network.php:743 +msgid "Network configuration rules for %s" +msgstr "Règles de configuration du réseau pour le fichier %s" + +#: wp-admin/network/upgrade.php:141 +msgid "WordPress has been updated! Next and final step is to individually upgrade the sites in your network." +msgstr "WordPress a été mis à jour ! La prochaine étape pour finaliser est de mettre à niveau individuellement les sites de votre réseau." + +#: wp-admin/network/site-new.php:40 +msgid "Cannot create an empty site." +msgstr "Impossible de créer un site vide." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:513 +msgid "You should back up your existing %s file." +msgstr "Vous devez sauvegarder votre fichier %s existant." + +#. translators: 1: wp-config.php, 2: .htaccess +#. translators: 1: wp-config.php, 2: web.config +#: wp-admin/includes/network.php:499 wp-admin/includes/network.php:506 +msgid "You should back up your existing %1$s and %2$s files." +msgstr "Vous devriez sauvegarder vos fichiers %1$s et %2$s existants." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:733 +msgid "Visit theme site for %s" +msgstr "Consultez le site du thème pour %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:746 +msgid "Child theme of %s" +msgstr "Thème enfant de %s" + +#: wp-admin/network/settings.php:64 +msgid "Documentation on Network Settings" +msgstr "Documentation de l’écran des réglages de l’administration du réseau" + +#: wp-admin/network/site-info.php:191 +msgctxt "site" +msgid "Public" +msgstr "Public" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:297 +msgctxt "site" +msgid "Not spam" +msgstr "Non indésirable" + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:438 +msgid "%s theme will no longer be auto-updated." +msgid_plural "%s themes will no longer be auto-updated." +msgstr[0] "%s thème ne sera plus mis à jour automatiquement." +msgstr[1] "%s thèmes ne seront plus mis à jour automatiquement." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:427 +msgid "%s theme will be auto-updated." +msgid_plural "%s themes will be auto-updated." +msgstr[0] "%s thème sera mis à jour automatiquement." +msgstr[1] "%s thèmes seront mis à jour automatiquement." + +#: wp-admin/network/themes.php:240 +msgid "Sorry, you are not allowed to change themes automatic update settings." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les réglages de mise à jour automatique des thèmes." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:320 +msgid "No themes are currently available." +msgstr "Aucun thème n’est actuellement disponible." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:503 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:528 +#: wp-admin/includes/class-wp-ms-users-list-table.php:346 +msgid "Y/m/d g:i:s a" +msgstr "d/m/Y G:i:s" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/network.php:696 +msgid "It seems your network is running with Nginx web server. Learn more about further configuration." +msgstr "Il semble que votre réseau fonctionne avec un serveur web Nginx. En savoir plus sur les possibilités de configurations supplémentaires." + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:258 +msgid "Deleted (%s)" +msgid_plural "Deleted (%s)" +msgstr[0] "Supprimé (%s)" +msgstr[1] "Supprimés (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:251 +msgctxt "sites" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Indésirable (%s)" +msgstr[1] "Indésirables (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:245 +msgid "Mature (%s)" +msgid_plural "Mature (%s)" +msgstr[0] "Contenu adulte (%s)" +msgstr[1] "Contenu adulte (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:239 +msgid "Archived (%s)" +msgid_plural "Archived (%s)" +msgstr[0] "Archivé (%s)" +msgstr[1] "Archivés (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:233 +msgid "Public (%s)" +msgid_plural "Public (%s)" +msgstr[0] "Public (%s)" +msgstr[1] "Publics (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:226 +msgctxt "sites" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/network/upgrade.php:32 +msgid "Documentation on Upgrade Network" +msgstr "Documentation sur la mise à jour d’un réseau (en anglais)" + +#: wp-admin/network/index.php:56 +msgid "Documentation on the Network Admin" +msgstr "Documentation sur l’administration d’un réseau de sites" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:405 +msgctxt "themes" +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Mise à jour disponible (%s)" +msgstr[1] "Mises à jour disponible (%s)" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:650 +msgid "Main" +msgstr "Principal" + +#: wp-admin/network.php:69 wp-admin/network.php:82 +msgid "Documentation on the Network Screen" +msgstr "Documentation sur l’écran Réseau de sites" + +#: wp-admin/network.php:68 wp-admin/network.php:81 +msgid "Documentation on Creating a Network" +msgstr "Documentation sur la création d’un réseau de site" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/includes/network.php:119 +msgid "The constant %s cannot be defined when creating a network." +msgstr "La constante %s ne peut pas être définie lors de la création d’un réseau." + +#: wp-admin/network/sites.php:198 +msgid "You are about to delete the following sites:" +msgstr "Vous allez supprimer les sites suivants :" + +#: wp-admin/network/site-users.php:249 +msgid "User could not be added to this site." +msgstr "L’utilisateur ne peut pas être ajouté à ce site." + +#: wp-admin/network/site-new.php:287 +msgid "The username and a link to set the password will be mailed to this email address." +msgstr "Le nom de l’utilisateur et un lien pour mettre en place son mot de passe seront envoyés à cette adresse de messagerie." + +#. translators: %s: New network admin email. +#: wp-admin/network/settings.php:177 +msgid "There is a pending change of the network admin email to %s." +msgstr "Il y a une modification en attente pour l’e-mail de l’administrateur du réseau sur %s." + +#: wp-admin/includes/network.php:369 +msgid "Sub-domain Installation" +msgstr "Installation en sous-domaine" + +#: wp-admin/includes/network.php:338 wp-admin/includes/network.php:356 +msgid "Sub-directory Installation" +msgstr "Installation en sous-répertoire" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:939 +msgid "Active Child Theme" +msgstr "Thème enfant actif" + +#: wp-admin/network/site-info.php:200 +msgid "Attributes" +msgstr "Attributs" + +#. translators: %s: File size in kilobytes. +#: wp-admin/network/settings.php:442 +msgid "%s KB" +msgstr "%s Ko" + +#. translators: %s: Default network title. +#: wp-admin/includes/network.php:196 +msgid "%s Sites" +msgstr "Les sites de %s" + +#: wp-admin/network/themes.php:102 +msgid "Sorry, you are not allowed to delete themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site." + +#: wp-admin/network/themes.php:14 +msgid "Sorry, you are not allowed to manage network themes." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau." + +#: wp-admin/network/sites.php:325 +msgid "Sorry, you are not allowed to delete that site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/network/site-themes.php:14 +msgid "Sorry, you are not allowed to manage themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site." + +#: wp-admin/network/site-new.php:17 +msgid "Sorry, you are not allowed to add sites to this network." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau." + +#: wp-admin/network/site-info.php:14 wp-admin/network/site-settings.php:14 +#: wp-admin/network/site-users.php:14 +msgid "Sorry, you are not allowed to edit this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce site." + +#: wp-admin/network/settings.php:389 +msgid "The email address of the first comment author on a new site." +msgstr "L’adresse e-mail de l’auteur du premier commentaire sur un nouveau site." + +#: wp-admin/network/settings.php:385 +msgid "First Comment Email" +msgstr "E-mail du premier commentaire" + +#. translators: This string should only be translated if wp-config-sample.php +#. is localized. You can check the localized release package or +#. https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php +#: wp-admin/includes/network.php:534 +msgid "That’s all, stop editing! Happy publishing." +msgstr "C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenus !" + +#. translators: 1: wp-config.php, 2: Location of wp-config file, 3: Translated +#. version of "That's all, stop editing! Happy publishing." +#: wp-admin/includes/network.php:526 +msgid "Add the following to your %1$s file in %2$s above the line reading %3$s:" +msgstr "Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :" + +#. translators: 1: Theme name, 2: Theme author. +#: wp-admin/network/themes.php:164 +msgctxt "theme" +msgid "%1$s by %2$s" +msgstr "%1$s par %2$s" + +#: wp-admin/network/site-new.php:229 +msgid "Only lowercase letters (a-z), numbers, and hyphens are allowed." +msgstr "Seuls les lettres minuscules (a-z), les nombres, et les traits d'union sont autorisés." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:598 +msgid "These unique authentication keys are also missing from your %s file." +msgstr "Ces clés d’authentification uniques manquent également à votre fichier %s." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:592 +msgid "This unique authentication key is also missing from your %s file." +msgstr "La clé unique d'authentification est aussi absente de votre fichier %s." + +#. translators: 1: localhost, 2: localhost.localdomain +#: wp-admin/includes/network.php:343 +msgid "Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains." +msgstr "Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines." + +#. translators: %s: Host name. +#: wp-admin/includes/network.php:325 wp-admin/includes/network.php:385 +msgid "The internet address of your network will be %s." +msgstr "L’adresse internet de votre réseau sera %s." + +#. translators: 1: Site URL, 2: Host name, 3: www. +#: wp-admin/includes/network.php:311 +msgid "You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix." +msgstr "Il est recommandé de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s." + +#: wp-admin/includes/network.php:259 +msgid "You cannot change this later." +msgstr "Vous ne pourrez pas changer ceci ultérieurement." + +#: wp-admin/includes/network.php:258 +msgid "Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories." +msgstr "Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires." + +#. translators: 1: mod_rewrite, 2: mod_rewrite documentation URL, 3: Google +#. search for mod_rewrite. +#: wp-admin/includes/network.php:239 +msgid "If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up." +msgstr "Si %1$s est désactivé, demandez à votre administrateur d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:231 +msgid "It looks like the Apache %s module is not installed." +msgstr "Il semble que le module %s d’Apache ne soit pas installé." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:223 +msgid "Please make sure the Apache %s module is installed as it will be used at the end of this installation." +msgstr "Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation." + +#. translators: %s: Port number. +#: wp-admin/includes/network.php:163 +msgid "You cannot use port numbers such as %s." +msgstr "Vous ne pouvez pas utiliser des numéros de port tels que %s." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:196 +#: wp-admin/includes/class-wp-ms-users-list-table.php:218 +msgctxt "user" +msgid "Registered" +msgstr "Inscription" + +#. translators: Number of users. +#: wp-admin/includes/class-wp-ms-users-list-table.php:159 +msgid "Super Admin (%s)" +msgid_plural "Super Admins (%s)" +msgstr[0] "Super-admin (%s)" +msgstr[1] "Super-admins (%s)" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:117 +msgctxt "user" +msgid "Not spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:116 +msgctxt "user" +msgid "Mark as spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:739 +msgid "Visit Theme Site" +msgstr "Aller sur le site du thème" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:702 +msgid "Broken Theme:" +msgstr "Thème cassé :" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:608 +msgid "Network Disable %s" +msgstr "Désactiver %s pour le réseau" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:605 +msgid "Disable %s" +msgstr "Désactiver %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:582 +msgid "Network Enable %s" +msgstr "Activer %s sur le réseau" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:579 +msgid "Enable %s" +msgstr "Activer %s" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:470 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:615 +msgid "Network Disable" +msgstr "Désactiver du réseau" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:470 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:615 +msgid "Disable" +msgstr "Désactiver" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:467 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:589 +msgid "Enable" +msgstr "Activer" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:414 +msgctxt "themes" +msgid "Broken (%s)" +msgid_plural "Broken (%s)" +msgstr[0] "Cassé (%s)" +msgstr[1] "Cassés (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:396 +msgctxt "themes" +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Désactivé (%s)" +msgstr[1] "Désactivés (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:387 +msgctxt "themes" +msgid "Enabled (%s)" +msgid_plural "Enabled (%s)" +msgstr[0] "Activé (%s)" +msgstr[1] "Activés (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:378 +msgctxt "themes" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:318 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:794 +msgctxt "verb; site" +msgid "Archive" +msgstr "Archiver" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:783 +msgid "Unarchive" +msgstr "Désarchiver" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:507 +msgid "Never" +msgstr "Jamais" + +#. translators: 1: Site title, 2: Site tagline. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:479 +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:369 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:404 +#: wp-admin/network/site-info.php:183 +msgctxt "site" +msgid "Registered" +msgstr "Inscription" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:368 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:403 +#: wp-admin/network/site-info.php:187 +msgid "Last Updated" +msgstr "Dernière mise à jour" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:807 +msgctxt "site" +msgid "Not Spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:296 +msgctxt "site" +msgid "Mark as spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:211 +msgid "No sites found." +msgstr "Aucun site trouvé." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:41 +#: wp-admin/network/site-info.php:197 +msgid "Mature" +msgstr "Adulte" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:40 +#: wp-admin/network/site-info.php:195 +msgid "Deleted" +msgstr "Supprimé" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:39 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:818 +#: wp-admin/network/site-info.php:194 +msgctxt "site" +msgid "Spam" +msgstr "Indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:38 +#: wp-admin/network/site-info.php:193 +msgid "Archived" +msgstr "Archivé" + +#: wp-admin/network/site-users.php:373 wp-admin/network/user-new.php:149 +msgid "A password reset link will be sent to the user via email." +msgstr "Un lien de réinitialisation de mot de passe sera envoyé à l’utilisateur par e-mail." + +#. translators: 1: NOBLOGREDIRECT, 2: wp-config.php +#: wp-admin/network/settings.php:227 +msgid "If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site." +msgstr "Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas." + +#. translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php +#: wp-admin/network.php:44 +msgid "You must define the %1$s constant as true in your %2$s file to allow creation of a Network." +msgstr "Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau." + +#: wp-admin/network/themes.php:346 +msgid "Themes list navigation" +msgstr "Parcours de la liste des thèmes" + +#: wp-admin/network/sites.php:53 +msgid "Sites list" +msgstr "Liste des sites" + +#: wp-admin/network/sites.php:52 +msgid "Sites list navigation" +msgstr "Parcours de la liste des sites" + +#: wp-admin/network/site-users.php:27 +msgid "Site users list" +msgstr "Liste des utilisateurs du site" + +#: wp-admin/network/site-users.php:26 +msgid "Site users list navigation" +msgstr "Parcours de la liste des utilisateurs du site" + +#: wp-admin/network/site-users.php:25 +msgid "Filter site users list" +msgstr "Filtrer la liste des utilisateurs du site" + +#: wp-admin/network/site-themes.php:24 +msgid "Site themes list" +msgstr "Liste des thèmes du site" + +#: wp-admin/network/site-themes.php:23 +msgid "Site themes list navigation" +msgstr "Parcours de la liste des thèmes du site" + +#: wp-admin/network/site-themes.php:22 +msgid "Filter site themes list" +msgstr "Filtrer la liste des thème du site" + +#: wp-admin/network/site-new.php:125 +msgid "The domain or path entered conflicts with an existing username." +msgstr "Le domaine ou le chemin saisi est entré en conflit avec un identifiant utilisateur existant." + +#: wp-admin/network/sites.php:90 +msgid "The requested action is not valid." +msgstr "L’action demandée n’est pas valide." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:82 +msgid "You are about to mark the site %s as not mature." +msgstr "Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:80 +msgid "You are about to mark the site %s as mature." +msgstr "Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:78 +msgid "You are about to delete the site %s." +msgstr "Vous êtes sur le point de supprimer le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:76 +msgid "You are about to mark the site %s as spam." +msgstr "Vous êtes sur le point de marquer le site %s comme indésirable." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:74 +msgid "You are about to unspam the site %s." +msgstr "Vous êtes sur le point de marquer le site %s comme sain." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:72 +msgid "You are about to archive the site %s." +msgstr "Vous êtes sur le point d’archiver le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:70 +msgid "You are about to unarchive the site %s." +msgstr "Vous êtes sur le point de désarchiver le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:68 +msgid "You are about to deactivate the site %s." +msgstr "Vous êtes sur le point de désactiver le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:66 +msgid "You are about to activate the site %s." +msgstr "Vous êtes sur le point d’activer le site %s." + +#: wp-admin/network/site-info.php:28 wp-admin/network/site-settings.php:28 +#: wp-admin/network/site-themes.php:53 wp-admin/network/site-users.php:46 +msgid "The requested site does not exist." +msgstr "Le site demandé n’existe pas." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:397 +msgid "Path" +msgstr "Chemin" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:394 +msgid "Domain" +msgstr "domaine" + +#: wp-admin/network/user-new.php:29 wp-admin/network/users.php:242 +msgid "Documentation on Network Users" +msgstr "Documentation sur les utilisateurs du réseau." + +#: wp-admin/network/themes.php:338 +msgid "Documentation on Network Themes" +msgstr "Documentation sur les thèmes du réseau." + +#. translators: 1: Site URL, 2: Server error message. +#: wp-admin/network/upgrade.php:99 +msgid "Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s" +msgstr "Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:416 +msgid "%s theme deleted." +msgid_plural "%s themes deleted." +msgstr[0] "%s thème supprimé." +msgstr[1] "%s thèmes supprimés." + +#. translators: %s: Number of themes. +#: wp-admin/network/site-themes.php:214 wp-admin/network/themes.php:405 +msgid "%s theme disabled." +msgid_plural "%s themes disabled." +msgstr[0] "%s thème désactivé." +msgstr[1] "%s thèmes désactivés." + +#. translators: %s: Number of themes. +#: wp-admin/network/site-themes.php:197 wp-admin/network/themes.php:394 +msgid "%s theme enabled." +msgid_plural "%s themes enabled." +msgstr[0] "%s thème activé." +msgstr[1] "%s thèmes activés." + +#: wp-admin/network/themes.php:190 +msgid "Yes, delete these themes" +msgstr "Oui, supprimer ces thèmes" + +#: wp-admin/network/themes.php:157 +msgid "You are about to remove the following themes:" +msgstr "Vous êtes sur le point d’enlever les thèmes suivants :" + +#: wp-admin/network/themes.php:151 +msgid "These themes may be active on other sites in the network." +msgstr "Ces thèmes peuvent être actifs sur d’autres site de ce réseau." + +#: wp-admin/network/themes.php:148 +msgid "Delete Themes" +msgstr "Supprimer les thèmes" + +#. translators: Hidden accessibility text. +#: wp-admin/network/site-info.php:206 +msgid "Set site attributes" +msgstr "Configurer les attributs du site" + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:519 +msgid "Enable menus" +msgstr "Activer les menus" + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:449 +msgid "Size in kilobytes" +msgstr "Taille en kilooctets" + +#: wp-admin/network/settings.php:431 +msgid "Allowed file types. Separate types by spaces." +msgstr "Types de fichier autorisés. Séparez les types par une espace." + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:215 +msgid "New registrations settings" +msgstr "Réglages pour les nouvelles inscriptions" + +#. translators: 1: File name (.htaccess or web.config), 2: File path. +#: wp-admin/includes/network.php:668 wp-admin/includes/network.php:730 +msgid "Add the following to your %1$s file in %2$s, replacing other WordPress rules:" +msgstr "Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :" + +#: wp-admin/network/sites.php:115 wp-admin/network/sites.php:193 +msgid "Confirm your action" +msgstr "Confirmez cette action" + +#: wp-admin/network/users.php:232 +msgid "Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site." +msgstr "Survolez n’importe quel des utilisateurs de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil de l'utilisateur ; le lien Modifier à droite de n'importe quel nom de site ouvrira l'écran de modification de ce site." + +#: wp-admin/network/index.php:44 +msgid "To search for a site, enter the path or domain." +msgstr "Pour chercher un site, saisissez son chemin ou son domaine." + +#: wp-admin/network/index.php:43 +msgid "To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*." +msgstr "Pour chercher un utilisateur, saisissez une adresse de messagerie ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple utilisa*." + +#: wp-admin/network/index.php:41 +msgid "To add a new site, click Create a New Site." +msgstr "Pour ajouter un nouveau site, cliquez sur Créer un nouveau site." + +#: wp-admin/network/index.php:40 +msgid "To add a new user, click Create a New User." +msgstr "Pour ajouter un nouvel utilisateur, cliquez sur Créer un nouvel utilisateur." + +#: wp-admin/network/index.php:49 +msgid "Quick Tasks" +msgstr "Tâches rapides" + +#: wp-admin/network/index.php:42 +msgid "To search for a user or site, use the search boxes." +msgstr "Pour chercher un utilisateur ou un site, utilisez les champs de recherche." + +#: wp-admin/network/index.php:39 +msgid "The Right Now widget on this screen provides current user and site counts on your network." +msgstr "Le widget Aujourd’hui de cet écran vous donne le nombre actuel d’utilisateurs et de sites sur votre réseau." + +#: wp-admin/network/index.php:29 +msgid "Modify global network settings" +msgstr "Modifier les réglages globaux du réseau" + +#: wp-admin/network/index.php:28 +msgid "Update your network" +msgstr "Mettre à jour votre réseau" + +#: wp-admin/network/index.php:27 +msgid "Install and activate themes or plugins" +msgstr "Installer et activer des thèmes ou des extensions" + +#: wp-admin/network/index.php:26 +msgid "Add and manage sites or users" +msgstr "Ajouter et gérer des sites ou des utilisateurs" + +#: wp-admin/network/index.php:25 +msgid "From here you can:" +msgstr "D’ici, vous pouvez :" + +#: wp-admin/network/index.php:24 +msgid "Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network." +msgstr "Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite." + +#: wp-admin/network/upgrade.php:24 +msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." +msgstr "N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées." + +#: wp-admin/network/menu.php:46 wp-admin/network/upgrade.php:16 +#: wp-admin/network/upgrade.php:43 wp-admin/network/upgrade.php:145 +msgid "Upgrade Network" +msgstr "Mettre à jour le réseau" + +#: wp-admin/includes/network.php:294 wp-admin/includes/network.php:674 +#: wp-admin/includes/network.php:736 +msgid "Subdirectory networks may not be fully compatible with custom wp-content directories." +msgstr "Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content." + +#: wp-admin/network.php:64 +msgid "Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules)." +msgstr "Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...stop editing...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress)." + +#: wp-admin/network/settings.php:461 +msgid "Language Settings" +msgstr "Réglages de langue" + +#: wp-admin/network/settings.php:253 +msgid "Allow site administrators to add new users to their site via the \"Users → Add New\" page" +msgstr "Autoriser les administrateurs de sites à ajouter de nouveaux utilisateurs à leurs sites via la page « Utilisateurs → Ajouter »." + +#: wp-admin/network/settings.php:58 +msgid "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." +msgstr "Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des utilisateurs (option « Utilisateurs » du menu « Admin du réseau ») et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte utilisateur, où une case à cocher donne les droits de super-admin." + +#: wp-admin/network/site-users.php:273 +msgid "Enter the username and email." +msgstr "Saisir l’identifiant et l’adresse de messagerie." + +#: wp-admin/network/site-users.php:270 +msgid "User created." +msgstr "L’utilisateur a été créé." + +#: wp-admin/network/site-users.php:266 +msgid "Select a user to remove." +msgstr "Sélectionnez un utilisateur à enlever." + +#: wp-admin/network/site-users.php:259 +msgid "Select a user to change role." +msgstr "Sélectionnez un utilisateur dont vous voulez changer le rôle." + +#: wp-admin/network/site-users.php:252 +msgid "Enter the username of an existing user." +msgstr "Saisir l’identifiant d’un utilisateur existant." + +#: wp-admin/network/site-users.php:246 +msgid "User is already a member of this site." +msgstr "Cet utilisateur est déjà membre de ce site." + +#: wp-admin/network/site-settings.php:78 +msgid "Site options updated." +msgstr "Les réglages du site ont été mis à jour." + +#. translators: 1: Dashboard URL, 2: Network admin edit URL. +#: wp-admin/network/site-new.php:174 +msgid "Site added. Visit Dashboard or Edit Site" +msgstr "Site ajouté. Afficher le tableau de bord | Modifier le site" + +#: wp-admin/network/site-new.php:25 +msgid "This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings." +msgstr "Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription." + +#: wp-admin/network/site-info.php:121 +msgid "Site info updated." +msgstr "Les infos du site ont été mises à jour." + +#: wp-admin/network/themes.php:446 +msgid "You cannot delete a theme while it is active on the main site." +msgstr "Vous ne pouvez pas effacer un thème s’il est activé sur le site principal." + +#: wp-admin/network/themes.php:316 +msgid "Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes." +msgstr "Les thèmes peuvent être activés par l’administrateur du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs du réseau peuvent installer ou modifier des thèmes." + +#: wp-admin/network/themes.php:197 +msgid "No, return me to the theme list" +msgstr "Non, je veux revenir à la liste des thèmes." + +#: wp-admin/network/themes.php:188 +msgid "Yes, delete this theme" +msgstr "Oui, supprimer ce thème" + +#: wp-admin/network/themes.php:174 +msgid "Are you sure you want to delete these themes?" +msgstr "Confirmez-vous la suppression de ces thèmes ?" + +#: wp-admin/network/themes.php:146 +msgid "You are about to remove the following theme:" +msgstr "Vous êtes sur le point de supprimer le thème suivant :" + +#: wp-admin/network/themes.php:140 +msgid "This theme may be active on other sites in the network." +msgstr "Ce thème est peut-être activé sur d’autres sites du réseau" + +#: wp-admin/network/themes.php:137 +msgid "Delete Theme" +msgstr "Supprimer le thème" + +#: wp-admin/network/site-themes.php:237 +msgid "Network enabled themes are not shown on this screen." +msgstr "Les thèmes activés pour le réseau ne sont pas visibles sur cet écran." + +#: wp-admin/network/site-themes.php:227 wp-admin/network/themes.php:443 +msgid "No theme selected." +msgstr "Aucun thème sélectionné." + +#: wp-admin/network/site-themes.php:211 wp-admin/network/themes.php:401 +msgid "Theme disabled." +msgstr "Thème désactivé." + +#: wp-admin/network/site-themes.php:194 wp-admin/network/themes.php:390 +msgid "Theme enabled." +msgstr "Thème activé." + +#. translators: %s: Site title. +#: wp-admin/network/site-info.php:127 wp-admin/network/site-settings.php:84 +#: wp-admin/network/site-themes.php:171 wp-admin/network/site-users.php:200 +msgid "Edit Site: %s" +msgstr "Modifier le site : %s" + +#: wp-admin/network/site-info.php:23 wp-admin/network/site-settings.php:23 +#: wp-admin/network/site-themes.php:46 wp-admin/network/site-users.php:41 +msgid "Invalid site ID." +msgstr "Identifiant du site non valide." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:168 +msgid "Sorry, you are not allowed to delete the site %s." +msgstr "Vous n’avez pas l’autorisation d’effacer ce site." + +#: wp-admin/network/sites.php:40 +msgid "Clicking on bold headings can re-sort this table." +msgstr "Cliquez sur les en-têtes en gras afin de retrier ce tableau." + +#: wp-admin/network/sites.php:37 +msgid "Delete which is a permanent action after the confirmation screens." +msgstr "« Supprimer » est une action irréversible une fois passé l’écran de confirmation." + +#: wp-admin/network/sites.php:35 +msgid "Dashboard leads to the Dashboard for that site." +msgstr "« Tableau de bord » mène au tableau de bord pour ce site." + +#: wp-admin/network/sites.php:34 +msgid "An Edit link to a separate Edit Site screen." +msgstr "Un lien « Modifier » vers un nouvel écran de modification de site." + +#: wp-admin/network/sites.php:31 +msgid "Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "Ajouter vous envoie au formulaire en bas de cette page. Vous pouvez chercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page." + +#: wp-admin/network/site-users.php:336 wp-admin/network/user-new.php:161 +msgid "Add User" +msgstr "Ajouter un utilisateur" + +#: wp-admin/network/user-new.php:55 +msgid "Cannot add user." +msgstr "Impossible d’ajouter l’utilisateur." + +#: wp-admin/network/user-new.php:22 +msgid "Add User will set up a new user account on the network and send that person an email with username and password." +msgstr "« Ajouter un utilisateur » créera un nouveau compte utilisateur sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire." + +#: wp-admin/network/menu.php:41 +msgid "Updates" +msgstr "Mises à jour" + +#: wp-admin/network/menu.php:111 wp-admin/network/settings.php:21 +msgid "Network Settings" +msgstr "Réglages du réseau" + +#: wp-admin/network/menu.php:80 +msgid "Installed Themes" +msgstr "Thèmes installés" + +#: wp-admin/network/menu.php:52 +msgid "All Sites" +msgstr "Tous les sites" + +#: wp-admin/includes/network.php:757 +msgid "Once you complete these steps, your network is enabled and configured. You will have to log in again." +msgstr "Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter." + +#: wp-admin/includes/network.php:603 +msgid "To make your installation more secure, you should also add:" +msgstr "Pour sécuriser encore plus votre installation, vous devriez également ajouter :" + +#: wp-admin/includes/network.php:488 +msgid "Complete the following steps to enable the features for creating a network of sites." +msgstr "Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites." + +#: wp-admin/includes/network.php:487 +msgid "Enabling the Network" +msgstr "Activer le Réseau" + +#: wp-admin/includes/network.php:476 +msgid "Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables." +msgstr "Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données." + +#: wp-admin/includes/network.php:470 +msgid "An existing WordPress network was detected." +msgstr "Un réseau WordPress pré-existant a été détecté." + +#: wp-admin/includes/network.php:464 +msgid "The original configuration steps are shown here for reference." +msgstr "Les étapes de la configuration originale sont affichées ici pour référence." + +#: wp-admin/includes/network.php:406 +msgid "Your email address." +msgstr "Votre adresse de messagerie." + +#: wp-admin/includes/network.php:397 +msgid "What would you like to call your network?" +msgstr "Comment souhaitez-vous appeler votre réseau ?" + +#: wp-admin/includes/network.php:393 wp-admin/network/settings.php:159 +msgid "Network Title" +msgstr "Titre du réseau" + +#: wp-admin/includes/network.php:372 +msgid "Because your installation is not new, the sites in your WordPress network must use sub-domains." +msgstr "Comme votre installation de WordPress n’est pas récente, les sites de votre réseau doivent utiliser des sous-domaines." + +#: wp-admin/includes/network.php:359 +msgid "Because your installation is in a directory, the sites in your WordPress network must use sub-directories." +msgstr "Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires." + +#: wp-admin/includes/network.php:349 wp-admin/includes/network.php:362 +#: wp-admin/includes/network.php:373 +msgid "The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links." +msgstr "Le site principal d’une installation en sous-répertoire devra utiliser une structure de permaliens modifiée, ce qui pourrait potentiellement casser vos liens existants." + +#: wp-admin/includes/network.php:334 +msgid "Network Details" +msgstr "Détails du réseau" + +#: wp-admin/includes/network.php:306 wp-admin/includes/network.php:320 +#: wp-admin/includes/network.php:380 +msgid "Server Address" +msgstr "Adresse du serveur" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:281 +msgctxt "subdirectory examples" +msgid "like %1$s/site1 and %1$s/site2" +msgstr "comme %1$s/site1 et %1$s/site2" + +#: wp-admin/includes/network.php:276 +msgid "Sub-directories" +msgstr "Sous-répertoires" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:269 +msgctxt "subdomain examples" +msgid "like site1.%1$s and site2.%1$s" +msgstr "comme site1.%1$s et site2.%1$s" + +#: wp-admin/includes/network.php:264 +msgid "Sub-domains" +msgstr "Sous-domaines" + +#: wp-admin/includes/network.php:260 +msgid "You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality." +msgstr "Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard)." + +#: wp-admin/includes/network.php:257 +msgid "Addresses of Sites in your Network" +msgstr "Adresses des sites de votre réseau" + +#: wp-admin/includes/network.php:206 +msgid "Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step." +msgstr "Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites WordPress. Les fichiers de configuration seront créés lors de la prochaine étape." + +#: wp-admin/includes/network.php:205 +msgid "Welcome to the Network installation process!" +msgstr "Bienvenue dans l’installation du Réseau !" + +#: wp-admin/includes/network.php:178 +msgid "Error: The network could not be created." +msgstr "Erreur : Le réseau ne peut pas être créé." + +#: wp-admin/includes/network.php:155 +msgid "You cannot install a network of sites with your server address." +msgstr "Vous ne pouvez pas installer un réseau de sites avec votre adresse de serveur." + +#: wp-admin/includes/network.php:145 +msgid "Once the network is created, you may reactivate your plugins." +msgstr "Dès que le réseau sera créé, vous pourrez réactiver vos extensions." + +#. translators: %s: URL to Plugins screen. +#: wp-admin/includes/network.php:140 +msgid "Please deactivate your plugins before enabling the Network feature." +msgstr "Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau. " + +#: wp-admin/network.php:74 +msgid "Network" +msgstr "Réseau" + +#: wp-admin/network.php:66 +msgid "The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version." +msgstr "Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de « /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version." + +#: wp-admin/network.php:65 +msgid "Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar." +msgstr "Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils." + +#: wp-admin/network.php:63 +msgid "The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files." +msgstr "L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde." + +#: wp-admin/network.php:62 +msgid "Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories)." +msgstr "Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers)." + +#: wp-admin/network.php:61 +msgid "This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it." +msgstr "Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet." + +#: wp-admin/network.php:57 +msgid "Create a Network of WordPress Sites" +msgstr "Créer un réseau de sites WordPress" + +#: wp-admin/network.php:29 +msgid "The Network creation panel is not for WordPress MU networks." +msgstr "Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU." + +#. translators: %s: User login. +#: wp-admin/network/users.php:87 +msgid "Warning! User cannot be modified. The user %s is a network administrator." +msgstr "Attention ! L’utilisateur %s ne peut être modifié car c’est un administrateur du réseau." + +#: wp-admin/network/site-new.php:26 +msgid "If the admin email for the new site does not exist in the database, a new user will also be created." +msgstr "Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouvel utilisateur sera créé pour l’occasion." + +#: wp-admin/network/sites.php:39 +msgid "The site ID is used internally, and is not shown on the front end of the site or to users/viewers." +msgstr "L’ID du site est utilisé en interne et n’est pas affiché dans la partie publique du site, ni aux utilisateurs/visiteurs." + +#: wp-admin/network/sites.php:36 +msgid "Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later." +msgstr "« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite ." + +#: wp-admin/network/sites.php:33 +msgid "Hovering over each site reveals seven options (three for the primary site):" +msgstr "Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :" + +#: wp-admin/network/settings.php:52 +msgid "Operational settings has fields for the network’s name and admin email." +msgstr "Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse de messagerie de l’administrateur." + +#: wp-admin/network/users.php:235 +msgid "The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses." +msgstr "Le menu « Actions groupées » permet d’effacer définitivement plusieurs utilisateurs d’un coup, ou de les marquer comme sains ou indésirables. Les utilisateurs indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse de messagerie." + +#: wp-admin/network/users.php:233 +msgid "You can also go to the user’s profile page by clicking on the individual username." +msgstr "Vous pouvez également aller sur la page de profil d’un utilisateur en cliquant sur son identifiant." + +#: wp-admin/network/settings.php:55 +msgid "Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only)." +msgstr "Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers téléversés et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces)." + +#: wp-admin/network/sites.php:38 +msgid "Visit to go to the front-end site live." +msgstr "« Afficher » envoie vers la page d’accueil du site." + +#: wp-admin/network/users.php:236 +msgid "You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege." +msgstr "Vous pouvez promouvoir un utilisateur existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante." + +#: wp-admin/network/user-new.php:23 +msgid "Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them." +msgstr "Les utilisateurs qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces utilisateurs ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé." + +#: wp-admin/network/users.php:234 +msgid "You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list." +msgstr "Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non." + +#: wp-admin/network/users.php:231 +msgid "This table shows all users across the network and the sites to which they are assigned." +msgstr "Ce tableau affiche tous les utilisateurs appartenant au réseau, et les sites auxquels ils sont assignés." + +#: wp-admin/network/upgrade.php:26 +msgid "If this process fails for any reason, users logging in to their sites will force the same update." +msgstr "Si ce processus échoue pour n’importe quelles raisons, les utilisateurs se connectant à leurs sites déclencheront la même mise à jour." + +#: wp-admin/network/upgrade.php:25 +msgid "If a version update to core has not happened, clicking this button will not affect anything." +msgstr "S’il n’y a pas eu de mise à jour du cœur WordPress récemment, cliquer sur ce bouton n’aura aucun effet." + +#: wp-admin/network/themes.php:315 +msgid "If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen." +msgstr "Si l’administrateur du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site." + +#: wp-admin/network/themes.php:314 +msgid "This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using." +msgstr "Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site." + +#: wp-admin/network/sites.php:32 +msgid "This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table." +msgstr "Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste." + +#: wp-admin/network/settings.php:57 +msgid "Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins." +msgstr "Le réglage du menu (dés)active la section « Extensions » du menu pour les utilisateurs normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension." + +#: wp-admin/network/settings.php:54 +msgid "New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL." +msgstr "Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouvel utilisateur ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’adresse web du commentateur)." + +#: wp-admin/network/settings.php:53 +msgid "Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network." +msgstr "Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule." + +#: wp-admin/network/settings.php:51 +msgid "This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options." +msgstr "Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site." + +#. translators: %s: Reserved names list. +#: wp-admin/network/site-new.php:59 +msgid "The following words are reserved for use by WordPress functions and cannot be used as site names: %s" +msgstr "Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s" + +#: wp-admin/network/upgrade.php:125 +msgid "If your browser does not start loading the next page automatically, click this link:" +msgstr "Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :" + +#: wp-admin/network/settings.php:316 +msgid "If you want to ban domains from site registrations. One domain per line." +msgstr "Si vous souhaitez interdire la création de sites aux personnes dont l’adresse de messagerie est liée à certains noms de domaines. Un domaine par ligne." + +#: wp-admin/network/settings.php:296 +msgid "If you want to limit site registrations to certain domains. One domain per line." +msgstr "Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse de messagerie liée à certains noms de domaines. Un domaine par ligne." + +#: wp-admin/network/users.php:266 +msgid "Users removed from spam." +msgstr "Utilisateurs marqués comme sains." + +#: wp-admin/network/sites.php:343 +msgid "Site marked as spam." +msgstr "Site marqué comme indésirable." + +#: wp-admin/network/sites.php:340 +msgid "Site removed from spam." +msgstr "Site marqué comme sain." + +#: wp-admin/network/sites.php:316 +msgid "Sites marked as spam." +msgstr "Sites marqués comme indésirables." + +#: wp-admin/network/sites.php:313 +msgid "Sites removed from spam." +msgstr "Sites marqués comme sains." + +#: wp-admin/network/users.php:269 +msgid "Users deleted." +msgstr "Utilisateurs supprimés." + +#: wp-admin/network/users.php:263 +msgid "Users marked as spam." +msgstr "Utilisateurs marqués comme indésirables." + +#: wp-admin/network/sites.php:337 +msgid "Site deactivated." +msgstr "Site désactivé." + +#: wp-admin/network/sites.php:334 +msgid "Site activated." +msgstr "Site activé." + +#: wp-admin/network/sites.php:331 +msgid "Site unarchived." +msgstr "Site désarchivé." + +#: wp-admin/network/sites.php:328 +msgid "Site archived." +msgstr "Site archivé." + +#: wp-admin/network/sites.php:322 +msgid "Site deleted." +msgstr "Site effacé." + +#: wp-admin/network/sites.php:319 +msgid "Sites deleted." +msgstr "Sites effacés." + +#: wp-admin/network/sites.php:106 wp-admin/network/sites.php:228 +msgid "Sorry, you are not allowed to change the current site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier le site actuel." + +#: wp-admin/network/site-new.php:130 +msgid "There was an error creating the user." +msgstr "Une erreur s’est produite lors de la création d’un utilisateur." + +#: wp-admin/network/settings.php:427 +msgid "Upload file types" +msgstr "Types de fichiers " + +#. translators: %s: Number of megabytes to limit uploads to. +#: wp-admin/network/settings.php:412 +msgid "Limit total size of files uploaded to %s MB" +msgstr "La taille totale des fichiers téléversés est limitée à %s Mo" + +#: wp-admin/network/settings.php:398 +msgid "The URL for the first comment on a new site." +msgstr "L’adresse web du premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:380 +msgid "The author of the first comment on a new site." +msgstr "L’auteur du premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:371 +msgid "The first comment on a new site." +msgstr "Le premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:361 +msgid "The first page on a new site." +msgstr "La première page sur tout nouveau site." + +#: wp-admin/network/settings.php:351 +msgid "The first post on a new site." +msgstr "Le premier article sur tout nouveau site." + +#: wp-admin/network/upgrade.php:74 +msgid "All done!" +msgstr "Terminé !" + +#: wp-admin/network/settings.php:221 +msgid "Both sites and user accounts can be registered" +msgstr "La création de sites et d’utilisateurs est autorisée." + +#: wp-admin/network/settings.php:220 +msgid "Logged in users may register new sites" +msgstr "Les utilisateurs connectés peuvent créer de nouveaux sites." + +#: wp-admin/network/settings.php:219 +msgid "User accounts may be registered" +msgstr "Les comptes utilisateurs peuvent être créés." + +#: wp-admin/network/settings.php:218 +msgid "Registration is disabled" +msgstr "Les inscriptions ne sont pas autorisées pour le moment." + +#: wp-admin/network/settings.php:514 +msgid "Enable administration menus" +msgstr "Activer les menus d’administration" + +#: wp-admin/network/settings.php:403 +msgid "Upload Settings" +msgstr "Réglages des téléversements" + +#: wp-admin/network/settings.php:322 +msgid "New Site Settings" +msgstr "Réglages des nouveaux sites" + +#: wp-admin/network/settings.php:200 +msgid "Registration Settings" +msgstr "Réglages d’inscription" + +#: wp-admin/network/settings.php:156 +msgid "Operational Settings" +msgstr "Réglages de fonctionnement" + +#: wp-admin/network/site-new.php:95 +msgid "Missing email address." +msgstr "Adresse de messagerie manquante." + +#: wp-admin/network/site-new.php:91 +msgid "Missing or invalid site address." +msgstr "Adresse de site manquante ou non valide." + +#: wp-admin/network/upgrade.php:125 +msgid "Next Sites" +msgstr "Sites suivants" + +#: wp-admin/network/settings.php:406 +msgid "Site upload space" +msgstr "Espace de stockage du site" + +#: wp-admin/network/settings.php:331 +msgid "The welcome email sent to new site owners." +msgstr "Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites." + +#: wp-admin/network/settings.php:271 +msgid "Users are not allowed to register these sites. Separate names by spaces." +msgstr "Les utilisateurs ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace." + +#: wp-admin/network/settings.php:246 +msgid "Send the network admin an email notification every time someone registers a site or user account" +msgstr "Envoyer un message à l’administrateur du réseau à chaque création de site ou d’utilisateur." + +#: wp-admin/includes/network.php:402 wp-admin/network/settings.php:166 +msgid "Network Admin Email" +msgstr "Adresse de messagerie de l’administrateur du réseau" + +#: wp-admin/network/site-new.php:287 +msgid "A new user will be created if the above email address is not in the database." +msgstr "Un nouvel utilisateur sera créé si l’adresse de contact n’existe pas dans la base de données." + +#: wp-admin/network/site-new.php:279 +msgid "Admin Email" +msgstr "Adresse de contact de l’administrateur" + +#: wp-admin/network/site-new.php:299 +msgid "Add Site" +msgstr "Ajouter un site" + +#: wp-admin/network/settings.php:464 +msgid "Default Language" +msgstr "Langue par défaut" + +#: wp-admin/network/settings.php:437 +msgid "Max upload file size" +msgstr "Taille maximale des fichiers" + +#: wp-admin/network/settings.php:394 +msgid "First Comment URL" +msgstr "Adresse du premier commentaire" + +#: wp-admin/network/settings.php:376 +msgid "First Comment Author" +msgstr "Auteur du premier commentaire" + +#: wp-admin/network/settings.php:366 +msgid "First Comment" +msgstr "Premier commentaire" + +#: wp-admin/network/settings.php:356 +msgid "First Page" +msgstr "Première page" + +#: wp-admin/network/settings.php:341 +msgid "The welcome email sent to new users." +msgstr "Ce message de bienvenue sera envoyé aux nouveaux utilisateurs." + +#: wp-admin/network/settings.php:336 +msgid "Welcome User Email" +msgstr "Message de bienvenue des utilisateurs" + +#: wp-admin/network/settings.php:326 +msgid "Welcome Email" +msgstr "Message de bienvenue" + +#: wp-admin/network/settings.php:302 +msgid "Banned Email Domains" +msgstr "Noms de domaines bannis" + +#: wp-admin/network/settings.php:277 +msgid "Limited Email Registrations" +msgstr "Enregistrement réservé aux noms de domaines" + +#: wp-admin/network/settings.php:258 +msgid "Banned Names" +msgstr "Noms bannis" + +#: wp-admin/network/settings.php:251 +msgid "Add New Users" +msgstr "Ajouter de nouveaux utilisateurs" + +#: wp-admin/network/settings.php:239 +msgid "Registration notification" +msgstr "Notification d’inscription" + +#: wp-admin/network/settings.php:203 +msgid "Allow new registrations" +msgstr "Autoriser les nouvelles inscriptions" + +#: wp-admin/network/site-users.php:276 +msgid "Duplicated username or email address." +msgstr "Identifiant ou adresse de messagerie déjà utilisé(e)." + +#: wp-admin/network/user-new.php:41 +msgid "Cannot create an empty user." +msgstr "Impossible de créer un utilisateur vide." \ No newline at end of file diff --git a/web/app/languages/admin-network-fr_FR.l10n.php b/web/app/languages/admin-network-fr_FR.l10n.php new file mode 100644 index 00000000..797b0ae8 --- /dev/null +++ b/web/app/languages/admin-network-fr_FR.l10n.php @@ -0,0 +1,2 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2025-03-31 12:54:40+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration - Network Admin','language'=>'fr','messages'=>['Documentation on Upgrade Network'=>'Documentation sur la mise à jour d’un réseau multisite (en anglais)','Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.'=>'Supprimer un site est une action irréversible. Cela supprimera l’ensemble du site ainsi que son dossier contenantles téléversements.','Delete this site permanently'=>'Supprimer définitivement ce site.','Visit to go to the front-end of the live site.'=>'Cliquer pour aller voir le site en live.','Documentation on Network Settings'=>'Documentation sur les réglages du réseau multisite (en anglais)','Documentation on the Network Admin'=>'Documentation sur l’administration d’un réseau multisite (en anglais)','Documentation on Creating a Network'=>'Documentation sur la création d’un réseau multisite (en anglais)','https://developer.wordpress.org/advanced-administration/server/web-server/nginx/'=>'https://developer.wordpress.org/advanced-administration/server/web-server/nginx/','siteActivate'=>'Activer','Missing site title.'=>'Titre du site manquant.','Table ordered by User Registered Date.'=>'Tableau trié par date d’inscription du compte.','Table ordered by Theme Name.'=>'Tableau trié par nom de thème.','Table ordered by Site Registered Date.'=>'Tableau trié par date de création du site.','Table ordered by Last Updated.'=>'Tableau trié par date de dernière mise à jour.','Table ordered by Site Path.'=>'Tableau trié par chemin d’accès du site.','Table ordered by Site Domain Name.'=>'Tableau trié par nom de domaine du site.','Network configuration authentication keys'=>'Clés d’authentification de la configuration du réseau','Network configuration rules for %s'=>'Règles de configuration du réseau pour le fichier %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress a été mis à jour ! La prochaine étape pour finaliser est de mettre à niveau individuellement les sites de votre réseau.','Cannot create an empty site.'=>'Impossible de créer un site vide.','You should back up your existing %s file.'=>'Vous devez sauvegarder votre fichier %s existant.','You should back up your existing %1$s and %2$s files.'=>'Vous devriez sauvegarder vos fichiers %1$s et %2$s existants.','Visit theme site for %s'=>'Consultez le site du thème pour %s','Child theme of %s'=>'Thème enfant de %s','sitePublic'=>'Public','siteNot spam'=>'Non indésirable','%s theme will no longer be auto-updated.'=>'%s thème ne sera plus mis à jour automatiquement.' . "\0" . '%s thèmes ne seront plus mis à jour automatiquement.','%s theme will be auto-updated.'=>'%s thème sera mis à jour automatiquement.' . "\0" . '%s thèmes seront mis à jour automatiquement.','Sorry, you are not allowed to change themes automatic update settings.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages de mise à jour automatique des thèmes.','No themes are currently available.'=>'Aucun thème n’est actuellement disponible.','Y/m/d g:i:s a'=>'d/m/Y G:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'Il semble que votre réseau fonctionne avec un serveur web Nginx. En savoir plus sur les possibilités de configurations supplémentaires.','Deleted (%s)'=>'Supprimé (%s)' . "\0" . 'Supprimés (%s)','sitesSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','Mature (%s)'=>'Contenu adulte (%s)' . "\0" . 'Contenu adulte (%s)','Archived (%s)'=>'Archivé (%s)' . "\0" . 'Archivés (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Publics (%s)','sitesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','themesUpdate Available (%s)'=>'Mise à jour disponible (%s)' . "\0" . 'Mises à jour disponible (%s)','Main'=>'Principal','Documentation on the Network Screen'=>'Documentation sur l’écran Créer un réseau de sites WordPress (en anglais)','The constant %s cannot be defined when creating a network.'=>'La constante %s ne peut pas être définie lors de la création d’un réseau.','You are about to delete the following sites:'=>'Vous allez supprimer les sites suivants :','User could not be added to this site.'=>'Le compte ne peut pas être ajouté à ce site.','The username and a link to set the password will be mailed to this email address.'=>'L’identifiant et un lien pour mettre en place son mot de passe seront envoyés à cette adresse e-mail.','There is a pending change of the network admin email to %s.'=>'Il y a une modification en attente pour l’e-mail d’administration du réseau sur %s.','Sub-domain Installation'=>'Installation en sous-domaine','Sub-directory Installation'=>'Installation en sous-répertoire','Active Child Theme'=>'Thème enfant actif','%s KB'=>'%s Ko','%s Sites'=>'Les sites de %s','Sorry, you are not allowed to delete themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to manage network themes.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau.','Sorry, you are not allowed to delete that site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to manage themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site.','Sorry, you are not allowed to add sites to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau.','Sorry, you are not allowed to edit this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce site.','The email address of the first comment author on a new site.'=>'L’adresse e-mail de l’auteur ou autrice du premier commentaire sur un nouveau site.','First Comment Email'=>'E-mail du premier commentaire','That’s all, stop editing! Happy publishing.'=>'C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenus !','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :','theme%1$s by %2$s'=>'%1$s par %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Uniquement des lettres minuscules non accentuées (a-z), des chiffres (0-9), et des traits d’union (-) sont autorisés.','These unique authentication keys are also missing from your %s file.'=>'Ces clés d’authentification uniques manquent également à votre fichier %s.','This unique authentication key is also missing from your %s file.'=>'La clé unique d’authentification est aussi absente de votre fichier %s.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines.','The internet address of your network will be %s.'=>'L’adresse internet de votre réseau sera %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'Il est recommandé de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s.','You cannot change this later.'=>'Vous ne pourrez pas changer ceci ultérieurement.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'Si %1$s est désactivé, demandez à votre administrateur ou administratrice d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation.','It looks like the Apache %s module is not installed.'=>'Il semble que le module %s d’Apache ne soit pas installé.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation.','userRegistered'=>'Inscription','Super Admin (%s)'=>'Super-admin (%s)' . "\0" . 'Super-admins (%s)','userNot spam'=>'N’est pas un indésirable','userMark as spam'=>'Marquer comme indésirable','Visit Theme Site'=>'Aller sur le site du thème','Broken Theme:'=>'Thème cassé :','Network Disable %s'=>'Désactiver %s pour le réseau','Disable %s'=>'Désactiver %s','Network Enable %s'=>'Activer %s sur le réseau','Enable %s'=>'Activer %s','Network Disable'=>'Désactiver du réseau','themesBroken (%s)'=>'Cassé (%s)' . "\0" . 'Cassés (%s)','themesDisabled (%s)'=>'Désactivé (%s)' . "\0" . 'Désactivés (%s)','themesEnabled (%s)'=>'Activé (%s)' . "\0" . 'Activés (%s)','themesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','No themes found.'=>'Aucun thème trouvé.','verb; siteArchive'=>'Archiver','Unarchive'=>'Désarchiver','Never'=>'Jamais','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Inscription','Last Updated'=>'Dernière mise à jour','siteNot Spam'=>'N’est pas un indésirable','siteMark as spam'=>'Marquer comme indésirable','No sites found.'=>'Aucun site trouvé.','Mature'=>'Adulte','Deleted'=>'Supprimé','siteSpam'=>'Indésirable','Archived'=>'Archivé','A password reset link will be sent to the user via email.'=>'Un lien de réinitialisation de mot de passe sera envoyé par e-mail au compte.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau.','Themes list navigation'=>'Naviguation de la liste des thèmes','Sites list'=>'Liste des sites','Sites list navigation'=>'Navigation de la liste des sites','Site users list'=>'Liste des comptes du site','Site users list navigation'=>'Parcours de la liste des comptes du site','Filter site users list'=>'Filtrer la liste des comptes du site','Site themes list'=>'Liste des thèmes du site','Site themes list navigation'=>'Parcours de la liste des thèmes du site','Filter site themes list'=>'Filtrer la liste des thème du site','The domain or path entered conflicts with an existing username.'=>'Le domaine ou le chemin saisi est entré en conflit avec un identifiant existant.','The requested action is not valid.'=>'L’action demandée n’est pas valide.','You are about to mark the site %s as not mature.'=>'Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes.','You are about to mark the site %s as mature.'=>'Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes.','You are about to delete the site %s.'=>'Vous êtes sur le point de supprimer le site %s.','You are about to mark the site %s as spam.'=>'Vous êtes sur le point de marquer le site %s comme indésirable.','You are about to unspam the site %s.'=>'Vous êtes sur le point de marquer le site %s comme sain.','You are about to archive the site %s.'=>'Vous êtes sur le point d’archiver le site %s.','You are about to unarchive the site %s.'=>'Vous êtes sur le point de désarchiver le site %s.','You are about to deactivate the site %s.'=>'Vous êtes sur le point de désactiver le site %s.','You are about to activate the site %s.'=>'Vous êtes sur le point d’activer le site %s.','The requested site does not exist.'=>'Le site demandé n’existe pas.','Path'=>'Chemin ','Domain'=>'Domaine','Documentation on Network Users'=>'Documentation sur les comptes du réseau (en anglais).','Documentation on Network Themes'=>'Documentation sur les thèmes du réseau (en anglais).','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s.','%s theme deleted.'=>'%s thème supprimé.' . "\0" . '%s thèmes supprimés.','%s theme disabled.'=>'%s thème désactivé.' . "\0" . '%s thèmes désactivés.','%s theme enabled.'=>'%s thème activé.' . "\0" . '%s thèmes activés.','Yes, delete these themes'=>'Oui, supprimer ces thèmes','You are about to remove the following themes:'=>'Vous êtes sur le point d’enlever les thèmes suivants :','These themes may be active on other sites in the network.'=>'Ces thèmes peuvent être actifs sur d’autres site de ce réseau.','Delete Themes'=>'Supprimer les thèmes','Set site attributes'=>'Configurer les attributs du site','Enable menus'=>'Activer les menus','Size in kilobytes'=>'Taille en kilooctets','Allowed file types. Separate types by spaces.'=>'Types de fichier autorisés. Séparez les types par une espace.','New registrations settings'=>'Réglages pour les nouvelles inscriptions','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :','Confirm your action'=>'Confirmez cette action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Survolez n’importe quel compte de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil du compte ; le lien Modifier à droite de n’importe quel nom de site ouvrira l’écran de modification de ce site.','To search for a site, enter the path or domain.'=>'Pour rechercher un site, saisissez son chemin ou son domaine.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'Pour rechercher un compte, saisissez une adresse e-mail ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple compt*.','To add a new site, click Create a New Site.'=>'Pour ajouter un nouveau site, cliquer sur Créer un nouveau site.','To add a new user, click Create a New User.'=>'Pour ajouter un nouveau compte, cliquez sur Créer un nouveau compte.','Quick Tasks'=>'Tâches rapides','To search for a user or site, use the search boxes.'=>'Pour rechercher un compte ou un site, utilisez les champs de recherche.','The Right Now widget on this screen provides current user and site counts on your network.'=>'Le widget « Aujourd’hui » de cet écran vous donne le nombre actuel de comptes et de sites sur votre réseau.','Modify global network settings'=>'Modifier les réglages globaux du réseau','Update your network'=>'Mettre à jour votre réseau','Install and activate themes or plugins'=>'Installer et activer des thèmes ou des extensions','Add and manage sites or users'=>'Ajouter et gérer des sites ou des comptes','From here you can:'=>'D’ici, vous pouvez :','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées.','Upgrade Network'=>'Mettre à jour le réseau','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...C’est tout...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress).','Language Settings'=>'Réglages de langue','Allow site administrators to add new users to their site via the "Users → Add User" page'=>'Autoriser les administrateurs ou administratrices de sites à ajouter de nouveaux comptes à leurs sites via la page « Comptes → Ajouter ».','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des comptes (option « Comptes » du menu « Admin du réseau » et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte, où une case à cocher donne les droits de super-admin.','Enter the username and email.'=>'Saisissez l’identifiant et l’adresse e-mail.','User created.'=>'Le compte a été créé.','Select a user to remove.'=>'Sélectionnez un compte à supprimer.','Select a user to change role.'=>'Sélectionnez un compte dont vous voulez changer le rôle.','Enter the username of an existing user.'=>'Saisir l’identifiant d’un compte existant.','User is already a member of this site.'=>'Ce compte est déjà membre de ce site.','Site options updated.'=>'Les réglages du site ont été mis à jour.','Site added. Visit Dashboard or Edit Site'=>'Site ajouté. Afficher le tableau de bord | Modifier le site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription.','Site info updated.'=>'Les infos du site ont été mises à jour.','You cannot delete a theme while it is active on the main site.'=>'Vous ne pouvez pas effacer un thème s’il est activé sur le site principal.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Les thèmes peuvent être activés par l’administrateur/administratrice du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs ou administratrices du réseau peuvent installer ou modifier des thèmes.','No, return me to the theme list'=>'Non, je veux revenir à la liste des thèmes.','Yes, delete this theme'=>'Oui, supprimer ce thème','Are you sure you want to delete these themes?'=>'Confirmez-vous la suppression de ces thèmes ?','You are about to remove the following theme:'=>'Vous êtes sur le point de supprimer le thème suivant :','This theme may be active on other sites in the network.'=>'Ce thème est peut-être activé sur d’autres sites du réseau','Delete Theme'=>'Supprimer le thème','Network enabled themes are not shown on this screen.'=>'Les thèmes activés pour le réseau ne sont pas visibles sur cet écran.','No theme selected.'=>'Aucun thème sélectionné.','Theme disabled.'=>'Thème désactivé.','Theme enabled.'=>'Thème activé.','Edit Site: %s'=>'Modifier le site : %s','Invalid site ID.'=>'ID du site non valide.','Sorry, you are not allowed to delete the site %s.'=>'Désolé, vous n’avez pas l’autorisation de supprimer le site %s.','Delete which is a permanent action after the confirmation screen.'=>'« Supprimer » est une action irréversible une fois passé l’écran de confirmation.','Dashboard leads to the Dashboard for that site.'=>'« Tableau de bord » envoie vers le tableau de bord du site.','An Edit link to a separate Edit Site screen.'=>'Un lien « Modifier » vers un nouvel écran de modification de site.','Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'« Ajouter un site » vous enverra au formulaire en bas de cette page. Vous pouvez rechercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page.','Add Users'=>'Ajouter un compte','Cannot add user.'=>'Impossible d’ajouter le compte.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'« Ajouter un compte » créera un nouveau compte sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire.','Updates'=>'Mises à jour','Network Settings'=>'Réglages du réseau','Installed Themes'=>'Thèmes installés','All Sites'=>'Tous les sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter.','To make your installation more secure, you should also add:'=>'Pour sécuriser encore plus votre installation, vous devriez également ajouter :','Complete the following steps to enable the features for creating a network of sites.'=>'Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites.','Enabling the Network'=>'Activer le Réseau','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données.','An existing WordPress network was detected.'=>'Un réseau WordPress pré-existant a été détecté.','The original configuration steps are shown here for reference.'=>'Les étapes de la configuration originale sont affichées ici pour référence.','Your email address.'=>'Votre adresse e-mail.','What would you like to call your network?'=>'Comment souhaitez-vous appeler votre réseau ?','Network Title'=>'Titre du réseau','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Comme votre installation de WordPress n’est pas récente, les sites de votre réseau doivent utiliser des sous-domaines.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'Le site principal d’une installation en sous-répertoire devra utiliser une structure de permaliens modifiée, ce qui pourrait potentiellement casser vos liens existants.','Network Details'=>'Détails du réseau','Server Address'=>'Adresse du serveur','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'comme %1$s/site1 et %1$s/site2','Sub-directories'=>'Sous-répertoires','subdomain exampleslike site1.%1$s and site2.%1$s'=>'comme site1.%1$s et site2.%1$s','Sub-domains'=>'Sous-domaines','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard).','Addresses of Sites in your Network'=>'Adresses des sites de votre réseau','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites WordPress. Les fichiers de configuration seront créés lors de la prochaine étape.','Welcome to the Network installation process!'=>'Bienvenue dans l’installation du Réseau !','The network could not be created.'=>'Le réseau ne peut pas être créé.','Once the network is created, you may reactivate your plugins.'=>'Dès que le réseau sera créé, vous pourrez réactiver vos extensions.','Please deactivate your plugins before enabling the Network feature.'=>'Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau.','Network'=>'Réseau','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de «  /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet.','Create a Network of WordPress Sites'=>'Créer un réseau de sites WordPress','The Network creation panel is not for WordPress MU networks.'=>'Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Avertissement ! Le compte %s ne peut être modifié car c’est un administrateur ou une administratrice du réseau.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouveau compte sera créé pour l’occasion.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite.','Hovering over each site reveals seven options (three for the primary site):'=>'Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :','Operational settings has fields for the network’s name and admin email.'=>'Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse e-mail de l’administrateur ou de l’administratrice.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'Le menu « Actions groupées » permet de supprimer définitivement plusieurs comptes d’un coup, ou de les marquer comme indésirables ou non. Les comptes indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse e-mail.','You can also go to the user’s profile page by clicking on the individual username.'=>'Vous pouvez également aller sur la page de profil d’un compte en cliquant sur son identifiant.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers téléversés et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces).','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'Vous pouvez promouvoir un compte existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Les comptes qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces comptes ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non.','This table shows all users across the network and the sites to which they are assigned.'=>'Ce tableau affiche tous les comptes appartenant au réseau, et les sites auxquels ils sont assignés.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'Si ce processus échoue pour n’importe quelles raisons, les comptes se connectant à leurs sites déclencheront la même mise à jour.','If a version update to core has not happened, clicking this button will not affect anything.'=>'S’il n’y a pas eu de mise à jour du cœur WordPress récemment, cliquer sur ce bouton n’aura aucun effet.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'Si l’administrateur/administratrice du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Le réglage du menu (dés)active la section « Extensions » du menu pour les comptes normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouveau compte ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’URL de la personne ayant commenté).','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s','If your browser does not start loading the next page automatically, click this link:'=>'Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :','If you want to ban domains from site registrations. One domain per line.'=>'Si vous souhaitez interdire la création de site aux personnes dont l’adresse e-mail est liée à certains noms de domaines. Un domaine par ligne.','If you want to limit site registrations to certain domains. One domain per line.'=>'Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse e-mail liée à certains noms de domaines. Un domaine par ligne.','Users removed from spam.'=>'Comptes retirés de la liste de comptes indésirables.','Site marked as spam.'=>'Site marqué comme indésirable.','Site removed from spam.'=>'Site marqué comme sain.','Sites marked as spam.'=>'Sites marqués comme indésirables.','Sites removed from spam.'=>'Sites retirés des indésirables.','Users deleted.'=>'Comptes supprimés.','Users marked as spam.'=>'Comptes marqués comme indésirables.','Site deactivated.'=>'Site désactivé.','Site activated.'=>'Site activé.','Site unarchived.'=>'Site désarchivé.','Site archived.'=>'Site archivé.','Site deleted.'=>'Site effacé.','Sites deleted.'=>'Sites effacés.','Sorry, you are not allowed to change the current site.'=>'Désolé, vous n’avez pas l’autorisation de modifier le site actuel.','There was an error creating the user.'=>'Une erreur s’est produite lors de la création du compte.','Upload file types'=>'Types des fichiers téléversés','Limit total size of files uploaded to %s MB'=>'La taille totale des fichiers téléversés est limitée à %s Mo','The URL for the first comment on a new site.'=>'L’URL du premier commentaire sur tout nouveau site.','The author of the first comment on a new site.'=>'L’auteur ou l’autrice du premier commentaire sur tout nouveau site.','The first comment on a new site.'=>'Le premier commentaire sur tout nouveau site.','The first page on a new site.'=>'La première page sur tout nouveau site.','The first post on a new site.'=>'Le premier article sur un nouveau site.','All done!'=>'Terminé !','Both sites and user accounts can be registered'=>'La création de sites et de comptes est autorisée.','Logged in users may register new sites'=>'Les comptes connectés peuvent créer de nouveaux sites.','User accounts may be registered'=>'Des comptes peuvent être créés.','Registration is disabled'=>'Les inscriptions ne sont pas autorisées pour le moment.','Enable administration menus'=>'Activer les menus d’administration','Upload Settings'=>'Réglages des téléversements','New Site Settings'=>'Réglages des nouveaux sites','Registration Settings'=>'Réglages d’inscription','Operational Settings'=>'Réglages de fonctionnement','Missing email address.'=>'Adresse e-mail manquante.','Missing or invalid site address.'=>'Adresse de site manquante ou non valide.','Next Sites'=>'Sites suivants','Site upload space'=>'Espace de stockage du site','The welcome email sent to new site owners.'=>'Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites.','Users are not allowed to register these sites. Separate names by spaces.'=>'Les comptes ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace.','Send the network admin an email notification every time someone registers a site or user account'=>'Envoyer un message à l’administrateur ou à l’administratrice du réseau à chaque création de site ou de compte.','Network Admin Email'=>'E-mail de l’administrateur ou de l’administratrice du réseau','A new user will be created if the above email address is not in the database.'=>'Un nouveau compte sera créé si l’adresse e-mail n’existe pas dans la base de données.','Admin Email'=>'E-mail de l’administrateur ou de l’administratrice','Add Site'=>'Ajouter un site','Default Language'=>'Langue par défaut','Max upload file size'=>'Taille maximale des fichiers téléversés','First Comment URL'=>'Adresse du premier commentaire','First Comment Author'=>'Auteur ou autrice du premier commentaire','First Comment'=>'Premier commentaire','First Page'=>'Première page','The welcome email sent to new users.'=>'Ce message de bienvenue sera envoyé aux nouveaux comptes.','Welcome User Email'=>'Message de bienvenue aux nouveaux comptes','Welcome Email'=>'Message de bienvenue','Banned Email Domains'=>'Noms de domaines bannis','Limited Email Registrations'=>'Enregistrement réservé aux noms de domaines','Banned Names'=>'Noms bannis','Add New User'=>'Ajouter un compte','Registration notification'=>'Notification d’inscription','Allow new registrations'=>'Autoriser les nouvelles inscriptions','Duplicated username or email address.'=>'Identifiant ou adresse e-mail déjà utilisé(e).','Cannot create an empty user.'=>'Impossible de créer un compte vide.','Confirm'=>'Confirmer']]; \ No newline at end of file diff --git a/web/app/languages/admin-network-fr_FR.mo b/web/app/languages/admin-network-fr_FR.mo new file mode 100644 index 00000000..0f2d3205 Binary files /dev/null and b/web/app/languages/admin-network-fr_FR.mo differ diff --git a/web/app/languages/admin-network-fr_FR.po b/web/app/languages/admin-network-fr_FR.po new file mode 100644 index 00000000..d3820b38 --- /dev/null +++ b/web/app/languages/admin-network-fr_FR.po @@ -0,0 +1,1454 @@ +# Translation of WordPress - 6.8.x - Development - Administration - Network Admin in French (France) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration - Network Admin package. +msgid "" +msgstr "" +"PO-Revision-Date: 2025-03-31 12:54:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration - Network Admin\n" + +#: wp-admin/network/upgrade.php:32 +msgid "Documentation on Upgrade Network" +msgstr "Documentation sur la mise à jour d’un réseau multisite (en anglais)" + +#: wp-admin/network/sites.php:124 +msgid "Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory." +msgstr "Supprimer un site est une action irréversible. Cela supprimera l’ensemble du site ainsi que son dossier contenantles téléversements." + +#: wp-admin/network/sites.php:121 +msgid "Delete this site permanently" +msgstr "Supprimer définitivement ce site." + +#: wp-admin/network/sites.php:38 +msgid "Visit to go to the front-end of the live site." +msgstr "Cliquer pour aller voir le site en live." + +#: wp-admin/network/settings.php:64 +msgid "Documentation on Network Settings" +msgstr "Documentation sur les réglages du réseau multisite (en anglais)" + +#: wp-admin/network/index.php:56 +msgid "Documentation on the Network Admin" +msgstr "Documentation sur l’administration d’un réseau multisite (en anglais)" + +#: wp-admin/network.php:68 wp-admin/network.php:81 +msgid "Documentation on Creating a Network" +msgstr "Documentation sur la création d’un réseau multisite (en anglais)" + +#: wp-admin/includes/network.php:680 +msgid "https://developer.wordpress.org/advanced-administration/server/web-server/nginx/" +msgstr "https://developer.wordpress.org/advanced-administration/server/web-server/nginx/" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:761 +msgctxt "site" +msgid "Activate" +msgstr "Activer" + +#: wp-admin/network/site-new.php:87 +msgid "Missing site title." +msgstr "Titre du site manquant." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:218 +msgid "Table ordered by User Registered Date." +msgstr "Tableau trié par date d’inscription du compte." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:348 +msgid "Table ordered by Theme Name." +msgstr "Tableau trié par nom de thème." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:404 +msgid "Table ordered by Site Registered Date." +msgstr "Tableau trié par date de création du site." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:403 +msgid "Table ordered by Last Updated." +msgstr "Tableau trié par date de dernière mise à jour." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:398 +msgid "Table ordered by Site Path." +msgstr "Tableau trié par chemin d’accès du site." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:395 +msgid "Table ordered by Site Domain Name." +msgstr "Tableau trié par nom de domaine du site." + +#: wp-admin/includes/network.php:588 +msgid "Network configuration authentication keys" +msgstr "Clés d’authentification de la configuration du réseau" + +#. translators: %s: File name (wp-config.php, .htaccess or web.config). +#: wp-admin/includes/network.php:525 wp-admin/includes/network.php:664 +#: wp-admin/includes/network.php:726 +msgid "Network configuration rules for %s" +msgstr "Règles de configuration du réseau pour le fichier %s" + +#: wp-admin/network/upgrade.php:141 +msgid "WordPress has been updated! Next and final step is to individually upgrade the sites in your network." +msgstr "WordPress a été mis à jour ! La prochaine étape pour finaliser est de mettre à niveau individuellement les sites de votre réseau." + +#: wp-admin/network/site-new.php:40 +msgid "Cannot create an empty site." +msgstr "Impossible de créer un site vide." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:496 +msgid "You should back up your existing %s file." +msgstr "Vous devez sauvegarder votre fichier %s existant." + +#. translators: 1: wp-config.php, 2: .htaccess +#. translators: 1: wp-config.php, 2: web.config +#: wp-admin/includes/network.php:482 wp-admin/includes/network.php:489 +msgid "You should back up your existing %1$s and %2$s files." +msgstr "Vous devriez sauvegarder vos fichiers %1$s et %2$s existants." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:744 +msgid "Visit theme site for %s" +msgstr "Consultez le site du thème pour %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:757 +msgid "Child theme of %s" +msgstr "Thème enfant de %s" + +#: wp-admin/network/site-info.php:199 +msgctxt "site" +msgid "Public" +msgstr "Public" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:297 +msgctxt "site" +msgid "Not spam" +msgstr "Non indésirable" + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:438 +msgid "%s theme will no longer be auto-updated." +msgid_plural "%s themes will no longer be auto-updated." +msgstr[0] "%s thème ne sera plus mis à jour automatiquement." +msgstr[1] "%s thèmes ne seront plus mis à jour automatiquement." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:427 +msgid "%s theme will be auto-updated." +msgid_plural "%s themes will be auto-updated." +msgstr[0] "%s thème sera mis à jour automatiquement." +msgstr[1] "%s thèmes seront mis à jour automatiquement." + +#: wp-admin/network/themes.php:240 +msgid "Sorry, you are not allowed to change themes automatic update settings." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les réglages de mise à jour automatique des thèmes." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:322 +msgid "No themes are currently available." +msgstr "Aucun thème n’est actuellement disponible." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:503 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:528 +#: wp-admin/includes/class-wp-ms-users-list-table.php:346 +msgid "Y/m/d g:i:s a" +msgstr "d/m/Y G:i:s" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/network.php:679 +msgid "It seems your network is running with Nginx web server. Learn more about further configuration." +msgstr "Il semble que votre réseau fonctionne avec un serveur web Nginx. En savoir plus sur les possibilités de configurations supplémentaires." + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:258 +msgid "Deleted (%s)" +msgid_plural "Deleted (%s)" +msgstr[0] "Supprimé (%s)" +msgstr[1] "Supprimés (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:251 +msgctxt "sites" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Indésirable (%s)" +msgstr[1] "Indésirables (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:245 +msgid "Mature (%s)" +msgid_plural "Mature (%s)" +msgstr[0] "Contenu adulte (%s)" +msgstr[1] "Contenu adulte (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:239 +msgid "Archived (%s)" +msgid_plural "Archived (%s)" +msgstr[0] "Archivé (%s)" +msgstr[1] "Archivés (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:233 +msgid "Public (%s)" +msgid_plural "Public (%s)" +msgstr[0] "Public (%s)" +msgstr[1] "Publics (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:226 +msgctxt "sites" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:407 +msgctxt "themes" +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Mise à jour disponible (%s)" +msgstr[1] "Mises à jour disponible (%s)" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:652 +msgid "Main" +msgstr "Principal" + +#: wp-admin/network.php:69 wp-admin/network.php:82 +msgid "Documentation on the Network Screen" +msgstr "Documentation sur l’écran Créer un réseau de sites WordPress (en anglais)" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/includes/network.php:120 +msgid "The constant %s cannot be defined when creating a network." +msgstr "La constante %s ne peut pas être définie lors de la création d’un réseau." + +#: wp-admin/network/sites.php:208 +msgid "You are about to delete the following sites:" +msgstr "Vous allez supprimer les sites suivants :" + +#: wp-admin/network/site-users.php:249 +msgid "User could not be added to this site." +msgstr "Le compte ne peut pas être ajouté à ce site." + +#: wp-admin/network/site-new.php:287 +msgid "The username and a link to set the password will be mailed to this email address." +msgstr "L’identifiant et un lien pour mettre en place son mot de passe seront envoyés à cette adresse e-mail." + +#. translators: %s: New network admin email. +#: wp-admin/network/settings.php:177 +msgid "There is a pending change of the network admin email to %s." +msgstr "Il y a une modification en attente pour l’e-mail d’administration du réseau sur %s." + +#: wp-admin/includes/network.php:352 +msgid "Sub-domain Installation" +msgstr "Installation en sous-domaine" + +#: wp-admin/includes/network.php:321 wp-admin/includes/network.php:339 +msgid "Sub-directory Installation" +msgstr "Installation en sous-répertoire" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:950 +msgid "Active Child Theme" +msgstr "Thème enfant actif" + +#. translators: %s: File size in kilobytes. +#: wp-admin/network/settings.php:442 +msgid "%s KB" +msgstr "%s Ko" + +#. translators: %s: Default network title. +#: wp-admin/includes/network.php:179 +msgid "%s Sites" +msgstr "Les sites de %s" + +#: wp-admin/network/themes.php:102 +msgid "Sorry, you are not allowed to delete themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site." + +#: wp-admin/network/themes.php:14 +msgid "Sorry, you are not allowed to manage network themes." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau." + +#: wp-admin/network/sites.php:335 +msgid "Sorry, you are not allowed to delete that site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/network/site-themes.php:14 +msgid "Sorry, you are not allowed to manage themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site." + +#: wp-admin/network/site-new.php:17 +msgid "Sorry, you are not allowed to add sites to this network." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau." + +#: wp-admin/network/site-info.php:14 wp-admin/network/site-settings.php:14 +#: wp-admin/network/site-users.php:14 +msgid "Sorry, you are not allowed to edit this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce site." + +#: wp-admin/network/settings.php:389 +msgid "The email address of the first comment author on a new site." +msgstr "L’adresse e-mail de l’auteur ou autrice du premier commentaire sur un nouveau site." + +#: wp-admin/network/settings.php:385 +msgid "First Comment Email" +msgstr "E-mail du premier commentaire" + +#. translators: This string should only be translated if wp-config-sample.php +#. is localized. You can check the localized release package or +#. https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php +#: wp-admin/includes/network.php:517 +msgid "That’s all, stop editing! Happy publishing." +msgstr "C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenus !" + +#. translators: 1: wp-config.php, 2: Location of wp-config file, 3: Translated +#. version of "That's all, stop editing! Happy publishing." +#: wp-admin/includes/network.php:509 +msgid "Add the following to your %1$s file in %2$s above the line reading %3$s:" +msgstr "Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :" + +#. translators: 1: Theme name, 2: Theme author. +#: wp-admin/network/themes.php:164 +msgctxt "theme" +msgid "%1$s by %2$s" +msgstr "%1$s par %2$s" + +#: wp-admin/network/site-new.php:229 +msgid "Only lowercase letters (a-z), numbers, and hyphens are allowed." +msgstr "Uniquement des lettres minuscules non accentuées (a-z), des chiffres (0-9), et des traits d’union (-) sont autorisés." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:581 +msgid "These unique authentication keys are also missing from your %s file." +msgstr "Ces clés d’authentification uniques manquent également à votre fichier %s." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:575 +msgid "This unique authentication key is also missing from your %s file." +msgstr "La clé unique d’authentification est aussi absente de votre fichier %s." + +#. translators: 1: localhost, 2: localhost.localdomain +#: wp-admin/includes/network.php:326 +msgid "Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains." +msgstr "Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines." + +#. translators: %s: Host name. +#: wp-admin/includes/network.php:308 wp-admin/includes/network.php:368 +msgid "The internet address of your network will be %s." +msgstr "L’adresse internet de votre réseau sera %s." + +#. translators: 1: Site URL, 2: Host name, 3: www. +#: wp-admin/includes/network.php:294 +msgid "You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix." +msgstr "Il est recommandé de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s." + +#: wp-admin/includes/network.php:242 +msgid "You cannot change this later." +msgstr "Vous ne pourrez pas changer ceci ultérieurement." + +#: wp-admin/includes/network.php:241 +msgid "Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories." +msgstr "Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires." + +#. translators: 1: mod_rewrite, 2: mod_rewrite documentation URL, 3: Google +#. search for mod_rewrite. +#: wp-admin/includes/network.php:222 +msgid "If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up." +msgstr "Si %1$s est désactivé, demandez à votre administrateur ou administratrice d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:214 +msgid "It looks like the Apache %s module is not installed." +msgstr "Il semble que le module %s d’Apache ne soit pas installé." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:206 +msgid "Please make sure the Apache %s module is installed as it will be used at the end of this installation." +msgstr "Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:196 +#: wp-admin/includes/class-wp-ms-users-list-table.php:218 +msgctxt "user" +msgid "Registered" +msgstr "Inscription" + +#. translators: Number of users. +#: wp-admin/includes/class-wp-ms-users-list-table.php:159 +msgid "Super Admin (%s)" +msgid_plural "Super Admins (%s)" +msgstr[0] "Super-admin (%s)" +msgstr[1] "Super-admins (%s)" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:117 +msgctxt "user" +msgid "Not spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:116 +msgctxt "user" +msgid "Mark as spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:750 +msgid "Visit Theme Site" +msgstr "Aller sur le site du thème" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:707 +msgid "Broken Theme:" +msgstr "Thème cassé :" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:613 +msgid "Network Disable %s" +msgstr "Désactiver %s pour le réseau" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:610 +msgid "Disable %s" +msgstr "Désactiver %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:587 +msgid "Network Enable %s" +msgstr "Activer %s sur le réseau" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:584 +msgid "Enable %s" +msgstr "Activer %s" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:472 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:620 +msgid "Network Disable" +msgstr "Désactiver du réseau" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:416 +msgctxt "themes" +msgid "Broken (%s)" +msgid_plural "Broken (%s)" +msgstr[0] "Cassé (%s)" +msgstr[1] "Cassés (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:398 +msgctxt "themes" +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Désactivé (%s)" +msgstr[1] "Désactivés (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:389 +msgctxt "themes" +msgid "Enabled (%s)" +msgid_plural "Enabled (%s)" +msgstr[0] "Activé (%s)" +msgstr[1] "Activés (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:380 +msgctxt "themes" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:320 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:796 +msgctxt "verb; site" +msgid "Archive" +msgstr "Archiver" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:785 +msgid "Unarchive" +msgstr "Désarchiver" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:507 +msgid "Never" +msgstr "Jamais" + +#. translators: 1: Site title, 2: Site tagline. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:479 +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:369 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:404 +#: wp-admin/network/site-info.php:191 +msgctxt "site" +msgid "Registered" +msgstr "Inscription" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:368 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:403 +#: wp-admin/network/site-info.php:195 +msgid "Last Updated" +msgstr "Dernière mise à jour" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:809 +msgctxt "site" +msgid "Not Spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:296 +msgctxt "site" +msgid "Mark as spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:211 +msgid "No sites found." +msgstr "Aucun site trouvé." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:41 +#: wp-admin/network/site-info.php:205 +msgid "Mature" +msgstr "Adulte" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:40 +#: wp-admin/network/site-info.php:203 +msgid "Deleted" +msgstr "Supprimé" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:39 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:820 +#: wp-admin/network/site-info.php:202 +msgctxt "site" +msgid "Spam" +msgstr "Indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:38 +#: wp-admin/network/site-info.php:201 +msgid "Archived" +msgstr "Archivé" + +#: wp-admin/network/site-users.php:376 wp-admin/network/user-new.php:149 +msgid "A password reset link will be sent to the user via email." +msgstr "Un lien de réinitialisation de mot de passe sera envoyé par e-mail au compte." + +#. translators: 1: NOBLOGREDIRECT, 2: wp-config.php +#: wp-admin/network/settings.php:227 +msgid "If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site." +msgstr "Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas." + +#. translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php +#: wp-admin/network.php:44 +msgid "You must define the %1$s constant as true in your %2$s file to allow creation of a Network." +msgstr "Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau." + +#: wp-admin/network/themes.php:346 +msgid "Themes list navigation" +msgstr "Naviguation de la liste des thèmes" + +#: wp-admin/network/sites.php:51 +msgid "Sites list" +msgstr "Liste des sites" + +#: wp-admin/network/sites.php:50 +msgid "Sites list navigation" +msgstr "Navigation de la liste des sites" + +#: wp-admin/network/site-users.php:27 +msgid "Site users list" +msgstr "Liste des comptes du site" + +#: wp-admin/network/site-users.php:26 +msgid "Site users list navigation" +msgstr "Parcours de la liste des comptes du site" + +#: wp-admin/network/site-users.php:25 +msgid "Filter site users list" +msgstr "Filtrer la liste des comptes du site" + +#: wp-admin/network/site-themes.php:24 +msgid "Site themes list" +msgstr "Liste des thèmes du site" + +#: wp-admin/network/site-themes.php:23 +msgid "Site themes list navigation" +msgstr "Parcours de la liste des thèmes du site" + +#: wp-admin/network/site-themes.php:22 +msgid "Filter site themes list" +msgstr "Filtrer la liste des thème du site" + +#: wp-admin/network/site-new.php:125 +msgid "The domain or path entered conflicts with an existing username." +msgstr "Le domaine ou le chemin saisi est entré en conflit avec un identifiant existant." + +#: wp-admin/network/sites.php:88 +msgid "The requested action is not valid." +msgstr "L’action demandée n’est pas valide." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:80 +msgid "You are about to mark the site %s as not mature." +msgstr "Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:78 +msgid "You are about to mark the site %s as mature." +msgstr "Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:76 +msgid "You are about to delete the site %s." +msgstr "Vous êtes sur le point de supprimer le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:74 +msgid "You are about to mark the site %s as spam." +msgstr "Vous êtes sur le point de marquer le site %s comme indésirable." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:72 +msgid "You are about to unspam the site %s." +msgstr "Vous êtes sur le point de marquer le site %s comme sain." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:70 +msgid "You are about to archive the site %s." +msgstr "Vous êtes sur le point d’archiver le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:68 +msgid "You are about to unarchive the site %s." +msgstr "Vous êtes sur le point de désarchiver le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:66 +msgid "You are about to deactivate the site %s." +msgstr "Vous êtes sur le point de désactiver le site %s." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:64 +msgid "You are about to activate the site %s." +msgstr "Vous êtes sur le point d’activer le site %s." + +#: wp-admin/network/site-info.php:28 wp-admin/network/site-settings.php:28 +#: wp-admin/network/site-themes.php:53 wp-admin/network/site-users.php:46 +msgid "The requested site does not exist." +msgstr "Le site demandé n’existe pas." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:397 +msgid "Path" +msgstr "Chemin " + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:394 +msgid "Domain" +msgstr "Domaine" + +#: wp-admin/network/user-new.php:29 wp-admin/network/users.php:242 +msgid "Documentation on Network Users" +msgstr "Documentation sur les comptes du réseau (en anglais)." + +#: wp-admin/network/themes.php:338 +msgid "Documentation on Network Themes" +msgstr "Documentation sur les thèmes du réseau (en anglais)." + +#. translators: 1: Site URL, 2: Server error message. +#: wp-admin/network/upgrade.php:99 +msgid "Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s" +msgstr "Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:416 +msgid "%s theme deleted." +msgid_plural "%s themes deleted." +msgstr[0] "%s thème supprimé." +msgstr[1] "%s thèmes supprimés." + +#. translators: %s: Number of themes. +#: wp-admin/network/site-themes.php:214 wp-admin/network/themes.php:405 +msgid "%s theme disabled." +msgid_plural "%s themes disabled." +msgstr[0] "%s thème désactivé." +msgstr[1] "%s thèmes désactivés." + +#. translators: %s: Number of themes. +#: wp-admin/network/site-themes.php:197 wp-admin/network/themes.php:394 +msgid "%s theme enabled." +msgid_plural "%s themes enabled." +msgstr[0] "%s thème activé." +msgstr[1] "%s thèmes activés." + +#: wp-admin/network/themes.php:190 +msgid "Yes, delete these themes" +msgstr "Oui, supprimer ces thèmes" + +#: wp-admin/network/themes.php:157 +msgid "You are about to remove the following themes:" +msgstr "Vous êtes sur le point d’enlever les thèmes suivants :" + +#: wp-admin/network/themes.php:151 +msgid "These themes may be active on other sites in the network." +msgstr "Ces thèmes peuvent être actifs sur d’autres site de ce réseau." + +#: wp-admin/network/themes.php:148 +msgid "Delete Themes" +msgstr "Supprimer les thèmes" + +#. translators: Hidden accessibility text. +#: wp-admin/network/site-info.php:214 +msgid "Set site attributes" +msgstr "Configurer les attributs du site" + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:519 +msgid "Enable menus" +msgstr "Activer les menus" + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:449 +msgid "Size in kilobytes" +msgstr "Taille en kilooctets" + +#: wp-admin/network/settings.php:431 +msgid "Allowed file types. Separate types by spaces." +msgstr "Types de fichier autorisés. Séparez les types par une espace." + +#. translators: Hidden accessibility text. +#: wp-admin/network/settings.php:215 +msgid "New registrations settings" +msgstr "Réglages pour les nouvelles inscriptions" + +#. translators: 1: File name (.htaccess or web.config), 2: File path. +#: wp-admin/includes/network.php:651 wp-admin/includes/network.php:713 +msgid "Add the following to your %1$s file in %2$s, replacing other WordPress rules:" +msgstr "Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :" + +#: wp-admin/network/sites.php:113 wp-admin/network/sites.php:203 +msgid "Confirm your action" +msgstr "Confirmez cette action" + +#: wp-admin/network/users.php:232 +msgid "Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site." +msgstr "Survolez n’importe quel compte de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil du compte ; le lien Modifier à droite de n’importe quel nom de site ouvrira l’écran de modification de ce site." + +#: wp-admin/network/index.php:44 +msgid "To search for a site, enter the path or domain." +msgstr "Pour rechercher un site, saisissez son chemin ou son domaine." + +#: wp-admin/network/index.php:43 +msgid "To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*." +msgstr "Pour rechercher un compte, saisissez une adresse e-mail ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple compt*." + +#: wp-admin/network/index.php:41 +msgid "To add a new site, click Create a New Site." +msgstr "Pour ajouter un nouveau site, cliquer sur Créer un nouveau site." + +#: wp-admin/network/index.php:40 +msgid "To add a new user, click Create a New User." +msgstr "Pour ajouter un nouveau compte, cliquez sur Créer un nouveau compte." + +#: wp-admin/network/index.php:49 +msgid "Quick Tasks" +msgstr "Tâches rapides" + +#: wp-admin/network/index.php:42 +msgid "To search for a user or site, use the search boxes." +msgstr "Pour rechercher un compte ou un site, utilisez les champs de recherche." + +#: wp-admin/network/index.php:39 +msgid "The Right Now widget on this screen provides current user and site counts on your network." +msgstr "Le widget « Aujourd’hui » de cet écran vous donne le nombre actuel de comptes et de sites sur votre réseau." + +#: wp-admin/network/index.php:29 +msgid "Modify global network settings" +msgstr "Modifier les réglages globaux du réseau" + +#: wp-admin/network/index.php:28 +msgid "Update your network" +msgstr "Mettre à jour votre réseau" + +#: wp-admin/network/index.php:27 +msgid "Install and activate themes or plugins" +msgstr "Installer et activer des thèmes ou des extensions" + +#: wp-admin/network/index.php:26 +msgid "Add and manage sites or users" +msgstr "Ajouter et gérer des sites ou des comptes" + +#: wp-admin/network/index.php:25 +msgid "From here you can:" +msgstr "D’ici, vous pouvez :" + +#: wp-admin/network/index.php:24 +msgid "Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network." +msgstr "Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite." + +#: wp-admin/network/upgrade.php:24 +msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." +msgstr "N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées." + +#: wp-admin/network/menu.php:51 wp-admin/network/upgrade.php:16 +#: wp-admin/network/upgrade.php:43 wp-admin/network/upgrade.php:145 +msgid "Upgrade Network" +msgstr "Mettre à jour le réseau" + +#: wp-admin/includes/network.php:277 wp-admin/includes/network.php:657 +#: wp-admin/includes/network.php:719 +msgid "Subdirectory networks may not be fully compatible with custom wp-content directories." +msgstr "Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content." + +#: wp-admin/network.php:64 +msgid "Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules)." +msgstr "Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...C’est tout...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress)." + +#: wp-admin/network/settings.php:461 +msgid "Language Settings" +msgstr "Réglages de langue" + +#: wp-admin/network/settings.php:253 +msgid "Allow site administrators to add new users to their site via the \"Users → Add User\" page" +msgstr "Autoriser les administrateurs ou administratrices de sites à ajouter de nouveaux comptes à leurs sites via la page « Comptes → Ajouter »." + +#: wp-admin/network/settings.php:58 +msgid "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." +msgstr "Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des comptes (option « Comptes » du menu « Admin du réseau » et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte, où une case à cocher donne les droits de super-admin." + +#: wp-admin/network/site-users.php:273 +msgid "Enter the username and email." +msgstr "Saisissez l’identifiant et l’adresse e-mail." + +#: wp-admin/network/site-users.php:270 +msgid "User created." +msgstr "Le compte a été créé." + +#: wp-admin/network/site-users.php:266 +msgid "Select a user to remove." +msgstr "Sélectionnez un compte à supprimer." + +#: wp-admin/network/site-users.php:259 +msgid "Select a user to change role." +msgstr "Sélectionnez un compte dont vous voulez changer le rôle." + +#: wp-admin/network/site-users.php:252 +msgid "Enter the username of an existing user." +msgstr "Saisir l’identifiant d’un compte existant." + +#: wp-admin/network/site-users.php:246 +msgid "User is already a member of this site." +msgstr "Ce compte est déjà membre de ce site." + +#: wp-admin/network/site-settings.php:78 +msgid "Site options updated." +msgstr "Les réglages du site ont été mis à jour." + +#. translators: 1: Dashboard URL, 2: Network admin edit URL. +#: wp-admin/network/site-new.php:174 +msgid "Site added. Visit Dashboard or Edit Site" +msgstr "Site ajouté. Afficher le tableau de bord | Modifier le site" + +#: wp-admin/network/site-new.php:25 +msgid "This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings." +msgstr "Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription." + +#: wp-admin/network/site-info.php:129 +msgid "Site info updated." +msgstr "Les infos du site ont été mises à jour." + +#: wp-admin/network/themes.php:446 +msgid "You cannot delete a theme while it is active on the main site." +msgstr "Vous ne pouvez pas effacer un thème s’il est activé sur le site principal." + +#: wp-admin/network/themes.php:316 +msgid "Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes." +msgstr "Les thèmes peuvent être activés par l’administrateur/administratrice du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs ou administratrices du réseau peuvent installer ou modifier des thèmes." + +#: wp-admin/network/themes.php:197 +msgid "No, return me to the theme list" +msgstr "Non, je veux revenir à la liste des thèmes." + +#: wp-admin/network/themes.php:188 +msgid "Yes, delete this theme" +msgstr "Oui, supprimer ce thème" + +#: wp-admin/network/themes.php:174 +msgid "Are you sure you want to delete these themes?" +msgstr "Confirmez-vous la suppression de ces thèmes ?" + +#: wp-admin/network/themes.php:146 +msgid "You are about to remove the following theme:" +msgstr "Vous êtes sur le point de supprimer le thème suivant :" + +#: wp-admin/network/themes.php:140 +msgid "This theme may be active on other sites in the network." +msgstr "Ce thème est peut-être activé sur d’autres sites du réseau" + +#: wp-admin/network/themes.php:137 +msgid "Delete Theme" +msgstr "Supprimer le thème" + +#: wp-admin/network/site-themes.php:237 +msgid "Network enabled themes are not shown on this screen." +msgstr "Les thèmes activés pour le réseau ne sont pas visibles sur cet écran." + +#: wp-admin/network/site-themes.php:227 wp-admin/network/themes.php:443 +msgid "No theme selected." +msgstr "Aucun thème sélectionné." + +#: wp-admin/network/site-themes.php:211 wp-admin/network/themes.php:401 +msgid "Theme disabled." +msgstr "Thème désactivé." + +#: wp-admin/network/site-themes.php:194 wp-admin/network/themes.php:390 +msgid "Theme enabled." +msgstr "Thème activé." + +#. translators: %s: Site title. +#: wp-admin/network/site-info.php:135 wp-admin/network/site-settings.php:84 +#: wp-admin/network/site-themes.php:171 wp-admin/network/site-users.php:200 +msgid "Edit Site: %s" +msgstr "Modifier le site : %s" + +#: wp-admin/network/site-info.php:23 wp-admin/network/site-settings.php:23 +#: wp-admin/network/site-themes.php:46 wp-admin/network/site-users.php:41 +msgid "Invalid site ID." +msgstr "ID du site non valide." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:178 +msgid "Sorry, you are not allowed to delete the site %s." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer le site %s." + +#: wp-admin/network/sites.php:37 +msgid "Delete which is a permanent action after the confirmation screen." +msgstr "« Supprimer » est une action irréversible une fois passé l’écran de confirmation." + +#: wp-admin/network/sites.php:35 +msgid "Dashboard leads to the Dashboard for that site." +msgstr "« Tableau de bord » envoie vers le tableau de bord du site." + +#: wp-admin/network/sites.php:34 +msgid "An Edit link to a separate Edit Site screen." +msgstr "Un lien « Modifier » vers un nouvel écran de modification de site." + +#: wp-admin/network/sites.php:31 +msgid "Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "« Ajouter un site » vous enverra au formulaire en bas de cette page. Vous pouvez rechercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page." + +#: wp-admin/network/settings.php:251 +msgid "Add Users" +msgstr "Ajouter un compte" + +#: wp-admin/network/user-new.php:55 +msgid "Cannot add user." +msgstr "Impossible d’ajouter le compte." + +#: wp-admin/network/user-new.php:22 +msgid "Add User will set up a new user account on the network and send that person an email with username and password." +msgstr "« Ajouter un compte » créera un nouveau compte sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire." + +#: wp-admin/network/menu.php:46 +msgid "Updates" +msgstr "Mises à jour" + +#: wp-admin/network/menu.php:116 wp-admin/network/settings.php:21 +msgid "Network Settings" +msgstr "Réglages du réseau" + +#: wp-admin/network/menu.php:85 +msgid "Installed Themes" +msgstr "Thèmes installés" + +#: wp-admin/network/menu.php:57 +msgid "All Sites" +msgstr "Tous les sites" + +#: wp-admin/includes/network.php:740 +msgid "Once you complete these steps, your network is enabled and configured. You will have to log in again." +msgstr "Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter." + +#: wp-admin/includes/network.php:586 +msgid "To make your installation more secure, you should also add:" +msgstr "Pour sécuriser encore plus votre installation, vous devriez également ajouter :" + +#: wp-admin/includes/network.php:471 +msgid "Complete the following steps to enable the features for creating a network of sites." +msgstr "Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites." + +#: wp-admin/includes/network.php:470 +msgid "Enabling the Network" +msgstr "Activer le Réseau" + +#: wp-admin/includes/network.php:459 +msgid "Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables." +msgstr "Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données." + +#: wp-admin/includes/network.php:453 +msgid "An existing WordPress network was detected." +msgstr "Un réseau WordPress pré-existant a été détecté." + +#: wp-admin/includes/network.php:447 +msgid "The original configuration steps are shown here for reference." +msgstr "Les étapes de la configuration originale sont affichées ici pour référence." + +#: wp-admin/includes/network.php:389 +msgid "Your email address." +msgstr "Votre adresse e-mail." + +#: wp-admin/includes/network.php:380 +msgid "What would you like to call your network?" +msgstr "Comment souhaitez-vous appeler votre réseau ?" + +#: wp-admin/includes/network.php:376 wp-admin/network/settings.php:159 +msgid "Network Title" +msgstr "Titre du réseau" + +#: wp-admin/includes/network.php:355 +msgid "Because your installation is not new, the sites in your WordPress network must use sub-domains." +msgstr "Comme votre installation de WordPress n’est pas récente, les sites de votre réseau doivent utiliser des sous-domaines." + +#: wp-admin/includes/network.php:342 +msgid "Because your installation is in a directory, the sites in your WordPress network must use sub-directories." +msgstr "Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires." + +#: wp-admin/includes/network.php:332 wp-admin/includes/network.php:345 +#: wp-admin/includes/network.php:356 +msgid "The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links." +msgstr "Le site principal d’une installation en sous-répertoire devra utiliser une structure de permaliens modifiée, ce qui pourrait potentiellement casser vos liens existants." + +#: wp-admin/includes/network.php:317 +msgid "Network Details" +msgstr "Détails du réseau" + +#: wp-admin/includes/network.php:289 wp-admin/includes/network.php:303 +#: wp-admin/includes/network.php:363 +msgid "Server Address" +msgstr "Adresse du serveur" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:264 +msgctxt "subdirectory examples" +msgid "like %1$s/site1 and %1$s/site2" +msgstr "comme %1$s/site1 et %1$s/site2" + +#: wp-admin/includes/network.php:259 +msgid "Sub-directories" +msgstr "Sous-répertoires" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:252 +msgctxt "subdomain examples" +msgid "like site1.%1$s and site2.%1$s" +msgstr "comme site1.%1$s et site2.%1$s" + +#: wp-admin/includes/network.php:247 +msgid "Sub-domains" +msgstr "Sous-domaines" + +#: wp-admin/includes/network.php:243 +msgid "You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality." +msgstr "Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard)." + +#: wp-admin/includes/network.php:240 +msgid "Addresses of Sites in your Network" +msgstr "Adresses des sites de votre réseau" + +#: wp-admin/includes/network.php:189 +msgid "Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step." +msgstr "Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites WordPress. Les fichiers de configuration seront créés lors de la prochaine étape." + +#: wp-admin/includes/network.php:188 +msgid "Welcome to the Network installation process!" +msgstr "Bienvenue dans l’installation du Réseau !" + +#: wp-admin/includes/network.php:161 +msgid "The network could not be created." +msgstr "Le réseau ne peut pas être créé." + +#: wp-admin/includes/network.php:146 +msgid "Once the network is created, you may reactivate your plugins." +msgstr "Dès que le réseau sera créé, vous pourrez réactiver vos extensions." + +#. translators: %s: URL to Plugins screen. +#: wp-admin/includes/network.php:141 +msgid "Please deactivate your plugins before enabling the Network feature." +msgstr "Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau." + +#: wp-admin/network.php:74 +msgid "Network" +msgstr "Réseau" + +#: wp-admin/network.php:66 +msgid "The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version." +msgstr "Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de «  /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version." + +#: wp-admin/network.php:65 +msgid "Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar." +msgstr "Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils." + +#: wp-admin/network.php:63 +msgid "The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files." +msgstr "L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde." + +#: wp-admin/network.php:62 +msgid "Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories)." +msgstr "Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers)." + +#: wp-admin/network.php:61 +msgid "This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it." +msgstr "Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet." + +#: wp-admin/network.php:57 +msgid "Create a Network of WordPress Sites" +msgstr "Créer un réseau de sites WordPress" + +#: wp-admin/network.php:29 +msgid "The Network creation panel is not for WordPress MU networks." +msgstr "Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU." + +#. translators: %s: User login. +#: wp-admin/network/users.php:87 +msgid "Warning! User cannot be modified. The user %s is a network administrator." +msgstr "Avertissement ! Le compte %s ne peut être modifié car c’est un administrateur ou une administratrice du réseau." + +#: wp-admin/network/site-new.php:26 +msgid "If the admin email for the new site does not exist in the database, a new user will also be created." +msgstr "Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouveau compte sera créé pour l’occasion." + +#: wp-admin/network/sites.php:36 +msgid "Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later." +msgstr "« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite." + +#: wp-admin/network/sites.php:33 +msgid "Hovering over each site reveals seven options (three for the primary site):" +msgstr "Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :" + +#: wp-admin/network/settings.php:52 +msgid "Operational settings has fields for the network’s name and admin email." +msgstr "Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse e-mail de l’administrateur ou de l’administratrice." + +#: wp-admin/network/users.php:235 +msgid "The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses." +msgstr "Le menu « Actions groupées » permet de supprimer définitivement plusieurs comptes d’un coup, ou de les marquer comme indésirables ou non. Les comptes indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse e-mail." + +#: wp-admin/network/users.php:233 +msgid "You can also go to the user’s profile page by clicking on the individual username." +msgstr "Vous pouvez également aller sur la page de profil d’un compte en cliquant sur son identifiant." + +#: wp-admin/network/settings.php:55 +msgid "Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only)." +msgstr "Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers téléversés et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces)." + +#: wp-admin/network/users.php:236 +msgid "You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege." +msgstr "Vous pouvez promouvoir un compte existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante." + +#: wp-admin/network/user-new.php:23 +msgid "Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them." +msgstr "Les comptes qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces comptes ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé." + +#: wp-admin/network/users.php:234 +msgid "You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list." +msgstr "Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non." + +#: wp-admin/network/users.php:231 +msgid "This table shows all users across the network and the sites to which they are assigned." +msgstr "Ce tableau affiche tous les comptes appartenant au réseau, et les sites auxquels ils sont assignés." + +#: wp-admin/network/upgrade.php:26 +msgid "If this process fails for any reason, users logging in to their sites will force the same update." +msgstr "Si ce processus échoue pour n’importe quelles raisons, les comptes se connectant à leurs sites déclencheront la même mise à jour." + +#: wp-admin/network/upgrade.php:25 +msgid "If a version update to core has not happened, clicking this button will not affect anything." +msgstr "S’il n’y a pas eu de mise à jour du cœur WordPress récemment, cliquer sur ce bouton n’aura aucun effet." + +#: wp-admin/network/themes.php:315 +msgid "If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen." +msgstr "Si l’administrateur/administratrice du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site." + +#: wp-admin/network/themes.php:314 +msgid "This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using." +msgstr "Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site." + +#: wp-admin/network/sites.php:32 +msgid "This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table." +msgstr "Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste." + +#: wp-admin/network/settings.php:57 +msgid "Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins." +msgstr "Le réglage du menu (dés)active la section « Extensions » du menu pour les comptes normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension." + +#: wp-admin/network/settings.php:54 +msgid "New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL." +msgstr "Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouveau compte ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’URL de la personne ayant commenté)." + +#: wp-admin/network/settings.php:53 +msgid "Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network." +msgstr "Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule." + +#: wp-admin/network/settings.php:51 +msgid "This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options." +msgstr "Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site." + +#. translators: %s: Reserved names list. +#: wp-admin/network/site-new.php:59 +msgid "The following words are reserved for use by WordPress functions and cannot be used as site names: %s" +msgstr "Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s" + +#: wp-admin/network/upgrade.php:125 +msgid "If your browser does not start loading the next page automatically, click this link:" +msgstr "Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :" + +#: wp-admin/network/settings.php:316 +msgid "If you want to ban domains from site registrations. One domain per line." +msgstr "Si vous souhaitez interdire la création de site aux personnes dont l’adresse e-mail est liée à certains noms de domaines. Un domaine par ligne." + +#: wp-admin/network/settings.php:296 +msgid "If you want to limit site registrations to certain domains. One domain per line." +msgstr "Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse e-mail liée à certains noms de domaines. Un domaine par ligne." + +#: wp-admin/network/users.php:266 +msgid "Users removed from spam." +msgstr "Comptes retirés de la liste de comptes indésirables." + +#: wp-admin/network/sites.php:353 +msgid "Site marked as spam." +msgstr "Site marqué comme indésirable." + +#: wp-admin/network/sites.php:350 +msgid "Site removed from spam." +msgstr "Site marqué comme sain." + +#: wp-admin/network/sites.php:326 +msgid "Sites marked as spam." +msgstr "Sites marqués comme indésirables." + +#: wp-admin/network/sites.php:323 +msgid "Sites removed from spam." +msgstr "Sites retirés des indésirables." + +#: wp-admin/network/users.php:269 +msgid "Users deleted." +msgstr "Comptes supprimés." + +#: wp-admin/network/users.php:263 +msgid "Users marked as spam." +msgstr "Comptes marqués comme indésirables." + +#: wp-admin/network/sites.php:347 +msgid "Site deactivated." +msgstr "Site désactivé." + +#: wp-admin/network/sites.php:344 +msgid "Site activated." +msgstr "Site activé." + +#: wp-admin/network/sites.php:341 +msgid "Site unarchived." +msgstr "Site désarchivé." + +#: wp-admin/network/sites.php:338 +msgid "Site archived." +msgstr "Site archivé." + +#: wp-admin/network/sites.php:332 +msgid "Site deleted." +msgstr "Site effacé." + +#: wp-admin/network/sites.php:329 +msgid "Sites deleted." +msgstr "Sites effacés." + +#: wp-admin/network/sites.php:104 wp-admin/network/sites.php:238 +msgid "Sorry, you are not allowed to change the current site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier le site actuel." + +#: wp-admin/network/site-new.php:130 +msgid "There was an error creating the user." +msgstr "Une erreur s’est produite lors de la création du compte." + +#: wp-admin/network/settings.php:427 +msgid "Upload file types" +msgstr "Types des fichiers téléversés" + +#. translators: %s: Number of megabytes to limit uploads to. +#: wp-admin/network/settings.php:412 +msgid "Limit total size of files uploaded to %s MB" +msgstr "La taille totale des fichiers téléversés est limitée à %s Mo" + +#: wp-admin/network/settings.php:398 +msgid "The URL for the first comment on a new site." +msgstr "L’URL du premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:380 +msgid "The author of the first comment on a new site." +msgstr "L’auteur ou l’autrice du premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:371 +msgid "The first comment on a new site." +msgstr "Le premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:361 +msgid "The first page on a new site." +msgstr "La première page sur tout nouveau site." + +#: wp-admin/network/settings.php:351 +msgid "The first post on a new site." +msgstr "Le premier article sur un nouveau site." + +#: wp-admin/network/upgrade.php:74 +msgid "All done!" +msgstr "Terminé !" + +#: wp-admin/network/settings.php:221 +msgid "Both sites and user accounts can be registered" +msgstr "La création de sites et de comptes est autorisée." + +#: wp-admin/network/settings.php:220 +msgid "Logged in users may register new sites" +msgstr "Les comptes connectés peuvent créer de nouveaux sites." + +#: wp-admin/network/settings.php:219 +msgid "User accounts may be registered" +msgstr "Des comptes peuvent être créés." + +#: wp-admin/network/settings.php:218 +msgid "Registration is disabled" +msgstr "Les inscriptions ne sont pas autorisées pour le moment." + +#: wp-admin/network/settings.php:514 +msgid "Enable administration menus" +msgstr "Activer les menus d’administration" + +#: wp-admin/network/settings.php:403 +msgid "Upload Settings" +msgstr "Réglages des téléversements" + +#: wp-admin/network/settings.php:322 +msgid "New Site Settings" +msgstr "Réglages des nouveaux sites" + +#: wp-admin/network/settings.php:200 +msgid "Registration Settings" +msgstr "Réglages d’inscription" + +#: wp-admin/network/settings.php:156 +msgid "Operational Settings" +msgstr "Réglages de fonctionnement" + +#: wp-admin/network/site-new.php:95 +msgid "Missing email address." +msgstr "Adresse e-mail manquante." + +#: wp-admin/network/site-new.php:91 +msgid "Missing or invalid site address." +msgstr "Adresse de site manquante ou non valide." + +#: wp-admin/network/upgrade.php:125 +msgid "Next Sites" +msgstr "Sites suivants" + +#: wp-admin/network/settings.php:406 +msgid "Site upload space" +msgstr "Espace de stockage du site" + +#: wp-admin/network/settings.php:331 +msgid "The welcome email sent to new site owners." +msgstr "Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites." + +#: wp-admin/network/settings.php:271 +msgid "Users are not allowed to register these sites. Separate names by spaces." +msgstr "Les comptes ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace." + +#: wp-admin/network/settings.php:246 +msgid "Send the network admin an email notification every time someone registers a site or user account" +msgstr "Envoyer un message à l’administrateur ou à l’administratrice du réseau à chaque création de site ou de compte." + +#: wp-admin/includes/network.php:385 wp-admin/network/settings.php:166 +msgid "Network Admin Email" +msgstr "E-mail de l’administrateur ou de l’administratrice du réseau" + +#: wp-admin/network/site-new.php:287 +msgid "A new user will be created if the above email address is not in the database." +msgstr "Un nouveau compte sera créé si l’adresse e-mail n’existe pas dans la base de données." + +#: wp-admin/network/site-new.php:279 +msgid "Admin Email" +msgstr "E-mail de l’administrateur ou de l’administratrice" + +#: wp-admin/network/menu.php:58 wp-admin/network/site-new.php:182 +#: wp-admin/network/site-new.php:192 wp-admin/network/site-new.php:299 +#: wp-admin/network/sites.php:391 +msgid "Add Site" +msgstr "Ajouter un site" + +#: wp-admin/network/settings.php:464 +msgid "Default Language" +msgstr "Langue par défaut" + +#: wp-admin/network/settings.php:437 +msgid "Max upload file size" +msgstr "Taille maximale des fichiers téléversés" + +#: wp-admin/network/settings.php:394 +msgid "First Comment URL" +msgstr "Adresse du premier commentaire" + +#: wp-admin/network/settings.php:376 +msgid "First Comment Author" +msgstr "Auteur ou autrice du premier commentaire" + +#: wp-admin/network/settings.php:366 +msgid "First Comment" +msgstr "Premier commentaire" + +#: wp-admin/network/settings.php:356 +msgid "First Page" +msgstr "Première page" + +#: wp-admin/network/settings.php:341 +msgid "The welcome email sent to new users." +msgstr "Ce message de bienvenue sera envoyé aux nouveaux comptes." + +#: wp-admin/network/settings.php:336 +msgid "Welcome User Email" +msgstr "Message de bienvenue aux nouveaux comptes" + +#: wp-admin/network/settings.php:326 +msgid "Welcome Email" +msgstr "Message de bienvenue" + +#: wp-admin/network/settings.php:302 +msgid "Banned Email Domains" +msgstr "Noms de domaines bannis" + +#: wp-admin/network/settings.php:277 +msgid "Limited Email Registrations" +msgstr "Enregistrement réservé aux noms de domaines" + +#: wp-admin/network/settings.php:258 +msgid "Banned Names" +msgstr "Noms bannis" + +#: wp-admin/network/site-users.php:353 +msgid "Add New User" +msgstr "Ajouter un compte" + +#: wp-admin/network/settings.php:239 +msgid "Registration notification" +msgstr "Notification d’inscription" + +#: wp-admin/network/settings.php:203 +msgid "Allow new registrations" +msgstr "Autoriser les nouvelles inscriptions" + +#: wp-admin/network/site-users.php:276 +msgid "Duplicated username or email address." +msgstr "Identifiant ou adresse e-mail déjà utilisé(e)." + +#: wp-admin/network/user-new.php:41 +msgid "Cannot create an empty user." +msgstr "Impossible de créer un compte vide." + +#: wp-admin/network/sites.php:128 wp-admin/network/sites.php:223 +msgid "Confirm" +msgstr "Confirmer" \ No newline at end of file diff --git a/web/app/languages/continents-cities-fr_BE.l10n.php b/web/app/languages/continents-cities-fr_BE.l10n.php new file mode 100755 index 00000000..cfbaa76f --- /dev/null +++ b/web/app/languages/continents-cities-fr_BE.l10n.php @@ -0,0 +1,2 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2024-02-01 20:47:53+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.5.x - Development - Continents & Cities','language'=>'fr_BE','messages'=>['Kanton'=>'Canton','Kyiv'=>'Kyïv','Qostanay'=>'Qostanay','Nuuk'=>'Nuuk','Saratov'=>'Saratov','Yangon'=>'Yangon','Famagusta'=>'Famagouste','Atyrau'=>'Atyrau','Punta Arenas'=>'Punta Arenas','Pohnpei'=>'Pohnpei','Chuuk'=>'Chuuk','Bougainville'=>'Bougainville','Ulyanovsk'=>'Oulianovsk','Kirov'=>'Kirov','Busingen'=>'Büsingen','Astrakhan'=>'Astrakhan','Ust-Nera'=>'Oust-Nera','Tomsk'=>'Tomsk','Srednekolymsk'=>'Srednekolymsk','Novokuznetsk'=>'Novokouznetsk','Khandyga'=>'Khandyga','Kathmandu'=>'Katmandu','Hebron'=>'Hébron','Chita'=>'Chita','Barnaul'=>'Barnaul','Troll'=>'Troll','Macquarie'=>'Macquarie','Sitka'=>'Sitka','Santarem'=>'Santarém','Santa Isabel'=>'Santa Isabel','Ojinaga'=>'Ojinaga','Beulah'=>'Beulah','Metlakatla'=>'Metlakatla','Matamoros'=>'Matamoros','Lower Princes'=>'Lower Princes','Kralendijk'=>'Kralendijk','Fort Nelson'=>'Fort Nelson','Creston'=>'Creston','Bahia Banderas'=>'Bahía de Banderas','Salta'=>'Salta','Juba'=>'Djouba','Yap'=>'Yap','Wallis'=>'Wallis-et-Futuna','Wake'=>'Île Wake','Truk'=>'Chuuk (Truk)','Tongatapu'=>'Tongatapu','Tarawa'=>'Tarawa','Tahiti'=>'Tahiti','Samoa'=>'Samoa','Saipan'=>'Saipan','Rarotonga'=>'Rarotonga','Port Moresby'=>'Port Moresby','Ponape'=>'Pohnpei (Ponape)','Pitcairn'=>'Îles Pitcairn','Palau'=>'Palaos','Pago Pago'=>'Pago Pago','Noumea'=>'Nouméa','Norfolk'=>'Norfolk','Niue'=>'Niué','Nauru'=>'Nauru','Midway'=>'Atoll de Midway','Marquesas'=>'Îles Marquises','Majuro'=>'Majuro','Kwajalein'=>'Kwajalein','Kosrae'=>'Kosrae','Kiritimati'=>'Île Christmas (Kiribati)','Johnston'=>'Atoll de Johnston','Honolulu'=>'Honolulu','Guam'=>'Guam','Guadalcanal'=>'Guadalcanal','Gambier'=>'Îles Gambier','Galapagos'=>'Îles Galápagos','Funafuti'=>'Funafuti','Fiji'=>'Fidji','Fakaofo'=>'Fakaofo','Enderbury'=>'Enderbury','Efate'=>'Éfaté','Easter'=>'Île de Pâques','Chatham'=>'Îles Chatham','Auckland'=>'Auckland','Apia'=>'Apia','Pacific'=>'Océan Pacifique','Reunion'=>'Île de la Réunion','Mayotte'=>'Mayotte','Mauritius'=>'Île Maurice','Maldives'=>'Maldives','Mahe'=>'Mahé','Kerguelen'=>'Îles Kerguelen','Comoro'=>'Archipel des Comores','Cocos'=>'Îles Cocos','Christmas'=>'Île Christmas','Chagos'=>'Archipel des Chagos','Antananarivo'=>'Antananarivo','Indian'=>'Océan Indien','Zurich'=>'Zurich','Zaporozhye'=>'Zaporojie','Zagreb'=>'Zagreb','Warsaw'=>'Varsovie','Volgograd'=>'Volgograd','Vilnius'=>'Vilnius','Vienna'=>'Vienne','Vatican'=>'Vatican','Vaduz'=>'Vaduz','Uzhgorod'=>'Oujhorod (Uzhgorod)','Tiraspol'=>'Tiraspol','Tirane'=>'Tirana','Tallinn'=>'Tallinn','Stockholm'=>'Stockholm','Sofia'=>'Sofia','Skopje'=>'Skopje','Simferopol'=>'Simferopol','Sarajevo'=>'Sarajevo','San Marino'=>'Saint-Marin','Samara'=>'Samara','Rome'=>'Rome','Riga'=>'Riga','Prague'=>'Prague','Podgorica'=>'Podgorica','Paris'=>'Paris','Oslo'=>'Oslo','Moscow'=>'Moscou','Monaco'=>'Monaco','Minsk'=>'Minsk','Mariehamn'=>'Mariehamn','Malta'=>'Malte','Madrid'=>'Madrid','Luxembourg'=>'Luxembourg','London'=>'Londres','Ljubljana'=>'Ljubljana','Lisbon'=>'Lisbonne','Kiev'=>'Kiev','Kaliningrad'=>'Kaliningrad','Jersey'=>'Jersey','Isle of Man'=>'Île de Man','Helsinki'=>'Helsinki','Guernsey'=>'Guernsey','Gibraltar'=>'Gibraltar','Dublin'=>'Dublin','Copenhagen'=>'Copenhague','Chisinau'=>'Chişinău (Kichinev)','Budapest'=>'Budapest','Bucharest'=>'Bucarest','Brussels'=>'Bruxelles','Bratislava'=>'Bratislava','Berlin'=>'Berlin','Belgrade'=>'Belgrade','Belfast'=>'Belfast','Athens'=>'Athènes','Andorra'=>'Andorre','Amsterdam'=>'Amsterdam','Europe'=>'Europe','Zulu'=>'Zulu','UTC'=>'UTC','Universal'=>'Universel','UCT'=>'UTC','Greenwich'=>'Greenwich','GMT0'=>'UTC0','GMT-9'=>'UTC-9','GMT-8'=>'UTC-8','GMT-7'=>'UTC-7','GMT-6'=>'UTC-6','GMT-5'=>'UTC-5','GMT-4'=>'UTC-4','GMT-3'=>'UTC-3','GMT-2'=>'UTC-2','GMT-14'=>'UTC-14','GMT-13'=>'UTC-13','GMT-12'=>'UTC-12','GMT-11'=>'UTC-11','GMT-10'=>'UTC-10','GMT-1'=>'UTC-1','GMT-0'=>'UTC-0','GMT+9'=>'UTC+9','GMT+8'=>'UTC+8','GMT+7'=>'UTC+7','GMT+6'=>'UTC+6','GMT+5'=>'UTC+5','GMT+4'=>'UTC+4','GMT+3'=>'UTC+3','GMT+2'=>'UTC+2','GMT+12'=>'UTC+12','GMT+11'=>'UTC+11','GMT+10'=>'UTC+10','GMT+1'=>'UTC+1','GMT+0'=>'UTC+0','GMT'=>'UTC','Etc'=>'Etc.','Yancowinna'=>'Yancowinna','West'=>'Ouest','Victoria'=>'Victoria','Tasmania'=>'Tasmanie','Sydney'=>'Sydney','South'=>'Sud','Queensland'=>'Queensland','Perth'=>'Perth','NSW'=>'Nouvelle-Galles du Sud (NSW)','North'=>'Nord','Melbourne'=>'Melbourne','Lord Howe'=>'Île Lord Howe (LHI)','Lindeman'=>'Lindeman','LHI'=>'Île Lord Howe (LHI)','Hobart'=>'Hobart','Eucla'=>'Eucla','Darwin'=>'Darwin','Currie'=>'Currie','Canberra'=>'Canberra','Broken Hill'=>'Broken Hill','Brisbane'=>'Brisbane','Adelaide'=>'Adélaïde','ACT'=>'Territoire de la capitale australienne (ACT)','Australia'=>'Australie','Stanley'=>'Stanley','St Helena'=>'Sainte-Hélène','South Georgia'=>'Île de Géorgie du Sud','Reykjavik'=>'Reykjavík','Madeira'=>'Madère','Jan Mayen'=>'Île Jan Mayen','Faroe'=>'Îles Féroé','Faeroe'=>'Îles Féroé','Cape Verde'=>'Cap-Vert','Canary'=>'Îles Canaries','Bermuda'=>'Bermudes','Azores'=>'Açores','Atlantic'=>'Atlantique','Yerevan'=>'Yerevan (Erevan)','Yekaterinburg'=>'Iekaterinbourg','Yakutsk'=>'Iakoutsk','Vladivostok'=>'Vladivostok','Vientiane'=>'Vientiane','Urumqi'=>'Ürümqi','Ulan Bator'=>'Oulan-Bator (Ulaanbaatar)','Ulaanbaatar'=>'Oulan-Bator (Ulaanbaatar)','Ujung Pandang'=>'Makassar (Ujung Pandang)','Tokyo'=>'Tōkyō','Thimphu'=>'Thimphou','Thimbu'=>'Thimphou','Tel Aviv'=>'Tel Aviv-Jaffa','Tehran'=>'Téhéran','Tbilisi'=>'Tbilissi','Tashkent'=>'Tachkent','Taipei'=>'Taipei','Singapore'=>'Singapour','Shanghai'=>'Shanghai','Seoul'=>'Séoul','Samarkand'=>'Samarcande','Sakhalin'=>'Sakhaline','Saigon'=>'Hô-Chi-Minh-Ville (Saigon)','Riyadh'=>'Riyad','Rangoon'=>'Rangoon','Qyzylorda'=>'Kyzylorda','Qatar'=>'Qatar','Pyongyang'=>'Pyongyang','Pontianak'=>'Pontianak','Phnom Penh'=>'Phnom Penh','Oral'=>'Oural','Omsk'=>'Omsk','Novosibirsk'=>'Novossibirsk','Nicosia'=>'Nicosie','Muscat'=>'Mascate','Manila'=>'Manille','Makassar'=>'Makassar','Magadan'=>'Magadan','Macau'=>'Macao','Macao'=>'Macao','Kuwait'=>'Koweït','Kuching'=>'Kuching','Kuala Lumpur'=>'Kuala Lumpur','Krasnoyarsk'=>'Krasnoïarsk','Kolkata'=>'Calcutta','Katmandu'=>'Katmandou','Kashgar'=>'Kachgar','Karachi'=>'Karachi','Kamchatka'=>'Kamtchatka','Kabul'=>'Kaboul','Jerusalem'=>'Jérusalem','Jayapura'=>'Jayapura','Jakarta'=>'Jakarta','Istanbul'=>'Istanbul','Irkutsk'=>'Irkoutsk','Hovd'=>'Hovd','Hong Kong'=>'Hong Kong','Ho Chi Minh'=>'Hô-Chi-Minh-Ville','Harbin'=>'Harbin','Gaza'=>'Gaza','Dushanbe'=>'Douchanbé','Dubai'=>'Dubaï','Dili'=>'Dili','Dhaka'=>'Dhâkâ (Dacca)','Damascus'=>'Damas','Dacca'=>'Dhâkâ (Dacca)','Colombo'=>'Colombo','Chungking'=>'Chungking','Chongqing'=>'Chongqing','Choibalsan'=>'Choybalsan','Calcutta'=>'Calcutta','Brunei'=>'Brunei','Bishkek'=>'Bichkek','Beirut'=>'Beyrouth','Bangkok'=>'Bangkok','Baku'=>'Bakou','Bahrain'=>'Bahreïn','Baghdad'=>'Bagdad','Ashkhabad'=>'Achgabat','Ashgabat'=>'Achgabat','Aqtobe'=>'Aktioubé','Aqtau'=>'Aqtou','Anadyr'=>'Anadyr','Amman'=>'Amman','Almaty'=>'Almaty','Aden'=>'Aden','Asia'=>'Asie','Longyearbyen'=>'Longyearbyen','Arctic'=>'Arctique','Vostok'=>'Vostok','Syowa'=>'Syowa','South Pole'=>'Pôle Sud','Rothera'=>'Rothera','Palmer'=>'Palmer','McMurdo'=>'McMurdo','Mawson'=>'Mawson','DumontDUrville'=>'Dumont d\'Urville','Davis'=>'Davis','Casey'=>'Casey','Antarctica'=>'Antartique','Yellowknife'=>'Yellowknife','Yakutat'=>'Yakutat','Winnipeg'=>'Winnipeg','Whitehorse'=>'Whitehorse','Virgin'=>'Virgin','Vancouver'=>'Vancouver','Tortola'=>'Tortola','Toronto'=>'Toronto','Tijuana'=>'Tijuana','Thunder Bay'=>'Thunder Bay','Thule'=>'Thule','Tegucigalpa'=>'Tegucigalpa','Swift Current'=>'Swift Current','St Vincent'=>'Saint Vincent','St Thomas'=>'Saint Thomas','St Lucia'=>'Sainte-Lucie','St Kitts'=>'Île Saint-Christophe','St Johns'=>'Saint John\'s','St Barthelemy'=>'Saint-Barthélemy','Shiprock'=>'Shiprock','Scoresbysund'=>'Ittoqqortoormiit (Scoresbysund)','Sao Paulo'=>'São Paulo','Santo Domingo'=>'Saint-Domingue','Santiago'=>'Santiago du Chili','Rosario'=>'Rosario','Rio Branco'=>'Rio Branco','Resolute'=>'Resolute','Regina'=>'Regina','Recife'=>'Recife','Rankin Inlet'=>'Kangiqtiniq (Rankin Inlet)','Rainy River'=>'Rainy River','Puerto Rico'=>'Porto Rico','Porto Velho'=>'Porto Velho','Porto Acre'=>'Porto Acre','Port of Spain'=>'Port-d\'Espagne','Port-au-Prince'=>'Port-au-Prince','Phoenix'=>'Phoenix','Paramaribo'=>'Paramaribo','Pangnirtung'=>'Pangnirtung','Panama'=>'Panama','New Salem'=>'New Salem','Center'=>'Center','North Dakota'=>'Dakota du Nord','Noronha'=>'Noronha','Nome'=>'Nome','Nipigon'=>'Nipigon','New York'=>'New York','Nassau'=>'Nassau','Montserrat'=>'Montserrat','Montreal'=>'Montréal','Montevideo'=>'Montévidéo','Monterrey'=>'Monterrey','Moncton'=>'Moncton','Miquelon'=>'Miquelon','Mexico City'=>'Mexico','Merida'=>'Merida','Menominee'=>'Menominee','Mazatlan'=>'Mazatlan','Martinique'=>'Martinique','Marigot'=>'Marigot','Manaus'=>'Manaos','Managua'=>'Managua','Maceio'=>'Maceió','Los Angeles'=>'Los Angeles','Lima'=>'Lima','La Paz'=>'La Paz','Knox IN'=>'Knox (Indiana)','Monticello'=>'Monticello','Louisville'=>'Louisville','Kentucky'=>'Kentucky','Juneau'=>'Juneau','Jamaica'=>'Jamaïque','Iqaluit'=>'Iqaluit','Inuvik'=>'Inuvik','Winamac'=>'Winamac','Vincennes'=>'Vincennes','Vevay'=>'Vevay','Tell City'=>'Tell City','Petersburg'=>'Petersburg','Marengo'=>'Marengo','Knox'=>'Knox','Indianapolis'=>'Indianapolis','Indiana'=>'Indiana','Hermosillo'=>'Hermosillo','Havana'=>'La Havane','Halifax'=>'Halifax','Guyana'=>'Guyane','Guayaquil'=>'Guayaquil','Guatemala'=>'Guatemala','Guadeloupe'=>'Guadeloupe','Grenada'=>'Grenade','Grand Turk'=>'Grand Turk','Goose Bay'=>'Goose Bay','Godthab'=>'Nuuk (Godthåb)','Glace Bay'=>'Glace Bay','Fortaleza'=>'Fortaleza','Fort Wayne'=>'Fort Wayne','Ensenada'=>'Ensenada','El Salvador'=>'Salvador','Eirunepe'=>'Eirunepé','Edmonton'=>'Edmonton','Dominica'=>'Dominique','Detroit'=>'Detroit','Denver'=>'Denver','Dawson Creek'=>'Dawson Creek','Dawson'=>'Dawson','Danmarkshavn'=>'Danmarkshavn','Curacao'=>'Curaçao','Cuiaba'=>'Cuiabá','Costa Rica'=>'Costa Rica','Coral Harbour'=>'Coral Harbour','Chihuahua'=>'Etat de Chihuahua','Chicago'=>'Chicago','Cayman'=>'Îles Caïmans','Cayenne'=>'Cayenne','Caracas'=>'Caracas','Cancun'=>'Cancún','Campo Grande'=>'Campo Grande','Cambridge Bay'=>'Ikaluktutiak','Boise'=>'Boise','Bogota'=>'Bogotá','Boa Vista'=>'Boa Vista','Blanc-Sablon'=>'Blanc-Sablon','Belize'=>'Belize','Belem'=>'Belém','Barbados'=>'Barbade','Bahia'=>'Bahia','Atka'=>'Atka','Atikokan'=>'Atikokan','Asuncion'=>'Asunción','Aruba'=>'Aruba','Ushuaia'=>'Ushuaïa','Tucuman'=>'San Miguel de Tucumán','San Luis'=>'San Luis','San Juan'=>'San Juan','Rio Gallegos'=>'Rio Gallegos','Mendoza'=>'Mendoza','La Rioja'=>'La Rioja','Jujuy'=>'San Salvador de Jujuy','Cordoba'=>'Córdoba','ComodRivadavia'=>'Comodoro Rivadavia','Catamarca'=>'Catamarca','Buenos Aires'=>'Buenos Aires','Argentina'=>'Argentine','Araguaina'=>'Araguaína','Antigua'=>'Antigua','Anguilla'=>'Anguilla','Anchorage'=>'Anchorage','Adak'=>'Adak','America'=>'Amériques','Windhoek'=>'Windhoek','Tunis'=>'Tunis','Tripoli'=>'Tripoli','Timbuktu'=>'Tombouctou','Sao Tome'=>'São Tomé','Porto-Novo'=>'Porto-Novo','Ouagadougou'=>'Ouagadougou','Nouakchott'=>'Nouakchott','Niamey'=>'Niamey','Ndjamena'=>'N\'Djamena','Nairobi'=>'Nairobi','Monrovia'=>'Monrovia','Mogadishu'=>'Mogadiscio','Mbabane'=>'Mbabane','Maseru'=>'Maseru','Maputo'=>'Maputo','Malabo'=>'Malabo','Lusaka'=>'Lusaka','Lubumbashi'=>'Lubumbashi','Luanda'=>'Luanda','Lome'=>'Lomé','Libreville'=>'Libreville','Lagos'=>'Lagos','Kinshasa'=>'Kinshasa','Kigali'=>'Kigali','Khartoum'=>'Khartoum','Kampala'=>'Kampala','Johannesburg'=>'Johannesburg','Harare'=>'Harare','Gaborone'=>'Gaborone','Freetown'=>'Freetown','El Aaiun'=>'Laâyoune','Douala'=>'Douala','Djibouti'=>'Djibouti','Dar es Salaam'=>'Dar es Salaam','Dakar'=>'Dakar','Conakry'=>'Conakry','Ceuta'=>'Ceuta','Casablanca'=>'Casablanca','Cairo'=>'Le Caire','Bujumbura'=>'Bujumbura','Brazzaville'=>'Brazzaville','Blantyre'=>'Blantyre','Bissau'=>'Bissau','Banjul'=>'Banjul','Bangui'=>'Bangui','Bamako'=>'Bamako','Asmera'=>'Asmara','Asmara'=>'Asmara','Algiers'=>'Alger','Addis Ababa'=>'Addis-Abeba','Accra'=>'Accra','Abidjan'=>'Abidjan','Africa'=>'Afrique']]; \ No newline at end of file diff --git a/web/app/languages/continents-cities-fr_BE.mo b/web/app/languages/continents-cities-fr_BE.mo new file mode 100755 index 00000000..08e1d73f Binary files /dev/null and b/web/app/languages/continents-cities-fr_BE.mo differ diff --git a/web/app/languages/continents-cities-fr_BE.po b/web/app/languages/continents-cities-fr_BE.po new file mode 100755 index 00000000..ffe4e002 --- /dev/null +++ b/web/app/languages/continents-cities-fr_BE.po @@ -0,0 +1,2124 @@ +# Translation of WordPress - 6.5.x - Development - Continents & Cities in French (Belgium) +# This file is distributed under the same license as the WordPress - 6.5.x - Development - Continents & Cities package. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-01 20:47:53+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: fr_BE\n" +"Project-Id-Version: WordPress - 6.5.x - Development - Continents & Cities\n" + +#: wp-admin/includes/continents-cities.php:523 +msgid "Kanton" +msgstr "Canton" + +#: wp-admin/includes/continents-cities.php:451 +msgid "Kyiv" +msgstr "Kyïv" + +#: wp-admin/includes/continents-cities.php:319 +msgid "Qostanay" +msgstr "Qostanay" + +#: wp-admin/includes/continents-cities.php:187 +msgid "Nuuk" +msgstr "Nuuk" + +#: wp-admin/includes/continents-cities.php:472 +msgid "Saratov" +msgstr "Saratov" + +#: wp-admin/includes/continents-cities.php:347 +msgid "Yangon" +msgstr "Yangon" + +#: wp-admin/includes/continents-cities.php:281 +msgid "Famagusta" +msgstr "Famagouste" + +#: wp-admin/includes/continents-cities.php:260 +msgid "Atyrau" +msgstr "Atyrau" + +#: wp-admin/includes/continents-cities.php:198 +msgid "Punta Arenas" +msgstr "Punta Arenas" + +#: wp-admin/includes/continents-cities.php:537 +msgid "Pohnpei" +msgstr "Pohnpei" + +#: wp-admin/includes/continents-cities.php:510 +msgid "Chuuk" +msgstr "Chuuk" + +#: wp-admin/includes/continents-cities.php:508 +msgid "Bougainville" +msgstr "Bougainville" + +#: wp-admin/includes/continents-cities.php:480 +msgid "Ulyanovsk" +msgstr "Oulianovsk" + +#: wp-admin/includes/continents-cities.php:452 +msgid "Kirov" +msgstr "Kirov" + +#: wp-admin/includes/continents-cities.php:439 +msgid "Busingen" +msgstr "Büsingen" + +#: wp-admin/includes/continents-cities.php:430 +msgid "Astrakhan" +msgstr "Astrakhan" + +#: wp-admin/includes/continents-cities.php:343 +msgid "Ust-Nera" +msgstr "Oust-Nera" + +#: wp-admin/includes/continents-cities.php:338 +msgid "Tomsk" +msgstr "Tomsk" + +#: wp-admin/includes/continents-cities.php:329 +msgid "Srednekolymsk" +msgstr "Srednekolymsk" + +#: wp-admin/includes/continents-cities.php:311 +msgid "Novokuznetsk" +msgstr "Novokouznetsk" + +#: wp-admin/includes/continents-cities.php:298 +msgid "Khandyga" +msgstr "Khandyga" + +#: wp-admin/includes/continents-cities.php:296 +msgid "Kathmandu" +msgstr "Katmandu" + +#: wp-admin/includes/continents-cities.php:284 +msgid "Hebron" +msgstr "Hébron" + +#: wp-admin/includes/continents-cities.php:270 +msgid "Chita" +msgstr "Chita" + +#: wp-admin/includes/continents-cities.php:265 +msgid "Barnaul" +msgstr "Barnaul" + +#: wp-admin/includes/continents-cities.php:245 +msgid "Troll" +msgstr "Troll" + +#: wp-admin/includes/continents-cities.php:238 +msgid "Macquarie" +msgstr "Macquarie" + +#: wp-admin/includes/continents-cities.php:213 +msgid "Sitka" +msgstr "Sitka" + +#: wp-admin/includes/continents-cities.php:207 +msgid "Santarem" +msgstr "Santarém" + +#: wp-admin/includes/continents-cities.php:206 +msgid "Santa Isabel" +msgstr "Santa Isabel" + +#: wp-admin/includes/continents-cities.php:188 +msgid "Ojinaga" +msgstr "Ojinaga" + +#: wp-admin/includes/continents-cities.php:184 +msgid "Beulah" +msgstr "Beulah" + +#: wp-admin/includes/continents-cities.php:170 +msgid "Metlakatla" +msgstr "Metlakatla" + +#: wp-admin/includes/continents-cities.php:166 +msgid "Matamoros" +msgstr "Matamoros" + +#: wp-admin/includes/continents-cities.php:160 +msgid "Lower Princes" +msgstr "Lower Princes" + +#: wp-admin/includes/continents-cities.php:156 +msgid "Kralendijk" +msgstr "Kralendijk" + +#: wp-admin/includes/continents-cities.php:124 +msgid "Fort Nelson" +msgstr "Fort Nelson" + +#: wp-admin/includes/continents-cities.php:111 +msgid "Creston" +msgstr "Creston" + +#: wp-admin/includes/continents-cities.php:93 +msgid "Bahia Banderas" +msgstr "Bahía de Banderas" + +#: wp-admin/includes/continents-cities.php:83 +msgid "Salta" +msgstr "Salta" + +#: wp-admin/includes/continents-cities.php:39 +msgid "Juba" +msgstr "Djouba" + +#: wp-admin/includes/continents-cities.php:549 +msgid "Yap" +msgstr "Yap" + +#: wp-admin/includes/continents-cities.php:548 +msgid "Wallis" +msgstr "Wallis-et-Futuna" + +#: wp-admin/includes/continents-cities.php:547 +msgid "Wake" +msgstr "Île Wake" + +#: wp-admin/includes/continents-cities.php:546 +msgid "Truk" +msgstr "Chuuk (Truk)" + +#: wp-admin/includes/continents-cities.php:545 +msgid "Tongatapu" +msgstr "Tongatapu" + +#: wp-admin/includes/continents-cities.php:544 +msgid "Tarawa" +msgstr "Tarawa" + +#: wp-admin/includes/continents-cities.php:543 +msgid "Tahiti" +msgstr "Tahiti" + +#: wp-admin/includes/continents-cities.php:542 +msgid "Samoa" +msgstr "Samoa" + +#: wp-admin/includes/continents-cities.php:541 +msgid "Saipan" +msgstr "Saipan" + +#: wp-admin/includes/continents-cities.php:540 +msgid "Rarotonga" +msgstr "Rarotonga" + +#: wp-admin/includes/continents-cities.php:539 +msgid "Port Moresby" +msgstr "Port Moresby" + +#: wp-admin/includes/continents-cities.php:538 +msgid "Ponape" +msgstr "Pohnpei (Ponape)" + +#: wp-admin/includes/continents-cities.php:536 +msgid "Pitcairn" +msgstr "Îles Pitcairn" + +#: wp-admin/includes/continents-cities.php:535 +msgid "Palau" +msgstr "Palaos" + +#: wp-admin/includes/continents-cities.php:534 +msgid "Pago Pago" +msgstr "Pago Pago" + +#: wp-admin/includes/continents-cities.php:533 +msgid "Noumea" +msgstr "Nouméa" + +#: wp-admin/includes/continents-cities.php:532 +msgid "Norfolk" +msgstr "Norfolk" + +#: wp-admin/includes/continents-cities.php:531 +msgid "Niue" +msgstr "Niué" + +#: wp-admin/includes/continents-cities.php:530 +msgid "Nauru" +msgstr "Nauru" + +#: wp-admin/includes/continents-cities.php:529 +msgid "Midway" +msgstr "Atoll de Midway" + +#: wp-admin/includes/continents-cities.php:528 +msgid "Marquesas" +msgstr "Îles Marquises" + +#: wp-admin/includes/continents-cities.php:527 +msgid "Majuro" +msgstr "Majuro" + +#: wp-admin/includes/continents-cities.php:526 +msgid "Kwajalein" +msgstr "Kwajalein" + +#: wp-admin/includes/continents-cities.php:525 +msgid "Kosrae" +msgstr "Kosrae" + +#: wp-admin/includes/continents-cities.php:524 +msgid "Kiritimati" +msgstr "Île Christmas (Kiribati)" + +#: wp-admin/includes/continents-cities.php:522 +msgid "Johnston" +msgstr "Atoll de Johnston" + +#: wp-admin/includes/continents-cities.php:521 +msgid "Honolulu" +msgstr "Honolulu" + +#: wp-admin/includes/continents-cities.php:520 +msgid "Guam" +msgstr "Guam" + +#: wp-admin/includes/continents-cities.php:519 +msgid "Guadalcanal" +msgstr "Guadalcanal" + +#: wp-admin/includes/continents-cities.php:518 +msgid "Gambier" +msgstr "Îles Gambier" + +#: wp-admin/includes/continents-cities.php:517 +msgid "Galapagos" +msgstr "Îles Galápagos" + +#: wp-admin/includes/continents-cities.php:516 +msgid "Funafuti" +msgstr "Funafuti" + +#: wp-admin/includes/continents-cities.php:515 +msgid "Fiji" +msgstr "Fidji" + +#: wp-admin/includes/continents-cities.php:514 +msgid "Fakaofo" +msgstr "Fakaofo" + +#: wp-admin/includes/continents-cities.php:513 +msgid "Enderbury" +msgstr "Enderbury" + +#: wp-admin/includes/continents-cities.php:512 +msgid "Efate" +msgstr "Éfaté" + +#: wp-admin/includes/continents-cities.php:511 +msgid "Easter" +msgstr "Île de Pâques" + +#: wp-admin/includes/continents-cities.php:509 +msgid "Chatham" +msgstr "Îles Chatham" + +#: wp-admin/includes/continents-cities.php:507 +msgid "Auckland" +msgstr "Auckland" + +#: wp-admin/includes/continents-cities.php:506 +msgid "Apia" +msgstr "Apia" + +#: wp-admin/includes/continents-cities.php:505 +msgid "Pacific" +msgstr "Océan Pacifique" + +#: wp-admin/includes/continents-cities.php:503 +msgid "Reunion" +msgstr "Île de la Réunion" + +#: wp-admin/includes/continents-cities.php:502 +msgid "Mayotte" +msgstr "Mayotte" + +#: wp-admin/includes/continents-cities.php:501 +msgid "Mauritius" +msgstr "Île Maurice" + +#: wp-admin/includes/continents-cities.php:500 +msgid "Maldives" +msgstr "Maldives" + +#: wp-admin/includes/continents-cities.php:499 +msgid "Mahe" +msgstr "Mahé" + +#: wp-admin/includes/continents-cities.php:498 +msgid "Kerguelen" +msgstr "Îles Kerguelen" + +#: wp-admin/includes/continents-cities.php:497 +msgid "Comoro" +msgstr "Archipel des Comores" + +#: wp-admin/includes/continents-cities.php:496 +msgid "Cocos" +msgstr "Îles Cocos" + +#: wp-admin/includes/continents-cities.php:495 +msgid "Christmas" +msgstr "Île Christmas" + +#: wp-admin/includes/continents-cities.php:494 +msgid "Chagos" +msgstr "Archipel des Chagos" + +#: wp-admin/includes/continents-cities.php:493 +msgid "Antananarivo" +msgstr "Antananarivo" + +#: wp-admin/includes/continents-cities.php:492 +msgid "Indian" +msgstr "Océan Indien" + +#: wp-admin/includes/continents-cities.php:490 +msgid "Zurich" +msgstr "Zurich" + +#: wp-admin/includes/continents-cities.php:489 +msgid "Zaporozhye" +msgstr "Zaporojie" + +#: wp-admin/includes/continents-cities.php:488 +msgid "Zagreb" +msgstr "Zagreb" + +#: wp-admin/includes/continents-cities.php:487 +msgid "Warsaw" +msgstr "Varsovie" + +#: wp-admin/includes/continents-cities.php:486 +msgid "Volgograd" +msgstr "Volgograd" + +#: wp-admin/includes/continents-cities.php:485 +msgid "Vilnius" +msgstr "Vilnius" + +#: wp-admin/includes/continents-cities.php:484 +msgid "Vienna" +msgstr "Vienne" + +#: wp-admin/includes/continents-cities.php:483 +msgid "Vatican" +msgstr "Vatican" + +#: wp-admin/includes/continents-cities.php:482 +msgid "Vaduz" +msgstr "Vaduz" + +#: wp-admin/includes/continents-cities.php:481 +msgid "Uzhgorod" +msgstr "Oujhorod (Uzhgorod)" + +#: wp-admin/includes/continents-cities.php:479 +msgid "Tiraspol" +msgstr "Tiraspol" + +#: wp-admin/includes/continents-cities.php:478 +msgid "Tirane" +msgstr "Tirana" + +#: wp-admin/includes/continents-cities.php:477 +msgid "Tallinn" +msgstr "Tallinn" + +#: wp-admin/includes/continents-cities.php:476 +msgid "Stockholm" +msgstr "Stockholm" + +#: wp-admin/includes/continents-cities.php:475 +msgid "Sofia" +msgstr "Sofia" + +#: wp-admin/includes/continents-cities.php:474 +msgid "Skopje" +msgstr "Skopje" + +#: wp-admin/includes/continents-cities.php:473 +msgid "Simferopol" +msgstr "Simferopol" + +#: wp-admin/includes/continents-cities.php:471 +msgid "Sarajevo" +msgstr "Sarajevo" + +#: wp-admin/includes/continents-cities.php:470 +msgid "San Marino" +msgstr "Saint-Marin" + +#: wp-admin/includes/continents-cities.php:469 +msgid "Samara" +msgstr "Samara" + +#: wp-admin/includes/continents-cities.php:468 +msgid "Rome" +msgstr "Rome" + +#: wp-admin/includes/continents-cities.php:467 +msgid "Riga" +msgstr "Riga" + +#: wp-admin/includes/continents-cities.php:466 +msgid "Prague" +msgstr "Prague" + +#: wp-admin/includes/continents-cities.php:465 +msgid "Podgorica" +msgstr "Podgorica" + +#: wp-admin/includes/continents-cities.php:464 +msgid "Paris" +msgstr "Paris" + +#: wp-admin/includes/continents-cities.php:463 +msgid "Oslo" +msgstr "Oslo" + +#: wp-admin/includes/continents-cities.php:462 +msgid "Moscow" +msgstr "Moscou" + +#: wp-admin/includes/continents-cities.php:461 +msgid "Monaco" +msgstr "Monaco" + +#: wp-admin/includes/continents-cities.php:460 +msgid "Minsk" +msgstr "Minsk" + +#: wp-admin/includes/continents-cities.php:459 +msgid "Mariehamn" +msgstr "Mariehamn" + +#: wp-admin/includes/continents-cities.php:458 +msgid "Malta" +msgstr "Malte" + +#: wp-admin/includes/continents-cities.php:457 +msgid "Madrid" +msgstr "Madrid" + +#: wp-admin/includes/continents-cities.php:456 +msgid "Luxembourg" +msgstr "Luxembourg" + +#: wp-admin/includes/continents-cities.php:455 +msgid "London" +msgstr "Londres" + +#: wp-admin/includes/continents-cities.php:454 +msgid "Ljubljana" +msgstr "Ljubljana" + +#: wp-admin/includes/continents-cities.php:453 +msgid "Lisbon" +msgstr "Lisbonne" + +#: wp-admin/includes/continents-cities.php:450 +msgid "Kiev" +msgstr "Kiev" + +#: wp-admin/includes/continents-cities.php:449 +msgid "Kaliningrad" +msgstr "Kaliningrad" + +#: wp-admin/includes/continents-cities.php:448 +msgid "Jersey" +msgstr "Jersey" + +#: wp-admin/includes/continents-cities.php:446 +msgid "Isle of Man" +msgstr "Île de Man" + +#: wp-admin/includes/continents-cities.php:445 +msgid "Helsinki" +msgstr "Helsinki" + +#: wp-admin/includes/continents-cities.php:444 +msgid "Guernsey" +msgstr "Guernsey" + +#: wp-admin/includes/continents-cities.php:443 +msgid "Gibraltar" +msgstr "Gibraltar" + +#: wp-admin/includes/continents-cities.php:442 +msgid "Dublin" +msgstr "Dublin" + +#: wp-admin/includes/continents-cities.php:441 +msgid "Copenhagen" +msgstr "Copenhague" + +#: wp-admin/includes/continents-cities.php:440 +msgid "Chisinau" +msgstr "Chişinău (Kichinev)" + +#: wp-admin/includes/continents-cities.php:438 +msgid "Budapest" +msgstr "Budapest" + +#: wp-admin/includes/continents-cities.php:437 +msgid "Bucharest" +msgstr "Bucarest" + +#: wp-admin/includes/continents-cities.php:436 +msgid "Brussels" +msgstr "Bruxelles" + +#: wp-admin/includes/continents-cities.php:435 +msgid "Bratislava" +msgstr "Bratislava" + +#: wp-admin/includes/continents-cities.php:434 +msgid "Berlin" +msgstr "Berlin" + +#: wp-admin/includes/continents-cities.php:433 +msgid "Belgrade" +msgstr "Belgrade" + +#: wp-admin/includes/continents-cities.php:432 +msgid "Belfast" +msgstr "Belfast" + +#: wp-admin/includes/continents-cities.php:431 +msgid "Athens" +msgstr "Athènes" + +#: wp-admin/includes/continents-cities.php:429 +msgid "Andorra" +msgstr "Andorre" + +#: wp-admin/includes/continents-cities.php:428 +msgid "Amsterdam" +msgstr "Amsterdam" + +#: wp-admin/includes/continents-cities.php:427 +msgid "Europe" +msgstr "Europe" + +#: wp-admin/includes/continents-cities.php:425 +msgid "Zulu" +msgstr "Zulu" + +#: wp-admin/includes/continents-cities.php:423 +msgid "UTC" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:424 +msgid "Universal" +msgstr "Universel" + +#: wp-admin/includes/continents-cities.php:422 +msgid "UCT" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:421 +msgid "Greenwich" +msgstr "Greenwich" + +#: wp-admin/includes/continents-cities.php:420 +msgid "GMT0" +msgstr "UTC0" + +#: wp-admin/includes/continents-cities.php:419 +msgid "GMT-9" +msgstr "UTC-9" + +#: wp-admin/includes/continents-cities.php:418 +msgid "GMT-8" +msgstr "UTC-8" + +#: wp-admin/includes/continents-cities.php:417 +msgid "GMT-7" +msgstr "UTC-7" + +#: wp-admin/includes/continents-cities.php:416 +msgid "GMT-6" +msgstr "UTC-6" + +#: wp-admin/includes/continents-cities.php:415 +msgid "GMT-5" +msgstr "UTC-5" + +#: wp-admin/includes/continents-cities.php:414 +msgid "GMT-4" +msgstr "UTC-4" + +#: wp-admin/includes/continents-cities.php:413 +msgid "GMT-3" +msgstr "UTC-3" + +#: wp-admin/includes/continents-cities.php:412 +msgid "GMT-2" +msgstr "UTC-2" + +#: wp-admin/includes/continents-cities.php:411 +msgid "GMT-14" +msgstr "UTC-14" + +#: wp-admin/includes/continents-cities.php:410 +msgid "GMT-13" +msgstr "UTC-13" + +#: wp-admin/includes/continents-cities.php:409 +msgid "GMT-12" +msgstr "UTC-12" + +#: wp-admin/includes/continents-cities.php:408 +msgid "GMT-11" +msgstr "UTC-11" + +#: wp-admin/includes/continents-cities.php:407 +msgid "GMT-10" +msgstr "UTC-10" + +#: wp-admin/includes/continents-cities.php:406 +msgid "GMT-1" +msgstr "UTC-1" + +#: wp-admin/includes/continents-cities.php:405 +msgid "GMT-0" +msgstr "UTC-0" + +#: wp-admin/includes/continents-cities.php:404 +msgid "GMT+9" +msgstr "UTC+9" + +#: wp-admin/includes/continents-cities.php:403 +msgid "GMT+8" +msgstr "UTC+8" + +#: wp-admin/includes/continents-cities.php:402 +msgid "GMT+7" +msgstr "UTC+7" + +#: wp-admin/includes/continents-cities.php:401 +msgid "GMT+6" +msgstr "UTC+6" + +#: wp-admin/includes/continents-cities.php:400 +msgid "GMT+5" +msgstr "UTC+5" + +#: wp-admin/includes/continents-cities.php:399 +msgid "GMT+4" +msgstr "UTC+4" + +#: wp-admin/includes/continents-cities.php:398 +msgid "GMT+3" +msgstr "UTC+3" + +#: wp-admin/includes/continents-cities.php:397 +msgid "GMT+2" +msgstr "UTC+2" + +#: wp-admin/includes/continents-cities.php:396 +msgid "GMT+12" +msgstr "UTC+12" + +#: wp-admin/includes/continents-cities.php:395 +msgid "GMT+11" +msgstr "UTC+11" + +#: wp-admin/includes/continents-cities.php:394 +msgid "GMT+10" +msgstr "UTC+10" + +#: wp-admin/includes/continents-cities.php:393 +msgid "GMT+1" +msgstr "UTC+1" + +#: wp-admin/includes/continents-cities.php:392 +msgid "GMT+0" +msgstr "UTC+0" + +#: wp-admin/includes/continents-cities.php:391 +msgid "GMT" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:390 +msgid "Etc" +msgstr "Etc." + +#: wp-admin/includes/continents-cities.php:388 +msgid "Yancowinna" +msgstr "Yancowinna" + +#: wp-admin/includes/continents-cities.php:387 +msgid "West" +msgstr "Ouest" + +#: wp-admin/includes/continents-cities.php:386 +msgid "Victoria" +msgstr "Victoria" + +#: wp-admin/includes/continents-cities.php:385 +msgid "Tasmania" +msgstr "Tasmanie" + +#: wp-admin/includes/continents-cities.php:384 +msgid "Sydney" +msgstr "Sydney" + +#: wp-admin/includes/continents-cities.php:383 +msgid "South" +msgstr "Sud" + +#: wp-admin/includes/continents-cities.php:382 +msgid "Queensland" +msgstr "Queensland" + +#: wp-admin/includes/continents-cities.php:381 +msgid "Perth" +msgstr "Perth" + +#: wp-admin/includes/continents-cities.php:379 +msgid "NSW" +msgstr "Nouvelle-Galles du Sud (NSW)" + +#: wp-admin/includes/continents-cities.php:380 +msgid "North" +msgstr "Nord" + +#: wp-admin/includes/continents-cities.php:378 +msgid "Melbourne" +msgstr "Melbourne" + +#: wp-admin/includes/continents-cities.php:377 +msgid "Lord Howe" +msgstr "Île Lord Howe (LHI)" + +#: wp-admin/includes/continents-cities.php:376 +msgid "Lindeman" +msgstr "Lindeman" + +#: wp-admin/includes/continents-cities.php:375 +msgid "LHI" +msgstr "Île Lord Howe (LHI)" + +#: wp-admin/includes/continents-cities.php:374 +msgid "Hobart" +msgstr "Hobart" + +#: wp-admin/includes/continents-cities.php:373 +msgid "Eucla" +msgstr "Eucla" + +#: wp-admin/includes/continents-cities.php:372 +msgid "Darwin" +msgstr "Darwin" + +#: wp-admin/includes/continents-cities.php:371 +msgid "Currie" +msgstr "Currie" + +#: wp-admin/includes/continents-cities.php:370 +msgid "Canberra" +msgstr "Canberra" + +#: wp-admin/includes/continents-cities.php:369 +msgid "Broken Hill" +msgstr "Broken Hill" + +#: wp-admin/includes/continents-cities.php:368 +msgid "Brisbane" +msgstr "Brisbane" + +#: wp-admin/includes/continents-cities.php:367 +msgid "Adelaide" +msgstr "Adélaïde" + +#: wp-admin/includes/continents-cities.php:366 +msgid "ACT" +msgstr "Territoire de la capitale australienne (ACT)" + +#: wp-admin/includes/continents-cities.php:365 +msgid "Australia" +msgstr "Australie" + +#: wp-admin/includes/continents-cities.php:363 +msgid "Stanley" +msgstr "Stanley" + +#: wp-admin/includes/continents-cities.php:362 +msgid "St Helena" +msgstr "Sainte-Hélène" + +#: wp-admin/includes/continents-cities.php:361 +msgid "South Georgia" +msgstr "Île de Géorgie du Sud" + +#: wp-admin/includes/continents-cities.php:360 +msgid "Reykjavik" +msgstr "Reykjavík" + +#: wp-admin/includes/continents-cities.php:359 +msgid "Madeira" +msgstr "Madère" + +#: wp-admin/includes/continents-cities.php:358 +msgid "Jan Mayen" +msgstr "Île Jan Mayen" + +#: wp-admin/includes/continents-cities.php:357 +msgid "Faroe" +msgstr "Îles Féroé" + +#: wp-admin/includes/continents-cities.php:356 +msgid "Faeroe" +msgstr "Îles Féroé" + +#: wp-admin/includes/continents-cities.php:355 +msgid "Cape Verde" +msgstr "Cap-Vert" + +#: wp-admin/includes/continents-cities.php:354 +msgid "Canary" +msgstr "Îles Canaries" + +#: wp-admin/includes/continents-cities.php:353 +msgid "Bermuda" +msgstr "Bermudes" + +#: wp-admin/includes/continents-cities.php:352 +msgid "Azores" +msgstr "Açores" + +#: wp-admin/includes/continents-cities.php:351 +msgid "Atlantic" +msgstr "Atlantique" + +#: wp-admin/includes/continents-cities.php:349 +msgid "Yerevan" +msgstr "Yerevan (Erevan)" + +#: wp-admin/includes/continents-cities.php:348 +msgid "Yekaterinburg" +msgstr "Iekaterinbourg" + +#: wp-admin/includes/continents-cities.php:346 +msgid "Yakutsk" +msgstr "Iakoutsk" + +#: wp-admin/includes/continents-cities.php:345 +msgid "Vladivostok" +msgstr "Vladivostok" + +#: wp-admin/includes/continents-cities.php:344 +msgid "Vientiane" +msgstr "Vientiane" + +#: wp-admin/includes/continents-cities.php:342 +msgid "Urumqi" +msgstr "Ürümqi" + +#: wp-admin/includes/continents-cities.php:341 +msgid "Ulan Bator" +msgstr "Oulan-Bator (Ulaanbaatar)" + +#: wp-admin/includes/continents-cities.php:340 +msgid "Ulaanbaatar" +msgstr "Oulan-Bator (Ulaanbaatar)" + +#: wp-admin/includes/continents-cities.php:339 +msgid "Ujung Pandang" +msgstr "Makassar (Ujung Pandang)" + +#: wp-admin/includes/continents-cities.php:337 +msgid "Tokyo" +msgstr "Tōkyō" + +#: wp-admin/includes/continents-cities.php:336 +msgid "Thimphu" +msgstr "Thimphou" + +#: wp-admin/includes/continents-cities.php:335 +msgid "Thimbu" +msgstr "Thimphou" + +#: wp-admin/includes/continents-cities.php:334 +msgid "Tel Aviv" +msgstr "Tel Aviv-Jaffa" + +#: wp-admin/includes/continents-cities.php:333 +msgid "Tehran" +msgstr "Téhéran" + +#: wp-admin/includes/continents-cities.php:332 +msgid "Tbilisi" +msgstr "Tbilissi" + +#: wp-admin/includes/continents-cities.php:331 +msgid "Tashkent" +msgstr "Tachkent" + +#: wp-admin/includes/continents-cities.php:330 +msgid "Taipei" +msgstr "Taipei" + +#: wp-admin/includes/continents-cities.php:328 +msgid "Singapore" +msgstr "Singapour" + +#: wp-admin/includes/continents-cities.php:327 +msgid "Shanghai" +msgstr "Shanghai" + +#: wp-admin/includes/continents-cities.php:326 +msgid "Seoul" +msgstr "Séoul" + +#: wp-admin/includes/continents-cities.php:325 +msgid "Samarkand" +msgstr "Samarcande" + +#: wp-admin/includes/continents-cities.php:324 +msgid "Sakhalin" +msgstr "Sakhaline" + +#: wp-admin/includes/continents-cities.php:323 +msgid "Saigon" +msgstr "Hô-Chi-Minh-Ville (Saigon)" + +#: wp-admin/includes/continents-cities.php:322 +msgid "Riyadh" +msgstr "Riyad" + +#: wp-admin/includes/continents-cities.php:321 +msgid "Rangoon" +msgstr "Rangoon" + +#: wp-admin/includes/continents-cities.php:320 +msgid "Qyzylorda" +msgstr "Kyzylorda" + +#: wp-admin/includes/continents-cities.php:318 +msgid "Qatar" +msgstr "Qatar" + +#: wp-admin/includes/continents-cities.php:317 +msgid "Pyongyang" +msgstr "Pyongyang" + +#: wp-admin/includes/continents-cities.php:316 +msgid "Pontianak" +msgstr "Pontianak" + +#: wp-admin/includes/continents-cities.php:315 +msgid "Phnom Penh" +msgstr "Phnom Penh" + +#: wp-admin/includes/continents-cities.php:314 +msgid "Oral" +msgstr "Oural" + +#: wp-admin/includes/continents-cities.php:313 +msgid "Omsk" +msgstr "Omsk" + +#: wp-admin/includes/continents-cities.php:312 +msgid "Novosibirsk" +msgstr "Novossibirsk" + +#: wp-admin/includes/continents-cities.php:310 +msgid "Nicosia" +msgstr "Nicosie" + +#: wp-admin/includes/continents-cities.php:309 +msgid "Muscat" +msgstr "Mascate" + +#: wp-admin/includes/continents-cities.php:308 +msgid "Manila" +msgstr "Manille" + +#: wp-admin/includes/continents-cities.php:307 +msgid "Makassar" +msgstr "Makassar" + +#: wp-admin/includes/continents-cities.php:306 +msgid "Magadan" +msgstr "Magadan" + +#: wp-admin/includes/continents-cities.php:305 +msgid "Macau" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:304 +msgid "Macao" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:303 +msgid "Kuwait" +msgstr "Koweït" + +#: wp-admin/includes/continents-cities.php:302 +msgid "Kuching" +msgstr "Kuching" + +#: wp-admin/includes/continents-cities.php:301 +msgid "Kuala Lumpur" +msgstr "Kuala Lumpur" + +#: wp-admin/includes/continents-cities.php:300 +msgid "Krasnoyarsk" +msgstr "Krasnoïarsk" + +#: wp-admin/includes/continents-cities.php:299 +msgid "Kolkata" +msgstr "Calcutta" + +#: wp-admin/includes/continents-cities.php:297 +msgid "Katmandu" +msgstr "Katmandou" + +#: wp-admin/includes/continents-cities.php:295 +msgid "Kashgar" +msgstr "Kachgar" + +#: wp-admin/includes/continents-cities.php:294 +msgid "Karachi" +msgstr "Karachi" + +#: wp-admin/includes/continents-cities.php:293 +msgid "Kamchatka" +msgstr "Kamtchatka" + +#: wp-admin/includes/continents-cities.php:292 +msgid "Kabul" +msgstr "Kaboul" + +#: wp-admin/includes/continents-cities.php:291 +msgid "Jerusalem" +msgstr "Jérusalem" + +#: wp-admin/includes/continents-cities.php:290 +msgid "Jayapura" +msgstr "Jayapura" + +#: wp-admin/includes/continents-cities.php:289 +msgid "Jakarta" +msgstr "Jakarta" + +#: wp-admin/includes/continents-cities.php:447 +msgid "Istanbul" +msgstr "Istanbul" + +#: wp-admin/includes/continents-cities.php:288 +msgid "Irkutsk" +msgstr "Irkoutsk" + +#: wp-admin/includes/continents-cities.php:287 +msgid "Hovd" +msgstr "Hovd" + +#: wp-admin/includes/continents-cities.php:286 +msgid "Hong Kong" +msgstr "Hong Kong" + +#: wp-admin/includes/continents-cities.php:285 +msgid "Ho Chi Minh" +msgstr "Hô-Chi-Minh-Ville" + +#: wp-admin/includes/continents-cities.php:283 +msgid "Harbin" +msgstr "Harbin" + +#: wp-admin/includes/continents-cities.php:282 +msgid "Gaza" +msgstr "Gaza" + +#: wp-admin/includes/continents-cities.php:280 +msgid "Dushanbe" +msgstr "Douchanbé" + +#: wp-admin/includes/continents-cities.php:279 +msgid "Dubai" +msgstr "Dubaï" + +#: wp-admin/includes/continents-cities.php:278 +msgid "Dili" +msgstr "Dili" + +#: wp-admin/includes/continents-cities.php:277 +msgid "Dhaka" +msgstr "Dhâkâ (Dacca)" + +#: wp-admin/includes/continents-cities.php:276 +msgid "Damascus" +msgstr "Damas" + +#: wp-admin/includes/continents-cities.php:275 +msgid "Dacca" +msgstr "Dhâkâ (Dacca)" + +#: wp-admin/includes/continents-cities.php:274 +msgid "Colombo" +msgstr "Colombo" + +#: wp-admin/includes/continents-cities.php:273 +msgid "Chungking" +msgstr "Chungking" + +#: wp-admin/includes/continents-cities.php:272 +msgid "Chongqing" +msgstr "Chongqing" + +#: wp-admin/includes/continents-cities.php:271 +msgid "Choibalsan" +msgstr "Choybalsan" + +#: wp-admin/includes/continents-cities.php:269 +msgid "Calcutta" +msgstr "Calcutta" + +#: wp-admin/includes/continents-cities.php:268 +msgid "Brunei" +msgstr "Brunei" + +#: wp-admin/includes/continents-cities.php:267 +msgid "Bishkek" +msgstr "Bichkek" + +#: wp-admin/includes/continents-cities.php:266 +msgid "Beirut" +msgstr "Beyrouth" + +#: wp-admin/includes/continents-cities.php:264 +msgid "Bangkok" +msgstr "Bangkok" + +#: wp-admin/includes/continents-cities.php:263 +msgid "Baku" +msgstr "Bakou" + +#: wp-admin/includes/continents-cities.php:262 +msgid "Bahrain" +msgstr "Bahreïn" + +#: wp-admin/includes/continents-cities.php:261 +msgid "Baghdad" +msgstr "Bagdad" + +#: wp-admin/includes/continents-cities.php:259 +msgid "Ashkhabad" +msgstr "Achgabat" + +#: wp-admin/includes/continents-cities.php:258 +msgid "Ashgabat" +msgstr "Achgabat" + +#: wp-admin/includes/continents-cities.php:257 +msgid "Aqtobe" +msgstr "Aktioubé" + +#: wp-admin/includes/continents-cities.php:256 +msgid "Aqtau" +msgstr "Aqtou" + +#: wp-admin/includes/continents-cities.php:255 +msgid "Anadyr" +msgstr "Anadyr" + +#: wp-admin/includes/continents-cities.php:254 +msgid "Amman" +msgstr "Amman" + +#: wp-admin/includes/continents-cities.php:253 +msgid "Almaty" +msgstr "Almaty" + +#: wp-admin/includes/continents-cities.php:252 +msgid "Aden" +msgstr "Aden" + +#: wp-admin/includes/continents-cities.php:251 +msgid "Asia" +msgstr "Asie" + +#: wp-admin/includes/continents-cities.php:249 +msgid "Longyearbyen" +msgstr "Longyearbyen" + +#: wp-admin/includes/continents-cities.php:248 +msgid "Arctic" +msgstr "Arctique" + +#: wp-admin/includes/continents-cities.php:246 +msgid "Vostok" +msgstr "Vostok" + +#: wp-admin/includes/continents-cities.php:244 +msgid "Syowa" +msgstr "Syowa" + +#: wp-admin/includes/continents-cities.php:243 +msgid "South Pole" +msgstr "Pôle Sud" + +#: wp-admin/includes/continents-cities.php:242 +msgid "Rothera" +msgstr "Rothera" + +#: wp-admin/includes/continents-cities.php:241 +msgid "Palmer" +msgstr "Palmer" + +#: wp-admin/includes/continents-cities.php:240 +msgid "McMurdo" +msgstr "McMurdo" + +#: wp-admin/includes/continents-cities.php:239 +msgid "Mawson" +msgstr "Mawson" + +#: wp-admin/includes/continents-cities.php:237 +msgid "DumontDUrville" +msgstr "Dumont d'Urville" + +#: wp-admin/includes/continents-cities.php:236 +msgid "Davis" +msgstr "Davis" + +#: wp-admin/includes/continents-cities.php:235 +msgid "Casey" +msgstr "Casey" + +#: wp-admin/includes/continents-cities.php:234 +msgid "Antarctica" +msgstr "Antartique" + +#: wp-admin/includes/continents-cities.php:232 +msgid "Yellowknife" +msgstr "Yellowknife" + +#: wp-admin/includes/continents-cities.php:231 +msgid "Yakutat" +msgstr "Yakutat" + +#: wp-admin/includes/continents-cities.php:230 +msgid "Winnipeg" +msgstr "Winnipeg" + +#: wp-admin/includes/continents-cities.php:229 +msgid "Whitehorse" +msgstr "Whitehorse" + +#: wp-admin/includes/continents-cities.php:228 +msgid "Virgin" +msgstr "Virgin" + +#: wp-admin/includes/continents-cities.php:227 +msgid "Vancouver" +msgstr "Vancouver" + +#: wp-admin/includes/continents-cities.php:226 +msgid "Tortola" +msgstr "Tortola" + +#: wp-admin/includes/continents-cities.php:225 +msgid "Toronto" +msgstr "Toronto" + +#: wp-admin/includes/continents-cities.php:224 +msgid "Tijuana" +msgstr "Tijuana" + +#: wp-admin/includes/continents-cities.php:223 +msgid "Thunder Bay" +msgstr "Thunder Bay" + +#: wp-admin/includes/continents-cities.php:222 +msgid "Thule" +msgstr "Thule" + +#: wp-admin/includes/continents-cities.php:221 +msgid "Tegucigalpa" +msgstr "Tegucigalpa" + +#: wp-admin/includes/continents-cities.php:220 +msgid "Swift Current" +msgstr "Swift Current" + +#: wp-admin/includes/continents-cities.php:219 +msgid "St Vincent" +msgstr "Saint Vincent" + +#: wp-admin/includes/continents-cities.php:218 +msgid "St Thomas" +msgstr "Saint Thomas" + +#: wp-admin/includes/continents-cities.php:217 +msgid "St Lucia" +msgstr "Sainte-Lucie" + +#: wp-admin/includes/continents-cities.php:216 +msgid "St Kitts" +msgstr "Île Saint-Christophe" + +#: wp-admin/includes/continents-cities.php:215 +msgid "St Johns" +msgstr "Saint John's" + +#: wp-admin/includes/continents-cities.php:214 +msgid "St Barthelemy" +msgstr "Saint-Barthélemy" + +#: wp-admin/includes/continents-cities.php:212 +msgid "Shiprock" +msgstr "Shiprock" + +#: wp-admin/includes/continents-cities.php:211 +msgid "Scoresbysund" +msgstr "Ittoqqortoormiit (Scoresbysund)" + +#: wp-admin/includes/continents-cities.php:210 +msgid "Sao Paulo" +msgstr "São Paulo" + +#: wp-admin/includes/continents-cities.php:209 +msgid "Santo Domingo" +msgstr "Saint-Domingue" + +#: wp-admin/includes/continents-cities.php:208 +msgid "Santiago" +msgstr "Santiago du Chili" + +#: wp-admin/includes/continents-cities.php:205 +msgid "Rosario" +msgstr "Rosario" + +#: wp-admin/includes/continents-cities.php:204 +msgid "Rio Branco" +msgstr "Rio Branco" + +#: wp-admin/includes/continents-cities.php:203 +msgid "Resolute" +msgstr "Resolute" + +#: wp-admin/includes/continents-cities.php:202 +msgid "Regina" +msgstr "Regina" + +#: wp-admin/includes/continents-cities.php:201 +msgid "Recife" +msgstr "Recife" + +#: wp-admin/includes/continents-cities.php:200 +msgid "Rankin Inlet" +msgstr "Kangiqtiniq (Rankin Inlet)" + +#: wp-admin/includes/continents-cities.php:199 +msgid "Rainy River" +msgstr "Rainy River" + +#: wp-admin/includes/continents-cities.php:197 +msgid "Puerto Rico" +msgstr "Porto Rico" + +#: wp-admin/includes/continents-cities.php:196 +msgid "Porto Velho" +msgstr "Porto Velho" + +#: wp-admin/includes/continents-cities.php:195 +msgid "Porto Acre" +msgstr "Porto Acre" + +#: wp-admin/includes/continents-cities.php:194 +msgid "Port of Spain" +msgstr "Port-d'Espagne" + +#: wp-admin/includes/continents-cities.php:193 +msgid "Port-au-Prince" +msgstr "Port-au-Prince" + +#: wp-admin/includes/continents-cities.php:192 +msgid "Phoenix" +msgstr "Phoenix" + +#: wp-admin/includes/continents-cities.php:191 +msgid "Paramaribo" +msgstr "Paramaribo" + +#: wp-admin/includes/continents-cities.php:190 +msgid "Pangnirtung" +msgstr "Pangnirtung" + +#: wp-admin/includes/continents-cities.php:189 +msgid "Panama" +msgstr "Panama" + +#: wp-admin/includes/continents-cities.php:186 +msgid "New Salem" +msgstr "New Salem" + +#: wp-admin/includes/continents-cities.php:185 +msgid "Center" +msgstr "Center" + +#: wp-admin/includes/continents-cities.php:183 +msgid "North Dakota" +msgstr "Dakota du Nord" + +#: wp-admin/includes/continents-cities.php:182 +msgid "Noronha" +msgstr "Noronha" + +#: wp-admin/includes/continents-cities.php:181 +msgid "Nome" +msgstr "Nome" + +#: wp-admin/includes/continents-cities.php:180 +msgid "Nipigon" +msgstr "Nipigon" + +#: wp-admin/includes/continents-cities.php:179 +msgid "New York" +msgstr "New York" + +#: wp-admin/includes/continents-cities.php:178 +msgid "Nassau" +msgstr "Nassau" + +#: wp-admin/includes/continents-cities.php:177 +msgid "Montserrat" +msgstr "Montserrat" + +#: wp-admin/includes/continents-cities.php:176 +msgid "Montreal" +msgstr "Montréal" + +#: wp-admin/includes/continents-cities.php:175 +msgid "Montevideo" +msgstr "Montévidéo" + +#: wp-admin/includes/continents-cities.php:174 +msgid "Monterrey" +msgstr "Monterrey" + +#: wp-admin/includes/continents-cities.php:173 +msgid "Moncton" +msgstr "Moncton" + +#: wp-admin/includes/continents-cities.php:172 +msgid "Miquelon" +msgstr "Miquelon" + +#: wp-admin/includes/continents-cities.php:171 +msgid "Mexico City" +msgstr "Mexico" + +#: wp-admin/includes/continents-cities.php:169 +msgid "Merida" +msgstr "Merida" + +#: wp-admin/includes/continents-cities.php:168 +msgid "Menominee" +msgstr "Menominee" + +#: wp-admin/includes/continents-cities.php:167 +msgid "Mazatlan" +msgstr "Mazatlan" + +#: wp-admin/includes/continents-cities.php:165 +msgid "Martinique" +msgstr "Martinique" + +#: wp-admin/includes/continents-cities.php:164 +msgid "Marigot" +msgstr "Marigot" + +#: wp-admin/includes/continents-cities.php:163 +msgid "Manaus" +msgstr "Manaos" + +#: wp-admin/includes/continents-cities.php:162 +msgid "Managua" +msgstr "Managua" + +#: wp-admin/includes/continents-cities.php:161 +msgid "Maceio" +msgstr "Maceió" + +#: wp-admin/includes/continents-cities.php:159 +msgid "Los Angeles" +msgstr "Los Angeles" + +#: wp-admin/includes/continents-cities.php:158 +msgid "Lima" +msgstr "Lima" + +#: wp-admin/includes/continents-cities.php:157 +msgid "La Paz" +msgstr "La Paz" + +#: wp-admin/includes/continents-cities.php:155 +msgid "Knox IN" +msgstr "Knox (Indiana)" + +#: wp-admin/includes/continents-cities.php:154 +msgid "Monticello" +msgstr "Monticello" + +#: wp-admin/includes/continents-cities.php:153 +msgid "Louisville" +msgstr "Louisville" + +#: wp-admin/includes/continents-cities.php:152 +msgid "Kentucky" +msgstr "Kentucky" + +#: wp-admin/includes/continents-cities.php:151 +msgid "Juneau" +msgstr "Juneau" + +#: wp-admin/includes/continents-cities.php:150 +msgid "Jamaica" +msgstr "Jamaïque" + +#: wp-admin/includes/continents-cities.php:149 +msgid "Iqaluit" +msgstr "Iqaluit" + +#: wp-admin/includes/continents-cities.php:148 +msgid "Inuvik" +msgstr "Inuvik" + +#: wp-admin/includes/continents-cities.php:147 +msgid "Winamac" +msgstr "Winamac" + +#: wp-admin/includes/continents-cities.php:146 +msgid "Vincennes" +msgstr "Vincennes" + +#: wp-admin/includes/continents-cities.php:145 +msgid "Vevay" +msgstr "Vevay" + +#: wp-admin/includes/continents-cities.php:144 +msgid "Tell City" +msgstr "Tell City" + +#: wp-admin/includes/continents-cities.php:143 +msgid "Petersburg" +msgstr "Petersburg" + +#: wp-admin/includes/continents-cities.php:142 +msgid "Marengo" +msgstr "Marengo" + +#: wp-admin/includes/continents-cities.php:141 +msgid "Knox" +msgstr "Knox" + +#: wp-admin/includes/continents-cities.php:140 +msgid "Indianapolis" +msgstr "Indianapolis" + +#: wp-admin/includes/continents-cities.php:139 +msgid "Indiana" +msgstr "Indiana" + +#: wp-admin/includes/continents-cities.php:138 +msgid "Hermosillo" +msgstr "Hermosillo" + +#: wp-admin/includes/continents-cities.php:137 +msgid "Havana" +msgstr "La Havane" + +#: wp-admin/includes/continents-cities.php:136 +msgid "Halifax" +msgstr "Halifax" + +#: wp-admin/includes/continents-cities.php:135 +msgid "Guyana" +msgstr "Guyane" + +#: wp-admin/includes/continents-cities.php:134 +msgid "Guayaquil" +msgstr "Guayaquil" + +#: wp-admin/includes/continents-cities.php:133 +msgid "Guatemala" +msgstr "Guatemala" + +#: wp-admin/includes/continents-cities.php:132 +msgid "Guadeloupe" +msgstr "Guadeloupe" + +#: wp-admin/includes/continents-cities.php:131 +msgid "Grenada" +msgstr "Grenade" + +#: wp-admin/includes/continents-cities.php:130 +msgid "Grand Turk" +msgstr "Grand Turk" + +#: wp-admin/includes/continents-cities.php:129 +msgid "Goose Bay" +msgstr "Goose Bay" + +#: wp-admin/includes/continents-cities.php:128 +msgid "Godthab" +msgstr "Nuuk (Godthåb)" + +#: wp-admin/includes/continents-cities.php:127 +msgid "Glace Bay" +msgstr "Glace Bay" + +#: wp-admin/includes/continents-cities.php:126 +msgid "Fortaleza" +msgstr "Fortaleza" + +#: wp-admin/includes/continents-cities.php:125 +msgid "Fort Wayne" +msgstr "Fort Wayne" + +#: wp-admin/includes/continents-cities.php:123 +msgid "Ensenada" +msgstr "Ensenada" + +#: wp-admin/includes/continents-cities.php:122 +msgid "El Salvador" +msgstr "Salvador" + +#: wp-admin/includes/continents-cities.php:121 +msgid "Eirunepe" +msgstr "Eirunepé" + +#: wp-admin/includes/continents-cities.php:120 +msgid "Edmonton" +msgstr "Edmonton" + +#: wp-admin/includes/continents-cities.php:119 +msgid "Dominica" +msgstr "Dominique" + +#: wp-admin/includes/continents-cities.php:118 +msgid "Detroit" +msgstr "Detroit" + +#: wp-admin/includes/continents-cities.php:117 +msgid "Denver" +msgstr "Denver" + +#: wp-admin/includes/continents-cities.php:116 +msgid "Dawson Creek" +msgstr "Dawson Creek" + +#: wp-admin/includes/continents-cities.php:115 +msgid "Dawson" +msgstr "Dawson" + +#: wp-admin/includes/continents-cities.php:114 +msgid "Danmarkshavn" +msgstr "Danmarkshavn" + +#: wp-admin/includes/continents-cities.php:113 +msgid "Curacao" +msgstr "Curaçao" + +#: wp-admin/includes/continents-cities.php:112 +msgid "Cuiaba" +msgstr "Cuiabá" + +#: wp-admin/includes/continents-cities.php:110 +msgid "Costa Rica" +msgstr "Costa Rica" + +#: wp-admin/includes/continents-cities.php:109 +msgid "Coral Harbour" +msgstr "Coral Harbour" + +#: wp-admin/includes/continents-cities.php:108 +msgid "Chihuahua" +msgstr "Etat de Chihuahua" + +#: wp-admin/includes/continents-cities.php:107 +msgid "Chicago" +msgstr "Chicago" + +#: wp-admin/includes/continents-cities.php:106 +msgid "Cayman" +msgstr "Îles Caïmans" + +#: wp-admin/includes/continents-cities.php:105 +msgid "Cayenne" +msgstr "Cayenne" + +#: wp-admin/includes/continents-cities.php:104 +msgid "Caracas" +msgstr "Caracas" + +#: wp-admin/includes/continents-cities.php:103 +msgid "Cancun" +msgstr "Cancún" + +#: wp-admin/includes/continents-cities.php:102 +msgid "Campo Grande" +msgstr "Campo Grande" + +#: wp-admin/includes/continents-cities.php:101 +msgid "Cambridge Bay" +msgstr "Ikaluktutiak" + +#: wp-admin/includes/continents-cities.php:100 +msgid "Boise" +msgstr "Boise" + +#: wp-admin/includes/continents-cities.php:99 +msgid "Bogota" +msgstr "Bogotá" + +#: wp-admin/includes/continents-cities.php:98 +msgid "Boa Vista" +msgstr "Boa Vista" + +#: wp-admin/includes/continents-cities.php:97 +msgid "Blanc-Sablon" +msgstr "Blanc-Sablon" + +#: wp-admin/includes/continents-cities.php:96 +msgid "Belize" +msgstr "Belize" + +#: wp-admin/includes/continents-cities.php:95 +msgid "Belem" +msgstr "Belém" + +#: wp-admin/includes/continents-cities.php:94 +msgid "Barbados" +msgstr "Barbade" + +#: wp-admin/includes/continents-cities.php:92 +msgid "Bahia" +msgstr "Bahia" + +#: wp-admin/includes/continents-cities.php:91 +msgid "Atka" +msgstr "Atka" + +#: wp-admin/includes/continents-cities.php:90 +msgid "Atikokan" +msgstr "Atikokan" + +#: wp-admin/includes/continents-cities.php:89 +msgid "Asuncion" +msgstr "Asunción" + +#: wp-admin/includes/continents-cities.php:88 +msgid "Aruba" +msgstr "Aruba" + +#: wp-admin/includes/continents-cities.php:87 +msgid "Ushuaia" +msgstr "Ushuaïa" + +#: wp-admin/includes/continents-cities.php:86 +msgid "Tucuman" +msgstr "San Miguel de Tucumán" + +#: wp-admin/includes/continents-cities.php:85 +msgid "San Luis" +msgstr "San Luis" + +#: wp-admin/includes/continents-cities.php:84 +msgid "San Juan" +msgstr "San Juan" + +#: wp-admin/includes/continents-cities.php:82 +msgid "Rio Gallegos" +msgstr "Rio Gallegos" + +#: wp-admin/includes/continents-cities.php:81 +msgid "Mendoza" +msgstr "Mendoza" + +#: wp-admin/includes/continents-cities.php:80 +msgid "La Rioja" +msgstr "La Rioja" + +#: wp-admin/includes/continents-cities.php:79 +msgid "Jujuy" +msgstr "San Salvador de Jujuy" + +#: wp-admin/includes/continents-cities.php:78 +msgid "Cordoba" +msgstr "Córdoba" + +#: wp-admin/includes/continents-cities.php:77 +msgid "ComodRivadavia" +msgstr "Comodoro Rivadavia" + +#: wp-admin/includes/continents-cities.php:76 +msgid "Catamarca" +msgstr "Catamarca" + +#: wp-admin/includes/continents-cities.php:75 +msgid "Buenos Aires" +msgstr "Buenos Aires" + +#: wp-admin/includes/continents-cities.php:74 +msgid "Argentina" +msgstr "Argentine" + +#: wp-admin/includes/continents-cities.php:73 +msgid "Araguaina" +msgstr "Araguaína" + +#: wp-admin/includes/continents-cities.php:72 +msgid "Antigua" +msgstr "Antigua" + +#: wp-admin/includes/continents-cities.php:71 +msgid "Anguilla" +msgstr "Anguilla" + +#: wp-admin/includes/continents-cities.php:70 +msgid "Anchorage" +msgstr "Anchorage" + +#: wp-admin/includes/continents-cities.php:69 +msgid "Adak" +msgstr "Adak" + +#: wp-admin/includes/continents-cities.php:68 +msgid "America" +msgstr "Amériques" + +#: wp-admin/includes/continents-cities.php:66 +msgid "Windhoek" +msgstr "Windhoek" + +#: wp-admin/includes/continents-cities.php:65 +msgid "Tunis" +msgstr "Tunis" + +#: wp-admin/includes/continents-cities.php:64 +msgid "Tripoli" +msgstr "Tripoli" + +#: wp-admin/includes/continents-cities.php:63 +msgid "Timbuktu" +msgstr "Tombouctou" + +#: wp-admin/includes/continents-cities.php:62 +msgid "Sao Tome" +msgstr "São Tomé" + +#: wp-admin/includes/continents-cities.php:61 +msgid "Porto-Novo" +msgstr "Porto-Novo" + +#: wp-admin/includes/continents-cities.php:60 +msgid "Ouagadougou" +msgstr "Ouagadougou" + +#: wp-admin/includes/continents-cities.php:59 +msgid "Nouakchott" +msgstr "Nouakchott" + +#: wp-admin/includes/continents-cities.php:58 +msgid "Niamey" +msgstr "Niamey" + +#: wp-admin/includes/continents-cities.php:57 +msgid "Ndjamena" +msgstr "N'Djamena" + +#: wp-admin/includes/continents-cities.php:56 +msgid "Nairobi" +msgstr "Nairobi" + +#: wp-admin/includes/continents-cities.php:55 +msgid "Monrovia" +msgstr "Monrovia" + +#: wp-admin/includes/continents-cities.php:54 +msgid "Mogadishu" +msgstr "Mogadiscio" + +#: wp-admin/includes/continents-cities.php:53 +msgid "Mbabane" +msgstr "Mbabane" + +#: wp-admin/includes/continents-cities.php:52 +msgid "Maseru" +msgstr "Maseru" + +#: wp-admin/includes/continents-cities.php:51 +msgid "Maputo" +msgstr "Maputo" + +#: wp-admin/includes/continents-cities.php:50 +msgid "Malabo" +msgstr "Malabo" + +#: wp-admin/includes/continents-cities.php:49 +msgid "Lusaka" +msgstr "Lusaka" + +#: wp-admin/includes/continents-cities.php:48 +msgid "Lubumbashi" +msgstr "Lubumbashi" + +#: wp-admin/includes/continents-cities.php:47 +msgid "Luanda" +msgstr "Luanda" + +#: wp-admin/includes/continents-cities.php:46 +msgid "Lome" +msgstr "Lomé" + +#: wp-admin/includes/continents-cities.php:45 +msgid "Libreville" +msgstr "Libreville" + +#: wp-admin/includes/continents-cities.php:44 +msgid "Lagos" +msgstr "Lagos" + +#: wp-admin/includes/continents-cities.php:43 +msgid "Kinshasa" +msgstr "Kinshasa" + +#: wp-admin/includes/continents-cities.php:42 +msgid "Kigali" +msgstr "Kigali" + +#: wp-admin/includes/continents-cities.php:41 +msgid "Khartoum" +msgstr "Khartoum" + +#: wp-admin/includes/continents-cities.php:40 +msgid "Kampala" +msgstr "Kampala" + +#: wp-admin/includes/continents-cities.php:38 +msgid "Johannesburg" +msgstr "Johannesburg" + +#: wp-admin/includes/continents-cities.php:37 +msgid "Harare" +msgstr "Harare" + +#: wp-admin/includes/continents-cities.php:36 +msgid "Gaborone" +msgstr "Gaborone" + +#: wp-admin/includes/continents-cities.php:35 +msgid "Freetown" +msgstr "Freetown" + +#: wp-admin/includes/continents-cities.php:34 +msgid "El Aaiun" +msgstr "Laâyoune" + +#: wp-admin/includes/continents-cities.php:33 +msgid "Douala" +msgstr "Douala" + +#: wp-admin/includes/continents-cities.php:32 +msgid "Djibouti" +msgstr "Djibouti" + +#: wp-admin/includes/continents-cities.php:31 +msgid "Dar es Salaam" +msgstr "Dar es Salaam" + +#: wp-admin/includes/continents-cities.php:30 +msgid "Dakar" +msgstr "Dakar" + +#: wp-admin/includes/continents-cities.php:29 +msgid "Conakry" +msgstr "Conakry" + +#: wp-admin/includes/continents-cities.php:28 +msgid "Ceuta" +msgstr "Ceuta" + +#: wp-admin/includes/continents-cities.php:27 +msgid "Casablanca" +msgstr "Casablanca" + +#: wp-admin/includes/continents-cities.php:26 +msgid "Cairo" +msgstr "Le Caire" + +#: wp-admin/includes/continents-cities.php:25 +msgid "Bujumbura" +msgstr "Bujumbura" + +#: wp-admin/includes/continents-cities.php:24 +msgid "Brazzaville" +msgstr "Brazzaville" + +#: wp-admin/includes/continents-cities.php:23 +msgid "Blantyre" +msgstr "Blantyre" + +#: wp-admin/includes/continents-cities.php:22 +msgid "Bissau" +msgstr "Bissau" + +#: wp-admin/includes/continents-cities.php:21 +msgid "Banjul" +msgstr "Banjul" + +#: wp-admin/includes/continents-cities.php:20 +msgid "Bangui" +msgstr "Bangui" + +#: wp-admin/includes/continents-cities.php:19 +msgid "Bamako" +msgstr "Bamako" + +#: wp-admin/includes/continents-cities.php:18 +msgid "Asmera" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:17 +msgid "Asmara" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:16 +msgid "Algiers" +msgstr "Alger" + +#: wp-admin/includes/continents-cities.php:15 +msgid "Addis Ababa" +msgstr "Addis-Abeba" + +#: wp-admin/includes/continents-cities.php:14 +msgid "Accra" +msgstr "Accra" + +#: wp-admin/includes/continents-cities.php:13 +msgid "Abidjan" +msgstr "Abidjan" + +#: wp-admin/includes/continents-cities.php:12 +msgid "Africa" +msgstr "Afrique" \ No newline at end of file diff --git a/web/app/languages/continents-cities-fr_FR.l10n.php b/web/app/languages/continents-cities-fr_FR.l10n.php new file mode 100644 index 00000000..d4b9c770 --- /dev/null +++ b/web/app/languages/continents-cities-fr_FR.l10n.php @@ -0,0 +1,2 @@ +'GlotPress/4.0.1','translation-revision-date'=>'2024-02-29 08:00:23+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.8.x - Development - Continents & Cities','language'=>'fr','messages'=>['Kanton'=>'Canton','Kyiv'=>'Kyiv','Qostanay'=>'Qostanay','Nuuk'=>'Nuuk','Saratov'=>'Saratov','Yangon'=>'Yangon','Famagusta'=>'Famagouste','Atyrau'=>'Atyrau','Punta Arenas'=>'Punta Arenas','Pohnpei'=>'Pohnpei','Chuuk'=>'Chuuk','Bougainville'=>'Bougainville','Ulyanovsk'=>'Oulianovsk','Kirov'=>'Kirov','Busingen'=>'Büsingen','Astrakhan'=>'Astrakhan','Ust-Nera'=>'Oust-Nera','Tomsk'=>'Tomsk','Srednekolymsk'=>'Srednekolymsk','Novokuznetsk'=>'Novokouznetsk','Khandyga'=>'Khandyga','Kathmandu'=>'Katmandou','Hebron'=>'Hébron','Chita'=>'Tchita','Barnaul'=>'Barnaoul','Troll'=>'Troll','Macquarie'=>'Macquarie','Sitka'=>'Sitka','Santarem'=>'Santarém','Santa Isabel'=>'Santa Isabel','Ojinaga'=>'Ojinaga','Beulah'=>'Beulah','Metlakatla'=>'Metlakatla','Matamoros'=>'Matamoros','Lower Princes'=>'Lower Princes','Kralendijk'=>'Kralendijk','Fort Nelson'=>'Fort Nelson','Creston'=>'Creston','Bahia Banderas'=>'Bahía de Banderas','Salta'=>'Salta','Juba'=>'Djouba','Yap'=>'Yap','Wallis'=>'Wallis-et-Futuna','Wake'=>'Île Wake','Truk'=>'Chuuk (Truk)','Tongatapu'=>'Tongatapu','Tarawa'=>'Tarawa','Tahiti'=>'Tahiti','Samoa'=>'Samoa','Saipan'=>'Saipan','Rarotonga'=>'Rarotonga','Port Moresby'=>'Port Moresby','Ponape'=>'Pohnpei (Ponape)','Pitcairn'=>'Îles Pitcairn','Palau'=>'Palaos','Pago Pago'=>'Pago Pago','Noumea'=>'Nouméa','Norfolk'=>'Norfolk','Niue'=>'Niué','Nauru'=>'Nauru','Midway'=>'Atoll de Midway','Marquesas'=>'Îles Marquises','Majuro'=>'Majuro','Kwajalein'=>'Kwajalein','Kosrae'=>'Kosrae','Kiritimati'=>'Île Christmas (Kiribati)','Johnston'=>'Atoll de Johnston','Honolulu'=>'Honolulu','Guam'=>'Guam','Guadalcanal'=>'Guadalcanal','Gambier'=>'Îles Gambier','Galapagos'=>'Îles Galápagos','Funafuti'=>'Funafuti','Fiji'=>'Fidji','Fakaofo'=>'Fakaofo','Enderbury'=>'Enderbury','Efate'=>'Éfaté','Easter'=>'Île de Pâques','Chatham'=>'Îles Chatham','Auckland'=>'Auckland','Apia'=>'Apia','Pacific'=>'Océan Pacifique','Reunion'=>'Île de la Réunion','Mayotte'=>'Mayotte','Mauritius'=>'Île Maurice','Maldives'=>'Maldives','Mahe'=>'Mahé','Kerguelen'=>'Îles Kerguelen','Comoro'=>'Archipel des Comores','Cocos'=>'Îles Cocos','Christmas'=>'Île Christmas','Chagos'=>'Archipel des Chagos','Antananarivo'=>'Antananarivo','Indian'=>'Océan Indien','Zurich'=>'Zurich','Zaporozhye'=>'Zaporojie','Zagreb'=>'Zagreb','Warsaw'=>'Varsovie','Volgograd'=>'Volgograd','Vilnius'=>'Vilnius','Vienna'=>'Vienne','Vatican'=>'Vatican','Vaduz'=>'Vaduz','Uzhgorod'=>'Oujhorod (Uzhgorod)','Tiraspol'=>'Tiraspol','Tirane'=>'Tirana','Tallinn'=>'Tallinn','Stockholm'=>'Stockholm','Sofia'=>'Sofia','Skopje'=>'Skopje','Simferopol'=>'Simferopol','Sarajevo'=>'Sarajevo','San Marino'=>'Saint-Marin','Samara'=>'Samara','Rome'=>'Rome','Riga'=>'Riga','Prague'=>'Prague','Podgorica'=>'Podgorica','Paris'=>'Paris','Oslo'=>'Oslo','Moscow'=>'Moscou','Monaco'=>'Monaco','Minsk'=>'Minsk','Mariehamn'=>'Mariehamn','Malta'=>'Malte','Madrid'=>'Madrid','Luxembourg'=>'Luxembourg','London'=>'Londres','Ljubljana'=>'Ljubljana','Lisbon'=>'Lisbonne','Kiev'=>'Kiev','Kaliningrad'=>'Kaliningrad','Jersey'=>'Jersey','Isle of Man'=>'Île de Man','Helsinki'=>'Helsinki','Guernsey'=>'Guernesey','Gibraltar'=>'Gibraltar','Dublin'=>'Dublin','Copenhagen'=>'Copenhague','Chisinau'=>'Chişinău (Kichinev)','Budapest'=>'Budapest','Bucharest'=>'Bucarest','Brussels'=>'Bruxelles','Bratislava'=>'Bratislava','Berlin'=>'Berlin','Belgrade'=>'Belgrade','Belfast'=>'Belfast','Athens'=>'Athènes','Andorra'=>'Andorre','Amsterdam'=>'Amsterdam','Europe'=>'Europe','Zulu'=>'Zulu','UTC'=>'UTC','Universal'=>'Universel','UCT'=>'UTC','Greenwich'=>'Greenwich','GMT0'=>'UTC0','GMT-9'=>'UTC-9','GMT-8'=>'UTC-8','GMT-7'=>'UTC-7','GMT-6'=>'UTC-6','GMT-5'=>'UTC-5','GMT-4'=>'UTC-4','GMT-3'=>'UTC-3','GMT-2'=>'UTC-2','GMT-14'=>'UTC-14','GMT-13'=>'UTC-13','GMT-12'=>'UTC-12','GMT-11'=>'UTC-11','GMT-10'=>'UTC-10','GMT-1'=>'UTC-1','GMT-0'=>'UTC-0','GMT+9'=>'UTC+9','GMT+8'=>'UTC+8','GMT+7'=>'UTC+7','GMT+6'=>'UTC+6','GMT+5'=>'UTC+5','GMT+4'=>'UTC+4','GMT+3'=>'UTC+3','GMT+2'=>'UTC+2','GMT+12'=>'UTC+12','GMT+11'=>'UTC+11','GMT+10'=>'UTC+10','GMT+1'=>'UTC+1','GMT+0'=>'UTC+0','GMT'=>'UTC','Etc'=>'Etc.','Yancowinna'=>'Yancowinna','West'=>'Ouest','Victoria'=>'Victoria','Tasmania'=>'Tasmanie','Sydney'=>'Sydney','South'=>'Sud','Queensland'=>'Queensland','Perth'=>'Perth','NSW'=>'Nouvelle-Galles du Sud (NSW)','North'=>'Nord','Melbourne'=>'Melbourne','Lord Howe'=>'Île Lord Howe (LHI)','Lindeman'=>'Lindeman','LHI'=>'Île Lord Howe (LHI)','Hobart'=>'Hobart','Eucla'=>'Eucla','Darwin'=>'Darwin','Currie'=>'Currie','Canberra'=>'Canberra','Broken Hill'=>'Broken Hill','Brisbane'=>'Brisbane','Adelaide'=>'Adélaïde','ACT'=>'Territoire de la capitale australienne (ACT)','Australia'=>'Australie','Stanley'=>'Stanley','St Helena'=>'Sainte-Hélène','South Georgia'=>'Île de Géorgie du Sud','Reykjavik'=>'Reykjavík','Madeira'=>'Madère','Jan Mayen'=>'Île Jan Mayen','Faroe'=>'Îles Féroé','Faeroe'=>'Îles Féroé','Cape Verde'=>'Cap-Vert','Canary'=>'Îles Canaries','Bermuda'=>'Bermudes','Azores'=>'Açores','Atlantic'=>'Atlantique','Yerevan'=>'Yerevan (Erevan)','Yekaterinburg'=>'Iekaterinbourg','Yakutsk'=>'Iakoutsk','Vladivostok'=>'Vladivostok','Vientiane'=>'Vientiane','Urumqi'=>'Ürümqi','Ulan Bator'=>'Oulan-Bator (Ulaanbaatar)','Ulaanbaatar'=>'Oulan-Bator (Ulaanbaatar)','Ujung Pandang'=>'Makassar (Ujung Pandang)','Tokyo'=>'Tōkyō','Thimphu'=>'Thimphou','Thimbu'=>'Thimphou','Tel Aviv'=>'Tel Aviv-Jaffa','Tehran'=>'Téhéran','Tbilisi'=>'Tbilissi','Tashkent'=>'Tachkent','Taipei'=>'Taipei','Singapore'=>'Singapour','Shanghai'=>'Shanghai','Seoul'=>'Séoul','Samarkand'=>'Samarcande','Sakhalin'=>'Sakhaline','Saigon'=>'Hô-Chi-Minh-Ville (Saigon)','Riyadh'=>'Riyad','Rangoon'=>'Rangoon','Qyzylorda'=>'Kyzylorda','Qatar'=>'Qatar','Pyongyang'=>'Pyongyang','Pontianak'=>'Pontianak','Phnom Penh'=>'Phnom Penh','Oral'=>'Oural','Omsk'=>'Omsk','Novosibirsk'=>'Novossibirsk','Nicosia'=>'Nicosie','Muscat'=>'Mascate','Manila'=>'Manille','Makassar'=>'Makassar','Magadan'=>'Magadan','Macau'=>'Macao','Macao'=>'Macao','Kuwait'=>'Koweït','Kuching'=>'Kuching','Kuala Lumpur'=>'Kuala Lumpur','Krasnoyarsk'=>'Krasnoïarsk','Kolkata'=>'Calcutta','Katmandu'=>'Katmandou','Kashgar'=>'Kachgar','Karachi'=>'Karachi','Kamchatka'=>'Kamtchatka','Kabul'=>'Kaboul','Jerusalem'=>'Jérusalem','Jayapura'=>'Jayapura','Jakarta'=>'Jakarta','Istanbul'=>'Istanbul','Irkutsk'=>'Irkoutsk','Hovd'=>'Hovd','Hong Kong'=>'Hong Kong','Ho Chi Minh'=>'Hô-Chi-Minh-Ville','Harbin'=>'Harbin','Gaza'=>'Gaza','Dushanbe'=>'Douchanbé','Dubai'=>'Dubaï','Dili'=>'Dili','Dhaka'=>'Dhâkâ (Dacca)','Damascus'=>'Damas','Dacca'=>'Dhâkâ (Dacca)','Colombo'=>'Colombo','Chungking'=>'Chungking','Chongqing'=>'Chongqing','Choibalsan'=>'Choybalsan','Calcutta'=>'Calcutta','Brunei'=>'Brunei','Bishkek'=>'Bichkek','Beirut'=>'Beyrouth','Bangkok'=>'Bangkok','Baku'=>'Bakou','Bahrain'=>'Bahreïn','Baghdad'=>'Bagdad','Ashkhabad'=>'Achgabat','Ashgabat'=>'Achgabat','Aqtobe'=>'Aktioubé','Aqtau'=>'Aqtou','Anadyr'=>'Anadyr','Amman'=>'Amman','Almaty'=>'Almaty','Aden'=>'Aden','Asia'=>'Asie','Longyearbyen'=>'Longyearbyen','Arctic'=>'Arctique','Vostok'=>'Vostok','Syowa'=>'Syowa','South Pole'=>'Pôle Sud','Rothera'=>'Rothera','Palmer'=>'Palmer','McMurdo'=>'McMurdo','Mawson'=>'Mawson','DumontDUrville'=>'Dumont d’Urville','Davis'=>'Davis','Casey'=>'Casey','Antarctica'=>'Antartique','Yellowknife'=>'Yellowknife','Yakutat'=>'Yakutat','Winnipeg'=>'Winnipeg','Whitehorse'=>'Whitehorse','Virgin'=>'Virgin','Vancouver'=>'Vancouver','Tortola'=>'Tortola','Toronto'=>'Toronto','Tijuana'=>'Tijuana','Thunder Bay'=>'Thunder Bay','Thule'=>'Thule','Tegucigalpa'=>'Tegucigalpa','Swift Current'=>'Swift Current','St Vincent'=>'Saint Vincent','St Thomas'=>'Saint Thomas','St Lucia'=>'Sainte-Lucie','St Kitts'=>'Île Saint-Christophe','St Johns'=>'Saint John’s','St Barthelemy'=>'Saint-Barthélemy','Shiprock'=>'Shiprock','Scoresbysund'=>'Ittoqqortoormiit (Scoresbysund)','Sao Paulo'=>'Sao Paulo','Santo Domingo'=>'Saint-Domingue','Santiago'=>'Santiago du Chili','Rosario'=>'Rosario','Rio Branco'=>'Rio Branco','Resolute'=>'Resolute','Regina'=>'Regina','Recife'=>'Recife','Rankin Inlet'=>'Kangiqtiniq (Rankin Inlet)','Rainy River'=>'Rainy River','Puerto Rico'=>'Porto Rico','Porto Velho'=>'Porto Velho','Porto Acre'=>'Porto Acre','Port of Spain'=>'Port-d’Espagne','Port-au-Prince'=>'Port-au-Prince','Phoenix'=>'Phoenix','Paramaribo'=>'Paramaribo','Pangnirtung'=>'Pangnirtung','Panama'=>'Panama','New Salem'=>'New Salem','Center'=>'Center','North Dakota'=>'Dakota du Nord','Noronha'=>'Noronha','Nome'=>'Nome','Nipigon'=>'Nipigon','New York'=>'New York','Nassau'=>'Nassau','Montserrat'=>'Montserrat','Montreal'=>'Montréal','Montevideo'=>'Montévidéo','Monterrey'=>'Monterrey','Moncton'=>'Moncton','Miquelon'=>'Miquelon','Mexico City'=>'Mexico','Merida'=>'Merida','Menominee'=>'Menominee','Mazatlan'=>'Mazatlan','Martinique'=>'Martinique','Marigot'=>'Marigot','Manaus'=>'Manaos','Managua'=>'Managua','Maceio'=>'Maceió','Los Angeles'=>'Los Angeles','Lima'=>'Lima','La Paz'=>'La Paz','Knox IN'=>'Knox (Indiana)','Monticello'=>'Monticello','Louisville'=>'Louisville','Kentucky'=>'Kentucky','Juneau'=>'Juneau','Jamaica'=>'Jamaïque','Iqaluit'=>'Iqaluit','Inuvik'=>'Inuvik','Winamac'=>'Winamac','Vincennes'=>'Vincennes','Vevay'=>'Vevay','Tell City'=>'Tell City','Petersburg'=>'Petersburg','Marengo'=>'Marengo','Knox'=>'Knox','Indianapolis'=>'Indianapolis','Indiana'=>'Indiana','Hermosillo'=>'Hermosillo','Havana'=>'La Havane','Halifax'=>'Halifax','Guyana'=>'Guyana','Guayaquil'=>'Guayaquil','Guatemala'=>'Guatemala','Guadeloupe'=>'Guadeloupe','Grenada'=>'Grenade','Grand Turk'=>'Grand Turk','Goose Bay'=>'Goose Bay','Godthab'=>'Nuuk (Godthåb)','Glace Bay'=>'Glace Bay','Fortaleza'=>'Fortaleza','Fort Wayne'=>'Fort Wayne','Ensenada'=>'Ensenada','El Salvador'=>'Salvador','Eirunepe'=>'Eirunepé','Edmonton'=>'Edmonton','Dominica'=>'Dominique','Detroit'=>'Detroit','Denver'=>'Denver','Dawson Creek'=>'Dawson Creek','Dawson'=>'Dawson','Danmarkshavn'=>'Danmarkshavn','Curacao'=>'Curaçao','Cuiaba'=>'Cuiabá','Costa Rica'=>'Costa Rica','Coral Harbour'=>'Coral Harbour','Chihuahua'=>'Etat de Chihuahua','Chicago'=>'Chicago','Cayman'=>'Îles Caïmans','Cayenne'=>'Cayenne','Caracas'=>'Caracas','Cancun'=>'Cancún','Campo Grande'=>'Campo Grande','Cambridge Bay'=>'Ikaluktutiak','Boise'=>'Boise','Bogota'=>'Bogotá','Boa Vista'=>'Boa Vista','Blanc-Sablon'=>'Blanc-Sablon','Belize'=>'Belize','Belem'=>'Belém','Barbados'=>'Barbade','Bahia'=>'Bahia','Atka'=>'Atka','Atikokan'=>'Atikokan','Asuncion'=>'Asunción','Aruba'=>'Aruba','Ushuaia'=>'Ushuaïa','Tucuman'=>'San Miguel de Tucumán','San Luis'=>'San Luis','San Juan'=>'San Juan','Rio Gallegos'=>'Rio Gallegos','Mendoza'=>'Mendoza','La Rioja'=>'La Rioja','Jujuy'=>'San Salvador de Jujuy','Cordoba'=>'Cordoba','ComodRivadavia'=>'Comodoro Rivadavia','Catamarca'=>'Catamarca','Buenos Aires'=>'Buenos Aires','Argentina'=>'Argentine','Araguaina'=>'Araguaína','Antigua'=>'Antigua','Anguilla'=>'Anguilla','Anchorage'=>'Anchorage','Adak'=>'Adak','America'=>'Amériques','Windhoek'=>'Windhoek','Tunis'=>'Tunis','Tripoli'=>'Tripoli','Timbuktu'=>'Tombouctou','Sao Tome'=>'Sao Tomé','Porto-Novo'=>'Porto-Novo','Ouagadougou'=>'Ouagadougou','Nouakchott'=>'Nouakchott','Niamey'=>'Niamey','Ndjamena'=>'N’Djamena','Nairobi'=>'Nairobi','Monrovia'=>'Monrovia','Mogadishu'=>'Mogadiscio','Mbabane'=>'Mbabane','Maseru'=>'Maseru','Maputo'=>'Maputo','Malabo'=>'Malabo','Lusaka'=>'Lusaka','Lubumbashi'=>'Lubumbashi','Luanda'=>'Luanda','Lome'=>'Lomé','Libreville'=>'Libreville','Lagos'=>'Lagos','Kinshasa'=>'Kinshasa','Kigali'=>'Kigali','Khartoum'=>'Khartoum','Kampala'=>'Kampala','Johannesburg'=>'Johannesburg','Harare'=>'Harare','Gaborone'=>'Gaborone','Freetown'=>'Freetown','El Aaiun'=>'Laâyoune','Douala'=>'Douala','Djibouti'=>'Djibouti','Dar es Salaam'=>'Dar es Salaam','Dakar'=>'Dakar','Conakry'=>'Conakry','Ceuta'=>'Ceuta','Casablanca'=>'Casablanca','Cairo'=>'Le Caire','Bujumbura'=>'Bujumbura','Brazzaville'=>'Brazzaville','Blantyre'=>'Blantyre','Bissau'=>'Bissau','Banjul'=>'Banjul','Bangui'=>'Bangui','Bamako'=>'Bamako','Asmera'=>'Asmara','Asmara'=>'Asmara','Algiers'=>'Alger','Addis Ababa'=>'Addis-Abeba','Accra'=>'Accra','Abidjan'=>'Abidjan','Africa'=>'Afrique']]; \ No newline at end of file diff --git a/web/app/languages/continents-cities-fr_FR.mo b/web/app/languages/continents-cities-fr_FR.mo new file mode 100644 index 00000000..c8d76137 Binary files /dev/null and b/web/app/languages/continents-cities-fr_FR.mo differ diff --git a/web/app/languages/continents-cities-fr_FR.po b/web/app/languages/continents-cities-fr_FR.po new file mode 100644 index 00000000..28f7ebd5 --- /dev/null +++ b/web/app/languages/continents-cities-fr_FR.po @@ -0,0 +1,2124 @@ +# Translation of WordPress - 6.8.x - Development - Continents & Cities in French (France) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Continents & Cities package. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-29 08:00:23+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/4.0.1\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Continents & Cities\n" + +#: wp-admin/includes/continents-cities.php:523 +msgid "Kanton" +msgstr "Canton" + +#: wp-admin/includes/continents-cities.php:451 +msgid "Kyiv" +msgstr "Kyiv" + +#: wp-admin/includes/continents-cities.php:319 +msgid "Qostanay" +msgstr "Qostanay" + +#: wp-admin/includes/continents-cities.php:187 +msgid "Nuuk" +msgstr "Nuuk" + +#: wp-admin/includes/continents-cities.php:472 +msgid "Saratov" +msgstr "Saratov" + +#: wp-admin/includes/continents-cities.php:347 +msgid "Yangon" +msgstr "Yangon" + +#: wp-admin/includes/continents-cities.php:281 +msgid "Famagusta" +msgstr "Famagouste" + +#: wp-admin/includes/continents-cities.php:260 +msgid "Atyrau" +msgstr "Atyrau" + +#: wp-admin/includes/continents-cities.php:198 +msgid "Punta Arenas" +msgstr "Punta Arenas" + +#: wp-admin/includes/continents-cities.php:537 +msgid "Pohnpei" +msgstr "Pohnpei" + +#: wp-admin/includes/continents-cities.php:510 +msgid "Chuuk" +msgstr "Chuuk" + +#: wp-admin/includes/continents-cities.php:508 +msgid "Bougainville" +msgstr "Bougainville" + +#: wp-admin/includes/continents-cities.php:480 +msgid "Ulyanovsk" +msgstr "Oulianovsk" + +#: wp-admin/includes/continents-cities.php:452 +msgid "Kirov" +msgstr "Kirov" + +#: wp-admin/includes/continents-cities.php:439 +msgid "Busingen" +msgstr "Büsingen" + +#: wp-admin/includes/continents-cities.php:430 +msgid "Astrakhan" +msgstr "Astrakhan" + +#: wp-admin/includes/continents-cities.php:343 +msgid "Ust-Nera" +msgstr "Oust-Nera" + +#: wp-admin/includes/continents-cities.php:338 +msgid "Tomsk" +msgstr "Tomsk" + +#: wp-admin/includes/continents-cities.php:329 +msgid "Srednekolymsk" +msgstr "Srednekolymsk" + +#: wp-admin/includes/continents-cities.php:311 +msgid "Novokuznetsk" +msgstr "Novokouznetsk" + +#: wp-admin/includes/continents-cities.php:298 +msgid "Khandyga" +msgstr "Khandyga" + +#: wp-admin/includes/continents-cities.php:296 +msgid "Kathmandu" +msgstr "Katmandou" + +#: wp-admin/includes/continents-cities.php:284 +msgid "Hebron" +msgstr "Hébron" + +#: wp-admin/includes/continents-cities.php:270 +msgid "Chita" +msgstr "Tchita" + +#: wp-admin/includes/continents-cities.php:265 +msgid "Barnaul" +msgstr "Barnaoul" + +#: wp-admin/includes/continents-cities.php:245 +msgid "Troll" +msgstr "Troll" + +#: wp-admin/includes/continents-cities.php:238 +msgid "Macquarie" +msgstr "Macquarie" + +#: wp-admin/includes/continents-cities.php:213 +msgid "Sitka" +msgstr "Sitka" + +#: wp-admin/includes/continents-cities.php:207 +msgid "Santarem" +msgstr "Santarém" + +#: wp-admin/includes/continents-cities.php:206 +msgid "Santa Isabel" +msgstr "Santa Isabel" + +#: wp-admin/includes/continents-cities.php:188 +msgid "Ojinaga" +msgstr "Ojinaga" + +#: wp-admin/includes/continents-cities.php:184 +msgid "Beulah" +msgstr "Beulah" + +#: wp-admin/includes/continents-cities.php:170 +msgid "Metlakatla" +msgstr "Metlakatla" + +#: wp-admin/includes/continents-cities.php:166 +msgid "Matamoros" +msgstr "Matamoros" + +#: wp-admin/includes/continents-cities.php:160 +msgid "Lower Princes" +msgstr "Lower Princes" + +#: wp-admin/includes/continents-cities.php:156 +msgid "Kralendijk" +msgstr "Kralendijk" + +#: wp-admin/includes/continents-cities.php:124 +msgid "Fort Nelson" +msgstr "Fort Nelson" + +#: wp-admin/includes/continents-cities.php:111 +msgid "Creston" +msgstr "Creston" + +#: wp-admin/includes/continents-cities.php:93 +msgid "Bahia Banderas" +msgstr "Bahía de Banderas" + +#: wp-admin/includes/continents-cities.php:83 +msgid "Salta" +msgstr "Salta" + +#: wp-admin/includes/continents-cities.php:39 +msgid "Juba" +msgstr "Djouba" + +#: wp-admin/includes/continents-cities.php:549 +msgid "Yap" +msgstr "Yap" + +#: wp-admin/includes/continents-cities.php:548 +msgid "Wallis" +msgstr "Wallis-et-Futuna" + +#: wp-admin/includes/continents-cities.php:547 +msgid "Wake" +msgstr "Île Wake" + +#: wp-admin/includes/continents-cities.php:546 +msgid "Truk" +msgstr "Chuuk (Truk)" + +#: wp-admin/includes/continents-cities.php:545 +msgid "Tongatapu" +msgstr "Tongatapu" + +#: wp-admin/includes/continents-cities.php:544 +msgid "Tarawa" +msgstr "Tarawa" + +#: wp-admin/includes/continents-cities.php:543 +msgid "Tahiti" +msgstr "Tahiti" + +#: wp-admin/includes/continents-cities.php:542 +msgid "Samoa" +msgstr "Samoa" + +#: wp-admin/includes/continents-cities.php:541 +msgid "Saipan" +msgstr "Saipan" + +#: wp-admin/includes/continents-cities.php:540 +msgid "Rarotonga" +msgstr "Rarotonga" + +#: wp-admin/includes/continents-cities.php:539 +msgid "Port Moresby" +msgstr "Port Moresby" + +#: wp-admin/includes/continents-cities.php:538 +msgid "Ponape" +msgstr "Pohnpei (Ponape)" + +#: wp-admin/includes/continents-cities.php:536 +msgid "Pitcairn" +msgstr "Îles Pitcairn" + +#: wp-admin/includes/continents-cities.php:535 +msgid "Palau" +msgstr "Palaos" + +#: wp-admin/includes/continents-cities.php:534 +msgid "Pago Pago" +msgstr "Pago Pago" + +#: wp-admin/includes/continents-cities.php:533 +msgid "Noumea" +msgstr "Nouméa" + +#: wp-admin/includes/continents-cities.php:532 +msgid "Norfolk" +msgstr "Norfolk" + +#: wp-admin/includes/continents-cities.php:531 +msgid "Niue" +msgstr "Niué" + +#: wp-admin/includes/continents-cities.php:530 +msgid "Nauru" +msgstr "Nauru" + +#: wp-admin/includes/continents-cities.php:529 +msgid "Midway" +msgstr "Atoll de Midway" + +#: wp-admin/includes/continents-cities.php:528 +msgid "Marquesas" +msgstr "Îles Marquises" + +#: wp-admin/includes/continents-cities.php:527 +msgid "Majuro" +msgstr "Majuro" + +#: wp-admin/includes/continents-cities.php:526 +msgid "Kwajalein" +msgstr "Kwajalein" + +#: wp-admin/includes/continents-cities.php:525 +msgid "Kosrae" +msgstr "Kosrae" + +#: wp-admin/includes/continents-cities.php:524 +msgid "Kiritimati" +msgstr "Île Christmas (Kiribati)" + +#: wp-admin/includes/continents-cities.php:522 +msgid "Johnston" +msgstr "Atoll de Johnston" + +#: wp-admin/includes/continents-cities.php:521 +msgid "Honolulu" +msgstr "Honolulu" + +#: wp-admin/includes/continents-cities.php:520 +msgid "Guam" +msgstr "Guam" + +#: wp-admin/includes/continents-cities.php:519 +msgid "Guadalcanal" +msgstr "Guadalcanal" + +#: wp-admin/includes/continents-cities.php:518 +msgid "Gambier" +msgstr "Îles Gambier" + +#: wp-admin/includes/continents-cities.php:517 +msgid "Galapagos" +msgstr "Îles Galápagos" + +#: wp-admin/includes/continents-cities.php:516 +msgid "Funafuti" +msgstr "Funafuti" + +#: wp-admin/includes/continents-cities.php:515 +msgid "Fiji" +msgstr "Fidji" + +#: wp-admin/includes/continents-cities.php:514 +msgid "Fakaofo" +msgstr "Fakaofo" + +#: wp-admin/includes/continents-cities.php:513 +msgid "Enderbury" +msgstr "Enderbury" + +#: wp-admin/includes/continents-cities.php:512 +msgid "Efate" +msgstr "Éfaté" + +#: wp-admin/includes/continents-cities.php:511 +msgid "Easter" +msgstr "Île de Pâques" + +#: wp-admin/includes/continents-cities.php:509 +msgid "Chatham" +msgstr "Îles Chatham" + +#: wp-admin/includes/continents-cities.php:507 +msgid "Auckland" +msgstr "Auckland" + +#: wp-admin/includes/continents-cities.php:506 +msgid "Apia" +msgstr "Apia" + +#: wp-admin/includes/continents-cities.php:505 +msgid "Pacific" +msgstr "Océan Pacifique" + +#: wp-admin/includes/continents-cities.php:503 +msgid "Reunion" +msgstr "Île de la Réunion" + +#: wp-admin/includes/continents-cities.php:502 +msgid "Mayotte" +msgstr "Mayotte" + +#: wp-admin/includes/continents-cities.php:501 +msgid "Mauritius" +msgstr "Île Maurice" + +#: wp-admin/includes/continents-cities.php:500 +msgid "Maldives" +msgstr "Maldives" + +#: wp-admin/includes/continents-cities.php:499 +msgid "Mahe" +msgstr "Mahé" + +#: wp-admin/includes/continents-cities.php:498 +msgid "Kerguelen" +msgstr "Îles Kerguelen" + +#: wp-admin/includes/continents-cities.php:497 +msgid "Comoro" +msgstr "Archipel des Comores" + +#: wp-admin/includes/continents-cities.php:496 +msgid "Cocos" +msgstr "Îles Cocos" + +#: wp-admin/includes/continents-cities.php:495 +msgid "Christmas" +msgstr "Île Christmas" + +#: wp-admin/includes/continents-cities.php:494 +msgid "Chagos" +msgstr "Archipel des Chagos" + +#: wp-admin/includes/continents-cities.php:493 +msgid "Antananarivo" +msgstr "Antananarivo" + +#: wp-admin/includes/continents-cities.php:492 +msgid "Indian" +msgstr "Océan Indien" + +#: wp-admin/includes/continents-cities.php:490 +msgid "Zurich" +msgstr "Zurich" + +#: wp-admin/includes/continents-cities.php:489 +msgid "Zaporozhye" +msgstr "Zaporojie" + +#: wp-admin/includes/continents-cities.php:488 +msgid "Zagreb" +msgstr "Zagreb" + +#: wp-admin/includes/continents-cities.php:487 +msgid "Warsaw" +msgstr "Varsovie" + +#: wp-admin/includes/continents-cities.php:486 +msgid "Volgograd" +msgstr "Volgograd" + +#: wp-admin/includes/continents-cities.php:485 +msgid "Vilnius" +msgstr "Vilnius" + +#: wp-admin/includes/continents-cities.php:484 +msgid "Vienna" +msgstr "Vienne" + +#: wp-admin/includes/continents-cities.php:483 +msgid "Vatican" +msgstr "Vatican" + +#: wp-admin/includes/continents-cities.php:482 +msgid "Vaduz" +msgstr "Vaduz" + +#: wp-admin/includes/continents-cities.php:481 +msgid "Uzhgorod" +msgstr "Oujhorod (Uzhgorod)" + +#: wp-admin/includes/continents-cities.php:479 +msgid "Tiraspol" +msgstr "Tiraspol" + +#: wp-admin/includes/continents-cities.php:478 +msgid "Tirane" +msgstr "Tirana" + +#: wp-admin/includes/continents-cities.php:477 +msgid "Tallinn" +msgstr "Tallinn" + +#: wp-admin/includes/continents-cities.php:476 +msgid "Stockholm" +msgstr "Stockholm" + +#: wp-admin/includes/continents-cities.php:475 +msgid "Sofia" +msgstr "Sofia" + +#: wp-admin/includes/continents-cities.php:474 +msgid "Skopje" +msgstr "Skopje" + +#: wp-admin/includes/continents-cities.php:473 +msgid "Simferopol" +msgstr "Simferopol" + +#: wp-admin/includes/continents-cities.php:471 +msgid "Sarajevo" +msgstr "Sarajevo" + +#: wp-admin/includes/continents-cities.php:470 +msgid "San Marino" +msgstr "Saint-Marin" + +#: wp-admin/includes/continents-cities.php:469 +msgid "Samara" +msgstr "Samara" + +#: wp-admin/includes/continents-cities.php:468 +msgid "Rome" +msgstr "Rome" + +#: wp-admin/includes/continents-cities.php:467 +msgid "Riga" +msgstr "Riga" + +#: wp-admin/includes/continents-cities.php:466 +msgid "Prague" +msgstr "Prague" + +#: wp-admin/includes/continents-cities.php:465 +msgid "Podgorica" +msgstr "Podgorica" + +#: wp-admin/includes/continents-cities.php:464 +msgid "Paris" +msgstr "Paris" + +#: wp-admin/includes/continents-cities.php:463 +msgid "Oslo" +msgstr "Oslo" + +#: wp-admin/includes/continents-cities.php:462 +msgid "Moscow" +msgstr "Moscou" + +#: wp-admin/includes/continents-cities.php:461 +msgid "Monaco" +msgstr "Monaco" + +#: wp-admin/includes/continents-cities.php:460 +msgid "Minsk" +msgstr "Minsk" + +#: wp-admin/includes/continents-cities.php:459 +msgid "Mariehamn" +msgstr "Mariehamn" + +#: wp-admin/includes/continents-cities.php:458 +msgid "Malta" +msgstr "Malte" + +#: wp-admin/includes/continents-cities.php:457 +msgid "Madrid" +msgstr "Madrid" + +#: wp-admin/includes/continents-cities.php:456 +msgid "Luxembourg" +msgstr "Luxembourg" + +#: wp-admin/includes/continents-cities.php:455 +msgid "London" +msgstr "Londres" + +#: wp-admin/includes/continents-cities.php:454 +msgid "Ljubljana" +msgstr "Ljubljana" + +#: wp-admin/includes/continents-cities.php:453 +msgid "Lisbon" +msgstr "Lisbonne" + +#: wp-admin/includes/continents-cities.php:450 +msgid "Kiev" +msgstr "Kiev" + +#: wp-admin/includes/continents-cities.php:449 +msgid "Kaliningrad" +msgstr "Kaliningrad" + +#: wp-admin/includes/continents-cities.php:448 +msgid "Jersey" +msgstr "Jersey" + +#: wp-admin/includes/continents-cities.php:446 +msgid "Isle of Man" +msgstr "Île de Man" + +#: wp-admin/includes/continents-cities.php:445 +msgid "Helsinki" +msgstr "Helsinki" + +#: wp-admin/includes/continents-cities.php:444 +msgid "Guernsey" +msgstr "Guernesey" + +#: wp-admin/includes/continents-cities.php:443 +msgid "Gibraltar" +msgstr "Gibraltar" + +#: wp-admin/includes/continents-cities.php:442 +msgid "Dublin" +msgstr "Dublin" + +#: wp-admin/includes/continents-cities.php:441 +msgid "Copenhagen" +msgstr "Copenhague" + +#: wp-admin/includes/continents-cities.php:440 +msgid "Chisinau" +msgstr "Chişinău (Kichinev)" + +#: wp-admin/includes/continents-cities.php:438 +msgid "Budapest" +msgstr "Budapest" + +#: wp-admin/includes/continents-cities.php:437 +msgid "Bucharest" +msgstr "Bucarest" + +#: wp-admin/includes/continents-cities.php:436 +msgid "Brussels" +msgstr "Bruxelles" + +#: wp-admin/includes/continents-cities.php:435 +msgid "Bratislava" +msgstr "Bratislava" + +#: wp-admin/includes/continents-cities.php:434 +msgid "Berlin" +msgstr "Berlin" + +#: wp-admin/includes/continents-cities.php:433 +msgid "Belgrade" +msgstr "Belgrade" + +#: wp-admin/includes/continents-cities.php:432 +msgid "Belfast" +msgstr "Belfast" + +#: wp-admin/includes/continents-cities.php:431 +msgid "Athens" +msgstr "Athènes" + +#: wp-admin/includes/continents-cities.php:429 +msgid "Andorra" +msgstr "Andorre" + +#: wp-admin/includes/continents-cities.php:428 +msgid "Amsterdam" +msgstr "Amsterdam" + +#: wp-admin/includes/continents-cities.php:427 +msgid "Europe" +msgstr "Europe" + +#: wp-admin/includes/continents-cities.php:425 +msgid "Zulu" +msgstr "Zulu" + +#: wp-admin/includes/continents-cities.php:423 +msgid "UTC" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:424 +msgid "Universal" +msgstr "Universel" + +#: wp-admin/includes/continents-cities.php:422 +msgid "UCT" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:421 +msgid "Greenwich" +msgstr "Greenwich" + +#: wp-admin/includes/continents-cities.php:420 +msgid "GMT0" +msgstr "UTC0" + +#: wp-admin/includes/continents-cities.php:419 +msgid "GMT-9" +msgstr "UTC-9" + +#: wp-admin/includes/continents-cities.php:418 +msgid "GMT-8" +msgstr "UTC-8" + +#: wp-admin/includes/continents-cities.php:417 +msgid "GMT-7" +msgstr "UTC-7" + +#: wp-admin/includes/continents-cities.php:416 +msgid "GMT-6" +msgstr "UTC-6" + +#: wp-admin/includes/continents-cities.php:415 +msgid "GMT-5" +msgstr "UTC-5" + +#: wp-admin/includes/continents-cities.php:414 +msgid "GMT-4" +msgstr "UTC-4" + +#: wp-admin/includes/continents-cities.php:413 +msgid "GMT-3" +msgstr "UTC-3" + +#: wp-admin/includes/continents-cities.php:412 +msgid "GMT-2" +msgstr "UTC-2" + +#: wp-admin/includes/continents-cities.php:411 +msgid "GMT-14" +msgstr "UTC-14" + +#: wp-admin/includes/continents-cities.php:410 +msgid "GMT-13" +msgstr "UTC-13" + +#: wp-admin/includes/continents-cities.php:409 +msgid "GMT-12" +msgstr "UTC-12" + +#: wp-admin/includes/continents-cities.php:408 +msgid "GMT-11" +msgstr "UTC-11" + +#: wp-admin/includes/continents-cities.php:407 +msgid "GMT-10" +msgstr "UTC-10" + +#: wp-admin/includes/continents-cities.php:406 +msgid "GMT-1" +msgstr "UTC-1" + +#: wp-admin/includes/continents-cities.php:405 +msgid "GMT-0" +msgstr "UTC-0" + +#: wp-admin/includes/continents-cities.php:404 +msgid "GMT+9" +msgstr "UTC+9" + +#: wp-admin/includes/continents-cities.php:403 +msgid "GMT+8" +msgstr "UTC+8" + +#: wp-admin/includes/continents-cities.php:402 +msgid "GMT+7" +msgstr "UTC+7" + +#: wp-admin/includes/continents-cities.php:401 +msgid "GMT+6" +msgstr "UTC+6" + +#: wp-admin/includes/continents-cities.php:400 +msgid "GMT+5" +msgstr "UTC+5" + +#: wp-admin/includes/continents-cities.php:399 +msgid "GMT+4" +msgstr "UTC+4" + +#: wp-admin/includes/continents-cities.php:398 +msgid "GMT+3" +msgstr "UTC+3" + +#: wp-admin/includes/continents-cities.php:397 +msgid "GMT+2" +msgstr "UTC+2" + +#: wp-admin/includes/continents-cities.php:396 +msgid "GMT+12" +msgstr "UTC+12" + +#: wp-admin/includes/continents-cities.php:395 +msgid "GMT+11" +msgstr "UTC+11" + +#: wp-admin/includes/continents-cities.php:394 +msgid "GMT+10" +msgstr "UTC+10" + +#: wp-admin/includes/continents-cities.php:393 +msgid "GMT+1" +msgstr "UTC+1" + +#: wp-admin/includes/continents-cities.php:392 +msgid "GMT+0" +msgstr "UTC+0" + +#: wp-admin/includes/continents-cities.php:391 +msgid "GMT" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:390 +msgid "Etc" +msgstr "Etc." + +#: wp-admin/includes/continents-cities.php:388 +msgid "Yancowinna" +msgstr "Yancowinna" + +#: wp-admin/includes/continents-cities.php:387 +msgid "West" +msgstr "Ouest" + +#: wp-admin/includes/continents-cities.php:386 +msgid "Victoria" +msgstr "Victoria" + +#: wp-admin/includes/continents-cities.php:385 +msgid "Tasmania" +msgstr "Tasmanie" + +#: wp-admin/includes/continents-cities.php:384 +msgid "Sydney" +msgstr "Sydney" + +#: wp-admin/includes/continents-cities.php:383 +msgid "South" +msgstr "Sud" + +#: wp-admin/includes/continents-cities.php:382 +msgid "Queensland" +msgstr "Queensland" + +#: wp-admin/includes/continents-cities.php:381 +msgid "Perth" +msgstr "Perth" + +#: wp-admin/includes/continents-cities.php:379 +msgid "NSW" +msgstr "Nouvelle-Galles du Sud (NSW)" + +#: wp-admin/includes/continents-cities.php:380 +msgid "North" +msgstr "Nord" + +#: wp-admin/includes/continents-cities.php:378 +msgid "Melbourne" +msgstr "Melbourne" + +#: wp-admin/includes/continents-cities.php:377 +msgid "Lord Howe" +msgstr "Île Lord Howe (LHI)" + +#: wp-admin/includes/continents-cities.php:376 +msgid "Lindeman" +msgstr "Lindeman" + +#: wp-admin/includes/continents-cities.php:375 +msgid "LHI" +msgstr "Île Lord Howe (LHI)" + +#: wp-admin/includes/continents-cities.php:374 +msgid "Hobart" +msgstr "Hobart" + +#: wp-admin/includes/continents-cities.php:373 +msgid "Eucla" +msgstr "Eucla" + +#: wp-admin/includes/continents-cities.php:372 +msgid "Darwin" +msgstr "Darwin" + +#: wp-admin/includes/continents-cities.php:371 +msgid "Currie" +msgstr "Currie" + +#: wp-admin/includes/continents-cities.php:370 +msgid "Canberra" +msgstr "Canberra" + +#: wp-admin/includes/continents-cities.php:369 +msgid "Broken Hill" +msgstr "Broken Hill" + +#: wp-admin/includes/continents-cities.php:368 +msgid "Brisbane" +msgstr "Brisbane" + +#: wp-admin/includes/continents-cities.php:367 +msgid "Adelaide" +msgstr "Adélaïde" + +#: wp-admin/includes/continents-cities.php:366 +msgid "ACT" +msgstr "Territoire de la capitale australienne (ACT)" + +#: wp-admin/includes/continents-cities.php:365 +msgid "Australia" +msgstr "Australie" + +#: wp-admin/includes/continents-cities.php:363 +msgid "Stanley" +msgstr "Stanley" + +#: wp-admin/includes/continents-cities.php:362 +msgid "St Helena" +msgstr "Sainte-Hélène" + +#: wp-admin/includes/continents-cities.php:361 +msgid "South Georgia" +msgstr "Île de Géorgie du Sud" + +#: wp-admin/includes/continents-cities.php:360 +msgid "Reykjavik" +msgstr "Reykjavík" + +#: wp-admin/includes/continents-cities.php:359 +msgid "Madeira" +msgstr "Madère" + +#: wp-admin/includes/continents-cities.php:358 +msgid "Jan Mayen" +msgstr "Île Jan Mayen" + +#: wp-admin/includes/continents-cities.php:357 +msgid "Faroe" +msgstr "Îles Féroé" + +#: wp-admin/includes/continents-cities.php:356 +msgid "Faeroe" +msgstr "Îles Féroé" + +#: wp-admin/includes/continents-cities.php:355 +msgid "Cape Verde" +msgstr "Cap-Vert" + +#: wp-admin/includes/continents-cities.php:354 +msgid "Canary" +msgstr "Îles Canaries" + +#: wp-admin/includes/continents-cities.php:353 +msgid "Bermuda" +msgstr "Bermudes" + +#: wp-admin/includes/continents-cities.php:352 +msgid "Azores" +msgstr "Açores" + +#: wp-admin/includes/continents-cities.php:351 +msgid "Atlantic" +msgstr "Atlantique" + +#: wp-admin/includes/continents-cities.php:349 +msgid "Yerevan" +msgstr "Yerevan (Erevan)" + +#: wp-admin/includes/continents-cities.php:348 +msgid "Yekaterinburg" +msgstr "Iekaterinbourg" + +#: wp-admin/includes/continents-cities.php:346 +msgid "Yakutsk" +msgstr "Iakoutsk" + +#: wp-admin/includes/continents-cities.php:345 +msgid "Vladivostok" +msgstr "Vladivostok" + +#: wp-admin/includes/continents-cities.php:344 +msgid "Vientiane" +msgstr "Vientiane" + +#: wp-admin/includes/continents-cities.php:342 +msgid "Urumqi" +msgstr "Ürümqi" + +#: wp-admin/includes/continents-cities.php:341 +msgid "Ulan Bator" +msgstr "Oulan-Bator (Ulaanbaatar)" + +#: wp-admin/includes/continents-cities.php:340 +msgid "Ulaanbaatar" +msgstr "Oulan-Bator (Ulaanbaatar)" + +#: wp-admin/includes/continents-cities.php:339 +msgid "Ujung Pandang" +msgstr "Makassar (Ujung Pandang)" + +#: wp-admin/includes/continents-cities.php:337 +msgid "Tokyo" +msgstr "Tōkyō" + +#: wp-admin/includes/continents-cities.php:336 +msgid "Thimphu" +msgstr "Thimphou" + +#: wp-admin/includes/continents-cities.php:335 +msgid "Thimbu" +msgstr "Thimphou" + +#: wp-admin/includes/continents-cities.php:334 +msgid "Tel Aviv" +msgstr "Tel Aviv-Jaffa" + +#: wp-admin/includes/continents-cities.php:333 +msgid "Tehran" +msgstr "Téhéran" + +#: wp-admin/includes/continents-cities.php:332 +msgid "Tbilisi" +msgstr "Tbilissi" + +#: wp-admin/includes/continents-cities.php:331 +msgid "Tashkent" +msgstr "Tachkent" + +#: wp-admin/includes/continents-cities.php:330 +msgid "Taipei" +msgstr "Taipei" + +#: wp-admin/includes/continents-cities.php:328 +msgid "Singapore" +msgstr "Singapour" + +#: wp-admin/includes/continents-cities.php:327 +msgid "Shanghai" +msgstr "Shanghai" + +#: wp-admin/includes/continents-cities.php:326 +msgid "Seoul" +msgstr "Séoul" + +#: wp-admin/includes/continents-cities.php:325 +msgid "Samarkand" +msgstr "Samarcande" + +#: wp-admin/includes/continents-cities.php:324 +msgid "Sakhalin" +msgstr "Sakhaline" + +#: wp-admin/includes/continents-cities.php:323 +msgid "Saigon" +msgstr "Hô-Chi-Minh-Ville (Saigon)" + +#: wp-admin/includes/continents-cities.php:322 +msgid "Riyadh" +msgstr "Riyad" + +#: wp-admin/includes/continents-cities.php:321 +msgid "Rangoon" +msgstr "Rangoon" + +#: wp-admin/includes/continents-cities.php:320 +msgid "Qyzylorda" +msgstr "Kyzylorda" + +#: wp-admin/includes/continents-cities.php:318 +msgid "Qatar" +msgstr "Qatar" + +#: wp-admin/includes/continents-cities.php:317 +msgid "Pyongyang" +msgstr "Pyongyang" + +#: wp-admin/includes/continents-cities.php:316 +msgid "Pontianak" +msgstr "Pontianak" + +#: wp-admin/includes/continents-cities.php:315 +msgid "Phnom Penh" +msgstr "Phnom Penh" + +#: wp-admin/includes/continents-cities.php:314 +msgid "Oral" +msgstr "Oural" + +#: wp-admin/includes/continents-cities.php:313 +msgid "Omsk" +msgstr "Omsk" + +#: wp-admin/includes/continents-cities.php:312 +msgid "Novosibirsk" +msgstr "Novossibirsk" + +#: wp-admin/includes/continents-cities.php:310 +msgid "Nicosia" +msgstr "Nicosie" + +#: wp-admin/includes/continents-cities.php:309 +msgid "Muscat" +msgstr "Mascate" + +#: wp-admin/includes/continents-cities.php:308 +msgid "Manila" +msgstr "Manille" + +#: wp-admin/includes/continents-cities.php:307 +msgid "Makassar" +msgstr "Makassar" + +#: wp-admin/includes/continents-cities.php:306 +msgid "Magadan" +msgstr "Magadan" + +#: wp-admin/includes/continents-cities.php:305 +msgid "Macau" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:304 +msgid "Macao" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:303 +msgid "Kuwait" +msgstr "Koweït" + +#: wp-admin/includes/continents-cities.php:302 +msgid "Kuching" +msgstr "Kuching" + +#: wp-admin/includes/continents-cities.php:301 +msgid "Kuala Lumpur" +msgstr "Kuala Lumpur" + +#: wp-admin/includes/continents-cities.php:300 +msgid "Krasnoyarsk" +msgstr "Krasnoïarsk" + +#: wp-admin/includes/continents-cities.php:299 +msgid "Kolkata" +msgstr "Calcutta" + +#: wp-admin/includes/continents-cities.php:297 +msgid "Katmandu" +msgstr "Katmandou" + +#: wp-admin/includes/continents-cities.php:295 +msgid "Kashgar" +msgstr "Kachgar" + +#: wp-admin/includes/continents-cities.php:294 +msgid "Karachi" +msgstr "Karachi" + +#: wp-admin/includes/continents-cities.php:293 +msgid "Kamchatka" +msgstr "Kamtchatka" + +#: wp-admin/includes/continents-cities.php:292 +msgid "Kabul" +msgstr "Kaboul" + +#: wp-admin/includes/continents-cities.php:291 +msgid "Jerusalem" +msgstr "Jérusalem" + +#: wp-admin/includes/continents-cities.php:290 +msgid "Jayapura" +msgstr "Jayapura" + +#: wp-admin/includes/continents-cities.php:289 +msgid "Jakarta" +msgstr "Jakarta" + +#: wp-admin/includes/continents-cities.php:447 +msgid "Istanbul" +msgstr "Istanbul" + +#: wp-admin/includes/continents-cities.php:288 +msgid "Irkutsk" +msgstr "Irkoutsk" + +#: wp-admin/includes/continents-cities.php:287 +msgid "Hovd" +msgstr "Hovd" + +#: wp-admin/includes/continents-cities.php:286 +msgid "Hong Kong" +msgstr "Hong Kong" + +#: wp-admin/includes/continents-cities.php:285 +msgid "Ho Chi Minh" +msgstr "Hô-Chi-Minh-Ville" + +#: wp-admin/includes/continents-cities.php:283 +msgid "Harbin" +msgstr "Harbin" + +#: wp-admin/includes/continents-cities.php:282 +msgid "Gaza" +msgstr "Gaza" + +#: wp-admin/includes/continents-cities.php:280 +msgid "Dushanbe" +msgstr "Douchanbé" + +#: wp-admin/includes/continents-cities.php:279 +msgid "Dubai" +msgstr "Dubaï" + +#: wp-admin/includes/continents-cities.php:278 +msgid "Dili" +msgstr "Dili" + +#: wp-admin/includes/continents-cities.php:277 +msgid "Dhaka" +msgstr "Dhâkâ (Dacca)" + +#: wp-admin/includes/continents-cities.php:276 +msgid "Damascus" +msgstr "Damas" + +#: wp-admin/includes/continents-cities.php:275 +msgid "Dacca" +msgstr "Dhâkâ (Dacca)" + +#: wp-admin/includes/continents-cities.php:274 +msgid "Colombo" +msgstr "Colombo" + +#: wp-admin/includes/continents-cities.php:273 +msgid "Chungking" +msgstr "Chungking" + +#: wp-admin/includes/continents-cities.php:272 +msgid "Chongqing" +msgstr "Chongqing" + +#: wp-admin/includes/continents-cities.php:271 +msgid "Choibalsan" +msgstr "Choybalsan" + +#: wp-admin/includes/continents-cities.php:269 +msgid "Calcutta" +msgstr "Calcutta" + +#: wp-admin/includes/continents-cities.php:268 +msgid "Brunei" +msgstr "Brunei" + +#: wp-admin/includes/continents-cities.php:267 +msgid "Bishkek" +msgstr "Bichkek" + +#: wp-admin/includes/continents-cities.php:266 +msgid "Beirut" +msgstr "Beyrouth" + +#: wp-admin/includes/continents-cities.php:264 +msgid "Bangkok" +msgstr "Bangkok" + +#: wp-admin/includes/continents-cities.php:263 +msgid "Baku" +msgstr "Bakou" + +#: wp-admin/includes/continents-cities.php:262 +msgid "Bahrain" +msgstr "Bahreïn" + +#: wp-admin/includes/continents-cities.php:261 +msgid "Baghdad" +msgstr "Bagdad" + +#: wp-admin/includes/continents-cities.php:259 +msgid "Ashkhabad" +msgstr "Achgabat" + +#: wp-admin/includes/continents-cities.php:258 +msgid "Ashgabat" +msgstr "Achgabat" + +#: wp-admin/includes/continents-cities.php:257 +msgid "Aqtobe" +msgstr "Aktioubé" + +#: wp-admin/includes/continents-cities.php:256 +msgid "Aqtau" +msgstr "Aqtou" + +#: wp-admin/includes/continents-cities.php:255 +msgid "Anadyr" +msgstr "Anadyr" + +#: wp-admin/includes/continents-cities.php:254 +msgid "Amman" +msgstr "Amman" + +#: wp-admin/includes/continents-cities.php:253 +msgid "Almaty" +msgstr "Almaty" + +#: wp-admin/includes/continents-cities.php:252 +msgid "Aden" +msgstr "Aden" + +#: wp-admin/includes/continents-cities.php:251 +msgid "Asia" +msgstr "Asie" + +#: wp-admin/includes/continents-cities.php:249 +msgid "Longyearbyen" +msgstr "Longyearbyen" + +#: wp-admin/includes/continents-cities.php:248 +msgid "Arctic" +msgstr "Arctique" + +#: wp-admin/includes/continents-cities.php:246 +msgid "Vostok" +msgstr "Vostok" + +#: wp-admin/includes/continents-cities.php:244 +msgid "Syowa" +msgstr "Syowa" + +#: wp-admin/includes/continents-cities.php:243 +msgid "South Pole" +msgstr "Pôle Sud" + +#: wp-admin/includes/continents-cities.php:242 +msgid "Rothera" +msgstr "Rothera" + +#: wp-admin/includes/continents-cities.php:241 +msgid "Palmer" +msgstr "Palmer" + +#: wp-admin/includes/continents-cities.php:240 +msgid "McMurdo" +msgstr "McMurdo" + +#: wp-admin/includes/continents-cities.php:239 +msgid "Mawson" +msgstr "Mawson" + +#: wp-admin/includes/continents-cities.php:237 +msgid "DumontDUrville" +msgstr "Dumont d’Urville" + +#: wp-admin/includes/continents-cities.php:236 +msgid "Davis" +msgstr "Davis" + +#: wp-admin/includes/continents-cities.php:235 +msgid "Casey" +msgstr "Casey" + +#: wp-admin/includes/continents-cities.php:234 +msgid "Antarctica" +msgstr "Antartique" + +#: wp-admin/includes/continents-cities.php:232 +msgid "Yellowknife" +msgstr "Yellowknife" + +#: wp-admin/includes/continents-cities.php:231 +msgid "Yakutat" +msgstr "Yakutat" + +#: wp-admin/includes/continents-cities.php:230 +msgid "Winnipeg" +msgstr "Winnipeg" + +#: wp-admin/includes/continents-cities.php:229 +msgid "Whitehorse" +msgstr "Whitehorse" + +#: wp-admin/includes/continents-cities.php:228 +msgid "Virgin" +msgstr "Virgin" + +#: wp-admin/includes/continents-cities.php:227 +msgid "Vancouver" +msgstr "Vancouver" + +#: wp-admin/includes/continents-cities.php:226 +msgid "Tortola" +msgstr "Tortola" + +#: wp-admin/includes/continents-cities.php:225 +msgid "Toronto" +msgstr "Toronto" + +#: wp-admin/includes/continents-cities.php:224 +msgid "Tijuana" +msgstr "Tijuana" + +#: wp-admin/includes/continents-cities.php:223 +msgid "Thunder Bay" +msgstr "Thunder Bay" + +#: wp-admin/includes/continents-cities.php:222 +msgid "Thule" +msgstr "Thule" + +#: wp-admin/includes/continents-cities.php:221 +msgid "Tegucigalpa" +msgstr "Tegucigalpa" + +#: wp-admin/includes/continents-cities.php:220 +msgid "Swift Current" +msgstr "Swift Current" + +#: wp-admin/includes/continents-cities.php:219 +msgid "St Vincent" +msgstr "Saint Vincent" + +#: wp-admin/includes/continents-cities.php:218 +msgid "St Thomas" +msgstr "Saint Thomas" + +#: wp-admin/includes/continents-cities.php:217 +msgid "St Lucia" +msgstr "Sainte-Lucie" + +#: wp-admin/includes/continents-cities.php:216 +msgid "St Kitts" +msgstr "Île Saint-Christophe" + +#: wp-admin/includes/continents-cities.php:215 +msgid "St Johns" +msgstr "Saint John’s" + +#: wp-admin/includes/continents-cities.php:214 +msgid "St Barthelemy" +msgstr "Saint-Barthélemy" + +#: wp-admin/includes/continents-cities.php:212 +msgid "Shiprock" +msgstr "Shiprock" + +#: wp-admin/includes/continents-cities.php:211 +msgid "Scoresbysund" +msgstr "Ittoqqortoormiit (Scoresbysund)" + +#: wp-admin/includes/continents-cities.php:210 +msgid "Sao Paulo" +msgstr "Sao Paulo" + +#: wp-admin/includes/continents-cities.php:209 +msgid "Santo Domingo" +msgstr "Saint-Domingue" + +#: wp-admin/includes/continents-cities.php:208 +msgid "Santiago" +msgstr "Santiago du Chili" + +#: wp-admin/includes/continents-cities.php:205 +msgid "Rosario" +msgstr "Rosario" + +#: wp-admin/includes/continents-cities.php:204 +msgid "Rio Branco" +msgstr "Rio Branco" + +#: wp-admin/includes/continents-cities.php:203 +msgid "Resolute" +msgstr "Resolute" + +#: wp-admin/includes/continents-cities.php:202 +msgid "Regina" +msgstr "Regina" + +#: wp-admin/includes/continents-cities.php:201 +msgid "Recife" +msgstr "Recife" + +#: wp-admin/includes/continents-cities.php:200 +msgid "Rankin Inlet" +msgstr "Kangiqtiniq (Rankin Inlet)" + +#: wp-admin/includes/continents-cities.php:199 +msgid "Rainy River" +msgstr "Rainy River" + +#: wp-admin/includes/continents-cities.php:197 +msgid "Puerto Rico" +msgstr "Porto Rico" + +#: wp-admin/includes/continents-cities.php:196 +msgid "Porto Velho" +msgstr "Porto Velho" + +#: wp-admin/includes/continents-cities.php:195 +msgid "Porto Acre" +msgstr "Porto Acre" + +#: wp-admin/includes/continents-cities.php:194 +msgid "Port of Spain" +msgstr "Port-d’Espagne" + +#: wp-admin/includes/continents-cities.php:193 +msgid "Port-au-Prince" +msgstr "Port-au-Prince" + +#: wp-admin/includes/continents-cities.php:192 +msgid "Phoenix" +msgstr "Phoenix" + +#: wp-admin/includes/continents-cities.php:191 +msgid "Paramaribo" +msgstr "Paramaribo" + +#: wp-admin/includes/continents-cities.php:190 +msgid "Pangnirtung" +msgstr "Pangnirtung" + +#: wp-admin/includes/continents-cities.php:189 +msgid "Panama" +msgstr "Panama" + +#: wp-admin/includes/continents-cities.php:186 +msgid "New Salem" +msgstr "New Salem" + +#: wp-admin/includes/continents-cities.php:185 +msgid "Center" +msgstr "Center" + +#: wp-admin/includes/continents-cities.php:183 +msgid "North Dakota" +msgstr "Dakota du Nord" + +#: wp-admin/includes/continents-cities.php:182 +msgid "Noronha" +msgstr "Noronha" + +#: wp-admin/includes/continents-cities.php:181 +msgid "Nome" +msgstr "Nome" + +#: wp-admin/includes/continents-cities.php:180 +msgid "Nipigon" +msgstr "Nipigon" + +#: wp-admin/includes/continents-cities.php:179 +msgid "New York" +msgstr "New York" + +#: wp-admin/includes/continents-cities.php:178 +msgid "Nassau" +msgstr "Nassau" + +#: wp-admin/includes/continents-cities.php:177 +msgid "Montserrat" +msgstr "Montserrat" + +#: wp-admin/includes/continents-cities.php:176 +msgid "Montreal" +msgstr "Montréal" + +#: wp-admin/includes/continents-cities.php:175 +msgid "Montevideo" +msgstr "Montévidéo" + +#: wp-admin/includes/continents-cities.php:174 +msgid "Monterrey" +msgstr "Monterrey" + +#: wp-admin/includes/continents-cities.php:173 +msgid "Moncton" +msgstr "Moncton" + +#: wp-admin/includes/continents-cities.php:172 +msgid "Miquelon" +msgstr "Miquelon" + +#: wp-admin/includes/continents-cities.php:171 +msgid "Mexico City" +msgstr "Mexico" + +#: wp-admin/includes/continents-cities.php:169 +msgid "Merida" +msgstr "Merida" + +#: wp-admin/includes/continents-cities.php:168 +msgid "Menominee" +msgstr "Menominee" + +#: wp-admin/includes/continents-cities.php:167 +msgid "Mazatlan" +msgstr "Mazatlan" + +#: wp-admin/includes/continents-cities.php:165 +msgid "Martinique" +msgstr "Martinique" + +#: wp-admin/includes/continents-cities.php:164 +msgid "Marigot" +msgstr "Marigot" + +#: wp-admin/includes/continents-cities.php:163 +msgid "Manaus" +msgstr "Manaos" + +#: wp-admin/includes/continents-cities.php:162 +msgid "Managua" +msgstr "Managua" + +#: wp-admin/includes/continents-cities.php:161 +msgid "Maceio" +msgstr "Maceió" + +#: wp-admin/includes/continents-cities.php:159 +msgid "Los Angeles" +msgstr "Los Angeles" + +#: wp-admin/includes/continents-cities.php:158 +msgid "Lima" +msgstr "Lima" + +#: wp-admin/includes/continents-cities.php:157 +msgid "La Paz" +msgstr "La Paz" + +#: wp-admin/includes/continents-cities.php:155 +msgid "Knox IN" +msgstr "Knox (Indiana)" + +#: wp-admin/includes/continents-cities.php:154 +msgid "Monticello" +msgstr "Monticello" + +#: wp-admin/includes/continents-cities.php:153 +msgid "Louisville" +msgstr "Louisville" + +#: wp-admin/includes/continents-cities.php:152 +msgid "Kentucky" +msgstr "Kentucky" + +#: wp-admin/includes/continents-cities.php:151 +msgid "Juneau" +msgstr "Juneau" + +#: wp-admin/includes/continents-cities.php:150 +msgid "Jamaica" +msgstr "Jamaïque" + +#: wp-admin/includes/continents-cities.php:149 +msgid "Iqaluit" +msgstr "Iqaluit" + +#: wp-admin/includes/continents-cities.php:148 +msgid "Inuvik" +msgstr "Inuvik" + +#: wp-admin/includes/continents-cities.php:147 +msgid "Winamac" +msgstr "Winamac" + +#: wp-admin/includes/continents-cities.php:146 +msgid "Vincennes" +msgstr "Vincennes" + +#: wp-admin/includes/continents-cities.php:145 +msgid "Vevay" +msgstr "Vevay" + +#: wp-admin/includes/continents-cities.php:144 +msgid "Tell City" +msgstr "Tell City" + +#: wp-admin/includes/continents-cities.php:143 +msgid "Petersburg" +msgstr "Petersburg" + +#: wp-admin/includes/continents-cities.php:142 +msgid "Marengo" +msgstr "Marengo" + +#: wp-admin/includes/continents-cities.php:141 +msgid "Knox" +msgstr "Knox" + +#: wp-admin/includes/continents-cities.php:140 +msgid "Indianapolis" +msgstr "Indianapolis" + +#: wp-admin/includes/continents-cities.php:139 +msgid "Indiana" +msgstr "Indiana" + +#: wp-admin/includes/continents-cities.php:138 +msgid "Hermosillo" +msgstr "Hermosillo" + +#: wp-admin/includes/continents-cities.php:137 +msgid "Havana" +msgstr "La Havane" + +#: wp-admin/includes/continents-cities.php:136 +msgid "Halifax" +msgstr "Halifax" + +#: wp-admin/includes/continents-cities.php:135 +msgid "Guyana" +msgstr "Guyana" + +#: wp-admin/includes/continents-cities.php:134 +msgid "Guayaquil" +msgstr "Guayaquil" + +#: wp-admin/includes/continents-cities.php:133 +msgid "Guatemala" +msgstr "Guatemala" + +#: wp-admin/includes/continents-cities.php:132 +msgid "Guadeloupe" +msgstr "Guadeloupe" + +#: wp-admin/includes/continents-cities.php:131 +msgid "Grenada" +msgstr "Grenade" + +#: wp-admin/includes/continents-cities.php:130 +msgid "Grand Turk" +msgstr "Grand Turk" + +#: wp-admin/includes/continents-cities.php:129 +msgid "Goose Bay" +msgstr "Goose Bay" + +#: wp-admin/includes/continents-cities.php:128 +msgid "Godthab" +msgstr "Nuuk (Godthåb)" + +#: wp-admin/includes/continents-cities.php:127 +msgid "Glace Bay" +msgstr "Glace Bay" + +#: wp-admin/includes/continents-cities.php:126 +msgid "Fortaleza" +msgstr "Fortaleza" + +#: wp-admin/includes/continents-cities.php:125 +msgid "Fort Wayne" +msgstr "Fort Wayne" + +#: wp-admin/includes/continents-cities.php:123 +msgid "Ensenada" +msgstr "Ensenada" + +#: wp-admin/includes/continents-cities.php:122 +msgid "El Salvador" +msgstr "Salvador" + +#: wp-admin/includes/continents-cities.php:121 +msgid "Eirunepe" +msgstr "Eirunepé" + +#: wp-admin/includes/continents-cities.php:120 +msgid "Edmonton" +msgstr "Edmonton" + +#: wp-admin/includes/continents-cities.php:119 +msgid "Dominica" +msgstr "Dominique" + +#: wp-admin/includes/continents-cities.php:118 +msgid "Detroit" +msgstr "Detroit" + +#: wp-admin/includes/continents-cities.php:117 +msgid "Denver" +msgstr "Denver" + +#: wp-admin/includes/continents-cities.php:116 +msgid "Dawson Creek" +msgstr "Dawson Creek" + +#: wp-admin/includes/continents-cities.php:115 +msgid "Dawson" +msgstr "Dawson" + +#: wp-admin/includes/continents-cities.php:114 +msgid "Danmarkshavn" +msgstr "Danmarkshavn" + +#: wp-admin/includes/continents-cities.php:113 +msgid "Curacao" +msgstr "Curaçao" + +#: wp-admin/includes/continents-cities.php:112 +msgid "Cuiaba" +msgstr "Cuiabá" + +#: wp-admin/includes/continents-cities.php:110 +msgid "Costa Rica" +msgstr "Costa Rica" + +#: wp-admin/includes/continents-cities.php:109 +msgid "Coral Harbour" +msgstr "Coral Harbour" + +#: wp-admin/includes/continents-cities.php:108 +msgid "Chihuahua" +msgstr "Etat de Chihuahua" + +#: wp-admin/includes/continents-cities.php:107 +msgid "Chicago" +msgstr "Chicago" + +#: wp-admin/includes/continents-cities.php:106 +msgid "Cayman" +msgstr "Îles Caïmans" + +#: wp-admin/includes/continents-cities.php:105 +msgid "Cayenne" +msgstr "Cayenne" + +#: wp-admin/includes/continents-cities.php:104 +msgid "Caracas" +msgstr "Caracas" + +#: wp-admin/includes/continents-cities.php:103 +msgid "Cancun" +msgstr "Cancún" + +#: wp-admin/includes/continents-cities.php:102 +msgid "Campo Grande" +msgstr "Campo Grande" + +#: wp-admin/includes/continents-cities.php:101 +msgid "Cambridge Bay" +msgstr "Ikaluktutiak" + +#: wp-admin/includes/continents-cities.php:100 +msgid "Boise" +msgstr "Boise" + +#: wp-admin/includes/continents-cities.php:99 +msgid "Bogota" +msgstr "Bogotá" + +#: wp-admin/includes/continents-cities.php:98 +msgid "Boa Vista" +msgstr "Boa Vista" + +#: wp-admin/includes/continents-cities.php:97 +msgid "Blanc-Sablon" +msgstr "Blanc-Sablon" + +#: wp-admin/includes/continents-cities.php:96 +msgid "Belize" +msgstr "Belize" + +#: wp-admin/includes/continents-cities.php:95 +msgid "Belem" +msgstr "Belém" + +#: wp-admin/includes/continents-cities.php:94 +msgid "Barbados" +msgstr "Barbade" + +#: wp-admin/includes/continents-cities.php:92 +msgid "Bahia" +msgstr "Bahia" + +#: wp-admin/includes/continents-cities.php:91 +msgid "Atka" +msgstr "Atka" + +#: wp-admin/includes/continents-cities.php:90 +msgid "Atikokan" +msgstr "Atikokan" + +#: wp-admin/includes/continents-cities.php:89 +msgid "Asuncion" +msgstr "Asunción" + +#: wp-admin/includes/continents-cities.php:88 +msgid "Aruba" +msgstr "Aruba" + +#: wp-admin/includes/continents-cities.php:87 +msgid "Ushuaia" +msgstr "Ushuaïa" + +#: wp-admin/includes/continents-cities.php:86 +msgid "Tucuman" +msgstr "San Miguel de Tucumán" + +#: wp-admin/includes/continents-cities.php:85 +msgid "San Luis" +msgstr "San Luis" + +#: wp-admin/includes/continents-cities.php:84 +msgid "San Juan" +msgstr "San Juan" + +#: wp-admin/includes/continents-cities.php:82 +msgid "Rio Gallegos" +msgstr "Rio Gallegos" + +#: wp-admin/includes/continents-cities.php:81 +msgid "Mendoza" +msgstr "Mendoza" + +#: wp-admin/includes/continents-cities.php:80 +msgid "La Rioja" +msgstr "La Rioja" + +#: wp-admin/includes/continents-cities.php:79 +msgid "Jujuy" +msgstr "San Salvador de Jujuy" + +#: wp-admin/includes/continents-cities.php:78 +msgid "Cordoba" +msgstr "Cordoba" + +#: wp-admin/includes/continents-cities.php:77 +msgid "ComodRivadavia" +msgstr "Comodoro Rivadavia" + +#: wp-admin/includes/continents-cities.php:76 +msgid "Catamarca" +msgstr "Catamarca" + +#: wp-admin/includes/continents-cities.php:75 +msgid "Buenos Aires" +msgstr "Buenos Aires" + +#: wp-admin/includes/continents-cities.php:74 +msgid "Argentina" +msgstr "Argentine" + +#: wp-admin/includes/continents-cities.php:73 +msgid "Araguaina" +msgstr "Araguaína" + +#: wp-admin/includes/continents-cities.php:72 +msgid "Antigua" +msgstr "Antigua" + +#: wp-admin/includes/continents-cities.php:71 +msgid "Anguilla" +msgstr "Anguilla" + +#: wp-admin/includes/continents-cities.php:70 +msgid "Anchorage" +msgstr "Anchorage" + +#: wp-admin/includes/continents-cities.php:69 +msgid "Adak" +msgstr "Adak" + +#: wp-admin/includes/continents-cities.php:68 +msgid "America" +msgstr "Amériques" + +#: wp-admin/includes/continents-cities.php:66 +msgid "Windhoek" +msgstr "Windhoek" + +#: wp-admin/includes/continents-cities.php:65 +msgid "Tunis" +msgstr "Tunis" + +#: wp-admin/includes/continents-cities.php:64 +msgid "Tripoli" +msgstr "Tripoli" + +#: wp-admin/includes/continents-cities.php:63 +msgid "Timbuktu" +msgstr "Tombouctou" + +#: wp-admin/includes/continents-cities.php:62 +msgid "Sao Tome" +msgstr "Sao Tomé" + +#: wp-admin/includes/continents-cities.php:61 +msgid "Porto-Novo" +msgstr "Porto-Novo" + +#: wp-admin/includes/continents-cities.php:60 +msgid "Ouagadougou" +msgstr "Ouagadougou" + +#: wp-admin/includes/continents-cities.php:59 +msgid "Nouakchott" +msgstr "Nouakchott" + +#: wp-admin/includes/continents-cities.php:58 +msgid "Niamey" +msgstr "Niamey" + +#: wp-admin/includes/continents-cities.php:57 +msgid "Ndjamena" +msgstr "N’Djamena" + +#: wp-admin/includes/continents-cities.php:56 +msgid "Nairobi" +msgstr "Nairobi" + +#: wp-admin/includes/continents-cities.php:55 +msgid "Monrovia" +msgstr "Monrovia" + +#: wp-admin/includes/continents-cities.php:54 +msgid "Mogadishu" +msgstr "Mogadiscio" + +#: wp-admin/includes/continents-cities.php:53 +msgid "Mbabane" +msgstr "Mbabane" + +#: wp-admin/includes/continents-cities.php:52 +msgid "Maseru" +msgstr "Maseru" + +#: wp-admin/includes/continents-cities.php:51 +msgid "Maputo" +msgstr "Maputo" + +#: wp-admin/includes/continents-cities.php:50 +msgid "Malabo" +msgstr "Malabo" + +#: wp-admin/includes/continents-cities.php:49 +msgid "Lusaka" +msgstr "Lusaka" + +#: wp-admin/includes/continents-cities.php:48 +msgid "Lubumbashi" +msgstr "Lubumbashi" + +#: wp-admin/includes/continents-cities.php:47 +msgid "Luanda" +msgstr "Luanda" + +#: wp-admin/includes/continents-cities.php:46 +msgid "Lome" +msgstr "Lomé" + +#: wp-admin/includes/continents-cities.php:45 +msgid "Libreville" +msgstr "Libreville" + +#: wp-admin/includes/continents-cities.php:44 +msgid "Lagos" +msgstr "Lagos" + +#: wp-admin/includes/continents-cities.php:43 +msgid "Kinshasa" +msgstr "Kinshasa" + +#: wp-admin/includes/continents-cities.php:42 +msgid "Kigali" +msgstr "Kigali" + +#: wp-admin/includes/continents-cities.php:41 +msgid "Khartoum" +msgstr "Khartoum" + +#: wp-admin/includes/continents-cities.php:40 +msgid "Kampala" +msgstr "Kampala" + +#: wp-admin/includes/continents-cities.php:38 +msgid "Johannesburg" +msgstr "Johannesburg" + +#: wp-admin/includes/continents-cities.php:37 +msgid "Harare" +msgstr "Harare" + +#: wp-admin/includes/continents-cities.php:36 +msgid "Gaborone" +msgstr "Gaborone" + +#: wp-admin/includes/continents-cities.php:35 +msgid "Freetown" +msgstr "Freetown" + +#: wp-admin/includes/continents-cities.php:34 +msgid "El Aaiun" +msgstr "Laâyoune" + +#: wp-admin/includes/continents-cities.php:33 +msgid "Douala" +msgstr "Douala" + +#: wp-admin/includes/continents-cities.php:32 +msgid "Djibouti" +msgstr "Djibouti" + +#: wp-admin/includes/continents-cities.php:31 +msgid "Dar es Salaam" +msgstr "Dar es Salaam" + +#: wp-admin/includes/continents-cities.php:30 +msgid "Dakar" +msgstr "Dakar" + +#: wp-admin/includes/continents-cities.php:29 +msgid "Conakry" +msgstr "Conakry" + +#: wp-admin/includes/continents-cities.php:28 +msgid "Ceuta" +msgstr "Ceuta" + +#: wp-admin/includes/continents-cities.php:27 +msgid "Casablanca" +msgstr "Casablanca" + +#: wp-admin/includes/continents-cities.php:26 +msgid "Cairo" +msgstr "Le Caire" + +#: wp-admin/includes/continents-cities.php:25 +msgid "Bujumbura" +msgstr "Bujumbura" + +#: wp-admin/includes/continents-cities.php:24 +msgid "Brazzaville" +msgstr "Brazzaville" + +#: wp-admin/includes/continents-cities.php:23 +msgid "Blantyre" +msgstr "Blantyre" + +#: wp-admin/includes/continents-cities.php:22 +msgid "Bissau" +msgstr "Bissau" + +#: wp-admin/includes/continents-cities.php:21 +msgid "Banjul" +msgstr "Banjul" + +#: wp-admin/includes/continents-cities.php:20 +msgid "Bangui" +msgstr "Bangui" + +#: wp-admin/includes/continents-cities.php:19 +msgid "Bamako" +msgstr "Bamako" + +#: wp-admin/includes/continents-cities.php:18 +msgid "Asmera" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:17 +msgid "Asmara" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:16 +msgid "Algiers" +msgstr "Alger" + +#: wp-admin/includes/continents-cities.php:15 +msgid "Addis Ababa" +msgstr "Addis-Abeba" + +#: wp-admin/includes/continents-cities.php:14 +msgid "Accra" +msgstr "Accra" + +#: wp-admin/includes/continents-cities.php:13 +msgid "Abidjan" +msgstr "Abidjan" + +#: wp-admin/includes/continents-cities.php:12 +msgid "Africa" +msgstr "Afrique" \ No newline at end of file diff --git a/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json b/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json new file mode 100644 index 00000000..64537fa3 --- /dev/null +++ b/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"The suggested policy text has been copied to your clipboard.":["The suggested policy text has been copied to your clipboard."],"This user’s personal data export file was downloaded.":["This user’s personal data export file was downloaded."],"This user’s personal data export link was sent.":["This user’s personal data export link was sent."],"An error occurred while attempting to find and erase personal data.":["An error occurred while attempting to find and erase personal data."],"Personal data was found for this user but some of the personal data found was not erased.":["Personal data was found for this user, but some of the personal data found was not erased."],"All of the personal data found for this user was erased.":["All of the personal data found for this user was erased."],"Personal data was found for this user but was not erased.":["Personal data was found for this user, but was not erased."],"No personal data was found for this user.":["No personal data was found for this user."],"An error occurred while attempting to export personal data.":["An error occurred while attempting to export personal data."],"No personal data export file was generated.":["No personal data export file was generated."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json b/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json new file mode 100644 index 00000000..396ddb43 --- /dev/null +++ b/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Editor tips":["Editor tips"],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json b/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json new file mode 100644 index 00000000..4b4b7690 --- /dev/null +++ b/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json b/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json new file mode 100644 index 00000000..341c02a2 --- /dev/null +++ b/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s applied.":["%s applied."],"%s removed.":["%s removed."]}},"comment":{"reference":"wp-includes\/js\/dist\/rich-text.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json b/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json new file mode 100644 index 00000000..8b0a6be0 --- /dev/null +++ b/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"pattern (singular)\u0004Synced":["Synced"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Unsynced pattern created: %s":["Unsynced pattern created: %s"],"Synced pattern created: %s":["Synced pattern created: %s"],"Untitled pattern block":["Untitled pattern block"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"Manage patterns":["Manage patterns"],"Create":["Create"],"Detach":["Detach"],"Cancel":["Cancel"],"Name":["Name"]}},"comment":{"reference":"wp-includes\/js\/dist\/reusable-blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json b/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json new file mode 100644 index 00000000..a1e4f187 --- /dev/null +++ b/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s Block. Row %2$d":["%1$s Block. Row %2$d"],"Design":["Design"],"%s Block":["%s Block"],"%1$s Block. %2$s":["%1$s Block. %2$s"],"%1$s Block. Column %2$d":["%1$s Block. Column %2$d"],"%1$s Block. Column %2$d. %3$s":["%1$s Block. Column %2$d. %3$s"],"%1$s Block. Row %2$d. %3$s":["%1$s Block. Row %2$d. %3$s"],"Reusable blocks":["Reusable blocks"],"Embeds":["Embeds"],"Text":["Text"],"Widgets":["Widgets"],"Theme":["Theme"],"Media":["Media"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json b/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json new file mode 100644 index 00000000..dac050b1 --- /dev/null +++ b/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You are probably offline.":["You are probably offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"An unknown error occurred.":["An unknown error occurred."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json b/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json new file mode 100644 index 00000000..6a0f38be --- /dev/null +++ b/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Submitted on:":["Submitted on:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%1$s %2$s, %3$s at %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json b/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json new file mode 100644 index 00000000..144d02ef --- /dev/null +++ b/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Selected crop ratio exceeds the boundaries of the image. Try a different ratio.":["Selected crop ratio exceeds the boundaries of the image. Try a different ratio."],"Could not load the preview image.":["Could not load the preview image."],"Could not load the preview image. Please reload the page and try again.":["Could not load the preview image. Please reload the page and try again."],"Image updated.":["Image updated."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json b/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json new file mode 100644 index 00000000..88fd5be4 --- /dev/null +++ b/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"pattern\u0004\"%s\" duplicated.":["\"%s\" duplicated."],"pattern\u0004%s (Copy)":["%s (Copy)"],"These blocks are editable using overrides.":["These blocks are editable using overrides."],"This %1$s is editable using the \"%2$s\" override.":["This %1$s is editable using the \"%2$s\" override."],"Allow changes to this block throughout instances of this pattern.":["Allow changes to this block throughout instances of this pattern."],"Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides.":["Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides."],"Disable":["Disable"],"Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern.":["Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern."],"Disable overrides":["Disable overrides"],"For example, if you are creating a recipe pattern, you use \"Recipe Title\", \"Recipe Description\", etc.":["For example, if you are creating a recipe pattern, you use \"Recipe Title\", \"Recipe Description\", etc."],"Overrides are changes you make to a block within a synced pattern instance. Use overrides to customize a synced pattern instance to suit its new context. Name this block to specify an override.":["Overrides are changes you make to a block within a synced pattern instance. Use overrides to customise a synced pattern instance to suit its new context. Name this block to specify an override."],"Enable overrides":["Enable overrides"],"Overrides":["Overrides"],"pattern (singular)\u0004Synced":["Synced"],"Pattern category renamed.":["Pattern category renamed."],"This category already exists. Please use a different name.":["This category already exists. Please use a different name."],"Please enter a new name for this category.":["Please enter a new name for this category."],"Pattern renamed":["Pattern renamed"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Duplicate pattern":["Duplicate pattern"],"Block name changed to: \"%s\".":["Block name changed to: \"%s\"."],"Unsynced pattern created: %s":["Unsynced pattern created: %s"],"Synced pattern created: %s":["Synced pattern created: %s"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"An error occurred while renaming the pattern.":["An error occurred while renaming the pattern."],"Manage patterns":["Manage patterns"],"Rename":["Rename"],"Duplicate":["Duplicate"],"Reset":["Reset"],"Detach":["Detach"],"Enable":["Enable"],"Add":["Add"],"Cancel":["Cancel"],"Name":["Name"],"Categories":["Categories"],"Save":["Save"]}},"comment":{"reference":"wp-includes\/js\/dist\/patterns.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json b/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json new file mode 100644 index 00000000..31a67490 --- /dev/null +++ b/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Search commands and settings":["Search commands and settings"],"Command suggestions":["Command suggestions"],"Command palette":["Command palette"],"Open the command palette.":["Open the command palette."],"No results found.":["No results found."]}},"comment":{"reference":"wp-includes\/js\/dist\/commands.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json b/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json new file mode 100644 index 00000000..070e1f1b --- /dev/null +++ b/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Pattern imported successfully!":["Pattern imported successfully!"],"Invalid pattern JSON file":["Invalid pattern JSON file"],"button label\u0004Import":["Import"],"Unknown error":["Unknown error"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"File":["File"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json b/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json new file mode 100644 index 00000000..3574373e --- /dev/null +++ b/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error occurred during the update process. Please try again.":["An error occurred during the update process. Please try again."],"Dependencies check failed: %s":["Dependencies check failed: %s"],"plugin\/plugins\u0004%s item":["%s item","%s items"],"plugin\u0004%s activation failed":["%s activation failed"],"Activation failed.":["Activation failed."],"Activation completed successfully.":["Activation completed successfully."],"plugin\u0004Activated!":["Activated!"],"plugin\u0004Activating %s":["Activating %s"],"Activating...":["Activating..."],"Activating... please wait.":["Activating... please wait."],"Activation failed: %s":["Activation failed: %s"],"plugin\u0004Cannot activate %1$s. %2$s":["Cannot activate %1$s. %2$s"],"Plugin dependencies check completed successfully.":["Plugin dependencies check completed successfully."],"Checking plugin dependencies... please wait.":["Checking plugin dependencies... please wait."],"plugin\u0004Activate":["Activate"],"plugin\u0004Network Activate":["Network activate"],"plugin\u0004Install Now":["Install now"],"Search Results":["Search Results"],"Search results for: %s":["Search results for: %s"],"The request could not be completed.":["The request could not be completed."],"Disabling...":["Disabling..."],"Enabling...":["Enabling..."],"Number of plugins found: %d":["Number of plugins found: %d"],"Caution: These themes may be active on other sites in the network. Are you sure you want to proceed?":["Caution: these themes may be active on other sites in the network. Are you sure you want to proceed?"],"Are you sure you want to delete the selected plugins and their data?":["Are you sure you want to delete the selected plugins and their data?"],"Are you sure you want to delete %s and its data?":["Are you sure you want to delete %s and its data?"],"Update canceled.":["Update cancelled."],"plugin\u0004Update %s now":["Update %s now"],"Updates may not complete if you navigate away from this page.":["Updates may not complete if you navigate away from this page."],"Connection lost or the server is busy. Please try again later.":["Connection lost or the server is busy. Please try again later."],"Deletion failed: %s":["Deletion failed: %s"],"theme\u0004Deleted!":["Deleted!"],"theme\u0004%s installation failed":["%s installation failed"],"theme\u0004Network Activate %s":["Network Activate %s"],"theme\u0004%s installed!":["%s installed!"],"theme\u0004Installing %s...":["Installing %s..."],"theme\u0004Updated!":["Updated!"],"Updating... please wait.":["Updating... please wait."],"plugin\u0004Deleted!":["Deleted!"],"Deleting...":["Deleting..."],"plugin\u0004Install %s now":["Install %s now"],"Importer installed successfully. Run importer<\/a>":["Importer installed successfully. Run importer<\/a>"],"plugin\u0004%s installation failed":["%s installation failed"],"Installation failed: %s":["Installation failed: %s"],"Installation completed successfully.":["Installation completed successfully."],"plugin\u0004Installed!":["Installed!"],"plugin\u0004%s installed!":["%s installed!"],"Installing... please wait.":["Installing... please wait."],"plugin\u0004Installing %s...":["Installing %s..."],"Installing...":["Installing..."],"plugin\u0004%s update failed.":["%s update failed."],"Update failed: %s":["Update failed: %s"],"Update completed successfully.":["Update completed successfully."],"plugin\u0004Updated!":["Updated!"],"plugin\u0004%s updated!":["%s updated!"],"Updating...":["Updating..."],"plugin\u0004Updating %s...":["Updating %s..."],"No plugins found. Try a different search.":["No plugins found. Try a different search."],"Enable auto-updates":["Enable auto-updates"],"Disable auto-updates":["Disable auto-updates"],"No plugins are currently available.":["No plugins are currently available."],"Auto-updates disabled":["Auto-updates disabled"],"Auto-updates enabled":["Auto-updates enabled"],"theme\u0004Activate":["Activate"],"plugin\u0004Network Activate %s":["Network Activate %s"],"plugin\u0004Activate %s":["Activate %s"],"Run Importer":["Run Importer"],"Run %s":["Run %s"],"%s update failed.":["%s update failed."],"%s theme successfully updated.":["%s theme successfully updated."],"%s plugin successfully updated.":["%s plugin successfully updated."],"plugin\u0004Active":["Active"],"Update failed.":["Update failed."],"theme\u0004Installed!":["Installed!"],"Are you sure you want to delete %s?":["Are you sure you want to delete %s?"],"Network Enable":["Network Enable"],"Update Now":["Update Now"],"Installation failed.":["Installation failed."],"You do not appear to have any plugins available at this time.":["You do not appear to have any plugins available at this time."],"%s update available":["%s update available","%s updates available"],"theme\u0004Activate %s":["Activate %s"],"Live Preview":["Live Preview"],"An error has occurred. Please reload the page and try again.":["An error has occurred. Please reload the page and try again."]}},"comment":{"reference":"wp-admin\/js\/updates.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json b/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json new file mode 100644 index 00000000..145b3b86 --- /dev/null +++ b/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Annotation":["Annotation"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json b/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json new file mode 100644 index 00000000..5c26fc8b --- /dev/null +++ b/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json b/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json new file mode 100644 index 00000000..438b3d59 --- /dev/null +++ b/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add non breaking space.":["Add non-breaking space."],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"Insert a link to a post or page.":["Insert a link to a post or page."],"https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/"],"New to the block editor?":["New to the block editor?"],"Get the Classic Widgets plugin.":["Get the Classic Widgets plugin."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/en-gb.wordpress.org\/plugins\/classic-widgets\/"],"Want to stick with the old widgets?":["Want to stick with the old widgets?"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favourite widgets still work flawlessly."],"Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site."],"Welcome to block Widgets":["Welcome to block widgets"],"Contain text cursor inside block deactivated":["Contain text cursor inside block deactivated"],"Contain text cursor inside block activated":["Contain text cursor inside block activated"],"Close inserter":["Close inserter"],"Aids screen readers by stopping text caret from leaving blocks.":["Aids screen readers by stopping text caret from leaving blocks."],"Preferences":["Preferences"],"Show more settings":["Show more settings"],"Contain text cursor inside block":["Contain text cursor inside block"],"Here's a detailed guide.":["Here's a detailed guide."],"Welcome Guide":["Welcome Guide"],"Keyboard shortcuts":["Keyboard shortcuts"],"Generic label for block inserter button\u0004Add block":["Add block"],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Add a block":["Add a block"],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Top toolbar":["Top toolbar"],"Got it":["Got it"],"Block Settings":["Block Settings"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Document tools":["Document tools"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"(opens in a new tab)":["(opens in a new tab)"],"Customizing":["Customising"],"Tools":["Tools"],"Widgets":["Widgets"],"Help":["Help"],"Redo":["Redo"],"Undo":["Undo"]}},"comment":{"reference":"wp-includes\/js\/dist\/customize-widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json b/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json new file mode 100644 index 00000000..569e5138 --- /dev/null +++ b/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Global Styles":["Global Styles"],"Widget types":["Widget types"],"Menu Item":["Menu Item"],"Comment":["Comment"],"Widget areas":["Widget areas"],"Site":["Site"],"Post Type":["Post Type"],"Taxonomy":["Taxonomy"],"Menu Location":["Menu Location","Menu Locations"],"Status":["Status"],"Menu":["Menu"],"User":["User"],"Base":["Base"],"Widgets":["Widgets"],"Themes":["Themes"],"(no title)":["(no title)"],"Media":["Media"],"Plugins":["Plugins"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-data.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json b/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json new file mode 100644 index 00000000..2eb5e0ad --- /dev/null +++ b/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Running additional tests... please wait.":["Running additional tests... please wait."],"All site health tests have finished running. There are items that should be addressed.":["All site health tests have finished running. There are items that should be addressed."],"All site health tests have finished running. Your site is looking good.":["All site health tests have finished running. Your site is looking good."],"Unavailable":["Unavailable"],"No details available":["No details available"],"A test is unavailable":["A test is unavailable"],"Should be improved":["Should be improved"],"Good":["Good"],"%s critical issue":["%s critical issue","%s critical issues"],"%s item with no issues detected":["%s item with no issues detected","%s items with no issues detected"],"%s recommended improvement":["%s recommended improvement","%s recommended improvements"],"Site information has been copied to your clipboard.":["Site information has been copied to your clipboard."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json b/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json new file mode 100644 index 00000000..f2e866c2 --- /dev/null +++ b/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Use as featured image":["Use as featured image"],"Saving\u2026":["Saving\u2026"],"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."],"Done":["Done"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json b/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json new file mode 100644 index 00000000..7bbeab5b --- /dev/null +++ b/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Screen Options updated.":["Screen Options updated."],"Drag boxes here":["Drag boxes here"],"Add boxes from the Screen Options menu":["Add boxes from the Screen Options menu"],"The boxes order has been saved.":["The boxes order has been saved."],"The box is on the last position":["The box is on the last position"],"The box is on the first position":["The box is on the first position"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json b/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json new file mode 100644 index 00000000..3a1e4b84 --- /dev/null +++ b/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Widget has been added to the selected sidebar":["Widget has been added to the selected sidebar"],"Saved":["Saved"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"Save":["Save"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json b/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json new file mode 100644 index 00000000..8f99232a --- /dev/null +++ b/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"All application passwords revoked.":["All application passwords revoked."],"Are you sure you want to revoke all passwords? This action cannot be undone.":["Are you sure you want to revoke all passwords? This action cannot be undone."],"Application password revoked.":["Application password revoked."],"Are you sure you want to revoke this password? This action cannot be undone.":["Are you sure you want to revoke this password? This action cannot be undone."],"Dismiss this notice.":["Dismiss this notice."]}},"comment":{"reference":"wp-admin\/js\/application-passwords.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json b/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json new file mode 100644 index 00000000..6bda63bb --- /dev/null +++ b/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"URL Slug":["URL Slug"],"Permalink saved":["Permalink saved"],"Published on:":["Published on:"],"Publish on:":["Publish on:"],"Schedule for:":["Schedule for:"],"Saving Draft\u2026":["Saving Draft\u2026"],"No more comments found.":["No more comments found."],"Show more comments":["Show more comments"],"post action\/button label\u0004Schedule":["Schedule"],"%1$s %2$s, %3$s at %4$s:%5$s":["%1$s %2$s, %3$s at %4$s:%5$s"],"Public, Sticky":["Public, Sticky"],"Privately Published":["Privately Published"],"Save as Pending":["Save as Pending"],"Password Protected":["Password Protected"],"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"Update":["Update"],"Public":["Public"],"Private":["Private"],"OK":["OK"],"Save Draft":["Save Draft"],"Cancel":["Cancel"],"Publish":["Publish"],"Published":["Published"]}},"comment":{"reference":"wp-admin\/js\/post.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json b/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json new file mode 100644 index 00000000..9f78ad1c --- /dev/null +++ b/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Are you sure you want to do this?\nThe comment changes you made will be lost.":["Are you sure you want to do this?\nThe comment changes you made will be lost."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["Are you sure you want to edit this comment?\nThe changes you made will be lost."],"Approve and Reply":["Approve and Reply"],"Comments (%s)":["Comments (%s)"],"Reply":["Reply"],"Comments":["Comments"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json b/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json new file mode 100644 index 00000000..861e0bf2 --- /dev/null +++ b/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Preference activated - %s":["Preference activated \u2013 %s"],"Preference deactivated - %s":["Preference deactivated \u2013 %s"],"Preferences":["Preferences"],"Back":["Back"]}},"comment":{"reference":"wp-includes\/js\/dist\/preferences.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json b/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json new file mode 100644 index 00000000..707cbf34 --- /dev/null +++ b/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Non breaking space":["Non-breaking space"],"https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/":["https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/"],"Mark as nofollow":["Mark as nofollow"],"Text direction":["Text direction"],"A valid language attribute, like \"en\" or \"fr\".":["A valid language attribute, like \"en\" or \"fr\"."],"Leave empty if decorative.":["Leave empty if decorative."],"Clear Unknown Formatting":["Clear Unknown Formatting"],"Create page: %s<\/mark>":["Create page: %s<\/mark>"],"Highlight":["Highlight"],"Keyboard input":["Keyboard input"],"Inline code":["Inline code"],"Describe the purpose of the image.":["Describe the purpose of the image."],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"Inline image":["Inline image"],"media":["media"],"photo":["photo"],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"Link inserted.":["Link inserted."],"Left to right":["Left to right"],"Right to left":["Right to left"],"Link":["Link"],"Background":["Background"],"Superscript":["Superscript"],"Subscript":["Subscript"],"Strikethrough":["Strikethrough"],"Underline":["Underline"],"Italic":["Italic"],"Bold":["Bold"],"Language":["Language"],"Text":["Text"],"Width":["Width"],"Alternative text":["Alternative text"],"Apply":["Apply"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json b/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json new file mode 100644 index 00000000..6fd35d98 --- /dev/null +++ b/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Legacy widget":["Legacy widget"],"Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas.":["Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas."],"Widget Group":["Widget group"],"The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details.":["The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details."],"Move to widget area":["Move to widget area"],"Widget is missing.":["Widget is missing."],"No preview available.":["No preview available."],"Legacy Widget Preview":["Legacy Widget Preview"],"Select widget":["Select widget"],"Convert to blocks":["Convert to blocks"],"Move to":["Move to"],"Legacy Widget":["Legacy Widget"],"There are no widgets available.":["There are no widgets available."],"Save":["Save"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json b/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json new file mode 100644 index 00000000..a1453212 --- /dev/null +++ b/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"An error has occurred. Please reload the page and try again.":["An error has occurred. Please reload the page and try again."]}},"comment":{"reference":"wp-admin\/js\/media.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json b/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json new file mode 100644 index 00000000..2b6a1880 --- /dev/null +++ b/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Plugin details":["Plugin details"],"Plugin: %s":["Plugin: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json b/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json new file mode 100644 index 00000000..59b364dd --- /dev/null +++ b/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Screen Options updated.":["Screen Options updated."],"%1$s is deprecated since version %2$s with no alternative available.":["%1$s is deprecated since version %2$s with no alternative available."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["%1$s is deprecated since version %2$s! Use %3$s instead."],"Please select at least one item to perform this action on.":["Please select at least one item to perform this action on."],"Expand Main menu":["Expand Main menu"],"Dismiss this notice.":["Dismiss this notice."],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete."],"Collapse Main menu":["Collapse Main menu"]}},"comment":{"reference":"wp-admin\/js\/common.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json b/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json new file mode 100644 index 00000000..6c771346 --- /dev/null +++ b/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error occurred while processing your request. Please try again later.":["An error occurred while processing your request. Please try again later."],"Sorry, you are not allowed to do that.":["Sorry, you are not allowed to do that."]}},"comment":{"reference":"wp-admin\/js\/tags.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json b/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json new file mode 100644 index 00000000..1fce0e01 --- /dev/null +++ b/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Hide":["Hide"],"Hide password":["Hide password"],"Show password":["Show password"],"Show":["Show"]}},"comment":{"reference":"wp-admin\/js\/password-toggle.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json b/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json new file mode 100644 index 00000000..f63627ca --- /dev/null +++ b/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%d result found. Use up and down arrow keys to navigate.":["%d result found. Use up and down arrow keys to navigate.","%d results found. Use up and down arrow keys to navigate."],"Term selected.":["Term selected."],"tag delimiter\u0004,":[","],"No results found.":["No results found."]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json b/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json new file mode 100644 index 00000000..e49c8461 --- /dev/null +++ b/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"input control\u0004Show %s":["Show %s"],"Border color picker. The currently selected color has a value of \"%s\".":["Border colour picker. The currently selected colour has a value of \"%s\"."],"Border color picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Border colour picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Border color and style picker. The currently selected color has a value of \"%s\".":["Border colour and style picker. The currently selected colour has a value of \"%s\"."],"Border color and style picker. The currently selected color has a value of \"%1$s\". The currently selected style is \"%2$s\".":["Border colour and style picker. The currently selected colour has a value of \"%1$s\". The currently selected style is \"%2$s\"."],"Border color and style picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Border colour and style picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Border color and style picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\". The currently selected style is \"%3$s\".":["Border colour and style picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\". The currently selected style is \"%3$s\"."],"%s items selected":["%s items selected"],"Select AM or PM":["Select AM or PM"],"Select an item":["Select an item"],"No items found":["No items found"],"Remove color: %s":["Remove colour: %s"],"authors\u0004All":["All"],"categories\u0004All":["All"],"Edit: %s":["Edit: %s"],"Left and right sides":["Left and right sides"],"Top and bottom sides":["Top and bottom sides"],"Right side":["Right side"],"Left side":["Left side"],"Bottom side":["Bottom side"],"Top side":["Top side"],"Large viewport largest dimension (lvmax)":["Large viewport largest dimension (lvmax)"],"Small viewport largest dimension (svmax)":["Small viewport largest dimension (svmax)"],"Dynamic viewport largest dimension (dvmax)":["Dynamic viewport largest dimension (dvmax)"],"Dynamic viewport smallest dimension (dvmin)":["Dynamic viewport smallest dimension (dvmin)"],"Dynamic viewport width or height (dvb)":["Dynamic viewport width or height (dvb)"],"Dynamic viewport width or height (dvi)":["Dynamic viewport width or height (dvi)"],"Dynamic viewport height (dvh)":["Dynamic viewport height (dvh)"],"Dynamic viewport width (dvw)":["Dynamic viewport width (dvw)"],"Large viewport smallest dimension (lvmin)":["Large viewport smallest dimension (lvmin)"],"Large viewport width or height (lvb)":["Large viewport width or height (lvb)"],"Large viewport width or height (lvi)":["Large viewport width or height (lvi)"],"Large viewport height (lvh)":["Large viewport height (lvh)"],"Large viewport width (lvw)":["Large viewport width (lvw)"],"Small viewport smallest dimension (svmin)":["Small viewport smallest dimension (svmin)"],"Small viewport width or height (svb)":["Small viewport width or height (svb)"],"Viewport smallest size in the block direction (svb)":["Viewport smallest size in the block direction (svb)"],"Small viewport width or height (svi)":["Small viewport width or height (svi)"],"Viewport smallest size in the inline direction (svi)":["Viewport smallest size in the inline direction (svi)"],"Small viewport height (svh)":["Small viewport height (svh)"],"Small viewport width (svw)":["Small viewport width (svw)"],"No color selected":["No colour selected"],"Notice":["Notice"],"Error notice":["Error notice"],"Information notice":["Information notice"],"Warning notice":["Warning notice"],"Focal point top position":["Focal point top position"],"Focal point left position":["Focal point left position"],"Scrollable section":["Scrollable section"],"Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.":["Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.","Initial %d results loaded. Type to filter all available results. Use up and down arrow keys to navigate."],"Extra Extra Large":["Extra Extra Large"],"Show details":["Show details"],"Decrement":["Decrement"],"Increment":["Increment"],"All options reset":["All options reset"],"All options are currently hidden":["All options are currently hidden"],"%s is now visible":["%s is now visible"],"%s hidden and reset to default":["%s hidden and reset to default"],"%s reset to default":["%s reset to default"],"XXL":["XXL"],"XL":["XL"],"L":["L"],"M":["M"],"S":["S"],"Unset":["Unset"],"%1$s. Selected":["%1$s. selected"],"%1$s. Selected. There is %2$d event":["%1$s. Selected. There is %2$d event","%1$s. Selected. There are %2$d events"],"View next month":["View next month"],"View previous month":["View previous month"],"Border color and style picker":["Border colour and style picker"],"Loading \u2026":["Loading \u2026"],"All sides":["All sides"],"Bottom border":["Bottom border"],"Right border":["Right border"],"Left border":["Left border"],"Top border":["Top border"],"Border color picker.":["Border colour picker."],"Border color and style picker.":["Border colour and style picker."],"Custom color picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Custom colour picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Link sides":["Link sides"],"Unlink sides":["Unlink sides"],"Reset all":["Reset all"],"Button label to reveal tool panel options\u0004%s options":["%s options"],"Hide and reset %s":["Hide and reset %s"],"Reset %s":["Reset %s"],"Search %s":["Search %s"],"Set custom size":["Set custom size"],"Use size preset":["Use size preset"],"Currently selected font size: %s":["Currently selected font size: %s"],"Highlights":["Highlights"],"Size of a UI element\u0004Extra Large":["Extra Large"],"Size of a UI element\u0004Large":["Large"],"Size of a UI element\u0004Medium":["Medium"],"Size of a UI element\u0004Small":["Small"],"Size of a UI element\u0004None":["None"],"Currently selected: %s":["Currently selected: %s"],"Reset colors":["Reset colours"],"Reset gradient":["Reset gradient"],"Remove all colors":["Remove all colours"],"Remove all gradients":["Remove all gradients"],"Color options":["Colour options"],"Gradient options":["Gradient options"],"Add color":["Add colour"],"Add gradient":["Add gradient"],"Gradient name":["Gradient name"],"Color %s":["Colour %s"],"Color format":["Colour format"],"Hex color":["Hex colour"],"Invalid item":["Invalid item"],"Shadows":["Shadows"],"Duotone: %s":["Duotone: %s"],"Duotone code: %s":["Duotone code: %s"],"%1$s. There is %2$d event":["%1$s. There is %2$d event","%1$s. There are %2$d events"],"Relative to root font size (rem)\u0004rems":["rems"],"Relative to parent font size (em)\u0004ems":["ems"],"Points (pt)":["Points (pt)"],"Picas (pc)":["Picas (pc)"],"Inches (in)":["Inches (in)"],"Millimeters (mm)":["Millimetres (mm)"],"Centimeters (cm)":["Centimetres (cm)"],"x-height of the font (ex)":["x-height of the font (ex)"],"Width of the zero (0) character (ch)":["Width of the zero (0) character (ch)"],"Viewport largest dimension (vmax)":["Viewport largest dimension (vmax)"],"Viewport smallest dimension (vmin)":["Viewport smallest dimension (vmin)"],"Percent (%)":["Percent (%)"],"Border width":["Border width"],"Dotted":["Dotted"],"Dashed":["Dashed"],"Viewport height (vh)":["Viewport height (vh)"],"Viewport width (vw)":["Viewport width (vw)"],"Relative to root font size (rem)":["Relative to root font size (rem)"],"Relative to parent font size (em)":["Relative to parent font size (em)"],"Pixels (px)":["Pixels (px)"],"Percentage (%)":["Percentage (%)"],"Close search":["Close search"],"Search in %s":["Search in %s"],"Select unit":["Select unit"],"Radial":["Radial"],"Linear":["Linear"],"Media preview":["Media preview"],"Coordinated Universal Time":["Coordinated Universal Time"],"Color name":["Colour name"],"Reset search":["Reset search"],"Box Control":["Box Control"],"Alignment Matrix Control":["Alignment Matrix Control"],"Bottom Center":["Bottom Centre"],"Center Right":["Centre Right"],"Center Left":["Centre Left"],"Top Center":["Top Centre"],"Solid":["Solid"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"Remove Control Point":["Remove Control Point"],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s%% with color code %2$s.":["Gradient control point at position %1$s%% with colour code %2$s."],"Extra Large":["Extra Large"],"Small":["Small"],"Angle":["Angle"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Copied!":["Copied!"],"%d result found.":["%d result found.","%d results found."],"Number of items":["Number of items"],"Category":["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to newest":["Oldest to newest"],"Newest to oldest":["Newest to oldest"],"Order by":["Order by"],"Dismiss this notice":["Dismiss this notice"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Add item":["Add item"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Color code: %s":["Colour code: %s"],"Custom color picker":["Custom colour picker"],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"Time":["Time"],"Day":["Day"],"Month":["Month"],"Date":["Date"],"Hours":["Hours"],"Item selected.":["Item selected."],"Previous":["Previous"],"Year":["Year"],"Custom Size":["Custom Size"],"Back":["Back"],"Style":["Style"],"Large":["Large"],"Drop files to upload":["Drop files to upload"],"Clear":["Clear"],"Mixed":["Mixed"],"Custom":["Custom"],"Next":["Next"],"PM":["PM"],"AM":["AM"],"Bottom Right":["Bottom Right"],"Bottom Left":["Bottom Left"],"Top Right":["Top Right"],"Top Left":["Top Left"],"Type":["Type"],"Top":["Top"],"Copy":["Copy"],"Font size":["Font size"],"Calendar":["Calendar"],"No results found.":["No results found."],"Default":["Default"],"Close":["Close"],"Search":["Search"],"OK":["OK"],"Size":["Size"],"Medium":["Medium"],"Center":["Centre"],"Left":["Left"],"Cancel":["Cancel"],"Done":["Done"],"None":["None"],"Categories":["Categories"],"Author":["Author"]}},"comment":{"reference":"wp-includes\/js\/dist\/components.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json b/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json new file mode 100644 index 00000000..14e225a8 --- /dev/null +++ b/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Uncategorized":["Uncategorised"],"Enlarge on click":["Enlarge on click"],"Tools provide different sets of interactions for blocks. Choose between simplified content tools (Write) and advanced visual editing tools (Design).":["Tools provide different sets of interactions for blocks. Choose between simplified content tools (Write) and advanced visual editing tools (Design)."],"Edit layout and styles.":["Edit layout and styles."],"Focus on content.":["Focus on content."],"Choose whether to use the same value for all screen sizes or a unique value for each screen size.":["Choose whether to use the same value for all screen sizes or a unique value for each screen size."],"Drag and drop a video, upload, or choose from your library.":["Drag and drop a video, upload, or choose from your library."],"Drag and drop an image, upload, or choose from your library.":["Drag and drop an image, upload, or choose from your library."],"Drag and drop an audio file, upload, or choose from your library.":["Drag and drop an audio file, upload, or choose from your library."],"Drag and drop an image or video, upload, or choose from your library.":["Drag and drop an image or video, upload, or choose from your library."],"%d%%":["%d%%"],"Image cropped and rotated.":["Image cropped and rotated."],"Image rotated.":["Image rotated."],"Image cropped.":["Image cropped."],"%d block moved.":["%d block moved.","%d blocks moved."],"Shuffle styles":["Shuffle styles"],"Change design":["Change design"],"action: convert blocks to grid\u0004Grid":["Grid"],"action: convert blocks to stack\u0004Stack":["Stack"],"action: convert blocks to row\u0004Row":["Row"],"action: convert blocks to group\u0004Group":["Group"],"Lock removal":["Lock removal"],"Lock movement":["Lock movement"],"Lock editing":["Lock editing"],"Select the features you want to lock":["Select the features you want to lock"],"Full height":["Full height"],"Block \"%s\" can't be inserted.":["Block \"%s\" can't be inserted."],"Styles copied to clipboard.":["Styles copied to clipboard."],"Paste the selected block(s).":["Paste the selected block(s)."],"Cut the selected block(s).":["Cut the selected block(s)."],"Copy the selected block(s).":["Copy the selected block(s)."],"file name\u0004unnamed":["unnamed"],"Nested blocks will fill the width of this container.":["Nested blocks will fill the width of this container."],"verb\u0004Upload":["Upload"],"Link information":["Link information"],"Manage link":["Manage link"],"You are currently in Design mode.":["You are currently in Design mode."],"You are currently in Write mode.":["You are currently in Write mode."],"Starter content":["Starter content"],"spacing\u0004%1$s %2$s":["%1$s %2$s"],"font\u0004%1$s %2$s":["%1$s %2$s"],"Empty %s; start writing to edit its value":["Empty %s; start writing to edit its value"],"Unlock content locked blocks\u0004Modify":["Modify"],"Attributes connected to custom fields or other dynamic data.":["Attributes connected to custom fields or other dynamic data."],"Drag and drop patterns into the canvas.":["Drag and drop patterns into the canvas."],"Drop pattern.":["Drop pattern."],"Layout type":["Layout type"],"Block with fixed width in flex layout\u0004Fixed":["Fixed"],"Block with expanding width in flex layout\u0004Grow":["Grow"],"Intrinsic block width in flex layout\u0004Fit":["Fit"],"Background size, position and repeat options.":["Background size, position, and repeat options."],"Grid item position":["Grid item position"],"Grid items are placed automatically depending on their order.":["Grid items are placed automatically depending on their order."],"Grid items can be manually placed in any position on the grid.":["Grid items can be manually placed in any position on the grid."],"font weight\u0004Extra Black":["Extra Black"],"font style\u0004Oblique":["Oblique"],"This block is locked.":["This block is locked."],"Selected blocks are grouped.":["Selected blocks are grouped."],"Generic label for pattern inserter button\u0004Add pattern":["Add pattern"],"block toolbar button label and description\u0004These blocks are connected.":["These blocks are connected."],"block toolbar button label and description\u0004This block is connected.":["This block is connected."],"Create a group block from the selected multiple blocks.":["Create a group block from the selected multiple blocks."],"Collapse all other items.":["Collapse all other items."],"This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern.":["This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern."],"Grid placement":["Grid placement"],"Row span":["Row span"],"Column span":["Column span"],"Grid span":["Grid span"],"Background image width":["Background image width"],"Size option for background image control\u0004Tile":["Tile"],"Size option for background image control\u0004Contain":["Contain"],"Size option for background image control\u0004Cover":["Cover"],"No background image selected":["No background image selected"],"Background image: %s":["Background image: %s"],"Add background image":["Add background image"],"Image has a fixed width.":["Image has a fixed width."],"Manual":["Manual"],"Blocks can't be inserted into other blocks with bindings":["Blocks can't be inserted into other blocks with bindings"],"Focal point":["Focal point"],"Be careful!":["Be careful!"],"%s.":["%s."],"%s styles.":["%s styles."],"%s settings.":["%s settings."],"%s element.":["%s element.","%s elements."],"%s block.":["%s block.","%s blocks."],"Disable enlarge on click":["Disable enlarge on click"],"Scales the image with a lightbox effect":["Scales the image with a lightbox effect"],"Scale the image with a lightbox effect.":["Scale the image with a lightbox effect."],"Link CSS class":["Link CSS class"],"Link to attachment page":["Link to attachment page"],"Link to image file":["Link to image file"],"screen sizes\u0004All":["All"],"Locked":["Locked"],"Multiple blocks selected":["Multiple blocks selected"],"No transforms.":["No transforms."],"Select parent block: %s":["Select parent block: %s"],"patterns\u0004Not synced":["Not synced"],"patterns\u0004Synced":["Synced"],"Manage the inclusion of blocks added automatically by plugins.":["Manage the inclusion of blocks added automatically by plugins."],"Border & Shadow":["Border and shadow"],"Drop shadows":["Drop shadows"],"Drop shadow":["Drop shadow"],"Repeat":["Repeat"],"Link copied to clipboard.":["Link copied to clipboard."],"patterns\u0004All":["All"],"Image settings\u0004Settings":["Settings"],"Ungroup":["Ungroup"],"Block name changed to: \"%s\".":["Block name changed to: \"%s\"."],"Block name reset to: \"%s\".":["Block name reset to: \"%s\"."],"Drop to upload":["Drop to upload"],"Background image":["Background image"],"Only images can be used as a background image.":["Only images can be used as a background image."],"No results found":["No results found"],"%d category button displayed.":["%d category button displayed.","%d category buttons displayed."],"https:\/\/wordpress.org\/patterns\/":["https:\/\/wordpress.org\/patterns\/"],"Patterns are available from the WordPress.org Pattern Directory<\/Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced.":["Patterns are available from the WordPress.org Pattern Directory<\/Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced."],"Theme & Plugins":["Theme & Plugins"],"Pattern Directory":["Pattern Directory"],"%d pattern found":["%d pattern found","%d patterns found"],"Select text across multiple blocks.":["Select text across multiple blocks."],"Last page":["Last page"],"paging\u0004%1$s of %2$s":["%1$s of %2$s"],"First page":["First page"],"Image is contained without distortion.":["Image is contained without distortion."],"Image covers the space evenly.":["Image covers the space evenly."],"Image size option for resolution control\u0004Full Size":["Full Size"],"Image size option for resolution control\u0004Large":["Large"],"Image size option for resolution control\u0004Medium":["Medium"],"Image size option for resolution control\u0004Thumbnail":["Thumbnail"],"Scale down the content to fit the space if it is too big. Content that is too small will have additional padding.":["Scale down the content to fit the space if it is too big. Content that is too small will have additional padding."],"Scale option for dimensions control\u0004Scale down":["Scale down"],"Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding.":["Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding."],"Scale option for dimensions control\u0004None":["None"],"Fill the space by clipping what doesn't fit.":["Fill the space by clipping what doesn't fit."],"Scale option for dimensions control\u0004Cover":["Cover"],"Fit the content to the space without clipping.":["Fit the content to the space without clipping."],"Scale option for dimensions control\u0004Contain":["Contain"],"Fill the space by stretching the content.":["Fill the space by stretching the content."],"Scale option for dimensions control\u0004Fill":["Fill"],"Aspect ratio":["Aspect ratio"],"Aspect ratio option for dimensions control\u0004Custom":["Custom"],"Aspect ratio option for dimensions control\u0004Original":["Original"],"%d Block":["%d Block","%d Blocks"],"Suggestions":["Suggestions"],"Additional link settings\u0004Advanced":["Advanced"],"Resolution":["Resolution"],"https:\/\/wordpress.org\/documentation\/article\/customize-date-and-time-format\/":["https:\/\/wordpress.org\/documentation\/article\/customize-date-and-time-format\/"],"Example:":["Example:"],"Change level":["Change level"],"Position: %s":["Position: %s"],"Name for applying graphical effects\u0004Filters":["Filters"],"The block will stick to the scrollable area of the parent %s block.":["The block will stick to the scrollable area of the parent %s block."],"Add after":["Add after"],"Add before":["Add before"],"My patterns":["My patterns"],"https:\/\/wordpress.org\/documentation\/article\/page-jumps\/":["https:\/\/wordpress.org\/documentation\/article\/page-jumps\/"],"Minimum column width":["Minimum column width"],"Grid":["Grid"],"Horizontal & vertical":["Horizontal & vertical"],"Name for the value of the CSS position property\u0004Fixed":["Fixed"],"Name for the value of the CSS position property\u0004Sticky":["Sticky"],"There is an error with your CSS structure.":["There is an error with your CSS structure."],"Shadow":["Shadow"],"Append to %1$s block at position %2$d, Level %3$d":["Append to %1$s block at position %2$d, Level %3$d"],"%s block inserted":["%s block inserted"],"Format tools":["Format tools"],"Currently selected position: %s":["Currently selected position: %s"],"Position":["Position"],"The block will not move when the page is scrolled.":["The block will not move when the page is scrolled."],"The block will stick to the top of the window instead of scrolling.":["The block will stick to the top of the window instead of scrolling."],"Sticky":["Sticky"],"Paste styles":["Paste styles"],"Copy styles":["Copy styles"],"Pasted styles to %d blocks.":["Pasted styles to %d blocks."],"Pasted styles to %s.":["Pasted styles to %s."],"Unable to paste styles. Block styles couldn't be found within the copied content.":["Unable to paste styles. Block styles couldn't be found within the copied content."],"Unable to paste styles. Please allow browser clipboard permissions before continuing.":["Unable to paste styles. Please allow browser clipboard permissions before continuing."],"Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers.":["Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers."],"Media List":["Media List"],"Image inserted.":["Image inserted."],"Image uploaded and inserted.":["Image uploaded and inserted."],"External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation.":["External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation."],"This image cannot be uploaded to your Media Library, but it can still be inserted as an external image.":["This image cannot be uploaded to your Media Library, but it can still be inserted as an external image."],"Insert external image":["Insert external image"],"Report %s":["Report %s"],"Pattern":["Pattern"],"Go to parent Navigation block":["Go to parent Navigation block"],"Stretch items":["Stretch items"],"Block vertical alignment setting\u0004Space between":["Space between"],"Block vertical alignment setting\u0004Stretch to fill":["Stretch to fill"],"Fixed":["Fixed"],"Fit contents.":["Fit contents."],"Specify a fixed height.":["Specify a fixed height."],"Specify a fixed width.":["Specify a fixed width."],"Stretch to fill available space.":["Stretch to fill available space."],"Move %1$d blocks from position %2$d left by one place":["Move %1$d blocks from position %2$d left by one place"],"Move %1$d blocks from position %2$d down by one place":["Move %1$d blocks from position %2$d down by one place"],"%s: Sorry, you are not allowed to upload this file type.":["%s: Sorry, you are not allowed to upload this file type."],"Hover":["Hover"],"H6":["H6"],"H5":["H5"],"H4":["H4"],"H3":["H3"],"H2":["H2"],"H1":["H1"],"Set the width of the main content area.":["Set the width of the main content area."],"Unset":["Unset"],"Now":["Now"],"short date format without the year\u0004M j":["M j"],"Nested blocks use content width with options for full and wide widths.":["Nested blocks use content width with options for full and wide widths."],"Inner blocks use content width":["Inner blocks use content width"],"Font":["Font"],"Apply to all blocks inside":["Apply to all blocks inside"],"Blocks cannot be moved right as they are already are at the rightmost position":["Blocks cannot be moved right as they are already are at the rightmost position"],"Blocks cannot be moved left as they are already are at the leftmost position":["Blocks cannot be moved left as they are already are at the leftmost position"],"All blocks are selected, and cannot be moved":["All blocks are selected, and cannot be moved"],"Constrained":["Constrained"],"Spacing control":["Spacing control"],"Custom (%s)":["Custom (%s)"],"You are currently in zoom-out mode.":["You are currently in zoom-out mode."],"Close Block Inserter":["Close Block Inserter"],"Link sides":["Link sides"],"Unlink sides":["Unlink sides"],"Select the size of the source image.":["Select the size of the source image."],"Use featured image":["Use featured image"],"Delete selection.":["Delete selection."],"Link is empty":["Link is empty"],"Enter a date or time format string<\/Link>.":["Enter a date or time format string<\/Link>."],"Custom format":["Custom format"],"Choose a format":["Choose a format"],"Enter your own date format":["Enter your own date format"],"long date format\u0004F j, Y":["F j, Y"],"medium date format with time\u0004M j, Y g:i A":["j M Y g:i A"],"medium date format\u0004M j, Y":["j M Y"],"short date format with time\u0004n\/j\/Y g:i A":["j\/n\/Y g:i A"],"short date format\u0004n\/j\/Y":["j\/n\/Y"],"Default format":["Default format"],"Date format":["Date format"],"Transform to %s":["Transform to %s"],"%s blocks deselected.":["%s blocks deselected."],"%s deselected.":["%s deselected."],"Transparent text may be hard for people to read.":["Transparent text may be hard for people to read."],"Select parent block (%s)":["Select parent block (%s)"],"Lock":["Lock"],"Unlock":["Unlock"],"Lock all":["Lock all"],"Lock %s":["Lock %s"],"Add default block":["Add default block"],"Alignment option\u0004None":["None"],"font weight\u0004Black":["Black"],"font weight\u0004Extra Bold":["Extra Bold"],"font weight\u0004Bold":["Bold"],"font weight\u0004Semi Bold":["Semi Bold"],"font weight\u0004Medium":["Medium"],"font weight\u0004Regular":["Regular"],"font weight\u0004Light":["Light"],"font weight\u0004Extra Light":["Extra Light"],"font weight\u0004Thin":["Thin"],"font style\u0004Italic":["Italic"],"font style\u0004Regular":["Regular"],"Set custom size":["Set custom size"],"Use size preset":["Use size preset"],"Rename":["Rename"],"link color":["link colour"],"Elements":["Elements"],"%d block is hidden.":["%d block is hidden.","%d blocks are hidden."],"Explore all patterns":["Explore all patterns"],"Block spacing":["Block spacing"],"Letter spacing":["Letter spacing"],"Radius":["Radius"],"Link radii":["Link radii"],"Unlink radii":["Unlink radii"],"Bottom right":["Bottom right"],"Bottom left":["Bottom left"],"Top right":["Top right"],"Top left":["Top left"],"Max %s wide":["Maximum %s wide"],"Flow":["Flow"],"Orientation":["Orientation"],"Allow to wrap to multiple lines":["Allow to wrap to multiple lines"],"Justification":["Justification"],"Flex":["Flex"],"Currently selected font appearance: %s":["Currently selected font appearance: %s"],"Currently selected font style: %s":["Currently selected font style: %s"],"Currently selected font weight: %s":["Currently selected font weight: %s"],"No selected font appearance":["No selected font appearance"],"Create a two-tone color effect without losing your original image.":["Create a two-tone colour effect without losing your original image."],"Displays more block tools":["Displays more block tools"],"Indicates this palette is created by the user.\u0004Custom":["Custom"],"Indicates this palette comes from WordPress.\u0004Default":["Default"],"Indicates this palette comes from the theme.\u0004Theme":["Theme"],"No preview available.":["No preview available."],"Space between items":["Space between items"],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Carousel view":["Carousel view"],"Next pattern":["Next pattern"],"Previous pattern":["Previous pattern"],"Choose":["Choose"],"Patterns list":["Patterns list"],"Type \/ to choose a block":["Type \/ to choose a block"],"Use left and right arrow keys to move through blocks":["Use left and right arrow keys to move through blocks"],"Customize the width for all elements that are assigned to the center or wide columns.":["Customise the width for all elements that are assigned to the centre or wide columns."],"Layout":["Layout"],"Apply duotone filter":["Apply duotone filter"],"Duotone":["Duotone"],"Margin":["Margin"],"Vertical":["Vertical"],"Horizontal":["Horizontal"],"Change items justification":["Change items justification"],"Editor canvas":["Editor canvas"],"Block vertical alignment setting\u0004Align bottom":["Align bottom"],"Block vertical alignment setting\u0004Align middle":["Align middle"],"Block vertical alignment setting\u0004Align top":["Align top"],"Transform to variation":["Transform to variation"],"More":["More"],"Drag":["Drag"],"Block patterns":["Block patterns"],"Font style":["Font style"],"Font weight":["Font weight"],"Letter case":["Letter case"],"Capitalize":["Capitalise"],"Lowercase":["Lower case"],"Uppercase":["Upper case"],"Decoration":["Decoration"],"Add an anchor":["Add an anchor"],"Captions":["Captions"],"Appearance":["Appearance"],"Create: %s<\/mark>":["Create: %s<\/mark>"],"Block pattern \"%s\" inserted.":["Block pattern \"%s\" inserted."],"Filter patterns":["Filter patterns"],"Rotate":["Rotate"],"Zoom":["Zoom"],"Could not edit image. %s":["Could not edit image. %s"],"Portrait":["Portrait"],"Landscape":["Landscape"],"Aspect Ratio":["Aspect Ratio"],"Design":["Design"],"Move the selected block(s) down.":["Move the selected block(s) down."],"Move the selected block(s) up.":["Move the selected block(s) up."],"Current media URL:":["Current media URL:"],"Creating":["Creating"],"An unknown error occurred during creation. Please try again.":["An unknown error occurred during creation. Please try again."],"Image size presets":["Image size presets"],"Block variations":["Block variations"],"Block navigation structure":["Block navigation structure"],"Block %1$d of %2$d, Level %3$d.":["Block %1$d of %2$d, Level %3$d."],"Moved %d block to clipboard.":["Moved %d block to clipboard.","Moved %d blocks to clipboard."],"Copied %d block to clipboard.":["Copied %d block to clipboard.","Copied %d blocks to clipboard."],"Moved \"%s\" to clipboard.":["Moved \"%s\" to clipboard."],"Copied \"%s\" to clipboard.":["Copied \"%s\" to clipboard."],"Browse all":["Browse all"],"Browse all. This will open the main inserter panel in the editor toolbar.":["Browse all. This will open the main inserter panel in the editor toolbar."],"A tip for using the block editor":["A tip for using the block editor"],"Patterns":["Patterns"],"%d block added.":["%d block added.","%d blocks added"],"Change a block's type by pressing the block icon on the toolbar.":["Change a block's type by pressing the block icon on the toolbar."],"Drag files into the editor to automatically insert media blocks.":["Drag files into the editor to automatically insert media blocks."],"Outdent a list by pressing backspace<\/kbd> at the beginning of a line.":["Outdent a list by pressing backspace<\/kbd> at the beginning of a line."],"Indent a list by pressing space<\/kbd> at the beginning of a line.":["Indent a list by pressing space<\/kbd> at the beginning of a line."],"Open Colors Selector":["Open colours selector"],"Change matrix alignment":["Change matrix alignment"],"Spacing":["Spacing"],"Padding":["Padding"],"Typography":["Typography"],"Line height":["Line height"],"Block %1$s is at the beginning of the content and can\u2019t be moved left":["Block %1$s is at the beginning of the content and can\u2019t be moved left"],"Block %1$s is at the beginning of the content and can\u2019t be moved up":["Block %1$s is at the beginning of the content and can\u2019t be moved up"],"Block %1$s is at the end of the content and can\u2019t be moved left":["Block %1$s is at the end of the content and can\u2019t be moved left"],"Block %1$s is at the end of the content and can\u2019t be moved down":["Block %1$s is at the end of the content and can\u2019t be moved down"],"Move %1$s block from position %2$d right to position %3$d":["Move %1$s block from position %2$d right to position %3$d"],"Move %1$s block from position %2$d left to position %3$d":["Move %1$s block from position %2$d left to position %3$d"],"Use the same %s on all screen sizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Open Media Library":["Open Media Library"],"The media file has been replaced":["The media file has been replaced"],"Search or type URL":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Select a variation to start with:":["Select a variation to start with:"],"Choose variation":["Choose variation"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Multiple selected blocks":["Multiple selected blocks"],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"Block breadcrumb":["Block breadcrumb"],"Gradient":["Gradient"],"Grid view":["Grid view"],"List view":["List view"],"Move right":["Move right"],"Move left":["Move left"],"Link rel":["Link rel"],"Border radius":["Border radius"],"Open in new tab":["Open in new tab"],"Group":["Group"],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014 without spaces \u2014 to make a unique web address just for this block, called an \u201canchor\u201d. Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2013 without spaces \u2013 to make a unique web address just for this block, called an \u201canchor\u201d. Then, you\u2019ll be able to link directly to this section of your page."],"Skip":["Skip"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"Add a block":["Add a block"],"While writing, you can press \/<\/kbd> to quickly insert new blocks.":["While writing, you can press \/<\/kbd> to quickly insert new blocks."],"Vivid purple":["Vivid purple"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Ungrouping blocks from within a grouping block back into individual blocks within the Editor\u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Change block type or style":["Change block type or style"],"block style\u0004Default":["Default"],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"Block tools":["Block Tools"],"%s block selected.":["%s block selected.","%s blocks selected."],"Align text right":["Align text right"],"Align text center":["Align text centre"],"Align text left":["Align text left"],"Write":["Write"],"Heading":["Heading"],"Heading %d":["Heading %d"],"Text alignment":["Text alignment"],"Edit URL":["Edit URL"],"Fixed background":["Fixed background"],"Button":["Button"],"This block can only be used once.":["This block can only be used once."],"Find original":["Find original"],"Document":["Document"],"%d block":["%d block","%d blocks"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Options":["Options"],"%s: This file is empty.":["%s: This file is empty."],"%s: Sorry, this file type is not supported here.":["%s: Sorry, this file type is not supported here."],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"Cyan bluish gray":["Cyan bluish grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Additional CSS class(es)":["Additional CSS class(es)"],"HTML anchor":["HTML anchor"],"Link settings":["Link settings"],"Skip to the selected block":["Skip to the selected block"],"Copy link":["Copy link"],"no title":["no title"],"Paste or type URL":["Paste or type URL"],"blocks\u0004Most used":["Most used"],"Available block types":["Available block types"],"Search for a block":["Search for a block"],"%d result found.":["%d result found.","%d results found."],"Add %s":["Add %s"],"Attempt recovery":["Attempt recovery"],"This color combination may be hard for people to read. Try using a brighter background color and\/or a darker %s.":["This colour combination may be hard for people to read. Try using a brighter background colour and\/or a darker %s."],"This color combination may be hard for people to read. Try using a darker background color and\/or a brighter %s.":["This colour combination may be hard for people to read. Try using a darker background colour and\/or a brighter %s."],"Transform to":["Transform to"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Duplicate":["Duplicate"],"More options":["More options"],"Edit visually":["Edit visually"],"Edit as HTML":["Edit as HTML"],"Move %1$d blocks from position %2$d right by one place":["Move %1$d blocks from position %2$d right by one place"],"Move %1$d blocks from position %2$d up by one place":["Move %1$d blocks from position %2$d up by one place"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved right":["Block %1$s is at the beginning of the content and can\u2019t be moved right"],"Move %1$s block from position %2$d up to position %3$d":["Move %1$s block from position %2$d up to position %3$d"],"Block %1$s is at the end of the content and can\u2019t be moved right":["Block %1$s is at the end of the content and can\u2019t be moved right"],"Move %1$s block from position %2$d down to position %3$d":["Move %1$s block from position %2$d down to position %3$d"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Block: %s":["Block: %s"],"Block contains unexpected or invalid content.":["Block contains unexpected or invalid content."],"imperative verb\u0004Resolve":["Resolve"],"Convert to Blocks":["Convert to Blocks"],"Resolve Block":["Resolve Block"],"Convert to Classic Block":["Convert to Classic Block"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"After Conversion":["After Conversion"],"Convert to HTML":["Convert to HTML"],"Current":["Current"],"Change alignment":["Change alignment"],"Full width":["Full width"],"Wide width":["Wide width"],"Change text alignment":["Change text alignment"],"Reset":["Reset"],"font size name\u0004Normal":["Normal"],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"No blocks found.":["No blocks found."],"Blocks":["Blocks"],"%s item":["%s item","%s items"],"Invalid source":["Invalid source"],"Additional CSS":["Additional CSS"],"Original":["Original"],"Link selected.":["Link selected."],"Paste URL or type to search":["Paste URL or type to search"],"Minimum height":["Minimum height"],"Color":["Colour"],"List View":["List View"],"Back":["Back"],"Auto":["Auto"],"Tools":["Tools"],"Rows":["Rows"],"Replace":["Replace"],"Align left":["Align left"],"Align center":["Align centre"],"Align right":["Align right"],"Move up":["Move up"],"Move down":["Move down"],"Insert from URL":["Insert from URL"],"Video":["Video"],"Audio":["Audio"],"Columns":["Columns"],"Large":["Large"],"Media Library":["Media Library"],"Clear":["Clear"],"Clear selection.":["Clear selection."],"Colors":["Colours"],"text color":["text colour"],"Mixed":["Mixed"],"Remove":["Remove"],"Styles":["Styles"],"Link":["Link"],"Content width":["Content width"],"User":["User"],"%s: This file exceeds the maximum upload size for this site.":["%s: This file exceeds the maximum upload size for this site."],"Custom":["Custom"],"Image":["Image"],"Previous page":["Previous page"],"Next page":["Next page"],"Remove link":["Remove link"],"Insert link":["Insert link"],"Justify text":["Justify text"],"Source":["Source"],"Background":["Background"],"Align":["Align"],"Type":["Type"],"Bottom":["Bottom"],"Top":["Top"],"Dimensions":["Dimensions"],"Border":["Border"],"Copy":["Copy"],"Cut":["Cut"],"Align text":["Align text"],"Strikethrough":["Strikethrough"],"Underline":["Underline"],"Paragraph":["Paragraph"],"Column":["Column"],"Row":["Row"],"Insert":["Insert"],", ":[", "],"Text":["Text"],"Search results for \"%s\"":["Search results for \"%s\""],"No results found.":["No results found."],"Default":["Default"],"Height":["Height"],"Theme":["Theme"],"Settings":["Settings"],"Edit link":["Edit link"],"Width":["Width"],"White":["White"],"Black":["Black"],"Close":["Close"],"Search":["Search"],"Media":["Media"],"Caption":["Caption"],"Size":["Size"],"Full Size":["Full Size"],"Medium":["Medium"],"Right":["Right"],"Left":["Left"],"Thumbnail":["Thumbnail"],"Scale":["Scale"],"Content":["Content"],"Cancel":["Cancel"],"Plugins":["Plugins"],"Preview":["Preview"],"Submit":["Submit"],"Done":["Done"],"None":["None"],"Name":["Name"],"Advanced":["Advanced"],"Save":["Save"],"Delete":["Delete"],"Attributes":["Attributes"],"Publish":["Publish"],"Apply":["Apply"],"Undo":["Undo"],"Edit":["Edit"],"URL":["URL"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json b/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json new file mode 100644 index 00000000..3a42d06e --- /dev/null +++ b/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Showing %1$s of %2$s media items":["Showing %1$s of %2$s media items"],"Jump to first loaded item":["Jump to first loaded item"],"Load more":["Load more"],"Number of media items displayed: %d. Click load more for more results.":["Number of media items displayed: %d. Click \u201cload more\u201d for more results."],"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"%s item selected":["%s item selected","%s items selected"],"Number of media items displayed: %d. Scroll the page for more results.":["Number of media items displayed: %d. Scroll the page for more results."]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json b/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json new file mode 100644 index 00000000..638e7ead --- /dev/null +++ b/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Application password has been copied to your clipboard.":["Application password has been copied to your clipboard."],"Your new password has not been saved.":["Your new password has not been saved."],"Hide":["Hide"],"Confirm use of weak password":["Confirm use of weak password"],"Hide password":["Hide password"],"Show password":["Show password"],"Show":["Show"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json b/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json new file mode 100644 index 00000000..4f4cef73 --- /dev/null +++ b/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error occurred while saving your changes. Please try again. If the problem persists, you may need to manually update the file via FTP.":["An error occurred while saving your changes. Please try again. If the problem persists, you may need to manually update the file via FTP."],"There is %s error which must be fixed before you can update this file.":["There is %s error which must be fixed before you can update this file.","There are %s errors which must be fixed before you can update this file."],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json b/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json new file mode 100644 index 00000000..a1edb7ec --- /dev/null +++ b/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Explore all blocks":["Explore all blocks"],"Customize each block":["Customise each block"],"Welcome to the editor":["Welcome to the editor"],"Enable or disable fullscreen mode.":["Enable or disable fullscreen mode."],"Use up and down arrow keys to resize the meta box panel.":["Use up and down arrow keys to resize the meta box panel."],"Meta Boxes":["Meta boxes"],"New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>":["New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>"],"pattern (singular)\u0004Synced":["Synced"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Fullscreen on.":["Fullscreen on."],"Fullscreen off.":["Fullscreen off."],"Show and hide the admin user interface":["Show and hide the admin user interface"],"Enter fullscreen":["Enter fullscreen"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"Hide & Reload Page":["Hide & Reload Page"],"Show & Reload Page":["Show & Reload Page"],"Manage patterns":["Manage patterns"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"\"%s\" successfully created.":["\"%s\" successfully created."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Drag to resize":["Drag to resize"],"Templates help define the layout of the site. You can customize all aspects of your posts and pages using blocks and patterns in this editor.":["Templates help define the layout of the site. You can customise all aspects of your posts and pages using blocks and patterns in this editor."],"Welcome to the template editor":["Welcome to the template editor"],"Use theme styles":["Use theme styles"],"Make the editor look like your theme.":["Make the editor look like your theme."],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon."],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct \u201cblock\u201d of content."],"Get started":["Get started"],"inserter":["inserter"],"Welcome Guide":["Welcome Guide"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Fullscreen mode deactivated.":["Fullscreen mode deactivated."],"Fullscreen mode activated.":["Fullscreen mode activated."],"Custom fields":["Custom fields"],"Create":["Create"],"Fullscreen mode":["Fullscreen mode"],"Site Icon":["Site Icon"],"Back":["Back"],"Exit fullscreen":["Exit fullscreen"],"Learn more":["Learn more"],"Name":["Name"],"Advanced":["Advanced"],"Undo":["Undo"],"Edit":["Edit"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-post.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json b/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json new file mode 100644 index 00000000..4c1a21ce --- /dev/null +++ b/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your session has expired. You can log in again from this page or go to the login page.":["Your session has expired. You can log in again from this page or go to the login page."]}},"comment":{"reference":"wp-includes\/js\/wp-auth-check.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json b/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json new file mode 100644 index 00000000..bceb46c2 --- /dev/null +++ b/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Get started here":["Get started here"],"Interested in creating your own block?":["Interested in creating your own block?"],"Select a block to install and add it to your post.":["Select a block to install and add it to your post."],"Available to install":["Available to install"],"No results available from your installed blocks.":["No results available from your installed blocks."],"%d additional block is available to install.":["%d additional block is available to install.","%d additional blocks are available to install."],"Blocks available for install":["Blocks available for install"],"Install block":["Install block"],"%1$s by %2$s<\/span>":["%1$s by %2$s<\/span>"],"Installing\u2026":["Installing\u2026"],"Install %1$s. %2$s stars with %3$s review.":["Install %1$s. %2$s stars with %3$s review.","Install %1$s. %2$s stars with %3$s reviews."],"Try reloading the page.":["Try reloading the page."],"Block %s installed and added.":["Block %s installed and added."],"Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely."],"Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely.":["Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely."],"The following block has been added to your site.":["The following block has been added to your site.","The following blocks have been added to your site."],"Added: %d block":["Added: %d block","Added: %d blocks"],"Error installing block. You can reload the page and try again.":["Error installing block. You can reload the page and try again."],"This block is already installed. Try reloading the page.":["This block is already installed. Try reloading the page."],"An error occurred.":["An error occurred."],"Error registering block. Try reloading the page.":["Error registering block. Try reloading the page."],"%s out of 5 stars":["%s out of 5 stars"],"Keep as HTML":["Keep as HTML"],"Install %s":["Install %s"],"Installed!":["Installed!"],"No results found.":["No results found."],"By %s":["By %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json b/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json new file mode 100644 index 00000000..8b273647 --- /dev/null +++ b/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Some selected posts have this category":["Some selected posts have this category"],"All selected items have been removed. Select new items to use Bulk Actions.":["All selected items have been removed. Select new items to use Bulk Actions."],"Remove “%s” from Bulk Edit":["Remove “%s” from Bulk Edit"],"Error while saving the changes.":["Error while saving the changes."],"Changes saved.":["Changes saved."],"Item removed.":["Item removed."],"tag delimiter\u0004,":[","],"(no title)":["(no title)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json b/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json new file mode 100644 index 00000000..fe0d3944 --- /dev/null +++ b/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Clear color":["Clear colour"],"Select default color":["Select default colour"],"Color value":["Colour value"],"Select Color":["Select Colour"],"Clear":["Clear"],"Default":["Default"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json b/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json new file mode 100644 index 00000000..0c1c8a31 --- /dev/null +++ b/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Term added.":["Term added."],"Term removed.":["Term removed."],"Remove term:":["Remove term:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json b/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json new file mode 100644 index 00000000..09f6247c --- /dev/null +++ b/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tilde":["Tilde"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json b/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json new file mode 100644 index 00000000..17fcdb93 --- /dev/null +++ b/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"App icon preview: The current image has no alternative text. The file name is: %s":["App icon preview: the current image has no alternative text. The file name is: %s"],"App icon preview: Current image: %s":["App icon preview: current image: %s"],"Browser icon preview: The current image has no alternative text. The file name is: %s":["Browser icon preview: the current image has no alternative text. The file name is: %s"],"Browser icon preview: Current image: %s":["Browser icon preview: current image: %s"]}},"comment":{"reference":"wp-admin\/js\/site-icon.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json b/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json new file mode 100644 index 00000000..c9db8f29 --- /dev/null +++ b/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"part of a total number of menu items\u0004%1$s of %2$s":["%1$s of %2$s"],"menu item without a parent in navigation menu\u0004No Parent":["No Parent"],"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete."],"missing menu item navigation label\u0004(no label)":["(no label)"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"No results found.":["No results found."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json b/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json new file mode 100644 index 00000000..41d79a58 --- /dev/null +++ b/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your new password for %s is:":["Your new password for %s is:"],"Be sure to save this in a safe location. You will not be able to retrieve it.":["Be sure to save this in a safe location. You will not be able to retrieve it."]}},"comment":{"reference":"wp-admin\/js\/auth-app.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json b/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json new file mode 100644 index 00000000..2224ab32 --- /dev/null +++ b/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"text direction\u0004ltr":["ltr"]}},"comment":{"reference":"wp-includes\/js\/dist\/i18n.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json b/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json new file mode 100644 index 00000000..d8b1fa48 --- /dev/null +++ b/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Word count type. Do not translate!\u0004words":["words"],"Keeps the text cursor within blocks while navigating with arrow keys, preventing it from moving to other blocks and enhancing accessibility for keyboard users.":["Keeps the text cursor within blocks while navigating with arrow keys, preventing it from moving to other blocks and enhancing accessibility for keyboard users."],"panel button label\u0004Settings":["Settings"],"noun, panel\u0004Document":["Document"],"Changes will be applied to all selected %s.":["Changes will be applied to all selected %s."],"%i %s":["%i %s"],"Set as posts page":["Set as posts page"],"Set posts page":["Set posts page"],"Set \"%1$s\" as the posts page? %2$s":["Set \"%1$s\" as the posts page? %2$s"],"This page will show the latest posts.":["This page will show the latest posts."],"This will replace the current posts page: \"%s\"":["This will replace the current posts page: \"%s\""],"An error occurred while setting the posts page.":["An error occurred while setting the posts page."],"Posts page updated.":["Posts page updated."],"Set as homepage":["Set as homepage"],"Set homepage":["Set homepage"],"Set \"%1$s\" as the site homepage? %2$s":["Set \"%1$s\" as the site homepage? %2$s"],"This will replace the current homepage: \"%s\"":["This will replace the current homepage: \"%s\""],"This will replace the current homepage which is set to display latest posts.":["This will replace the current homepage which is set to display latest posts."],"Homepage updated.":["Homepage updated."],"Enter or exit zoom out.":["Enter or exit zoom out."],"Comment deleted successfully.":["Comment deleted successfully."],"Something went wrong. Please try publishing the post, or you may have already submitted your comment earlier.":["Something went wrong. Please try publishing the post, or you may have already submitted your comment earlier."],"Comment edited successfully.":["Comment edited successfully."],"Comment marked as resolved.":["Comment marked as resolved."],"Comment added successfully.":["Comment added successfully."],"Reply added successfully.":["Reply added successfully."],"View comment\u0004Comment":["Comment"],"Add comment button\u0004Comment":["Comment"],"Are you sure you want to mark this comment as resolved?":["Are you sure you want to mark this comment as resolved?"],"verb\u0004Update":["Update"],"Resolved":["Resolved"],"Select comment action\u0004Select an action":["Select an action"],"Mark comment as resolved\u0004Resolve":["Resolve"],"Delete comment\u0004Delete":["Delete"],"Edit comment\u0004Edit":["Edit"],"Add reply comment\u0004Reply":["Reply"],"Show replies button\u0004%s more replies..":["%s more replies.."],"No comments available":["No comments available"],"Cancel comment button\u0004Cancel":["Cancel"],"User avatar":["User avatar"],"Customize the last part of the Permalink.<\/span> Learn more.<\/a>":["Customise the last part of the Permalink.<\/span> Learn more.<\/a>"],"Your work will be reviewed and then approved.":["Your work will be reviewed and then approved."],"Could not retrieve the featured image data.":["Could not retrieve the featured image data."],"Copy error":["Copy error"],"Copy contents":["Copy contents"],"This change will affect other parts of your site that use this template.":["This change will affect other parts of your site that use this template."],"Enter or exit distraction free mode.":["Enter or exit distraction free mode."],"Show or hide the List View.":["Show or hide the List View."],"Content preview":["Content preview"],"Empty content":["Empty content"],"Open Site Editor":["Open Site Editor"],"Enter Spotlight mode":["Enter Spotlight mode"],"Exit Spotlight mode":["Exit Spotlight mode"],"Change template":["Change template"],"Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %1$s\/services\/pricing.":["Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %1$s\/services\/pricing."],"Customize the last part of the Permalink.":["Customise the last part of the Permalink."],"Copied Permalink to clipboard.":["Copied Permalink to clipboard."],"Choose an image\u2026":["Choose an image\u2026"],"Are you sure you want to permanently delete \"%s\"?":["Are you sure you want to permanently delete \"%s\"?"],"Are you sure you want to permanently delete %d item?":["Are you sure you want to permanently delete %d item?","Are you sure you want to permanently delete %d items?"],"An error occurred while reverting the items.":["An error occurred while reverting the items."],"Top toolbar deactivated.":["Top toolbar deactivated."],"Top toolbar activated.":["Top toolbar activated."],"verb\u0004Upload":["Upload"],"noun, breadcrumb\u0004Document":["Document"],"template part\u0004Delete \"%s\"?":["Delete \"%s\"?"],"template part\u0004%s (Copy)":["%s (Copy)"],"template part\u0004\"%s\" duplicated.":["\"%s\" duplicated."],"settings landmark area\u0004Settings":["Settings"],"field\u0004Edit %s":["Edit %s"],"Are you sure you want to move \"%s\" to the trash?":["Are you sure you want to move \"%s\" to the bin?"],"Approval step":["Approval step"],"Require approval step when optimizing existing media.":["Require approval step when optimising existing media."],"Pre-upload compression":["Pre-upload compression"],"Compress media items before uploading to the server.":["Compress media items before uploading to the server."],"Customize options related to the media upload flow.":["Customise options related to the media upload flow."],"Show starter patterns":["Show starter patterns"],"Shows starter patterns when creating a new page.":["Shows starter patterns when creating a new page."],"Zoom Out":["Zoom out"],"Unlock content locked blocks\u0004Unlock":["Unlock"],"Change status: %s":["Change status: %s"],"Pin this post to the top of the blog":["Pin this post to the top of the blog"],"Upload failed, try again.":["Upload failed, try again."],"Edit or replace the featured image":["Edit or replace the featured image"],"Adjective: e.g. \"Comments are open\"\u0004Open":["Open"],"(No author)":["(No author)"],"They also show up as sub-items in the default navigation menu. Learn more.<\/a>":["They also show up as sub-items in the default navigation menu. Learn more.<\/a>"],"Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported.":["Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported."],"Order updated.":["Order updated."],"Determines the order of pages.":["Determines the order of pages."],"verb\u0004View":["View"],"An error occurred while updating.":["An error occurred while updating."],"Visitors cannot add new comments or replies. Existing comments remain visible.":["Visitors cannot add new comments or replies. Existing comments remain visible."],"Author avatar":["Author avatar"],"Select item":["Select item"],"date order\u0004dmy":["dmy"],"Some errors occurred while reverting the items: %s":["Some errors occurred while reverting the items: %s"],"An error occurred while reverting the item.":["An error occurred while reverting the item."],"Comments closed":["Comments closed"],"Comments open":["Comments open"],"Change discussion settings":["Change discussion settings"],"Change posts per page":["Change posts per page"],"Change blog title: %s":["Change blog title: %s"],"Only visible to those who know the password":["Only visible to those who know the password"],"Change format: %s":["Change format: %s"],"%1$s, %2$s read time.":["%1$s, %2$s read time."],"1 minute":["1 minute"],"Reset to default and clear all customizations?":["Reset to default and clear all customisations?"],"%s items reset.":["%s items reset."],"Name updated":["Name updated"],"View revisions (%s)":["View revisions (%s)"],"%d pages have been restored.":["%d pages have been restored."],"%s item moved to the trash.":["%s item moved to the bin.","%s items moved to the bin."],"patterns-export":["patterns-export"],"You\u2019ve tried to select a block that is part of a template that may be used elsewhere on your site. Would you like to edit the template?":["You\u2019ve tried to select a block that is part of a template that may be used elsewhere on your site. Would you like to edit the template?"],"Temporarily unlock the parent block to edit, delete or make further changes to this block.":["Temporarily unlock the parent block to edit, delete, or make further changes to this block."],"Edit pattern":["Edit pattern"],"Only users with permissions to edit the template can move or delete this block":["Only users with permissions to edit the template can move or delete this block"],"Edit the template to move, delete, or make further changes to this block.":["Edit the template to move, delete, or make further changes to this block."],"Edit the pattern to move, delete, or make further changes to this block.":["Edit the pattern to move, delete, or make further changes to this block."],"The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?":["The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?","Some of the deleted blocks allow instance overrides. Removing them may result in content not displaying where this pattern is used. Are you sure you want to proceed?"],"Change link: %s":["Change link: %s"],"Unschedule":["Unschedule"],"Unpublish":["Unpublish"],"Edit excerpt":["Edit excerpt"],"Edit description":["Edit description"],"Add an excerpt\u2026":["Add an excerpt\u2026"],"Add a description\u2026":["Add a description\u2026"],"Write a description":["Write a description"],"Write a description (optional)":["Write a description (optional)"],"Change discussion options":["Change discussion options"],"Pings enabled":["Pings enabled"],"Pings only":["Pings only"],"Comments only":["Comments only"],"Learn more about pingbacks & trackbacks":["Learn more about pingbacks and trackbacks"],"https:\/\/wordpress.org\/documentation\/article\/trackbacks-and-pingbacks\/":["https:\/\/wordpress.org\/documentation\/article\/trackbacks-and-pingbacks\/"],"Comment status":["Comment status"],"Existing comments remain visible.":["Existing comments remain visible."],"Visitors cannot add new comments or replies.":["Visitors cannot add new comments or replies."],"Closed":["Closed"],"Visitors can add new comments and replies.":["Visitors can add new comments and replies."],"Open":["Open"],"Change author: %s":["Change author: %s"],"Show template":["Show template"],"https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#page-attributes":["https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#page-attributes"],"Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %s\/services\/pricing.":["Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %s\/services\/pricing."],"Change parent: %s":["Change parent: %s"],"Choose a parent page.":["Choose a parent page."],"Set the page order.":["Set the page order."],"Post Meta.":["Post meta."],"Items deleted.":["Items deleted."],"Items reset.":["Items reset."],"\"%s\" reset.":["\"%s\" reset."],"Template reset.":["Template reset."],"List View shortcuts":["List view shortcuts"],"pattern (singular)\u0004Not synced":["Not synced"],"Published: Work<\/a>\/ %2$s":["Work<\/a>\/ %2$s"],"Search Openverse":["Search Openverse"],"Openverse":["Openverse"],"Search audio":["Search audio"],"Search videos":["Search videos"],"Search images":["Search images"],"caption\u0004\"%1$s\"\/ %2$s":["\"%1$s\"\/ %2$s"],"caption\u0004Work<\/a> by %2$s\/ %3$s":["Work<\/a> by %2$s\/ %3$s"],"caption\u0004\"%1$s\" by %2$s\/ %3$s":["\"%1$s\" by %2$s\/ %3$s"],"Navigate the structure of your document and address issues like empty or incorrect heading levels.":["Navigate the structure of your document and address issues like empty or incorrect heading levels."],"Time to read:":["Time to read:"],"Words:":["Words:"],"Characters:":["Characters:"],"Distraction free mode deactivated.":["Distraction free mode deactivated."],"Distraction free mode activated.":["Distraction free mode activated."],"Write with calmness":["Write with calmness"],"Document Overview":["Document Overview"],"Distraction free":["Distraction free"],"Reduce visual distractions by hiding the toolbar and other elements to focus on writing.":["Reduce visual distractions by hiding the toolbar and other elements to focus on writing."],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Sticky":["Sticky"],"Time to read":["Time to read"],"%s<\/span> minute":["%s<\/span> minute","%s<\/span> minutes"],"< 1<\/span> minute":["< 1<\/span> minute"],"post schedule date format without year\u0004F j g:i\u00a0a":["F j g:i\u00a0a"],"Tomorrow at %s":["Tomorrow at %s"],"post schedule time format\u0004g:i\u00a0a":["g:i\u00a0a"],"Today at %s":["Today at %s"],"post schedule full date format\u0004F j, Y g:i\u00a0a":["F j, Y g:i\u00a0a"],"Control how this post is viewed.":["Control how this post is viewed."],"Only those with the password can view this post.":["Only those with the password can view this post."],"Apply suggested format: %s":["Apply suggested format: %s"],"Create template part":["Create template part"],"View site":["View site"],"Default template":["Default template"],"Edit template":["Edit template"],"Add template":["Add template"],"Templates define the way content is displayed when viewing your site.":["Templates define the way content is displayed when viewing your site."],"Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page.":["Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page."],"Change date: %s":["Change date: %s"],"Always open List View":["Always open list view"],"Opens the List View panel by default.":["Opens the List View panel by default."],"Copy all blocks":["Copy all blocks"],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"View options":["View options"],"Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about.":["Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about."],"Assign a category":["Assign a category"],"If you take over, the other user will lose editing control to the post, but their changes will be saved.":["If you take over, the other user will lose editing control of the post, but their changes will be saved."],"%s<\/strong> is currently working on this post (), which means you cannot make changes, unless you take over.":["%s<\/strong> is currently working on this post (), which means you cannot make changes, unless you take over."],"preview":["preview"],"%s<\/strong> now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved.":["%s<\/strong> now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved."],"Exit editor":["Exit editor"],"These changes will affect your whole site.":["These changes will affect your whole site."],"View Preview":["View Preview"],"Draft saved.":["Draft saved."],"Show button text labels":["Show button text labels"],"The posts page template cannot be changed.":["The posts page template cannot be changed."],"Insert a link to a post or page.":["Insert a link to a post or page."],"Choose a pattern":["Choose a pattern"],"Site updated.":["Site updated."],"Saving failed.":["Saving failed."],"This change will affect your whole site.":["This change will affect your whole site.","These changes will affect your whole site."],"An error occurred while reverting the template parts.":["An error occurred while reverting the template parts."],"Rename":["Rename"],"An error occurred while setting the homepage.":["An error occurred while setting the homepage."],"An error occurred while creating the template part.":["An error occurred while creating the template part."],"You attempted to edit an item that doesn't exist. Perhaps it was deleted?":["You attempted to edit an item that doesn't exist. Perhaps it was deleted?"],"Show or hide the Block settings panel":["Show or hide the Block settings panel"],"Use left and right arrow keys to resize the canvas.":["Use left and right arrow keys to resize the canvas."],"Drag to resize":["Drag to resize"],"Template part created.":["Template part created."],"Template revert failed. Please reload.":["Template revert failed. Please reload."],"The editor has encountered an unexpected error. Please reload.":["The editor has encountered an unexpected error. Please reload."],"This template is not revertable.":["This template is not revertible."],"An error occurred while deleting the item.":["An error occurred while deleting the item."],"Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later.":["Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later."],"Review settings, such as visibility and tags.":["Review settings, such as visibility and tags."],"Publishing":["Publishing"],"Area":["Area"],"Open List View":["Open list view"],"Template Parts":["Template Parts"],"Featured Image":["Featured Image"],"Select the items you want to save.":["Select the items you want to save."],"Saving\u2026":["Saving\u2026"],"Create custom template":["Create custom template"],"Custom Template":["Custom Template"],"Template options":["Template options"],"Generic label for block inserter button\u0004Block Inserter":["Block Inserter"],"Custom template created. You're in template mode now.":["Custom template created. You're in template mode now."],"Templates":["Templates"],"Block Library":["Block Library"],"Editing template. Changes made here affect all posts and pages that use the template.":["Editing template. Changes made here affect all posts and pages that use the template."],"Highlights the current block and fades other content.":["Highlights the current block and fades other content."],"Appearance":["Appearance"],"Show most used blocks":["Show most used blocks"],"Preferences":["Preferences"],"Characters":["Characters"],"Design":["Design"],"Open save panel":["Open save panel"],"Preview in new tab":["Preview in new tab"],"Contain text cursor inside block":["Contain text cursor inside block"],"Mobile":["Mobile"],"Tablet":["Tablet"],"Desktop":["Desktop"],"Save draft":["Save draft"],"Are you ready to save?":["Are you ready to save?"],"Template Part":["Template Part"],"Password protected":["Password protected"],"View post":["View post"],"Page attributes":["Page attributes"],"Keyboard shortcuts":["Keyboard shortcuts"],"Editor footer":["Editor footer"],"Slug":["Slug"],"Pending review":["Pending review"],"All content copied.":["All content copied."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Skip":["Skip"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Details":["Details"],"Spotlight mode deactivated.":["Spotlight mode deactivated."],"Spotlight mode activated.":["Spotlight mode activated."],"Search Terms":["Search Terms"],"The current image has no alternative text. The file name is: %s":["The current image has no alternative text. The file name is: %s"],"%s minute":["%s minute","%s minutes"],"Top toolbar":["Top toolbar"],"%s word":["%s word","%s words"],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Scheduled":["Scheduled"],"Create":["Create"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Exit code editor":["Exit code editor"],"Editing code":["Editing code"],"Editor settings":["Editor settings"],"Close Settings":["Close Settings"],"Document settings":["Document settings"],"Visibility":["Visibility"],"Status & visibility":["Status & visibility"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Close plugin":["Close plugin"],"Discussion":["Discussion"],"Enable pre-publish checks":["Enable pre-publish checks"],"Open publish panel":["Open publish panel"],"Editor content":["Editor content"],"Editor publish":["Editor publish"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Switch between visual editor and code editor.":["Switch between visual editor and code editor."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the Settings panel.":["Show or hide the Settings panel."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Focus on one block at a time":["Focus on one block at a time"],"Spotlight mode":["Spotlight mode"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Editor":["Editor"],"Code editor":["Code editor"],"Visual editor":["Visual editor"],"Editor top bar":["Editor top bar"],"Document tools":["Document tools"],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Document Statistics":["Document Statistics"],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Visible to everyone.":["Visible to everyone."],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Move to trash":["Move to bin"],"Add title":["Add title"],"Terms":["Terms"],"Parent Term":["Parent Term"],"Add new term":["Add new term"],"Add new category":["Add new category"],"term\u0004Remove %s":["Remove %s"],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"Term":["Term"],"Tag":["Tag"],"Add new Term":["Add new term"],"Switch to draft":["Switch to draft"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Saving":["Saving"],"Autosaving":["Autosaving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Are you ready to publish?":["Are you ready to publish?"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Copied!":["Copied!"],"%s address":["%s address"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Close panel":["Close panel"],"Submit for Review":["Submit for Review"],"Publishing\u2026":["Publishing\u2026"],"imperative verb\u0004Preview":["Preview"],"Generating preview\u2026":["Generating preview\u2026"],"Enable pingbacks & trackbacks":["Enable pingbacks and trackbacks"],"Permalink:":["Permalink:"],"Another user is currently working on this post (), which means you cannot make changes, unless you take over.":["Another user is currently working on this post (), which means you cannot make changes, unless you take over."],"Another user now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited":["This post is already being edited"],"Someone else has taken over this post":["Someone else has taken over this post"],"Post Format":["Post Format"],"Chat":["Chat"],"Standard":["Standard"],"Aside":["Aside"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"no title":["no title"],"Order":["Order"],"%d result found.":["%d result found.","%d results found."],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Category":["Category"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"Blocks":["Blocks"],"Pending":["Pending"],"Take over":["Take over"],"Go back":["Go back"],"Gallery":["Gallery"],"Date":["Date"],"Current image: %s":["Current image: %s"],"Homepage":["Homepage"],"(Untitled)":["(Untitled)"],"Site Icon":["Site Icon"],"Detach":["Detach"],"verb\u0004Trash":["Bin"],"Back":["Back"],"Trash":["Bin"],"Tools":["Tools"],"Footer":["Footer"],"Replace":["Replace"],"Block":["Block"],"Status":["Status"],"Delete permanently":["Delete permanently"],"Video":["Video"],"Videos":["Videos"],"Audio":["Audio"],"Saved":["Saved"],"Remove":["Remove"],"Featured image":["Featured image"],"Template":["Template"],"Posts Page":["Posts page"],"Navigation":["Navigation"],"Link":["Link"],"Words":["Words"],"Learn more":["Learn more"],"Parent Category":["Parent Category"],"Add a featured image":["Add a featured image"],"Image":["Image"],"You do not have permission to create Pages.":["You do not have permission to create pages."],"Quote":["Quote"],"General":["General"],"Copy":["Copy"],"Format":["Format"],"Suggestion:":["Suggestion:"],"Untitled":["Untitled"],"Blog title":["Blog title"],"Help":["Help"],"(no title)":["(no title)"],"Close":["Close"],"Images":["Images"],"Add":["Add"],"Add new tag":["Add new tag"],"Schedule":["Schedule"],"Public":["Public"],"Private":["Private"],"Save as pending":["Save as pending"],"Actions":["Actions"],"Media":["Media"],"Redo":["Redo"],"Password":["Password"],"Content":["Content"],"Cancel":["Cancel"],"Plugins":["Plugins"],"None":["None"],"Description":["Description"],"Name":["Name"],"Save":["Save"],"Delete":["Delete"],"Revisions":["Revisions"],"Excerpt":["Excerpt"],"Publish":["Publish"],"Comments":["Comments"],"Undo":["Undo"],"View":["View"],"Restore":["Restore"],"Author":["Author"],"Draft":["Draft"],"Pending Review":["Pending Review"],"Published":["Published"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json b/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json new file mode 100644 index 00000000..e6aa0b94 --- /dev/null +++ b/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss":["Dismiss"]}},"comment":{"reference":"wp-includes\/js\/wp-pointer.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json b/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json new file mode 100644 index 00000000..711e0820 --- /dev/null +++ b/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Uncategorized":["Uncategorised"],"The requested page could not be found. Please check the URL.":["The requested page could not be found. Please check the URL."],"Preview your website's visual identity: colors, typography, and blocks.":["Preview your website's visual identity: colours, typography, and blocks."],"Status & Visibility":["Status & Visibility"],"This field can't be moved down":["This field can't be moved down"],"This field can't be moved up":["This field can't be moved up"],"Density option for DataView layout\u0004Compact":["Compact"],"Density option for DataView layout\u0004Balanced":["Balanced"],"Density option for DataView layout\u0004Comfortable":["Comfortable"],"Density":["Density"],"Navigate to item":["Navigate to item"],"verb\u0004Filter":["Filter"],"Global Styles pagination":["Global Styles pagination"],"Apply the selected revision to your site.":["Apply the selected revision to your site."],"Indicates these doutone filters are created by the user.\u0004Custom":["Custom"],"Indicates these duotone filters come from WordPress.\u0004Default":["Default"],"Indicates these duotone filters come from the theme.\u0004Theme":["Theme"],"Additionally, paragraphs help structure the flow of information and provide logical breaks between different concepts or pieces of information. In terms of formatting, paragraphs in websites are commonly denoted by a vertical gap or indentation between each block of text. This visual separation helps visually distinguish one paragraph from another, creating a clear and organized layout that guides the reader through the content smoothly.":["Additionally, paragraphs help structure the flow of information and provide logical breaks between different concepts or pieces of information. In terms of formatting, paragraphs in websites are commonly denoted by a vertical gap or indentation between each block of text. This visual separation helps visually distinguish one paragraph from another, creating a clear and organised layout that guides the reader through the content smoothly."],"A paragraph in a website refers to a distinct block of text that is used to present and organize information. It is a fundamental unit of content in web design and is typically composed of a group of related sentences or thoughts focused on a particular topic or idea. Paragraphs play a crucial role in improving the readability and user experience of a website. They break down the text into smaller, manageable chunks, allowing readers to scan the content more easily.":["A paragraph in a website refers to a distinct block of text that is used to present and organise information. It is a fundamental unit of content in web design and is typically composed of a group of related sentences or thoughts focused on a particular topic or idea. Paragraphs play a crucial role in improving the readability and user experience of a website. They break down the text into smaller, manageable chunks, allowing readers to scan the content more easily."],"AaBbCcDdEeFfGgHhiiJjKkLIMmNnOoPpQakRrssTtUuVVWwXxxYyZzOl23356789X{(\u2026)},2!*&:\/A@HELFO\u2122":["AaBbCcDdEeFfGgHhiiJjKkLIMmNnOoPpQakRrssTtUuVVWwXxxYyZzOl23356789X{(\u2026)},2!*&:\/A@HELFO\u2122"],"Default Gradients":["Default Gradients"],"Default Colors":["Default Colours"],"Duotones":["Duotones"],"Custom Gradients":["Custom Gradients"],"Theme Gradients":["Theme Gradients"],"Theme Colors":["Theme Colours"],"Are you sure you want to delete \"%s\" shadow preset?":["Are you sure you want to delete \"%s\" shadow preset?"],"Remove all custom shadows":["Remove all custom shadows"],"Shadow options":["Shadow options"],"Are you sure you want to remove all custom shadows?":["Are you sure you want to remove all custom shadows?"],"noun\u0004Upload":["Upload"],"The theme you are currently using does not support this screen.":["The theme you are currently using does not support this screen."],"Explore block styles and patterns to refine your site.":["Explore block styles and patterns to refine your site."],"field\u0004Edit %s":["Edit %s"],"navigation menu\u0004%s (Copy)":["%s (Copy)"],"menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"Previewing %1$s: %2$s":["Previewing %1$s: %2$s"],"taxonomy menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"taxonomy template menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"post type menu label\u0004Single item: %1$s (%2$s)":["Single item: %1$s (%2$s)"],"post type menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"pattern category\u0004Delete \"%s\"?":["Delete \"%s\"?"],"pattern category\u0004\"%s\" deleted.":["\"%s\" deleted."],"field\u0004Show %s":["Show %s"],"field\u0004Hide %s":["Hide %s"],"breadcrumb trail\u0004%1$s \u2039 %2$s":["%1$s \u2039 %2$s"],"variation label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"There was an error updating the font family. %s":["There was an error updating the font family. %s"],"Select a page to edit":["Select a page to edit"],"Post Edit":["Post edit"],"Draft new: %s":["Draft new: %s"],"All items":["All items"],"View is used as a noun\u0004View options":["View options"],"Properties":["Properties"],"Move %s down":["Move %s down"],"Move %s up":["Move %s up"],"Preview size":["Preview size"],"paging\u0004
Page<\/div>%1$s
of %2$s<\/div>":["
Page<\/div>%1$s
of %2$s<\/div>"],"Page %1$s of %2$s":["Page %1$s of %2$s"],"Hide column":["Hide column"],"%d Item":["%d Item","%d Items"],"Select item":["Select item"],"Set styles for the site\u2019s background.":["Set styles for the site\u2019s background."],"Create and edit the presets used for font sizes across the site.":["Create and edit the presets used for font sizes across the site."],"New Font Size %d":["New font size %d"],"Reset font size presets":["Reset font size presets"],"Remove font size presets":["Remove font size presets"],"Font size presets options":["Font size presets options"],"Add font size":["Add font size"],"Are you sure you want to reset all font size presets to their default values?":["Are you sure you want to reset all font size presets to their default values?"],"Are you sure you want to remove all custom font size presets?":["Are you sure you want to remove all custom font size presets?"],"Maximum":["Maximum"],"Minimum":["Minimum"],"Set custom min and max values for the fluid font size.":["Set custom minimum and maximum values for the fluid font size."],"Custom fluid values":["Custom fluid values"],"Scale the font size dynamically to fit the screen or viewport.":["Scale the font size dynamically to fit the screen or viewport."],"Fluid typography":["Fluid typography"],"Font size options":["Font size options"],"Manage the font size %s.":["Manage the font size %s."],"Font size preset name":["Font size preset name"],"Are you sure you want to delete \"%s\" font size preset?":["Are you sure you want to delete \"%s\" font size preset?"],"All headings":["All headings"],"Typesets":["Typesets"],"Available fonts, typographic styles, and the application of those styles.":["Available fonts, typographic styles, and the application of those styles."],"No fonts activated.":["No fonts activated."],"font source\u0004Custom":["Custom"],"font source\u0004Theme":["Theme"],"Font family updated successfully.":["Font family updated successfully."],"Font size presets":["Font size presets"],"Background styles":["Background styles"],"Go to Site Editor":["Go to Site Editor"],"No items found":["No items found"],"Loading items\u2026":["Loading items\u2026"],"pattern (singular)\u0004Not synced":["Not synced"],"Includes every template part defined for any area.":["Includes every template part defined for any area."],"All Template Parts":["All template parts"],"%d Item selected":["%d Item selected","%d Items selected"],"%1$s is not: <\/Name>%2$s<\/Value>":["%1$s is not: <\/Name>%2$s<\/Value>"],"%1$s is: <\/Name>%2$s<\/Value>":["%1$s is: <\/Name>%2$s<\/Value>"],"%1$s is not all: <\/Name>%2$s<\/Value>":["%1$s is not all: <\/Name>%2$s<\/Value>"],"%1$s is all: <\/Name>%2$s<\/Value>":["%1$s is all: <\/Name>%2$s<\/Value>"],"%1$s is none: <\/Name>%2$s<\/Value>":["%1$s is none: <\/Name>%2$s<\/Value>"],"%1$s is any: <\/Name>%2$s<\/Value>":["%1$s is any: <\/Name>%2$s<\/Value>"],"List of: %1$s":["List of: %1$s"],"Is not all":["Is not all"],"Is all":["Is all"],"Is none":["Is none"],"Is any":["Is any"],"Are you sure you want to apply this revision? Any unsaved changes will be lost.":["Are you sure you want to apply this revision? Any unsaved changes will be lost."],"Spread":["Spread"],"Blur":["Blur"],"Y Position":["Y position"],"X Position":["X position"],"Inset":["Inset"],"Outset":["Outset"],"Inner shadow":["Inner shadow"],"Remove shadow":["Remove shadow"],"Shadow name":["Shadow name"],"Add shadow":["Add shadow"],"Shadow %s":["Shadow %s"],"Manage and create shadow styles for use across the site.":["Manage and create shadow styles for use across the site."],"The combination of colors used across the site and in color pickers.":["The combination of colours used across the site and in colour pickers."],"Palettes":["Palettes"],"Palette colors and the application of those colors on site elements.":["Palette colours and the application of those colours on site elements."],"Add colors":["Add colours"],"Edit palette":["Edit palette"],"Lowercase letter A\u0004a":["a"],"Uppercase letter A\u0004A":["A"],"pattern (singular)\u0004Synced":["Synced"],"https:\/\/developer.wordpress.org\/advanced-administration\/wordpress\/css\/":["https:\/\/developer.wordpress.org\/advanced-administration\/wordpress\/css\/"],"Font library\u0004Library":["Library"],"There was an error installing fonts.":["There was an error installing fonts."],"Empty template":["Empty template"],"Action menu for %s pattern category":["Action menu for %s pattern category"],"Are you sure you want to delete the category \"%s\"? The patterns will not be deleted.":["Are you sure you want to delete the category \"%s\"? The patterns will not be deleted."],"An error occurred while deleting the pattern category.":["An error occurred while deleting the pattern category."],"Filter by: %1$s":["Filter by: %1$s"],"Conditions":["Conditions"],"Unknown status for %1$s":["Unknown status for %1$s"],"Search items":["Search items"],"Sort by":["Sort by"],"Items per page":["Items per page"],"%1$s \u2039 %2$s \u2039 Editor \u2014 WordPress":["%1$s \u2039 %2$s \u2039 Editor \u2013 WordPress"],"Click on previously saved styles to preview them. To restore a selected version to the editor, hit \"Apply.\" When you're ready, use the Save button to save your changes.":["Click on previously saved styles to preview them. To restore a selected version to the editor, hit \"Apply.\" When you're ready, use the \u201cSave\u201d button to save your changes."],"Revisions (%s)":["Revisions (%s)"],"These styles are already applied to your site.":["These styles are already applied to your site."],"(Unsaved)":["(Unsaved)"],"Changes saved by %1$s on %2$s. This revision matches current editor styles.":["Changes saved by %1$s on %2$s. This revision matches current editor styles."],"heading levels\u0004All":["All"],"Add fonts":["Add fonts"],"No fonts installed.":["No fonts installed."],"Uploaded fonts appear in your library and can be used in your theme. Supported formats: .ttf, .otf, .woff, and .woff2.":["Uploaded fonts appear in your library and can be used in your theme. Supported formats: .ttf, .otf, .woff, and .woff2."],"No fonts found to install.":["No fonts found to install."],"Current page":["Current page"],"Revoke access to Google Fonts":["Revoke access to Google Fonts"],"Error installing the fonts, could not be downloaded.":["Error installing the fonts, could not be downloaded."],"font categories\u0004All":["All"],"Connect to Google Fonts":["Connect to Google Fonts"],"Are you sure you want to delete \"%s\" font and all its variants and assets?":["Are you sure you want to delete \"%s\" font and all its variants and assets?"],"There was an error uninstalling the font family.":["There was an error uninstalling the font family."],"%d variant":["%d variant","%d variants"],"Reset styles":["Reset styles"],"Saving your changes will change your active theme from %1$s to %2$s.":["Saving your changes will change your active theme from %1$s to %2$s."],"Custom Views":["Custom views"],"Add new view":["Add new view"],"New view":["New view"],"My view":["My view"],"Drafts":["Drafts"],"Activate %s":["Activate %s"],"Activate %s & Save":["Activate %s and save"],"Activating %s":["Activating %s"],"Sort descending":["Sort descending"],"Sort ascending":["Sort ascending"],"Is not":["Is not"],"Is":["Is"],"No results":["No results"],"Deselect all":["Deselect all"],"Add filter":["Add filter"],"Style Revisions":["Style revisions"],"Drop shadow":["Drop shadow"],"Empty template part":["Empty template part"],"Style revisions":["Style revisions"],"Customize CSS":["Customise CSS"],"Default styles":["Default styles"],"Reset the styles to the theme defaults":["Reset the styles to the theme defaults"],"Manage fonts":["Manage fonts"],"Fonts":["Fonts"],"Install Fonts":["Install Fonts"],"Upload font":["Upload font"],"No fonts found. Try with a different search term":["No fonts found. Try with a different search term"],"Font name\u2026":["Font name\u2026"],"Select font variants to install.":["Select font variants to install."],"Allow access to Google Fonts":["Allow access to Google Fonts"],"You can alternatively upload files directly on the Upload tab.":["You can alternatively upload files directly on the Upload tab."],"To install fonts from Google you must give permission to connect directly to Google servers. The fonts you install will be downloaded from Google and stored on your site. Your site will then use these locally-hosted fonts.":["To install fonts from Google you must give permission to connect directly to Google servers. The fonts you install will be downloaded from Google and stored on your site. Your site will then use these locally-hosted fonts."],"Choose font variants. Keep in mind that too many variants could make your site slower.":["Choose font variants. Keep in mind that too many variants could make your site slower."],"Font family uninstalled successfully.":["Font family uninstalled successfully."],"Fonts were installed successfully.":["Fonts were installed successfully."],"%1$s\/%2$s variants active":["%1$s\/%2$s variants active"],"font style\u0004Normal":["Normal"],"font weight\u0004Extra-bold":["Extra-bold"],"font weight\u0004Semi-bold":["Semi-bold"],"font weight\u0004Normal":["Normal"],"font weight\u0004Extra-light":["Extra-light"],"Add your own CSS to customize the appearance of the %s block. You do not need to include a CSS selector, just add the property and value.":["Add your own CSS to customise the appearance of the %s block. You do not need to include a CSS selector, just add the property and value."],"Imported \"%s\" from JSON.":["Imported \"%s\" from JSON."],"Import pattern from JSON":["Import pattern from JSON"],"A list of all patterns from all sources.":["A list of all patterns from all sources."],"No results found":["No results found"],"All patterns":["All patterns"],"Changes saved by %1$s on %2$s":["Changes saved by %1$s on %2$s"],"Unsaved changes by %s":["Unsaved changes by %s"],"Sync status":["Sync status"],"Patterns content":["Patterns content"],"Patterns that can be changed freely without affecting the site.":["Patterns that can be changed freely without affecting the site."],"Patterns that are kept in sync across the site.":["Patterns that are kept in sync across the site."],"Last page":["Last page"],"paging\u0004%1$s of %2$s":["%1$s of %2$s"],"First page":["First page"],"Empty pattern":["Empty pattern"],"Learn about styles":["Learn about styles"],"Open styles":["Open styles"],"Save panel":["Save panel"],"Use left and right arrow keys to resize the canvas. Hold shift to resize in larger increments.":["Use left and right arrow keys to resize the canvas. Hold shift to resize in larger increments."],"Open command palette":["Open command palette"],"View site (opens in a new tab)":["View site (opens in a new tab)"],"Open Navigation":["Open Navigation"],"Note that the same template can be used by multiple pages, so any changes made here may affect other pages on the site. To switch back to editing the page content click the \u2018Back\u2019 button in the toolbar.":["Note that the same template can be used by multiple pages, so any changes made here may affect other pages on the site. To switch back to editing the page content click the \u2018Back\u2019 button in the toolbar."],"Editing a template":["Editing a template"],"It\u2019s now possible to edit page content in the site editor. To customise other parts of the page like the header and footer switch to editing the template using the settings sidebar.":["It\u2019s now possible to edit page content in the site editor. To customise other parts of the page like the header and footer switch to editing the template using the settings sidebar."],"Continue":["Continue"],"Editing a page":["Editing a page"],"Close Styles":["Close Styles"],"Close revisions":["Close revisions"],"Manage the fonts and typography used on captions.":["Manage the fonts and typography used on captions."],"Create draft":["Create draft"],"No title":["No title"],"Review %d change\u2026":["Review %d change\u2026","Review %d changes\u2026"],"Activate & Save":["Activate & Save"],"Manage your Navigation Menus.":["Manage your navigation menus."],"No Navigation Menus found.":["No Navigation Menus found."],"Unable to duplicate Navigation Menu (%s).":["Unable to duplicate navigation menu (%s)."],"Duplicated Navigation Menu":["Duplicated navigation menu"],"Unable to rename Navigation Menu (%s).":["Unable to rename navigation menu (%s)."],"Renamed Navigation Menu":["Renamed navigation menu"],"Unable to delete Navigation Menu (%s).":["Unable to delete navigation menu (%s)."],"Navigation Menu missing.":["Navigation Menu missing."],"Navigation Menus are a curated collection of blocks that allow visitors to get around your site.":["Navigation menus are a curated collection of blocks that allow visitors to get around your site."],"Are you sure you want to delete this Navigation Menu?":["Are you sure you want to delete this navigation menu?"],"Navigation title":["Navigation title"],"Go to %s":["Go to %s"],"Manage what patterns are available when editing the site.":["Manage what patterns are available when editing the site."],"Select what the new template should apply to:":["Select what the new template should apply to:"],"E.g. %s":["E.g. %s"],"Examples of blocks":["Examples of blocks"],"Global styles revisions list":["Global styles revisions list"],"Go to the Dashboard":["Go to the Dashboard"],"My patterns":["My patterns"],"Grid":["Grid"],"Examples of blocks in the %s category":["Examples of blocks in the %s category"],"A custom template can be manually applied to any post or page.":["A custom template can be manually applied to any post or page."],"Create new templates, or reset any customizations made to the templates supplied by your theme.":["Create new templates, or reset any customisations made to the templates supplied by your theme."],"Customize the appearance of your website using the block editor.":["Customise the appearance of your website using the block editor."],"Template part":["Template part"],"CSS":["CSS"],"Open %s styles in Styles panel":["Open %s styles in Styles panel"],"Style Book":["Style Book"],"Choose a variation to change the look of the site.":["Choose a variation to change the look of the site."],"Randomize colors":["Randomise colours"],"Add your own CSS to customize the appearance and layout of your site.":["Add your own CSS to customise the appearance and layout of your site."],"Style Variations":["Style Variations"],"All template parts":["All Template Parts"],"Apply globally":["Apply globally"],"Apply this block\u2019s typography, spacing, dimensions, and color styles to all %s blocks.":["Apply this block\u2019s typography, spacing, dimensions, and colour styles to all %s blocks."],"%s styles applied.":["%s styles applied."],"(no title %s)":["(no title %s)"],"Pattern":["Pattern"],"Custom template":["Custom template"],"\"%s\" successfully created.":["\"%s\" successfully created."],"This template will be used only for the specific item chosen.":["This template will be used only for the specific item chosen."],"For a specific item":["For a specific item"],"For all items":["For all items"],"Select whether to create a single template for all items or a specific one.":["Select whether to create a single template for all items or a specific one."],"Add template: %s":["Add template: %s"],"Suggestions list":["Suggestions list"],"All Authors":["All authors"],"No authors found.":["No authors found."],"Search Authors":["Search Authors"],"Displays taxonomy: %s.":["Displays taxonomy: %s."],"Displays a single item: %s.":["Displays a single item: %s."],"Single item: %s":["Single item: %s"],"Displays an archive with the latest posts of type: %s.":["Displays an archive with the latest posts of type: %s."],"Archive: %1$s (%2$s)":["Archive: %1$s (%2$s)"],"Manage the fonts and typography used on buttons.":["Manage the fonts and typography used on buttons."],"Manage the fonts and typography used on headings.":["Manage the fonts and typography used on headings."],"H6":["H6"],"H5":["H5"],"H4":["H4"],"H3":["H3"],"H2":["H2"],"H1":["H1"],"Select heading level":["Select heading level"],"View site":["View site"],"Add template":["Add template"],"Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page.":["Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page."],"This Navigation Menu is empty.":["This Navigation Menu is empty."],"Browse styles":["Browse styles"],"Download your theme with updated templates and styles.":["Download your theme with updated templates and styles."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Navigation Menu successfully deleted.":["Navigation menu successfully deleted."],"font weight\u0004Black":["Black"],"font weight\u0004Bold":["Bold"],"font weight\u0004Medium":["Medium"],"font weight\u0004Light":["Light"],"font weight\u0004Thin":["Thin"],"font style\u0004Italic":["Italic"],"site exporter menu item\u0004Export":["Export"],"Rename":["Rename"],"An error occurred while creating the template.":["An error occurred while creating the template."],"Here\u2019s a detailed guide to learn how to make the most of it.":["Here\u2019s a detailed guide to learn how to make the most of it."],"https:\/\/wordpress.org\/documentation\/article\/styles-overview\/":["https:\/\/wordpress.org\/documentation\/article\/styles-overview\/"],"New to block themes and styling your site?":["New to block themes and styling your site?"],"You can adjust your blocks to ensure a cohesive experience across your site \u2014 add your unique colors to a branded Button block, or adjust the Heading block to your preferred size.":["You can adjust your blocks to ensure a cohesive experience across your site \u2013 add your unique colours to a branded button block, or adjust the heading block to your preferred size."],"Personalize blocks":["Personalise blocks"],"You can customize your site as much as you like with different colors, typography, and layouts. Or if you prefer, just leave it up to your theme to handle!":["You can customise your site as much as you like with different colours, typography, and layouts. Or if you prefer, just leave it up to your theme to handle!"],"Set the design":["Set the design"],"Tweak your site, or give it a whole new look! Get creative \u2014 how about a new color palette for your buttons, or choosing a new font? Take a look at what you can do here.":["Tweak your site, or give it a whole new look! Get creative \u2013 how about a new colour palette for your buttons, or choosing a new font? Take a look at what you can do here."],"Welcome to Styles":["Welcome to styles"],"styles":["styles"],"Click to start designing your blocks, and choose your typography, layout, and colors.":["Click to start designing your blocks, and choose your typography, layout, and colours."],"Design everything on your site \u2014 from the header right down to the footer \u2014 using blocks.":["Design everything on your site \u2013 from the header right down to the footer \u2013 using blocks."],"Edit your site":["Edit your site"],"Welcome to the site editor":["Welcome to the site editor"],"Drag to resize":["Drag to resize"],"Reset to defaults":["Reset to defaults"],"Manage the fonts and typography used on the links.":["Manage the fonts and typography used on the links."],"Manage the fonts used on the site.":["Manage the fonts used on the site."],"Elements":["Elements"],"Aa":["Aa"],"Customize the appearance of specific blocks and for the whole site.":["Customise the appearance of specific blocks and for the whole site."],"Customize the appearance of specific blocks for the whole site.":["Customise the appearance of specific blocks for the whole site."],"An error occurred while creating the site export.":["An error occurred while creating the site export."],"Remove %s":["Remove %s"],"Sorry, you are not allowed to upload this file type.":["Sorry, you are not allowed to upload this file type."],"Displays latest posts written by a single author.":["Displays latest posts written by a single author."],"Create custom template":["Create custom template"],"Custom Template":["Custom Template"],"Shadows":["Shadows"],"Layout":["Layout"],"Duotone":["Duotone"],"All templates":["All templates"],"Templates":["Templates"],"More":["More"],"Captions":["Captions"],"Appearance":["Appearance"],"Design":["Design"],"Open save panel":["Open save panel"],"Patterns":["Patterns"],"Typography":["Typography"],"Review changes":["Review changes"],"Buttons":["Buttons"],"Get started":["Get started"],"Welcome Guide":["Welcome Guide"],"Gradient":["Gradient"],"Move right":["Move right"],"Move left":["Move left"],"Posts":["Posts"],"Details":["Details"],"Custom Colors":["Custom Colours"],"Scheduled":["Scheduled"],"Create":["Create"],"Pagination":["Pagination"],"Heading %d":["Heading %d"],"Embeds":["Embeds"],"Save your changes.":["Save your changes."],"Options":["Options"],"Headings":["Headings"],"Saving":["Saving"],"%d Revision":["%d Revision","%d Revisions"],"Order":["Order"],"%d result found.":["%d result found.","%d results found."],"Duplicate":["Duplicate"],"Category":["Category"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"No blocks found.":["No blocks found."],"All Blocks":["All Blocks"],"Blocks":["Blocks"],"Pending":["Pending"],"%s item":["%s item","%s items"],"Learn more about CSS":["Learn more about CSS"],"Additional CSS":["Additional CSS"],"Site Icon":["Site Icon"],"Site Identity":["Site Identity"],"Site Preview":["Site Preview"],"Archive: %s":["Archive: %s"],"Color":["Colour"],"Font Sizes":["Font Sizes"],"Back":["Back"],"Trash":["Bin"],"Table":["Table"],"Move up":["Move up"],"Move down":["Move down"],"Overview":["Overview"],"Menu":["Menu"],"Colors":["Colours"],"Saved":["Saved"],"Remove":["Remove"],"Template":["Template"],"Navigation":["Navigation"],"Styles":["Styles"],"Learn more":["Learn more"],"An error occurred while creating the item.":["An error occurred while creating the item."],"User":["User"],"Custom":["Custom"],"Previous page":["Previous page"],"Next page":["Next page"],"Select all":["Select all"],"Hidden":["Hidden"],"Background":["Background"],"List":["List"],"Palette":["Palette"],"Heading 6":["Heading 6"],"Heading 5":["Heading 5"],"Heading 4":["Heading 4"],"Heading 3":["Heading 3"],"Heading 2":["Heading 2"],"Heading 1":["Heading 1"],"Text":["Text"],"Widgets":["Widgets"],"Default":["Default"],"Theme":["Theme"],"(no title)":["(no title)"],"Close":["Close"],"Pages":["Pages"],"Links":["Links"],"Search":["Search"],"Update":["Update"],"Private":["Private"],"Actions":["Actions"],"Media":["Media"],"Size":["Size"],"Install":["Install"],"Cancel":["Cancel"],"Preview":["Preview"],"Description":["Description"],"Name":["Name"],"Advanced":["Advanced"],"Save":["Save"],"Delete":["Delete"],"Revisions":["Revisions"],"Comments":["Comments"],"Apply":["Apply"],"Undo":["Undo"],"Edit":["Edit"],"Author":["Author"],"Published":["Published"],"Title":["Title"],"Activate":["Activate"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-site.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json b/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json new file mode 100644 index 00000000..073dbd66 --- /dev/null +++ b/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error while saving the changes.":["Error while saving the changes."],"Changes saved.":["Changes saved."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json b/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json new file mode 100644 index 00000000..8b43d0b7 --- /dev/null +++ b/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error while sideloading file %s to the server.":["Error while sideloading file %s to the server."],"Only one file can be used here.":["Only one file can be used here."],"%s: Sorry, you are not allowed to upload this file type.":["%s: Sorry, you are not allowed to upload this file type."],"Select or Upload Media":["Select or Upload Media"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"%s: This file is empty.":["%s: This file is empty."],"%s: Sorry, this file type is not supported here.":["%s: Sorry, this file type is not supported here."],"%s: This file exceeds the maximum upload size for this site.":["%s: This file exceeds the maximum upload size for this site."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json b/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json new file mode 100644 index 00000000..440ce2b1 --- /dev/null +++ b/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block rendered as empty.":["Block rendered as empty."],"Error loading block: %s":["Error loading block: %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json b/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json new file mode 100644 index 00000000..9279b063 --- /dev/null +++ b/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Screen Options updated.":["Screen Options updated."],"Attend an upcoming event near you.":["Attend an upcoming event near you."],"Events widget offset prefix\u0004GMT":["GMT"],"%1$s %2$d \u2013 %3$s %4$d, %5$d":["%1$s %2$d \u2013 %3$s %4$d, %5$d"],"upcoming events year format\u0004Y":["Y"],"upcoming events day format\u0004j":["j"],"%1$s %2$d\u2013%3$d, %4$d":["%1$s %2$d\u2013%3$d, %4$d"],"upcoming events month format\u0004F":["F"],"City updated. Listing events near %s.":["City updated. Listing events near %s."],"We couldn\u2019t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.":["We couldn\u2019t locate %s. Please try another nearby city. For example: Edinburgh; London; Cardiff."],"An error occurred. Please try again.":["An error occurred. Please try again."],"Enter your closest city to find nearby events.":["Enter your closest city to find nearby events."],"l, M j, Y":["l j F Y"]}},"comment":{"reference":"wp-admin\/js\/dashboard.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json b/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json new file mode 100644 index 00000000..9821c6ac --- /dev/null +++ b/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Explore all blocks":["Explore all blocks"],"Customize each block":["Customise each block"],"settings landmark area\u0004Settings":["Settings"],"New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>":["New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>"],"List View shortcuts":["List view shortcuts"],"Add non breaking space.":["Add non-breaking space."],"header landmark area\u0004Header":["Header"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Insert a link to a post or page.":["Insert a link to a post or page."],"https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/"],"Your theme provides %s \u201cblock\u201d area for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Your theme provides %s \u201cblock\u201d area for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.","Your theme provides %s different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site."],"Widgets footer":["Widgets footer"],"Widgets and blocks":["Widgets and blocks"],"Widgets top bar":["Widgets top bar"],"Display block breadcrumbs deactivated":["Display block breadcrumbs deactivated"],"Display block breadcrumbs activated":["Display block breadcrumbs activated"],"Saving\u2026":["Saving\u2026"],"Widget Areas":["Widget Areas"],"Manage with live preview":["Manage with live preview"],"Your theme does not contain any Widget Areas.":["Your theme does not contain any Widget Areas."],"Blocks in this Widget Area will not be displayed in your site.":["Blocks in this Widget Area will not be displayed in your site."],"Widget Areas are global parts in your site\u2019s layout that can accept blocks. These vary by theme, but are typically parts like your Sidebar or Footer.":["Widget Areas are global parts in your site\u2019s layout that can accept blocks. These vary by theme, but are typically parts like your Sidebar or Footer."],"A widget area container.":["A widget area container."],"Widget Area":["Widget Area"],"Could not save the following widgets: %s.":["Could not save the following widgets: %s."],"There was an error. %s":["There was an error. %s"],"Widgets saved.":["Widgets saved."],"Generic label for block inserter button\u0004Block Inserter":["Block Inserter"],"Get the Classic Widgets plugin.":["Get the Classic Widgets plugin."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/en-gb.wordpress.org\/plugins\/classic-widgets\/"],"Want to stick with the old widgets?":["Want to stick with the old widgets?"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favourite widgets still work flawlessly."],"Welcome to block Widgets":["Welcome to block widgets"],"Contain text cursor inside block deactivated":["Contain text cursor inside block deactivated"],"Contain text cursor inside block activated":["Contain text cursor inside block activated"],"Widgets settings":["Widgets settings"],"Block Library":["Block Library"],"Display block breadcrumbs":["Display block breadcrumbs"],"Shows block breadcrumbs at the bottom of the editor.":["Shows block breadcrumbs at the bottom of the editor."],"Use theme styles":["Use theme styles"],"Make the editor look like your theme.":["Make the editor look like your theme."],"Aids screen readers by stopping text caret from leaving blocks.":["Aids screen readers by stopping text caret from leaving blocks."],"Preferences":["Preferences"],"Contain text cursor inside block":["Contain text cursor inside block"],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon."],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Get started":["Get started"],"inserter":["inserter"],"Welcome Guide":["Welcome Guide"],"Keyboard shortcuts":["Keyboard shortcuts"],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Top toolbar":["Top toolbar"],"Close Settings":["Close Settings"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Close plugin":["Close plugin"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Document tools":["Document tools"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"No block selected.":["No block selected."],"(opens in a new tab)":["(opens in a new tab)"],"List View":["List View"],"Tools":["Tools"],"Footer":["Footer"],"Block":["Block"],"Learn more":["Learn more"],"Widgets":["Widgets"],"Settings":["Settings"],"Help":["Help"],"Close":["Close"],"Update":["Update"],"Redo":["Redo"],"Content":["Content"],"Publish":["Publish"],"Undo":["Undo"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json b/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json new file mode 100644 index 00000000..7fabda4d --- /dev/null +++ b/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."]}},"comment":{"reference":"wp-includes\/js\/media-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json b/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json new file mode 100644 index 00000000..81588c04 --- /dev/null +++ b/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add new post":["Add new post"],"Template parts":["Template parts"],"Templates":["Templates"],"Patterns":["Patterns"],"Navigation":["Navigation"],"Styles":["Styles"],"Add new page":["Add new page"],"An error occurred while creating the item.":["An error occurred while creating the item."],"(no title)":["(no title)"],"Pages":["Pages"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-commands.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json b/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json new file mode 100644 index 00000000..65fad495 --- /dev/null +++ b/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json @@ -0,0 +1 @@ +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Word count type. Do not translate!\u0004words":["words"],"Muted because of Autoplay.":["Muted because of Autoplay."],"Subheading":["Subheading"],"Include headings from all pages (if the post is paginated).":["Include headings from all pages (if the post is paginated)."],"Provide a text label or use the default.":["Provide a text label or use the default."],"Default (
)":["Default (
)"],"Show search label":["Show search label"],"Displaying 1 \u2013 10 of 12":["Displaying 1 \u2013 10 of 12"],"12 results found":["12 results found"],"Change display type":["Change display type"],"Range display":["Range display"],"Total results":["Total results"],"Pagination arrow":["Pagination arrow"],"Make label text visible, e.g. \"Next Page\".":["Make label text visible, e.g. \"Next Page\"."],"No posts were found.":["No posts were found."],"Descending by order":["Descending by order"],"Ascending by order":["Ascending by order"],"This post type (%s) does not support the author.":["This post type (%s) does not support the author."],"Show a large initial letter.":["Show a large initial letter."],"Example link text for Navigation Submenu\u0004About":["About"],"%s menu":["%s menu"],"Hide excerpt":["Hide excerpt"],"Post featured image updated.":["Post featured image updated."],"Title text":["Title text"],"Displays more controls.":["Displays more controls."],"Drag and drop images, upload, or choose from your library.":["Drag and drop images, upload, or choose from your library."],"Scale images with a lightbox effect":["Scale images with a lightbox effect"],"Lightbox effect":["Lightbox effect"],"Drag and drop a file, upload, or choose from your library.":["Drag and drop a file, upload, or choose from your library."],"Details. %s":["Details. %s"],"Details. Empty.":["Details. Empty."],"Enables multiple Details blocks with the same name attribute to be connected, with only one open at a time.":["Enables multiple Details blocks with the same name attribute to be connected, with only one open at a time."],"Name attribute":["Name attribute"],"The